less copy protection, more size visualization
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

65244 lines
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. }
  2391. //species
  2392. function getSpeciesInfo(speciesList) {
  2393. let result = new Set();
  2394. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2395. result.add(entry)
  2396. });
  2397. return Array.from(result);
  2398. };
  2399. function getSpeciesInfoHelper(species) {
  2400. if (!speciesData[species]) {
  2401. console.warn(species + " doesn't exist");
  2402. return [];
  2403. }
  2404. if (speciesData[species].parents) {
  2405. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2406. } else {
  2407. return [species];
  2408. }
  2409. }
  2410. characterMakers.push(() => makeCharacter(
  2411. {
  2412. name: "Fen",
  2413. species: ["crux"],
  2414. description: {
  2415. title: "Bio",
  2416. text: "Very furry. Sheds on everything."
  2417. },
  2418. tags: [
  2419. "anthro",
  2420. "goo"
  2421. ]
  2422. },
  2423. {
  2424. front: {
  2425. height: math.unit(12, "feet"),
  2426. weight: math.unit(2400, "lb"),
  2427. preyCapacity: math.unit(1, "people"),
  2428. name: "Front",
  2429. image: {
  2430. source: "./media/characters/fen/front.svg",
  2431. extra: 1804/1562,
  2432. bottom: 205/2009
  2433. },
  2434. extraAttributes: {
  2435. pawSize: {
  2436. name: "Paw Size",
  2437. power: 2,
  2438. type: "area",
  2439. base: math.unit(0.35, "m^2")
  2440. }
  2441. }
  2442. },
  2443. diving: {
  2444. height: math.unit(4.9, "meters"),
  2445. weight: math.unit(2400, "lb"),
  2446. name: "Diving",
  2447. image: {
  2448. source: "./media/characters/fen/diving.svg"
  2449. }
  2450. },
  2451. sleeby: {
  2452. height: math.unit(3.45, "meters"),
  2453. weight: math.unit(2400, "lb"),
  2454. name: "Sleeby",
  2455. image: {
  2456. source: "./media/characters/fen/sleeby.svg"
  2457. }
  2458. },
  2459. goo: {
  2460. height: math.unit(12, "feet"),
  2461. weight: math.unit(3600, "lb"),
  2462. volume: math.unit(1000, "liters"),
  2463. preyCapacity: math.unit(6, "people"),
  2464. name: "Goo",
  2465. image: {
  2466. source: "./media/characters/fen/goo.svg",
  2467. extra: 1307/1071,
  2468. bottom: 134/1441
  2469. }
  2470. },
  2471. horror: {
  2472. height: math.unit(13.6, "feet"),
  2473. weight: math.unit(2400, "lb"),
  2474. preyCapacity: math.unit(1, "people"),
  2475. name: "Horror",
  2476. image: {
  2477. source: "./media/characters/fen/horror.svg",
  2478. extra: 893/797,
  2479. bottom: 0/893
  2480. }
  2481. },
  2482. gooNsfw: {
  2483. height: math.unit(12, "feet"),
  2484. weight: math.unit(3750, "lb"),
  2485. volume: math.unit(1000, "liters"),
  2486. preyCapacity: math.unit(6, "people"),
  2487. name: "Goo (NSFW)",
  2488. image: {
  2489. source: "./media/characters/fen/goo-nsfw.svg",
  2490. extra: 1875/1734,
  2491. bottom: 122/1997
  2492. }
  2493. },
  2494. maw: {
  2495. height: math.unit(5.03, "feet"),
  2496. name: "Maw",
  2497. image: {
  2498. source: "./media/characters/fen/maw.svg"
  2499. }
  2500. },
  2501. gooCeiling: {
  2502. height: math.unit(6.6, "feet"),
  2503. weight: math.unit(3000, "lb"),
  2504. volume: math.unit(1000, "liters"),
  2505. preyCapacity: math.unit(6, "people"),
  2506. name: "Maw (Goo)",
  2507. image: {
  2508. source: "./media/characters/fen/goo-maw.svg"
  2509. }
  2510. },
  2511. paw: {
  2512. height: math.unit(3.77, "feet"),
  2513. name: "Paw",
  2514. image: {
  2515. source: "./media/characters/fen/paw.svg"
  2516. },
  2517. extraAttributes: {
  2518. "toeSize": {
  2519. name: "Toe Size",
  2520. power: 2,
  2521. type: "area",
  2522. base: math.unit(0.02875, "m^2")
  2523. },
  2524. "pawSize": {
  2525. name: "Paw Size",
  2526. power: 2,
  2527. type: "area",
  2528. base: math.unit(0.378, "m^2")
  2529. },
  2530. }
  2531. },
  2532. tail: {
  2533. height: math.unit(12.1, "feet"),
  2534. name: "Tail",
  2535. image: {
  2536. source: "./media/characters/fen/tail.svg"
  2537. }
  2538. },
  2539. tailFull: {
  2540. height: math.unit(12.1, "feet"),
  2541. name: "Full Tail",
  2542. image: {
  2543. source: "./media/characters/fen/tail-full.svg"
  2544. }
  2545. },
  2546. back: {
  2547. height: math.unit(12, "feet"),
  2548. weight: math.unit(2400, "lb"),
  2549. name: "Back",
  2550. image: {
  2551. source: "./media/characters/fen/back.svg",
  2552. },
  2553. info: {
  2554. description: {
  2555. mode: "append",
  2556. text: "\n\nHe is not currently looking at you."
  2557. }
  2558. }
  2559. },
  2560. full: {
  2561. height: math.unit(1.85, "meter"),
  2562. weight: math.unit(3200, "lb"),
  2563. preyCapacity: math.unit(3, "people"),
  2564. name: "Full",
  2565. image: {
  2566. source: "./media/characters/fen/full.svg",
  2567. extra: 1133/859,
  2568. bottom: 145/1278
  2569. },
  2570. info: {
  2571. description: {
  2572. mode: "append",
  2573. text: "\n\nMunch."
  2574. }
  2575. }
  2576. },
  2577. gooLounging: {
  2578. height: math.unit(4.53, "feet"),
  2579. weight: math.unit(3000, "lb"),
  2580. preyCapacity: math.unit(6, "people"),
  2581. name: "Goo (Lounging)",
  2582. image: {
  2583. source: "./media/characters/fen/goo-lounging.svg",
  2584. bottom: 116 / 613
  2585. }
  2586. },
  2587. lounging: {
  2588. height: math.unit(10.52, "feet"),
  2589. weight: math.unit(2400, "lb"),
  2590. name: "Lounging",
  2591. image: {
  2592. source: "./media/characters/fen/lounging.svg"
  2593. }
  2594. },
  2595. },
  2596. [
  2597. {
  2598. name: "Small",
  2599. height: math.unit(2.2428, "meter")
  2600. },
  2601. {
  2602. name: "Normal",
  2603. height: math.unit(12, "feet"),
  2604. default: true,
  2605. },
  2606. {
  2607. name: "Big",
  2608. height: math.unit(20, "feet")
  2609. },
  2610. {
  2611. name: "Minimacro",
  2612. height: math.unit(40, "feet"),
  2613. info: {
  2614. description: {
  2615. mode: "append",
  2616. text: "\n\nTOO DAMN BIG"
  2617. }
  2618. }
  2619. },
  2620. {
  2621. name: "Macro",
  2622. height: math.unit(100, "feet"),
  2623. info: {
  2624. description: {
  2625. mode: "append",
  2626. text: "\n\nTOO DAMN BIG"
  2627. }
  2628. }
  2629. },
  2630. {
  2631. name: "Megamacro",
  2632. height: math.unit(2, "miles")
  2633. },
  2634. {
  2635. name: "Gigamacro",
  2636. height: math.unit(10, "earths")
  2637. },
  2638. ]
  2639. ))
  2640. characterMakers.push(() => makeCharacter(
  2641. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2642. {
  2643. front: {
  2644. height: math.unit(183, "cm"),
  2645. weight: math.unit(80, "kg"),
  2646. name: "Front",
  2647. image: {
  2648. source: "./media/characters/sofia-fluttertail/front.svg",
  2649. bottom: 0.01,
  2650. extra: 2154 / 2081
  2651. }
  2652. },
  2653. frontAlt: {
  2654. height: math.unit(183, "cm"),
  2655. weight: math.unit(80, "kg"),
  2656. name: "Front (alt)",
  2657. image: {
  2658. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2659. }
  2660. },
  2661. back: {
  2662. height: math.unit(183, "cm"),
  2663. weight: math.unit(80, "kg"),
  2664. name: "Back",
  2665. image: {
  2666. source: "./media/characters/sofia-fluttertail/back.svg"
  2667. }
  2668. },
  2669. kneeling: {
  2670. height: math.unit(125, "cm"),
  2671. weight: math.unit(80, "kg"),
  2672. name: "Kneeling",
  2673. image: {
  2674. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2675. extra: 1033 / 977,
  2676. bottom: 23.7 / 1057
  2677. }
  2678. },
  2679. maw: {
  2680. height: math.unit(183 / 5, "cm"),
  2681. name: "Maw",
  2682. image: {
  2683. source: "./media/characters/sofia-fluttertail/maw.svg"
  2684. }
  2685. },
  2686. mawcloseup: {
  2687. height: math.unit(183 / 5 * 0.41, "cm"),
  2688. name: "Maw (Closeup)",
  2689. image: {
  2690. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2691. }
  2692. },
  2693. paws: {
  2694. height: math.unit(1.17, "feet"),
  2695. name: "Paws",
  2696. image: {
  2697. source: "./media/characters/sofia-fluttertail/paws.svg",
  2698. extra: 851 / 851,
  2699. bottom: 17 / 868
  2700. }
  2701. },
  2702. },
  2703. [
  2704. {
  2705. name: "Normal",
  2706. height: math.unit(1.83, "meter")
  2707. },
  2708. {
  2709. name: "Size Thief",
  2710. height: math.unit(18, "feet")
  2711. },
  2712. {
  2713. name: "50 Foot Collie",
  2714. height: math.unit(50, "feet")
  2715. },
  2716. {
  2717. name: "Macro",
  2718. height: math.unit(96, "feet"),
  2719. default: true
  2720. },
  2721. {
  2722. name: "Megamerger",
  2723. height: math.unit(650, "feet")
  2724. },
  2725. ]
  2726. ))
  2727. characterMakers.push(() => makeCharacter(
  2728. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2729. {
  2730. front: {
  2731. height: math.unit(7, "feet"),
  2732. weight: math.unit(100, "kg"),
  2733. name: "Front",
  2734. image: {
  2735. source: "./media/characters/march/front.svg",
  2736. extra: 1992/1851,
  2737. bottom: 39/2031
  2738. }
  2739. },
  2740. foot: {
  2741. height: math.unit(0.9, "feet"),
  2742. name: "Foot",
  2743. image: {
  2744. source: "./media/characters/march/foot.svg"
  2745. }
  2746. },
  2747. },
  2748. [
  2749. {
  2750. name: "Normal",
  2751. height: math.unit(7.9, "feet")
  2752. },
  2753. {
  2754. name: "Macro",
  2755. height: math.unit(220, "meters")
  2756. },
  2757. {
  2758. name: "Megamacro",
  2759. height: math.unit(2.98, "km"),
  2760. default: true
  2761. },
  2762. {
  2763. name: "Gigamacro",
  2764. height: math.unit(15963, "km")
  2765. },
  2766. {
  2767. name: "Teramacro",
  2768. height: math.unit(2980000000, "km")
  2769. },
  2770. {
  2771. name: "Examacro",
  2772. height: math.unit(250, "parsecs")
  2773. },
  2774. ]
  2775. ))
  2776. characterMakers.push(() => makeCharacter(
  2777. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2778. {
  2779. front: {
  2780. height: math.unit(6, "feet"),
  2781. weight: math.unit(60, "kg"),
  2782. name: "Front",
  2783. image: {
  2784. source: "./media/characters/noir/front.svg",
  2785. extra: 1,
  2786. bottom: 0.032
  2787. }
  2788. },
  2789. },
  2790. [
  2791. {
  2792. name: "Normal",
  2793. height: math.unit(6.6, "feet")
  2794. },
  2795. {
  2796. name: "Macro",
  2797. height: math.unit(500, "feet")
  2798. },
  2799. {
  2800. name: "Megamacro",
  2801. height: math.unit(2.5, "km"),
  2802. default: true
  2803. },
  2804. {
  2805. name: "Gigamacro",
  2806. height: math.unit(22500, "km")
  2807. },
  2808. {
  2809. name: "Teramacro",
  2810. height: math.unit(2500000000, "km")
  2811. },
  2812. {
  2813. name: "Examacro",
  2814. height: math.unit(200, "parsecs")
  2815. },
  2816. ]
  2817. ))
  2818. characterMakers.push(() => makeCharacter(
  2819. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2820. {
  2821. front: {
  2822. height: math.unit(7, "feet"),
  2823. weight: math.unit(100, "kg"),
  2824. name: "Front",
  2825. image: {
  2826. source: "./media/characters/okuri/front.svg",
  2827. extra: 739/665,
  2828. bottom: 39/778
  2829. }
  2830. },
  2831. back: {
  2832. height: math.unit(7, "feet"),
  2833. weight: math.unit(100, "kg"),
  2834. name: "Back",
  2835. image: {
  2836. source: "./media/characters/okuri/back.svg",
  2837. extra: 734/653,
  2838. bottom: 13/747
  2839. }
  2840. },
  2841. sitting: {
  2842. height: math.unit(2.95, "feet"),
  2843. weight: math.unit(100, "kg"),
  2844. name: "Sitting",
  2845. image: {
  2846. source: "./media/characters/okuri/sitting.svg",
  2847. extra: 370/318,
  2848. bottom: 99/469
  2849. }
  2850. },
  2851. },
  2852. [
  2853. {
  2854. name: "Smallest",
  2855. height: math.unit(5 + 2/12, "feet")
  2856. },
  2857. {
  2858. name: "Smaller",
  2859. height: math.unit(300, "feet")
  2860. },
  2861. {
  2862. name: "Small",
  2863. height: math.unit(1000, "feet")
  2864. },
  2865. {
  2866. name: "Macro",
  2867. height: math.unit(1, "mile")
  2868. },
  2869. {
  2870. name: "Mega Macro (Small)",
  2871. height: math.unit(20, "km")
  2872. },
  2873. {
  2874. name: "Mega Macro (Large)",
  2875. height: math.unit(600, "km")
  2876. },
  2877. {
  2878. name: "Giga Macro",
  2879. height: math.unit(10000, "km")
  2880. },
  2881. {
  2882. name: "Normal",
  2883. height: math.unit(577560, "km"),
  2884. default: true
  2885. },
  2886. {
  2887. name: "Large",
  2888. height: math.unit(4, "galaxies")
  2889. },
  2890. {
  2891. name: "Largest",
  2892. height: math.unit(15, "multiverses")
  2893. },
  2894. ]
  2895. ))
  2896. characterMakers.push(() => makeCharacter(
  2897. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2898. {
  2899. front: {
  2900. height: math.unit(7, "feet"),
  2901. weight: math.unit(100, "kg"),
  2902. name: "Front",
  2903. image: {
  2904. source: "./media/characters/manny/front.svg",
  2905. extra: 1,
  2906. bottom: 0.06
  2907. }
  2908. },
  2909. back: {
  2910. height: math.unit(7, "feet"),
  2911. weight: math.unit(100, "kg"),
  2912. name: "Back",
  2913. image: {
  2914. source: "./media/characters/manny/back.svg",
  2915. extra: 1,
  2916. bottom: 0.014
  2917. }
  2918. },
  2919. },
  2920. [
  2921. {
  2922. name: "Normal",
  2923. height: math.unit(7, "feet"),
  2924. },
  2925. {
  2926. name: "Macro",
  2927. height: math.unit(78, "feet"),
  2928. default: true
  2929. },
  2930. {
  2931. name: "Macro+",
  2932. height: math.unit(300, "meters")
  2933. },
  2934. {
  2935. name: "Macro++",
  2936. height: math.unit(2400, "meters")
  2937. },
  2938. {
  2939. name: "Megamacro",
  2940. height: math.unit(5167, "meters")
  2941. },
  2942. {
  2943. name: "Gigamacro",
  2944. height: math.unit(41769, "miles")
  2945. },
  2946. ]
  2947. ))
  2948. characterMakers.push(() => makeCharacter(
  2949. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2950. {
  2951. front: {
  2952. height: math.unit(7, "feet"),
  2953. weight: math.unit(100, "kg"),
  2954. name: "Front",
  2955. image: {
  2956. source: "./media/characters/adake/front-1.svg"
  2957. }
  2958. },
  2959. frontAlt: {
  2960. height: math.unit(7, "feet"),
  2961. weight: math.unit(100, "kg"),
  2962. name: "Front (Alt)",
  2963. image: {
  2964. source: "./media/characters/adake/front-2.svg",
  2965. extra: 1,
  2966. bottom: 0.01
  2967. }
  2968. },
  2969. back: {
  2970. height: math.unit(7, "feet"),
  2971. weight: math.unit(100, "kg"),
  2972. name: "Back",
  2973. image: {
  2974. source: "./media/characters/adake/back.svg",
  2975. }
  2976. },
  2977. kneel: {
  2978. height: math.unit(5.385, "feet"),
  2979. weight: math.unit(100, "kg"),
  2980. name: "Kneeling",
  2981. image: {
  2982. source: "./media/characters/adake/kneel.svg",
  2983. bottom: 0.052
  2984. }
  2985. },
  2986. },
  2987. [
  2988. {
  2989. name: "Normal",
  2990. height: math.unit(7, "feet"),
  2991. },
  2992. {
  2993. name: "Macro",
  2994. height: math.unit(78, "feet"),
  2995. default: true
  2996. },
  2997. {
  2998. name: "Macro+",
  2999. height: math.unit(300, "meters")
  3000. },
  3001. {
  3002. name: "Macro++",
  3003. height: math.unit(2400, "meters")
  3004. },
  3005. {
  3006. name: "Megamacro",
  3007. height: math.unit(5167, "meters")
  3008. },
  3009. {
  3010. name: "Gigamacro",
  3011. height: math.unit(41769, "miles")
  3012. },
  3013. ]
  3014. ))
  3015. characterMakers.push(() => makeCharacter(
  3016. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  3017. {
  3018. front: {
  3019. height: math.unit(1.65, "meters"),
  3020. weight: math.unit(50, "kg"),
  3021. name: "Front",
  3022. image: {
  3023. source: "./media/characters/elijah/front.svg",
  3024. extra: 858 / 830,
  3025. bottom: 95.5 / 953.8559
  3026. }
  3027. },
  3028. back: {
  3029. height: math.unit(1.65, "meters"),
  3030. weight: math.unit(50, "kg"),
  3031. name: "Back",
  3032. image: {
  3033. source: "./media/characters/elijah/back.svg",
  3034. extra: 895 / 850,
  3035. bottom: 5.3 / 897.956
  3036. }
  3037. },
  3038. frontNsfw: {
  3039. height: math.unit(1.65, "meters"),
  3040. weight: math.unit(50, "kg"),
  3041. name: "Front (NSFW)",
  3042. image: {
  3043. source: "./media/characters/elijah/front-nsfw.svg",
  3044. extra: 858 / 830,
  3045. bottom: 95.5 / 953.8559
  3046. }
  3047. },
  3048. backNsfw: {
  3049. height: math.unit(1.65, "meters"),
  3050. weight: math.unit(50, "kg"),
  3051. name: "Back (NSFW)",
  3052. image: {
  3053. source: "./media/characters/elijah/back-nsfw.svg",
  3054. extra: 895 / 850,
  3055. bottom: 5.3 / 897.956
  3056. }
  3057. },
  3058. dick: {
  3059. height: math.unit(1, "feet"),
  3060. name: "Dick",
  3061. image: {
  3062. source: "./media/characters/elijah/dick.svg"
  3063. }
  3064. },
  3065. beakOpen: {
  3066. height: math.unit(1.25, "feet"),
  3067. name: "Beak (Open)",
  3068. image: {
  3069. source: "./media/characters/elijah/beak-open.svg"
  3070. }
  3071. },
  3072. beakShut: {
  3073. height: math.unit(1.25, "feet"),
  3074. name: "Beak (Shut)",
  3075. image: {
  3076. source: "./media/characters/elijah/beak-shut.svg"
  3077. }
  3078. },
  3079. footFlexing: {
  3080. height: math.unit(1.61, "feet"),
  3081. name: "Foot (Flexing)",
  3082. image: {
  3083. source: "./media/characters/elijah/foot-flexing.svg"
  3084. }
  3085. },
  3086. footStepping: {
  3087. height: math.unit(1.44, "feet"),
  3088. name: "Foot (Stepping)",
  3089. image: {
  3090. source: "./media/characters/elijah/foot-stepping.svg"
  3091. }
  3092. },
  3093. plantigradeLeg: {
  3094. height: math.unit(2.34, "feet"),
  3095. name: "Plantigrade Leg",
  3096. image: {
  3097. source: "./media/characters/elijah/plantigrade-leg.svg"
  3098. }
  3099. },
  3100. plantigradeFootLeft: {
  3101. height: math.unit(0.9, "feet"),
  3102. name: "Plantigrade Foot (Left)",
  3103. image: {
  3104. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3105. }
  3106. },
  3107. plantigradeFootRight: {
  3108. height: math.unit(0.9, "feet"),
  3109. name: "Plantigrade Foot (Right)",
  3110. image: {
  3111. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3112. }
  3113. },
  3114. },
  3115. [
  3116. {
  3117. name: "Normal",
  3118. height: math.unit(1.65, "meters")
  3119. },
  3120. {
  3121. name: "Macro",
  3122. height: math.unit(55, "meters"),
  3123. default: true
  3124. },
  3125. {
  3126. name: "Macro+",
  3127. height: math.unit(105, "meters")
  3128. },
  3129. ]
  3130. ))
  3131. characterMakers.push(() => makeCharacter(
  3132. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3133. {
  3134. front: {
  3135. height: math.unit(7 + 2/12, "feet"),
  3136. weight: math.unit(320, "kg"),
  3137. preyCapacity: math.unit(0.276549935, "people"),
  3138. name: "Front",
  3139. image: {
  3140. source: "./media/characters/rai/front.svg",
  3141. extra: 1802/1696,
  3142. bottom: 68/1870
  3143. },
  3144. form: "anthro",
  3145. default: true
  3146. },
  3147. frontDressed: {
  3148. height: math.unit(7 + 2/12, "feet"),
  3149. weight: math.unit(320, "kg"),
  3150. preyCapacity: math.unit(0.276549935, "people"),
  3151. name: "Front (Dressed)",
  3152. image: {
  3153. source: "./media/characters/rai/front-dressed.svg",
  3154. extra: 1802/1696,
  3155. bottom: 68/1870
  3156. },
  3157. form: "anthro"
  3158. },
  3159. side: {
  3160. height: math.unit(7 + 2/12, "feet"),
  3161. weight: math.unit(320, "kg"),
  3162. preyCapacity: math.unit(0.276549935, "people"),
  3163. name: "Side",
  3164. image: {
  3165. source: "./media/characters/rai/side.svg",
  3166. extra: 1789/1710,
  3167. bottom: 115/1904
  3168. },
  3169. form: "anthro"
  3170. },
  3171. back: {
  3172. height: math.unit(7 + 2/12, "feet"),
  3173. weight: math.unit(320, "kg"),
  3174. preyCapacity: math.unit(0.276549935, "people"),
  3175. name: "Back",
  3176. image: {
  3177. source: "./media/characters/rai/back.svg",
  3178. extra: 1770/1707,
  3179. bottom: 28/1798
  3180. },
  3181. form: "anthro"
  3182. },
  3183. feral: {
  3184. height: math.unit(9.5, "feet"),
  3185. weight: math.unit(640, "kg"),
  3186. preyCapacity: math.unit(4, "people"),
  3187. name: "Feral",
  3188. image: {
  3189. source: "./media/characters/rai/feral.svg",
  3190. extra: 945/553,
  3191. bottom: 176/1121
  3192. },
  3193. form: "feral",
  3194. default: true
  3195. },
  3196. dragon: {
  3197. height: math.unit(23, "feet"),
  3198. weight: math.unit(50000, "lb"),
  3199. name: "Dragon",
  3200. image: {
  3201. source: "./media/characters/rai/dragon.svg",
  3202. extra: 2498 / 2030,
  3203. bottom: 85.2 / 2584
  3204. },
  3205. form: "dragon",
  3206. default: true
  3207. },
  3208. maw: {
  3209. height: math.unit(1.69, "feet"),
  3210. name: "Maw",
  3211. image: {
  3212. source: "./media/characters/rai/maw.svg"
  3213. },
  3214. form: "anthro"
  3215. },
  3216. },
  3217. [
  3218. {
  3219. name: "Normal",
  3220. height: math.unit(7 + 2/12, "feet"),
  3221. form: "anthro"
  3222. },
  3223. {
  3224. name: "Big",
  3225. height: math.unit(11, "feet"),
  3226. form: "anthro"
  3227. },
  3228. {
  3229. name: "Minimacro",
  3230. height: math.unit(77, "feet"),
  3231. form: "anthro"
  3232. },
  3233. {
  3234. name: "Macro",
  3235. height: math.unit(302, "feet"),
  3236. default: true,
  3237. form: "anthro"
  3238. },
  3239. {
  3240. name: "Normal",
  3241. height: math.unit(9.5, "feet"),
  3242. form: "feral",
  3243. default: true
  3244. },
  3245. {
  3246. name: "Normal",
  3247. height: math.unit(23, "feet"),
  3248. form: "dragon",
  3249. default: true
  3250. }
  3251. ],
  3252. {
  3253. "anthro": {
  3254. name: "Anthro",
  3255. default: true
  3256. },
  3257. "feral": {
  3258. name: "Feral",
  3259. },
  3260. "dragon": {
  3261. name: "Dragon",
  3262. },
  3263. }
  3264. ))
  3265. characterMakers.push(() => makeCharacter(
  3266. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3267. {
  3268. frontDressed: {
  3269. height: math.unit(216, "feet"),
  3270. weight: math.unit(7000000, "lb"),
  3271. preyCapacity: math.unit(1321, "people"),
  3272. name: "Front (Dressed)",
  3273. image: {
  3274. source: "./media/characters/jazzy/front-dressed.svg",
  3275. extra: 2738 / 2651,
  3276. bottom: 41.8 / 2786
  3277. }
  3278. },
  3279. backDressed: {
  3280. height: math.unit(216, "feet"),
  3281. weight: math.unit(7000000, "lb"),
  3282. preyCapacity: math.unit(1321, "people"),
  3283. name: "Back (Dressed)",
  3284. image: {
  3285. source: "./media/characters/jazzy/back-dressed.svg",
  3286. extra: 2775 / 2673,
  3287. bottom: 36.8 / 2817
  3288. }
  3289. },
  3290. front: {
  3291. height: math.unit(216, "feet"),
  3292. weight: math.unit(7000000, "lb"),
  3293. preyCapacity: math.unit(1321, "people"),
  3294. name: "Front",
  3295. image: {
  3296. source: "./media/characters/jazzy/front.svg",
  3297. extra: 2738 / 2651,
  3298. bottom: 41.8 / 2786
  3299. }
  3300. },
  3301. back: {
  3302. height: math.unit(216, "feet"),
  3303. weight: math.unit(7000000, "lb"),
  3304. preyCapacity: math.unit(1321, "people"),
  3305. name: "Back",
  3306. image: {
  3307. source: "./media/characters/jazzy/back.svg",
  3308. extra: 2775 / 2673,
  3309. bottom: 36.8 / 2817
  3310. }
  3311. },
  3312. maw: {
  3313. height: math.unit(20, "feet"),
  3314. name: "Maw",
  3315. image: {
  3316. source: "./media/characters/jazzy/maw.svg"
  3317. }
  3318. },
  3319. paws: {
  3320. height: math.unit(27.5, "feet"),
  3321. name: "Paws",
  3322. image: {
  3323. source: "./media/characters/jazzy/paws.svg"
  3324. }
  3325. },
  3326. eye: {
  3327. height: math.unit(4.4, "feet"),
  3328. name: "Eye",
  3329. image: {
  3330. source: "./media/characters/jazzy/eye.svg"
  3331. }
  3332. },
  3333. droneOffense: {
  3334. height: math.unit(9.5, "inches"),
  3335. name: "Drone (Offense)",
  3336. image: {
  3337. source: "./media/characters/jazzy/drone-offense.svg"
  3338. }
  3339. },
  3340. droneRecon: {
  3341. height: math.unit(9.5, "inches"),
  3342. name: "Drone (Recon)",
  3343. image: {
  3344. source: "./media/characters/jazzy/drone-recon.svg"
  3345. }
  3346. },
  3347. droneDefense: {
  3348. height: math.unit(9.5, "inches"),
  3349. name: "Drone (Defense)",
  3350. image: {
  3351. source: "./media/characters/jazzy/drone-defense.svg"
  3352. }
  3353. },
  3354. },
  3355. [
  3356. {
  3357. name: "Macro",
  3358. height: math.unit(216, "feet"),
  3359. default: true
  3360. },
  3361. ]
  3362. ))
  3363. characterMakers.push(() => makeCharacter(
  3364. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3365. {
  3366. front: {
  3367. height: math.unit(9 + 6/12, "feet"),
  3368. weight: math.unit(700, "lb"),
  3369. name: "Front",
  3370. image: {
  3371. source: "./media/characters/flamm/front.svg",
  3372. extra: 1736/1596,
  3373. bottom: 93/1829
  3374. }
  3375. },
  3376. buff: {
  3377. height: math.unit(9 + 6/12, "feet"),
  3378. weight: math.unit(950, "lb"),
  3379. name: "Buff",
  3380. image: {
  3381. source: "./media/characters/flamm/buff.svg",
  3382. extra: 3018/2874,
  3383. bottom: 221/3239
  3384. }
  3385. },
  3386. },
  3387. [
  3388. {
  3389. name: "Normal",
  3390. height: math.unit(9.5, "feet")
  3391. },
  3392. {
  3393. name: "Macro",
  3394. height: math.unit(200, "feet"),
  3395. default: true
  3396. },
  3397. ]
  3398. ))
  3399. characterMakers.push(() => makeCharacter(
  3400. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3401. {
  3402. front: {
  3403. height: math.unit(5 + 3/12, "feet"),
  3404. weight: math.unit(60, "kg"),
  3405. name: "Front",
  3406. image: {
  3407. source: "./media/characters/zephiro/front.svg",
  3408. extra: 1873/1761,
  3409. bottom: 147/2020
  3410. }
  3411. },
  3412. side: {
  3413. height: math.unit(5 + 3/12, "feet"),
  3414. weight: math.unit(60, "kg"),
  3415. name: "Side",
  3416. image: {
  3417. source: "./media/characters/zephiro/side.svg",
  3418. extra: 1929/1827,
  3419. bottom: 65/1994
  3420. }
  3421. },
  3422. back: {
  3423. height: math.unit(5 + 3/12, "feet"),
  3424. weight: math.unit(60, "kg"),
  3425. name: "Back",
  3426. image: {
  3427. source: "./media/characters/zephiro/back.svg",
  3428. extra: 1926/1816,
  3429. bottom: 41/1967
  3430. }
  3431. },
  3432. hand: {
  3433. height: math.unit(0.68, "feet"),
  3434. name: "Hand",
  3435. image: {
  3436. source: "./media/characters/zephiro/hand.svg"
  3437. }
  3438. },
  3439. paw: {
  3440. height: math.unit(1, "feet"),
  3441. name: "Paw",
  3442. image: {
  3443. source: "./media/characters/zephiro/paw.svg"
  3444. }
  3445. },
  3446. beans: {
  3447. height: math.unit(0.93, "feet"),
  3448. name: "Beans",
  3449. image: {
  3450. source: "./media/characters/zephiro/beans.svg"
  3451. }
  3452. },
  3453. },
  3454. [
  3455. {
  3456. name: "Micro",
  3457. height: math.unit(3, "inches")
  3458. },
  3459. {
  3460. name: "Normal",
  3461. height: math.unit(5 + 3 / 12, "feet"),
  3462. default: true
  3463. },
  3464. {
  3465. name: "Macro",
  3466. height: math.unit(118, "feet")
  3467. },
  3468. ]
  3469. ))
  3470. characterMakers.push(() => makeCharacter(
  3471. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3472. {
  3473. front: {
  3474. height: math.unit(5, "feet"),
  3475. weight: math.unit(90, "kg"),
  3476. preyCapacity: math.unit(14, "people"),
  3477. name: "Front",
  3478. image: {
  3479. source: "./media/characters/fory/front.svg",
  3480. extra: 2862 / 2674,
  3481. bottom: 180 / 3043.8
  3482. },
  3483. form: "weaselbun",
  3484. default: true,
  3485. extraAttributes: {
  3486. "pawSize": {
  3487. name: "Paw Size",
  3488. power: 2,
  3489. type: "area",
  3490. base: math.unit(0.1596, "m^2")
  3491. },
  3492. "pawLength": {
  3493. name: "Paw Length",
  3494. power: 1,
  3495. type: "length",
  3496. base: math.unit(0.7, "m")
  3497. }
  3498. }
  3499. },
  3500. back: {
  3501. height: math.unit(5, "feet"),
  3502. weight: math.unit(90, "kg"),
  3503. preyCapacity: math.unit(14, "people"),
  3504. name: "Back",
  3505. image: {
  3506. source: "./media/characters/fory/back.svg",
  3507. extra: 1790/1672,
  3508. bottom: 84/1874
  3509. },
  3510. form: "weaselbun",
  3511. extraAttributes: {
  3512. "pawSize": {
  3513. name: "Paw Size",
  3514. power: 2,
  3515. type: "area",
  3516. base: math.unit(0.1596, "m^2")
  3517. },
  3518. "pawLength": {
  3519. name: "Paw Length",
  3520. power: 1,
  3521. type: "length",
  3522. base: math.unit(0.7, "m")
  3523. }
  3524. }
  3525. },
  3526. paw: {
  3527. height: math.unit(2.14, "feet"),
  3528. name: "Paw",
  3529. image: {
  3530. source: "./media/characters/fory/paw.svg"
  3531. },
  3532. form: "weaselbun",
  3533. extraAttributes: {
  3534. "pawSize": {
  3535. name: "Paw Size",
  3536. power: 2,
  3537. type: "area",
  3538. base: math.unit(0.1596, "m^2")
  3539. },
  3540. "pawLength": {
  3541. name: "Paw Length",
  3542. power: 1,
  3543. type: "length",
  3544. base: math.unit(0.48, "m")
  3545. }
  3546. }
  3547. },
  3548. bunBack: {
  3549. height: math.unit(3, "feet"),
  3550. weight: math.unit(20, "kg"),
  3551. preyCapacity: math.unit(3, "people"),
  3552. name: "Back",
  3553. image: {
  3554. source: "./media/characters/fory/bun-back.svg",
  3555. extra: 1749/1564,
  3556. bottom: 246/1995
  3557. },
  3558. form: "bun",
  3559. default: true,
  3560. extraAttributes: {
  3561. "pawSize": {
  3562. name: "Paw Size",
  3563. power: 2,
  3564. type: "area",
  3565. base: math.unit(0.072, "m^2")
  3566. },
  3567. "pawLength": {
  3568. name: "Paw Length",
  3569. power: 1,
  3570. type: "length",
  3571. base: math.unit(0.45, "m")
  3572. }
  3573. }
  3574. },
  3575. },
  3576. [
  3577. {
  3578. name: "Normal",
  3579. height: math.unit(5, "feet"),
  3580. form: "weaselbun"
  3581. },
  3582. {
  3583. name: "Macro",
  3584. height: math.unit(50, "feet"),
  3585. default: true,
  3586. form: "weaselbun"
  3587. },
  3588. {
  3589. name: "Megamacro",
  3590. height: math.unit(10, "miles"),
  3591. form: "weaselbun"
  3592. },
  3593. {
  3594. name: "Gigamacro",
  3595. height: math.unit(5, "earths"),
  3596. form: "weaselbun"
  3597. },
  3598. {
  3599. name: "Normal",
  3600. height: math.unit(3, "feet"),
  3601. default: true,
  3602. form: "bun"
  3603. },
  3604. {
  3605. name: "Fun-Size",
  3606. height: math.unit(12, "feet"),
  3607. form: "bun"
  3608. },
  3609. {
  3610. name: "Macro",
  3611. height: math.unit(100, "feet"),
  3612. form: "bun"
  3613. },
  3614. {
  3615. name: "Planetary",
  3616. height: math.unit(3, "earths"),
  3617. form: "bun"
  3618. },
  3619. ],
  3620. {
  3621. "weaselbun": {
  3622. name: "Weaselbun",
  3623. default: true
  3624. },
  3625. "bun": {
  3626. name: "Bun",
  3627. },
  3628. }
  3629. ))
  3630. characterMakers.push(() => makeCharacter(
  3631. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3632. {
  3633. front: {
  3634. height: math.unit(7, "feet"),
  3635. weight: math.unit(90, "kg"),
  3636. name: "Front",
  3637. image: {
  3638. source: "./media/characters/kurrikage/front.svg",
  3639. extra: 1845/1733,
  3640. bottom: 119/1964
  3641. }
  3642. },
  3643. back: {
  3644. height: math.unit(7, "feet"),
  3645. weight: math.unit(90, "kg"),
  3646. name: "Back",
  3647. image: {
  3648. source: "./media/characters/kurrikage/back.svg",
  3649. extra: 1790/1677,
  3650. bottom: 61/1851
  3651. }
  3652. },
  3653. dressed: {
  3654. height: math.unit(7, "feet"),
  3655. weight: math.unit(90, "kg"),
  3656. name: "Dressed",
  3657. image: {
  3658. source: "./media/characters/kurrikage/dressed.svg",
  3659. extra: 1845/1733,
  3660. bottom: 119/1964
  3661. }
  3662. },
  3663. foot: {
  3664. height: math.unit(1.5, "feet"),
  3665. name: "Foot",
  3666. image: {
  3667. source: "./media/characters/kurrikage/foot.svg"
  3668. }
  3669. },
  3670. staff: {
  3671. height: math.unit(6.7, "feet"),
  3672. name: "Staff",
  3673. image: {
  3674. source: "./media/characters/kurrikage/staff.svg"
  3675. }
  3676. },
  3677. peek: {
  3678. height: math.unit(1.05, "feet"),
  3679. name: "Peeking",
  3680. image: {
  3681. source: "./media/characters/kurrikage/peek.svg",
  3682. bottom: 0.08
  3683. }
  3684. },
  3685. },
  3686. [
  3687. {
  3688. name: "Normal",
  3689. height: math.unit(12, "feet"),
  3690. default: true
  3691. },
  3692. {
  3693. name: "Big",
  3694. height: math.unit(20, "feet")
  3695. },
  3696. {
  3697. name: "Macro",
  3698. height: math.unit(500, "feet")
  3699. },
  3700. {
  3701. name: "Megamacro",
  3702. height: math.unit(20, "miles")
  3703. },
  3704. ]
  3705. ))
  3706. characterMakers.push(() => makeCharacter(
  3707. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3708. {
  3709. front: {
  3710. height: math.unit(6, "feet"),
  3711. weight: math.unit(75, "kg"),
  3712. name: "Front",
  3713. image: {
  3714. source: "./media/characters/shingo/front.svg",
  3715. extra: 1900/1825,
  3716. bottom: 82/1982
  3717. }
  3718. },
  3719. side: {
  3720. height: math.unit(6, "feet"),
  3721. weight: math.unit(75, "kg"),
  3722. name: "Side",
  3723. image: {
  3724. source: "./media/characters/shingo/side.svg",
  3725. extra: 1930/1865,
  3726. bottom: 16/1946
  3727. }
  3728. },
  3729. back: {
  3730. height: math.unit(6, "feet"),
  3731. weight: math.unit(75, "kg"),
  3732. name: "Back",
  3733. image: {
  3734. source: "./media/characters/shingo/back.svg",
  3735. extra: 1922/1852,
  3736. bottom: 16/1938
  3737. }
  3738. },
  3739. frontDressed: {
  3740. height: math.unit(6, "feet"),
  3741. weight: math.unit(150, "lb"),
  3742. name: "Front-dressed",
  3743. image: {
  3744. source: "./media/characters/shingo/front-dressed.svg",
  3745. extra: 1900/1825,
  3746. bottom: 82/1982
  3747. }
  3748. },
  3749. paw: {
  3750. height: math.unit(1.29, "feet"),
  3751. name: "Paw",
  3752. image: {
  3753. source: "./media/characters/shingo/paw.svg"
  3754. }
  3755. },
  3756. hand: {
  3757. height: math.unit(1.07, "feet"),
  3758. name: "Hand",
  3759. image: {
  3760. source: "./media/characters/shingo/hand.svg"
  3761. }
  3762. },
  3763. frontAlt: {
  3764. height: math.unit(6, "feet"),
  3765. weight: math.unit(75, "kg"),
  3766. name: "Front (Alt)",
  3767. image: {
  3768. source: "./media/characters/shingo/front-alt.svg",
  3769. extra: 3511 / 3338,
  3770. bottom: 0.005
  3771. }
  3772. },
  3773. frontAlt2: {
  3774. height: math.unit(6, "feet"),
  3775. weight: math.unit(75, "kg"),
  3776. name: "Front (Alt 2)",
  3777. image: {
  3778. source: "./media/characters/shingo/front-alt-2.svg",
  3779. extra: 706/681,
  3780. bottom: 11/717
  3781. }
  3782. },
  3783. pawAlt: {
  3784. height: math.unit(1, "feet"),
  3785. name: "Paw (Alt)",
  3786. image: {
  3787. source: "./media/characters/shingo/paw-alt.svg"
  3788. }
  3789. },
  3790. },
  3791. [
  3792. {
  3793. name: "Micro",
  3794. height: math.unit(4, "inches")
  3795. },
  3796. {
  3797. name: "Normal",
  3798. height: math.unit(6, "feet"),
  3799. default: true
  3800. },
  3801. {
  3802. name: "Macro",
  3803. height: math.unit(108, "feet")
  3804. },
  3805. {
  3806. name: "Macro+",
  3807. height: math.unit(1500, "feet")
  3808. },
  3809. ]
  3810. ))
  3811. characterMakers.push(() => makeCharacter(
  3812. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3813. {
  3814. side: {
  3815. height: math.unit(6, "feet"),
  3816. weight: math.unit(75, "kg"),
  3817. name: "Side",
  3818. image: {
  3819. source: "./media/characters/aigey/side.svg"
  3820. }
  3821. },
  3822. },
  3823. [
  3824. {
  3825. name: "Macro",
  3826. height: math.unit(200, "feet"),
  3827. default: true
  3828. },
  3829. {
  3830. name: "Megamacro",
  3831. height: math.unit(100, "miles")
  3832. },
  3833. ]
  3834. )
  3835. )
  3836. characterMakers.push(() => makeCharacter(
  3837. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3838. {
  3839. front: {
  3840. height: math.unit(5 + 5 / 12, "feet"),
  3841. weight: math.unit(75, "kg"),
  3842. name: "Front",
  3843. image: {
  3844. source: "./media/characters/natasha/front.svg",
  3845. extra: 859 / 824,
  3846. bottom: 23 / 879.6
  3847. }
  3848. },
  3849. frontNsfw: {
  3850. height: math.unit(5 + 5 / 12, "feet"),
  3851. weight: math.unit(75, "kg"),
  3852. name: "Front (NSFW)",
  3853. image: {
  3854. source: "./media/characters/natasha/front-nsfw.svg",
  3855. extra: 859 / 824,
  3856. bottom: 23 / 879.6
  3857. }
  3858. },
  3859. frontErect: {
  3860. height: math.unit(5 + 5 / 12, "feet"),
  3861. weight: math.unit(75, "kg"),
  3862. name: "Front (Erect)",
  3863. image: {
  3864. source: "./media/characters/natasha/front-erect.svg",
  3865. extra: 859 / 824,
  3866. bottom: 23 / 879.6
  3867. }
  3868. },
  3869. back: {
  3870. height: math.unit(5 + 5 / 12, "feet"),
  3871. weight: math.unit(75, "kg"),
  3872. name: "Back",
  3873. image: {
  3874. source: "./media/characters/natasha/back.svg",
  3875. extra: 887.9 / 852.6,
  3876. bottom: 9.7 / 896.4
  3877. }
  3878. },
  3879. backAlt: {
  3880. height: math.unit(5 + 5 / 12, "feet"),
  3881. weight: math.unit(75, "kg"),
  3882. name: "Back (Alt)",
  3883. image: {
  3884. source: "./media/characters/natasha/back-alt.svg",
  3885. extra: 1236.7 / 1192,
  3886. bottom: 22.3 / 1258.2
  3887. }
  3888. },
  3889. dick: {
  3890. height: math.unit(1.772, "feet"),
  3891. name: "Dick",
  3892. image: {
  3893. source: "./media/characters/natasha/dick.svg"
  3894. }
  3895. },
  3896. paw: {
  3897. height: math.unit(0.250, "meters"),
  3898. name: "Paw",
  3899. image: {
  3900. source: "./media/characters/natasha/paw.svg"
  3901. },
  3902. extraAttributes: {
  3903. "toeSize": {
  3904. name: "Toe Size",
  3905. power: 2,
  3906. type: "area",
  3907. base: math.unit(0.0024, "m^2")
  3908. },
  3909. "padSize": {
  3910. name: "Pad Size",
  3911. power: 2,
  3912. type: "area",
  3913. base: math.unit(0.00889, "m^2")
  3914. },
  3915. "pawSize": {
  3916. name: "Paw Size",
  3917. power: 2,
  3918. type: "area",
  3919. base: math.unit(0.023667, "m^2")
  3920. },
  3921. }
  3922. },
  3923. },
  3924. [
  3925. {
  3926. name: "Shortstack",
  3927. height: math.unit(3, "feet"),
  3928. default: true
  3929. },
  3930. {
  3931. name: "Normal",
  3932. height: math.unit(5 + 5 / 12, "feet")
  3933. },
  3934. {
  3935. name: "Large",
  3936. height: math.unit(12, "feet")
  3937. },
  3938. {
  3939. name: "Macro",
  3940. height: math.unit(100, "feet")
  3941. },
  3942. {
  3943. name: "Macro+",
  3944. height: math.unit(260, "feet")
  3945. },
  3946. {
  3947. name: "Macro++",
  3948. height: math.unit(1, "mile")
  3949. },
  3950. ]
  3951. ))
  3952. characterMakers.push(() => makeCharacter(
  3953. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3954. {
  3955. front: {
  3956. height: math.unit(6, "feet"),
  3957. weight: math.unit(75, "kg"),
  3958. name: "Front",
  3959. image: {
  3960. source: "./media/characters/malik/front.svg",
  3961. extra: 1750/1561,
  3962. bottom: 80/1830
  3963. },
  3964. extraAttributes: {
  3965. "toeSize": {
  3966. name: "Toe Size",
  3967. power: 2,
  3968. type: "area",
  3969. base: math.unit(0.0159, "m^2")
  3970. },
  3971. "pawSize": {
  3972. name: "Paw Size",
  3973. power: 2,
  3974. type: "area",
  3975. base: math.unit(0.09834, "m^2")
  3976. },
  3977. }
  3978. },
  3979. side: {
  3980. height: math.unit(6, "feet"),
  3981. weight: math.unit(75, "kg"),
  3982. name: "Side",
  3983. image: {
  3984. source: "./media/characters/malik/side.svg",
  3985. extra: 1802/1685,
  3986. bottom: 42/1844
  3987. },
  3988. extraAttributes: {
  3989. "toeSize": {
  3990. name: "Toe Size",
  3991. power: 2,
  3992. type: "area",
  3993. base: math.unit(0.0159, "m^2")
  3994. },
  3995. "pawSize": {
  3996. name: "Paw Size",
  3997. power: 2,
  3998. type: "area",
  3999. base: math.unit(0.09834, "m^2")
  4000. },
  4001. }
  4002. },
  4003. back: {
  4004. height: math.unit(6, "feet"),
  4005. weight: math.unit(75, "kg"),
  4006. name: "Back",
  4007. image: {
  4008. source: "./media/characters/malik/back.svg",
  4009. extra: 1803/1607,
  4010. bottom: 33/1836
  4011. },
  4012. extraAttributes: {
  4013. "toeSize": {
  4014. name: "Toe Size",
  4015. power: 2,
  4016. type: "area",
  4017. base: math.unit(0.0159, "m^2")
  4018. },
  4019. "pawSize": {
  4020. name: "Paw Size",
  4021. power: 2,
  4022. type: "area",
  4023. base: math.unit(0.09834, "m^2")
  4024. },
  4025. }
  4026. },
  4027. },
  4028. [
  4029. {
  4030. name: "Macro",
  4031. height: math.unit(156, "feet"),
  4032. default: true
  4033. },
  4034. {
  4035. name: "Macro+",
  4036. height: math.unit(1188, "feet")
  4037. },
  4038. ]
  4039. ))
  4040. characterMakers.push(() => makeCharacter(
  4041. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  4042. {
  4043. front: {
  4044. height: math.unit(6, "feet"),
  4045. weight: math.unit(75, "kg"),
  4046. name: "Front",
  4047. image: {
  4048. source: "./media/characters/sefer/front.svg",
  4049. extra: 848 / 659,
  4050. bottom: 28.3 / 876.442
  4051. }
  4052. },
  4053. back: {
  4054. height: math.unit(6, "feet"),
  4055. weight: math.unit(75, "kg"),
  4056. name: "Back",
  4057. image: {
  4058. source: "./media/characters/sefer/back.svg",
  4059. extra: 864 / 695,
  4060. bottom: 10 / 871
  4061. }
  4062. },
  4063. frontDressed: {
  4064. height: math.unit(6, "feet"),
  4065. weight: math.unit(75, "kg"),
  4066. name: "Dressed",
  4067. image: {
  4068. source: "./media/characters/sefer/dressed.svg",
  4069. extra: 839 / 653,
  4070. bottom: 37.6 / 878
  4071. }
  4072. },
  4073. },
  4074. [
  4075. {
  4076. name: "Normal",
  4077. height: math.unit(6, "feet"),
  4078. default: true
  4079. },
  4080. {
  4081. name: "Big",
  4082. height: math.unit(8, "meters")
  4083. },
  4084. ]
  4085. ))
  4086. characterMakers.push(() => makeCharacter(
  4087. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  4088. {
  4089. body: {
  4090. height: math.unit(2.2428, "meter"),
  4091. weight: math.unit(124.738, "kg"),
  4092. name: "Body",
  4093. image: {
  4094. extra: 1225 / 1050,
  4095. source: "./media/characters/north/front.svg"
  4096. }
  4097. }
  4098. },
  4099. [
  4100. {
  4101. name: "Micro",
  4102. height: math.unit(4, "inches")
  4103. },
  4104. {
  4105. name: "Macro",
  4106. height: math.unit(63, "meters")
  4107. },
  4108. {
  4109. name: "Megamacro",
  4110. height: math.unit(101, "miles"),
  4111. default: true
  4112. }
  4113. ]
  4114. ))
  4115. characterMakers.push(() => makeCharacter(
  4116. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4117. {
  4118. angled: {
  4119. height: math.unit(4, "meter"),
  4120. weight: math.unit(150, "kg"),
  4121. name: "Angled",
  4122. image: {
  4123. source: "./media/characters/talan/angled-sfw.svg",
  4124. bottom: 29 / 3734
  4125. }
  4126. },
  4127. angledNsfw: {
  4128. height: math.unit(4, "meter"),
  4129. weight: math.unit(150, "kg"),
  4130. name: "Angled (NSFW)",
  4131. image: {
  4132. source: "./media/characters/talan/angled-nsfw.svg",
  4133. bottom: 29 / 3734
  4134. }
  4135. },
  4136. frontNsfw: {
  4137. height: math.unit(4, "meter"),
  4138. weight: math.unit(150, "kg"),
  4139. name: "Front (NSFW)",
  4140. image: {
  4141. source: "./media/characters/talan/front-nsfw.svg",
  4142. bottom: 29 / 3734
  4143. }
  4144. },
  4145. sideNsfw: {
  4146. height: math.unit(4, "meter"),
  4147. weight: math.unit(150, "kg"),
  4148. name: "Side (NSFW)",
  4149. image: {
  4150. source: "./media/characters/talan/side-nsfw.svg",
  4151. bottom: 29 / 3734
  4152. }
  4153. },
  4154. back: {
  4155. height: math.unit(4, "meter"),
  4156. weight: math.unit(150, "kg"),
  4157. name: "Back",
  4158. image: {
  4159. source: "./media/characters/talan/back.svg"
  4160. }
  4161. },
  4162. dickBottom: {
  4163. height: math.unit(0.621, "meter"),
  4164. name: "Dick (Bottom)",
  4165. image: {
  4166. source: "./media/characters/talan/dick-bottom.svg"
  4167. }
  4168. },
  4169. dickTop: {
  4170. height: math.unit(0.621, "meter"),
  4171. name: "Dick (Top)",
  4172. image: {
  4173. source: "./media/characters/talan/dick-top.svg"
  4174. }
  4175. },
  4176. dickSide: {
  4177. height: math.unit(0.305, "meter"),
  4178. name: "Dick (Side)",
  4179. image: {
  4180. source: "./media/characters/talan/dick-side.svg"
  4181. }
  4182. },
  4183. dickFront: {
  4184. height: math.unit(0.305, "meter"),
  4185. name: "Dick (Front)",
  4186. image: {
  4187. source: "./media/characters/talan/dick-front.svg"
  4188. }
  4189. },
  4190. },
  4191. [
  4192. {
  4193. name: "Normal",
  4194. height: math.unit(4, "meters")
  4195. },
  4196. {
  4197. name: "Macro",
  4198. height: math.unit(100, "meters")
  4199. },
  4200. {
  4201. name: "Megamacro",
  4202. height: math.unit(2, "miles"),
  4203. default: true
  4204. },
  4205. {
  4206. name: "Gigamacro",
  4207. height: math.unit(5000, "miles")
  4208. },
  4209. {
  4210. name: "Teramacro",
  4211. height: math.unit(100, "parsecs")
  4212. }
  4213. ]
  4214. ))
  4215. characterMakers.push(() => makeCharacter(
  4216. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4217. {
  4218. front: {
  4219. height: math.unit(2, "meter"),
  4220. weight: math.unit(90, "kg"),
  4221. name: "Front",
  4222. image: {
  4223. source: "./media/characters/gael'rathus/front.svg"
  4224. }
  4225. },
  4226. frontAlt: {
  4227. height: math.unit(2, "meter"),
  4228. weight: math.unit(90, "kg"),
  4229. name: "Front (alt)",
  4230. image: {
  4231. source: "./media/characters/gael'rathus/front-alt.svg"
  4232. }
  4233. },
  4234. frontAlt2: {
  4235. height: math.unit(2, "meter"),
  4236. weight: math.unit(90, "kg"),
  4237. name: "Front (alt 2)",
  4238. image: {
  4239. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4240. }
  4241. }
  4242. },
  4243. [
  4244. {
  4245. name: "Normal",
  4246. height: math.unit(9, "feet"),
  4247. default: true
  4248. },
  4249. {
  4250. name: "Large",
  4251. height: math.unit(25, "feet")
  4252. },
  4253. {
  4254. name: "Macro",
  4255. height: math.unit(0.25, "miles")
  4256. },
  4257. {
  4258. name: "Megamacro",
  4259. height: math.unit(10, "miles")
  4260. }
  4261. ]
  4262. ))
  4263. characterMakers.push(() => makeCharacter(
  4264. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4265. {
  4266. side: {
  4267. height: math.unit(2, "meter"),
  4268. weight: math.unit(140, "kg"),
  4269. name: "Side",
  4270. image: {
  4271. source: "./media/characters/sosha/side.svg",
  4272. extra: 1170/1006,
  4273. bottom: 94/1264
  4274. }
  4275. },
  4276. maw: {
  4277. height: math.unit(2.87, "feet"),
  4278. name: "Maw",
  4279. image: {
  4280. source: "./media/characters/sosha/maw.svg",
  4281. extra: 966/865,
  4282. bottom: 0/966
  4283. }
  4284. },
  4285. cooch: {
  4286. height: math.unit(5.6, "feet"),
  4287. name: "Cooch",
  4288. image: {
  4289. source: "./media/characters/sosha/cooch.svg"
  4290. }
  4291. },
  4292. },
  4293. [
  4294. {
  4295. name: "Normal",
  4296. height: math.unit(12, "feet"),
  4297. default: true
  4298. }
  4299. ]
  4300. ))
  4301. characterMakers.push(() => makeCharacter(
  4302. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4303. {
  4304. side: {
  4305. height: math.unit(5 + 5 / 12, "feet"),
  4306. weight: math.unit(170, "kg"),
  4307. name: "Side",
  4308. image: {
  4309. source: "./media/characters/runnola/side.svg",
  4310. extra: 741 / 448,
  4311. bottom: 0.05
  4312. }
  4313. },
  4314. },
  4315. [
  4316. {
  4317. name: "Small",
  4318. height: math.unit(3, "feet")
  4319. },
  4320. {
  4321. name: "Normal",
  4322. height: math.unit(5 + 5 / 12, "feet"),
  4323. default: true
  4324. },
  4325. {
  4326. name: "Big",
  4327. height: math.unit(10, "feet")
  4328. },
  4329. ]
  4330. ))
  4331. characterMakers.push(() => makeCharacter(
  4332. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4333. {
  4334. front: {
  4335. height: math.unit(2, "meter"),
  4336. weight: math.unit(50, "kg"),
  4337. name: "Front",
  4338. image: {
  4339. source: "./media/characters/kurribird/front.svg",
  4340. bottom: 0.015
  4341. }
  4342. },
  4343. frontAlt: {
  4344. height: math.unit(1.5, "meter"),
  4345. weight: math.unit(50, "kg"),
  4346. name: "Front (Alt)",
  4347. image: {
  4348. source: "./media/characters/kurribird/front-alt.svg",
  4349. extra: 1.45
  4350. }
  4351. },
  4352. },
  4353. [
  4354. {
  4355. name: "Normal",
  4356. height: math.unit(7, "feet")
  4357. },
  4358. {
  4359. name: "Big",
  4360. height: math.unit(12, "feet"),
  4361. default: true
  4362. },
  4363. {
  4364. name: "Macro",
  4365. height: math.unit(1500, "feet")
  4366. },
  4367. {
  4368. name: "Megamacro",
  4369. height: math.unit(2, "miles")
  4370. }
  4371. ]
  4372. ))
  4373. characterMakers.push(() => makeCharacter(
  4374. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4375. {
  4376. front: {
  4377. height: math.unit(2, "meter"),
  4378. weight: math.unit(80, "kg"),
  4379. name: "Front",
  4380. image: {
  4381. source: "./media/characters/elbial/front.svg",
  4382. extra: 1643 / 1556,
  4383. bottom: 60.2 / 1696
  4384. }
  4385. },
  4386. side: {
  4387. height: math.unit(2, "meter"),
  4388. weight: math.unit(80, "kg"),
  4389. name: "Side",
  4390. image: {
  4391. source: "./media/characters/elbial/side.svg",
  4392. extra: 1601/1528,
  4393. bottom: 97/1698
  4394. }
  4395. },
  4396. back: {
  4397. height: math.unit(2, "meter"),
  4398. weight: math.unit(80, "kg"),
  4399. name: "Back",
  4400. image: {
  4401. source: "./media/characters/elbial/back.svg",
  4402. extra: 1653/1569,
  4403. bottom: 20/1673
  4404. }
  4405. },
  4406. frontDressed: {
  4407. height: math.unit(2, "meter"),
  4408. weight: math.unit(80, "kg"),
  4409. name: "Front (Dressed)",
  4410. image: {
  4411. source: "./media/characters/elbial/front-dressed.svg",
  4412. extra: 1638/1569,
  4413. bottom: 70/1708
  4414. }
  4415. },
  4416. genitals: {
  4417. height: math.unit(2 / 3.367, "meter"),
  4418. name: "Genitals",
  4419. image: {
  4420. source: "./media/characters/elbial/genitals.svg"
  4421. }
  4422. },
  4423. },
  4424. [
  4425. {
  4426. name: "Large",
  4427. height: math.unit(100, "feet")
  4428. },
  4429. {
  4430. name: "Macro",
  4431. height: math.unit(500, "feet"),
  4432. default: true
  4433. },
  4434. {
  4435. name: "Megamacro",
  4436. height: math.unit(10, "miles")
  4437. },
  4438. {
  4439. name: "Gigamacro",
  4440. height: math.unit(25000, "miles")
  4441. },
  4442. {
  4443. name: "Full-Size",
  4444. height: math.unit(8000000, "gigaparsecs")
  4445. }
  4446. ]
  4447. ))
  4448. characterMakers.push(() => makeCharacter(
  4449. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4450. {
  4451. front: {
  4452. height: math.unit(2, "meter"),
  4453. weight: math.unit(60, "kg"),
  4454. name: "Front",
  4455. image: {
  4456. source: "./media/characters/noah/front.svg",
  4457. extra: 1383/1313,
  4458. bottom: 104/1487
  4459. }
  4460. },
  4461. hand: {
  4462. height: math.unit(0.6, "feet"),
  4463. name: "Hand",
  4464. image: {
  4465. source: "./media/characters/noah/hand.svg"
  4466. }
  4467. },
  4468. talons: {
  4469. height: math.unit(1.385, "feet"),
  4470. name: "Talons",
  4471. image: {
  4472. source: "./media/characters/noah/talons.svg"
  4473. }
  4474. },
  4475. beak: {
  4476. height: math.unit(0.43, "feet"),
  4477. name: "Beak",
  4478. image: {
  4479. source: "./media/characters/noah/beak.svg"
  4480. }
  4481. },
  4482. collar: {
  4483. height: math.unit(0.88, "feet"),
  4484. name: "Collar",
  4485. image: {
  4486. source: "./media/characters/noah/collar.svg"
  4487. }
  4488. },
  4489. eyeNarrow: {
  4490. height: math.unit(0.18, "feet"),
  4491. name: "Eye (Narrow)",
  4492. image: {
  4493. source: "./media/characters/noah/eye-narrow.svg"
  4494. }
  4495. },
  4496. eyeNormal: {
  4497. height: math.unit(0.18, "feet"),
  4498. name: "Eye (Normal)",
  4499. image: {
  4500. source: "./media/characters/noah/eye-normal.svg"
  4501. }
  4502. },
  4503. eyeWide: {
  4504. height: math.unit(0.18, "feet"),
  4505. name: "Eye (Wide)",
  4506. image: {
  4507. source: "./media/characters/noah/eye-wide.svg"
  4508. }
  4509. },
  4510. ear: {
  4511. height: math.unit(0.64, "feet"),
  4512. name: "Ear",
  4513. image: {
  4514. source: "./media/characters/noah/ear.svg"
  4515. }
  4516. },
  4517. },
  4518. [
  4519. {
  4520. name: "Large",
  4521. height: math.unit(50, "feet")
  4522. },
  4523. {
  4524. name: "Macro",
  4525. height: math.unit(750, "feet"),
  4526. default: true
  4527. },
  4528. {
  4529. name: "Megamacro",
  4530. height: math.unit(50, "miles")
  4531. },
  4532. {
  4533. name: "Gigamacro",
  4534. height: math.unit(100000, "miles")
  4535. },
  4536. {
  4537. name: "Full-Size",
  4538. height: math.unit(3000000000, "miles")
  4539. }
  4540. ]
  4541. ))
  4542. characterMakers.push(() => makeCharacter(
  4543. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4544. {
  4545. front: {
  4546. height: math.unit(2, "meter"),
  4547. weight: math.unit(80, "kg"),
  4548. name: "Front",
  4549. image: {
  4550. source: "./media/characters/natalya/front.svg"
  4551. }
  4552. },
  4553. back: {
  4554. height: math.unit(2, "meter"),
  4555. weight: math.unit(80, "kg"),
  4556. name: "Back",
  4557. image: {
  4558. source: "./media/characters/natalya/back.svg"
  4559. }
  4560. }
  4561. },
  4562. [
  4563. {
  4564. name: "Normal",
  4565. height: math.unit(150, "feet"),
  4566. default: true
  4567. },
  4568. {
  4569. name: "Megamacro",
  4570. height: math.unit(5, "miles")
  4571. },
  4572. {
  4573. name: "Full-Size",
  4574. height: math.unit(600, "kiloparsecs")
  4575. }
  4576. ]
  4577. ))
  4578. characterMakers.push(() => makeCharacter(
  4579. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4580. {
  4581. front: {
  4582. height: math.unit(2, "meter"),
  4583. weight: math.unit(50, "kg"),
  4584. name: "Front",
  4585. image: {
  4586. source: "./media/characters/erestrebah/front.svg",
  4587. extra: 1262/1162,
  4588. bottom: 96/1358
  4589. }
  4590. },
  4591. back: {
  4592. height: math.unit(2, "meter"),
  4593. weight: math.unit(50, "kg"),
  4594. name: "Back",
  4595. image: {
  4596. source: "./media/characters/erestrebah/back.svg",
  4597. extra: 1257/1139,
  4598. bottom: 13/1270
  4599. }
  4600. },
  4601. wing: {
  4602. height: math.unit(2, "meter"),
  4603. weight: math.unit(50, "kg"),
  4604. name: "Wing",
  4605. image: {
  4606. source: "./media/characters/erestrebah/wing.svg",
  4607. extra: 1262/1162,
  4608. bottom: 96/1358
  4609. }
  4610. },
  4611. mouth: {
  4612. height: math.unit(0.39, "feet"),
  4613. name: "Mouth",
  4614. image: {
  4615. source: "./media/characters/erestrebah/mouth.svg"
  4616. }
  4617. }
  4618. },
  4619. [
  4620. {
  4621. name: "Normal",
  4622. height: math.unit(10, "feet")
  4623. },
  4624. {
  4625. name: "Large",
  4626. height: math.unit(50, "feet"),
  4627. default: true
  4628. },
  4629. {
  4630. name: "Macro",
  4631. height: math.unit(300, "feet")
  4632. },
  4633. {
  4634. name: "Macro+",
  4635. height: math.unit(750, "feet")
  4636. },
  4637. {
  4638. name: "Megamacro",
  4639. height: math.unit(3, "miles")
  4640. }
  4641. ]
  4642. ))
  4643. characterMakers.push(() => makeCharacter(
  4644. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4645. {
  4646. front: {
  4647. height: math.unit(2, "meter"),
  4648. weight: math.unit(80, "kg"),
  4649. name: "Front",
  4650. image: {
  4651. source: "./media/characters/jennifer/front.svg",
  4652. bottom: 0.11,
  4653. extra: 1.16
  4654. }
  4655. },
  4656. frontAlt: {
  4657. height: math.unit(2, "meter"),
  4658. weight: math.unit(80, "kg"),
  4659. name: "Front (Alt)",
  4660. image: {
  4661. source: "./media/characters/jennifer/front-alt.svg"
  4662. }
  4663. }
  4664. },
  4665. [
  4666. {
  4667. name: "Canon Height",
  4668. height: math.unit(120, "feet"),
  4669. default: true
  4670. },
  4671. {
  4672. name: "Macro+",
  4673. height: math.unit(300, "feet")
  4674. },
  4675. {
  4676. name: "Megamacro",
  4677. height: math.unit(20000, "feet")
  4678. }
  4679. ]
  4680. ))
  4681. characterMakers.push(() => makeCharacter(
  4682. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4683. {
  4684. front: {
  4685. height: math.unit(2, "meter"),
  4686. weight: math.unit(50, "kg"),
  4687. name: "Front",
  4688. image: {
  4689. source: "./media/characters/kalista/front.svg",
  4690. extra: 1314/1145,
  4691. bottom: 101/1415
  4692. }
  4693. },
  4694. back: {
  4695. height: math.unit(2, "meter"),
  4696. weight: math.unit(50, "kg"),
  4697. name: "Back",
  4698. image: {
  4699. source: "./media/characters/kalista/back.svg",
  4700. extra: 1366 / 1156,
  4701. bottom: 33.9 / 1362.78
  4702. }
  4703. }
  4704. },
  4705. [
  4706. {
  4707. name: "Uncomfortably Small",
  4708. height: math.unit(10, "feet")
  4709. },
  4710. {
  4711. name: "Small",
  4712. height: math.unit(30, "feet")
  4713. },
  4714. {
  4715. name: "Macro",
  4716. height: math.unit(100, "feet"),
  4717. default: true
  4718. },
  4719. {
  4720. name: "Macro+",
  4721. height: math.unit(2000, "feet")
  4722. },
  4723. {
  4724. name: "True Form",
  4725. height: math.unit(8924, "miles")
  4726. }
  4727. ]
  4728. ))
  4729. characterMakers.push(() => makeCharacter(
  4730. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4731. {
  4732. front: {
  4733. height: math.unit(2, "meter"),
  4734. weight: math.unit(120, "kg"),
  4735. name: "Front",
  4736. image: {
  4737. source: "./media/characters/ggv/front.svg"
  4738. }
  4739. },
  4740. side: {
  4741. height: math.unit(2, "meter"),
  4742. weight: math.unit(120, "kg"),
  4743. name: "Side",
  4744. image: {
  4745. source: "./media/characters/ggv/side.svg"
  4746. }
  4747. }
  4748. },
  4749. [
  4750. {
  4751. name: "Extremely Puny",
  4752. height: math.unit(9 + 5 / 12, "feet")
  4753. },
  4754. {
  4755. name: "Horribly Small",
  4756. height: math.unit(47.7, "miles"),
  4757. default: true
  4758. },
  4759. {
  4760. name: "Reasonably Sized",
  4761. height: math.unit(25000, "parsecs")
  4762. },
  4763. {
  4764. name: "Slightly Uncompressed",
  4765. height: math.unit(7.77e31, "parsecs")
  4766. },
  4767. {
  4768. name: "Omniversal",
  4769. height: math.unit(1e300, "meters")
  4770. },
  4771. ]
  4772. ))
  4773. characterMakers.push(() => makeCharacter(
  4774. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4775. {
  4776. front: {
  4777. height: math.unit(2, "meter"),
  4778. weight: math.unit(75, "lb"),
  4779. name: "Front",
  4780. image: {
  4781. source: "./media/characters/napalm/front.svg"
  4782. }
  4783. },
  4784. back: {
  4785. height: math.unit(2, "meter"),
  4786. weight: math.unit(75, "lb"),
  4787. name: "Back",
  4788. image: {
  4789. source: "./media/characters/napalm/back.svg"
  4790. }
  4791. }
  4792. },
  4793. [
  4794. {
  4795. name: "Standard",
  4796. height: math.unit(55, "feet"),
  4797. default: true
  4798. }
  4799. ]
  4800. ))
  4801. characterMakers.push(() => makeCharacter(
  4802. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4803. {
  4804. front: {
  4805. height: math.unit(7 + 5 / 6, "feet"),
  4806. weight: math.unit(325, "lb"),
  4807. name: "Front",
  4808. image: {
  4809. source: "./media/characters/asana/front.svg",
  4810. extra: 1133 / 1060,
  4811. bottom: 15.2 / 1148.6
  4812. }
  4813. },
  4814. back: {
  4815. height: math.unit(7 + 5 / 6, "feet"),
  4816. weight: math.unit(325, "lb"),
  4817. name: "Back",
  4818. image: {
  4819. source: "./media/characters/asana/back.svg",
  4820. extra: 1114 / 1043,
  4821. bottom: 5 / 1120
  4822. }
  4823. },
  4824. dressedDark: {
  4825. height: math.unit(7 + 5 / 6, "feet"),
  4826. weight: math.unit(325, "lb"),
  4827. name: "Dressed (Dark)",
  4828. image: {
  4829. source: "./media/characters/asana/dressed-dark.svg",
  4830. extra: 1133 / 1060,
  4831. bottom: 15.2 / 1148.6
  4832. }
  4833. },
  4834. dressedLight: {
  4835. height: math.unit(7 + 5 / 6, "feet"),
  4836. weight: math.unit(325, "lb"),
  4837. name: "Dressed (Light)",
  4838. image: {
  4839. source: "./media/characters/asana/dressed-light.svg",
  4840. extra: 1133 / 1060,
  4841. bottom: 15.2 / 1148.6
  4842. }
  4843. },
  4844. },
  4845. [
  4846. {
  4847. name: "Standard",
  4848. height: math.unit(7 + 5 / 6, "feet"),
  4849. default: true
  4850. },
  4851. {
  4852. name: "Large",
  4853. height: math.unit(10, "meters")
  4854. },
  4855. {
  4856. name: "Macro",
  4857. height: math.unit(2500, "meters")
  4858. },
  4859. {
  4860. name: "Megamacro",
  4861. height: math.unit(5e6, "meters")
  4862. },
  4863. {
  4864. name: "Examacro",
  4865. height: math.unit(5e12, "lightyears")
  4866. },
  4867. {
  4868. name: "Max Size",
  4869. height: math.unit(1e31, "lightyears")
  4870. }
  4871. ]
  4872. ))
  4873. characterMakers.push(() => makeCharacter(
  4874. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4875. {
  4876. front: {
  4877. height: math.unit(2, "meter"),
  4878. weight: math.unit(60, "kg"),
  4879. name: "Front",
  4880. image: {
  4881. source: "./media/characters/ebony/front.svg",
  4882. bottom: 0.03,
  4883. extra: 1045 / 810 + 0.03
  4884. }
  4885. },
  4886. side: {
  4887. height: math.unit(2, "meter"),
  4888. weight: math.unit(60, "kg"),
  4889. name: "Side",
  4890. image: {
  4891. source: "./media/characters/ebony/side.svg",
  4892. bottom: 0.03,
  4893. extra: 1045 / 810 + 0.03
  4894. }
  4895. },
  4896. back: {
  4897. height: math.unit(2, "meter"),
  4898. weight: math.unit(60, "kg"),
  4899. name: "Back",
  4900. image: {
  4901. source: "./media/characters/ebony/back.svg",
  4902. bottom: 0.01,
  4903. extra: 1045 / 810 + 0.01
  4904. }
  4905. },
  4906. },
  4907. [
  4908. // TODO check why I did this lol
  4909. {
  4910. name: "Standard",
  4911. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4912. default: true
  4913. },
  4914. {
  4915. name: "Macro",
  4916. height: math.unit(200, "feet")
  4917. },
  4918. {
  4919. name: "Gigamacro",
  4920. height: math.unit(13000, "km")
  4921. }
  4922. ]
  4923. ))
  4924. characterMakers.push(() => makeCharacter(
  4925. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4926. {
  4927. front: {
  4928. height: math.unit(6, "feet"),
  4929. weight: math.unit(175, "lb"),
  4930. name: "Front",
  4931. image: {
  4932. source: "./media/characters/mountain/front.svg",
  4933. extra: 972 / 955,
  4934. bottom: 64 / 1036.6
  4935. }
  4936. },
  4937. back: {
  4938. height: math.unit(6, "feet"),
  4939. weight: math.unit(175, "lb"),
  4940. name: "Back",
  4941. image: {
  4942. source: "./media/characters/mountain/back.svg",
  4943. extra: 970 / 950,
  4944. bottom: 28.25 / 999
  4945. }
  4946. },
  4947. },
  4948. [
  4949. {
  4950. name: "Large",
  4951. height: math.unit(20, "meters")
  4952. },
  4953. {
  4954. name: "Macro",
  4955. height: math.unit(300, "meters")
  4956. },
  4957. {
  4958. name: "Gigamacro",
  4959. height: math.unit(10000, "km"),
  4960. default: true
  4961. },
  4962. {
  4963. name: "Examacro",
  4964. height: math.unit(10e9, "lightyears")
  4965. }
  4966. ]
  4967. ))
  4968. characterMakers.push(() => makeCharacter(
  4969. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4970. {
  4971. front: {
  4972. height: math.unit(8, "feet"),
  4973. weight: math.unit(500, "lb"),
  4974. name: "Front",
  4975. image: {
  4976. source: "./media/characters/rick/front.svg"
  4977. }
  4978. }
  4979. },
  4980. [
  4981. {
  4982. name: "Normal",
  4983. height: math.unit(8, "feet"),
  4984. default: true
  4985. },
  4986. {
  4987. name: "Macro",
  4988. height: math.unit(5, "km")
  4989. }
  4990. ]
  4991. ))
  4992. characterMakers.push(() => makeCharacter(
  4993. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4994. {
  4995. front: {
  4996. height: math.unit(8, "feet"),
  4997. weight: math.unit(120, "lb"),
  4998. name: "Front",
  4999. image: {
  5000. source: "./media/characters/ona/front.svg"
  5001. }
  5002. },
  5003. frontAlt: {
  5004. height: math.unit(8, "feet"),
  5005. weight: math.unit(120, "lb"),
  5006. name: "Front (Alt)",
  5007. image: {
  5008. source: "./media/characters/ona/front-alt.svg"
  5009. }
  5010. },
  5011. back: {
  5012. height: math.unit(8, "feet"),
  5013. weight: math.unit(120, "lb"),
  5014. name: "Back",
  5015. image: {
  5016. source: "./media/characters/ona/back.svg"
  5017. }
  5018. },
  5019. foot: {
  5020. height: math.unit(1.1, "feet"),
  5021. name: "Foot",
  5022. image: {
  5023. source: "./media/characters/ona/foot.svg"
  5024. }
  5025. }
  5026. },
  5027. [
  5028. {
  5029. name: "Megamacro",
  5030. height: math.unit(70, "km"),
  5031. default: true
  5032. },
  5033. {
  5034. name: "Gigamacro",
  5035. height: math.unit(681818, "miles")
  5036. },
  5037. {
  5038. name: "Examacro",
  5039. height: math.unit(3800000, "lightyears")
  5040. },
  5041. ]
  5042. ))
  5043. characterMakers.push(() => makeCharacter(
  5044. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  5045. {
  5046. front: {
  5047. height: math.unit(12, "feet"),
  5048. weight: math.unit(3000, "lb"),
  5049. name: "Front",
  5050. image: {
  5051. source: "./media/characters/mech/front.svg",
  5052. extra: 2900 / 2770,
  5053. bottom: 110 / 3010
  5054. }
  5055. },
  5056. back: {
  5057. height: math.unit(12, "feet"),
  5058. weight: math.unit(3000, "lb"),
  5059. name: "Back",
  5060. image: {
  5061. source: "./media/characters/mech/back.svg",
  5062. extra: 3011 / 2890,
  5063. bottom: 94 / 3105
  5064. }
  5065. },
  5066. maw: {
  5067. height: math.unit(3.07, "feet"),
  5068. name: "Maw",
  5069. image: {
  5070. source: "./media/characters/mech/maw.svg"
  5071. }
  5072. },
  5073. head: {
  5074. height: math.unit(3.07, "feet"),
  5075. name: "Head",
  5076. image: {
  5077. source: "./media/characters/mech/head.svg"
  5078. }
  5079. },
  5080. dick: {
  5081. height: math.unit(1.43, "feet"),
  5082. name: "Dick",
  5083. image: {
  5084. source: "./media/characters/mech/dick.svg"
  5085. }
  5086. },
  5087. },
  5088. [
  5089. {
  5090. name: "Normal",
  5091. height: math.unit(12, "feet")
  5092. },
  5093. {
  5094. name: "Macro",
  5095. height: math.unit(300, "feet"),
  5096. default: true
  5097. },
  5098. {
  5099. name: "Macro+",
  5100. height: math.unit(1500, "feet")
  5101. },
  5102. ]
  5103. ))
  5104. characterMakers.push(() => makeCharacter(
  5105. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5106. {
  5107. front: {
  5108. height: math.unit(1.3, "meter"),
  5109. weight: math.unit(30, "kg"),
  5110. name: "Front",
  5111. image: {
  5112. source: "./media/characters/gregory/front.svg",
  5113. }
  5114. }
  5115. },
  5116. [
  5117. {
  5118. name: "Normal",
  5119. height: math.unit(1.3, "meter"),
  5120. default: true
  5121. },
  5122. {
  5123. name: "Macro",
  5124. height: math.unit(20, "meter")
  5125. }
  5126. ]
  5127. ))
  5128. characterMakers.push(() => makeCharacter(
  5129. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5130. {
  5131. front: {
  5132. height: math.unit(2.8, "meter"),
  5133. weight: math.unit(200, "kg"),
  5134. name: "Front",
  5135. image: {
  5136. source: "./media/characters/elory/front.svg",
  5137. }
  5138. }
  5139. },
  5140. [
  5141. {
  5142. name: "Normal",
  5143. height: math.unit(2.8, "meter"),
  5144. default: true
  5145. },
  5146. {
  5147. name: "Macro",
  5148. height: math.unit(38, "meter")
  5149. }
  5150. ]
  5151. ))
  5152. characterMakers.push(() => makeCharacter(
  5153. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5154. {
  5155. front: {
  5156. height: math.unit(470, "feet"),
  5157. weight: math.unit(924, "tons"),
  5158. name: "Front",
  5159. image: {
  5160. source: "./media/characters/angelpatamon/front.svg",
  5161. }
  5162. }
  5163. },
  5164. [
  5165. {
  5166. name: "Normal",
  5167. height: math.unit(470, "feet"),
  5168. default: true
  5169. },
  5170. {
  5171. name: "Deity Size I",
  5172. height: math.unit(28651.2, "km")
  5173. },
  5174. {
  5175. name: "Deity Size II",
  5176. height: math.unit(171907.2, "km")
  5177. }
  5178. ]
  5179. ))
  5180. characterMakers.push(() => makeCharacter(
  5181. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5182. {
  5183. side: {
  5184. height: math.unit(7.2, "meter"),
  5185. weight: math.unit(8.2, "tons"),
  5186. name: "Side",
  5187. image: {
  5188. source: "./media/characters/cryae/side.svg",
  5189. extra: 3500 / 1500
  5190. }
  5191. }
  5192. },
  5193. [
  5194. {
  5195. name: "Normal",
  5196. height: math.unit(7.2, "meter"),
  5197. default: true
  5198. }
  5199. ]
  5200. ))
  5201. characterMakers.push(() => makeCharacter(
  5202. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5203. {
  5204. front: {
  5205. height: math.unit(6, "feet"),
  5206. weight: math.unit(175, "lb"),
  5207. name: "Front",
  5208. image: {
  5209. source: "./media/characters/xera/front.svg",
  5210. extra: 2377 / 1972,
  5211. bottom: 75.5 / 2452
  5212. }
  5213. },
  5214. side: {
  5215. height: math.unit(6, "feet"),
  5216. weight: math.unit(175, "lb"),
  5217. name: "Side",
  5218. image: {
  5219. source: "./media/characters/xera/side.svg",
  5220. extra: 2345 / 2019,
  5221. bottom: 39.7 / 2384
  5222. }
  5223. },
  5224. back: {
  5225. height: math.unit(6, "feet"),
  5226. weight: math.unit(175, "lb"),
  5227. name: "Back",
  5228. image: {
  5229. source: "./media/characters/xera/back.svg",
  5230. extra: 2095 / 1984,
  5231. bottom: 67 / 2166
  5232. }
  5233. },
  5234. },
  5235. [
  5236. {
  5237. name: "Small",
  5238. height: math.unit(10, "feet")
  5239. },
  5240. {
  5241. name: "Macro",
  5242. height: math.unit(500, "meters"),
  5243. default: true
  5244. },
  5245. {
  5246. name: "Macro+",
  5247. height: math.unit(10, "km")
  5248. },
  5249. {
  5250. name: "Gigamacro",
  5251. height: math.unit(25000, "km")
  5252. },
  5253. {
  5254. name: "Teramacro",
  5255. height: math.unit(3e6, "km")
  5256. }
  5257. ]
  5258. ))
  5259. characterMakers.push(() => makeCharacter(
  5260. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5261. {
  5262. front: {
  5263. height: math.unit(6, "feet"),
  5264. weight: math.unit(175, "lb"),
  5265. name: "Front",
  5266. image: {
  5267. source: "./media/characters/nebula/front.svg",
  5268. extra: 2566 / 2362,
  5269. bottom: 81 / 2644
  5270. }
  5271. }
  5272. },
  5273. [
  5274. {
  5275. name: "Small",
  5276. height: math.unit(4.5, "meters")
  5277. },
  5278. {
  5279. name: "Macro",
  5280. height: math.unit(1500, "meters"),
  5281. default: true
  5282. },
  5283. {
  5284. name: "Megamacro",
  5285. height: math.unit(150, "km")
  5286. },
  5287. {
  5288. name: "Gigamacro",
  5289. height: math.unit(27000, "km")
  5290. }
  5291. ]
  5292. ))
  5293. characterMakers.push(() => makeCharacter(
  5294. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5295. {
  5296. front: {
  5297. height: math.unit(6, "feet"),
  5298. weight: math.unit(225, "lb"),
  5299. name: "Front",
  5300. image: {
  5301. source: "./media/characters/abysgar/front.svg",
  5302. extra: 1739/1614,
  5303. bottom: 71/1810
  5304. }
  5305. },
  5306. frontNsfw: {
  5307. height: math.unit(6, "feet"),
  5308. weight: math.unit(225, "lb"),
  5309. name: "Front (NSFW)",
  5310. image: {
  5311. source: "./media/characters/abysgar/front-nsfw.svg",
  5312. extra: 1739/1614,
  5313. bottom: 71/1810
  5314. }
  5315. },
  5316. back: {
  5317. height: math.unit(4.6, "feet"),
  5318. weight: math.unit(225, "lb"),
  5319. name: "Back",
  5320. image: {
  5321. source: "./media/characters/abysgar/back.svg",
  5322. extra: 1384/1327,
  5323. bottom: 0/1384
  5324. }
  5325. },
  5326. head: {
  5327. height: math.unit(1.25, "feet"),
  5328. name: "Head",
  5329. image: {
  5330. source: "./media/characters/abysgar/head.svg",
  5331. extra: 669/569,
  5332. bottom: 0/669
  5333. }
  5334. },
  5335. },
  5336. [
  5337. {
  5338. name: "Small",
  5339. height: math.unit(4.5, "meters")
  5340. },
  5341. {
  5342. name: "Macro",
  5343. height: math.unit(1250, "meters"),
  5344. default: true
  5345. },
  5346. {
  5347. name: "Megamacro",
  5348. height: math.unit(125, "km")
  5349. },
  5350. {
  5351. name: "Gigamacro",
  5352. height: math.unit(26000, "km")
  5353. }
  5354. ]
  5355. ))
  5356. characterMakers.push(() => makeCharacter(
  5357. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5358. {
  5359. front: {
  5360. height: math.unit(6, "feet"),
  5361. weight: math.unit(180, "lb"),
  5362. name: "Front",
  5363. image: {
  5364. source: "./media/characters/yakuz/front.svg"
  5365. }
  5366. }
  5367. },
  5368. [
  5369. {
  5370. name: "Small",
  5371. height: math.unit(5, "meters")
  5372. },
  5373. {
  5374. name: "Macro",
  5375. height: math.unit(1500, "meters"),
  5376. default: true
  5377. },
  5378. {
  5379. name: "Megamacro",
  5380. height: math.unit(200, "km")
  5381. },
  5382. {
  5383. name: "Gigamacro",
  5384. height: math.unit(100000, "km")
  5385. }
  5386. ]
  5387. ))
  5388. characterMakers.push(() => makeCharacter(
  5389. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5390. {
  5391. front: {
  5392. height: math.unit(6, "feet"),
  5393. weight: math.unit(175, "lb"),
  5394. name: "Front",
  5395. image: {
  5396. source: "./media/characters/mirova/front.svg",
  5397. extra: 3334 / 3071,
  5398. bottom: 42 / 3375.6
  5399. }
  5400. }
  5401. },
  5402. [
  5403. {
  5404. name: "Small",
  5405. height: math.unit(5, "meters")
  5406. },
  5407. {
  5408. name: "Macro",
  5409. height: math.unit(900, "meters"),
  5410. default: true
  5411. },
  5412. {
  5413. name: "Megamacro",
  5414. height: math.unit(135, "km")
  5415. },
  5416. {
  5417. name: "Gigamacro",
  5418. height: math.unit(20000, "km")
  5419. }
  5420. ]
  5421. ))
  5422. characterMakers.push(() => makeCharacter(
  5423. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5424. {
  5425. side: {
  5426. height: math.unit(28.35, "feet"),
  5427. weight: math.unit(99.75, "tons"),
  5428. name: "Side",
  5429. image: {
  5430. source: "./media/characters/asana-mech/side.svg",
  5431. extra: 923 / 699,
  5432. bottom: 50 / 975
  5433. }
  5434. },
  5435. chaingun: {
  5436. height: math.unit(7, "feet"),
  5437. weight: math.unit(2400, "lb"),
  5438. name: "Chaingun",
  5439. image: {
  5440. source: "./media/characters/asana-mech/chaingun.svg"
  5441. }
  5442. },
  5443. laser: {
  5444. height: math.unit(7.12, "feet"),
  5445. weight: math.unit(2000, "lb"),
  5446. name: "Laser",
  5447. image: {
  5448. source: "./media/characters/asana-mech/laser.svg"
  5449. }
  5450. },
  5451. },
  5452. [
  5453. {
  5454. name: "Normal",
  5455. height: math.unit(28.35, "feet"),
  5456. default: true
  5457. },
  5458. {
  5459. name: "Macro",
  5460. height: math.unit(2500, "feet")
  5461. },
  5462. {
  5463. name: "Megamacro",
  5464. height: math.unit(25, "miles")
  5465. },
  5466. {
  5467. name: "Examacro",
  5468. height: math.unit(6e8, "lightyears")
  5469. },
  5470. ]
  5471. ))
  5472. characterMakers.push(() => makeCharacter(
  5473. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5474. {
  5475. front: {
  5476. height: math.unit(5, "meters"),
  5477. weight: math.unit(1000, "kg"),
  5478. name: "Front",
  5479. image: {
  5480. source: "./media/characters/asche/front.svg",
  5481. extra: 1258 / 1190,
  5482. bottom: 47 / 1305
  5483. }
  5484. },
  5485. frontUnderwear: {
  5486. height: math.unit(5, "meters"),
  5487. weight: math.unit(1000, "kg"),
  5488. name: "Front (Underwear)",
  5489. image: {
  5490. source: "./media/characters/asche/front-underwear.svg",
  5491. extra: 1258 / 1190,
  5492. bottom: 47 / 1305
  5493. }
  5494. },
  5495. frontDressed: {
  5496. height: math.unit(5, "meters"),
  5497. weight: math.unit(1000, "kg"),
  5498. name: "Front (Dressed)",
  5499. image: {
  5500. source: "./media/characters/asche/front-dressed.svg",
  5501. extra: 1258 / 1190,
  5502. bottom: 47 / 1305
  5503. }
  5504. },
  5505. frontArmor: {
  5506. height: math.unit(5, "meters"),
  5507. weight: math.unit(1000, "kg"),
  5508. name: "Front (Armored)",
  5509. image: {
  5510. source: "./media/characters/asche/front-armored.svg",
  5511. extra: 1374 / 1308,
  5512. bottom: 23 / 1397
  5513. }
  5514. },
  5515. mp724: {
  5516. height: math.unit(0.96, "meters"),
  5517. weight: math.unit(38, "kg"),
  5518. name: "H&K MP724",
  5519. image: {
  5520. source: "./media/characters/asche/h&k-mp724.svg"
  5521. }
  5522. },
  5523. side: {
  5524. height: math.unit(5, "meters"),
  5525. weight: math.unit(1000, "kg"),
  5526. name: "Side",
  5527. image: {
  5528. source: "./media/characters/asche/side.svg",
  5529. extra: 1717 / 1609,
  5530. bottom: 0.005
  5531. }
  5532. },
  5533. back: {
  5534. height: math.unit(5, "meters"),
  5535. weight: math.unit(1000, "kg"),
  5536. name: "Back",
  5537. image: {
  5538. source: "./media/characters/asche/back.svg",
  5539. extra: 1570 / 1501
  5540. }
  5541. },
  5542. },
  5543. [
  5544. {
  5545. name: "DEFCON 5",
  5546. height: math.unit(5, "meters")
  5547. },
  5548. {
  5549. name: "DEFCON 4",
  5550. height: math.unit(500, "meters"),
  5551. default: true
  5552. },
  5553. {
  5554. name: "DEFCON 3",
  5555. height: math.unit(5, "km")
  5556. },
  5557. {
  5558. name: "DEFCON 2",
  5559. height: math.unit(500, "km")
  5560. },
  5561. {
  5562. name: "DEFCON 1",
  5563. height: math.unit(500000, "km")
  5564. },
  5565. {
  5566. name: "DEFCON 0",
  5567. height: math.unit(3, "gigaparsecs")
  5568. },
  5569. ]
  5570. ))
  5571. characterMakers.push(() => makeCharacter(
  5572. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5573. {
  5574. front: {
  5575. height: math.unit(7, "feet"),
  5576. weight: math.unit(92.7, "kg"),
  5577. name: "Front",
  5578. image: {
  5579. source: "./media/characters/gale/front.svg",
  5580. extra: 977/919,
  5581. bottom: 105/1082
  5582. }
  5583. },
  5584. side: {
  5585. height: math.unit(6.7, "feet"),
  5586. weight: math.unit(92.7, "kg"),
  5587. name: "Side",
  5588. image: {
  5589. source: "./media/characters/gale/side.svg",
  5590. extra: 978/922,
  5591. bottom: 140/1118
  5592. }
  5593. },
  5594. back: {
  5595. height: math.unit(7, "feet"),
  5596. weight: math.unit(92.7, "kg"),
  5597. name: "Back",
  5598. image: {
  5599. source: "./media/characters/gale/back.svg",
  5600. extra: 966/920,
  5601. bottom: 61/1027
  5602. }
  5603. },
  5604. maw: {
  5605. height: math.unit(2.23, "feet"),
  5606. name: "Maw",
  5607. image: {
  5608. source: "./media/characters/gale/maw.svg"
  5609. }
  5610. },
  5611. foot: {
  5612. height: math.unit(2.1, "feet"),
  5613. name: "Foot",
  5614. image: {
  5615. source: "./media/characters/gale/foot.svg"
  5616. }
  5617. },
  5618. },
  5619. [
  5620. {
  5621. name: "Normal",
  5622. height: math.unit(7, "feet")
  5623. },
  5624. {
  5625. name: "Macro",
  5626. height: math.unit(150, "feet"),
  5627. default: true
  5628. },
  5629. {
  5630. name: "Macro+",
  5631. height: math.unit(300, "feet")
  5632. },
  5633. ]
  5634. ))
  5635. characterMakers.push(() => makeCharacter(
  5636. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5637. {
  5638. front: {
  5639. height: math.unit(5 + 10/12, "feet"),
  5640. weight: math.unit(67, "kg"),
  5641. name: "Front",
  5642. image: {
  5643. source: "./media/characters/draylen/front.svg",
  5644. extra: 832/777,
  5645. bottom: 85/917
  5646. }
  5647. }
  5648. },
  5649. [
  5650. {
  5651. name: "Normal",
  5652. height: math.unit(5 + 10/12, "feet")
  5653. },
  5654. {
  5655. name: "Macro",
  5656. height: math.unit(150, "feet"),
  5657. default: true
  5658. }
  5659. ]
  5660. ))
  5661. characterMakers.push(() => makeCharacter(
  5662. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5663. {
  5664. front: {
  5665. height: math.unit(7 + 9 / 12, "feet"),
  5666. weight: math.unit(379, "lbs"),
  5667. name: "Front",
  5668. image: {
  5669. source: "./media/characters/chez/front.svg"
  5670. }
  5671. },
  5672. side: {
  5673. height: math.unit(7 + 9 / 12, "feet"),
  5674. weight: math.unit(379, "lbs"),
  5675. name: "Side",
  5676. image: {
  5677. source: "./media/characters/chez/side.svg"
  5678. }
  5679. }
  5680. },
  5681. [
  5682. {
  5683. name: "Normal",
  5684. height: math.unit(7 + 9 / 12, "feet"),
  5685. default: true
  5686. },
  5687. {
  5688. name: "God King",
  5689. height: math.unit(9750000, "meters")
  5690. }
  5691. ]
  5692. ))
  5693. characterMakers.push(() => makeCharacter(
  5694. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5695. {
  5696. front: {
  5697. height: math.unit(6, "feet"),
  5698. weight: math.unit(275, "lbs"),
  5699. name: "Front",
  5700. image: {
  5701. source: "./media/characters/kaylum/front.svg",
  5702. bottom: 0.01,
  5703. extra: 1166 / 1031
  5704. }
  5705. },
  5706. frontWingless: {
  5707. height: math.unit(6, "feet"),
  5708. weight: math.unit(275, "lbs"),
  5709. name: "Front (Wingless)",
  5710. image: {
  5711. source: "./media/characters/kaylum/front-wingless.svg",
  5712. bottom: 0.01,
  5713. extra: 1117 / 1031
  5714. }
  5715. }
  5716. },
  5717. [
  5718. {
  5719. name: "Normal",
  5720. height: math.unit(3.05, "meters")
  5721. },
  5722. {
  5723. name: "Master",
  5724. height: math.unit(5.5, "meters")
  5725. },
  5726. {
  5727. name: "Rampage",
  5728. height: math.unit(19, "meters")
  5729. },
  5730. {
  5731. name: "Macro Lite",
  5732. height: math.unit(37, "meters")
  5733. },
  5734. {
  5735. name: "Hyper Predator",
  5736. height: math.unit(61, "meters")
  5737. },
  5738. {
  5739. name: "Macro",
  5740. height: math.unit(138, "meters"),
  5741. default: true
  5742. }
  5743. ]
  5744. ))
  5745. characterMakers.push(() => makeCharacter(
  5746. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5747. {
  5748. front: {
  5749. height: math.unit(5 + 5 / 12, "feet"),
  5750. weight: math.unit(120, "lbs"),
  5751. name: "Front",
  5752. image: {
  5753. source: "./media/characters/geta/front.svg",
  5754. extra: 1003/933,
  5755. bottom: 21/1024
  5756. }
  5757. },
  5758. paw: {
  5759. height: math.unit(0.35, "feet"),
  5760. name: "Paw",
  5761. image: {
  5762. source: "./media/characters/geta/paw.svg"
  5763. }
  5764. },
  5765. },
  5766. [
  5767. {
  5768. name: "Micro",
  5769. height: math.unit(3, "inches"),
  5770. default: true
  5771. },
  5772. {
  5773. name: "Normal",
  5774. height: math.unit(5 + 5 / 12, "feet")
  5775. }
  5776. ]
  5777. ))
  5778. characterMakers.push(() => makeCharacter(
  5779. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5780. {
  5781. front: {
  5782. height: math.unit(6, "feet"),
  5783. weight: math.unit(300, "lbs"),
  5784. name: "Front",
  5785. image: {
  5786. source: "./media/characters/tyrnn/front.svg"
  5787. }
  5788. }
  5789. },
  5790. [
  5791. {
  5792. name: "Main Height",
  5793. height: math.unit(355, "feet"),
  5794. default: true
  5795. },
  5796. {
  5797. name: "Fave. Height",
  5798. height: math.unit(2400, "feet")
  5799. }
  5800. ]
  5801. ))
  5802. characterMakers.push(() => makeCharacter(
  5803. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5804. {
  5805. front: {
  5806. height: math.unit(6, "feet"),
  5807. weight: math.unit(300, "lbs"),
  5808. name: "Front",
  5809. image: {
  5810. source: "./media/characters/appledectomy/front.svg"
  5811. }
  5812. }
  5813. },
  5814. [
  5815. {
  5816. name: "Macro",
  5817. height: math.unit(2500, "feet")
  5818. },
  5819. {
  5820. name: "Megamacro",
  5821. height: math.unit(50, "miles"),
  5822. default: true
  5823. },
  5824. {
  5825. name: "Gigamacro",
  5826. height: math.unit(5000, "miles")
  5827. },
  5828. {
  5829. name: "Teramacro",
  5830. height: math.unit(250000, "miles")
  5831. },
  5832. ]
  5833. ))
  5834. characterMakers.push(() => makeCharacter(
  5835. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5836. {
  5837. front: {
  5838. height: math.unit(6, "feet"),
  5839. weight: math.unit(200, "lbs"),
  5840. name: "Front",
  5841. image: {
  5842. source: "./media/characters/vulpes/front.svg",
  5843. extra: 573 / 543,
  5844. bottom: 0.033
  5845. }
  5846. },
  5847. side: {
  5848. height: math.unit(6, "feet"),
  5849. weight: math.unit(200, "lbs"),
  5850. name: "Side",
  5851. image: {
  5852. source: "./media/characters/vulpes/side.svg",
  5853. extra: 577 / 549,
  5854. bottom: 11 / 588
  5855. }
  5856. },
  5857. back: {
  5858. height: math.unit(6, "feet"),
  5859. weight: math.unit(200, "lbs"),
  5860. name: "Back",
  5861. image: {
  5862. source: "./media/characters/vulpes/back.svg",
  5863. extra: 573 / 549,
  5864. bottom: 20 / 593
  5865. }
  5866. },
  5867. feet: {
  5868. height: math.unit(1.276, "feet"),
  5869. name: "Feet",
  5870. image: {
  5871. source: "./media/characters/vulpes/feet.svg"
  5872. }
  5873. },
  5874. maw: {
  5875. height: math.unit(1.18, "feet"),
  5876. name: "Maw",
  5877. image: {
  5878. source: "./media/characters/vulpes/maw.svg"
  5879. }
  5880. },
  5881. },
  5882. [
  5883. {
  5884. name: "Micro",
  5885. height: math.unit(2, "inches")
  5886. },
  5887. {
  5888. name: "Normal",
  5889. height: math.unit(6.3, "feet")
  5890. },
  5891. {
  5892. name: "Macro",
  5893. height: math.unit(850, "feet")
  5894. },
  5895. {
  5896. name: "Megamacro",
  5897. height: math.unit(7500, "feet"),
  5898. default: true
  5899. },
  5900. {
  5901. name: "Gigamacro",
  5902. height: math.unit(570000, "miles")
  5903. }
  5904. ]
  5905. ))
  5906. characterMakers.push(() => makeCharacter(
  5907. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5908. {
  5909. front: {
  5910. height: math.unit(6, "feet"),
  5911. weight: math.unit(210, "lbs"),
  5912. name: "Front",
  5913. image: {
  5914. source: "./media/characters/rain-fallen/front.svg"
  5915. }
  5916. },
  5917. side: {
  5918. height: math.unit(6, "feet"),
  5919. weight: math.unit(210, "lbs"),
  5920. name: "Side",
  5921. image: {
  5922. source: "./media/characters/rain-fallen/side.svg"
  5923. }
  5924. },
  5925. back: {
  5926. height: math.unit(6, "feet"),
  5927. weight: math.unit(210, "lbs"),
  5928. name: "Back",
  5929. image: {
  5930. source: "./media/characters/rain-fallen/back.svg"
  5931. }
  5932. },
  5933. feral: {
  5934. height: math.unit(9, "feet"),
  5935. weight: math.unit(700, "lbs"),
  5936. name: "Feral",
  5937. image: {
  5938. source: "./media/characters/rain-fallen/feral.svg"
  5939. }
  5940. },
  5941. },
  5942. [
  5943. {
  5944. name: "Meddling with Mortals",
  5945. height: math.unit(8 + 8/12, "feet")
  5946. },
  5947. {
  5948. name: "Normal",
  5949. height: math.unit(5, "meter")
  5950. },
  5951. {
  5952. name: "Macro",
  5953. height: math.unit(150, "meter"),
  5954. default: true
  5955. },
  5956. {
  5957. name: "Megamacro",
  5958. height: math.unit(278e6, "meter")
  5959. },
  5960. {
  5961. name: "Gigamacro",
  5962. height: math.unit(2e9, "meter")
  5963. },
  5964. {
  5965. name: "Teramacro",
  5966. height: math.unit(8e12, "meter")
  5967. },
  5968. {
  5969. name: "Devourer",
  5970. height: math.unit(14, "zettameters")
  5971. },
  5972. {
  5973. name: "Scarlet King",
  5974. height: math.unit(18, "yottameters")
  5975. },
  5976. {
  5977. name: "Void",
  5978. height: math.unit(1e88, "yottameters")
  5979. }
  5980. ]
  5981. ))
  5982. characterMakers.push(() => makeCharacter(
  5983. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5984. {
  5985. standing: {
  5986. height: math.unit(6, "feet"),
  5987. weight: math.unit(180, "lbs"),
  5988. name: "Standing",
  5989. image: {
  5990. source: "./media/characters/zaakira/standing.svg",
  5991. extra: 1599/1504,
  5992. bottom: 39/1638
  5993. }
  5994. },
  5995. laying: {
  5996. height: math.unit(3.3, "feet"),
  5997. weight: math.unit(180, "lbs"),
  5998. name: "Laying",
  5999. image: {
  6000. source: "./media/characters/zaakira/laying.svg"
  6001. }
  6002. },
  6003. },
  6004. [
  6005. {
  6006. name: "Normal",
  6007. height: math.unit(12, "feet")
  6008. },
  6009. {
  6010. name: "Macro",
  6011. height: math.unit(279, "feet"),
  6012. default: true
  6013. }
  6014. ]
  6015. ))
  6016. characterMakers.push(() => makeCharacter(
  6017. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  6018. {
  6019. femSfw: {
  6020. height: math.unit(8, "feet"),
  6021. weight: math.unit(350, "lb"),
  6022. name: "Fem",
  6023. image: {
  6024. source: "./media/characters/sigvald/fem-sfw.svg",
  6025. extra: 182 / 164,
  6026. bottom: 8.7 / 190.5
  6027. }
  6028. },
  6029. femNsfw: {
  6030. height: math.unit(8, "feet"),
  6031. weight: math.unit(350, "lb"),
  6032. name: "Fem (NSFW)",
  6033. image: {
  6034. source: "./media/characters/sigvald/fem-nsfw.svg",
  6035. extra: 182 / 164,
  6036. bottom: 8.7 / 190.5
  6037. }
  6038. },
  6039. maleNsfw: {
  6040. height: math.unit(8, "feet"),
  6041. weight: math.unit(350, "lb"),
  6042. name: "Male (NSFW)",
  6043. image: {
  6044. source: "./media/characters/sigvald/male-nsfw.svg",
  6045. extra: 182 / 164,
  6046. bottom: 8.7 / 190.5
  6047. }
  6048. },
  6049. hermNsfw: {
  6050. height: math.unit(8, "feet"),
  6051. weight: math.unit(350, "lb"),
  6052. name: "Herm (NSFW)",
  6053. image: {
  6054. source: "./media/characters/sigvald/herm-nsfw.svg",
  6055. extra: 182 / 164,
  6056. bottom: 8.7 / 190.5
  6057. }
  6058. },
  6059. dick: {
  6060. height: math.unit(2.36, "feet"),
  6061. name: "Dick",
  6062. image: {
  6063. source: "./media/characters/sigvald/dick.svg"
  6064. }
  6065. },
  6066. eye: {
  6067. height: math.unit(0.31, "feet"),
  6068. name: "Eye",
  6069. image: {
  6070. source: "./media/characters/sigvald/eye.svg"
  6071. }
  6072. },
  6073. mouth: {
  6074. height: math.unit(0.92, "feet"),
  6075. name: "Mouth",
  6076. image: {
  6077. source: "./media/characters/sigvald/mouth.svg"
  6078. }
  6079. },
  6080. paws: {
  6081. height: math.unit(2.2, "feet"),
  6082. name: "Paws",
  6083. image: {
  6084. source: "./media/characters/sigvald/paws.svg"
  6085. }
  6086. }
  6087. },
  6088. [
  6089. {
  6090. name: "Normal",
  6091. height: math.unit(8, "feet")
  6092. },
  6093. {
  6094. name: "Large",
  6095. height: math.unit(12, "feet")
  6096. },
  6097. {
  6098. name: "Larger",
  6099. height: math.unit(20, "feet")
  6100. },
  6101. {
  6102. name: "Macro",
  6103. height: math.unit(150, "feet")
  6104. },
  6105. {
  6106. name: "Macro+",
  6107. height: math.unit(200, "feet"),
  6108. default: true
  6109. },
  6110. ]
  6111. ))
  6112. characterMakers.push(() => makeCharacter(
  6113. { name: "Scott", species: ["fox"], tags: ["taur"] },
  6114. {
  6115. side: {
  6116. height: math.unit(12, "feet"),
  6117. weight: math.unit(2000, "kg"),
  6118. name: "Side",
  6119. image: {
  6120. source: "./media/characters/scott/side.svg",
  6121. extra: 754 / 724,
  6122. bottom: 0.069
  6123. }
  6124. },
  6125. upright: {
  6126. height: math.unit(12, "feet"),
  6127. weight: math.unit(2000, "kg"),
  6128. name: "Upright",
  6129. image: {
  6130. source: "./media/characters/scott/upright.svg",
  6131. extra: 3881 / 3722,
  6132. bottom: 0.05
  6133. }
  6134. },
  6135. },
  6136. [
  6137. {
  6138. name: "Normal",
  6139. height: math.unit(12, "feet"),
  6140. default: true
  6141. },
  6142. ]
  6143. ))
  6144. characterMakers.push(() => makeCharacter(
  6145. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6146. {
  6147. side: {
  6148. height: math.unit(8, "meters"),
  6149. weight: math.unit(84755, "lbs"),
  6150. name: "Side",
  6151. image: {
  6152. source: "./media/characters/tobias/side.svg",
  6153. extra: 1474 / 1096,
  6154. bottom: 38.9 / 1513.1235
  6155. }
  6156. },
  6157. maw: {
  6158. height: math.unit(2.3, "meters"),
  6159. name: "Maw",
  6160. image: {
  6161. source: "./media/characters/tobias/maw.svg"
  6162. }
  6163. },
  6164. burp: {
  6165. height: math.unit(2.85, "meters"),
  6166. name: "Burp",
  6167. image: {
  6168. source: "./media/characters/tobias/burp.svg"
  6169. }
  6170. },
  6171. },
  6172. [
  6173. {
  6174. name: "Normal",
  6175. height: math.unit(8, "meters"),
  6176. default: true
  6177. },
  6178. ]
  6179. ))
  6180. characterMakers.push(() => makeCharacter(
  6181. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6182. {
  6183. front: {
  6184. height: math.unit(5.5, "feet"),
  6185. weight: math.unit(400, "lbs"),
  6186. name: "Front",
  6187. image: {
  6188. source: "./media/characters/kieran/front.svg",
  6189. extra: 2694 / 2364,
  6190. bottom: 217 / 2908
  6191. }
  6192. },
  6193. side: {
  6194. height: math.unit(5.5, "feet"),
  6195. weight: math.unit(400, "lbs"),
  6196. name: "Side",
  6197. image: {
  6198. source: "./media/characters/kieran/side.svg",
  6199. extra: 875 / 777,
  6200. bottom: 84.6 / 959
  6201. }
  6202. },
  6203. },
  6204. [
  6205. {
  6206. name: "Normal",
  6207. height: math.unit(5.5, "feet"),
  6208. default: true
  6209. },
  6210. ]
  6211. ))
  6212. characterMakers.push(() => makeCharacter(
  6213. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6214. {
  6215. side: {
  6216. height: math.unit(2, "meters"),
  6217. weight: math.unit(70, "kg"),
  6218. name: "Side",
  6219. image: {
  6220. source: "./media/characters/sanya/side.svg",
  6221. bottom: 0.02,
  6222. extra: 1.02
  6223. }
  6224. },
  6225. },
  6226. [
  6227. {
  6228. name: "Small",
  6229. height: math.unit(2, "meters")
  6230. },
  6231. {
  6232. name: "Normal",
  6233. height: math.unit(3, "meters")
  6234. },
  6235. {
  6236. name: "Macro",
  6237. height: math.unit(16, "meters"),
  6238. default: true
  6239. },
  6240. ]
  6241. ))
  6242. characterMakers.push(() => makeCharacter(
  6243. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6244. {
  6245. front: {
  6246. height: math.unit(2, "meters"),
  6247. weight: math.unit(120, "kg"),
  6248. name: "Front",
  6249. image: {
  6250. source: "./media/characters/miranda/front.svg",
  6251. extra: 195 / 185,
  6252. bottom: 10.9 / 206.5
  6253. }
  6254. },
  6255. back: {
  6256. height: math.unit(2, "meters"),
  6257. weight: math.unit(120, "kg"),
  6258. name: "Back",
  6259. image: {
  6260. source: "./media/characters/miranda/back.svg",
  6261. extra: 201 / 193,
  6262. bottom: 2.3 / 203.7
  6263. }
  6264. },
  6265. },
  6266. [
  6267. {
  6268. name: "Normal",
  6269. height: math.unit(10, "feet"),
  6270. default: true
  6271. }
  6272. ]
  6273. ))
  6274. characterMakers.push(() => makeCharacter(
  6275. { name: "James", species: ["deer"], tags: ["anthro"] },
  6276. {
  6277. side: {
  6278. height: math.unit(2, "meters"),
  6279. weight: math.unit(100, "kg"),
  6280. name: "Front",
  6281. image: {
  6282. source: "./media/characters/james/front.svg",
  6283. extra: 10 / 8.5
  6284. }
  6285. },
  6286. },
  6287. [
  6288. {
  6289. name: "Normal",
  6290. height: math.unit(8.5, "feet"),
  6291. default: true
  6292. }
  6293. ]
  6294. ))
  6295. characterMakers.push(() => makeCharacter(
  6296. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6297. {
  6298. side: {
  6299. height: math.unit(9.5, "feet"),
  6300. weight: math.unit(2500, "lbs"),
  6301. name: "Side",
  6302. image: {
  6303. source: "./media/characters/heather/side.svg"
  6304. }
  6305. },
  6306. },
  6307. [
  6308. {
  6309. name: "Normal",
  6310. height: math.unit(9.5, "feet"),
  6311. default: true
  6312. }
  6313. ]
  6314. ))
  6315. characterMakers.push(() => makeCharacter(
  6316. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6317. {
  6318. side: {
  6319. height: math.unit(6.5, "feet"),
  6320. weight: math.unit(400, "lbs"),
  6321. name: "Side",
  6322. image: {
  6323. source: "./media/characters/lukas/side.svg",
  6324. extra: 7.25 / 6.5
  6325. }
  6326. },
  6327. },
  6328. [
  6329. {
  6330. name: "Normal",
  6331. height: math.unit(6.5, "feet"),
  6332. default: true
  6333. }
  6334. ]
  6335. ))
  6336. characterMakers.push(() => makeCharacter(
  6337. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6338. {
  6339. side: {
  6340. height: math.unit(5, "feet"),
  6341. weight: math.unit(3000, "lbs"),
  6342. name: "Side",
  6343. image: {
  6344. source: "./media/characters/louise/side.svg"
  6345. }
  6346. },
  6347. },
  6348. [
  6349. {
  6350. name: "Normal",
  6351. height: math.unit(5, "feet"),
  6352. default: true
  6353. }
  6354. ]
  6355. ))
  6356. characterMakers.push(() => makeCharacter(
  6357. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6358. {
  6359. side: {
  6360. height: math.unit(6, "feet"),
  6361. weight: math.unit(150, "lbs"),
  6362. name: "Side",
  6363. image: {
  6364. source: "./media/characters/ramona/side.svg",
  6365. extra: 871/854,
  6366. bottom: 41/912
  6367. }
  6368. },
  6369. },
  6370. [
  6371. {
  6372. name: "Normal",
  6373. height: math.unit(6 + 4/12, "feet")
  6374. },
  6375. {
  6376. name: "Minimacro",
  6377. height: math.unit(5.3, "meters"),
  6378. default: true
  6379. },
  6380. {
  6381. name: "Macro",
  6382. height: math.unit(20, "stories")
  6383. },
  6384. {
  6385. name: "Macro+",
  6386. height: math.unit(50, "stories")
  6387. },
  6388. ]
  6389. ))
  6390. characterMakers.push(() => makeCharacter(
  6391. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6392. {
  6393. standing: {
  6394. height: math.unit(5.75, "feet"),
  6395. weight: math.unit(160, "lbs"),
  6396. name: "Standing",
  6397. image: {
  6398. source: "./media/characters/deerpuff/standing.svg",
  6399. extra: 682 / 624
  6400. }
  6401. },
  6402. sitting: {
  6403. height: math.unit(5.75 / 1.79, "feet"),
  6404. weight: math.unit(160, "lbs"),
  6405. name: "Sitting",
  6406. image: {
  6407. source: "./media/characters/deerpuff/sitting.svg",
  6408. bottom: 44 / 400,
  6409. extra: 1
  6410. }
  6411. },
  6412. taurLaying: {
  6413. height: math.unit(6, "feet"),
  6414. weight: math.unit(400, "lbs"),
  6415. name: "Taur (Laying)",
  6416. image: {
  6417. source: "./media/characters/deerpuff/taur-laying.svg"
  6418. }
  6419. },
  6420. },
  6421. [
  6422. {
  6423. name: "Puffball",
  6424. height: math.unit(6, "inches")
  6425. },
  6426. {
  6427. name: "Normalpuff",
  6428. height: math.unit(5.75, "feet")
  6429. },
  6430. {
  6431. name: "Macropuff",
  6432. height: math.unit(1500, "feet"),
  6433. default: true
  6434. },
  6435. {
  6436. name: "Megapuff",
  6437. height: math.unit(500, "miles")
  6438. },
  6439. {
  6440. name: "Gigapuff",
  6441. height: math.unit(250000, "miles")
  6442. },
  6443. {
  6444. name: "Omegapuff",
  6445. height: math.unit(1000, "lightyears")
  6446. },
  6447. ]
  6448. ))
  6449. characterMakers.push(() => makeCharacter(
  6450. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6451. {
  6452. stomping: {
  6453. height: math.unit(6, "feet"),
  6454. weight: math.unit(170, "lbs"),
  6455. name: "Stomping",
  6456. image: {
  6457. source: "./media/characters/vivian/stomping.svg"
  6458. }
  6459. },
  6460. sitting: {
  6461. height: math.unit(6 / 1.75, "feet"),
  6462. weight: math.unit(170, "lbs"),
  6463. name: "Sitting",
  6464. image: {
  6465. source: "./media/characters/vivian/sitting.svg",
  6466. bottom: 1 / 6.4,
  6467. extra: 1,
  6468. }
  6469. },
  6470. },
  6471. [
  6472. {
  6473. name: "Normal",
  6474. height: math.unit(7, "feet"),
  6475. default: true
  6476. },
  6477. {
  6478. name: "Macro",
  6479. height: math.unit(10, "stories")
  6480. },
  6481. {
  6482. name: "Macro+",
  6483. height: math.unit(30, "stories")
  6484. },
  6485. {
  6486. name: "Megamacro",
  6487. height: math.unit(10, "miles")
  6488. },
  6489. {
  6490. name: "Megamacro+",
  6491. height: math.unit(2750000, "meters")
  6492. },
  6493. ]
  6494. ))
  6495. characterMakers.push(() => makeCharacter(
  6496. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6497. {
  6498. front: {
  6499. height: math.unit(6, "feet"),
  6500. weight: math.unit(160, "lbs"),
  6501. name: "Front",
  6502. image: {
  6503. source: "./media/characters/prince/front.svg",
  6504. extra: 1938/1682,
  6505. bottom: 45/1983
  6506. }
  6507. },
  6508. back: {
  6509. height: math.unit(6, "feet"),
  6510. weight: math.unit(160, "lbs"),
  6511. name: "Back",
  6512. image: {
  6513. source: "./media/characters/prince/back.svg",
  6514. extra: 1955/1726,
  6515. bottom: 6/1961
  6516. }
  6517. },
  6518. },
  6519. [
  6520. {
  6521. name: "Normal",
  6522. height: math.unit(7.75, "feet"),
  6523. default: true
  6524. },
  6525. {
  6526. name: "Not cute",
  6527. height: math.unit(17, "feet")
  6528. },
  6529. {
  6530. name: "I said NOT",
  6531. height: math.unit(91, "feet")
  6532. },
  6533. {
  6534. name: "Please stop",
  6535. height: math.unit(560, "feet")
  6536. },
  6537. {
  6538. name: "What have you done",
  6539. height: math.unit(2200, "feet")
  6540. },
  6541. {
  6542. name: "Deer God",
  6543. height: math.unit(3.6, "miles")
  6544. },
  6545. ]
  6546. ))
  6547. characterMakers.push(() => makeCharacter(
  6548. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6549. {
  6550. standing: {
  6551. height: math.unit(6, "feet"),
  6552. weight: math.unit(300, "lbs"),
  6553. name: "Standing",
  6554. image: {
  6555. source: "./media/characters/psymon/standing.svg",
  6556. extra: 1888 / 1810,
  6557. bottom: 0.05
  6558. }
  6559. },
  6560. slithering: {
  6561. height: math.unit(6, "feet"),
  6562. weight: math.unit(300, "lbs"),
  6563. name: "Slithering",
  6564. image: {
  6565. source: "./media/characters/psymon/slithering.svg",
  6566. extra: 1330 / 1224
  6567. }
  6568. },
  6569. slitheringAlt: {
  6570. height: math.unit(6, "feet"),
  6571. weight: math.unit(300, "lbs"),
  6572. name: "Slithering (Alt)",
  6573. image: {
  6574. source: "./media/characters/psymon/slithering-alt.svg",
  6575. extra: 1330 / 1224
  6576. }
  6577. },
  6578. },
  6579. [
  6580. {
  6581. name: "Normal",
  6582. height: math.unit(11.25, "feet"),
  6583. default: true
  6584. },
  6585. {
  6586. name: "Large",
  6587. height: math.unit(27, "feet")
  6588. },
  6589. {
  6590. name: "Giant",
  6591. height: math.unit(87, "feet")
  6592. },
  6593. {
  6594. name: "Macro",
  6595. height: math.unit(365, "feet")
  6596. },
  6597. {
  6598. name: "Megamacro",
  6599. height: math.unit(3, "miles")
  6600. },
  6601. {
  6602. name: "World Serpent",
  6603. height: math.unit(8000, "miles")
  6604. },
  6605. ]
  6606. ))
  6607. characterMakers.push(() => makeCharacter(
  6608. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6609. {
  6610. front: {
  6611. height: math.unit(6, "feet"),
  6612. weight: math.unit(180, "lbs"),
  6613. name: "Front",
  6614. image: {
  6615. source: "./media/characters/daimos/front.svg",
  6616. extra: 4160 / 3897,
  6617. bottom: 0.021
  6618. }
  6619. }
  6620. },
  6621. [
  6622. {
  6623. name: "Normal",
  6624. height: math.unit(8, "feet"),
  6625. default: true
  6626. },
  6627. {
  6628. name: "Big Dog",
  6629. height: math.unit(22, "feet")
  6630. },
  6631. {
  6632. name: "Macro",
  6633. height: math.unit(127, "feet")
  6634. },
  6635. {
  6636. name: "Megamacro",
  6637. height: math.unit(3600, "feet")
  6638. },
  6639. ]
  6640. ))
  6641. characterMakers.push(() => makeCharacter(
  6642. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6643. {
  6644. side: {
  6645. height: math.unit(6, "feet"),
  6646. weight: math.unit(180, "lbs"),
  6647. name: "Side",
  6648. image: {
  6649. source: "./media/characters/blake/side.svg",
  6650. extra: 1212 / 1120,
  6651. bottom: 0.05
  6652. }
  6653. },
  6654. crouched: {
  6655. height: math.unit(6 * 0.57, "feet"),
  6656. weight: math.unit(180, "lbs"),
  6657. name: "Crouched",
  6658. image: {
  6659. source: "./media/characters/blake/crouched.svg",
  6660. extra: 840 / 587,
  6661. bottom: 0.04
  6662. }
  6663. },
  6664. bent: {
  6665. height: math.unit(6 * 0.75, "feet"),
  6666. weight: math.unit(180, "lbs"),
  6667. name: "Bent",
  6668. image: {
  6669. source: "./media/characters/blake/bent.svg",
  6670. extra: 592 / 544,
  6671. bottom: 0.035
  6672. }
  6673. },
  6674. },
  6675. [
  6676. {
  6677. name: "Normal",
  6678. height: math.unit(8 + 1 / 6, "feet"),
  6679. default: true
  6680. },
  6681. {
  6682. name: "Big Backside",
  6683. height: math.unit(37, "feet")
  6684. },
  6685. {
  6686. name: "Subway Shredder",
  6687. height: math.unit(72, "feet")
  6688. },
  6689. {
  6690. name: "City Carver",
  6691. height: math.unit(1675, "feet")
  6692. },
  6693. {
  6694. name: "Tectonic Tweaker",
  6695. height: math.unit(2300, "miles")
  6696. },
  6697. ]
  6698. ))
  6699. characterMakers.push(() => makeCharacter(
  6700. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6701. {
  6702. front: {
  6703. height: math.unit(6, "feet"),
  6704. weight: math.unit(180, "lbs"),
  6705. name: "Front",
  6706. image: {
  6707. source: "./media/characters/guisetto/front.svg",
  6708. extra: 856 / 817,
  6709. bottom: 0.06
  6710. }
  6711. },
  6712. airborne: {
  6713. height: math.unit(6, "feet"),
  6714. weight: math.unit(180, "lbs"),
  6715. name: "Airborne",
  6716. image: {
  6717. source: "./media/characters/guisetto/airborne.svg",
  6718. extra: 584 / 525
  6719. }
  6720. },
  6721. },
  6722. [
  6723. {
  6724. name: "Normal",
  6725. height: math.unit(10 + 11 / 12, "feet"),
  6726. default: true
  6727. },
  6728. {
  6729. name: "Large",
  6730. height: math.unit(35, "feet")
  6731. },
  6732. {
  6733. name: "Macro",
  6734. height: math.unit(475, "feet")
  6735. },
  6736. ]
  6737. ))
  6738. characterMakers.push(() => makeCharacter(
  6739. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6740. {
  6741. front: {
  6742. height: math.unit(6, "feet"),
  6743. weight: math.unit(180, "lbs"),
  6744. name: "Front",
  6745. image: {
  6746. source: "./media/characters/luxor/front.svg",
  6747. extra: 2940 / 2152
  6748. }
  6749. },
  6750. back: {
  6751. height: math.unit(6, "feet"),
  6752. weight: math.unit(180, "lbs"),
  6753. name: "Back",
  6754. image: {
  6755. source: "./media/characters/luxor/back.svg",
  6756. extra: 1083 / 960
  6757. }
  6758. },
  6759. },
  6760. [
  6761. {
  6762. name: "Normal",
  6763. height: math.unit(5 + 5 / 6, "feet"),
  6764. default: true
  6765. },
  6766. {
  6767. name: "Lamp",
  6768. height: math.unit(50, "feet")
  6769. },
  6770. {
  6771. name: "Lämp",
  6772. height: math.unit(300, "feet")
  6773. },
  6774. {
  6775. name: "The sun is a lamp",
  6776. height: math.unit(250000, "miles")
  6777. },
  6778. ]
  6779. ))
  6780. characterMakers.push(() => makeCharacter(
  6781. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6782. {
  6783. front: {
  6784. height: math.unit(6, "feet"),
  6785. weight: math.unit(50, "lbs"),
  6786. name: "Front",
  6787. image: {
  6788. source: "./media/characters/huoyan/front.svg"
  6789. }
  6790. },
  6791. side: {
  6792. height: math.unit(6, "feet"),
  6793. weight: math.unit(180, "lbs"),
  6794. name: "Side",
  6795. image: {
  6796. source: "./media/characters/huoyan/side.svg"
  6797. }
  6798. },
  6799. },
  6800. [
  6801. {
  6802. name: "Chef",
  6803. height: math.unit(9, "feet")
  6804. },
  6805. {
  6806. name: "Normal",
  6807. height: math.unit(65, "feet"),
  6808. default: true
  6809. },
  6810. {
  6811. name: "Macro",
  6812. height: math.unit(780, "feet")
  6813. },
  6814. {
  6815. name: "Flaming Mountain",
  6816. height: math.unit(4.8, "miles")
  6817. },
  6818. {
  6819. name: "Celestial",
  6820. height: math.unit(765000, "miles")
  6821. },
  6822. ]
  6823. ))
  6824. characterMakers.push(() => makeCharacter(
  6825. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6826. {
  6827. front: {
  6828. height: math.unit(5 + 3 / 4, "feet"),
  6829. weight: math.unit(120, "lbs"),
  6830. name: "Front",
  6831. image: {
  6832. source: "./media/characters/tails/front.svg"
  6833. }
  6834. }
  6835. },
  6836. [
  6837. {
  6838. name: "Normal",
  6839. height: math.unit(5 + 3 / 4, "feet"),
  6840. default: true
  6841. }
  6842. ]
  6843. ))
  6844. characterMakers.push(() => makeCharacter(
  6845. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6846. {
  6847. front: {
  6848. height: math.unit(4, "feet"),
  6849. weight: math.unit(50, "lbs"),
  6850. name: "Front",
  6851. image: {
  6852. source: "./media/characters/rainy/front.svg"
  6853. }
  6854. }
  6855. },
  6856. [
  6857. {
  6858. name: "Macro",
  6859. height: math.unit(800, "feet"),
  6860. default: true
  6861. }
  6862. ]
  6863. ))
  6864. characterMakers.push(() => makeCharacter(
  6865. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6866. {
  6867. front: {
  6868. height: math.unit(6, "feet"),
  6869. weight: math.unit(150, "lbs"),
  6870. name: "Front",
  6871. image: {
  6872. source: "./media/characters/rainier/front.svg"
  6873. }
  6874. }
  6875. },
  6876. [
  6877. {
  6878. name: "Micro",
  6879. height: math.unit(2, "mm"),
  6880. default: true
  6881. }
  6882. ]
  6883. ))
  6884. characterMakers.push(() => makeCharacter(
  6885. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6886. {
  6887. front: {
  6888. height: math.unit(8 + 4/12, "feet"),
  6889. weight: math.unit(450, "kilograms"),
  6890. name: "Front",
  6891. image: {
  6892. source: "./media/characters/andy-renard/front.svg",
  6893. extra: 862/809,
  6894. bottom: 85/947
  6895. },
  6896. extraAttributes: {
  6897. "pawSize": {
  6898. name: "Paw Size",
  6899. power: 2,
  6900. type: "area",
  6901. base: math.unit(0.45*0.3, "meters^2")
  6902. },
  6903. "handSize": {
  6904. name: "Hand Size",
  6905. power: 2,
  6906. type: "area",
  6907. base: math.unit(0.4 * 0.3, "meters^2")
  6908. },
  6909. "cockSize": {
  6910. name: "Cock Length",
  6911. power: 1,
  6912. type: "length",
  6913. base: math.unit(0.75, "meters")
  6914. },
  6915. "ballDiameter": {
  6916. name: "Ball Diameter",
  6917. power: 1,
  6918. type: "length",
  6919. base: math.unit(0.3, "meters")
  6920. },
  6921. "ballVolume": {
  6922. name: "Ball Volume",
  6923. power: 3,
  6924. type: "volume",
  6925. base: math.unit(0.01413716694, "meters^3")
  6926. },
  6927. }
  6928. },
  6929. back: {
  6930. height: math.unit(8 + 4/12, "feet"),
  6931. weight: math.unit(450, "kilograms"),
  6932. name: "Back",
  6933. image: {
  6934. source: "./media/characters/andy-renard/back.svg",
  6935. extra: 1112/1033,
  6936. bottom: 64/1176
  6937. },
  6938. extraAttributes: {
  6939. "pawSize": {
  6940. name: "Paw Size",
  6941. power: 2,
  6942. type: "area",
  6943. base: math.unit(0.45*0.3, "meters^2")
  6944. },
  6945. "handSize": {
  6946. name: "Hand Size",
  6947. power: 2,
  6948. type: "area",
  6949. base: math.unit(0.4 * 0.3, "meters^2")
  6950. },
  6951. "cockSize": {
  6952. name: "Cock Length",
  6953. power: 1,
  6954. type: "length",
  6955. base: math.unit(0.75, "meters")
  6956. },
  6957. "ballDiameter": {
  6958. name: "Ball Diameter",
  6959. power: 1,
  6960. type: "length",
  6961. base: math.unit(0.3, "meters")
  6962. },
  6963. "ballVolume": {
  6964. name: "Ball Volume",
  6965. power: 3,
  6966. type: "volume",
  6967. base: math.unit(0.01413716694, "meters^3")
  6968. },
  6969. }
  6970. },
  6971. },
  6972. [
  6973. {
  6974. name: "Tall",
  6975. height: math.unit(6 + 8/12, "feet")
  6976. },
  6977. {
  6978. name: "Very Tall",
  6979. height: math.unit(8 + 4/12, "feet")
  6980. },
  6981. {
  6982. name: "Mini Macro",
  6983. height: math.unit(15, "feet"),
  6984. default: true
  6985. },
  6986. {
  6987. name: "Giant",
  6988. height: math.unit(50, "feet")
  6989. },
  6990. {
  6991. name: "Nice",
  6992. height: math.unit(69, "feet")
  6993. },
  6994. {
  6995. name: "Macro",
  6996. height: math.unit(100, "feet")
  6997. },
  6998. {
  6999. name: "Enormous",
  7000. height: math.unit(500, "feet")
  7001. },
  7002. {
  7003. name: "Gargantuan",
  7004. height: math.unit(1000, "feet")
  7005. },
  7006. {
  7007. name: "Mega",
  7008. height: math.unit(1, "mile")
  7009. },
  7010. {
  7011. name: "Giga",
  7012. height: math.unit(50, "miles")
  7013. },
  7014. {
  7015. name: "Tera",
  7016. height: math.unit(1000, "miles")
  7017. },
  7018. {
  7019. name: "Cosmic",
  7020. height: math.unit(1.5, "galaxies")
  7021. },
  7022. {
  7023. name: "God",
  7024. height: math.unit(1.5, "universes")
  7025. },
  7026. {
  7027. name: "Chief Execute God",
  7028. height: math.unit(1.5, "multiverses")
  7029. },
  7030. ]
  7031. ))
  7032. characterMakers.push(() => makeCharacter(
  7033. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  7034. {
  7035. front: {
  7036. height: math.unit(6, "feet"),
  7037. weight: math.unit(210, "lbs"),
  7038. name: "Front",
  7039. image: {
  7040. source: "./media/characters/cimmaron/front-sfw.svg",
  7041. extra: 701 / 676,
  7042. bottom: 0.046
  7043. }
  7044. },
  7045. back: {
  7046. height: math.unit(6, "feet"),
  7047. weight: math.unit(210, "lbs"),
  7048. name: "Back",
  7049. image: {
  7050. source: "./media/characters/cimmaron/back-sfw.svg",
  7051. extra: 701 / 676,
  7052. bottom: 0.046
  7053. }
  7054. },
  7055. frontNsfw: {
  7056. height: math.unit(6, "feet"),
  7057. weight: math.unit(210, "lbs"),
  7058. name: "Front (NSFW)",
  7059. image: {
  7060. source: "./media/characters/cimmaron/front-nsfw.svg",
  7061. extra: 701 / 676,
  7062. bottom: 0.046
  7063. }
  7064. },
  7065. backNsfw: {
  7066. height: math.unit(6, "feet"),
  7067. weight: math.unit(210, "lbs"),
  7068. name: "Back (NSFW)",
  7069. image: {
  7070. source: "./media/characters/cimmaron/back-nsfw.svg",
  7071. extra: 701 / 676,
  7072. bottom: 0.046
  7073. }
  7074. },
  7075. dick: {
  7076. height: math.unit(1.714, "feet"),
  7077. name: "Dick",
  7078. image: {
  7079. source: "./media/characters/cimmaron/dick.svg"
  7080. }
  7081. },
  7082. },
  7083. [
  7084. {
  7085. name: "Normal",
  7086. height: math.unit(6, "feet"),
  7087. default: true
  7088. },
  7089. {
  7090. name: "Macro Mayor",
  7091. height: math.unit(350, "meters")
  7092. },
  7093. ]
  7094. ))
  7095. characterMakers.push(() => makeCharacter(
  7096. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  7097. {
  7098. front: {
  7099. height: math.unit(6, "feet"),
  7100. weight: math.unit(200, "lbs"),
  7101. name: "Front",
  7102. image: {
  7103. source: "./media/characters/akari/front.svg",
  7104. extra: 962 / 901,
  7105. bottom: 0.04
  7106. }
  7107. }
  7108. },
  7109. [
  7110. {
  7111. name: "Micro",
  7112. height: math.unit(5, "inches"),
  7113. default: true
  7114. },
  7115. {
  7116. name: "Normal",
  7117. height: math.unit(7, "feet")
  7118. },
  7119. ]
  7120. ))
  7121. characterMakers.push(() => makeCharacter(
  7122. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  7123. {
  7124. front: {
  7125. height: math.unit(6, "feet"),
  7126. weight: math.unit(140, "lbs"),
  7127. name: "Front",
  7128. image: {
  7129. source: "./media/characters/cynosura/front.svg",
  7130. extra: 437/410,
  7131. bottom: 9/446
  7132. }
  7133. },
  7134. back: {
  7135. height: math.unit(6, "feet"),
  7136. weight: math.unit(140, "lbs"),
  7137. name: "Back",
  7138. image: {
  7139. source: "./media/characters/cynosura/back.svg",
  7140. extra: 1304/1160,
  7141. bottom: 71/1375
  7142. }
  7143. },
  7144. },
  7145. [
  7146. {
  7147. name: "Micro",
  7148. height: math.unit(4, "inches")
  7149. },
  7150. {
  7151. name: "Normal",
  7152. height: math.unit(5.75, "feet"),
  7153. default: true
  7154. },
  7155. {
  7156. name: "Tall",
  7157. height: math.unit(10, "feet")
  7158. },
  7159. {
  7160. name: "Big",
  7161. height: math.unit(20, "feet")
  7162. },
  7163. {
  7164. name: "Macro",
  7165. height: math.unit(50, "feet")
  7166. },
  7167. ]
  7168. ))
  7169. characterMakers.push(() => makeCharacter(
  7170. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  7171. {
  7172. front: {
  7173. height: math.unit(13 + 2/12, "feet"),
  7174. weight: math.unit(800, "kg"),
  7175. name: "Front",
  7176. image: {
  7177. source: "./media/characters/gin/front.svg",
  7178. extra: 1312/1191,
  7179. bottom: 45/1357
  7180. }
  7181. },
  7182. mouth: {
  7183. height: math.unit(2.39 * 1.8, "feet"),
  7184. name: "Mouth",
  7185. image: {
  7186. source: "./media/characters/gin/mouth.svg"
  7187. }
  7188. },
  7189. hand: {
  7190. height: math.unit(1.57 * 2.19, "feet"),
  7191. name: "Hand",
  7192. image: {
  7193. source: "./media/characters/gin/hand.svg"
  7194. }
  7195. },
  7196. foot: {
  7197. height: math.unit(6 / 4.25 * 2.19, "feet"),
  7198. name: "Foot",
  7199. image: {
  7200. source: "./media/characters/gin/foot.svg"
  7201. }
  7202. },
  7203. sole: {
  7204. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7205. name: "Sole",
  7206. image: {
  7207. source: "./media/characters/gin/sole.svg"
  7208. }
  7209. },
  7210. },
  7211. [
  7212. {
  7213. name: "Very Small",
  7214. height: math.unit(13 + 2 / 12, "feet")
  7215. },
  7216. {
  7217. name: "Micro",
  7218. height: math.unit(600, "miles")
  7219. },
  7220. {
  7221. name: "Regular",
  7222. height: math.unit(20, "earths"),
  7223. default: true
  7224. },
  7225. {
  7226. name: "Macro",
  7227. height: math.unit(2.2, "solarradii")
  7228. },
  7229. {
  7230. name: "Teramacro",
  7231. height: math.unit(1.2, "galaxies")
  7232. },
  7233. {
  7234. name: "Omegamacro",
  7235. height: math.unit(200, "universes")
  7236. },
  7237. ]
  7238. ))
  7239. characterMakers.push(() => makeCharacter(
  7240. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7241. {
  7242. front: {
  7243. height: math.unit(6 + 1 / 6, "feet"),
  7244. weight: math.unit(178, "lbs"),
  7245. name: "Front",
  7246. image: {
  7247. source: "./media/characters/guy/front.svg"
  7248. }
  7249. }
  7250. },
  7251. [
  7252. {
  7253. name: "Normal",
  7254. height: math.unit(6 + 1 / 6, "feet"),
  7255. default: true
  7256. },
  7257. {
  7258. name: "Large",
  7259. height: math.unit(25 + 7 / 12, "feet")
  7260. },
  7261. {
  7262. name: "Macro",
  7263. height: math.unit(60 + 9 / 12, "feet")
  7264. },
  7265. {
  7266. name: "Macro+",
  7267. height: math.unit(246, "feet")
  7268. },
  7269. {
  7270. name: "Macro++",
  7271. height: math.unit(878, "feet")
  7272. }
  7273. ]
  7274. ))
  7275. characterMakers.push(() => makeCharacter(
  7276. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7277. {
  7278. front: {
  7279. height: math.unit(9, "feet"),
  7280. weight: math.unit(800, "lbs"),
  7281. name: "Front",
  7282. image: {
  7283. source: "./media/characters/tiberius/front.svg",
  7284. extra: 2295 / 2071
  7285. }
  7286. },
  7287. back: {
  7288. height: math.unit(9, "feet"),
  7289. weight: math.unit(800, "lbs"),
  7290. name: "Back",
  7291. image: {
  7292. source: "./media/characters/tiberius/back.svg",
  7293. extra: 2373 / 2160
  7294. }
  7295. },
  7296. },
  7297. [
  7298. {
  7299. name: "Normal",
  7300. height: math.unit(9, "feet"),
  7301. default: true
  7302. }
  7303. ]
  7304. ))
  7305. characterMakers.push(() => makeCharacter(
  7306. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7307. {
  7308. front: {
  7309. height: math.unit(6, "feet"),
  7310. weight: math.unit(600, "lbs"),
  7311. name: "Front",
  7312. image: {
  7313. source: "./media/characters/surgo/front.svg",
  7314. extra: 3591 / 2227
  7315. }
  7316. },
  7317. back: {
  7318. height: math.unit(6, "feet"),
  7319. weight: math.unit(600, "lbs"),
  7320. name: "Back",
  7321. image: {
  7322. source: "./media/characters/surgo/back.svg",
  7323. extra: 3557 / 2228
  7324. }
  7325. },
  7326. laying: {
  7327. height: math.unit(6 * 0.85, "feet"),
  7328. weight: math.unit(600, "lbs"),
  7329. name: "Laying",
  7330. image: {
  7331. source: "./media/characters/surgo/laying.svg"
  7332. }
  7333. },
  7334. },
  7335. [
  7336. {
  7337. name: "Normal",
  7338. height: math.unit(6, "feet"),
  7339. default: true
  7340. }
  7341. ]
  7342. ))
  7343. characterMakers.push(() => makeCharacter(
  7344. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7345. {
  7346. side: {
  7347. height: math.unit(6, "feet"),
  7348. weight: math.unit(150, "lbs"),
  7349. name: "Side",
  7350. image: {
  7351. source: "./media/characters/cibus/side.svg",
  7352. extra: 800 / 400
  7353. }
  7354. },
  7355. },
  7356. [
  7357. {
  7358. name: "Normal",
  7359. height: math.unit(6, "feet"),
  7360. default: true
  7361. }
  7362. ]
  7363. ))
  7364. characterMakers.push(() => makeCharacter(
  7365. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7366. {
  7367. front: {
  7368. height: math.unit(6, "feet"),
  7369. weight: math.unit(240, "lbs"),
  7370. name: "Front",
  7371. image: {
  7372. source: "./media/characters/nibbles/front.svg"
  7373. }
  7374. },
  7375. side: {
  7376. height: math.unit(6, "feet"),
  7377. weight: math.unit(240, "lbs"),
  7378. name: "Side",
  7379. image: {
  7380. source: "./media/characters/nibbles/side.svg"
  7381. }
  7382. },
  7383. },
  7384. [
  7385. {
  7386. name: "Normal",
  7387. height: math.unit(9, "feet"),
  7388. default: true
  7389. }
  7390. ]
  7391. ))
  7392. characterMakers.push(() => makeCharacter(
  7393. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7394. {
  7395. side: {
  7396. height: math.unit(5 + 1 / 6, "feet"),
  7397. weight: math.unit(130, "lbs"),
  7398. name: "Side",
  7399. image: {
  7400. source: "./media/characters/rikky/side.svg",
  7401. extra: 851 / 801
  7402. }
  7403. },
  7404. },
  7405. [
  7406. {
  7407. name: "Normal",
  7408. height: math.unit(5 + 1 / 6, "feet")
  7409. },
  7410. {
  7411. name: "Macro",
  7412. height: math.unit(152, "feet"),
  7413. default: true
  7414. },
  7415. {
  7416. name: "Megamacro",
  7417. height: math.unit(7, "miles")
  7418. }
  7419. ]
  7420. ))
  7421. characterMakers.push(() => makeCharacter(
  7422. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7423. {
  7424. side: {
  7425. height: math.unit(370, "cm"),
  7426. weight: math.unit(350, "lbs"),
  7427. name: "Side",
  7428. image: {
  7429. source: "./media/characters/malfressa/side.svg"
  7430. }
  7431. },
  7432. walking: {
  7433. height: math.unit(370, "cm"),
  7434. weight: math.unit(350, "lbs"),
  7435. name: "Walking",
  7436. image: {
  7437. source: "./media/characters/malfressa/walking.svg"
  7438. }
  7439. },
  7440. feral: {
  7441. height: math.unit(2500, "cm"),
  7442. weight: math.unit(100000, "lbs"),
  7443. name: "Feral",
  7444. image: {
  7445. source: "./media/characters/malfressa/feral.svg",
  7446. extra: 2108 / 837,
  7447. bottom: 0.02
  7448. }
  7449. },
  7450. },
  7451. [
  7452. {
  7453. name: "Normal",
  7454. height: math.unit(370, "cm")
  7455. },
  7456. {
  7457. name: "Macro",
  7458. height: math.unit(300, "meters"),
  7459. default: true
  7460. }
  7461. ]
  7462. ))
  7463. characterMakers.push(() => makeCharacter(
  7464. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7465. {
  7466. front: {
  7467. height: math.unit(6, "feet"),
  7468. weight: math.unit(60, "kg"),
  7469. name: "Front",
  7470. image: {
  7471. source: "./media/characters/jaro/front.svg",
  7472. extra: 845/817,
  7473. bottom: 45/890
  7474. }
  7475. },
  7476. back: {
  7477. height: math.unit(6, "feet"),
  7478. weight: math.unit(60, "kg"),
  7479. name: "Back",
  7480. image: {
  7481. source: "./media/characters/jaro/back.svg",
  7482. extra: 847/817,
  7483. bottom: 34/881
  7484. }
  7485. },
  7486. },
  7487. [
  7488. {
  7489. name: "Micro",
  7490. height: math.unit(7, "inches")
  7491. },
  7492. {
  7493. name: "Normal",
  7494. height: math.unit(5.5, "feet"),
  7495. default: true
  7496. },
  7497. {
  7498. name: "Minimacro",
  7499. height: math.unit(20, "feet")
  7500. },
  7501. {
  7502. name: "Macro",
  7503. height: math.unit(200, "meters")
  7504. }
  7505. ]
  7506. ))
  7507. characterMakers.push(() => makeCharacter(
  7508. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7509. {
  7510. front: {
  7511. height: math.unit(6, "feet"),
  7512. weight: math.unit(195, "lb"),
  7513. name: "Front",
  7514. image: {
  7515. source: "./media/characters/rogue/front.svg"
  7516. }
  7517. },
  7518. },
  7519. [
  7520. {
  7521. name: "Macro",
  7522. height: math.unit(90, "feet"),
  7523. default: true
  7524. },
  7525. ]
  7526. ))
  7527. characterMakers.push(() => makeCharacter(
  7528. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7529. {
  7530. standing: {
  7531. height: math.unit(5 + 8 / 12, "feet"),
  7532. weight: math.unit(140, "lb"),
  7533. name: "Standing",
  7534. image: {
  7535. source: "./media/characters/piper/standing.svg",
  7536. extra: 1440/1284,
  7537. bottom: 66/1506
  7538. }
  7539. },
  7540. running: {
  7541. height: math.unit(5 + 8 / 12, "feet"),
  7542. weight: math.unit(140, "lb"),
  7543. name: "Running",
  7544. image: {
  7545. source: "./media/characters/piper/running.svg",
  7546. extra: 3948/3655,
  7547. bottom: 0/3948
  7548. }
  7549. },
  7550. sole: {
  7551. height: math.unit(0.81, "feet"),
  7552. weight: math.unit(2, "kg"),
  7553. name: "Sole",
  7554. image: {
  7555. source: "./media/characters/piper/sole.svg"
  7556. }
  7557. },
  7558. nipple: {
  7559. height: math.unit(0.25, "feet"),
  7560. weight: math.unit(1.5, "lb"),
  7561. name: "Nipple",
  7562. image: {
  7563. source: "./media/characters/piper/nipple.svg"
  7564. }
  7565. },
  7566. head: {
  7567. height: math.unit(1.1, "feet"),
  7568. name: "Head",
  7569. image: {
  7570. source: "./media/characters/piper/head.svg"
  7571. }
  7572. },
  7573. },
  7574. [
  7575. {
  7576. name: "Micro",
  7577. height: math.unit(2, "inches")
  7578. },
  7579. {
  7580. name: "Normal",
  7581. height: math.unit(5 + 8 / 12, "feet")
  7582. },
  7583. {
  7584. name: "Macro",
  7585. height: math.unit(250, "feet"),
  7586. default: true
  7587. },
  7588. {
  7589. name: "Megamacro",
  7590. height: math.unit(7, "miles")
  7591. },
  7592. ]
  7593. ))
  7594. characterMakers.push(() => makeCharacter(
  7595. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7596. {
  7597. front: {
  7598. height: math.unit(6, "feet"),
  7599. weight: math.unit(220, "lb"),
  7600. name: "Front",
  7601. image: {
  7602. source: "./media/characters/gemini/front.svg"
  7603. }
  7604. },
  7605. back: {
  7606. height: math.unit(6, "feet"),
  7607. weight: math.unit(220, "lb"),
  7608. name: "Back",
  7609. image: {
  7610. source: "./media/characters/gemini/back.svg"
  7611. }
  7612. },
  7613. kneeling: {
  7614. height: math.unit(6 / 1.5, "feet"),
  7615. weight: math.unit(220, "lb"),
  7616. name: "Kneeling",
  7617. image: {
  7618. source: "./media/characters/gemini/kneeling.svg",
  7619. bottom: 0.02
  7620. }
  7621. },
  7622. },
  7623. [
  7624. {
  7625. name: "Macro",
  7626. height: math.unit(300, "meters"),
  7627. default: true
  7628. },
  7629. {
  7630. name: "Megamacro",
  7631. height: math.unit(6900, "meters")
  7632. },
  7633. ]
  7634. ))
  7635. characterMakers.push(() => makeCharacter(
  7636. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7637. {
  7638. anthro: {
  7639. height: math.unit(2.35, "meters"),
  7640. weight: math.unit(73, "kg"),
  7641. name: "Anthro",
  7642. image: {
  7643. source: "./media/characters/alicia/anthro.svg",
  7644. extra: 2571 / 2385,
  7645. bottom: 75 / 2648
  7646. }
  7647. },
  7648. paw: {
  7649. height: math.unit(1.32, "feet"),
  7650. name: "Paw",
  7651. image: {
  7652. source: "./media/characters/alicia/paw.svg"
  7653. }
  7654. },
  7655. feral: {
  7656. height: math.unit(1.69, "meters"),
  7657. weight: math.unit(73, "kg"),
  7658. name: "Feral",
  7659. image: {
  7660. source: "./media/characters/alicia/feral.svg",
  7661. extra: 2123 / 1715,
  7662. bottom: 222 / 2349
  7663. }
  7664. },
  7665. },
  7666. [
  7667. {
  7668. name: "Normal",
  7669. height: math.unit(2.35, "meters")
  7670. },
  7671. {
  7672. name: "Macro",
  7673. height: math.unit(60, "meters"),
  7674. default: true
  7675. },
  7676. {
  7677. name: "Megamacro",
  7678. height: math.unit(10000, "kilometers")
  7679. },
  7680. ]
  7681. ))
  7682. characterMakers.push(() => makeCharacter(
  7683. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7684. {
  7685. front: {
  7686. height: math.unit(7, "feet"),
  7687. weight: math.unit(250, "lbs"),
  7688. name: "Front",
  7689. image: {
  7690. source: "./media/characters/archy/front.svg"
  7691. }
  7692. }
  7693. },
  7694. [
  7695. {
  7696. name: "Micro",
  7697. height: math.unit(1, "inch")
  7698. },
  7699. {
  7700. name: "Shorty",
  7701. height: math.unit(5, "feet")
  7702. },
  7703. {
  7704. name: "Normal",
  7705. height: math.unit(7, "feet")
  7706. },
  7707. {
  7708. name: "Macro",
  7709. height: math.unit(600, "meters"),
  7710. default: true
  7711. },
  7712. {
  7713. name: "Megamacro",
  7714. height: math.unit(1, "mile")
  7715. },
  7716. ]
  7717. ))
  7718. characterMakers.push(() => makeCharacter(
  7719. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7720. {
  7721. front: {
  7722. height: math.unit(1.65, "meters"),
  7723. weight: math.unit(74, "kg"),
  7724. name: "Front",
  7725. image: {
  7726. source: "./media/characters/berri/front.svg",
  7727. extra: 857 / 837,
  7728. bottom: 18 / 877
  7729. }
  7730. },
  7731. bum: {
  7732. height: math.unit(1.46, "feet"),
  7733. name: "Bum",
  7734. image: {
  7735. source: "./media/characters/berri/bum.svg"
  7736. }
  7737. },
  7738. mouth: {
  7739. height: math.unit(0.44, "feet"),
  7740. name: "Mouth",
  7741. image: {
  7742. source: "./media/characters/berri/mouth.svg"
  7743. }
  7744. },
  7745. paw: {
  7746. height: math.unit(0.826, "feet"),
  7747. name: "Paw",
  7748. image: {
  7749. source: "./media/characters/berri/paw.svg"
  7750. }
  7751. },
  7752. },
  7753. [
  7754. {
  7755. name: "Normal",
  7756. height: math.unit(1.65, "meters")
  7757. },
  7758. {
  7759. name: "Macro",
  7760. height: math.unit(60, "m"),
  7761. default: true
  7762. },
  7763. {
  7764. name: "Megamacro",
  7765. height: math.unit(9.213, "km")
  7766. },
  7767. {
  7768. name: "Planet Eater",
  7769. height: math.unit(489, "megameters")
  7770. },
  7771. {
  7772. name: "Teramacro",
  7773. height: math.unit(2471635000000, "meters")
  7774. },
  7775. {
  7776. name: "Examacro",
  7777. height: math.unit(8.0624e+26, "meters")
  7778. }
  7779. ]
  7780. ))
  7781. characterMakers.push(() => makeCharacter(
  7782. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7783. {
  7784. front: {
  7785. height: math.unit(1.72, "meters"),
  7786. weight: math.unit(68, "kg"),
  7787. name: "Front",
  7788. image: {
  7789. source: "./media/characters/lexi/front.svg"
  7790. }
  7791. }
  7792. },
  7793. [
  7794. {
  7795. name: "Very Smol",
  7796. height: math.unit(10, "mm")
  7797. },
  7798. {
  7799. name: "Micro",
  7800. height: math.unit(6.8, "cm"),
  7801. default: true
  7802. },
  7803. {
  7804. name: "Normal",
  7805. height: math.unit(1.72, "m")
  7806. }
  7807. ]
  7808. ))
  7809. characterMakers.push(() => makeCharacter(
  7810. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7811. {
  7812. front: {
  7813. height: math.unit(1.69, "meters"),
  7814. weight: math.unit(68, "kg"),
  7815. name: "Front",
  7816. image: {
  7817. source: "./media/characters/martin/front.svg",
  7818. extra: 596 / 581
  7819. }
  7820. }
  7821. },
  7822. [
  7823. {
  7824. name: "Micro",
  7825. height: math.unit(6.85, "cm"),
  7826. default: true
  7827. },
  7828. {
  7829. name: "Normal",
  7830. height: math.unit(1.69, "m")
  7831. }
  7832. ]
  7833. ))
  7834. characterMakers.push(() => makeCharacter(
  7835. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7836. {
  7837. front: {
  7838. height: math.unit(1.69, "meters"),
  7839. weight: math.unit(68, "kg"),
  7840. name: "Front",
  7841. image: {
  7842. source: "./media/characters/juno/front.svg"
  7843. }
  7844. }
  7845. },
  7846. [
  7847. {
  7848. name: "Micro",
  7849. height: math.unit(7, "cm")
  7850. },
  7851. {
  7852. name: "Normal",
  7853. height: math.unit(1.89, "m")
  7854. },
  7855. {
  7856. name: "Macro",
  7857. height: math.unit(353, "meters"),
  7858. default: true
  7859. }
  7860. ]
  7861. ))
  7862. characterMakers.push(() => makeCharacter(
  7863. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7864. {
  7865. front: {
  7866. height: math.unit(1.93, "meters"),
  7867. weight: math.unit(83, "kg"),
  7868. name: "Front",
  7869. image: {
  7870. source: "./media/characters/samantha/front.svg"
  7871. }
  7872. },
  7873. frontClothed: {
  7874. height: math.unit(1.93, "meters"),
  7875. weight: math.unit(83, "kg"),
  7876. name: "Front (Clothed)",
  7877. image: {
  7878. source: "./media/characters/samantha/front-clothed.svg"
  7879. }
  7880. },
  7881. back: {
  7882. height: math.unit(1.93, "meters"),
  7883. weight: math.unit(83, "kg"),
  7884. name: "Back",
  7885. image: {
  7886. source: "./media/characters/samantha/back.svg"
  7887. }
  7888. },
  7889. },
  7890. [
  7891. {
  7892. name: "Normal",
  7893. height: math.unit(1.93, "m")
  7894. },
  7895. {
  7896. name: "Macro",
  7897. height: math.unit(74, "meters"),
  7898. default: true
  7899. },
  7900. {
  7901. name: "Macro+",
  7902. height: math.unit(223, "meters"),
  7903. },
  7904. {
  7905. name: "Megamacro",
  7906. height: math.unit(8381, "meters"),
  7907. },
  7908. {
  7909. name: "Megamacro+",
  7910. height: math.unit(12000, "kilometers")
  7911. },
  7912. ]
  7913. ))
  7914. characterMakers.push(() => makeCharacter(
  7915. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7916. {
  7917. front: {
  7918. height: math.unit(1.92, "meters"),
  7919. weight: math.unit(80, "kg"),
  7920. name: "Front",
  7921. image: {
  7922. source: "./media/characters/dr-clay/front.svg"
  7923. }
  7924. },
  7925. frontClothed: {
  7926. height: math.unit(1.92, "meters"),
  7927. weight: math.unit(80, "kg"),
  7928. name: "Front (Clothed)",
  7929. image: {
  7930. source: "./media/characters/dr-clay/front-clothed.svg"
  7931. }
  7932. }
  7933. },
  7934. [
  7935. {
  7936. name: "Normal",
  7937. height: math.unit(1.92, "m")
  7938. },
  7939. {
  7940. name: "Macro",
  7941. height: math.unit(214, "meters"),
  7942. default: true
  7943. },
  7944. {
  7945. name: "Macro+",
  7946. height: math.unit(12.237, "meters"),
  7947. },
  7948. {
  7949. name: "Megamacro",
  7950. height: math.unit(557, "megameters"),
  7951. },
  7952. {
  7953. name: "Unimaginable",
  7954. height: math.unit(120e9, "lightyears")
  7955. },
  7956. ]
  7957. ))
  7958. characterMakers.push(() => makeCharacter(
  7959. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7960. {
  7961. front: {
  7962. height: math.unit(2, "meters"),
  7963. weight: math.unit(80, "kg"),
  7964. name: "Front",
  7965. image: {
  7966. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7967. }
  7968. }
  7969. },
  7970. [
  7971. {
  7972. name: "Teramacro",
  7973. height: math.unit(500000, "lightyears"),
  7974. default: true
  7975. },
  7976. ]
  7977. ))
  7978. characterMakers.push(() => makeCharacter(
  7979. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7980. {
  7981. crux: {
  7982. height: math.unit(2, "meters"),
  7983. weight: math.unit(150, "kg"),
  7984. name: "Crux",
  7985. image: {
  7986. source: "./media/characters/vemus/crux.svg",
  7987. extra: 1074/936,
  7988. bottom: 23/1097
  7989. }
  7990. },
  7991. skunkTanuki: {
  7992. height: math.unit(2, "meters"),
  7993. weight: math.unit(150, "kg"),
  7994. name: "Skunk-Tanuki",
  7995. image: {
  7996. source: "./media/characters/vemus/skunk-tanuki.svg",
  7997. extra: 926/893,
  7998. bottom: 20/946
  7999. }
  8000. },
  8001. },
  8002. [
  8003. {
  8004. name: "Normal",
  8005. height: math.unit(4, "meters"),
  8006. default: true
  8007. },
  8008. {
  8009. name: "Big",
  8010. height: math.unit(8, "meters")
  8011. },
  8012. {
  8013. name: "Macro",
  8014. height: math.unit(100, "meters")
  8015. },
  8016. {
  8017. name: "Macro+",
  8018. height: math.unit(1500, "meters")
  8019. },
  8020. {
  8021. name: "Stellar",
  8022. height: math.unit(14e8, "meters")
  8023. },
  8024. ]
  8025. ))
  8026. characterMakers.push(() => makeCharacter(
  8027. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  8028. {
  8029. front: {
  8030. height: math.unit(2, "meters"),
  8031. weight: math.unit(70, "kg"),
  8032. name: "Front",
  8033. image: {
  8034. source: "./media/characters/beherit/front.svg",
  8035. extra: 1234/1109,
  8036. bottom: 55/1289
  8037. }
  8038. }
  8039. },
  8040. [
  8041. {
  8042. name: "Normal",
  8043. height: math.unit(6, "feet")
  8044. },
  8045. {
  8046. name: "Lorg",
  8047. height: math.unit(25, "feet"),
  8048. default: true
  8049. },
  8050. {
  8051. name: "Lorger",
  8052. height: math.unit(75, "feet")
  8053. },
  8054. {
  8055. name: "Macro",
  8056. height: math.unit(200, "meters")
  8057. },
  8058. ]
  8059. ))
  8060. characterMakers.push(() => makeCharacter(
  8061. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  8062. {
  8063. front: {
  8064. height: math.unit(2, "meters"),
  8065. weight: math.unit(150, "kg"),
  8066. name: "Front",
  8067. image: {
  8068. source: "./media/characters/everett/front.svg",
  8069. extra: 1017/866,
  8070. bottom: 86/1103
  8071. }
  8072. },
  8073. paw: {
  8074. height: math.unit(2 / 3.6, "meters"),
  8075. name: "Paw",
  8076. image: {
  8077. source: "./media/characters/everett/paw.svg"
  8078. }
  8079. },
  8080. },
  8081. [
  8082. {
  8083. name: "Normal",
  8084. height: math.unit(15, "feet"),
  8085. default: true
  8086. },
  8087. {
  8088. name: "Lorg",
  8089. height: math.unit(70, "feet"),
  8090. default: true
  8091. },
  8092. {
  8093. name: "Lorger",
  8094. height: math.unit(250, "feet")
  8095. },
  8096. {
  8097. name: "Macro",
  8098. height: math.unit(500, "meters")
  8099. },
  8100. ]
  8101. ))
  8102. characterMakers.push(() => makeCharacter(
  8103. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  8104. {
  8105. front: {
  8106. height: math.unit(2, "meters"),
  8107. weight: math.unit(86, "kg"),
  8108. name: "Front",
  8109. image: {
  8110. source: "./media/characters/rose/front.svg",
  8111. extra: 1785/1636,
  8112. bottom: 30/1815
  8113. },
  8114. form: "liom",
  8115. default: true
  8116. },
  8117. frontSporty: {
  8118. height: math.unit(2, "meters"),
  8119. weight: math.unit(86, "kg"),
  8120. name: "Front (Sporty)",
  8121. image: {
  8122. source: "./media/characters/rose/front-sporty.svg",
  8123. extra: 350/335,
  8124. bottom: 10/360
  8125. },
  8126. form: "liom"
  8127. },
  8128. frontAlt: {
  8129. height: math.unit(1.6, "meters"),
  8130. weight: math.unit(86, "kg"),
  8131. name: "Front (Alt)",
  8132. image: {
  8133. source: "./media/characters/rose/front-alt.svg",
  8134. extra: 299/283,
  8135. bottom: 3/302
  8136. },
  8137. form: "liom"
  8138. },
  8139. plush: {
  8140. height: math.unit(2, "meters"),
  8141. weight: math.unit(86/3, "kg"),
  8142. name: "Plush",
  8143. image: {
  8144. source: "./media/characters/rose/plush.svg",
  8145. extra: 361/337,
  8146. bottom: 11/372
  8147. },
  8148. form: "plush",
  8149. default: true
  8150. },
  8151. faeStanding: {
  8152. height: math.unit(10, "cm"),
  8153. weight: math.unit(10, "grams"),
  8154. name: "Standing",
  8155. image: {
  8156. source: "./media/characters/rose/fae-standing.svg",
  8157. extra: 1189/1060,
  8158. bottom: 27/1216
  8159. },
  8160. form: "fae",
  8161. default: true
  8162. },
  8163. faeSitting: {
  8164. height: math.unit(5, "cm"),
  8165. weight: math.unit(10, "grams"),
  8166. name: "Sitting",
  8167. image: {
  8168. source: "./media/characters/rose/fae-sitting.svg",
  8169. extra: 737/577,
  8170. bottom: 356/1093
  8171. },
  8172. form: "fae"
  8173. },
  8174. faePaw: {
  8175. height: math.unit(1.35, "cm"),
  8176. name: "Paw",
  8177. image: {
  8178. source: "./media/characters/rose/fae-paw.svg"
  8179. },
  8180. form: "fae"
  8181. },
  8182. },
  8183. [
  8184. {
  8185. name: "True Micro",
  8186. height: math.unit(9, "cm"),
  8187. form: "liom"
  8188. },
  8189. {
  8190. name: "Micro",
  8191. height: math.unit(16, "cm"),
  8192. form: "liom"
  8193. },
  8194. {
  8195. name: "Normal",
  8196. height: math.unit(1.85, "meters"),
  8197. default: true,
  8198. form: "liom"
  8199. },
  8200. {
  8201. name: "Mini-Macro",
  8202. height: math.unit(5, "meters"),
  8203. form: "liom"
  8204. },
  8205. {
  8206. name: "Macro",
  8207. height: math.unit(15, "meters"),
  8208. form: "liom"
  8209. },
  8210. {
  8211. name: "True Macro",
  8212. height: math.unit(40, "meters"),
  8213. form: "liom"
  8214. },
  8215. {
  8216. name: "City Scale",
  8217. height: math.unit(1, "km"),
  8218. form: "liom"
  8219. },
  8220. {
  8221. name: "Plushie",
  8222. height: math.unit(9, "cm"),
  8223. form: "plush",
  8224. default: true
  8225. },
  8226. {
  8227. name: "Fae",
  8228. height: math.unit(10, "cm"),
  8229. form: "fae",
  8230. default: true
  8231. },
  8232. ],
  8233. {
  8234. "liom": {
  8235. name: "Liom"
  8236. },
  8237. "plush": {
  8238. name: "Plush"
  8239. },
  8240. "fae": {
  8241. name: "Fae Fox",
  8242. default: true
  8243. }
  8244. }
  8245. ))
  8246. characterMakers.push(() => makeCharacter(
  8247. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8248. {
  8249. front: {
  8250. height: math.unit(2, "meters"),
  8251. weight: math.unit(350, "lbs"),
  8252. name: "Front",
  8253. image: {
  8254. source: "./media/characters/regal/front.svg"
  8255. }
  8256. },
  8257. back: {
  8258. height: math.unit(2, "meters"),
  8259. weight: math.unit(350, "lbs"),
  8260. name: "Back",
  8261. image: {
  8262. source: "./media/characters/regal/back.svg"
  8263. }
  8264. },
  8265. },
  8266. [
  8267. {
  8268. name: "Macro",
  8269. height: math.unit(350, "feet"),
  8270. default: true
  8271. }
  8272. ]
  8273. ))
  8274. characterMakers.push(() => makeCharacter(
  8275. { name: "Opal", species: ["rabbit", "deity"], tags: ["anthro"] },
  8276. {
  8277. standing: {
  8278. height: math.unit(4 + 11/12, "feet"),
  8279. weight: math.unit(100, "lb"),
  8280. name: "Standing",
  8281. image: {
  8282. source: "./media/characters/opal/standing.svg",
  8283. extra: 1588/1513,
  8284. bottom: 23/1611
  8285. }
  8286. },
  8287. sitting: {
  8288. height: math.unit(2.3, "feet"),
  8289. weight: math.unit(100, "lb"),
  8290. name: "Sitting",
  8291. image: {
  8292. source: "./media/characters/opal/sitting.svg",
  8293. extra: 1031/892,
  8294. bottom: 142/1173
  8295. }
  8296. },
  8297. hand: {
  8298. height: math.unit(0.59, "feet"),
  8299. name: "Hand",
  8300. image: {
  8301. source: "./media/characters/opal/hand.svg"
  8302. }
  8303. },
  8304. foot: {
  8305. height: math.unit(0.61, "feet"),
  8306. name: "Foot",
  8307. image: {
  8308. source: "./media/characters/opal/foot.svg"
  8309. }
  8310. },
  8311. },
  8312. [
  8313. {
  8314. name: "Small",
  8315. height: math.unit(4 + 11 / 12, "feet")
  8316. },
  8317. {
  8318. name: "Normal",
  8319. height: math.unit(20, "feet"),
  8320. default: true
  8321. },
  8322. {
  8323. name: "Macro",
  8324. height: math.unit(120, "feet")
  8325. },
  8326. {
  8327. name: "Megamacro",
  8328. height: math.unit(80, "miles")
  8329. },
  8330. {
  8331. name: "True Size",
  8332. height: math.unit(100000, "lightyears")
  8333. },
  8334. ]
  8335. ))
  8336. characterMakers.push(() => makeCharacter(
  8337. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8338. {
  8339. front: {
  8340. height: math.unit(6, "feet"),
  8341. weight: math.unit(200, "lbs"),
  8342. name: "Front",
  8343. image: {
  8344. source: "./media/characters/vector-wuff/front.svg"
  8345. }
  8346. }
  8347. },
  8348. [
  8349. {
  8350. name: "Normal",
  8351. height: math.unit(2.8, "meters")
  8352. },
  8353. {
  8354. name: "Macro",
  8355. height: math.unit(450, "meters"),
  8356. default: true
  8357. },
  8358. {
  8359. name: "Megamacro",
  8360. height: math.unit(15, "kilometers")
  8361. }
  8362. ]
  8363. ))
  8364. characterMakers.push(() => makeCharacter(
  8365. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8366. {
  8367. front: {
  8368. height: math.unit(6, "feet"),
  8369. weight: math.unit(256, "lbs"),
  8370. name: "Front",
  8371. image: {
  8372. source: "./media/characters/dannik/front.svg"
  8373. }
  8374. }
  8375. },
  8376. [
  8377. {
  8378. name: "Macro",
  8379. height: math.unit(69.57, "meters"),
  8380. default: true
  8381. },
  8382. ]
  8383. ))
  8384. characterMakers.push(() => makeCharacter(
  8385. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8386. {
  8387. front: {
  8388. height: math.unit(6, "feet"),
  8389. weight: math.unit(120, "lbs"),
  8390. name: "Front",
  8391. image: {
  8392. source: "./media/characters/azura-saharah/front.svg"
  8393. }
  8394. },
  8395. back: {
  8396. height: math.unit(6, "feet"),
  8397. weight: math.unit(120, "lbs"),
  8398. name: "Back",
  8399. image: {
  8400. source: "./media/characters/azura-saharah/back.svg"
  8401. }
  8402. },
  8403. },
  8404. [
  8405. {
  8406. name: "Macro",
  8407. height: math.unit(100, "feet"),
  8408. default: true
  8409. },
  8410. ]
  8411. ))
  8412. characterMakers.push(() => makeCharacter(
  8413. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8414. {
  8415. side: {
  8416. height: math.unit(5 + 4 / 12, "feet"),
  8417. weight: math.unit(163, "lbs"),
  8418. name: "Side",
  8419. image: {
  8420. source: "./media/characters/kennedy/side.svg"
  8421. }
  8422. }
  8423. },
  8424. [
  8425. {
  8426. name: "Standard Doggo",
  8427. height: math.unit(5 + 4 / 12, "feet")
  8428. },
  8429. {
  8430. name: "Big Doggo",
  8431. height: math.unit(25 + 3 / 12, "feet"),
  8432. default: true
  8433. },
  8434. ]
  8435. ))
  8436. characterMakers.push(() => makeCharacter(
  8437. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8438. {
  8439. front: {
  8440. height: math.unit(5 + 5/12, "feet"),
  8441. weight: math.unit(100, "lbs"),
  8442. name: "Front",
  8443. image: {
  8444. source: "./media/characters/odios-de-lunar/front.svg",
  8445. extra: 1468/1323,
  8446. bottom: 22/1490
  8447. }
  8448. }
  8449. },
  8450. [
  8451. {
  8452. name: "Micro",
  8453. height: math.unit(3, "inches")
  8454. },
  8455. {
  8456. name: "Normal",
  8457. height: math.unit(5.5, "feet"),
  8458. default: true
  8459. },
  8460. {
  8461. name: "Macro",
  8462. height: math.unit(100, "feet")
  8463. },
  8464. ]
  8465. ))
  8466. characterMakers.push(() => makeCharacter(
  8467. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8468. {
  8469. back: {
  8470. height: math.unit(6, "feet"),
  8471. weight: math.unit(220, "lbs"),
  8472. name: "Back",
  8473. image: {
  8474. source: "./media/characters/mandake/back.svg"
  8475. }
  8476. }
  8477. },
  8478. [
  8479. {
  8480. name: "Normal",
  8481. height: math.unit(7, "feet"),
  8482. default: true
  8483. },
  8484. {
  8485. name: "Macro",
  8486. height: math.unit(78, "feet")
  8487. },
  8488. {
  8489. name: "Macro+",
  8490. height: math.unit(300, "meters")
  8491. },
  8492. {
  8493. name: "Macro++",
  8494. height: math.unit(2400, "feet")
  8495. },
  8496. {
  8497. name: "Megamacro",
  8498. height: math.unit(5167, "meters")
  8499. },
  8500. {
  8501. name: "Gigamacro",
  8502. height: math.unit(41769, "miles")
  8503. },
  8504. ]
  8505. ))
  8506. characterMakers.push(() => makeCharacter(
  8507. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8508. {
  8509. front: {
  8510. height: math.unit(6, "feet"),
  8511. weight: math.unit(120, "lbs"),
  8512. name: "Front",
  8513. image: {
  8514. source: "./media/characters/yozey/front.svg"
  8515. }
  8516. },
  8517. frontAlt: {
  8518. height: math.unit(6, "feet"),
  8519. weight: math.unit(120, "lbs"),
  8520. name: "Front (Alt)",
  8521. image: {
  8522. source: "./media/characters/yozey/front-alt.svg"
  8523. }
  8524. },
  8525. side: {
  8526. height: math.unit(6, "feet"),
  8527. weight: math.unit(120, "lbs"),
  8528. name: "Side",
  8529. image: {
  8530. source: "./media/characters/yozey/side.svg"
  8531. }
  8532. },
  8533. },
  8534. [
  8535. {
  8536. name: "Micro",
  8537. height: math.unit(3, "inches"),
  8538. default: true
  8539. },
  8540. {
  8541. name: "Normal",
  8542. height: math.unit(6, "feet")
  8543. }
  8544. ]
  8545. ))
  8546. characterMakers.push(() => makeCharacter(
  8547. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8548. {
  8549. front: {
  8550. height: math.unit(6, "feet"),
  8551. weight: math.unit(103, "lbs"),
  8552. name: "Front",
  8553. image: {
  8554. source: "./media/characters/valeska-voss/front.svg"
  8555. }
  8556. }
  8557. },
  8558. [
  8559. {
  8560. name: "Mini-Sized Sub",
  8561. height: math.unit(3.1, "inches")
  8562. },
  8563. {
  8564. name: "Mid-Sized Sub",
  8565. height: math.unit(6.2, "inches")
  8566. },
  8567. {
  8568. name: "Full-Sized Sub",
  8569. height: math.unit(9.3, "inches")
  8570. },
  8571. {
  8572. name: "Normal",
  8573. height: math.unit(5 + 2 / 12, "foot"),
  8574. default: true
  8575. },
  8576. ]
  8577. ))
  8578. characterMakers.push(() => makeCharacter(
  8579. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8580. {
  8581. front: {
  8582. height: math.unit(6, "feet"),
  8583. weight: math.unit(160, "lbs"),
  8584. name: "Front",
  8585. image: {
  8586. source: "./media/characters/gene-zeta/front.svg",
  8587. extra: 3006 / 2826,
  8588. bottom: 182 / 3188
  8589. }
  8590. }
  8591. },
  8592. [
  8593. {
  8594. name: "Micro",
  8595. height: math.unit(6, "inches")
  8596. },
  8597. {
  8598. name: "Normal",
  8599. height: math.unit(5 + 11 / 12, "foot"),
  8600. default: true
  8601. },
  8602. {
  8603. name: "Macro",
  8604. height: math.unit(140, "feet")
  8605. },
  8606. {
  8607. name: "Supercharged",
  8608. height: math.unit(2500, "feet")
  8609. },
  8610. ]
  8611. ))
  8612. characterMakers.push(() => makeCharacter(
  8613. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8614. {
  8615. front: {
  8616. height: math.unit(6, "feet"),
  8617. weight: math.unit(350, "lbs"),
  8618. name: "Front",
  8619. image: {
  8620. source: "./media/characters/razinox/front.svg",
  8621. extra: 1686 / 1548,
  8622. bottom: 28.2 / 1868
  8623. }
  8624. },
  8625. back: {
  8626. height: math.unit(6, "feet"),
  8627. weight: math.unit(350, "lbs"),
  8628. name: "Back",
  8629. image: {
  8630. source: "./media/characters/razinox/back.svg",
  8631. extra: 1660 / 1590,
  8632. bottom: 15 / 1665
  8633. }
  8634. },
  8635. },
  8636. [
  8637. {
  8638. name: "Normal",
  8639. height: math.unit(10 + 8 / 12, "foot")
  8640. },
  8641. {
  8642. name: "Minimacro",
  8643. height: math.unit(15, "foot")
  8644. },
  8645. {
  8646. name: "Macro",
  8647. height: math.unit(60, "foot"),
  8648. default: true
  8649. },
  8650. {
  8651. name: "Megamacro",
  8652. height: math.unit(5, "miles")
  8653. },
  8654. {
  8655. name: "Gigamacro",
  8656. height: math.unit(6000, "miles")
  8657. },
  8658. ]
  8659. ))
  8660. characterMakers.push(() => makeCharacter(
  8661. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8662. {
  8663. front: {
  8664. height: math.unit(6, "feet"),
  8665. weight: math.unit(150, "lbs"),
  8666. name: "Front",
  8667. image: {
  8668. source: "./media/characters/cobalt/front.svg"
  8669. }
  8670. }
  8671. },
  8672. [
  8673. {
  8674. name: "Normal",
  8675. height: math.unit(8 + 1 / 12, "foot")
  8676. },
  8677. {
  8678. name: "Macro",
  8679. height: math.unit(111, "foot"),
  8680. default: true
  8681. },
  8682. {
  8683. name: "Supracosmic",
  8684. height: math.unit(1e42, "feet")
  8685. },
  8686. ]
  8687. ))
  8688. characterMakers.push(() => makeCharacter(
  8689. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8690. {
  8691. front: {
  8692. height: math.unit(5, "inches"),
  8693. name: "Front",
  8694. image: {
  8695. source: "./media/characters/amanda/front.svg",
  8696. extra: 926/791,
  8697. bottom: 38/964
  8698. }
  8699. },
  8700. back: {
  8701. height: math.unit(5, "inches"),
  8702. name: "Back",
  8703. image: {
  8704. source: "./media/characters/amanda/back.svg",
  8705. extra: 909/805,
  8706. bottom: 43/952
  8707. }
  8708. },
  8709. },
  8710. [
  8711. {
  8712. name: "Micro",
  8713. height: math.unit(5, "inches"),
  8714. default: true
  8715. },
  8716. ]
  8717. ))
  8718. characterMakers.push(() => makeCharacter(
  8719. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8720. {
  8721. front: {
  8722. height: math.unit(2.75, "meters"),
  8723. weight: math.unit(1200, "lb"),
  8724. name: "Front",
  8725. image: {
  8726. source: "./media/characters/teal/front.svg",
  8727. extra: 2463 / 2320,
  8728. bottom: 166 / 2629
  8729. }
  8730. },
  8731. back: {
  8732. height: math.unit(2.75, "meters"),
  8733. weight: math.unit(1200, "lb"),
  8734. name: "Back",
  8735. image: {
  8736. source: "./media/characters/teal/back.svg",
  8737. extra: 2580 / 2489,
  8738. bottom: 151 / 2731
  8739. }
  8740. },
  8741. sitting: {
  8742. height: math.unit(1.9, "meters"),
  8743. weight: math.unit(1200, "lb"),
  8744. name: "Sitting",
  8745. image: {
  8746. source: "./media/characters/teal/sitting.svg",
  8747. extra: 623 / 590,
  8748. bottom: 121 / 744
  8749. }
  8750. },
  8751. standing: {
  8752. height: math.unit(2.75, "meters"),
  8753. weight: math.unit(1200, "lb"),
  8754. name: "Standing",
  8755. image: {
  8756. source: "./media/characters/teal/standing.svg",
  8757. extra: 923 / 893,
  8758. bottom: 60 / 983
  8759. }
  8760. },
  8761. stretching: {
  8762. height: math.unit(3.65, "meters"),
  8763. weight: math.unit(1200, "lb"),
  8764. name: "Stretching",
  8765. image: {
  8766. source: "./media/characters/teal/stretching.svg",
  8767. extra: 1276 / 1244,
  8768. bottom: 0 / 1276
  8769. }
  8770. },
  8771. legged: {
  8772. height: math.unit(1.3, "meters"),
  8773. weight: math.unit(100, "lb"),
  8774. name: "Legged",
  8775. image: {
  8776. source: "./media/characters/teal/legged.svg",
  8777. extra: 462 / 437,
  8778. bottom: 24 / 486
  8779. }
  8780. },
  8781. naga: {
  8782. height: math.unit(5.4, "meters"),
  8783. weight: math.unit(4000, "lb"),
  8784. name: "Naga",
  8785. image: {
  8786. source: "./media/characters/teal/naga.svg",
  8787. extra: 1902 / 1858,
  8788. bottom: 0 / 1902
  8789. }
  8790. },
  8791. hand: {
  8792. height: math.unit(0.52, "meters"),
  8793. name: "Hand",
  8794. image: {
  8795. source: "./media/characters/teal/hand.svg"
  8796. }
  8797. },
  8798. maw: {
  8799. height: math.unit(0.43, "meters"),
  8800. name: "Maw",
  8801. image: {
  8802. source: "./media/characters/teal/maw.svg"
  8803. }
  8804. },
  8805. slit: {
  8806. height: math.unit(0.25, "meters"),
  8807. name: "Slit",
  8808. image: {
  8809. source: "./media/characters/teal/slit.svg"
  8810. }
  8811. },
  8812. },
  8813. [
  8814. {
  8815. name: "Normal",
  8816. height: math.unit(2.75, "meters"),
  8817. default: true
  8818. },
  8819. {
  8820. name: "Macro",
  8821. height: math.unit(300, "feet")
  8822. },
  8823. {
  8824. name: "Macro+",
  8825. height: math.unit(2000, "feet")
  8826. },
  8827. ]
  8828. ))
  8829. characterMakers.push(() => makeCharacter(
  8830. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8831. {
  8832. frontCat: {
  8833. height: math.unit(6, "feet"),
  8834. weight: math.unit(180, "lbs"),
  8835. name: "Front (Cat)",
  8836. image: {
  8837. source: "./media/characters/ravin-amulet/front-cat.svg"
  8838. }
  8839. },
  8840. frontCatAlt: {
  8841. height: math.unit(6, "feet"),
  8842. weight: math.unit(180, "lbs"),
  8843. name: "Front (Alt, Cat)",
  8844. image: {
  8845. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8846. }
  8847. },
  8848. frontWerewolf: {
  8849. height: math.unit(6 * 1.2, "feet"),
  8850. weight: math.unit(225, "lbs"),
  8851. name: "Front (Werewolf)",
  8852. image: {
  8853. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8854. }
  8855. },
  8856. backWerewolf: {
  8857. height: math.unit(6 * 1.2, "feet"),
  8858. weight: math.unit(225, "lbs"),
  8859. name: "Back (Werewolf)",
  8860. image: {
  8861. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8862. }
  8863. },
  8864. },
  8865. [
  8866. {
  8867. name: "Nano",
  8868. height: math.unit(1, "micrometer")
  8869. },
  8870. {
  8871. name: "Micro",
  8872. height: math.unit(1, "inch")
  8873. },
  8874. {
  8875. name: "Normal",
  8876. height: math.unit(6, "feet"),
  8877. default: true
  8878. },
  8879. {
  8880. name: "Macro",
  8881. height: math.unit(60, "feet")
  8882. }
  8883. ]
  8884. ))
  8885. characterMakers.push(() => makeCharacter(
  8886. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8887. {
  8888. front: {
  8889. height: math.unit(6, "feet"),
  8890. weight: math.unit(165, "lbs"),
  8891. name: "Front",
  8892. image: {
  8893. source: "./media/characters/fluoresce/front.svg"
  8894. }
  8895. }
  8896. },
  8897. [
  8898. {
  8899. name: "Micro",
  8900. height: math.unit(6, "cm")
  8901. },
  8902. {
  8903. name: "Normal",
  8904. height: math.unit(5 + 7 / 12, "feet"),
  8905. default: true
  8906. },
  8907. {
  8908. name: "Macro",
  8909. height: math.unit(56, "feet")
  8910. },
  8911. {
  8912. name: "Megamacro",
  8913. height: math.unit(1.9, "miles")
  8914. },
  8915. ]
  8916. ))
  8917. characterMakers.push(() => makeCharacter(
  8918. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8919. {
  8920. front: {
  8921. height: math.unit(9 + 6 / 12, "feet"),
  8922. weight: math.unit(523, "lbs"),
  8923. name: "Side",
  8924. image: {
  8925. source: "./media/characters/aurora/side.svg",
  8926. extra: 474/393,
  8927. bottom: 5/479
  8928. }
  8929. }
  8930. },
  8931. [
  8932. {
  8933. name: "Normal",
  8934. height: math.unit(9 + 6 / 12, "feet")
  8935. },
  8936. {
  8937. name: "Macro",
  8938. height: math.unit(96, "feet"),
  8939. default: true
  8940. },
  8941. {
  8942. name: "Macro+",
  8943. height: math.unit(243, "feet")
  8944. },
  8945. ]
  8946. ))
  8947. characterMakers.push(() => makeCharacter(
  8948. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8949. {
  8950. front: {
  8951. height: math.unit(194, "cm"),
  8952. weight: math.unit(90, "kg"),
  8953. name: "Front",
  8954. image: {
  8955. source: "./media/characters/ranek/front.svg",
  8956. extra: 1862/1791,
  8957. bottom: 80/1942
  8958. }
  8959. },
  8960. back: {
  8961. height: math.unit(194, "cm"),
  8962. weight: math.unit(90, "kg"),
  8963. name: "Back",
  8964. image: {
  8965. source: "./media/characters/ranek/back.svg",
  8966. extra: 1853/1787,
  8967. bottom: 74/1927
  8968. }
  8969. },
  8970. feral: {
  8971. height: math.unit(30, "cm"),
  8972. weight: math.unit(1.6, "lbs"),
  8973. name: "Feral",
  8974. image: {
  8975. source: "./media/characters/ranek/feral.svg",
  8976. extra: 990/631,
  8977. bottom: 29/1019
  8978. }
  8979. },
  8980. },
  8981. [
  8982. {
  8983. name: "Normal",
  8984. height: math.unit(194, "cm"),
  8985. default: true
  8986. },
  8987. {
  8988. name: "Macro",
  8989. height: math.unit(100, "meters")
  8990. },
  8991. ]
  8992. ))
  8993. characterMakers.push(() => makeCharacter(
  8994. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8995. {
  8996. front: {
  8997. height: math.unit(5 + 6 / 12, "feet"),
  8998. weight: math.unit(153, "lbs"),
  8999. name: "Front",
  9000. image: {
  9001. source: "./media/characters/andrew-cooper/front.svg"
  9002. }
  9003. },
  9004. },
  9005. [
  9006. {
  9007. name: "Nano",
  9008. height: math.unit(1, "mm")
  9009. },
  9010. {
  9011. name: "Micro",
  9012. height: math.unit(2, "inches")
  9013. },
  9014. {
  9015. name: "Normal",
  9016. height: math.unit(5 + 6 / 12, "feet"),
  9017. default: true
  9018. }
  9019. ]
  9020. ))
  9021. characterMakers.push(() => makeCharacter(
  9022. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  9023. {
  9024. front: {
  9025. height: math.unit(6, "feet"),
  9026. weight: math.unit(180, "lbs"),
  9027. name: "Front",
  9028. image: {
  9029. source: "./media/characters/akane-sato/front.svg",
  9030. extra: 1219 / 1140
  9031. }
  9032. },
  9033. back: {
  9034. height: math.unit(6, "feet"),
  9035. weight: math.unit(180, "lbs"),
  9036. name: "Back",
  9037. image: {
  9038. source: "./media/characters/akane-sato/back.svg",
  9039. extra: 1219 / 1170
  9040. }
  9041. },
  9042. },
  9043. [
  9044. {
  9045. name: "Normal",
  9046. height: math.unit(2.5, "meters")
  9047. },
  9048. {
  9049. name: "Macro",
  9050. height: math.unit(250, "meters"),
  9051. default: true
  9052. },
  9053. {
  9054. name: "Megamacro",
  9055. height: math.unit(25, "km")
  9056. },
  9057. ]
  9058. ))
  9059. characterMakers.push(() => makeCharacter(
  9060. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  9061. {
  9062. front: {
  9063. height: math.unit(6, "feet"),
  9064. weight: math.unit(65, "kg"),
  9065. name: "Front",
  9066. image: {
  9067. source: "./media/characters/rook/front.svg",
  9068. extra: 960 / 950
  9069. }
  9070. }
  9071. },
  9072. [
  9073. {
  9074. name: "Normal",
  9075. height: math.unit(8.8, "feet")
  9076. },
  9077. {
  9078. name: "Macro",
  9079. height: math.unit(88, "feet"),
  9080. default: true
  9081. },
  9082. {
  9083. name: "Megamacro",
  9084. height: math.unit(8, "miles")
  9085. },
  9086. ]
  9087. ))
  9088. characterMakers.push(() => makeCharacter(
  9089. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  9090. {
  9091. front: {
  9092. height: math.unit(12 + 2 / 12, "feet"),
  9093. weight: math.unit(808, "lbs"),
  9094. name: "Front",
  9095. image: {
  9096. source: "./media/characters/prodigy/front.svg"
  9097. }
  9098. }
  9099. },
  9100. [
  9101. {
  9102. name: "Normal",
  9103. height: math.unit(12 + 2 / 12, "feet"),
  9104. default: true
  9105. },
  9106. {
  9107. name: "Macro",
  9108. height: math.unit(143, "feet")
  9109. },
  9110. {
  9111. name: "Macro+",
  9112. height: math.unit(400, "feet")
  9113. },
  9114. ]
  9115. ))
  9116. characterMakers.push(() => makeCharacter(
  9117. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  9118. {
  9119. front: {
  9120. height: math.unit(6, "feet"),
  9121. weight: math.unit(225, "lbs"),
  9122. name: "Front",
  9123. image: {
  9124. source: "./media/characters/daniel/front.svg"
  9125. }
  9126. },
  9127. leaning: {
  9128. height: math.unit(6, "feet"),
  9129. weight: math.unit(225, "lbs"),
  9130. name: "Leaning",
  9131. image: {
  9132. source: "./media/characters/daniel/leaning.svg"
  9133. }
  9134. },
  9135. },
  9136. [
  9137. {
  9138. name: "Macro",
  9139. height: math.unit(1000, "feet"),
  9140. default: true
  9141. },
  9142. ]
  9143. ))
  9144. characterMakers.push(() => makeCharacter(
  9145. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  9146. {
  9147. front: {
  9148. height: math.unit(6, "feet"),
  9149. weight: math.unit(88, "lbs"),
  9150. name: "Front",
  9151. image: {
  9152. source: "./media/characters/chiros/front.svg",
  9153. extra: 306 / 226
  9154. }
  9155. },
  9156. side: {
  9157. height: math.unit(6, "feet"),
  9158. weight: math.unit(88, "lbs"),
  9159. name: "Side",
  9160. image: {
  9161. source: "./media/characters/chiros/side.svg",
  9162. extra: 306 / 226
  9163. }
  9164. },
  9165. },
  9166. [
  9167. {
  9168. name: "Normal",
  9169. height: math.unit(6, "cm"),
  9170. default: true
  9171. },
  9172. ]
  9173. ))
  9174. characterMakers.push(() => makeCharacter(
  9175. { name: "Selka", species: ["snake"], tags: ["naga"] },
  9176. {
  9177. front: {
  9178. height: math.unit(6, "feet"),
  9179. weight: math.unit(100, "lbs"),
  9180. name: "Front",
  9181. image: {
  9182. source: "./media/characters/selka/front.svg",
  9183. extra: 947 / 887
  9184. }
  9185. }
  9186. },
  9187. [
  9188. {
  9189. name: "Normal",
  9190. height: math.unit(5, "cm"),
  9191. default: true
  9192. },
  9193. ]
  9194. ))
  9195. characterMakers.push(() => makeCharacter(
  9196. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  9197. {
  9198. front: {
  9199. height: math.unit(8 + 3 / 12, "feet"),
  9200. weight: math.unit(424, "lbs"),
  9201. name: "Front",
  9202. image: {
  9203. source: "./media/characters/verin/front.svg",
  9204. extra: 1845 / 1550
  9205. }
  9206. },
  9207. frontArmored: {
  9208. height: math.unit(8 + 3 / 12, "feet"),
  9209. weight: math.unit(424, "lbs"),
  9210. name: "Front (Armored)",
  9211. image: {
  9212. source: "./media/characters/verin/front-armor.svg",
  9213. extra: 1845 / 1550,
  9214. bottom: 0.01
  9215. }
  9216. },
  9217. back: {
  9218. height: math.unit(8 + 3 / 12, "feet"),
  9219. weight: math.unit(424, "lbs"),
  9220. name: "Back",
  9221. image: {
  9222. source: "./media/characters/verin/back.svg",
  9223. bottom: 0.1,
  9224. extra: 1
  9225. }
  9226. },
  9227. foot: {
  9228. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9229. name: "Foot",
  9230. image: {
  9231. source: "./media/characters/verin/foot.svg"
  9232. }
  9233. },
  9234. },
  9235. [
  9236. {
  9237. name: "Normal",
  9238. height: math.unit(8 + 3 / 12, "feet")
  9239. },
  9240. {
  9241. name: "Minimacro",
  9242. height: math.unit(21, "feet"),
  9243. default: true
  9244. },
  9245. {
  9246. name: "Macro",
  9247. height: math.unit(626, "feet")
  9248. },
  9249. ]
  9250. ))
  9251. characterMakers.push(() => makeCharacter(
  9252. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9253. {
  9254. front: {
  9255. height: math.unit(2.718, "meters"),
  9256. weight: math.unit(150, "lbs"),
  9257. name: "Front",
  9258. image: {
  9259. source: "./media/characters/sovrim-terraquian/front.svg",
  9260. extra: 1752/1689,
  9261. bottom: 36/1788
  9262. }
  9263. },
  9264. back: {
  9265. height: math.unit(2.718, "meters"),
  9266. weight: math.unit(150, "lbs"),
  9267. name: "Back",
  9268. image: {
  9269. source: "./media/characters/sovrim-terraquian/back.svg",
  9270. extra: 1698/1657,
  9271. bottom: 58/1756
  9272. }
  9273. },
  9274. tongue: {
  9275. height: math.unit(2.865, "feet"),
  9276. name: "Tongue",
  9277. image: {
  9278. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9279. }
  9280. },
  9281. hand: {
  9282. height: math.unit(1.61, "feet"),
  9283. name: "Hand",
  9284. image: {
  9285. source: "./media/characters/sovrim-terraquian/hand.svg"
  9286. }
  9287. },
  9288. foot: {
  9289. height: math.unit(1.05, "feet"),
  9290. name: "Foot",
  9291. image: {
  9292. source: "./media/characters/sovrim-terraquian/foot.svg"
  9293. }
  9294. },
  9295. footAlt: {
  9296. height: math.unit(0.88, "feet"),
  9297. name: "Foot (Alt)",
  9298. image: {
  9299. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9300. }
  9301. },
  9302. },
  9303. [
  9304. {
  9305. name: "Micro",
  9306. height: math.unit(2, "inches")
  9307. },
  9308. {
  9309. name: "Small",
  9310. height: math.unit(1, "meter")
  9311. },
  9312. {
  9313. name: "Normal",
  9314. height: math.unit(Math.E, "meters"),
  9315. default: true
  9316. },
  9317. {
  9318. name: "Macro",
  9319. height: math.unit(20, "meters")
  9320. },
  9321. {
  9322. name: "Macro+",
  9323. height: math.unit(400, "meters")
  9324. },
  9325. ]
  9326. ))
  9327. characterMakers.push(() => makeCharacter(
  9328. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9329. {
  9330. front: {
  9331. height: math.unit(7, "feet"),
  9332. weight: math.unit(489, "lbs"),
  9333. name: "Front",
  9334. image: {
  9335. source: "./media/characters/reece-silvermane/front.svg",
  9336. bottom: 0.02,
  9337. extra: 1
  9338. }
  9339. },
  9340. },
  9341. [
  9342. {
  9343. name: "Macro",
  9344. height: math.unit(1.5, "miles"),
  9345. default: true
  9346. },
  9347. ]
  9348. ))
  9349. characterMakers.push(() => makeCharacter(
  9350. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9351. {
  9352. front: {
  9353. height: math.unit(6, "feet"),
  9354. weight: math.unit(78, "kg"),
  9355. name: "Front",
  9356. image: {
  9357. source: "./media/characters/kane/front.svg",
  9358. extra: 978 / 899
  9359. }
  9360. },
  9361. back: {
  9362. height: math.unit(6, "feet"),
  9363. weight: math.unit(78, "kg"),
  9364. name: "Back",
  9365. image: {
  9366. source: "./media/characters/kane/back.svg",
  9367. extra: 1966/1800,
  9368. bottom: 0/1966
  9369. }
  9370. },
  9371. head: {
  9372. height: math.unit(1.4, "feet"),
  9373. name: "Head",
  9374. image: {
  9375. source: "./media/characters/kane/head.svg"
  9376. }
  9377. },
  9378. },
  9379. [
  9380. {
  9381. name: "Normal",
  9382. height: math.unit(2.1, "m"),
  9383. },
  9384. {
  9385. name: "Macro",
  9386. height: math.unit(1, "km"),
  9387. default: true
  9388. },
  9389. ]
  9390. ))
  9391. characterMakers.push(() => makeCharacter(
  9392. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9393. {
  9394. front: {
  9395. height: math.unit(6, "feet"),
  9396. weight: math.unit(200, "kg"),
  9397. name: "Front",
  9398. image: {
  9399. source: "./media/characters/tegon/front.svg",
  9400. bottom: 0.01,
  9401. extra: 1
  9402. }
  9403. },
  9404. },
  9405. [
  9406. {
  9407. name: "Micro",
  9408. height: math.unit(1, "inch")
  9409. },
  9410. {
  9411. name: "Normal",
  9412. height: math.unit(6 + 3 / 12, "feet"),
  9413. default: true
  9414. },
  9415. {
  9416. name: "Macro",
  9417. height: math.unit(300, "feet")
  9418. },
  9419. {
  9420. name: "Megamacro",
  9421. height: math.unit(69, "miles")
  9422. },
  9423. ]
  9424. ))
  9425. characterMakers.push(() => makeCharacter(
  9426. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9427. {
  9428. side: {
  9429. height: math.unit(6, "feet"),
  9430. weight: math.unit(2304, "lbs"),
  9431. name: "Side",
  9432. image: {
  9433. source: "./media/characters/arcturax/side.svg",
  9434. extra: 790 / 376,
  9435. bottom: 0.01
  9436. }
  9437. },
  9438. },
  9439. [
  9440. {
  9441. name: "Micro",
  9442. height: math.unit(2, "inch")
  9443. },
  9444. {
  9445. name: "Normal",
  9446. height: math.unit(6, "feet")
  9447. },
  9448. {
  9449. name: "Macro",
  9450. height: math.unit(39, "feet"),
  9451. default: true
  9452. },
  9453. {
  9454. name: "Megamacro",
  9455. height: math.unit(7, "miles")
  9456. },
  9457. ]
  9458. ))
  9459. characterMakers.push(() => makeCharacter(
  9460. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9461. {
  9462. front: {
  9463. height: math.unit(6, "feet"),
  9464. weight: math.unit(50, "lbs"),
  9465. name: "Front",
  9466. image: {
  9467. source: "./media/characters/sentri/front.svg",
  9468. extra: 1750 / 1570,
  9469. bottom: 0.025
  9470. }
  9471. },
  9472. frontAlt: {
  9473. height: math.unit(6, "feet"),
  9474. weight: math.unit(50, "lbs"),
  9475. name: "Front (Alt)",
  9476. image: {
  9477. source: "./media/characters/sentri/front-alt.svg",
  9478. extra: 1750 / 1570,
  9479. bottom: 0.025
  9480. }
  9481. },
  9482. },
  9483. [
  9484. {
  9485. name: "Normal",
  9486. height: math.unit(15, "feet"),
  9487. default: true
  9488. },
  9489. {
  9490. name: "Macro",
  9491. height: math.unit(2500, "feet")
  9492. }
  9493. ]
  9494. ))
  9495. characterMakers.push(() => makeCharacter(
  9496. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9497. {
  9498. front: {
  9499. height: math.unit(5 + 8 / 12, "feet"),
  9500. weight: math.unit(130, "lbs"),
  9501. name: "Front",
  9502. image: {
  9503. source: "./media/characters/corvin/front.svg",
  9504. extra: 1803 / 1629
  9505. }
  9506. },
  9507. frontShirt: {
  9508. height: math.unit(5 + 8 / 12, "feet"),
  9509. weight: math.unit(130, "lbs"),
  9510. name: "Front (Shirt)",
  9511. image: {
  9512. source: "./media/characters/corvin/front-shirt.svg",
  9513. extra: 1803 / 1629
  9514. }
  9515. },
  9516. frontPoncho: {
  9517. height: math.unit(5 + 8 / 12, "feet"),
  9518. weight: math.unit(130, "lbs"),
  9519. name: "Front (Poncho)",
  9520. image: {
  9521. source: "./media/characters/corvin/front-poncho.svg",
  9522. extra: 1803 / 1629
  9523. }
  9524. },
  9525. side: {
  9526. height: math.unit(5 + 8 / 12, "feet"),
  9527. weight: math.unit(130, "lbs"),
  9528. name: "Side",
  9529. image: {
  9530. source: "./media/characters/corvin/side.svg",
  9531. extra: 1012 / 945
  9532. }
  9533. },
  9534. back: {
  9535. height: math.unit(5 + 8 / 12, "feet"),
  9536. weight: math.unit(130, "lbs"),
  9537. name: "Back",
  9538. image: {
  9539. source: "./media/characters/corvin/back.svg",
  9540. extra: 1803 / 1629
  9541. }
  9542. },
  9543. },
  9544. [
  9545. {
  9546. name: "Micro",
  9547. height: math.unit(3, "inches")
  9548. },
  9549. {
  9550. name: "Normal",
  9551. height: math.unit(5 + 8 / 12, "feet")
  9552. },
  9553. {
  9554. name: "Macro",
  9555. height: math.unit(300, "feet"),
  9556. default: true
  9557. },
  9558. {
  9559. name: "Megamacro",
  9560. height: math.unit(500, "miles")
  9561. }
  9562. ]
  9563. ))
  9564. characterMakers.push(() => makeCharacter(
  9565. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9566. {
  9567. front: {
  9568. height: math.unit(6, "feet"),
  9569. weight: math.unit(135, "lbs"),
  9570. name: "Front",
  9571. image: {
  9572. source: "./media/characters/q/front.svg",
  9573. extra: 854 / 752,
  9574. bottom: 0.005
  9575. }
  9576. },
  9577. back: {
  9578. height: math.unit(6, "feet"),
  9579. weight: math.unit(130, "lbs"),
  9580. name: "Back",
  9581. image: {
  9582. source: "./media/characters/q/back.svg",
  9583. extra: 854 / 752
  9584. }
  9585. },
  9586. },
  9587. [
  9588. {
  9589. name: "Macro",
  9590. height: math.unit(90, "feet"),
  9591. default: true
  9592. },
  9593. {
  9594. name: "Extra Macro",
  9595. height: math.unit(300, "feet"),
  9596. },
  9597. {
  9598. name: "BIG WALF",
  9599. height: math.unit(750, "feet"),
  9600. },
  9601. ]
  9602. ))
  9603. characterMakers.push(() => makeCharacter(
  9604. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9605. {
  9606. front: {
  9607. height: math.unit(3, "feet"),
  9608. weight: math.unit(28, "lbs"),
  9609. name: "Front",
  9610. image: {
  9611. source: "./media/characters/citrine/front.svg"
  9612. }
  9613. }
  9614. },
  9615. [
  9616. {
  9617. name: "Normal",
  9618. height: math.unit(3, "feet"),
  9619. default: true
  9620. }
  9621. ]
  9622. ))
  9623. characterMakers.push(() => makeCharacter(
  9624. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9625. {
  9626. front: {
  9627. height: math.unit(14, "feet"),
  9628. weight: math.unit(1450, "kg"),
  9629. preyCapacity: math.unit(15, "people"),
  9630. name: "Front",
  9631. image: {
  9632. source: "./media/characters/aura-starwind/front.svg",
  9633. extra: 1440/1327,
  9634. bottom: 11/1451
  9635. }
  9636. },
  9637. side: {
  9638. height: math.unit(14, "feet"),
  9639. weight: math.unit(1450, "kg"),
  9640. preyCapacity: math.unit(15, "people"),
  9641. name: "Side",
  9642. image: {
  9643. source: "./media/characters/aura-starwind/side.svg",
  9644. extra: 1654 / 1497
  9645. }
  9646. },
  9647. taur: {
  9648. height: math.unit(18, "feet"),
  9649. weight: math.unit(5500, "kg"),
  9650. preyCapacity: math.unit(50, "people"),
  9651. name: "Taur",
  9652. image: {
  9653. source: "./media/characters/aura-starwind/taur.svg",
  9654. extra: 1760 / 1650
  9655. }
  9656. },
  9657. feral: {
  9658. height: math.unit(46, "feet"),
  9659. weight: math.unit(25000, "kg"),
  9660. preyCapacity: math.unit(120, "people"),
  9661. name: "Feral",
  9662. image: {
  9663. source: "./media/characters/aura-starwind/feral.svg"
  9664. }
  9665. },
  9666. },
  9667. [
  9668. {
  9669. name: "Normal",
  9670. height: math.unit(14, "feet"),
  9671. default: true
  9672. },
  9673. {
  9674. name: "Macro",
  9675. height: math.unit(50, "meters")
  9676. },
  9677. {
  9678. name: "Megamacro",
  9679. height: math.unit(5000, "meters")
  9680. },
  9681. {
  9682. name: "Gigamacro",
  9683. height: math.unit(100000, "kilometers")
  9684. },
  9685. ]
  9686. ))
  9687. characterMakers.push(() => makeCharacter(
  9688. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9689. {
  9690. front: {
  9691. height: math.unit(2 + 7 / 12, "feet"),
  9692. weight: math.unit(32, "lbs"),
  9693. name: "Front",
  9694. image: {
  9695. source: "./media/characters/rivet/front.svg",
  9696. extra: 1716 / 1658,
  9697. bottom: 0.03
  9698. }
  9699. },
  9700. foot: {
  9701. height: math.unit(0.551, "feet"),
  9702. name: "Rivet's Foot",
  9703. image: {
  9704. source: "./media/characters/rivet/foot.svg"
  9705. },
  9706. rename: true
  9707. }
  9708. },
  9709. [
  9710. {
  9711. name: "Micro",
  9712. height: math.unit(1.5, "inches"),
  9713. },
  9714. {
  9715. name: "Normal",
  9716. height: math.unit(2 + 7 / 12, "feet"),
  9717. default: true
  9718. },
  9719. {
  9720. name: "Macro",
  9721. height: math.unit(85, "feet")
  9722. },
  9723. {
  9724. name: "Megamacro",
  9725. height: math.unit(2.2, "km")
  9726. }
  9727. ]
  9728. ))
  9729. characterMakers.push(() => makeCharacter(
  9730. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9731. {
  9732. front: {
  9733. height: math.unit(5 + 9 / 12, "feet"),
  9734. weight: math.unit(150, "lbs"),
  9735. name: "Front",
  9736. image: {
  9737. source: "./media/characters/coffee/front.svg",
  9738. extra: 946/880,
  9739. bottom: 66/1012
  9740. }
  9741. },
  9742. foot: {
  9743. height: math.unit(1.29, "feet"),
  9744. name: "Foot",
  9745. image: {
  9746. source: "./media/characters/coffee/foot.svg"
  9747. }
  9748. },
  9749. },
  9750. [
  9751. {
  9752. name: "Micro",
  9753. height: math.unit(2, "inches"),
  9754. },
  9755. {
  9756. name: "Normal",
  9757. height: math.unit(5 + 9 / 12, "feet"),
  9758. default: true
  9759. },
  9760. {
  9761. name: "Macro",
  9762. height: math.unit(800, "feet")
  9763. },
  9764. {
  9765. name: "Megamacro",
  9766. height: math.unit(25, "miles")
  9767. }
  9768. ]
  9769. ))
  9770. characterMakers.push(() => makeCharacter(
  9771. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9772. {
  9773. front: {
  9774. height: math.unit(6, "feet"),
  9775. weight: math.unit(200, "lbs"),
  9776. name: "Front",
  9777. image: {
  9778. source: "./media/characters/chari-gal/front.svg",
  9779. extra: 735/649,
  9780. bottom: 55/790
  9781. },
  9782. form: "normal",
  9783. default: true
  9784. },
  9785. back: {
  9786. height: math.unit(6, "feet"),
  9787. weight: math.unit(200, "lb"),
  9788. name: "Back",
  9789. image: {
  9790. source: "./media/characters/chari-gal/back.svg",
  9791. extra: 762/666,
  9792. bottom: 31/793
  9793. },
  9794. form: "normal"
  9795. },
  9796. mouth: {
  9797. height: math.unit(1.35, "feet"),
  9798. name: "Mouth",
  9799. image: {
  9800. source: "./media/characters/chari-gal/mouth.svg"
  9801. },
  9802. form: "normal"
  9803. },
  9804. gigantamax: {
  9805. height: math.unit(6 * 16, "feet"),
  9806. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9807. name: "Gigantamax",
  9808. image: {
  9809. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9810. extra: 1507/1149,
  9811. bottom: 254/1761
  9812. },
  9813. form: "gigantamax",
  9814. default: true
  9815. },
  9816. },
  9817. [
  9818. {
  9819. name: "Normal",
  9820. height: math.unit(5 + 7 / 12, "feet"),
  9821. form: "normal",
  9822. },
  9823. {
  9824. name: "Macro",
  9825. height: math.unit(200, "feet"),
  9826. default: true,
  9827. form: "normal"
  9828. },
  9829. {
  9830. name: "Normal",
  9831. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9832. form: "gigantamax",
  9833. },
  9834. {
  9835. name: "Macro",
  9836. height: math.unit(16 * 200, "feet"),
  9837. default: true,
  9838. form: "gigantamax"
  9839. },
  9840. ],
  9841. {
  9842. "normal": {
  9843. name: "Normal",
  9844. default: true
  9845. },
  9846. "gigantamax": {
  9847. name: "Gigantamax",
  9848. },
  9849. }
  9850. ))
  9851. characterMakers.push(() => makeCharacter(
  9852. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9853. {
  9854. front: {
  9855. height: math.unit(6, "feet"),
  9856. weight: math.unit(150, "lbs"),
  9857. name: "Front",
  9858. image: {
  9859. source: "./media/characters/nova/front.svg",
  9860. extra: 5000 / 4722,
  9861. bottom: 0.02
  9862. }
  9863. }
  9864. },
  9865. [
  9866. {
  9867. name: "Micro-",
  9868. height: math.unit(0.8, "inches")
  9869. },
  9870. {
  9871. name: "Micro",
  9872. height: math.unit(2, "inches"),
  9873. default: true
  9874. },
  9875. ]
  9876. ))
  9877. characterMakers.push(() => makeCharacter(
  9878. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9879. {
  9880. koboldFront: {
  9881. height: math.unit(3 + 1 / 12, "feet"),
  9882. weight: math.unit(21.7, "lbs"),
  9883. name: "Front",
  9884. image: {
  9885. source: "./media/characters/argent/kobold-front.svg",
  9886. extra: 1471 / 1331,
  9887. bottom: 100.8 / 1575.5
  9888. },
  9889. form: "kobold",
  9890. default: true
  9891. },
  9892. dragonFront: {
  9893. height: math.unit(75, "inches"),
  9894. name: "Front",
  9895. image: {
  9896. source: "./media/characters/argent/dragon-front.svg",
  9897. extra: 1389/1248,
  9898. bottom: 54/1443
  9899. },
  9900. form: "dragon",
  9901. },
  9902. dragonBack: {
  9903. height: math.unit(75, "inches"),
  9904. name: "Back",
  9905. image: {
  9906. source: "./media/characters/argent/dragon-back.svg",
  9907. extra: 1399/1271,
  9908. bottom: 23/1422
  9909. },
  9910. form: "dragon",
  9911. },
  9912. dragonDressed: {
  9913. height: math.unit(75, "inches"),
  9914. name: "Dressed",
  9915. image: {
  9916. source: "./media/characters/argent/dragon-dressed.svg",
  9917. extra: 1350/1215,
  9918. bottom: 26/1376
  9919. },
  9920. form: "dragon"
  9921. },
  9922. dragonHead: {
  9923. height: math.unit(23.5, "inches"),
  9924. name: "Head",
  9925. image: {
  9926. source: "./media/characters/argent/dragon-head.svg"
  9927. },
  9928. form: "dragon",
  9929. },
  9930. },
  9931. [
  9932. {
  9933. name: "Micro",
  9934. height: math.unit(2, "inches"),
  9935. form: "kobold",
  9936. },
  9937. {
  9938. name: "Normal",
  9939. height: math.unit(3 + 1 / 12, "feet"),
  9940. form: "kobold",
  9941. default: true
  9942. },
  9943. {
  9944. name: "Macro",
  9945. height: math.unit(120, "feet"),
  9946. form: "kobold",
  9947. },
  9948. {
  9949. name: "Speck",
  9950. height: math.unit(1, "mm"),
  9951. form: "dragon",
  9952. },
  9953. {
  9954. name: "Tiny",
  9955. height: math.unit(1, "cm"),
  9956. form: "dragon",
  9957. },
  9958. {
  9959. name: "Micro",
  9960. height: math.unit(5, "cm"),
  9961. form: "dragon",
  9962. },
  9963. {
  9964. name: "Normal",
  9965. height: math.unit(75, "inches"),
  9966. form: "dragon",
  9967. default: true
  9968. },
  9969. {
  9970. name: "Extra Tall",
  9971. height: math.unit(9, "feet"),
  9972. form: "dragon",
  9973. },
  9974. {
  9975. name: "Inconvenient",
  9976. height: math.unit(5, "meters"),
  9977. form: "dragon",
  9978. },
  9979. {
  9980. name: "Macro",
  9981. height: math.unit(70, "meters"),
  9982. form: "dragon",
  9983. },
  9984. {
  9985. name: "Macro+",
  9986. height: math.unit(250, "meters"),
  9987. form: "dragon",
  9988. },
  9989. {
  9990. name: "Megamacro",
  9991. height: math.unit(20, "km"),
  9992. form: "dragon",
  9993. },
  9994. {
  9995. name: "Mountainous",
  9996. height: math.unit(100, "km"),
  9997. form: "dragon",
  9998. },
  9999. {
  10000. name: "Continental",
  10001. height: math.unit(2, "megameters"),
  10002. form: "dragon",
  10003. },
  10004. {
  10005. name: "Too Big",
  10006. height: math.unit(900, "megameters"),
  10007. form: "dragon",
  10008. },
  10009. ],
  10010. {
  10011. "kobold": {
  10012. name: "Kobold",
  10013. default: true
  10014. },
  10015. "dragon": {
  10016. name: "Dragon",
  10017. },
  10018. }
  10019. ))
  10020. characterMakers.push(() => makeCharacter(
  10021. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  10022. {
  10023. lamp: {
  10024. height: math.unit(7 * 1559 / 989, "feet"),
  10025. name: "Magic Lamp",
  10026. image: {
  10027. source: "./media/characters/mira-al-cul/lamp.svg",
  10028. extra: 1617 / 1559
  10029. }
  10030. },
  10031. front: {
  10032. height: math.unit(7, "feet"),
  10033. name: "Front",
  10034. image: {
  10035. source: "./media/characters/mira-al-cul/front.svg",
  10036. extra: 1044 / 990
  10037. }
  10038. },
  10039. },
  10040. [
  10041. {
  10042. name: "Heavily Restricted",
  10043. height: math.unit(7 * 1559 / 989, "feet")
  10044. },
  10045. {
  10046. name: "Freshly Freed",
  10047. height: math.unit(50 * 1559 / 989, "feet")
  10048. },
  10049. {
  10050. name: "World Encompassing",
  10051. height: math.unit(10000 * 1559 / 989, "miles")
  10052. },
  10053. {
  10054. name: "Galactic",
  10055. height: math.unit(1.433 * 1559 / 989, "zettameters")
  10056. },
  10057. {
  10058. name: "Palmed Universe",
  10059. height: math.unit(6000 * 1559 / 989, "yottameters"),
  10060. default: true
  10061. },
  10062. {
  10063. name: "Multiversal Matriarch",
  10064. height: math.unit(8.87e10, "yottameters")
  10065. },
  10066. {
  10067. name: "Void Mother",
  10068. height: math.unit(3.14e110, "yottaparsecs")
  10069. },
  10070. {
  10071. name: "Toying with Transcendence",
  10072. height: math.unit(1e307, "meters")
  10073. },
  10074. ]
  10075. ))
  10076. characterMakers.push(() => makeCharacter(
  10077. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  10078. {
  10079. front: {
  10080. height: math.unit(17 + 1 / 12, "feet"),
  10081. weight: math.unit(476.2 * 5, "lbs"),
  10082. name: "Front",
  10083. image: {
  10084. source: "./media/characters/kuro-shi-uchū/front.svg",
  10085. extra: 2329 / 1835,
  10086. bottom: 0.02
  10087. }
  10088. },
  10089. },
  10090. [
  10091. {
  10092. name: "Micro",
  10093. height: math.unit(2, "inches")
  10094. },
  10095. {
  10096. name: "Normal",
  10097. height: math.unit(12, "meters")
  10098. },
  10099. {
  10100. name: "Planetary",
  10101. height: math.unit(0.00929, "AU"),
  10102. default: true
  10103. },
  10104. {
  10105. name: "Universal",
  10106. height: math.unit(20, "gigaparsecs")
  10107. },
  10108. ]
  10109. ))
  10110. characterMakers.push(() => makeCharacter(
  10111. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  10112. {
  10113. front: {
  10114. height: math.unit(5 + 2 / 12, "feet"),
  10115. weight: math.unit(120, "lbs"),
  10116. name: "Front",
  10117. image: {
  10118. source: "./media/characters/katherine/front.svg",
  10119. extra: 2075 / 1969
  10120. }
  10121. },
  10122. dress: {
  10123. height: math.unit(5 + 2 / 12, "feet"),
  10124. weight: math.unit(120, "lbs"),
  10125. name: "Dress",
  10126. image: {
  10127. source: "./media/characters/katherine/dress.svg",
  10128. extra: 2258 / 2064
  10129. }
  10130. },
  10131. },
  10132. [
  10133. {
  10134. name: "Micro",
  10135. height: math.unit(1, "inches"),
  10136. default: true
  10137. },
  10138. {
  10139. name: "Normal",
  10140. height: math.unit(5 + 2 / 12, "feet")
  10141. },
  10142. {
  10143. name: "Macro",
  10144. height: math.unit(100, "meters")
  10145. },
  10146. {
  10147. name: "Megamacro",
  10148. height: math.unit(80, "miles")
  10149. },
  10150. ]
  10151. ))
  10152. characterMakers.push(() => makeCharacter(
  10153. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  10154. {
  10155. front: {
  10156. height: math.unit(7 + 8 / 12, "feet"),
  10157. weight: math.unit(250, "lbs"),
  10158. name: "Front",
  10159. image: {
  10160. source: "./media/characters/yevis/front.svg",
  10161. extra: 1938 / 1755
  10162. }
  10163. }
  10164. },
  10165. [
  10166. {
  10167. name: "Mortal",
  10168. height: math.unit(7 + 8 / 12, "feet")
  10169. },
  10170. {
  10171. name: "Battle",
  10172. height: math.unit(25 + 11 / 12, "feet")
  10173. },
  10174. {
  10175. name: "Wrath",
  10176. height: math.unit(1654 + 11 / 12, "feet")
  10177. },
  10178. {
  10179. name: "Planet Destroyer",
  10180. height: math.unit(12000, "miles")
  10181. },
  10182. {
  10183. name: "Galaxy Conqueror",
  10184. height: math.unit(1.45, "zettameters"),
  10185. default: true
  10186. },
  10187. {
  10188. name: "Universal War",
  10189. height: math.unit(184, "gigaparsecs")
  10190. },
  10191. {
  10192. name: "Eternity War",
  10193. height: math.unit(1.98e55, "yottaparsecs")
  10194. },
  10195. ]
  10196. ))
  10197. characterMakers.push(() => makeCharacter(
  10198. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  10199. {
  10200. front: {
  10201. height: math.unit(5 + 8 / 12, "feet"),
  10202. weight: math.unit(63, "kg"),
  10203. name: "Front",
  10204. image: {
  10205. source: "./media/characters/xavier/front.svg",
  10206. extra: 944 / 883
  10207. }
  10208. },
  10209. frontStretch: {
  10210. height: math.unit(5 + 8 / 12, "feet"),
  10211. weight: math.unit(63, "kg"),
  10212. name: "Stretching",
  10213. image: {
  10214. source: "./media/characters/xavier/front-stretch.svg",
  10215. extra: 962 / 820
  10216. }
  10217. },
  10218. },
  10219. [
  10220. {
  10221. name: "Normal",
  10222. height: math.unit(5 + 8 / 12, "feet")
  10223. },
  10224. {
  10225. name: "Macro",
  10226. height: math.unit(100, "meters"),
  10227. default: true
  10228. },
  10229. {
  10230. name: "McLargeHuge",
  10231. height: math.unit(10, "miles")
  10232. },
  10233. ]
  10234. ))
  10235. characterMakers.push(() => makeCharacter(
  10236. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10237. {
  10238. front: {
  10239. height: math.unit(5 + 5 / 12, "feet"),
  10240. weight: math.unit(150, "lb"),
  10241. name: "Front",
  10242. image: {
  10243. source: "./media/characters/joshii/front.svg",
  10244. extra: 765 / 653,
  10245. bottom: 51 / 816
  10246. }
  10247. },
  10248. foot: {
  10249. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10250. name: "Foot",
  10251. image: {
  10252. source: "./media/characters/joshii/foot.svg"
  10253. }
  10254. },
  10255. },
  10256. [
  10257. {
  10258. name: "Micro",
  10259. height: math.unit(2, "inches")
  10260. },
  10261. {
  10262. name: "Normal",
  10263. height: math.unit(5 + 5 / 12, "feet")
  10264. },
  10265. {
  10266. name: "Macro",
  10267. height: math.unit(785, "feet"),
  10268. default: true
  10269. },
  10270. {
  10271. name: "Megamacro",
  10272. height: math.unit(24.5, "miles")
  10273. },
  10274. ]
  10275. ))
  10276. characterMakers.push(() => makeCharacter(
  10277. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10278. {
  10279. front: {
  10280. height: math.unit(6, "feet"),
  10281. weight: math.unit(150, "lb"),
  10282. name: "Front",
  10283. image: {
  10284. source: "./media/characters/goddess-elizabeth/front.svg",
  10285. extra: 1800 / 1525,
  10286. bottom: 0.005
  10287. }
  10288. },
  10289. foot: {
  10290. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10291. name: "Foot",
  10292. image: {
  10293. source: "./media/characters/goddess-elizabeth/foot.svg"
  10294. }
  10295. },
  10296. mouth: {
  10297. height: math.unit(6, "feet"),
  10298. name: "Mouth",
  10299. image: {
  10300. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10301. }
  10302. },
  10303. },
  10304. [
  10305. {
  10306. name: "Micro",
  10307. height: math.unit(12, "feet")
  10308. },
  10309. {
  10310. name: "Normal",
  10311. height: math.unit(80, "miles"),
  10312. default: true
  10313. },
  10314. {
  10315. name: "Macro",
  10316. height: math.unit(15000, "parsecs")
  10317. },
  10318. ]
  10319. ))
  10320. characterMakers.push(() => makeCharacter(
  10321. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10322. {
  10323. front: {
  10324. height: math.unit(5 + 9 / 12, "feet"),
  10325. weight: math.unit(144, "lb"),
  10326. name: "Front",
  10327. image: {
  10328. source: "./media/characters/kara/front.svg"
  10329. }
  10330. },
  10331. feet: {
  10332. height: math.unit(6 / 6.765, "feet"),
  10333. name: "Kara's Feet",
  10334. rename: true,
  10335. image: {
  10336. source: "./media/characters/kara/feet.svg"
  10337. }
  10338. },
  10339. },
  10340. [
  10341. {
  10342. name: "Normal",
  10343. height: math.unit(5 + 9 / 12, "feet")
  10344. },
  10345. {
  10346. name: "Macro",
  10347. height: math.unit(174, "feet"),
  10348. default: true
  10349. },
  10350. ]
  10351. ))
  10352. characterMakers.push(() => makeCharacter(
  10353. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10354. {
  10355. front: {
  10356. height: math.unit(18, "feet"),
  10357. weight: math.unit(4050, "lb"),
  10358. name: "Front",
  10359. image: {
  10360. source: "./media/characters/tyrone/front.svg",
  10361. extra: 2405 / 2270,
  10362. bottom: 182 / 2587
  10363. }
  10364. },
  10365. },
  10366. [
  10367. {
  10368. name: "Normal",
  10369. height: math.unit(18, "feet"),
  10370. default: true
  10371. },
  10372. {
  10373. name: "Macro",
  10374. height: math.unit(300, "feet")
  10375. },
  10376. {
  10377. name: "Megamacro",
  10378. height: math.unit(15, "km")
  10379. },
  10380. {
  10381. name: "Gigamacro",
  10382. height: math.unit(500, "km")
  10383. },
  10384. {
  10385. name: "Teramacro",
  10386. height: math.unit(0.5, "gigameters")
  10387. },
  10388. {
  10389. name: "Omnimacro",
  10390. height: math.unit(1e252, "yottauniverse")
  10391. },
  10392. ]
  10393. ))
  10394. characterMakers.push(() => makeCharacter(
  10395. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10396. {
  10397. front: {
  10398. height: math.unit(7 + 8 / 12, "feet"),
  10399. weight: math.unit(120, "lb"),
  10400. name: "Front",
  10401. image: {
  10402. source: "./media/characters/danny/front.svg",
  10403. extra: 1490 / 1350
  10404. }
  10405. },
  10406. back: {
  10407. height: math.unit(7 + 8 / 12, "feet"),
  10408. weight: math.unit(120, "lb"),
  10409. name: "Back",
  10410. image: {
  10411. source: "./media/characters/danny/back.svg",
  10412. extra: 1490 / 1350
  10413. }
  10414. },
  10415. },
  10416. [
  10417. {
  10418. name: "Normal",
  10419. height: math.unit(7 + 8 / 12, "feet"),
  10420. default: true
  10421. },
  10422. ]
  10423. ))
  10424. characterMakers.push(() => makeCharacter(
  10425. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10426. {
  10427. front: {
  10428. height: math.unit(3.5, "inches"),
  10429. weight: math.unit(19, "grams"),
  10430. name: "Front",
  10431. image: {
  10432. source: "./media/characters/mallow/front.svg",
  10433. extra: 471 / 431
  10434. }
  10435. },
  10436. back: {
  10437. height: math.unit(3.5, "inches"),
  10438. weight: math.unit(19, "grams"),
  10439. name: "Back",
  10440. image: {
  10441. source: "./media/characters/mallow/back.svg",
  10442. extra: 471 / 431
  10443. }
  10444. },
  10445. },
  10446. [
  10447. {
  10448. name: "Normal",
  10449. height: math.unit(3.5, "inches"),
  10450. default: true
  10451. },
  10452. ]
  10453. ))
  10454. characterMakers.push(() => makeCharacter(
  10455. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10456. {
  10457. front: {
  10458. height: math.unit(9, "feet"),
  10459. weight: math.unit(230, "kg"),
  10460. name: "Front",
  10461. image: {
  10462. source: "./media/characters/starry-aqua/front.svg"
  10463. }
  10464. },
  10465. back: {
  10466. height: math.unit(9, "feet"),
  10467. weight: math.unit(230, "kg"),
  10468. name: "Back",
  10469. image: {
  10470. source: "./media/characters/starry-aqua/back.svg"
  10471. }
  10472. },
  10473. hand: {
  10474. height: math.unit(9 * 0.1168, "feet"),
  10475. name: "Hand",
  10476. image: {
  10477. source: "./media/characters/starry-aqua/hand.svg"
  10478. }
  10479. },
  10480. foot: {
  10481. height: math.unit(9 * 0.18, "feet"),
  10482. name: "Foot",
  10483. image: {
  10484. source: "./media/characters/starry-aqua/foot.svg"
  10485. }
  10486. }
  10487. },
  10488. [
  10489. {
  10490. name: "Micro",
  10491. height: math.unit(3, "inches")
  10492. },
  10493. {
  10494. name: "Normal",
  10495. height: math.unit(9, "feet")
  10496. },
  10497. {
  10498. name: "Macro",
  10499. height: math.unit(300, "feet"),
  10500. default: true
  10501. },
  10502. {
  10503. name: "Megamacro",
  10504. height: math.unit(3200, "feet")
  10505. }
  10506. ]
  10507. ))
  10508. characterMakers.push(() => makeCharacter(
  10509. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10510. {
  10511. front: {
  10512. height: math.unit(15, "feet"),
  10513. weight: math.unit(5026, "lb"),
  10514. name: "Front",
  10515. image: {
  10516. source: "./media/characters/luka-towers/front.svg",
  10517. extra: 1269/1133,
  10518. bottom: 51/1320
  10519. }
  10520. },
  10521. },
  10522. [
  10523. {
  10524. name: "Normal",
  10525. height: math.unit(15, "feet"),
  10526. default: true
  10527. },
  10528. {
  10529. name: "Minimacro",
  10530. height: math.unit(25, "feet")
  10531. },
  10532. {
  10533. name: "Macro",
  10534. height: math.unit(320, "feet")
  10535. },
  10536. {
  10537. name: "Megamacro",
  10538. height: math.unit(35000, "feet")
  10539. },
  10540. {
  10541. name: "Gigamacro",
  10542. height: math.unit(4000, "miles")
  10543. },
  10544. {
  10545. name: "Teramacro",
  10546. height: math.unit(15000, "miles")
  10547. },
  10548. ]
  10549. ))
  10550. characterMakers.push(() => makeCharacter(
  10551. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10552. {
  10553. front: {
  10554. height: math.unit(6, "feet"),
  10555. weight: math.unit(150, "lb"),
  10556. name: "Front",
  10557. image: {
  10558. source: "./media/characters/natalie-nightring/front.svg",
  10559. extra: 1,
  10560. bottom: 0.06
  10561. }
  10562. },
  10563. },
  10564. [
  10565. {
  10566. name: "Uh Oh",
  10567. height: math.unit(0.1, "mm")
  10568. },
  10569. {
  10570. name: "Small",
  10571. height: math.unit(3, "inches")
  10572. },
  10573. {
  10574. name: "Human Scale",
  10575. height: math.unit(6, "feet")
  10576. },
  10577. {
  10578. name: "Librarian",
  10579. height: math.unit(50, "feet"),
  10580. default: true
  10581. },
  10582. {
  10583. name: "Immense",
  10584. height: math.unit(200, "miles")
  10585. },
  10586. ]
  10587. ))
  10588. characterMakers.push(() => makeCharacter(
  10589. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10590. {
  10591. front: {
  10592. height: math.unit(6, "feet"),
  10593. weight: math.unit(180, "lbs"),
  10594. name: "Front",
  10595. image: {
  10596. source: "./media/characters/danni-rosie/front.svg",
  10597. extra: 1260 / 1128,
  10598. bottom: 0.022
  10599. }
  10600. },
  10601. },
  10602. [
  10603. {
  10604. name: "Micro",
  10605. height: math.unit(2, "inches"),
  10606. default: true
  10607. },
  10608. ]
  10609. ))
  10610. characterMakers.push(() => makeCharacter(
  10611. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10612. {
  10613. front: {
  10614. height: math.unit(5 + 9 / 12, "feet"),
  10615. weight: math.unit(220, "lb"),
  10616. name: "Front",
  10617. image: {
  10618. source: "./media/characters/samantha-kruse/front.svg",
  10619. extra: (985 / 935),
  10620. bottom: 0.03
  10621. }
  10622. },
  10623. frontUndressed: {
  10624. height: math.unit(5 + 9 / 12, "feet"),
  10625. weight: math.unit(220, "lb"),
  10626. name: "Front (Undressed)",
  10627. image: {
  10628. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10629. extra: (973 / 923),
  10630. bottom: 0.025
  10631. }
  10632. },
  10633. fat: {
  10634. height: math.unit(5 + 9 / 12, "feet"),
  10635. weight: math.unit(900, "lb"),
  10636. name: "Front (Fat)",
  10637. image: {
  10638. source: "./media/characters/samantha-kruse/fat.svg",
  10639. extra: 2688 / 2561
  10640. }
  10641. },
  10642. },
  10643. [
  10644. {
  10645. name: "Normal",
  10646. height: math.unit(5 + 9 / 12, "feet"),
  10647. default: true
  10648. }
  10649. ]
  10650. ))
  10651. characterMakers.push(() => makeCharacter(
  10652. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10653. {
  10654. back: {
  10655. height: math.unit(5 + 4 / 12, "feet"),
  10656. weight: math.unit(4963, "lb"),
  10657. name: "Back",
  10658. image: {
  10659. source: "./media/characters/amelia-rosie/back.svg",
  10660. extra: 1113 / 963,
  10661. bottom: 0.01
  10662. }
  10663. },
  10664. },
  10665. [
  10666. {
  10667. name: "Level 0",
  10668. height: math.unit(5 + 4 / 12, "feet")
  10669. },
  10670. {
  10671. name: "Level 1",
  10672. height: math.unit(164597, "feet"),
  10673. default: true
  10674. },
  10675. {
  10676. name: "Level 2",
  10677. height: math.unit(956243, "miles")
  10678. },
  10679. {
  10680. name: "Level 3",
  10681. height: math.unit(29421709423, "miles")
  10682. },
  10683. {
  10684. name: "Level 4",
  10685. height: math.unit(154, "lightyears")
  10686. },
  10687. {
  10688. name: "Level 5",
  10689. height: math.unit(4738272, "lightyears")
  10690. },
  10691. {
  10692. name: "Level 6",
  10693. height: math.unit(145787152896, "lightyears")
  10694. },
  10695. ]
  10696. ))
  10697. characterMakers.push(() => makeCharacter(
  10698. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10699. {
  10700. front: {
  10701. height: math.unit(5 + 11 / 12, "feet"),
  10702. weight: math.unit(65, "kg"),
  10703. name: "Front",
  10704. image: {
  10705. source: "./media/characters/rook-kitara/front.svg",
  10706. extra: 1347 / 1274,
  10707. bottom: 0.005
  10708. }
  10709. },
  10710. },
  10711. [
  10712. {
  10713. name: "Totally Unfair",
  10714. height: math.unit(1.8, "mm")
  10715. },
  10716. {
  10717. name: "Lap Rookie",
  10718. height: math.unit(1.4, "feet")
  10719. },
  10720. {
  10721. name: "Normal",
  10722. height: math.unit(5 + 11 / 12, "feet"),
  10723. default: true
  10724. },
  10725. {
  10726. name: "How Did This Happen",
  10727. height: math.unit(80, "miles")
  10728. }
  10729. ]
  10730. ))
  10731. characterMakers.push(() => makeCharacter(
  10732. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10733. {
  10734. front: {
  10735. height: math.unit(7, "feet"),
  10736. weight: math.unit(300, "lb"),
  10737. name: "Front",
  10738. image: {
  10739. source: "./media/characters/pisces/front.svg",
  10740. extra: 2255 / 2115,
  10741. bottom: 0.03
  10742. }
  10743. },
  10744. back: {
  10745. height: math.unit(7, "feet"),
  10746. weight: math.unit(300, "lb"),
  10747. name: "Back",
  10748. image: {
  10749. source: "./media/characters/pisces/back.svg",
  10750. extra: 2146 / 2055,
  10751. bottom: 0.04
  10752. }
  10753. },
  10754. },
  10755. [
  10756. {
  10757. name: "Normal",
  10758. height: math.unit(7, "feet"),
  10759. default: true
  10760. },
  10761. {
  10762. name: "Swimming Pool",
  10763. height: math.unit(12.2, "meters")
  10764. },
  10765. {
  10766. name: "Olympic Swimming Pool",
  10767. height: math.unit(56.3, "meters")
  10768. },
  10769. {
  10770. name: "Lake Superior",
  10771. height: math.unit(93900, "meters")
  10772. },
  10773. {
  10774. name: "Mediterranean Sea",
  10775. height: math.unit(644457, "meters")
  10776. },
  10777. {
  10778. name: "World's Oceans",
  10779. height: math.unit(4567491, "meters")
  10780. },
  10781. ]
  10782. ))
  10783. characterMakers.push(() => makeCharacter(
  10784. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10785. {
  10786. front: {
  10787. height: math.unit(2.3, "meters"),
  10788. weight: math.unit(120, "kg"),
  10789. name: "Front",
  10790. image: {
  10791. source: "./media/characters/zelas/front.svg"
  10792. }
  10793. },
  10794. side: {
  10795. height: math.unit(2.3, "meters"),
  10796. weight: math.unit(120, "kg"),
  10797. name: "Side",
  10798. image: {
  10799. source: "./media/characters/zelas/side.svg"
  10800. }
  10801. },
  10802. back: {
  10803. height: math.unit(2.3, "meters"),
  10804. weight: math.unit(120, "kg"),
  10805. name: "Back",
  10806. image: {
  10807. source: "./media/characters/zelas/back.svg"
  10808. }
  10809. },
  10810. foot: {
  10811. height: math.unit(1.116, "feet"),
  10812. name: "Foot",
  10813. image: {
  10814. source: "./media/characters/zelas/foot.svg"
  10815. }
  10816. },
  10817. },
  10818. [
  10819. {
  10820. name: "Normal",
  10821. height: math.unit(2.3, "meters")
  10822. },
  10823. {
  10824. name: "Macro",
  10825. height: math.unit(30, "meters"),
  10826. default: true
  10827. },
  10828. ]
  10829. ))
  10830. characterMakers.push(() => makeCharacter(
  10831. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10832. {
  10833. front: {
  10834. height: math.unit(1, "inch"),
  10835. weight: math.unit(0.21, "grams"),
  10836. name: "Front",
  10837. image: {
  10838. source: "./media/characters/talbot/front.svg",
  10839. extra: 594 / 544
  10840. }
  10841. },
  10842. },
  10843. [
  10844. {
  10845. name: "Micro",
  10846. height: math.unit(1, "inch"),
  10847. default: true
  10848. },
  10849. ]
  10850. ))
  10851. characterMakers.push(() => makeCharacter(
  10852. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10853. {
  10854. front: {
  10855. height: math.unit(3 + 3 / 12, "feet"),
  10856. weight: math.unit(51.8, "lb"),
  10857. name: "Front",
  10858. image: {
  10859. source: "./media/characters/fliss/front.svg",
  10860. extra: 840 / 640
  10861. }
  10862. },
  10863. },
  10864. [
  10865. {
  10866. name: "Teeny Tiny",
  10867. height: math.unit(1, "mm")
  10868. },
  10869. {
  10870. name: "Small",
  10871. height: math.unit(1, "inch"),
  10872. default: true
  10873. },
  10874. {
  10875. name: "Standard Sylveon",
  10876. height: math.unit(3 + 3 / 12, "feet")
  10877. },
  10878. {
  10879. name: "Large Nuisance",
  10880. height: math.unit(33, "feet")
  10881. },
  10882. {
  10883. name: "City Filler",
  10884. height: math.unit(3000, "feet")
  10885. },
  10886. {
  10887. name: "New Horizon",
  10888. height: math.unit(6000, "miles")
  10889. },
  10890. ]
  10891. ))
  10892. characterMakers.push(() => makeCharacter(
  10893. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10894. {
  10895. front: {
  10896. height: math.unit(5, "cm"),
  10897. weight: math.unit(1.94, "g"),
  10898. name: "Front",
  10899. image: {
  10900. source: "./media/characters/fleta/front.svg",
  10901. extra: 835 / 803
  10902. }
  10903. },
  10904. back: {
  10905. height: math.unit(5, "cm"),
  10906. weight: math.unit(1.94, "g"),
  10907. name: "Back",
  10908. image: {
  10909. source: "./media/characters/fleta/back.svg",
  10910. extra: 835 / 803
  10911. }
  10912. },
  10913. },
  10914. [
  10915. {
  10916. name: "Micro",
  10917. height: math.unit(5, "cm"),
  10918. default: true
  10919. },
  10920. ]
  10921. ))
  10922. characterMakers.push(() => makeCharacter(
  10923. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10924. {
  10925. front: {
  10926. height: math.unit(6, "feet"),
  10927. weight: math.unit(225, "lb"),
  10928. name: "Front",
  10929. image: {
  10930. source: "./media/characters/dominic/front.svg",
  10931. extra: 1770 / 1620,
  10932. bottom: 0.025
  10933. }
  10934. },
  10935. back: {
  10936. height: math.unit(6, "feet"),
  10937. weight: math.unit(225, "lb"),
  10938. name: "Back",
  10939. image: {
  10940. source: "./media/characters/dominic/back.svg",
  10941. extra: 1745 / 1620,
  10942. bottom: 0.065
  10943. }
  10944. },
  10945. },
  10946. [
  10947. {
  10948. name: "Nano",
  10949. height: math.unit(0.1, "mm")
  10950. },
  10951. {
  10952. name: "Micro-",
  10953. height: math.unit(1, "mm")
  10954. },
  10955. {
  10956. name: "Micro",
  10957. height: math.unit(4, "inches")
  10958. },
  10959. {
  10960. name: "Normal",
  10961. height: math.unit(6 + 4 / 12, "feet"),
  10962. default: true
  10963. },
  10964. {
  10965. name: "Macro",
  10966. height: math.unit(115, "feet")
  10967. },
  10968. {
  10969. name: "Macro+",
  10970. height: math.unit(955, "feet")
  10971. },
  10972. {
  10973. name: "Megamacro",
  10974. height: math.unit(8990, "feet")
  10975. },
  10976. {
  10977. name: "Gigmacro",
  10978. height: math.unit(9310, "miles")
  10979. },
  10980. {
  10981. name: "Teramacro",
  10982. height: math.unit(1567005010, "miles")
  10983. },
  10984. {
  10985. name: "Examacro",
  10986. height: math.unit(1425, "parsecs")
  10987. },
  10988. ]
  10989. ))
  10990. characterMakers.push(() => makeCharacter(
  10991. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10992. {
  10993. front: {
  10994. height: math.unit(400, "feet"),
  10995. weight: math.unit(44444444, "lb"),
  10996. name: "Front",
  10997. image: {
  10998. source: "./media/characters/major-colonel/front.svg"
  10999. }
  11000. },
  11001. back: {
  11002. height: math.unit(400, "feet"),
  11003. weight: math.unit(44444444, "lb"),
  11004. name: "Back",
  11005. image: {
  11006. source: "./media/characters/major-colonel/back.svg"
  11007. }
  11008. },
  11009. },
  11010. [
  11011. {
  11012. name: "Macro",
  11013. height: math.unit(400, "feet"),
  11014. default: true
  11015. },
  11016. ]
  11017. ))
  11018. characterMakers.push(() => makeCharacter(
  11019. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  11020. {
  11021. catFront: {
  11022. height: math.unit(6, "feet"),
  11023. weight: math.unit(120, "lb"),
  11024. name: "Front (Cat Side)",
  11025. image: {
  11026. source: "./media/characters/axel-lycan/cat-front.svg",
  11027. extra: 430 / 402,
  11028. bottom: 43 / 472.35
  11029. }
  11030. },
  11031. catBack: {
  11032. height: math.unit(6, "feet"),
  11033. weight: math.unit(120, "lb"),
  11034. name: "Back (Cat Side)",
  11035. image: {
  11036. source: "./media/characters/axel-lycan/cat-back.svg",
  11037. extra: 447 / 419,
  11038. bottom: 23.3 / 469
  11039. }
  11040. },
  11041. wolfFront: {
  11042. height: math.unit(6, "feet"),
  11043. weight: math.unit(120, "lb"),
  11044. name: "Front (Wolf Side)",
  11045. image: {
  11046. source: "./media/characters/axel-lycan/wolf-front.svg",
  11047. extra: 485 / 456,
  11048. bottom: 19 / 504
  11049. }
  11050. },
  11051. wolfBack: {
  11052. height: math.unit(6, "feet"),
  11053. weight: math.unit(120, "lb"),
  11054. name: "Back (Wolf Side)",
  11055. image: {
  11056. source: "./media/characters/axel-lycan/wolf-back.svg",
  11057. extra: 475 / 438,
  11058. bottom: 39.2 / 514
  11059. }
  11060. },
  11061. },
  11062. [
  11063. {
  11064. name: "Macro",
  11065. height: math.unit(1, "km"),
  11066. default: true
  11067. },
  11068. ]
  11069. ))
  11070. characterMakers.push(() => makeCharacter(
  11071. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  11072. {
  11073. front: {
  11074. height: math.unit(5 + 9 / 12, "feet"),
  11075. weight: math.unit(175, "lb"),
  11076. name: "Front",
  11077. image: {
  11078. source: "./media/characters/vanrel-hyena/front.svg",
  11079. extra: 1086 / 1010,
  11080. bottom: 0.04
  11081. }
  11082. },
  11083. },
  11084. [
  11085. {
  11086. name: "Normal",
  11087. height: math.unit(5 + 9 / 12, "feet"),
  11088. default: true
  11089. },
  11090. ]
  11091. ))
  11092. characterMakers.push(() => makeCharacter(
  11093. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  11094. {
  11095. front: {
  11096. height: math.unit(6, "feet"),
  11097. weight: math.unit(103, "lb"),
  11098. name: "Front",
  11099. image: {
  11100. source: "./media/characters/abbott-absol/front.svg",
  11101. extra: 765/694,
  11102. bottom: 47/812
  11103. }
  11104. },
  11105. },
  11106. [
  11107. {
  11108. name: "Megamicro",
  11109. height: math.unit(0.1, "mm")
  11110. },
  11111. {
  11112. name: "Micro",
  11113. height: math.unit(1, "inch")
  11114. },
  11115. {
  11116. name: "Normal",
  11117. height: math.unit(6, "feet"),
  11118. default: true
  11119. },
  11120. ]
  11121. ))
  11122. characterMakers.push(() => makeCharacter(
  11123. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  11124. {
  11125. front: {
  11126. height: math.unit(6, "feet"),
  11127. weight: math.unit(264, "lb"),
  11128. name: "Front",
  11129. image: {
  11130. source: "./media/characters/hector/front.svg",
  11131. extra: 2280 / 2130,
  11132. bottom: 0.07
  11133. }
  11134. },
  11135. },
  11136. [
  11137. {
  11138. name: "Normal",
  11139. height: math.unit(12.25, "foot"),
  11140. default: true
  11141. },
  11142. {
  11143. name: "Macro",
  11144. height: math.unit(160, "feet")
  11145. },
  11146. ]
  11147. ))
  11148. characterMakers.push(() => makeCharacter(
  11149. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  11150. {
  11151. front: {
  11152. height: math.unit(6, "feet"),
  11153. weight: math.unit(150, "lb"),
  11154. name: "Front",
  11155. image: {
  11156. source: "./media/characters/sal/front.svg",
  11157. extra: 1846 / 1699,
  11158. bottom: 0.04
  11159. }
  11160. },
  11161. },
  11162. [
  11163. {
  11164. name: "Megamacro",
  11165. height: math.unit(10, "miles"),
  11166. default: true
  11167. },
  11168. ]
  11169. ))
  11170. characterMakers.push(() => makeCharacter(
  11171. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  11172. {
  11173. front: {
  11174. height: math.unit(3, "meters"),
  11175. weight: math.unit(450, "kg"),
  11176. name: "front",
  11177. image: {
  11178. source: "./media/characters/ranger/front.svg",
  11179. extra: 2401 / 2243,
  11180. bottom: 0.05
  11181. }
  11182. },
  11183. },
  11184. [
  11185. {
  11186. name: "Normal",
  11187. height: math.unit(3, "meters"),
  11188. default: true
  11189. },
  11190. ]
  11191. ))
  11192. characterMakers.push(() => makeCharacter(
  11193. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  11194. {
  11195. front: {
  11196. height: math.unit(14, "feet"),
  11197. weight: math.unit(800, "kg"),
  11198. name: "Front",
  11199. image: {
  11200. source: "./media/characters/theresa/front.svg",
  11201. extra: 3575 / 3346,
  11202. bottom: 0.03
  11203. }
  11204. },
  11205. },
  11206. [
  11207. {
  11208. name: "Normal",
  11209. height: math.unit(14, "feet"),
  11210. default: true
  11211. },
  11212. ]
  11213. ))
  11214. characterMakers.push(() => makeCharacter(
  11215. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  11216. {
  11217. front: {
  11218. height: math.unit(6, "feet"),
  11219. weight: math.unit(3, "kg"),
  11220. name: "Front",
  11221. image: {
  11222. source: "./media/characters/ine/front.svg",
  11223. extra: 678 / 539,
  11224. bottom: 0.023
  11225. }
  11226. },
  11227. },
  11228. [
  11229. {
  11230. name: "Normal",
  11231. height: math.unit(2.265, "feet"),
  11232. default: true
  11233. },
  11234. ]
  11235. ))
  11236. characterMakers.push(() => makeCharacter(
  11237. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11238. {
  11239. front: {
  11240. height: math.unit(5, "feet"),
  11241. weight: math.unit(30, "kg"),
  11242. name: "Front",
  11243. image: {
  11244. source: "./media/characters/vial/front.svg",
  11245. extra: 1365 / 1277,
  11246. bottom: 0.04
  11247. }
  11248. },
  11249. },
  11250. [
  11251. {
  11252. name: "Normal",
  11253. height: math.unit(5, "feet"),
  11254. default: true
  11255. },
  11256. ]
  11257. ))
  11258. characterMakers.push(() => makeCharacter(
  11259. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11260. {
  11261. side: {
  11262. height: math.unit(3.4, "meters"),
  11263. weight: math.unit(1000, "lb"),
  11264. name: "Side",
  11265. image: {
  11266. source: "./media/characters/rovoska/side.svg",
  11267. extra: 4403 / 1515
  11268. }
  11269. },
  11270. },
  11271. [
  11272. {
  11273. name: "Normal",
  11274. height: math.unit(3.4, "meters"),
  11275. default: true
  11276. },
  11277. ]
  11278. ))
  11279. characterMakers.push(() => makeCharacter(
  11280. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11281. {
  11282. front: {
  11283. height: math.unit(8, "feet"),
  11284. weight: math.unit(315, "lb"),
  11285. name: "Front",
  11286. image: {
  11287. source: "./media/characters/gunner-rotthbauer/front.svg"
  11288. }
  11289. },
  11290. back: {
  11291. height: math.unit(8, "feet"),
  11292. weight: math.unit(315, "lb"),
  11293. name: "Back",
  11294. image: {
  11295. source: "./media/characters/gunner-rotthbauer/back.svg"
  11296. }
  11297. },
  11298. },
  11299. [
  11300. {
  11301. name: "Micro",
  11302. height: math.unit(3.5, "inches")
  11303. },
  11304. {
  11305. name: "Normal",
  11306. height: math.unit(8, "feet"),
  11307. default: true
  11308. },
  11309. {
  11310. name: "Macro",
  11311. height: math.unit(250, "feet")
  11312. },
  11313. {
  11314. name: "Megamacro",
  11315. height: math.unit(1, "AU")
  11316. },
  11317. ]
  11318. ))
  11319. characterMakers.push(() => makeCharacter(
  11320. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11321. {
  11322. front: {
  11323. height: math.unit(5 + 5 / 12, "feet"),
  11324. weight: math.unit(140, "lb"),
  11325. name: "Front",
  11326. image: {
  11327. source: "./media/characters/allatia/front.svg",
  11328. extra: 1227 / 1180,
  11329. bottom: 0.027
  11330. }
  11331. },
  11332. },
  11333. [
  11334. {
  11335. name: "Normal",
  11336. height: math.unit(5 + 5 / 12, "feet")
  11337. },
  11338. {
  11339. name: "Macro",
  11340. height: math.unit(250, "feet"),
  11341. default: true
  11342. },
  11343. {
  11344. name: "Megamacro",
  11345. height: math.unit(8, "miles")
  11346. }
  11347. ]
  11348. ))
  11349. characterMakers.push(() => makeCharacter(
  11350. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11351. {
  11352. front: {
  11353. height: math.unit(6, "feet"),
  11354. weight: math.unit(120, "lb"),
  11355. name: "Front",
  11356. image: {
  11357. source: "./media/characters/tene/front.svg",
  11358. extra: 814/750,
  11359. bottom: 36/850
  11360. }
  11361. },
  11362. stomping: {
  11363. height: math.unit(2.025, "meters"),
  11364. weight: math.unit(120, "lb"),
  11365. name: "Stomping",
  11366. image: {
  11367. source: "./media/characters/tene/stomping.svg",
  11368. extra: 885/821,
  11369. bottom: 15/900
  11370. }
  11371. },
  11372. sitting: {
  11373. height: math.unit(1, "meter"),
  11374. weight: math.unit(120, "lb"),
  11375. name: "Sitting",
  11376. image: {
  11377. source: "./media/characters/tene/sitting.svg",
  11378. extra: 396/366,
  11379. bottom: 79/475
  11380. }
  11381. },
  11382. smiling: {
  11383. height: math.unit(1.2, "feet"),
  11384. name: "Smiling",
  11385. image: {
  11386. source: "./media/characters/tene/smiling.svg",
  11387. extra: 1364/1071,
  11388. bottom: 0/1364
  11389. }
  11390. },
  11391. smug: {
  11392. height: math.unit(1.3, "feet"),
  11393. name: "Smug",
  11394. image: {
  11395. source: "./media/characters/tene/smug.svg",
  11396. extra: 1323/1082,
  11397. bottom: 0/1323
  11398. }
  11399. },
  11400. feral: {
  11401. height: math.unit(3.9, "feet"),
  11402. weight: math.unit(250, "lb"),
  11403. name: "Feral",
  11404. image: {
  11405. source: "./media/characters/tene/feral.svg",
  11406. extra: 717 / 458,
  11407. bottom: 0.179
  11408. }
  11409. },
  11410. },
  11411. [
  11412. {
  11413. name: "Normal",
  11414. height: math.unit(6, "feet")
  11415. },
  11416. {
  11417. name: "Macro",
  11418. height: math.unit(300, "feet"),
  11419. default: true
  11420. },
  11421. {
  11422. name: "Megamacro",
  11423. height: math.unit(5, "miles")
  11424. },
  11425. ]
  11426. ))
  11427. characterMakers.push(() => makeCharacter(
  11428. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11429. {
  11430. side: {
  11431. height: math.unit(6, "feet"),
  11432. name: "Side",
  11433. image: {
  11434. source: "./media/characters/evander/side.svg",
  11435. extra: 877 / 477
  11436. }
  11437. },
  11438. },
  11439. [
  11440. {
  11441. name: "Normal",
  11442. height: math.unit(0.83, "meters"),
  11443. default: true
  11444. },
  11445. ]
  11446. ))
  11447. characterMakers.push(() => makeCharacter(
  11448. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11449. {
  11450. front: {
  11451. height: math.unit(12, "feet"),
  11452. weight: math.unit(1000, "lb"),
  11453. name: "Front",
  11454. image: {
  11455. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11456. extra: 1762 / 1611
  11457. }
  11458. },
  11459. back: {
  11460. height: math.unit(12, "feet"),
  11461. weight: math.unit(1000, "lb"),
  11462. name: "Back",
  11463. image: {
  11464. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11465. extra: 1762 / 1611
  11466. }
  11467. },
  11468. },
  11469. [
  11470. {
  11471. name: "Normal",
  11472. height: math.unit(12, "feet"),
  11473. default: true
  11474. },
  11475. {
  11476. name: "Kaiju",
  11477. height: math.unit(150, "feet")
  11478. },
  11479. ]
  11480. ))
  11481. characterMakers.push(() => makeCharacter(
  11482. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11483. {
  11484. front: {
  11485. height: math.unit(6, "feet"),
  11486. weight: math.unit(150, "lb"),
  11487. name: "Front",
  11488. image: {
  11489. source: "./media/characters/zero-alurus/front.svg"
  11490. }
  11491. },
  11492. back: {
  11493. height: math.unit(6, "feet"),
  11494. weight: math.unit(150, "lb"),
  11495. name: "Back",
  11496. image: {
  11497. source: "./media/characters/zero-alurus/back.svg"
  11498. }
  11499. },
  11500. },
  11501. [
  11502. {
  11503. name: "Normal",
  11504. height: math.unit(5 + 10 / 12, "feet")
  11505. },
  11506. {
  11507. name: "Macro",
  11508. height: math.unit(60, "feet"),
  11509. default: true
  11510. },
  11511. {
  11512. name: "Macro+",
  11513. height: math.unit(450, "feet")
  11514. },
  11515. ]
  11516. ))
  11517. characterMakers.push(() => makeCharacter(
  11518. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11519. {
  11520. front: {
  11521. height: math.unit(6, "feet"),
  11522. weight: math.unit(200, "lb"),
  11523. name: "Front",
  11524. image: {
  11525. source: "./media/characters/mega-shi/front.svg",
  11526. extra: 1279 / 1250,
  11527. bottom: 0.02
  11528. }
  11529. },
  11530. back: {
  11531. height: math.unit(6, "feet"),
  11532. weight: math.unit(200, "lb"),
  11533. name: "Back",
  11534. image: {
  11535. source: "./media/characters/mega-shi/back.svg",
  11536. extra: 1279 / 1250,
  11537. bottom: 0.02
  11538. }
  11539. },
  11540. },
  11541. [
  11542. {
  11543. name: "Micro",
  11544. height: math.unit(16 + 6 / 12, "feet")
  11545. },
  11546. {
  11547. name: "Third Dimension",
  11548. height: math.unit(40, "meters")
  11549. },
  11550. {
  11551. name: "Normal",
  11552. height: math.unit(660, "feet"),
  11553. default: true
  11554. },
  11555. {
  11556. name: "Megamacro",
  11557. height: math.unit(10, "miles")
  11558. },
  11559. {
  11560. name: "Planetary Launch",
  11561. height: math.unit(500, "miles")
  11562. },
  11563. {
  11564. name: "Interstellar",
  11565. height: math.unit(1e9, "miles")
  11566. },
  11567. {
  11568. name: "Leaving the Universe",
  11569. height: math.unit(1, "gigaparsec")
  11570. },
  11571. {
  11572. name: "Travelling Universes",
  11573. height: math.unit(30e15, "parsecs")
  11574. },
  11575. ]
  11576. ))
  11577. characterMakers.push(() => makeCharacter(
  11578. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11579. {
  11580. front: {
  11581. height: math.unit(5 + 4/12, "feet"),
  11582. weight: math.unit(120, "lb"),
  11583. name: "Front",
  11584. image: {
  11585. source: "./media/characters/odyssey/front.svg",
  11586. extra: 1747/1571,
  11587. bottom: 47/1794
  11588. }
  11589. },
  11590. side: {
  11591. height: math.unit(5.1, "feet"),
  11592. weight: math.unit(120, "lb"),
  11593. name: "Side",
  11594. image: {
  11595. source: "./media/characters/odyssey/side.svg",
  11596. extra: 1847/1619,
  11597. bottom: 47/1894
  11598. }
  11599. },
  11600. lounging: {
  11601. height: math.unit(1.464, "feet"),
  11602. weight: math.unit(120, "lb"),
  11603. name: "Lounging",
  11604. image: {
  11605. source: "./media/characters/odyssey/lounging.svg",
  11606. extra: 1235/837,
  11607. bottom: 551/1786
  11608. }
  11609. },
  11610. },
  11611. [
  11612. {
  11613. name: "Normal",
  11614. height: math.unit(5 + 4 / 12, "feet")
  11615. },
  11616. {
  11617. name: "Macro",
  11618. height: math.unit(1, "km")
  11619. },
  11620. {
  11621. name: "Megamacro",
  11622. height: math.unit(3000, "km")
  11623. },
  11624. {
  11625. name: "Gigamacro",
  11626. height: math.unit(1, "AU"),
  11627. default: true
  11628. },
  11629. {
  11630. name: "Omniversal",
  11631. height: math.unit(100e14, "lightyears")
  11632. },
  11633. ]
  11634. ))
  11635. characterMakers.push(() => makeCharacter(
  11636. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11637. {
  11638. front: {
  11639. height: math.unit(5 + 10/12, "feet"),
  11640. name: "Front",
  11641. image: {
  11642. source: "./media/characters/mekuto/front.svg",
  11643. extra: 875/835,
  11644. bottom: 46/921
  11645. }
  11646. },
  11647. },
  11648. [
  11649. {
  11650. name: "Minimicro",
  11651. height: math.unit(0.2, "inches")
  11652. },
  11653. {
  11654. name: "Micro",
  11655. height: math.unit(1.5, "inches")
  11656. },
  11657. {
  11658. name: "Normal",
  11659. height: math.unit(5 + 10 / 12, "feet"),
  11660. default: true
  11661. },
  11662. {
  11663. name: "Minimacro",
  11664. height: math.unit(17 + 9 / 12, "feet")
  11665. },
  11666. {
  11667. name: "Macro",
  11668. height: math.unit(177.5, "feet")
  11669. },
  11670. {
  11671. name: "Megamacro",
  11672. height: math.unit(152, "miles")
  11673. },
  11674. ]
  11675. ))
  11676. characterMakers.push(() => makeCharacter(
  11677. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11678. {
  11679. front: {
  11680. height: math.unit(6.5, "inches"),
  11681. weight: math.unit(13, "oz"),
  11682. name: "Front",
  11683. image: {
  11684. source: "./media/characters/dafydd-tomos/front.svg",
  11685. extra: 2990 / 2603,
  11686. bottom: 0.03
  11687. }
  11688. },
  11689. },
  11690. [
  11691. {
  11692. name: "Micro",
  11693. height: math.unit(6.5, "inches"),
  11694. default: true
  11695. },
  11696. ]
  11697. ))
  11698. characterMakers.push(() => makeCharacter(
  11699. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11700. {
  11701. front: {
  11702. height: math.unit(6, "feet"),
  11703. weight: math.unit(150, "lb"),
  11704. name: "Front",
  11705. image: {
  11706. source: "./media/characters/splinter/front.svg",
  11707. extra: 2990 / 2882,
  11708. bottom: 0.04
  11709. }
  11710. },
  11711. back: {
  11712. height: math.unit(6, "feet"),
  11713. weight: math.unit(150, "lb"),
  11714. name: "Back",
  11715. image: {
  11716. source: "./media/characters/splinter/back.svg",
  11717. extra: 2990 / 2882,
  11718. bottom: 0.04
  11719. }
  11720. },
  11721. },
  11722. [
  11723. {
  11724. name: "Normal",
  11725. height: math.unit(6, "feet")
  11726. },
  11727. {
  11728. name: "Macro",
  11729. height: math.unit(230, "meters"),
  11730. default: true
  11731. },
  11732. ]
  11733. ))
  11734. characterMakers.push(() => makeCharacter(
  11735. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11736. {
  11737. front: {
  11738. height: math.unit(4 + 10 / 12, "feet"),
  11739. weight: math.unit(480, "lb"),
  11740. name: "Front",
  11741. image: {
  11742. source: "./media/characters/snow-gabumon/front.svg",
  11743. extra: 1140 / 963,
  11744. bottom: 0.058
  11745. }
  11746. },
  11747. back: {
  11748. height: math.unit(4 + 10 / 12, "feet"),
  11749. weight: math.unit(480, "lb"),
  11750. name: "Back",
  11751. image: {
  11752. source: "./media/characters/snow-gabumon/back.svg",
  11753. extra: 1115 / 962,
  11754. bottom: 0.041
  11755. }
  11756. },
  11757. frontUndresed: {
  11758. height: math.unit(4 + 10 / 12, "feet"),
  11759. weight: math.unit(480, "lb"),
  11760. name: "Front (Undressed)",
  11761. image: {
  11762. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11763. extra: 1061 / 960,
  11764. bottom: 0.045
  11765. }
  11766. },
  11767. },
  11768. [
  11769. {
  11770. name: "Micro",
  11771. height: math.unit(1, "inch")
  11772. },
  11773. {
  11774. name: "Normal",
  11775. height: math.unit(4 + 10 / 12, "feet"),
  11776. default: true
  11777. },
  11778. {
  11779. name: "Macro",
  11780. height: math.unit(200, "feet")
  11781. },
  11782. {
  11783. name: "Megamacro",
  11784. height: math.unit(120, "miles")
  11785. },
  11786. {
  11787. name: "Gigamacro",
  11788. height: math.unit(9800, "miles")
  11789. },
  11790. ]
  11791. ))
  11792. characterMakers.push(() => makeCharacter(
  11793. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11794. {
  11795. front: {
  11796. height: math.unit(1.7, "meters"),
  11797. weight: math.unit(140, "lb"),
  11798. name: "Front",
  11799. image: {
  11800. source: "./media/characters/moody/front.svg",
  11801. extra: 3226 / 3007,
  11802. bottom: 0.087
  11803. }
  11804. },
  11805. },
  11806. [
  11807. {
  11808. name: "Micro",
  11809. height: math.unit(1, "mm")
  11810. },
  11811. {
  11812. name: "Normal",
  11813. height: math.unit(1.7, "meters"),
  11814. default: true
  11815. },
  11816. {
  11817. name: "Macro",
  11818. height: math.unit(80, "meters")
  11819. },
  11820. {
  11821. name: "Macro+",
  11822. height: math.unit(500, "meters")
  11823. },
  11824. ]
  11825. ))
  11826. characterMakers.push(() => makeCharacter(
  11827. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11828. {
  11829. front: {
  11830. height: math.unit(6, "feet"),
  11831. weight: math.unit(150, "lb"),
  11832. name: "Front",
  11833. image: {
  11834. source: "./media/characters/zyas/front.svg",
  11835. extra: 1180 / 1120,
  11836. bottom: 0.045
  11837. }
  11838. },
  11839. },
  11840. [
  11841. {
  11842. name: "Normal",
  11843. height: math.unit(10, "feet"),
  11844. default: true
  11845. },
  11846. {
  11847. name: "Macro",
  11848. height: math.unit(500, "feet")
  11849. },
  11850. {
  11851. name: "Megamacro",
  11852. height: math.unit(5, "miles")
  11853. },
  11854. {
  11855. name: "Teramacro",
  11856. height: math.unit(150000, "miles")
  11857. },
  11858. ]
  11859. ))
  11860. characterMakers.push(() => makeCharacter(
  11861. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11862. {
  11863. front: {
  11864. height: math.unit(6, "feet"),
  11865. weight: math.unit(150, "lb"),
  11866. name: "Front",
  11867. image: {
  11868. source: "./media/characters/cuon/front.svg",
  11869. extra: 1390 / 1320,
  11870. bottom: 0.008
  11871. }
  11872. },
  11873. },
  11874. [
  11875. {
  11876. name: "Micro",
  11877. height: math.unit(3, "inches")
  11878. },
  11879. {
  11880. name: "Normal",
  11881. height: math.unit(18 + 9 / 12, "feet"),
  11882. default: true
  11883. },
  11884. {
  11885. name: "Macro",
  11886. height: math.unit(360, "feet")
  11887. },
  11888. {
  11889. name: "Megamacro",
  11890. height: math.unit(360, "miles")
  11891. },
  11892. ]
  11893. ))
  11894. characterMakers.push(() => makeCharacter(
  11895. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11896. {
  11897. front: {
  11898. height: math.unit(2.4, "meters"),
  11899. weight: math.unit(70, "kg"),
  11900. name: "Front",
  11901. image: {
  11902. source: "./media/characters/nyanuxk/front.svg",
  11903. extra: 1172 / 1084,
  11904. bottom: 0.065
  11905. }
  11906. },
  11907. side: {
  11908. height: math.unit(2.4, "meters"),
  11909. weight: math.unit(70, "kg"),
  11910. name: "Side",
  11911. image: {
  11912. source: "./media/characters/nyanuxk/side.svg",
  11913. extra: 1190 / 1132,
  11914. bottom: 0.007
  11915. }
  11916. },
  11917. back: {
  11918. height: math.unit(2.4, "meters"),
  11919. weight: math.unit(70, "kg"),
  11920. name: "Back",
  11921. image: {
  11922. source: "./media/characters/nyanuxk/back.svg",
  11923. extra: 1200 / 1141,
  11924. bottom: 0.015
  11925. }
  11926. },
  11927. foot: {
  11928. height: math.unit(0.52, "meters"),
  11929. name: "Foot",
  11930. image: {
  11931. source: "./media/characters/nyanuxk/foot.svg"
  11932. }
  11933. },
  11934. },
  11935. [
  11936. {
  11937. name: "Micro",
  11938. height: math.unit(2, "cm")
  11939. },
  11940. {
  11941. name: "Normal",
  11942. height: math.unit(2.4, "meters"),
  11943. default: true
  11944. },
  11945. {
  11946. name: "Smaller Macro",
  11947. height: math.unit(120, "meters")
  11948. },
  11949. {
  11950. name: "Bigger Macro",
  11951. height: math.unit(1.2, "km")
  11952. },
  11953. {
  11954. name: "Megamacro",
  11955. height: math.unit(15, "kilometers")
  11956. },
  11957. {
  11958. name: "Gigamacro",
  11959. height: math.unit(2000, "km")
  11960. },
  11961. {
  11962. name: "Teramacro",
  11963. height: math.unit(500000, "km")
  11964. },
  11965. ]
  11966. ))
  11967. characterMakers.push(() => makeCharacter(
  11968. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11969. {
  11970. side: {
  11971. height: math.unit(6, "feet"),
  11972. name: "Side",
  11973. image: {
  11974. source: "./media/characters/ailbhe/side.svg",
  11975. extra: 757 / 464,
  11976. bottom: 0.041
  11977. }
  11978. },
  11979. },
  11980. [
  11981. {
  11982. name: "Normal",
  11983. height: math.unit(1.07, "meters"),
  11984. default: true
  11985. },
  11986. ]
  11987. ))
  11988. characterMakers.push(() => makeCharacter(
  11989. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11990. {
  11991. front: {
  11992. height: math.unit(6, "feet"),
  11993. weight: math.unit(120, "kg"),
  11994. name: "Front",
  11995. image: {
  11996. source: "./media/characters/zevulfius/front.svg",
  11997. extra: 965 / 903
  11998. }
  11999. },
  12000. side: {
  12001. height: math.unit(6, "feet"),
  12002. weight: math.unit(120, "kg"),
  12003. name: "Side",
  12004. image: {
  12005. source: "./media/characters/zevulfius/side.svg",
  12006. extra: 939 / 900
  12007. }
  12008. },
  12009. back: {
  12010. height: math.unit(6, "feet"),
  12011. weight: math.unit(120, "kg"),
  12012. name: "Back",
  12013. image: {
  12014. source: "./media/characters/zevulfius/back.svg",
  12015. extra: 918 / 854,
  12016. bottom: 0.005
  12017. }
  12018. },
  12019. foot: {
  12020. height: math.unit(6 / 3.72, "feet"),
  12021. name: "Foot",
  12022. image: {
  12023. source: "./media/characters/zevulfius/foot.svg"
  12024. }
  12025. },
  12026. },
  12027. [
  12028. {
  12029. name: "Macro",
  12030. height: math.unit(750, "meters")
  12031. },
  12032. {
  12033. name: "Megamacro",
  12034. height: math.unit(20, "km"),
  12035. default: true
  12036. },
  12037. {
  12038. name: "Gigamacro",
  12039. height: math.unit(2000, "km")
  12040. },
  12041. {
  12042. name: "Teramacro",
  12043. height: math.unit(250000, "km")
  12044. },
  12045. ]
  12046. ))
  12047. characterMakers.push(() => makeCharacter(
  12048. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  12049. {
  12050. front: {
  12051. height: math.unit(100, "feet"),
  12052. weight: math.unit(350, "kg"),
  12053. name: "Front",
  12054. image: {
  12055. source: "./media/characters/rikes/front.svg",
  12056. extra: 1565 / 1483,
  12057. bottom: 0.017
  12058. }
  12059. },
  12060. },
  12061. [
  12062. {
  12063. name: "Macro",
  12064. height: math.unit(100, "feet"),
  12065. default: true
  12066. },
  12067. ]
  12068. ))
  12069. characterMakers.push(() => makeCharacter(
  12070. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  12071. {
  12072. front: {
  12073. height: math.unit(8, "feet"),
  12074. weight: math.unit(356, "lb"),
  12075. name: "Front",
  12076. image: {
  12077. source: "./media/characters/adam-silver-mane/front.svg",
  12078. extra: 1036/937,
  12079. bottom: 63/1099
  12080. }
  12081. },
  12082. side: {
  12083. height: math.unit(8, "feet"),
  12084. weight: math.unit(356, "lb"),
  12085. name: "Side",
  12086. image: {
  12087. source: "./media/characters/adam-silver-mane/side.svg",
  12088. extra: 997/901,
  12089. bottom: 59/1056
  12090. }
  12091. },
  12092. frontNsfw: {
  12093. height: math.unit(8, "feet"),
  12094. weight: math.unit(356, "lb"),
  12095. name: "Front (NSFW)",
  12096. image: {
  12097. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  12098. extra: 1036/937,
  12099. bottom: 63/1099
  12100. }
  12101. },
  12102. sideNsfw: {
  12103. height: math.unit(8, "feet"),
  12104. weight: math.unit(356, "lb"),
  12105. name: "Side (NSFW)",
  12106. image: {
  12107. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  12108. extra: 997/901,
  12109. bottom: 59/1056
  12110. }
  12111. },
  12112. dick: {
  12113. height: math.unit(2.1, "feet"),
  12114. name: "Dick",
  12115. image: {
  12116. source: "./media/characters/adam-silver-mane/dick.svg"
  12117. }
  12118. },
  12119. taur: {
  12120. height: math.unit(16, "feet"),
  12121. weight: math.unit(1500, "kg"),
  12122. name: "Taur",
  12123. image: {
  12124. source: "./media/characters/adam-silver-mane/taur.svg",
  12125. extra: 1713 / 1571,
  12126. bottom: 0.01
  12127. }
  12128. },
  12129. },
  12130. [
  12131. {
  12132. name: "Normal",
  12133. height: math.unit(8, "feet")
  12134. },
  12135. {
  12136. name: "Minimacro",
  12137. height: math.unit(80, "feet")
  12138. },
  12139. {
  12140. name: "MDA",
  12141. height: math.unit(80, "meters")
  12142. },
  12143. {
  12144. name: "Macro",
  12145. height: math.unit(800, "feet"),
  12146. default: true
  12147. },
  12148. {
  12149. name: "Megamacro",
  12150. height: math.unit(8000, "feet")
  12151. },
  12152. {
  12153. name: "Gigamacro",
  12154. height: math.unit(800, "miles")
  12155. },
  12156. {
  12157. name: "Teramacro",
  12158. height: math.unit(80000, "miles")
  12159. },
  12160. {
  12161. name: "Celestial",
  12162. height: math.unit(8e6, "miles")
  12163. },
  12164. {
  12165. name: "Star Dragon",
  12166. height: math.unit(800000, "parsecs")
  12167. },
  12168. {
  12169. name: "Godly",
  12170. height: math.unit(800, "teraparsecs")
  12171. },
  12172. ]
  12173. ))
  12174. characterMakers.push(() => makeCharacter(
  12175. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  12176. {
  12177. front: {
  12178. height: math.unit(6, "feet"),
  12179. weight: math.unit(150, "lb"),
  12180. name: "Front",
  12181. image: {
  12182. source: "./media/characters/ky'owin/front.svg",
  12183. extra: 3862/3053,
  12184. bottom: 74/3936
  12185. }
  12186. },
  12187. },
  12188. [
  12189. {
  12190. name: "Normal",
  12191. height: math.unit(6 + 8 / 12, "feet")
  12192. },
  12193. {
  12194. name: "Large",
  12195. height: math.unit(68, "feet")
  12196. },
  12197. {
  12198. name: "Macro",
  12199. height: math.unit(132, "feet")
  12200. },
  12201. {
  12202. name: "Macro+",
  12203. height: math.unit(340, "feet")
  12204. },
  12205. {
  12206. name: "Macro++",
  12207. height: math.unit(680, "feet"),
  12208. default: true
  12209. },
  12210. {
  12211. name: "Megamacro",
  12212. height: math.unit(1, "mile")
  12213. },
  12214. {
  12215. name: "Megamacro+",
  12216. height: math.unit(10, "miles")
  12217. },
  12218. ]
  12219. ))
  12220. characterMakers.push(() => makeCharacter(
  12221. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12222. {
  12223. front: {
  12224. height: math.unit(4, "feet"),
  12225. weight: math.unit(50, "lb"),
  12226. name: "Front",
  12227. image: {
  12228. source: "./media/characters/mal/front.svg",
  12229. extra: 785 / 724,
  12230. bottom: 0.07
  12231. }
  12232. },
  12233. },
  12234. [
  12235. {
  12236. name: "Micro",
  12237. height: math.unit(4, "inches")
  12238. },
  12239. {
  12240. name: "Normal",
  12241. height: math.unit(4, "feet"),
  12242. default: true
  12243. },
  12244. {
  12245. name: "Macro",
  12246. height: math.unit(200, "feet")
  12247. },
  12248. ]
  12249. ))
  12250. characterMakers.push(() => makeCharacter(
  12251. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12252. {
  12253. front: {
  12254. height: math.unit(6, "feet"),
  12255. weight: math.unit(150, "lb"),
  12256. name: "Front",
  12257. image: {
  12258. source: "./media/characters/jordan-deware/front.svg",
  12259. extra: 1191 / 1012
  12260. }
  12261. },
  12262. },
  12263. [
  12264. {
  12265. name: "Nano",
  12266. height: math.unit(0.01, "mm")
  12267. },
  12268. {
  12269. name: "Minimicro",
  12270. height: math.unit(1, "mm")
  12271. },
  12272. {
  12273. name: "Micro",
  12274. height: math.unit(0.5, "inches")
  12275. },
  12276. {
  12277. name: "Normal",
  12278. height: math.unit(4, "feet"),
  12279. default: true
  12280. },
  12281. {
  12282. name: "Minimacro",
  12283. height: math.unit(40, "meters")
  12284. },
  12285. {
  12286. name: "Small Macro",
  12287. height: math.unit(400, "meters")
  12288. },
  12289. {
  12290. name: "Macro",
  12291. height: math.unit(4, "miles")
  12292. },
  12293. {
  12294. name: "Megamacro",
  12295. height: math.unit(40, "miles")
  12296. },
  12297. {
  12298. name: "Megamacro+",
  12299. height: math.unit(400, "miles")
  12300. },
  12301. {
  12302. name: "Gigamacro",
  12303. height: math.unit(400000, "miles")
  12304. },
  12305. ]
  12306. ))
  12307. characterMakers.push(() => makeCharacter(
  12308. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12309. {
  12310. side: {
  12311. height: math.unit(6, "feet"),
  12312. weight: math.unit(150, "lb"),
  12313. name: "Side",
  12314. image: {
  12315. source: "./media/characters/kimiko/side.svg",
  12316. extra: 600 / 358
  12317. }
  12318. },
  12319. },
  12320. [
  12321. {
  12322. name: "Normal",
  12323. height: math.unit(15, "feet"),
  12324. default: true
  12325. },
  12326. {
  12327. name: "Macro",
  12328. height: math.unit(220, "feet")
  12329. },
  12330. {
  12331. name: "Macro+",
  12332. height: math.unit(1450, "feet")
  12333. },
  12334. {
  12335. name: "Megamacro",
  12336. height: math.unit(11500, "feet")
  12337. },
  12338. {
  12339. name: "Gigamacro",
  12340. height: math.unit(9500, "miles")
  12341. },
  12342. {
  12343. name: "Teramacro",
  12344. height: math.unit(2208005005, "miles")
  12345. },
  12346. {
  12347. name: "Examacro",
  12348. height: math.unit(2750, "parsecs")
  12349. },
  12350. {
  12351. name: "Zettamacro",
  12352. height: math.unit(101500, "parsecs")
  12353. },
  12354. ]
  12355. ))
  12356. characterMakers.push(() => makeCharacter(
  12357. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12358. {
  12359. front: {
  12360. height: math.unit(6, "feet"),
  12361. weight: math.unit(70, "kg"),
  12362. name: "Front",
  12363. image: {
  12364. source: "./media/characters/andrew-sleepy/front.svg"
  12365. }
  12366. },
  12367. side: {
  12368. height: math.unit(6, "feet"),
  12369. weight: math.unit(70, "kg"),
  12370. name: "Side",
  12371. image: {
  12372. source: "./media/characters/andrew-sleepy/side.svg"
  12373. }
  12374. },
  12375. },
  12376. [
  12377. {
  12378. name: "Micro",
  12379. height: math.unit(1, "mm"),
  12380. default: true
  12381. },
  12382. ]
  12383. ))
  12384. characterMakers.push(() => makeCharacter(
  12385. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12386. {
  12387. front: {
  12388. height: math.unit(6, "feet"),
  12389. weight: math.unit(150, "lb"),
  12390. name: "Front",
  12391. image: {
  12392. source: "./media/characters/judio/front.svg",
  12393. extra: 1258 / 1110
  12394. }
  12395. },
  12396. },
  12397. [
  12398. {
  12399. name: "Normal",
  12400. height: math.unit(5 + 6 / 12, "feet")
  12401. },
  12402. {
  12403. name: "Macro",
  12404. height: math.unit(1000, "feet"),
  12405. default: true
  12406. },
  12407. {
  12408. name: "Megamacro",
  12409. height: math.unit(10, "miles")
  12410. },
  12411. ]
  12412. ))
  12413. characterMakers.push(() => makeCharacter(
  12414. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12415. {
  12416. frontDressed: {
  12417. height: math.unit(6, "feet"),
  12418. weight: math.unit(68, "kg"),
  12419. name: "Front (Dressed)",
  12420. image: {
  12421. source: "./media/characters/nomaxice/front-dressed.svg",
  12422. extra: 1137/824,
  12423. bottom: 74/1211
  12424. }
  12425. },
  12426. frontShorts: {
  12427. height: math.unit(6, "feet"),
  12428. weight: math.unit(68, "kg"),
  12429. name: "Front (Shorts)",
  12430. image: {
  12431. source: "./media/characters/nomaxice/front-shorts.svg",
  12432. extra: 1137/824,
  12433. bottom: 74/1211
  12434. }
  12435. },
  12436. back: {
  12437. height: math.unit(6, "feet"),
  12438. weight: math.unit(68, "kg"),
  12439. name: "Back",
  12440. image: {
  12441. source: "./media/characters/nomaxice/back.svg",
  12442. extra: 822/786,
  12443. bottom: 39/861
  12444. }
  12445. },
  12446. hand: {
  12447. height: math.unit(0.565, "feet"),
  12448. name: "Hand",
  12449. image: {
  12450. source: "./media/characters/nomaxice/hand.svg"
  12451. }
  12452. },
  12453. foot: {
  12454. height: math.unit(1, "feet"),
  12455. name: "Foot",
  12456. image: {
  12457. source: "./media/characters/nomaxice/foot.svg"
  12458. }
  12459. },
  12460. },
  12461. [
  12462. {
  12463. name: "Micro",
  12464. height: math.unit(8, "cm")
  12465. },
  12466. {
  12467. name: "Norm",
  12468. height: math.unit(1.82, "m")
  12469. },
  12470. {
  12471. name: "Norm+",
  12472. height: math.unit(8.8, "feet"),
  12473. default: true
  12474. },
  12475. {
  12476. name: "Big",
  12477. height: math.unit(8, "meters")
  12478. },
  12479. {
  12480. name: "Macro",
  12481. height: math.unit(18, "meters")
  12482. },
  12483. {
  12484. name: "Macro+",
  12485. height: math.unit(88, "meters")
  12486. },
  12487. ]
  12488. ))
  12489. characterMakers.push(() => makeCharacter(
  12490. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12491. {
  12492. front: {
  12493. height: math.unit(12, "feet"),
  12494. weight: math.unit(1.5, "tons"),
  12495. name: "Front",
  12496. image: {
  12497. source: "./media/characters/dydros/front.svg",
  12498. extra: 863 / 800,
  12499. bottom: 0.015
  12500. }
  12501. },
  12502. back: {
  12503. height: math.unit(12, "feet"),
  12504. weight: math.unit(1.5, "tons"),
  12505. name: "Back",
  12506. image: {
  12507. source: "./media/characters/dydros/back.svg",
  12508. extra: 900 / 843,
  12509. bottom: 0.005
  12510. }
  12511. },
  12512. },
  12513. [
  12514. {
  12515. name: "Normal",
  12516. height: math.unit(12, "feet"),
  12517. default: true
  12518. },
  12519. ]
  12520. ))
  12521. characterMakers.push(() => makeCharacter(
  12522. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12523. {
  12524. front: {
  12525. height: math.unit(6, "feet"),
  12526. weight: math.unit(100, "kg"),
  12527. name: "Front",
  12528. image: {
  12529. source: "./media/characters/riggi/front.svg",
  12530. extra: 5787 / 5303
  12531. }
  12532. },
  12533. hyper: {
  12534. height: math.unit(6 * 5 / 3, "feet"),
  12535. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12536. name: "Hyper",
  12537. image: {
  12538. source: "./media/characters/riggi/hyper.svg",
  12539. extra: 3595 / 3485
  12540. }
  12541. },
  12542. },
  12543. [
  12544. {
  12545. name: "Small Macro",
  12546. height: math.unit(50, "feet")
  12547. },
  12548. {
  12549. name: "Default",
  12550. height: math.unit(200, "feet"),
  12551. default: true
  12552. },
  12553. {
  12554. name: "Loom",
  12555. height: math.unit(10000, "feet")
  12556. },
  12557. {
  12558. name: "Cruising Altitude",
  12559. height: math.unit(30000, "feet")
  12560. },
  12561. {
  12562. name: "Megamacro",
  12563. height: math.unit(100, "miles")
  12564. },
  12565. {
  12566. name: "Continent Sized",
  12567. height: math.unit(2800, "miles")
  12568. },
  12569. {
  12570. name: "Earth Sized",
  12571. height: math.unit(8000, "miles")
  12572. },
  12573. ]
  12574. ))
  12575. characterMakers.push(() => makeCharacter(
  12576. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12577. {
  12578. front: {
  12579. height: math.unit(6, "feet"),
  12580. weight: math.unit(250, "lb"),
  12581. name: "Front",
  12582. image: {
  12583. source: "./media/characters/alexi/front.svg",
  12584. extra: 3483 / 3291,
  12585. bottom: 0.04
  12586. }
  12587. },
  12588. back: {
  12589. height: math.unit(6, "feet"),
  12590. weight: math.unit(250, "lb"),
  12591. name: "Back",
  12592. image: {
  12593. source: "./media/characters/alexi/back.svg",
  12594. extra: 3533 / 3356,
  12595. bottom: 0.021
  12596. }
  12597. },
  12598. frontTransforming: {
  12599. height: math.unit(8.58, "feet"),
  12600. weight: math.unit(1300, "lb"),
  12601. name: "Transforming",
  12602. image: {
  12603. source: "./media/characters/alexi/front-transforming.svg",
  12604. extra: 437 / 409,
  12605. bottom: 19 / 458.66
  12606. }
  12607. },
  12608. frontTransformed: {
  12609. height: math.unit(12.5, "feet"),
  12610. weight: math.unit(4000, "lb"),
  12611. name: "Transformed",
  12612. image: {
  12613. source: "./media/characters/alexi/front-transformed.svg",
  12614. extra: 639 / 614,
  12615. bottom: 30.55 / 671
  12616. }
  12617. },
  12618. },
  12619. [
  12620. {
  12621. name: "Normal",
  12622. height: math.unit(14, "feet"),
  12623. default: true
  12624. },
  12625. {
  12626. name: "Minimacro",
  12627. height: math.unit(30, "meters")
  12628. },
  12629. {
  12630. name: "Macro",
  12631. height: math.unit(500, "meters")
  12632. },
  12633. {
  12634. name: "Megamacro",
  12635. height: math.unit(9000, "km")
  12636. },
  12637. {
  12638. name: "Teramacro",
  12639. height: math.unit(384000, "km")
  12640. },
  12641. ]
  12642. ))
  12643. characterMakers.push(() => makeCharacter(
  12644. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12645. {
  12646. front: {
  12647. height: math.unit(6, "feet"),
  12648. weight: math.unit(150, "lb"),
  12649. name: "Front",
  12650. image: {
  12651. source: "./media/characters/kayroo/front.svg",
  12652. extra: 1153 / 1038,
  12653. bottom: 0.06
  12654. }
  12655. },
  12656. foot: {
  12657. height: math.unit(6, "feet"),
  12658. weight: math.unit(150, "lb"),
  12659. name: "Foot",
  12660. image: {
  12661. source: "./media/characters/kayroo/foot.svg"
  12662. }
  12663. },
  12664. },
  12665. [
  12666. {
  12667. name: "Normal",
  12668. height: math.unit(8, "feet"),
  12669. default: true
  12670. },
  12671. {
  12672. name: "Minimacro",
  12673. height: math.unit(250, "feet")
  12674. },
  12675. {
  12676. name: "Macro",
  12677. height: math.unit(2800, "feet")
  12678. },
  12679. {
  12680. name: "Megamacro",
  12681. height: math.unit(5200, "feet")
  12682. },
  12683. {
  12684. name: "Gigamacro",
  12685. height: math.unit(27000, "feet")
  12686. },
  12687. {
  12688. name: "Omega",
  12689. height: math.unit(45000, "feet")
  12690. },
  12691. ]
  12692. ))
  12693. characterMakers.push(() => makeCharacter(
  12694. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12695. {
  12696. front: {
  12697. height: math.unit(18, "feet"),
  12698. weight: math.unit(5800, "lb"),
  12699. name: "Front",
  12700. image: {
  12701. source: "./media/characters/rhys/front.svg",
  12702. extra: 3386 / 3090,
  12703. bottom: 0.07
  12704. }
  12705. },
  12706. },
  12707. [
  12708. {
  12709. name: "Normal",
  12710. height: math.unit(18, "feet"),
  12711. default: true
  12712. },
  12713. {
  12714. name: "Working Size",
  12715. height: math.unit(200, "feet")
  12716. },
  12717. {
  12718. name: "Demolition Size",
  12719. height: math.unit(2000, "feet")
  12720. },
  12721. {
  12722. name: "Maximum Licensed Size",
  12723. height: math.unit(5, "miles")
  12724. },
  12725. {
  12726. name: "Maximum Observed Size",
  12727. height: math.unit(10, "yottameters")
  12728. },
  12729. ]
  12730. ))
  12731. characterMakers.push(() => makeCharacter(
  12732. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12733. {
  12734. front: {
  12735. height: math.unit(6, "feet"),
  12736. weight: math.unit(250, "lb"),
  12737. name: "Front",
  12738. image: {
  12739. source: "./media/characters/toto/front.svg",
  12740. extra: 527 / 479,
  12741. bottom: 0.05
  12742. }
  12743. },
  12744. },
  12745. [
  12746. {
  12747. name: "Micro",
  12748. height: math.unit(3, "feet")
  12749. },
  12750. {
  12751. name: "Normal",
  12752. height: math.unit(10, "feet")
  12753. },
  12754. {
  12755. name: "Macro",
  12756. height: math.unit(150, "feet"),
  12757. default: true
  12758. },
  12759. {
  12760. name: "Megamacro",
  12761. height: math.unit(1200, "feet")
  12762. },
  12763. ]
  12764. ))
  12765. characterMakers.push(() => makeCharacter(
  12766. { name: "King", species: ["lion"], tags: ["anthro"] },
  12767. {
  12768. back: {
  12769. height: math.unit(6, "feet"),
  12770. weight: math.unit(150, "lb"),
  12771. name: "Back",
  12772. image: {
  12773. source: "./media/characters/king/back.svg"
  12774. }
  12775. },
  12776. },
  12777. [
  12778. {
  12779. name: "Micro",
  12780. height: math.unit(2, "inches")
  12781. },
  12782. {
  12783. name: "Normal",
  12784. height: math.unit(8, "feet")
  12785. },
  12786. {
  12787. name: "Macro",
  12788. height: math.unit(200, "feet"),
  12789. default: true
  12790. },
  12791. {
  12792. name: "Megamacro",
  12793. height: math.unit(50, "miles")
  12794. },
  12795. ]
  12796. ))
  12797. characterMakers.push(() => makeCharacter(
  12798. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12799. {
  12800. front: {
  12801. height: math.unit(11, "feet"),
  12802. weight: math.unit(1400, "lb"),
  12803. name: "Front",
  12804. image: {
  12805. source: "./media/characters/cordite/front.svg",
  12806. extra: 1919/1827,
  12807. bottom: 40/1959
  12808. }
  12809. },
  12810. side: {
  12811. height: math.unit(11, "feet"),
  12812. weight: math.unit(1400, "lb"),
  12813. name: "Side",
  12814. image: {
  12815. source: "./media/characters/cordite/side.svg",
  12816. extra: 1908/1793,
  12817. bottom: 38/1946
  12818. }
  12819. },
  12820. back: {
  12821. height: math.unit(11, "feet"),
  12822. weight: math.unit(1400, "lb"),
  12823. name: "Back",
  12824. image: {
  12825. source: "./media/characters/cordite/back.svg",
  12826. extra: 1938/1837,
  12827. bottom: 10/1948
  12828. }
  12829. },
  12830. feral: {
  12831. height: math.unit(2, "feet"),
  12832. weight: math.unit(90, "lb"),
  12833. name: "Feral",
  12834. image: {
  12835. source: "./media/characters/cordite/feral.svg",
  12836. extra: 1260 / 755,
  12837. bottom: 0.05
  12838. }
  12839. },
  12840. },
  12841. [
  12842. {
  12843. name: "Normal",
  12844. height: math.unit(11, "feet"),
  12845. default: true
  12846. },
  12847. ]
  12848. ))
  12849. characterMakers.push(() => makeCharacter(
  12850. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12851. {
  12852. front: {
  12853. height: math.unit(6, "feet"),
  12854. weight: math.unit(150, "lb"),
  12855. name: "Front",
  12856. image: {
  12857. source: "./media/characters/pianostrong/front.svg",
  12858. extra: 6577 / 6254,
  12859. bottom: 0.02
  12860. }
  12861. },
  12862. side: {
  12863. height: math.unit(6, "feet"),
  12864. weight: math.unit(150, "lb"),
  12865. name: "Side",
  12866. image: {
  12867. source: "./media/characters/pianostrong/side.svg",
  12868. extra: 6106 / 5730
  12869. }
  12870. },
  12871. back: {
  12872. height: math.unit(6, "feet"),
  12873. weight: math.unit(150, "lb"),
  12874. name: "Back",
  12875. image: {
  12876. source: "./media/characters/pianostrong/back.svg",
  12877. extra: 6085 / 5733,
  12878. bottom: 0.01
  12879. }
  12880. },
  12881. },
  12882. [
  12883. {
  12884. name: "Macro",
  12885. height: math.unit(100, "feet")
  12886. },
  12887. {
  12888. name: "Macro+",
  12889. height: math.unit(300, "feet"),
  12890. default: true
  12891. },
  12892. {
  12893. name: "Macro++",
  12894. height: math.unit(1000, "feet")
  12895. },
  12896. ]
  12897. ))
  12898. characterMakers.push(() => makeCharacter(
  12899. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12900. {
  12901. front: {
  12902. height: math.unit(6, "feet"),
  12903. weight: math.unit(150, "lb"),
  12904. name: "Front",
  12905. image: {
  12906. source: "./media/characters/kona/front.svg",
  12907. extra: 2960 / 2629,
  12908. bottom: 0.005
  12909. }
  12910. },
  12911. },
  12912. [
  12913. {
  12914. name: "Normal",
  12915. height: math.unit(11 + 8 / 12, "feet")
  12916. },
  12917. {
  12918. name: "Macro",
  12919. height: math.unit(850, "feet"),
  12920. default: true
  12921. },
  12922. {
  12923. name: "Macro+",
  12924. height: math.unit(1.5, "km"),
  12925. default: true
  12926. },
  12927. {
  12928. name: "Megamacro",
  12929. height: math.unit(80, "miles")
  12930. },
  12931. {
  12932. name: "Gigamacro",
  12933. height: math.unit(3500, "miles")
  12934. },
  12935. ]
  12936. ))
  12937. characterMakers.push(() => makeCharacter(
  12938. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12939. {
  12940. side: {
  12941. height: math.unit(1.9, "meters"),
  12942. weight: math.unit(326, "kg"),
  12943. name: "Side",
  12944. image: {
  12945. source: "./media/characters/levi/side.svg",
  12946. extra: 1704 / 1334,
  12947. bottom: 0.02
  12948. }
  12949. },
  12950. },
  12951. [
  12952. {
  12953. name: "Normal",
  12954. height: math.unit(1.9, "meters"),
  12955. default: true
  12956. },
  12957. {
  12958. name: "Macro",
  12959. height: math.unit(20, "meters")
  12960. },
  12961. {
  12962. name: "Macro+",
  12963. height: math.unit(200, "meters")
  12964. },
  12965. {
  12966. name: "Megamacro",
  12967. height: math.unit(2, "km")
  12968. },
  12969. {
  12970. name: "Megamacro+",
  12971. height: math.unit(20, "km")
  12972. },
  12973. {
  12974. name: "Gigamacro",
  12975. height: math.unit(2500, "km")
  12976. },
  12977. {
  12978. name: "Gigamacro+",
  12979. height: math.unit(120000, "km")
  12980. },
  12981. {
  12982. name: "Teramacro",
  12983. height: math.unit(7.77e6, "km")
  12984. },
  12985. ]
  12986. ))
  12987. characterMakers.push(() => makeCharacter(
  12988. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12989. {
  12990. front: {
  12991. height: math.unit(6 + 4/12, "feet"),
  12992. weight: math.unit(190, "lb"),
  12993. name: "Front",
  12994. image: {
  12995. source: "./media/characters/bmc/front.svg",
  12996. extra: 1626/1472,
  12997. bottom: 79/1705
  12998. }
  12999. },
  13000. back: {
  13001. height: math.unit(6 + 4/12, "feet"),
  13002. weight: math.unit(190, "lb"),
  13003. name: "Back",
  13004. image: {
  13005. source: "./media/characters/bmc/back.svg",
  13006. extra: 1640/1479,
  13007. bottom: 45/1685
  13008. }
  13009. },
  13010. frontArmor: {
  13011. height: math.unit(6 + 4/12, "feet"),
  13012. weight: math.unit(190, "lb"),
  13013. name: "Front-armor",
  13014. image: {
  13015. source: "./media/characters/bmc/front-armor.svg",
  13016. extra: 1538/1468,
  13017. bottom: 79/1617
  13018. }
  13019. },
  13020. },
  13021. [
  13022. {
  13023. name: "Human-sized",
  13024. height: math.unit(6 + 4 / 12, "feet")
  13025. },
  13026. {
  13027. name: "Interactive Size",
  13028. height: math.unit(25, "feet")
  13029. },
  13030. {
  13031. name: "Small",
  13032. height: math.unit(250, "feet")
  13033. },
  13034. {
  13035. name: "Normal",
  13036. height: math.unit(1250, "feet"),
  13037. default: true
  13038. },
  13039. {
  13040. name: "Good Day",
  13041. height: math.unit(88, "miles")
  13042. },
  13043. {
  13044. name: "Largest Measured Size",
  13045. height: math.unit(105.960, "galaxies")
  13046. },
  13047. ]
  13048. ))
  13049. characterMakers.push(() => makeCharacter(
  13050. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  13051. {
  13052. front: {
  13053. height: math.unit(20, "feet"),
  13054. weight: math.unit(2016, "kg"),
  13055. name: "Front",
  13056. image: {
  13057. source: "./media/characters/sven-the-kaiju/front.svg",
  13058. extra: 1277/1250,
  13059. bottom: 35/1312
  13060. }
  13061. },
  13062. mouth: {
  13063. height: math.unit(1.85, "feet"),
  13064. name: "Mouth",
  13065. image: {
  13066. source: "./media/characters/sven-the-kaiju/mouth.svg"
  13067. }
  13068. },
  13069. },
  13070. [
  13071. {
  13072. name: "Fairy",
  13073. height: math.unit(6, "inches")
  13074. },
  13075. {
  13076. name: "Normal",
  13077. height: math.unit(20, "feet"),
  13078. default: true
  13079. },
  13080. {
  13081. name: "Rampage",
  13082. height: math.unit(200, "feet")
  13083. },
  13084. {
  13085. name: "Archfey Forest Guardian",
  13086. height: math.unit(1, "mile")
  13087. },
  13088. ]
  13089. ))
  13090. characterMakers.push(() => makeCharacter(
  13091. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  13092. {
  13093. front: {
  13094. height: math.unit(4, "meters"),
  13095. weight: math.unit(2, "tons"),
  13096. name: "Front",
  13097. image: {
  13098. source: "./media/characters/marik/front.svg",
  13099. extra: 1057 / 1003,
  13100. bottom: 0.08
  13101. }
  13102. },
  13103. },
  13104. [
  13105. {
  13106. name: "Normal",
  13107. height: math.unit(4, "meters"),
  13108. default: true
  13109. },
  13110. {
  13111. name: "Macro",
  13112. height: math.unit(20, "meters")
  13113. },
  13114. {
  13115. name: "Megamacro",
  13116. height: math.unit(50, "km")
  13117. },
  13118. {
  13119. name: "Gigamacro",
  13120. height: math.unit(100, "km")
  13121. },
  13122. {
  13123. name: "Alpha Macro",
  13124. height: math.unit(7.88e7, "yottameters")
  13125. },
  13126. ]
  13127. ))
  13128. characterMakers.push(() => makeCharacter(
  13129. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  13130. {
  13131. front: {
  13132. height: math.unit(6, "feet"),
  13133. weight: math.unit(110, "lb"),
  13134. name: "Front",
  13135. image: {
  13136. source: "./media/characters/mel/front.svg",
  13137. extra: 736 / 617,
  13138. bottom: 0.017
  13139. }
  13140. },
  13141. },
  13142. [
  13143. {
  13144. name: "Pico",
  13145. height: math.unit(3, "pm")
  13146. },
  13147. {
  13148. name: "Nano",
  13149. height: math.unit(3, "nm")
  13150. },
  13151. {
  13152. name: "Micro",
  13153. height: math.unit(0.3, "mm"),
  13154. default: true
  13155. },
  13156. {
  13157. name: "Micro+",
  13158. height: math.unit(3, "mm")
  13159. },
  13160. {
  13161. name: "Normal",
  13162. height: math.unit(5 + 10.5 / 12, "feet")
  13163. },
  13164. ]
  13165. ))
  13166. characterMakers.push(() => makeCharacter(
  13167. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  13168. {
  13169. kaiju: {
  13170. height: math.unit(1.75, "meters"),
  13171. weight: math.unit(55, "kg"),
  13172. name: "Kaiju",
  13173. image: {
  13174. source: "./media/characters/lykonous/kaiju.svg",
  13175. extra: 1055 / 946,
  13176. bottom: 0.135
  13177. }
  13178. },
  13179. },
  13180. [
  13181. {
  13182. name: "Normal",
  13183. height: math.unit(2.5, "meters"),
  13184. default: true
  13185. },
  13186. {
  13187. name: "Kaiju Dragon",
  13188. height: math.unit(60, "meters")
  13189. },
  13190. {
  13191. name: "Mega Kaiju",
  13192. height: math.unit(120, "km")
  13193. },
  13194. {
  13195. name: "Giga Kaiju",
  13196. height: math.unit(200, "megameters")
  13197. },
  13198. {
  13199. name: "Terra Kaiju",
  13200. height: math.unit(400, "gigameters")
  13201. },
  13202. {
  13203. name: "Kaiju Dragon God",
  13204. height: math.unit(13000, "exaparsecs")
  13205. },
  13206. ]
  13207. ))
  13208. characterMakers.push(() => makeCharacter(
  13209. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  13210. {
  13211. front: {
  13212. height: math.unit(6, "feet"),
  13213. weight: math.unit(150, "lb"),
  13214. name: "Front",
  13215. image: {
  13216. source: "./media/characters/blü/front.svg",
  13217. extra: 1883 / 1564,
  13218. bottom: 0.031
  13219. }
  13220. },
  13221. },
  13222. [
  13223. {
  13224. name: "Normal",
  13225. height: math.unit(13, "feet"),
  13226. default: true
  13227. },
  13228. {
  13229. name: "Big Boi",
  13230. height: math.unit(150, "meters")
  13231. },
  13232. {
  13233. name: "Mini Stomper",
  13234. height: math.unit(300, "meters")
  13235. },
  13236. {
  13237. name: "Macro",
  13238. height: math.unit(1000, "meters")
  13239. },
  13240. {
  13241. name: "Megamacro",
  13242. height: math.unit(11000, "meters")
  13243. },
  13244. {
  13245. name: "Gigamacro",
  13246. height: math.unit(11000, "km")
  13247. },
  13248. {
  13249. name: "Teramacro",
  13250. height: math.unit(420000, "km")
  13251. },
  13252. {
  13253. name: "Examacro",
  13254. height: math.unit(120, "parsecs")
  13255. },
  13256. {
  13257. name: "God Tho",
  13258. height: math.unit(98000000000, "parsecs")
  13259. },
  13260. ]
  13261. ))
  13262. characterMakers.push(() => makeCharacter(
  13263. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13264. {
  13265. taurFront: {
  13266. height: math.unit(6, "feet"),
  13267. weight: math.unit(200, "lb"),
  13268. name: "Taur (Front)",
  13269. image: {
  13270. source: "./media/characters/scales/taur-front.svg",
  13271. extra: 1,
  13272. bottom: 0.05
  13273. }
  13274. },
  13275. taurBack: {
  13276. height: math.unit(6, "feet"),
  13277. weight: math.unit(200, "lb"),
  13278. name: "Taur (Back)",
  13279. image: {
  13280. source: "./media/characters/scales/taur-back.svg",
  13281. extra: 1,
  13282. bottom: 0.08
  13283. }
  13284. },
  13285. anthro: {
  13286. height: math.unit(6 * 7 / 12, "feet"),
  13287. weight: math.unit(100, "lb"),
  13288. name: "Anthro",
  13289. image: {
  13290. source: "./media/characters/scales/anthro.svg",
  13291. extra: 1,
  13292. bottom: 0.06
  13293. }
  13294. },
  13295. },
  13296. [
  13297. {
  13298. name: "Normal",
  13299. height: math.unit(12, "feet"),
  13300. default: true
  13301. },
  13302. ]
  13303. ))
  13304. characterMakers.push(() => makeCharacter(
  13305. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13306. {
  13307. front: {
  13308. height: math.unit(6, "feet"),
  13309. weight: math.unit(150, "lb"),
  13310. name: "Front",
  13311. image: {
  13312. source: "./media/characters/koragos/front.svg",
  13313. extra: 841 / 794,
  13314. bottom: 0.035
  13315. }
  13316. },
  13317. back: {
  13318. height: math.unit(6, "feet"),
  13319. weight: math.unit(150, "lb"),
  13320. name: "Back",
  13321. image: {
  13322. source: "./media/characters/koragos/back.svg",
  13323. extra: 841 / 810,
  13324. bottom: 0.022
  13325. }
  13326. },
  13327. },
  13328. [
  13329. {
  13330. name: "Normal",
  13331. height: math.unit(6 + 11 / 12, "feet"),
  13332. default: true
  13333. },
  13334. {
  13335. name: "Macro",
  13336. height: math.unit(490, "feet")
  13337. },
  13338. {
  13339. name: "Megamacro",
  13340. height: math.unit(10, "miles")
  13341. },
  13342. {
  13343. name: "Gigamacro",
  13344. height: math.unit(50, "miles")
  13345. },
  13346. ]
  13347. ))
  13348. characterMakers.push(() => makeCharacter(
  13349. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13350. {
  13351. front: {
  13352. height: math.unit(6, "feet"),
  13353. weight: math.unit(250, "lb"),
  13354. name: "Front",
  13355. image: {
  13356. source: "./media/characters/xylrem/front.svg",
  13357. extra: 3323 / 3050,
  13358. bottom: 0.065
  13359. }
  13360. },
  13361. },
  13362. [
  13363. {
  13364. name: "Micro",
  13365. height: math.unit(4, "feet")
  13366. },
  13367. {
  13368. name: "Normal",
  13369. height: math.unit(16, "feet"),
  13370. default: true
  13371. },
  13372. {
  13373. name: "Macro",
  13374. height: math.unit(2720, "feet")
  13375. },
  13376. {
  13377. name: "Megamacro",
  13378. height: math.unit(25000, "miles")
  13379. },
  13380. ]
  13381. ))
  13382. characterMakers.push(() => makeCharacter(
  13383. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13384. {
  13385. front: {
  13386. height: math.unit(8, "feet"),
  13387. weight: math.unit(250, "kg"),
  13388. name: "Front",
  13389. image: {
  13390. source: "./media/characters/ikideru/front.svg",
  13391. extra: 930 / 870,
  13392. bottom: 0.087
  13393. }
  13394. },
  13395. back: {
  13396. height: math.unit(8, "feet"),
  13397. weight: math.unit(250, "kg"),
  13398. name: "Back",
  13399. image: {
  13400. source: "./media/characters/ikideru/back.svg",
  13401. extra: 919 / 852,
  13402. bottom: 0.055
  13403. }
  13404. },
  13405. },
  13406. [
  13407. {
  13408. name: "Rare",
  13409. height: math.unit(8, "feet"),
  13410. default: true
  13411. },
  13412. {
  13413. name: "Playful Loom",
  13414. height: math.unit(80, "feet")
  13415. },
  13416. {
  13417. name: "City Leaner",
  13418. height: math.unit(230, "feet")
  13419. },
  13420. {
  13421. name: "Megamacro",
  13422. height: math.unit(2500, "feet")
  13423. },
  13424. {
  13425. name: "Gigamacro",
  13426. height: math.unit(26400, "feet")
  13427. },
  13428. {
  13429. name: "Tectonic Shifter",
  13430. height: math.unit(1.7, "megameters")
  13431. },
  13432. {
  13433. name: "Planet Carer",
  13434. height: math.unit(21, "megameters")
  13435. },
  13436. {
  13437. name: "God",
  13438. height: math.unit(11157.22, "parsecs")
  13439. },
  13440. ]
  13441. ))
  13442. characterMakers.push(() => makeCharacter(
  13443. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13444. {
  13445. front: {
  13446. height: math.unit(6, "feet"),
  13447. weight: math.unit(120, "lb"),
  13448. name: "Front",
  13449. image: {
  13450. source: "./media/characters/neo/front.svg"
  13451. }
  13452. },
  13453. },
  13454. [
  13455. {
  13456. name: "Micro",
  13457. height: math.unit(2, "inches"),
  13458. default: true
  13459. },
  13460. {
  13461. name: "Human Size",
  13462. height: math.unit(5 + 8 / 12, "feet")
  13463. },
  13464. ]
  13465. ))
  13466. characterMakers.push(() => makeCharacter(
  13467. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13468. {
  13469. front: {
  13470. height: math.unit(13 + 10 / 12, "feet"),
  13471. weight: math.unit(5320, "lb"),
  13472. name: "Front",
  13473. image: {
  13474. source: "./media/characters/chauncey-chantz/front.svg",
  13475. extra: 1587 / 1435,
  13476. bottom: 0.02
  13477. }
  13478. },
  13479. },
  13480. [
  13481. {
  13482. name: "Normal",
  13483. height: math.unit(13 + 10 / 12, "feet"),
  13484. default: true
  13485. },
  13486. {
  13487. name: "Macro",
  13488. height: math.unit(45, "feet")
  13489. },
  13490. {
  13491. name: "Megamacro",
  13492. height: math.unit(250, "miles")
  13493. },
  13494. {
  13495. name: "Planetary",
  13496. height: math.unit(10000, "miles")
  13497. },
  13498. {
  13499. name: "Galactic",
  13500. height: math.unit(40000, "parsecs")
  13501. },
  13502. {
  13503. name: "Universal",
  13504. height: math.unit(1, "yottameter")
  13505. },
  13506. ]
  13507. ))
  13508. characterMakers.push(() => makeCharacter(
  13509. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13510. {
  13511. front: {
  13512. height: math.unit(6, "feet"),
  13513. weight: math.unit(150, "lb"),
  13514. name: "Front",
  13515. image: {
  13516. source: "./media/characters/epifox/front.svg",
  13517. extra: 1,
  13518. bottom: 0.075
  13519. }
  13520. },
  13521. },
  13522. [
  13523. {
  13524. name: "Micro",
  13525. height: math.unit(6, "inches")
  13526. },
  13527. {
  13528. name: "Normal",
  13529. height: math.unit(12, "feet"),
  13530. default: true
  13531. },
  13532. {
  13533. name: "Macro",
  13534. height: math.unit(3810, "feet")
  13535. },
  13536. {
  13537. name: "Megamacro",
  13538. height: math.unit(500, "miles")
  13539. },
  13540. ]
  13541. ))
  13542. characterMakers.push(() => makeCharacter(
  13543. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13544. {
  13545. front: {
  13546. height: math.unit(1.8796, "m"),
  13547. weight: math.unit(230, "lb"),
  13548. name: "Front",
  13549. image: {
  13550. source: "./media/characters/colin-t/front.svg",
  13551. extra: 1272 / 1193,
  13552. bottom: 0.07
  13553. }
  13554. },
  13555. },
  13556. [
  13557. {
  13558. name: "Micro",
  13559. height: math.unit(0.571, "meters")
  13560. },
  13561. {
  13562. name: "Normal",
  13563. height: math.unit(1.8796, "meters"),
  13564. default: true
  13565. },
  13566. {
  13567. name: "Tall",
  13568. height: math.unit(4, "meters")
  13569. },
  13570. {
  13571. name: "Macro",
  13572. height: math.unit(67.241, "meters")
  13573. },
  13574. {
  13575. name: "Megamacro",
  13576. height: math.unit(371.856, "meters")
  13577. },
  13578. {
  13579. name: "Planetary",
  13580. height: math.unit(12631.5689, "km")
  13581. },
  13582. ]
  13583. ))
  13584. characterMakers.push(() => makeCharacter(
  13585. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13586. {
  13587. front: {
  13588. height: math.unit(1.85, "meters"),
  13589. weight: math.unit(80, "kg"),
  13590. name: "Front",
  13591. image: {
  13592. source: "./media/characters/matvei/front.svg",
  13593. extra: 456/447,
  13594. bottom: 8/464
  13595. }
  13596. },
  13597. back: {
  13598. height: math.unit(1.85, "meters"),
  13599. weight: math.unit(80, "kg"),
  13600. name: "Back",
  13601. image: {
  13602. source: "./media/characters/matvei/back.svg",
  13603. extra: 434/427,
  13604. bottom: 11/445
  13605. }
  13606. },
  13607. },
  13608. [
  13609. {
  13610. name: "Normal",
  13611. height: math.unit(1.85, "meters"),
  13612. default: true
  13613. },
  13614. ]
  13615. ))
  13616. characterMakers.push(() => makeCharacter(
  13617. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13618. {
  13619. front: {
  13620. height: math.unit(5 + 9 / 12, "feet"),
  13621. weight: math.unit(70, "lb"),
  13622. name: "Front",
  13623. image: {
  13624. source: "./media/characters/quincy/front.svg",
  13625. extra: 3041 / 2751
  13626. }
  13627. },
  13628. back: {
  13629. height: math.unit(5 + 9 / 12, "feet"),
  13630. weight: math.unit(70, "lb"),
  13631. name: "Back",
  13632. image: {
  13633. source: "./media/characters/quincy/back.svg",
  13634. extra: 3041 / 2751
  13635. }
  13636. },
  13637. flying: {
  13638. height: math.unit(5 + 4 / 12, "feet"),
  13639. weight: math.unit(70, "lb"),
  13640. name: "Flying",
  13641. image: {
  13642. source: "./media/characters/quincy/flying.svg",
  13643. extra: 1044 / 930
  13644. }
  13645. },
  13646. },
  13647. [
  13648. {
  13649. name: "Micro",
  13650. height: math.unit(3, "cm")
  13651. },
  13652. {
  13653. name: "Normal",
  13654. height: math.unit(5 + 9 / 12, "feet")
  13655. },
  13656. {
  13657. name: "Macro",
  13658. height: math.unit(200, "meters"),
  13659. default: true
  13660. },
  13661. {
  13662. name: "Megamacro",
  13663. height: math.unit(1000, "meters")
  13664. },
  13665. ]
  13666. ))
  13667. characterMakers.push(() => makeCharacter(
  13668. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13669. {
  13670. front: {
  13671. height: math.unit(3 + 11/12, "feet"),
  13672. weight: math.unit(50, "lb"),
  13673. name: "Front",
  13674. image: {
  13675. source: "./media/characters/vanrel/front.svg",
  13676. extra: 1104/949,
  13677. bottom: 52/1156
  13678. }
  13679. },
  13680. back: {
  13681. height: math.unit(3 + 11/12, "feet"),
  13682. weight: math.unit(50, "lb"),
  13683. name: "Back",
  13684. image: {
  13685. source: "./media/characters/vanrel/back.svg",
  13686. extra: 1119/976,
  13687. bottom: 37/1156
  13688. }
  13689. },
  13690. tome: {
  13691. height: math.unit(1.35, "feet"),
  13692. weight: math.unit(10, "lb"),
  13693. name: "Vanrel's Tome",
  13694. rename: true,
  13695. image: {
  13696. source: "./media/characters/vanrel/tome.svg"
  13697. }
  13698. },
  13699. beans: {
  13700. height: math.unit(0.89, "feet"),
  13701. name: "Beans",
  13702. image: {
  13703. source: "./media/characters/vanrel/beans.svg"
  13704. }
  13705. },
  13706. },
  13707. [
  13708. {
  13709. name: "Normal",
  13710. height: math.unit(3 + 11/12, "feet"),
  13711. default: true
  13712. },
  13713. ]
  13714. ))
  13715. characterMakers.push(() => makeCharacter(
  13716. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13717. {
  13718. front: {
  13719. height: math.unit(7 + 5 / 12, "feet"),
  13720. name: "Front",
  13721. image: {
  13722. source: "./media/characters/kuiper-vanrel/front.svg",
  13723. extra: 1219/1169,
  13724. bottom: 69/1288
  13725. }
  13726. },
  13727. back: {
  13728. height: math.unit(7 + 5 / 12, "feet"),
  13729. name: "Back",
  13730. image: {
  13731. source: "./media/characters/kuiper-vanrel/back.svg",
  13732. extra: 1236/1193,
  13733. bottom: 27/1263
  13734. }
  13735. },
  13736. foot: {
  13737. height: math.unit(0.55, "meters"),
  13738. name: "Foot",
  13739. image: {
  13740. source: "./media/characters/kuiper-vanrel/foot.svg",
  13741. }
  13742. },
  13743. battle: {
  13744. height: math.unit(6.824, "feet"),
  13745. name: "Battle",
  13746. image: {
  13747. source: "./media/characters/kuiper-vanrel/battle.svg",
  13748. extra: 1466 / 1327,
  13749. bottom: 29 / 1492.5
  13750. }
  13751. },
  13752. meerkui: {
  13753. height: math.unit(18, "inches"),
  13754. name: "Meerkui",
  13755. image: {
  13756. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13757. extra: 1354/1289,
  13758. bottom: 69/1423
  13759. }
  13760. },
  13761. },
  13762. [
  13763. {
  13764. name: "Normal",
  13765. height: math.unit(7 + 5 / 12, "feet"),
  13766. default: true
  13767. },
  13768. ]
  13769. ))
  13770. characterMakers.push(() => makeCharacter(
  13771. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13772. {
  13773. front: {
  13774. height: math.unit(8 + 5 / 12, "feet"),
  13775. name: "Front",
  13776. image: {
  13777. source: "./media/characters/keset-vanrel/front.svg",
  13778. extra: 1231/1148,
  13779. bottom: 82/1313
  13780. }
  13781. },
  13782. back: {
  13783. height: math.unit(8 + 5 / 12, "feet"),
  13784. name: "Back",
  13785. image: {
  13786. source: "./media/characters/keset-vanrel/back.svg",
  13787. extra: 1240/1174,
  13788. bottom: 33/1273
  13789. }
  13790. },
  13791. hand: {
  13792. height: math.unit(0.6, "meters"),
  13793. name: "Hand",
  13794. image: {
  13795. source: "./media/characters/keset-vanrel/hand.svg"
  13796. }
  13797. },
  13798. foot: {
  13799. height: math.unit(0.94978, "meters"),
  13800. name: "Foot",
  13801. image: {
  13802. source: "./media/characters/keset-vanrel/foot.svg"
  13803. }
  13804. },
  13805. battle: {
  13806. height: math.unit(7.408, "feet"),
  13807. name: "Battle",
  13808. image: {
  13809. source: "./media/characters/keset-vanrel/battle.svg",
  13810. extra: 1890 / 1386,
  13811. bottom: 73.28 / 1970
  13812. }
  13813. },
  13814. },
  13815. [
  13816. {
  13817. name: "Normal",
  13818. height: math.unit(8 + 5 / 12, "feet"),
  13819. default: true
  13820. },
  13821. ]
  13822. ))
  13823. characterMakers.push(() => makeCharacter(
  13824. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13825. {
  13826. front: {
  13827. height: math.unit(6, "feet"),
  13828. weight: math.unit(150, "lb"),
  13829. name: "Front",
  13830. image: {
  13831. source: "./media/characters/neos/front.svg",
  13832. extra: 1696 / 992,
  13833. bottom: 0.14
  13834. }
  13835. },
  13836. },
  13837. [
  13838. {
  13839. name: "Normal",
  13840. height: math.unit(54, "cm"),
  13841. default: true
  13842. },
  13843. {
  13844. name: "Macro",
  13845. height: math.unit(100, "m")
  13846. },
  13847. {
  13848. name: "Megamacro",
  13849. height: math.unit(10, "km")
  13850. },
  13851. {
  13852. name: "Megamacro+",
  13853. height: math.unit(100, "km")
  13854. },
  13855. {
  13856. name: "Gigamacro",
  13857. height: math.unit(100, "Mm")
  13858. },
  13859. {
  13860. name: "Teramacro",
  13861. height: math.unit(100, "Gm")
  13862. },
  13863. {
  13864. name: "Examacro",
  13865. height: math.unit(100, "Em")
  13866. },
  13867. {
  13868. name: "Godly",
  13869. height: math.unit(10000, "Ym")
  13870. },
  13871. {
  13872. name: "Beyond Godly",
  13873. height: math.unit(25, "multiverses")
  13874. },
  13875. ]
  13876. ))
  13877. characterMakers.push(() => makeCharacter(
  13878. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13879. {
  13880. fluide_tame: {
  13881. height: math.unit(5, "feet"),
  13882. name: "Tame",
  13883. image: {
  13884. source: "./media/characters/sammy-mouse/fluide-tame.svg",
  13885. extra: 1655/1574,
  13886. bottom: 231/1886
  13887. },
  13888. form: "fluide",
  13889. default: true
  13890. },
  13891. fluide_nude: {
  13892. height: math.unit(5, "feet"),
  13893. name: "Nude",
  13894. image: {
  13895. source: "./media/characters/sammy-mouse/fluide-nude.svg",
  13896. extra: 1655/1574,
  13897. bottom: 231/1886
  13898. },
  13899. form: "fluide",
  13900. },
  13901. male_tame: {
  13902. height: math.unit(5, "feet"),
  13903. name: "Tame",
  13904. image: {
  13905. source: "./media/characters/sammy-mouse/male-tame.svg",
  13906. extra: 1655/1574,
  13907. bottom: 231/1886
  13908. },
  13909. form: "male",
  13910. default: true
  13911. },
  13912. male_nude: {
  13913. height: math.unit(5, "feet"),
  13914. name: "Nude",
  13915. image: {
  13916. source: "./media/characters/sammy-mouse/male-nude.svg",
  13917. extra: 1655/1574,
  13918. bottom: 231/1886
  13919. },
  13920. form: "male",
  13921. },
  13922. female_nude: {
  13923. height: math.unit(5, "feet"),
  13924. name: "Nude",
  13925. image: {
  13926. source: "./media/characters/sammy-mouse/female-nude.svg",
  13927. extra: 1655/1574,
  13928. bottom: 231/1886
  13929. },
  13930. form: "female",
  13931. default: true
  13932. },
  13933. mouth: {
  13934. height: math.unit(0.32, "feet"),
  13935. name: "Mouth",
  13936. image: {
  13937. source: "./media/characters/sammy-mouse/mouth.svg"
  13938. },
  13939. allForms: true
  13940. },
  13941. paw: {
  13942. height: math.unit(0.42, "feet"),
  13943. name: "Paw",
  13944. image: {
  13945. source: "./media/characters/sammy-mouse/paw.svg"
  13946. },
  13947. allForms: true
  13948. },
  13949. },
  13950. [
  13951. {
  13952. name: "Micro",
  13953. height: math.unit(5, "inches"),
  13954. allForms: true
  13955. },
  13956. {
  13957. name: "Normal",
  13958. height: math.unit(5, "feet"),
  13959. default: true,
  13960. allForms: true
  13961. },
  13962. {
  13963. name: "Macro",
  13964. height: math.unit(60, "feet"),
  13965. allForms: true
  13966. },
  13967. ],
  13968. {
  13969. "fluide": {
  13970. name: "Fluide",
  13971. default: true
  13972. },
  13973. "male": {
  13974. name: "Male",
  13975. },
  13976. "female": {
  13977. name: "Female",
  13978. },
  13979. }
  13980. ))
  13981. characterMakers.push(() => makeCharacter(
  13982. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13983. {
  13984. front: {
  13985. height: math.unit(4, "feet"),
  13986. weight: math.unit(50, "lb"),
  13987. name: "Front",
  13988. image: {
  13989. source: "./media/characters/kole/front.svg",
  13990. extra: 1423 / 1303,
  13991. bottom: 0.025
  13992. }
  13993. },
  13994. back: {
  13995. height: math.unit(4, "feet"),
  13996. weight: math.unit(50, "lb"),
  13997. name: "Back",
  13998. image: {
  13999. source: "./media/characters/kole/back.svg",
  14000. extra: 1426 / 1280,
  14001. bottom: 0.02
  14002. }
  14003. },
  14004. },
  14005. [
  14006. {
  14007. name: "Normal",
  14008. height: math.unit(4, "feet"),
  14009. default: true
  14010. },
  14011. ]
  14012. ))
  14013. characterMakers.push(() => makeCharacter(
  14014. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  14015. {
  14016. front: {
  14017. height: math.unit(2.5, "feet"),
  14018. weight: math.unit(32, "lb"),
  14019. name: "Front",
  14020. image: {
  14021. source: "./media/characters/rufran/front.svg",
  14022. extra: 1313/885,
  14023. bottom: 94/1407
  14024. }
  14025. },
  14026. side: {
  14027. height: math.unit(2.5, "feet"),
  14028. weight: math.unit(32, "lb"),
  14029. name: "Side",
  14030. image: {
  14031. source: "./media/characters/rufran/side.svg",
  14032. extra: 1109/852,
  14033. bottom: 118/1227
  14034. }
  14035. },
  14036. back: {
  14037. height: math.unit(2.5, "feet"),
  14038. weight: math.unit(32, "lb"),
  14039. name: "Back",
  14040. image: {
  14041. source: "./media/characters/rufran/back.svg",
  14042. extra: 1280/878,
  14043. bottom: 131/1411
  14044. }
  14045. },
  14046. mouth: {
  14047. height: math.unit(1.13, "feet"),
  14048. name: "Mouth",
  14049. image: {
  14050. source: "./media/characters/rufran/mouth.svg"
  14051. }
  14052. },
  14053. foot: {
  14054. height: math.unit(1.33, "feet"),
  14055. name: "Foot",
  14056. image: {
  14057. source: "./media/characters/rufran/foot.svg"
  14058. }
  14059. },
  14060. koboldFront: {
  14061. height: math.unit(2 + 6 / 12, "feet"),
  14062. weight: math.unit(20, "lb"),
  14063. name: "Front (Kobold)",
  14064. image: {
  14065. source: "./media/characters/rufran/kobold-front.svg",
  14066. extra: 2041 / 1839,
  14067. bottom: 0.055
  14068. }
  14069. },
  14070. koboldBack: {
  14071. height: math.unit(2 + 6 / 12, "feet"),
  14072. weight: math.unit(20, "lb"),
  14073. name: "Back (Kobold)",
  14074. image: {
  14075. source: "./media/characters/rufran/kobold-back.svg",
  14076. extra: 2054 / 1839,
  14077. bottom: 0.01
  14078. }
  14079. },
  14080. koboldHand: {
  14081. height: math.unit(0.2166, "meters"),
  14082. name: "Hand (Kobold)",
  14083. image: {
  14084. source: "./media/characters/rufran/kobold-hand.svg"
  14085. }
  14086. },
  14087. koboldFoot: {
  14088. height: math.unit(0.185, "meters"),
  14089. name: "Foot (Kobold)",
  14090. image: {
  14091. source: "./media/characters/rufran/kobold-foot.svg"
  14092. }
  14093. },
  14094. },
  14095. [
  14096. {
  14097. name: "Micro",
  14098. height: math.unit(1, "inch")
  14099. },
  14100. {
  14101. name: "Normal",
  14102. height: math.unit(2 + 6 / 12, "feet"),
  14103. default: true
  14104. },
  14105. {
  14106. name: "Big",
  14107. height: math.unit(60, "feet")
  14108. },
  14109. {
  14110. name: "Macro",
  14111. height: math.unit(325, "feet")
  14112. },
  14113. ]
  14114. ))
  14115. characterMakers.push(() => makeCharacter(
  14116. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  14117. {
  14118. front: {
  14119. height: math.unit(0.3, "meters"),
  14120. weight: math.unit(3.5, "kg"),
  14121. name: "Front",
  14122. image: {
  14123. source: "./media/characters/chip/front.svg",
  14124. extra: 748 / 674
  14125. }
  14126. },
  14127. },
  14128. [
  14129. {
  14130. name: "Micro",
  14131. height: math.unit(1, "inch"),
  14132. default: true
  14133. },
  14134. ]
  14135. ))
  14136. characterMakers.push(() => makeCharacter(
  14137. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  14138. {
  14139. side: {
  14140. height: math.unit(2.3, "meters"),
  14141. weight: math.unit(3500, "lb"),
  14142. name: "Side",
  14143. image: {
  14144. source: "./media/characters/torvid/side.svg",
  14145. extra: 1972 / 722,
  14146. bottom: 0.035
  14147. }
  14148. },
  14149. },
  14150. [
  14151. {
  14152. name: "Normal",
  14153. height: math.unit(2.3, "meters"),
  14154. default: true
  14155. },
  14156. ]
  14157. ))
  14158. characterMakers.push(() => makeCharacter(
  14159. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  14160. {
  14161. front: {
  14162. height: math.unit(2, "meters"),
  14163. weight: math.unit(150.5, "kg"),
  14164. name: "Front",
  14165. image: {
  14166. source: "./media/characters/susan/front.svg",
  14167. extra: 693 / 635,
  14168. bottom: 0.05
  14169. }
  14170. },
  14171. },
  14172. [
  14173. {
  14174. name: "Megamacro",
  14175. height: math.unit(505, "miles"),
  14176. default: true
  14177. },
  14178. ]
  14179. ))
  14180. characterMakers.push(() => makeCharacter(
  14181. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  14182. {
  14183. front: {
  14184. height: math.unit(6, "feet"),
  14185. weight: math.unit(150, "lb"),
  14186. name: "Front",
  14187. image: {
  14188. source: "./media/characters/raindrops/front.svg",
  14189. extra: 2655 / 2461,
  14190. bottom: 49 / 2705
  14191. }
  14192. },
  14193. back: {
  14194. height: math.unit(6, "feet"),
  14195. weight: math.unit(150, "lb"),
  14196. name: "Back",
  14197. image: {
  14198. source: "./media/characters/raindrops/back.svg",
  14199. extra: 2574 / 2400,
  14200. bottom: 65 / 2634
  14201. }
  14202. },
  14203. },
  14204. [
  14205. {
  14206. name: "Micro",
  14207. height: math.unit(6, "inches")
  14208. },
  14209. {
  14210. name: "Normal",
  14211. height: math.unit(6 + 2 / 12, "feet")
  14212. },
  14213. {
  14214. name: "Macro",
  14215. height: math.unit(131, "feet"),
  14216. default: true
  14217. },
  14218. {
  14219. name: "Megamacro",
  14220. height: math.unit(15, "miles")
  14221. },
  14222. {
  14223. name: "Gigamacro",
  14224. height: math.unit(4000, "miles")
  14225. },
  14226. {
  14227. name: "Teramacro",
  14228. height: math.unit(315000, "miles")
  14229. },
  14230. ]
  14231. ))
  14232. characterMakers.push(() => makeCharacter(
  14233. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  14234. {
  14235. front: {
  14236. height: math.unit(2.794, "meters"),
  14237. weight: math.unit(325, "kg"),
  14238. name: "Front",
  14239. image: {
  14240. source: "./media/characters/tezwa/front.svg",
  14241. extra: 2083 / 1906,
  14242. bottom: 0.031
  14243. }
  14244. },
  14245. foot: {
  14246. height: math.unit(0.687, "meters"),
  14247. name: "Foot",
  14248. image: {
  14249. source: "./media/characters/tezwa/foot.svg"
  14250. }
  14251. },
  14252. },
  14253. [
  14254. {
  14255. name: "Normal",
  14256. height: math.unit(9 + 2 / 12, "feet"),
  14257. default: true
  14258. },
  14259. ]
  14260. ))
  14261. characterMakers.push(() => makeCharacter(
  14262. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  14263. {
  14264. front: {
  14265. height: math.unit(58, "feet"),
  14266. weight: math.unit(89000, "lb"),
  14267. name: "Front",
  14268. image: {
  14269. source: "./media/characters/typhus/front.svg",
  14270. extra: 816 / 800,
  14271. bottom: 0.065
  14272. }
  14273. },
  14274. },
  14275. [
  14276. {
  14277. name: "Macro",
  14278. height: math.unit(58, "feet"),
  14279. default: true
  14280. },
  14281. ]
  14282. ))
  14283. characterMakers.push(() => makeCharacter(
  14284. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14285. {
  14286. front: {
  14287. height: math.unit(12, "feet"),
  14288. weight: math.unit(6, "tonnes"),
  14289. name: "Front",
  14290. image: {
  14291. source: "./media/characters/lyra-von-wulf/front.svg",
  14292. extra: 1,
  14293. bottom: 0.10
  14294. }
  14295. },
  14296. frontMecha: {
  14297. height: math.unit(12, "feet"),
  14298. weight: math.unit(12, "tonnes"),
  14299. name: "Front (Mecha)",
  14300. image: {
  14301. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14302. extra: 1,
  14303. bottom: 0.042
  14304. }
  14305. },
  14306. maw: {
  14307. height: math.unit(2.2, "feet"),
  14308. name: "Maw",
  14309. image: {
  14310. source: "./media/characters/lyra-von-wulf/maw.svg"
  14311. }
  14312. },
  14313. },
  14314. [
  14315. {
  14316. name: "Normal",
  14317. height: math.unit(12, "feet"),
  14318. default: true
  14319. },
  14320. {
  14321. name: "Classic",
  14322. height: math.unit(50, "feet")
  14323. },
  14324. {
  14325. name: "Macro",
  14326. height: math.unit(500, "feet")
  14327. },
  14328. {
  14329. name: "Megamacro",
  14330. height: math.unit(1, "mile")
  14331. },
  14332. {
  14333. name: "Gigamacro",
  14334. height: math.unit(400, "miles")
  14335. },
  14336. {
  14337. name: "Teramacro",
  14338. height: math.unit(22000, "miles")
  14339. },
  14340. {
  14341. name: "Solarmacro",
  14342. height: math.unit(8600000, "miles")
  14343. },
  14344. {
  14345. name: "Galactic",
  14346. height: math.unit(1057000, "lightyears")
  14347. },
  14348. ]
  14349. ))
  14350. characterMakers.push(() => makeCharacter(
  14351. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14352. {
  14353. front: {
  14354. height: math.unit(6 + 10 / 12, "feet"),
  14355. weight: math.unit(150, "lb"),
  14356. name: "Front",
  14357. image: {
  14358. source: "./media/characters/dixon/front.svg",
  14359. extra: 3361 / 3209,
  14360. bottom: 0.01
  14361. }
  14362. },
  14363. },
  14364. [
  14365. {
  14366. name: "Normal",
  14367. height: math.unit(6 + 10 / 12, "feet"),
  14368. default: true
  14369. },
  14370. {
  14371. name: "Big",
  14372. height: math.unit(12, "meters")
  14373. },
  14374. {
  14375. name: "Macro",
  14376. height: math.unit(500, "meters")
  14377. },
  14378. {
  14379. name: "Megamacro",
  14380. height: math.unit(2, "km")
  14381. },
  14382. ]
  14383. ))
  14384. characterMakers.push(() => makeCharacter(
  14385. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  14386. {
  14387. front: {
  14388. height: math.unit(185, "cm"),
  14389. weight: math.unit(68, "kg"),
  14390. name: "Front",
  14391. image: {
  14392. source: "./media/characters/kauko/front.svg",
  14393. extra: 1455 / 1421,
  14394. bottom: 0.03
  14395. }
  14396. },
  14397. back: {
  14398. height: math.unit(185, "cm"),
  14399. weight: math.unit(68, "kg"),
  14400. name: "Back",
  14401. image: {
  14402. source: "./media/characters/kauko/back.svg",
  14403. extra: 1455 / 1421,
  14404. bottom: 0.004
  14405. }
  14406. },
  14407. },
  14408. [
  14409. {
  14410. name: "Normal",
  14411. height: math.unit(185, "cm"),
  14412. default: true
  14413. },
  14414. ]
  14415. ))
  14416. characterMakers.push(() => makeCharacter(
  14417. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14418. {
  14419. frontSfw: {
  14420. height: math.unit(5, "meters"),
  14421. weight: math.unit(4250, "lb"),
  14422. name: "Front",
  14423. image: {
  14424. source: "./media/characters/varg/front-sfw.svg",
  14425. extra: 1103/1010,
  14426. bottom: 50/1153
  14427. },
  14428. form: "anthro",
  14429. default: true
  14430. },
  14431. backSfw: {
  14432. height: math.unit(5, "meters"),
  14433. weight: math.unit(4250, "lb"),
  14434. name: "Back",
  14435. image: {
  14436. source: "./media/characters/varg/back-sfw.svg",
  14437. extra: 1038/1022,
  14438. bottom: 36/1074
  14439. },
  14440. form: "anthro"
  14441. },
  14442. frontNsfw: {
  14443. height: math.unit(5, "meters"),
  14444. weight: math.unit(4250, "lb"),
  14445. name: "Front (NSFW)",
  14446. image: {
  14447. source: "./media/characters/varg/front-nsfw.svg",
  14448. extra: 1103/1010,
  14449. bottom: 50/1153
  14450. },
  14451. form: "anthro"
  14452. },
  14453. sheath: {
  14454. height: math.unit(3.8, "feet"),
  14455. weight: math.unit(90, "kilograms"),
  14456. name: "Sheath",
  14457. image: {
  14458. source: "./media/characters/varg/sheath.svg"
  14459. },
  14460. form: "anthro"
  14461. },
  14462. dick: {
  14463. height: math.unit(4.6, "feet"),
  14464. weight: math.unit(451, "kilograms"),
  14465. name: "Dick",
  14466. image: {
  14467. source: "./media/characters/varg/dick.svg"
  14468. },
  14469. form: "anthro"
  14470. },
  14471. feralSfw: {
  14472. height: math.unit(5, "meters"),
  14473. weight: math.unit(100000, "lb"),
  14474. name: "Side",
  14475. image: {
  14476. source: "./media/characters/varg/feral-sfw.svg",
  14477. extra: 1065/511,
  14478. bottom: 211/1276
  14479. },
  14480. form: "feral",
  14481. default: true
  14482. },
  14483. feralNsfw: {
  14484. height: math.unit(5, "meters"),
  14485. weight: math.unit(100000, "lb"),
  14486. name: "Side (NSFW)",
  14487. image: {
  14488. source: "./media/characters/varg/feral-nsfw.svg",
  14489. extra: 1065/511,
  14490. bottom: 211/1276
  14491. },
  14492. form: "feral",
  14493. },
  14494. feralSheath: {
  14495. height: math.unit(9.8, "feet"),
  14496. weight: math.unit(2000, "kilograms"),
  14497. name: "Sheath",
  14498. image: {
  14499. source: "./media/characters/varg/sheath.svg"
  14500. },
  14501. form: "feral"
  14502. },
  14503. feralDick: {
  14504. height: math.unit(13.11, "feet"),
  14505. weight: math.unit(10440, "kilograms"),
  14506. name: "Dick",
  14507. image: {
  14508. source: "./media/characters/varg/dick.svg"
  14509. },
  14510. form: "feral"
  14511. },
  14512. },
  14513. [
  14514. {
  14515. name: "Normal",
  14516. height: math.unit(5, "meters"),
  14517. form: "anthro"
  14518. },
  14519. {
  14520. name: "Macro",
  14521. height: math.unit(200, "meters"),
  14522. form: "anthro"
  14523. },
  14524. {
  14525. name: "Megamacro",
  14526. height: math.unit(20, "kilometers"),
  14527. form: "anthro"
  14528. },
  14529. {
  14530. name: "True Size",
  14531. height: math.unit(211, "km"),
  14532. form: "anthro",
  14533. default: true
  14534. },
  14535. {
  14536. name: "Gigamacro",
  14537. height: math.unit(1000, "km"),
  14538. form: "anthro"
  14539. },
  14540. {
  14541. name: "Gigamacro+",
  14542. height: math.unit(8000, "km"),
  14543. form: "anthro"
  14544. },
  14545. {
  14546. name: "Teramacro",
  14547. height: math.unit(1000000, "km"),
  14548. form: "anthro"
  14549. },
  14550. {
  14551. name: "Normal",
  14552. height: math.unit(5, "meters"),
  14553. form: "feral"
  14554. },
  14555. {
  14556. name: "Macro",
  14557. height: math.unit(200, "meters"),
  14558. form: "feral"
  14559. },
  14560. {
  14561. name: "Megamacro",
  14562. height: math.unit(20, "kilometers"),
  14563. form: "feral"
  14564. },
  14565. {
  14566. name: "True Size",
  14567. height: math.unit(211, "km"),
  14568. form: "feral",
  14569. default: true
  14570. },
  14571. {
  14572. name: "Gigamacro",
  14573. height: math.unit(1000, "km"),
  14574. form: "feral"
  14575. },
  14576. {
  14577. name: "Gigamacro+",
  14578. height: math.unit(8000, "km"),
  14579. form: "feral"
  14580. },
  14581. {
  14582. name: "Teramacro",
  14583. height: math.unit(1000000, "km"),
  14584. form: "feral"
  14585. },
  14586. ],
  14587. {
  14588. "anthro": {
  14589. name: "Anthro",
  14590. default: true
  14591. },
  14592. "feral": {
  14593. name: "Feral",
  14594. },
  14595. }
  14596. ))
  14597. characterMakers.push(() => makeCharacter(
  14598. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14599. {
  14600. front: {
  14601. height: math.unit(7 + 7 / 12, "feet"),
  14602. weight: math.unit(267, "lb"),
  14603. name: "Front",
  14604. image: {
  14605. source: "./media/characters/dayza/front.svg",
  14606. extra: 1262 / 1200,
  14607. bottom: 0.035
  14608. }
  14609. },
  14610. side: {
  14611. height: math.unit(7 + 7 / 12, "feet"),
  14612. weight: math.unit(267, "lb"),
  14613. name: "Side",
  14614. image: {
  14615. source: "./media/characters/dayza/side.svg",
  14616. extra: 1295 / 1245,
  14617. bottom: 0.05
  14618. }
  14619. },
  14620. back: {
  14621. height: math.unit(7 + 7 / 12, "feet"),
  14622. weight: math.unit(267, "lb"),
  14623. name: "Back",
  14624. image: {
  14625. source: "./media/characters/dayza/back.svg",
  14626. extra: 1241 / 1170
  14627. }
  14628. },
  14629. },
  14630. [
  14631. {
  14632. name: "Normal",
  14633. height: math.unit(7 + 7 / 12, "feet"),
  14634. default: true
  14635. },
  14636. {
  14637. name: "Macro",
  14638. height: math.unit(155, "feet")
  14639. },
  14640. ]
  14641. ))
  14642. characterMakers.push(() => makeCharacter(
  14643. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14644. {
  14645. front: {
  14646. height: math.unit(6 + 5 / 12, "feet"),
  14647. weight: math.unit(160, "lb"),
  14648. name: "Front",
  14649. image: {
  14650. source: "./media/characters/xanthos/front.svg",
  14651. extra: 1,
  14652. bottom: 0.04
  14653. }
  14654. },
  14655. back: {
  14656. height: math.unit(6 + 5 / 12, "feet"),
  14657. weight: math.unit(160, "lb"),
  14658. name: "Back",
  14659. image: {
  14660. source: "./media/characters/xanthos/back.svg",
  14661. extra: 1,
  14662. bottom: 0.03
  14663. }
  14664. },
  14665. hand: {
  14666. height: math.unit(0.928, "feet"),
  14667. name: "Hand",
  14668. image: {
  14669. source: "./media/characters/xanthos/hand.svg"
  14670. }
  14671. },
  14672. foot: {
  14673. height: math.unit(1.286, "feet"),
  14674. name: "Foot",
  14675. image: {
  14676. source: "./media/characters/xanthos/foot.svg"
  14677. }
  14678. },
  14679. },
  14680. [
  14681. {
  14682. name: "Normal",
  14683. height: math.unit(6 + 5 / 12, "feet"),
  14684. default: true
  14685. },
  14686. {
  14687. name: "Normal+",
  14688. height: math.unit(6, "meters")
  14689. },
  14690. {
  14691. name: "Macro",
  14692. height: math.unit(40, "feet")
  14693. },
  14694. {
  14695. name: "Macro+",
  14696. height: math.unit(200, "meters")
  14697. },
  14698. {
  14699. name: "Megamacro",
  14700. height: math.unit(20, "km")
  14701. },
  14702. {
  14703. name: "Megamacro+",
  14704. height: math.unit(100, "km")
  14705. },
  14706. {
  14707. name: "Gigamacro",
  14708. height: math.unit(200, "megameters")
  14709. },
  14710. {
  14711. name: "Gigamacro+",
  14712. height: math.unit(1.5, "gigameters")
  14713. },
  14714. ]
  14715. ))
  14716. characterMakers.push(() => makeCharacter(
  14717. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14718. {
  14719. front: {
  14720. height: math.unit(6 + 3 / 12, "feet"),
  14721. weight: math.unit(215, "lb"),
  14722. name: "Front",
  14723. image: {
  14724. source: "./media/characters/grynn/front.svg",
  14725. extra: 4627 / 4209,
  14726. bottom: 0.047
  14727. }
  14728. },
  14729. },
  14730. [
  14731. {
  14732. name: "Micro",
  14733. height: math.unit(6, "inches")
  14734. },
  14735. {
  14736. name: "Normal",
  14737. height: math.unit(6 + 3 / 12, "feet"),
  14738. default: true
  14739. },
  14740. {
  14741. name: "Big",
  14742. height: math.unit(104, "feet")
  14743. },
  14744. {
  14745. name: "Macro",
  14746. height: math.unit(944, "feet")
  14747. },
  14748. {
  14749. name: "Macro+",
  14750. height: math.unit(9480, "feet")
  14751. },
  14752. {
  14753. name: "Megamacro",
  14754. height: math.unit(78752, "feet")
  14755. },
  14756. {
  14757. name: "Megamacro+",
  14758. height: math.unit(630128, "feet")
  14759. },
  14760. {
  14761. name: "Megamacro++",
  14762. height: math.unit(3150695, "feet")
  14763. },
  14764. ]
  14765. ))
  14766. characterMakers.push(() => makeCharacter(
  14767. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14768. {
  14769. front: {
  14770. height: math.unit(7 + 5 / 12, "feet"),
  14771. weight: math.unit(450, "lb"),
  14772. name: "Front",
  14773. image: {
  14774. source: "./media/characters/mocha-aura/front.svg",
  14775. extra: 1907 / 1817,
  14776. bottom: 0.04
  14777. }
  14778. },
  14779. back: {
  14780. height: math.unit(7 + 5 / 12, "feet"),
  14781. weight: math.unit(450, "lb"),
  14782. name: "Back",
  14783. image: {
  14784. source: "./media/characters/mocha-aura/back.svg",
  14785. extra: 1900 / 1825,
  14786. bottom: 0.045
  14787. }
  14788. },
  14789. },
  14790. [
  14791. {
  14792. name: "Nano",
  14793. height: math.unit(1, "nm")
  14794. },
  14795. {
  14796. name: "Megamicro",
  14797. height: math.unit(1, "mm")
  14798. },
  14799. {
  14800. name: "Micro",
  14801. height: math.unit(3, "inches")
  14802. },
  14803. {
  14804. name: "Normal",
  14805. height: math.unit(7 + 5 / 12, "feet"),
  14806. default: true
  14807. },
  14808. {
  14809. name: "Macro",
  14810. height: math.unit(30, "feet")
  14811. },
  14812. {
  14813. name: "Megamacro",
  14814. height: math.unit(3500, "feet")
  14815. },
  14816. {
  14817. name: "Teramacro",
  14818. height: math.unit(500000, "miles")
  14819. },
  14820. {
  14821. name: "Petamacro",
  14822. height: math.unit(50000000000000000, "parsecs")
  14823. },
  14824. ]
  14825. ))
  14826. characterMakers.push(() => makeCharacter(
  14827. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14828. {
  14829. front: {
  14830. height: math.unit(6, "feet"),
  14831. weight: math.unit(150, "lb"),
  14832. name: "Front",
  14833. image: {
  14834. source: "./media/characters/ilisha-devya/front.svg",
  14835. extra: 1053/1049,
  14836. bottom: 270/1323
  14837. }
  14838. },
  14839. back: {
  14840. height: math.unit(6, "feet"),
  14841. weight: math.unit(150, "lb"),
  14842. name: "Back",
  14843. image: {
  14844. source: "./media/characters/ilisha-devya/back.svg",
  14845. extra: 1131/1128,
  14846. bottom: 39/1170
  14847. }
  14848. },
  14849. },
  14850. [
  14851. {
  14852. name: "Macro",
  14853. height: math.unit(500, "feet"),
  14854. default: true
  14855. },
  14856. {
  14857. name: "Megamacro",
  14858. height: math.unit(10, "miles")
  14859. },
  14860. {
  14861. name: "Gigamacro",
  14862. height: math.unit(100000, "miles")
  14863. },
  14864. {
  14865. name: "Examacro",
  14866. height: math.unit(1e9, "lightyears")
  14867. },
  14868. {
  14869. name: "Omniversal",
  14870. height: math.unit(1e33, "lightyears")
  14871. },
  14872. {
  14873. name: "Beyond Infinite",
  14874. height: math.unit(1e100, "lightyears")
  14875. },
  14876. ]
  14877. ))
  14878. characterMakers.push(() => makeCharacter(
  14879. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14880. {
  14881. Side: {
  14882. height: math.unit(6, "feet"),
  14883. weight: math.unit(150, "lb"),
  14884. name: "Side",
  14885. image: {
  14886. source: "./media/characters/mira/side.svg",
  14887. extra: 900 / 799,
  14888. bottom: 0.02
  14889. }
  14890. },
  14891. },
  14892. [
  14893. {
  14894. name: "Human Size",
  14895. height: math.unit(6, "feet")
  14896. },
  14897. {
  14898. name: "Macro",
  14899. height: math.unit(100, "feet"),
  14900. default: true
  14901. },
  14902. {
  14903. name: "Megamacro",
  14904. height: math.unit(10, "miles")
  14905. },
  14906. {
  14907. name: "Gigamacro",
  14908. height: math.unit(25000, "miles")
  14909. },
  14910. {
  14911. name: "Teramacro",
  14912. height: math.unit(300, "AU")
  14913. },
  14914. {
  14915. name: "Full Size",
  14916. height: math.unit(4.5e10, "lightyears")
  14917. },
  14918. ]
  14919. ))
  14920. characterMakers.push(() => makeCharacter(
  14921. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14922. {
  14923. front: {
  14924. height: math.unit(6, "feet"),
  14925. weight: math.unit(150, "lb"),
  14926. name: "Front",
  14927. image: {
  14928. source: "./media/characters/holly/front.svg",
  14929. extra: 639 / 606
  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/holly/back.svg",
  14938. extra: 623 / 598
  14939. }
  14940. },
  14941. frontWorking: {
  14942. height: math.unit(6, "feet"),
  14943. weight: math.unit(150, "lb"),
  14944. name: "Front (Working)",
  14945. image: {
  14946. source: "./media/characters/holly/front-working.svg",
  14947. extra: 607 / 577,
  14948. bottom: 0.048
  14949. }
  14950. },
  14951. },
  14952. [
  14953. {
  14954. name: "Normal",
  14955. height: math.unit(12 + 3 / 12, "feet"),
  14956. default: true
  14957. },
  14958. ]
  14959. ))
  14960. characterMakers.push(() => makeCharacter(
  14961. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14962. {
  14963. front: {
  14964. height: math.unit(6, "feet"),
  14965. weight: math.unit(150, "lb"),
  14966. name: "Front",
  14967. image: {
  14968. source: "./media/characters/porter/front.svg",
  14969. extra: 1,
  14970. bottom: 0.01
  14971. }
  14972. },
  14973. frontRobes: {
  14974. height: math.unit(6, "feet"),
  14975. weight: math.unit(150, "lb"),
  14976. name: "Front (Robes)",
  14977. image: {
  14978. source: "./media/characters/porter/front-robes.svg",
  14979. extra: 1.01,
  14980. bottom: 0.01
  14981. }
  14982. },
  14983. },
  14984. [
  14985. {
  14986. name: "Normal",
  14987. height: math.unit(11 + 9 / 12, "feet"),
  14988. default: true
  14989. },
  14990. ]
  14991. ))
  14992. characterMakers.push(() => makeCharacter(
  14993. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14994. {
  14995. legendary: {
  14996. height: math.unit(6, "feet"),
  14997. weight: math.unit(150, "lb"),
  14998. name: "Legendary",
  14999. image: {
  15000. source: "./media/characters/lucy/legendary.svg",
  15001. extra: 1355 / 1100,
  15002. bottom: 0.045
  15003. }
  15004. },
  15005. },
  15006. [
  15007. {
  15008. name: "Legendary",
  15009. height: math.unit(86882 * 2, "miles"),
  15010. default: true
  15011. },
  15012. ]
  15013. ))
  15014. characterMakers.push(() => makeCharacter(
  15015. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  15016. {
  15017. front: {
  15018. height: math.unit(6, "feet"),
  15019. weight: math.unit(150, "lb"),
  15020. name: "Front",
  15021. image: {
  15022. source: "./media/characters/drusilla/front.svg",
  15023. extra: 678 / 635,
  15024. bottom: 0.03
  15025. }
  15026. },
  15027. back: {
  15028. height: math.unit(6, "feet"),
  15029. weight: math.unit(150, "lb"),
  15030. name: "Back",
  15031. image: {
  15032. source: "./media/characters/drusilla/back.svg",
  15033. extra: 678 / 635,
  15034. bottom: 0.005
  15035. }
  15036. },
  15037. },
  15038. [
  15039. {
  15040. name: "Macro",
  15041. height: math.unit(100, "feet")
  15042. },
  15043. {
  15044. name: "Canon Height",
  15045. height: math.unit(2000, "feet"),
  15046. default: true
  15047. },
  15048. ]
  15049. ))
  15050. characterMakers.push(() => makeCharacter(
  15051. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  15052. {
  15053. front: {
  15054. height: math.unit(6, "feet"),
  15055. weight: math.unit(180, "lb"),
  15056. name: "Front",
  15057. image: {
  15058. source: "./media/characters/renard-thatch/front.svg",
  15059. extra: 2411 / 2275,
  15060. bottom: 0.01
  15061. }
  15062. },
  15063. frontPosing: {
  15064. height: math.unit(6, "feet"),
  15065. weight: math.unit(180, "lb"),
  15066. name: "Front (Posing)",
  15067. image: {
  15068. source: "./media/characters/renard-thatch/front-posing.svg",
  15069. extra: 2381 / 2261,
  15070. bottom: 0.01
  15071. }
  15072. },
  15073. back: {
  15074. height: math.unit(6, "feet"),
  15075. weight: math.unit(180, "lb"),
  15076. name: "Back",
  15077. image: {
  15078. source: "./media/characters/renard-thatch/back.svg",
  15079. extra: 2428 / 2288
  15080. }
  15081. },
  15082. },
  15083. [
  15084. {
  15085. name: "Micro",
  15086. height: math.unit(3, "inches")
  15087. },
  15088. {
  15089. name: "Default",
  15090. height: math.unit(6, "feet"),
  15091. default: true
  15092. },
  15093. {
  15094. name: "Macro",
  15095. height: math.unit(75, "feet")
  15096. },
  15097. ]
  15098. ))
  15099. characterMakers.push(() => makeCharacter(
  15100. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  15101. {
  15102. front: {
  15103. height: math.unit(1450, "feet"),
  15104. weight: math.unit(1.21e6, "tons"),
  15105. name: "Front",
  15106. image: {
  15107. source: "./media/characters/sekvra/front.svg",
  15108. extra: 1193/1190,
  15109. bottom: 78/1271
  15110. }
  15111. },
  15112. side: {
  15113. height: math.unit(1450, "feet"),
  15114. weight: math.unit(1.21e6, "tons"),
  15115. name: "Side",
  15116. image: {
  15117. source: "./media/characters/sekvra/side.svg",
  15118. extra: 1193/1190,
  15119. bottom: 52/1245
  15120. }
  15121. },
  15122. back: {
  15123. height: math.unit(1450, "feet"),
  15124. weight: math.unit(1.21e6, "tons"),
  15125. name: "Back",
  15126. image: {
  15127. source: "./media/characters/sekvra/back.svg",
  15128. extra: 1219/1216,
  15129. bottom: 21/1240
  15130. }
  15131. },
  15132. frontClothed: {
  15133. height: math.unit(1450, "feet"),
  15134. weight: math.unit(1.21e6, "tons"),
  15135. name: "Front (Clothed)",
  15136. image: {
  15137. source: "./media/characters/sekvra/front-clothed.svg",
  15138. extra: 1192/1189,
  15139. bottom: 79/1271
  15140. }
  15141. },
  15142. },
  15143. [
  15144. {
  15145. name: "Macro",
  15146. height: math.unit(1450, "feet"),
  15147. default: true
  15148. },
  15149. {
  15150. name: "Megamacro",
  15151. height: math.unit(15000, "feet")
  15152. },
  15153. ]
  15154. ))
  15155. characterMakers.push(() => makeCharacter(
  15156. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  15157. {
  15158. front: {
  15159. height: math.unit(6, "feet"),
  15160. weight: math.unit(150, "lb"),
  15161. name: "Front",
  15162. image: {
  15163. source: "./media/characters/carmine/front.svg",
  15164. extra: 1557/1538,
  15165. bottom: 68/1625
  15166. }
  15167. },
  15168. frontArmor: {
  15169. height: math.unit(6, "feet"),
  15170. weight: math.unit(150, "lb"),
  15171. name: "Front (Armor)",
  15172. image: {
  15173. source: "./media/characters/carmine/front-armor.svg",
  15174. extra: 1549/1530,
  15175. bottom: 82/1631
  15176. }
  15177. },
  15178. mouth: {
  15179. height: math.unit(0.55, "feet"),
  15180. name: "Mouth",
  15181. image: {
  15182. source: "./media/characters/carmine/mouth.svg"
  15183. }
  15184. },
  15185. hand: {
  15186. height: math.unit(1.05, "feet"),
  15187. name: "Hand",
  15188. image: {
  15189. source: "./media/characters/carmine/hand.svg"
  15190. }
  15191. },
  15192. foot: {
  15193. height: math.unit(0.6, "feet"),
  15194. name: "Foot",
  15195. image: {
  15196. source: "./media/characters/carmine/foot.svg"
  15197. }
  15198. },
  15199. },
  15200. [
  15201. {
  15202. name: "Large",
  15203. height: math.unit(1, "mile")
  15204. },
  15205. {
  15206. name: "Huge",
  15207. height: math.unit(40, "miles"),
  15208. default: true
  15209. },
  15210. {
  15211. name: "Colossal",
  15212. height: math.unit(2500, "miles")
  15213. },
  15214. ]
  15215. ))
  15216. characterMakers.push(() => makeCharacter(
  15217. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  15218. {
  15219. front: {
  15220. height: math.unit(6, "feet"),
  15221. weight: math.unit(150, "lb"),
  15222. name: "Front",
  15223. image: {
  15224. source: "./media/characters/elyssia/front.svg",
  15225. extra: 2201 / 2035,
  15226. bottom: 0.05
  15227. }
  15228. },
  15229. frontClothed: {
  15230. height: math.unit(6, "feet"),
  15231. weight: math.unit(150, "lb"),
  15232. name: "Front (Clothed)",
  15233. image: {
  15234. source: "./media/characters/elyssia/front-clothed.svg",
  15235. extra: 2201 / 2035,
  15236. bottom: 0.05
  15237. }
  15238. },
  15239. back: {
  15240. height: math.unit(6, "feet"),
  15241. weight: math.unit(150, "lb"),
  15242. name: "Back",
  15243. image: {
  15244. source: "./media/characters/elyssia/back.svg",
  15245. extra: 2201 / 2035,
  15246. bottom: 0.013
  15247. }
  15248. },
  15249. },
  15250. [
  15251. {
  15252. name: "Smaller",
  15253. height: math.unit(150, "feet")
  15254. },
  15255. {
  15256. name: "Standard",
  15257. height: math.unit(1400, "feet"),
  15258. default: true
  15259. },
  15260. {
  15261. name: "Distracted",
  15262. height: math.unit(15000, "feet")
  15263. },
  15264. ]
  15265. ))
  15266. characterMakers.push(() => makeCharacter(
  15267. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  15268. {
  15269. front: {
  15270. height: math.unit(7 + 4/12, "feet"),
  15271. weight: math.unit(690, "lb"),
  15272. name: "Front",
  15273. image: {
  15274. source: "./media/characters/geno-maxwell/front.svg",
  15275. extra: 984/856,
  15276. bottom: 87/1071
  15277. }
  15278. },
  15279. back: {
  15280. height: math.unit(7 + 4/12, "feet"),
  15281. weight: math.unit(690, "lb"),
  15282. name: "Back",
  15283. image: {
  15284. source: "./media/characters/geno-maxwell/back.svg",
  15285. extra: 981/854,
  15286. bottom: 57/1038
  15287. }
  15288. },
  15289. frontCostume: {
  15290. height: math.unit(7 + 4/12, "feet"),
  15291. weight: math.unit(690, "lb"),
  15292. name: "Front (Costume)",
  15293. image: {
  15294. source: "./media/characters/geno-maxwell/front-costume.svg",
  15295. extra: 984/856,
  15296. bottom: 87/1071
  15297. }
  15298. },
  15299. backcostume: {
  15300. height: math.unit(7 + 4/12, "feet"),
  15301. weight: math.unit(690, "lb"),
  15302. name: "Back (Costume)",
  15303. image: {
  15304. source: "./media/characters/geno-maxwell/back-costume.svg",
  15305. extra: 981/854,
  15306. bottom: 57/1038
  15307. }
  15308. },
  15309. },
  15310. [
  15311. {
  15312. name: "Micro",
  15313. height: math.unit(3, "inches")
  15314. },
  15315. {
  15316. name: "Normal",
  15317. height: math.unit(7 + 4 / 12, "feet"),
  15318. default: true
  15319. },
  15320. {
  15321. name: "Macro",
  15322. height: math.unit(220, "feet")
  15323. },
  15324. {
  15325. name: "Megamacro",
  15326. height: math.unit(11, "miles")
  15327. },
  15328. ]
  15329. ))
  15330. characterMakers.push(() => makeCharacter(
  15331. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15332. {
  15333. front: {
  15334. height: math.unit(7 + 4/12, "feet"),
  15335. weight: math.unit(750, "lb"),
  15336. name: "Front",
  15337. image: {
  15338. source: "./media/characters/regena-maxwell/front.svg",
  15339. extra: 984/856,
  15340. bottom: 87/1071
  15341. }
  15342. },
  15343. back: {
  15344. height: math.unit(7 + 4/12, "feet"),
  15345. weight: math.unit(750, "lb"),
  15346. name: "Back",
  15347. image: {
  15348. source: "./media/characters/regena-maxwell/back.svg",
  15349. extra: 981/854,
  15350. bottom: 57/1038
  15351. }
  15352. },
  15353. frontCostume: {
  15354. height: math.unit(7 + 4/12, "feet"),
  15355. weight: math.unit(750, "lb"),
  15356. name: "Front (Costume)",
  15357. image: {
  15358. source: "./media/characters/regena-maxwell/front-costume.svg",
  15359. extra: 984/856,
  15360. bottom: 87/1071
  15361. }
  15362. },
  15363. backcostume: {
  15364. height: math.unit(7 + 4/12, "feet"),
  15365. weight: math.unit(750, "lb"),
  15366. name: "Back (Costume)",
  15367. image: {
  15368. source: "./media/characters/regena-maxwell/back-costume.svg",
  15369. extra: 981/854,
  15370. bottom: 57/1038
  15371. }
  15372. },
  15373. },
  15374. [
  15375. {
  15376. name: "Normal",
  15377. height: math.unit(7 + 4 / 12, "feet"),
  15378. default: true
  15379. },
  15380. {
  15381. name: "Macro",
  15382. height: math.unit(220, "feet")
  15383. },
  15384. {
  15385. name: "Megamacro",
  15386. height: math.unit(11, "miles")
  15387. },
  15388. ]
  15389. ))
  15390. characterMakers.push(() => makeCharacter(
  15391. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15392. {
  15393. front: {
  15394. height: math.unit(6, "feet"),
  15395. weight: math.unit(150, "lb"),
  15396. name: "Front",
  15397. image: {
  15398. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15399. extra: 860 / 690,
  15400. bottom: 0.03
  15401. }
  15402. },
  15403. },
  15404. [
  15405. {
  15406. name: "Normal",
  15407. height: math.unit(1.7, "meters"),
  15408. default: true
  15409. },
  15410. ]
  15411. ))
  15412. characterMakers.push(() => makeCharacter(
  15413. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15414. {
  15415. front: {
  15416. height: math.unit(6, "feet"),
  15417. weight: math.unit(150, "lb"),
  15418. name: "Front",
  15419. image: {
  15420. source: "./media/characters/quilly/front.svg",
  15421. extra: 890 / 776
  15422. }
  15423. },
  15424. },
  15425. [
  15426. {
  15427. name: "Gigamacro",
  15428. height: math.unit(404090, "miles"),
  15429. default: true
  15430. },
  15431. ]
  15432. ))
  15433. characterMakers.push(() => makeCharacter(
  15434. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15435. {
  15436. front: {
  15437. height: math.unit(7 + 8 / 12, "feet"),
  15438. weight: math.unit(350, "lb"),
  15439. name: "Front",
  15440. image: {
  15441. source: "./media/characters/tempest/front.svg",
  15442. extra: 1175 / 1086,
  15443. bottom: 0.02
  15444. }
  15445. },
  15446. },
  15447. [
  15448. {
  15449. name: "Normal",
  15450. height: math.unit(7 + 8 / 12, "feet"),
  15451. default: true
  15452. },
  15453. ]
  15454. ))
  15455. characterMakers.push(() => makeCharacter(
  15456. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15457. {
  15458. side: {
  15459. height: math.unit(4 + 5 / 12, "feet"),
  15460. weight: math.unit(80, "lb"),
  15461. name: "Side",
  15462. image: {
  15463. source: "./media/characters/rodger/side.svg",
  15464. extra: 1235 / 1118
  15465. }
  15466. },
  15467. },
  15468. [
  15469. {
  15470. name: "Micro",
  15471. height: math.unit(1, "inch")
  15472. },
  15473. {
  15474. name: "Normal",
  15475. height: math.unit(4 + 5 / 12, "feet"),
  15476. default: true
  15477. },
  15478. {
  15479. name: "Macro",
  15480. height: math.unit(120, "feet")
  15481. },
  15482. ]
  15483. ))
  15484. characterMakers.push(() => makeCharacter(
  15485. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15486. {
  15487. front: {
  15488. height: math.unit(6, "feet"),
  15489. weight: math.unit(150, "lb"),
  15490. name: "Front",
  15491. image: {
  15492. source: "./media/characters/danyel/front.svg",
  15493. extra: 1185 / 1123,
  15494. bottom: 0.05
  15495. }
  15496. },
  15497. },
  15498. [
  15499. {
  15500. name: "Shrunken",
  15501. height: math.unit(0.5, "mm")
  15502. },
  15503. {
  15504. name: "Micro",
  15505. height: math.unit(1, "mm"),
  15506. default: true
  15507. },
  15508. {
  15509. name: "Upsized",
  15510. height: math.unit(5 + 5 / 12, "feet")
  15511. },
  15512. ]
  15513. ))
  15514. characterMakers.push(() => makeCharacter(
  15515. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15516. {
  15517. front: {
  15518. height: math.unit(5 + 6 / 12, "feet"),
  15519. weight: math.unit(200, "lb"),
  15520. name: "Front",
  15521. image: {
  15522. source: "./media/characters/vivian-bijoux/front.svg",
  15523. extra: 1217/1209,
  15524. bottom: 76/1293
  15525. }
  15526. },
  15527. back: {
  15528. height: math.unit(5 + 6 / 12, "feet"),
  15529. weight: math.unit(200, "lb"),
  15530. name: "Back",
  15531. image: {
  15532. source: "./media/characters/vivian-bijoux/back.svg",
  15533. extra: 1214/1208,
  15534. bottom: 51/1265
  15535. }
  15536. },
  15537. dressed: {
  15538. height: math.unit(5 + 6 / 12, "feet"),
  15539. weight: math.unit(200, "lb"),
  15540. name: "Dressed",
  15541. image: {
  15542. source: "./media/characters/vivian-bijoux/dressed.svg",
  15543. extra: 1217/1209,
  15544. bottom: 76/1293
  15545. }
  15546. },
  15547. },
  15548. [
  15549. {
  15550. name: "Normal",
  15551. height: math.unit(5 + 6 / 12, "feet"),
  15552. default: true
  15553. },
  15554. {
  15555. name: "Bad Dream",
  15556. height: math.unit(500, "feet")
  15557. },
  15558. {
  15559. name: "Nightmare",
  15560. height: math.unit(500, "miles")
  15561. },
  15562. ]
  15563. ))
  15564. characterMakers.push(() => makeCharacter(
  15565. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15566. {
  15567. front: {
  15568. height: math.unit(6 + 1 / 12, "feet"),
  15569. weight: math.unit(260, "lb"),
  15570. name: "Front",
  15571. image: {
  15572. source: "./media/characters/zeta/front.svg",
  15573. extra: 1968 / 1889,
  15574. bottom: 0.06
  15575. }
  15576. },
  15577. back: {
  15578. height: math.unit(6 + 1 / 12, "feet"),
  15579. weight: math.unit(260, "lb"),
  15580. name: "Back",
  15581. image: {
  15582. source: "./media/characters/zeta/back.svg",
  15583. extra: 1944 / 1858,
  15584. bottom: 0.03
  15585. }
  15586. },
  15587. hand: {
  15588. height: math.unit(1.112, "feet"),
  15589. name: "Hand",
  15590. image: {
  15591. source: "./media/characters/zeta/hand.svg"
  15592. }
  15593. },
  15594. foot: {
  15595. height: math.unit(1.48, "feet"),
  15596. name: "Foot",
  15597. image: {
  15598. source: "./media/characters/zeta/foot.svg"
  15599. }
  15600. },
  15601. },
  15602. [
  15603. {
  15604. name: "Micro",
  15605. height: math.unit(6, "inches")
  15606. },
  15607. {
  15608. name: "Normal",
  15609. height: math.unit(6 + 1 / 12, "feet"),
  15610. default: true
  15611. },
  15612. {
  15613. name: "Macro",
  15614. height: math.unit(20, "feet")
  15615. },
  15616. ]
  15617. ))
  15618. characterMakers.push(() => makeCharacter(
  15619. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15620. {
  15621. front: {
  15622. height: math.unit(6, "feet"),
  15623. weight: math.unit(150, "lb"),
  15624. name: "Front",
  15625. image: {
  15626. source: "./media/characters/jamie-larsen/front.svg",
  15627. extra: 962 / 933,
  15628. bottom: 0.02
  15629. }
  15630. },
  15631. back: {
  15632. height: math.unit(6, "feet"),
  15633. weight: math.unit(150, "lb"),
  15634. name: "Back",
  15635. image: {
  15636. source: "./media/characters/jamie-larsen/back.svg",
  15637. extra: 997 / 946
  15638. }
  15639. },
  15640. },
  15641. [
  15642. {
  15643. name: "Macro",
  15644. height: math.unit(28 + 7 / 12, "feet"),
  15645. default: true
  15646. },
  15647. {
  15648. name: "Macro+",
  15649. height: math.unit(180, "feet")
  15650. },
  15651. {
  15652. name: "Megamacro",
  15653. height: math.unit(10, "miles")
  15654. },
  15655. {
  15656. name: "Gigamacro",
  15657. height: math.unit(200000, "miles")
  15658. },
  15659. ]
  15660. ))
  15661. characterMakers.push(() => makeCharacter(
  15662. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15663. {
  15664. front: {
  15665. height: math.unit(6, "feet"),
  15666. weight: math.unit(120, "lb"),
  15667. name: "Front",
  15668. image: {
  15669. source: "./media/characters/vance/front.svg",
  15670. extra: 1980 / 1890,
  15671. bottom: 0.09
  15672. }
  15673. },
  15674. back: {
  15675. height: math.unit(6, "feet"),
  15676. weight: math.unit(120, "lb"),
  15677. name: "Back",
  15678. image: {
  15679. source: "./media/characters/vance/back.svg",
  15680. extra: 2081 / 1994,
  15681. bottom: 0.014
  15682. }
  15683. },
  15684. hand: {
  15685. height: math.unit(0.88, "feet"),
  15686. name: "Hand",
  15687. image: {
  15688. source: "./media/characters/vance/hand.svg"
  15689. }
  15690. },
  15691. foot: {
  15692. height: math.unit(0.64, "feet"),
  15693. name: "Foot",
  15694. image: {
  15695. source: "./media/characters/vance/foot.svg"
  15696. }
  15697. },
  15698. },
  15699. [
  15700. {
  15701. name: "Small",
  15702. height: math.unit(90, "feet"),
  15703. default: true
  15704. },
  15705. {
  15706. name: "Macro",
  15707. height: math.unit(100, "meters")
  15708. },
  15709. {
  15710. name: "Megamacro",
  15711. height: math.unit(15, "miles")
  15712. },
  15713. ]
  15714. ))
  15715. characterMakers.push(() => makeCharacter(
  15716. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15717. {
  15718. front: {
  15719. height: math.unit(6, "feet"),
  15720. weight: math.unit(180, "lb"),
  15721. name: "Front",
  15722. image: {
  15723. source: "./media/characters/xochitl/front.svg",
  15724. extra: 2297 / 2261,
  15725. bottom: 0.065
  15726. }
  15727. },
  15728. back: {
  15729. height: math.unit(6, "feet"),
  15730. weight: math.unit(180, "lb"),
  15731. name: "Back",
  15732. image: {
  15733. source: "./media/characters/xochitl/back.svg",
  15734. extra: 2386 / 2354,
  15735. bottom: 0.01
  15736. }
  15737. },
  15738. foot: {
  15739. height: math.unit(6 / 5 * 1.15, "feet"),
  15740. weight: math.unit(150, "lb"),
  15741. name: "Foot",
  15742. image: {
  15743. source: "./media/characters/xochitl/foot.svg"
  15744. }
  15745. },
  15746. },
  15747. [
  15748. {
  15749. name: "Macro",
  15750. height: math.unit(80, "feet")
  15751. },
  15752. {
  15753. name: "Macro+",
  15754. height: math.unit(400, "feet"),
  15755. default: true
  15756. },
  15757. {
  15758. name: "Gigamacro",
  15759. height: math.unit(80000, "miles")
  15760. },
  15761. {
  15762. name: "Gigamacro+",
  15763. height: math.unit(400000, "miles")
  15764. },
  15765. {
  15766. name: "Teramacro",
  15767. height: math.unit(300, "AU")
  15768. },
  15769. ]
  15770. ))
  15771. characterMakers.push(() => makeCharacter(
  15772. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15773. {
  15774. front: {
  15775. height: math.unit(6, "feet"),
  15776. weight: math.unit(150, "lb"),
  15777. name: "Front",
  15778. image: {
  15779. source: "./media/characters/vincent/front.svg",
  15780. extra: 1130 / 1080,
  15781. bottom: 0.055
  15782. }
  15783. },
  15784. beak: {
  15785. height: math.unit(6 * 0.1, "feet"),
  15786. name: "Beak",
  15787. image: {
  15788. source: "./media/characters/vincent/beak.svg"
  15789. }
  15790. },
  15791. hand: {
  15792. height: math.unit(6 * 0.85, "feet"),
  15793. weight: math.unit(150, "lb"),
  15794. name: "Hand",
  15795. image: {
  15796. source: "./media/characters/vincent/hand.svg"
  15797. }
  15798. },
  15799. foot: {
  15800. height: math.unit(6 * 0.19, "feet"),
  15801. weight: math.unit(150, "lb"),
  15802. name: "Foot",
  15803. image: {
  15804. source: "./media/characters/vincent/foot.svg"
  15805. }
  15806. },
  15807. },
  15808. [
  15809. {
  15810. name: "Base",
  15811. height: math.unit(6 + 5 / 12, "feet"),
  15812. default: true
  15813. },
  15814. {
  15815. name: "Macro",
  15816. height: math.unit(300, "feet")
  15817. },
  15818. {
  15819. name: "Megamacro",
  15820. height: math.unit(2, "miles")
  15821. },
  15822. {
  15823. name: "Gigamacro",
  15824. height: math.unit(1000, "miles")
  15825. },
  15826. ]
  15827. ))
  15828. characterMakers.push(() => makeCharacter(
  15829. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15830. {
  15831. front: {
  15832. height: math.unit(2, "meters"),
  15833. weight: math.unit(500, "kg"),
  15834. name: "Front",
  15835. image: {
  15836. source: "./media/characters/coatl/front.svg",
  15837. extra: 3948 / 3500,
  15838. bottom: 0.082
  15839. }
  15840. },
  15841. },
  15842. [
  15843. {
  15844. name: "Normal",
  15845. height: math.unit(4, "meters")
  15846. },
  15847. {
  15848. name: "Macro",
  15849. height: math.unit(100, "meters"),
  15850. default: true
  15851. },
  15852. {
  15853. name: "Macro+",
  15854. height: math.unit(300, "meters")
  15855. },
  15856. {
  15857. name: "Megamacro",
  15858. height: math.unit(3, "gigameters")
  15859. },
  15860. {
  15861. name: "Megamacro+",
  15862. height: math.unit(300, "terameters")
  15863. },
  15864. {
  15865. name: "Megamacro++",
  15866. height: math.unit(3, "lightyears")
  15867. },
  15868. ]
  15869. ))
  15870. characterMakers.push(() => makeCharacter(
  15871. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15872. {
  15873. front: {
  15874. height: math.unit(6, "feet"),
  15875. weight: math.unit(50, "kg"),
  15876. name: "front",
  15877. image: {
  15878. source: "./media/characters/shiroryu/front.svg",
  15879. extra: 1990 / 1935
  15880. }
  15881. },
  15882. },
  15883. [
  15884. {
  15885. name: "Mortal Mingling",
  15886. height: math.unit(3, "meters")
  15887. },
  15888. {
  15889. name: "Kaiju-ish",
  15890. height: math.unit(250, "meters")
  15891. },
  15892. {
  15893. name: "Somewhat Godly",
  15894. height: math.unit(400, "km"),
  15895. default: true
  15896. },
  15897. {
  15898. name: "Planetary",
  15899. height: math.unit(300, "megameters")
  15900. },
  15901. {
  15902. name: "Galaxy-dwarfing",
  15903. height: math.unit(450, "kiloparsecs")
  15904. },
  15905. {
  15906. name: "Universe Eater",
  15907. height: math.unit(150, "gigaparsecs")
  15908. },
  15909. {
  15910. name: "Almost Immeasurable",
  15911. height: math.unit(1.3e266, "yottaparsecs")
  15912. },
  15913. ]
  15914. ))
  15915. characterMakers.push(() => makeCharacter(
  15916. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15917. {
  15918. front: {
  15919. height: math.unit(6, "feet"),
  15920. weight: math.unit(150, "lb"),
  15921. name: "Front",
  15922. image: {
  15923. source: "./media/characters/umeko/front.svg",
  15924. extra: 1,
  15925. bottom: 0.019
  15926. }
  15927. },
  15928. frontArmored: {
  15929. height: math.unit(6, "feet"),
  15930. weight: math.unit(150, "lb"),
  15931. name: "Front (Armored)",
  15932. image: {
  15933. source: "./media/characters/umeko/front-armored.svg",
  15934. extra: 1,
  15935. bottom: 0.021
  15936. }
  15937. },
  15938. },
  15939. [
  15940. {
  15941. name: "Macro",
  15942. height: math.unit(220, "feet"),
  15943. default: true
  15944. },
  15945. {
  15946. name: "Guardian Dragon",
  15947. height: math.unit(50, "miles")
  15948. },
  15949. {
  15950. name: "Cosmic",
  15951. height: math.unit(800000, "miles")
  15952. },
  15953. ]
  15954. ))
  15955. characterMakers.push(() => makeCharacter(
  15956. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15957. {
  15958. front: {
  15959. height: math.unit(6, "feet"),
  15960. weight: math.unit(150, "lb"),
  15961. name: "Front",
  15962. image: {
  15963. source: "./media/characters/cassidy/front.svg",
  15964. extra: 810/808,
  15965. bottom: 41/851
  15966. }
  15967. },
  15968. },
  15969. [
  15970. {
  15971. name: "Canon Height",
  15972. height: math.unit(120, "feet"),
  15973. default: true
  15974. },
  15975. {
  15976. name: "Macro+",
  15977. height: math.unit(400, "feet")
  15978. },
  15979. {
  15980. name: "Macro++",
  15981. height: math.unit(4000, "feet")
  15982. },
  15983. {
  15984. name: "Megamacro",
  15985. height: math.unit(3, "miles")
  15986. },
  15987. ]
  15988. ))
  15989. characterMakers.push(() => makeCharacter(
  15990. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15991. {
  15992. front: {
  15993. height: math.unit(6, "feet"),
  15994. weight: math.unit(150, "lb"),
  15995. name: "Front",
  15996. image: {
  15997. source: "./media/characters/isaac/front.svg",
  15998. extra: 896 / 815,
  15999. bottom: 0.11
  16000. }
  16001. },
  16002. },
  16003. [
  16004. {
  16005. name: "Human Size",
  16006. height: math.unit(8, "feet"),
  16007. default: true
  16008. },
  16009. {
  16010. name: "Macro",
  16011. height: math.unit(400, "feet")
  16012. },
  16013. {
  16014. name: "Megamacro",
  16015. height: math.unit(50, "miles")
  16016. },
  16017. {
  16018. name: "Canon Height",
  16019. height: math.unit(200, "AU")
  16020. },
  16021. ]
  16022. ))
  16023. characterMakers.push(() => makeCharacter(
  16024. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  16025. {
  16026. front: {
  16027. height: math.unit(6, "feet"),
  16028. weight: math.unit(72, "kg"),
  16029. name: "Front",
  16030. image: {
  16031. source: "./media/characters/sleekit/front.svg",
  16032. extra: 4693 / 4487,
  16033. bottom: 0.012
  16034. }
  16035. },
  16036. },
  16037. [
  16038. {
  16039. name: "Minimum Height",
  16040. height: math.unit(10, "meters")
  16041. },
  16042. {
  16043. name: "Smaller",
  16044. height: math.unit(25, "meters")
  16045. },
  16046. {
  16047. name: "Larger",
  16048. height: math.unit(38, "meters"),
  16049. default: true
  16050. },
  16051. {
  16052. name: "Maximum height",
  16053. height: math.unit(100, "meters")
  16054. },
  16055. ]
  16056. ))
  16057. characterMakers.push(() => makeCharacter(
  16058. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  16059. {
  16060. front: {
  16061. height: math.unit(6, "feet"),
  16062. weight: math.unit(150, "lb"),
  16063. name: "Front",
  16064. image: {
  16065. source: "./media/characters/nillia/front.svg",
  16066. extra: 719/665,
  16067. bottom: 6/725
  16068. }
  16069. },
  16070. back: {
  16071. height: math.unit(6, "feet"),
  16072. weight: math.unit(150, "lb"),
  16073. name: "Back",
  16074. image: {
  16075. source: "./media/characters/nillia/back.svg",
  16076. extra: 705/651,
  16077. bottom: 5/710
  16078. }
  16079. },
  16080. },
  16081. [
  16082. {
  16083. name: "Canon Height",
  16084. height: math.unit(489, "feet"),
  16085. default: true
  16086. }
  16087. ]
  16088. ))
  16089. characterMakers.push(() => makeCharacter(
  16090. { name: "Mesmyriza", species: ["shark", "dragon", "robot", "deity"], tags: ["anthro"] },
  16091. {
  16092. front: {
  16093. height: math.unit(6, "feet"),
  16094. weight: math.unit(150, "lb"),
  16095. name: "Front",
  16096. image: {
  16097. source: "./media/characters/mesmyriza/front.svg",
  16098. extra: 1541/1291,
  16099. bottom: 87/1628
  16100. }
  16101. },
  16102. foot: {
  16103. height: math.unit(6 / (250 / 35), "feet"),
  16104. name: "Foot",
  16105. image: {
  16106. source: "./media/characters/mesmyriza/foot.svg"
  16107. }
  16108. },
  16109. },
  16110. [
  16111. {
  16112. name: "Macro",
  16113. height: math.unit(457, "meters"),
  16114. default: true
  16115. },
  16116. {
  16117. name: "Megamacro",
  16118. height: math.unit(8, "megameters")
  16119. },
  16120. ]
  16121. ))
  16122. characterMakers.push(() => makeCharacter(
  16123. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  16124. {
  16125. front: {
  16126. height: math.unit(6, "feet"),
  16127. weight: math.unit(250, "lb"),
  16128. name: "Front",
  16129. image: {
  16130. source: "./media/characters/saudade/front.svg",
  16131. extra: 1172 / 1139,
  16132. bottom: 0.035
  16133. }
  16134. },
  16135. },
  16136. [
  16137. {
  16138. name: "Micro",
  16139. height: math.unit(3, "inches")
  16140. },
  16141. {
  16142. name: "Normal",
  16143. height: math.unit(6, "feet"),
  16144. default: true
  16145. },
  16146. {
  16147. name: "Macro",
  16148. height: math.unit(50, "feet")
  16149. },
  16150. {
  16151. name: "Megamacro",
  16152. height: math.unit(2800, "feet")
  16153. },
  16154. ]
  16155. ))
  16156. characterMakers.push(() => makeCharacter(
  16157. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  16158. {
  16159. front: {
  16160. height: math.unit(5 + 4 / 12, "feet"),
  16161. weight: math.unit(100, "lb"),
  16162. name: "Front",
  16163. image: {
  16164. source: "./media/characters/keireer/front.svg",
  16165. extra: 716 / 666,
  16166. bottom: 0.05
  16167. }
  16168. },
  16169. },
  16170. [
  16171. {
  16172. name: "Normal",
  16173. height: math.unit(5 + 4 / 12, "feet"),
  16174. default: true
  16175. },
  16176. ]
  16177. ))
  16178. characterMakers.push(() => makeCharacter(
  16179. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  16180. {
  16181. front: {
  16182. height: math.unit(5.5, "feet"),
  16183. weight: math.unit(90, "kg"),
  16184. name: "Front",
  16185. image: {
  16186. source: "./media/characters/mirja/front.svg",
  16187. extra: 1452/1262,
  16188. bottom: 67/1519
  16189. }
  16190. },
  16191. frontDressed: {
  16192. height: math.unit(5.5, "feet"),
  16193. weight: math.unit(90, "lb"),
  16194. name: "Front (Dressed)",
  16195. image: {
  16196. source: "./media/characters/mirja/dressed.svg",
  16197. extra: 1452/1262,
  16198. bottom: 67/1519
  16199. }
  16200. },
  16201. back: {
  16202. height: math.unit(6, "feet"),
  16203. weight: math.unit(90, "lb"),
  16204. name: "Back",
  16205. image: {
  16206. source: "./media/characters/mirja/back.svg",
  16207. extra: 1892/1795,
  16208. bottom: 48/1940
  16209. }
  16210. },
  16211. maw: {
  16212. height: math.unit(1.312, "feet"),
  16213. name: "Maw",
  16214. image: {
  16215. source: "./media/characters/mirja/maw.svg"
  16216. }
  16217. },
  16218. paw: {
  16219. height: math.unit(1.15, "feet"),
  16220. name: "Paw",
  16221. image: {
  16222. source: "./media/characters/mirja/paw.svg"
  16223. }
  16224. },
  16225. },
  16226. [
  16227. {
  16228. name: "\"Incognito\"",
  16229. height: math.unit(3, "meters")
  16230. },
  16231. {
  16232. name: "Strolling Size",
  16233. height: math.unit(15, "km")
  16234. },
  16235. {
  16236. name: "Larger Strolling Size",
  16237. height: math.unit(400, "km")
  16238. },
  16239. {
  16240. name: "Preferred Size",
  16241. height: math.unit(5000, "km"),
  16242. default: true
  16243. },
  16244. {
  16245. name: "True Size",
  16246. height: math.unit(30657809462086840000000000000000, "parsecs"),
  16247. },
  16248. ]
  16249. ))
  16250. characterMakers.push(() => makeCharacter(
  16251. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  16252. {
  16253. front: {
  16254. height: math.unit(15, "feet"),
  16255. weight: math.unit(880, "kg"),
  16256. name: "Front",
  16257. image: {
  16258. source: "./media/characters/nightraver/front.svg",
  16259. extra: 2444 / 2160,
  16260. bottom: 0.027
  16261. }
  16262. },
  16263. back: {
  16264. height: math.unit(15, "feet"),
  16265. weight: math.unit(880, "kg"),
  16266. name: "Back",
  16267. image: {
  16268. source: "./media/characters/nightraver/back.svg",
  16269. extra: 2309 / 2180,
  16270. bottom: 0.005
  16271. }
  16272. },
  16273. sole: {
  16274. height: math.unit(2.878, "feet"),
  16275. name: "Sole",
  16276. image: {
  16277. source: "./media/characters/nightraver/sole.svg"
  16278. }
  16279. },
  16280. foot: {
  16281. height: math.unit(2.285, "feet"),
  16282. name: "Foot",
  16283. image: {
  16284. source: "./media/characters/nightraver/foot.svg"
  16285. }
  16286. },
  16287. maw: {
  16288. height: math.unit(2.67, "feet"),
  16289. name: "Maw",
  16290. image: {
  16291. source: "./media/characters/nightraver/maw.svg"
  16292. }
  16293. },
  16294. },
  16295. [
  16296. {
  16297. name: "Micro",
  16298. height: math.unit(1, "cm")
  16299. },
  16300. {
  16301. name: "Normal",
  16302. height: math.unit(15, "feet"),
  16303. default: true
  16304. },
  16305. {
  16306. name: "Macro",
  16307. height: math.unit(300, "feet")
  16308. },
  16309. {
  16310. name: "Megamacro",
  16311. height: math.unit(300, "miles")
  16312. },
  16313. {
  16314. name: "Gigamacro",
  16315. height: math.unit(10000, "miles")
  16316. },
  16317. ]
  16318. ))
  16319. characterMakers.push(() => makeCharacter(
  16320. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16321. {
  16322. side: {
  16323. height: math.unit(2, "inches"),
  16324. weight: math.unit(5, "grams"),
  16325. name: "Side",
  16326. image: {
  16327. source: "./media/characters/arc/side.svg"
  16328. }
  16329. },
  16330. },
  16331. [
  16332. {
  16333. name: "Micro",
  16334. height: math.unit(2, "inches"),
  16335. default: true
  16336. },
  16337. ]
  16338. ))
  16339. characterMakers.push(() => makeCharacter(
  16340. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16341. {
  16342. front: {
  16343. height: math.unit(1.1938, "meters"),
  16344. weight: math.unit(54, "kg"),
  16345. name: "Front",
  16346. image: {
  16347. source: "./media/characters/nebula-shahar/front.svg",
  16348. extra: 1642 / 1436,
  16349. bottom: 0.06
  16350. }
  16351. },
  16352. },
  16353. [
  16354. {
  16355. name: "Megamicro",
  16356. height: math.unit(0.3, "mm")
  16357. },
  16358. {
  16359. name: "Micro",
  16360. height: math.unit(3, "cm")
  16361. },
  16362. {
  16363. name: "Normal",
  16364. height: math.unit(138, "cm"),
  16365. default: true
  16366. },
  16367. {
  16368. name: "Macro",
  16369. height: math.unit(30, "m")
  16370. },
  16371. ]
  16372. ))
  16373. characterMakers.push(() => makeCharacter(
  16374. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16375. {
  16376. front: {
  16377. height: math.unit(5.24, "feet"),
  16378. weight: math.unit(150, "lb"),
  16379. name: "Front",
  16380. image: {
  16381. source: "./media/characters/shayla/front.svg",
  16382. extra: 1512 / 1414,
  16383. bottom: 0.01
  16384. }
  16385. },
  16386. back: {
  16387. height: math.unit(5.24, "feet"),
  16388. weight: math.unit(150, "lb"),
  16389. name: "Back",
  16390. image: {
  16391. source: "./media/characters/shayla/back.svg",
  16392. extra: 1512 / 1414
  16393. }
  16394. },
  16395. hand: {
  16396. height: math.unit(0.7781496062992126, "feet"),
  16397. name: "Hand",
  16398. image: {
  16399. source: "./media/characters/shayla/hand.svg"
  16400. }
  16401. },
  16402. foot: {
  16403. height: math.unit(1.4206036745406823, "feet"),
  16404. name: "Foot",
  16405. image: {
  16406. source: "./media/characters/shayla/foot.svg"
  16407. }
  16408. },
  16409. },
  16410. [
  16411. {
  16412. name: "Micro",
  16413. height: math.unit(0.32, "feet")
  16414. },
  16415. {
  16416. name: "Normal",
  16417. height: math.unit(5.24, "feet"),
  16418. default: true
  16419. },
  16420. {
  16421. name: "Macro",
  16422. height: math.unit(492.12, "feet")
  16423. },
  16424. {
  16425. name: "Megamacro",
  16426. height: math.unit(186.41, "miles")
  16427. },
  16428. ]
  16429. ))
  16430. characterMakers.push(() => makeCharacter(
  16431. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16432. {
  16433. front: {
  16434. height: math.unit(2.2, "m"),
  16435. weight: math.unit(120, "kg"),
  16436. name: "Front",
  16437. image: {
  16438. source: "./media/characters/pia-jr/front.svg",
  16439. extra: 1000 / 970,
  16440. bottom: 0.035
  16441. }
  16442. },
  16443. hand: {
  16444. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16445. name: "Hand",
  16446. image: {
  16447. source: "./media/characters/pia-jr/hand.svg"
  16448. }
  16449. },
  16450. paw: {
  16451. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16452. name: "Paw",
  16453. image: {
  16454. source: "./media/characters/pia-jr/paw.svg"
  16455. }
  16456. },
  16457. },
  16458. [
  16459. {
  16460. name: "Micro",
  16461. height: math.unit(1.2, "cm")
  16462. },
  16463. {
  16464. name: "Normal",
  16465. height: math.unit(2.2, "m"),
  16466. default: true
  16467. },
  16468. {
  16469. name: "Macro",
  16470. height: math.unit(180, "m")
  16471. },
  16472. {
  16473. name: "Megamacro",
  16474. height: math.unit(420, "km")
  16475. },
  16476. ]
  16477. ))
  16478. characterMakers.push(() => makeCharacter(
  16479. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16480. {
  16481. front: {
  16482. height: math.unit(2, "m"),
  16483. weight: math.unit(115, "kg"),
  16484. name: "Front",
  16485. image: {
  16486. source: "./media/characters/pia-sr/front.svg",
  16487. extra: 760 / 730,
  16488. bottom: 0.015
  16489. }
  16490. },
  16491. back: {
  16492. height: math.unit(2, "m"),
  16493. weight: math.unit(115, "kg"),
  16494. name: "Back",
  16495. image: {
  16496. source: "./media/characters/pia-sr/back.svg",
  16497. extra: 760 / 730,
  16498. bottom: 0.01
  16499. }
  16500. },
  16501. hand: {
  16502. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16503. name: "Hand",
  16504. image: {
  16505. source: "./media/characters/pia-sr/hand.svg"
  16506. }
  16507. },
  16508. foot: {
  16509. height: math.unit(1.83, "feet"),
  16510. name: "Foot",
  16511. image: {
  16512. source: "./media/characters/pia-sr/foot.svg"
  16513. }
  16514. },
  16515. },
  16516. [
  16517. {
  16518. name: "Micro",
  16519. height: math.unit(88, "mm")
  16520. },
  16521. {
  16522. name: "Normal",
  16523. height: math.unit(2, "m"),
  16524. default: true
  16525. },
  16526. {
  16527. name: "Macro",
  16528. height: math.unit(200, "m")
  16529. },
  16530. {
  16531. name: "Megamacro",
  16532. height: math.unit(420, "km")
  16533. },
  16534. ]
  16535. ))
  16536. characterMakers.push(() => makeCharacter(
  16537. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16538. {
  16539. front: {
  16540. height: math.unit(8 + 2 / 12, "feet"),
  16541. weight: math.unit(300, "lb"),
  16542. name: "Front",
  16543. image: {
  16544. source: "./media/characters/kibibyte/front.svg",
  16545. extra: 2221 / 2098,
  16546. bottom: 0.04
  16547. }
  16548. },
  16549. },
  16550. [
  16551. {
  16552. name: "Normal",
  16553. height: math.unit(8 + 2 / 12, "feet"),
  16554. default: true
  16555. },
  16556. {
  16557. name: "Socialable Macro",
  16558. height: math.unit(50, "feet")
  16559. },
  16560. {
  16561. name: "Macro",
  16562. height: math.unit(300, "feet")
  16563. },
  16564. {
  16565. name: "Megamacro",
  16566. height: math.unit(500, "miles")
  16567. },
  16568. ]
  16569. ))
  16570. characterMakers.push(() => makeCharacter(
  16571. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16572. {
  16573. front: {
  16574. height: math.unit(6, "feet"),
  16575. weight: math.unit(150, "lb"),
  16576. name: "Front",
  16577. image: {
  16578. source: "./media/characters/felix/front.svg",
  16579. extra: 762 / 722,
  16580. bottom: 0.02
  16581. }
  16582. },
  16583. frontClothed: {
  16584. height: math.unit(6, "feet"),
  16585. weight: math.unit(150, "lb"),
  16586. name: "Front (Clothed)",
  16587. image: {
  16588. source: "./media/characters/felix/front-clothed.svg",
  16589. extra: 762 / 722,
  16590. bottom: 0.02
  16591. }
  16592. },
  16593. },
  16594. [
  16595. {
  16596. name: "Normal",
  16597. height: math.unit(6 + 8 / 12, "feet"),
  16598. default: true
  16599. },
  16600. {
  16601. name: "Macro",
  16602. height: math.unit(2600, "feet")
  16603. },
  16604. {
  16605. name: "Megamacro",
  16606. height: math.unit(450, "miles")
  16607. },
  16608. ]
  16609. ))
  16610. characterMakers.push(() => makeCharacter(
  16611. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16612. {
  16613. front: {
  16614. height: math.unit(6 + 1 / 12, "feet"),
  16615. weight: math.unit(250, "lb"),
  16616. name: "Front",
  16617. image: {
  16618. source: "./media/characters/tobo/front.svg",
  16619. extra: 608 / 586,
  16620. bottom: 0.023
  16621. }
  16622. },
  16623. back: {
  16624. height: math.unit(6 + 1 / 12, "feet"),
  16625. weight: math.unit(250, "lb"),
  16626. name: "Back",
  16627. image: {
  16628. source: "./media/characters/tobo/back.svg",
  16629. extra: 608 / 586
  16630. }
  16631. },
  16632. },
  16633. [
  16634. {
  16635. name: "Nano",
  16636. height: math.unit(2, "nm")
  16637. },
  16638. {
  16639. name: "Megamicro",
  16640. height: math.unit(0.1, "mm")
  16641. },
  16642. {
  16643. name: "Micro",
  16644. height: math.unit(1, "inch"),
  16645. default: true
  16646. },
  16647. {
  16648. name: "Human-sized",
  16649. height: math.unit(6 + 1 / 12, "feet")
  16650. },
  16651. {
  16652. name: "Macro",
  16653. height: math.unit(250, "feet")
  16654. },
  16655. {
  16656. name: "Megamacro",
  16657. height: math.unit(75, "miles")
  16658. },
  16659. {
  16660. name: "Texas-sized",
  16661. height: math.unit(750, "miles")
  16662. },
  16663. {
  16664. name: "Teramacro",
  16665. height: math.unit(50000, "miles")
  16666. },
  16667. ]
  16668. ))
  16669. characterMakers.push(() => makeCharacter(
  16670. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16671. {
  16672. front: {
  16673. height: math.unit(6, "feet"),
  16674. weight: math.unit(269, "lb"),
  16675. name: "Front",
  16676. image: {
  16677. source: "./media/characters/danny-kapowsky/front.svg",
  16678. extra: 766 / 736,
  16679. bottom: 0.044
  16680. }
  16681. },
  16682. back: {
  16683. height: math.unit(6, "feet"),
  16684. weight: math.unit(269, "lb"),
  16685. name: "Back",
  16686. image: {
  16687. source: "./media/characters/danny-kapowsky/back.svg",
  16688. extra: 797 / 760,
  16689. bottom: 0.025
  16690. }
  16691. },
  16692. },
  16693. [
  16694. {
  16695. name: "Macro",
  16696. height: math.unit(150, "feet"),
  16697. default: true
  16698. },
  16699. {
  16700. name: "Macro+",
  16701. height: math.unit(200, "feet")
  16702. },
  16703. {
  16704. name: "Macro++",
  16705. height: math.unit(300, "feet")
  16706. },
  16707. {
  16708. name: "Macro+++",
  16709. height: math.unit(400, "feet")
  16710. },
  16711. ]
  16712. ))
  16713. characterMakers.push(() => makeCharacter(
  16714. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16715. {
  16716. side: {
  16717. height: math.unit(6, "feet"),
  16718. weight: math.unit(170, "lb"),
  16719. name: "Side",
  16720. image: {
  16721. source: "./media/characters/finn/side.svg",
  16722. extra: 1953 / 1807,
  16723. bottom: 0.057
  16724. }
  16725. },
  16726. },
  16727. [
  16728. {
  16729. name: "Megamacro",
  16730. height: math.unit(14445, "feet"),
  16731. default: true
  16732. },
  16733. ]
  16734. ))
  16735. characterMakers.push(() => makeCharacter(
  16736. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16737. {
  16738. front: {
  16739. height: math.unit(5 + 6 / 12, "feet"),
  16740. weight: math.unit(125, "lb"),
  16741. name: "Front",
  16742. image: {
  16743. source: "./media/characters/roy/front.svg",
  16744. extra: 1,
  16745. bottom: 0.11
  16746. }
  16747. },
  16748. },
  16749. [
  16750. {
  16751. name: "Micro",
  16752. height: math.unit(3, "inches"),
  16753. default: true
  16754. },
  16755. {
  16756. name: "Normal",
  16757. height: math.unit(5 + 6 / 12, "feet")
  16758. },
  16759. {
  16760. name: "Lesser Macro",
  16761. height: math.unit(60, "feet")
  16762. },
  16763. {
  16764. name: "Greater Macro",
  16765. height: math.unit(120, "feet")
  16766. },
  16767. ]
  16768. ))
  16769. characterMakers.push(() => makeCharacter(
  16770. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16771. {
  16772. front: {
  16773. height: math.unit(6, "feet"),
  16774. weight: math.unit(100, "lb"),
  16775. name: "Front",
  16776. image: {
  16777. source: "./media/characters/aevsivs/front.svg",
  16778. extra: 1,
  16779. bottom: 0.03
  16780. }
  16781. },
  16782. back: {
  16783. height: math.unit(6, "feet"),
  16784. weight: math.unit(100, "lb"),
  16785. name: "Back",
  16786. image: {
  16787. source: "./media/characters/aevsivs/back.svg"
  16788. }
  16789. },
  16790. },
  16791. [
  16792. {
  16793. name: "Micro",
  16794. height: math.unit(2, "inches"),
  16795. default: true
  16796. },
  16797. {
  16798. name: "Normal",
  16799. height: math.unit(5, "feet")
  16800. },
  16801. ]
  16802. ))
  16803. characterMakers.push(() => makeCharacter(
  16804. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16805. {
  16806. front: {
  16807. height: math.unit(5 + 7 / 12, "feet"),
  16808. weight: math.unit(159, "lb"),
  16809. name: "Front",
  16810. image: {
  16811. source: "./media/characters/hildegard/front.svg",
  16812. extra: 289 / 269,
  16813. bottom: 7.63 / 297.8
  16814. }
  16815. },
  16816. back: {
  16817. height: math.unit(5 + 7 / 12, "feet"),
  16818. weight: math.unit(159, "lb"),
  16819. name: "Back",
  16820. image: {
  16821. source: "./media/characters/hildegard/back.svg",
  16822. extra: 280 / 260,
  16823. bottom: 2.3 / 282
  16824. }
  16825. },
  16826. },
  16827. [
  16828. {
  16829. name: "Normal",
  16830. height: math.unit(5 + 7 / 12, "feet"),
  16831. default: true
  16832. },
  16833. ]
  16834. ))
  16835. characterMakers.push(() => makeCharacter(
  16836. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16837. {
  16838. bernard: {
  16839. height: math.unit(2 + 7 / 12, "feet"),
  16840. weight: math.unit(66, "lb"),
  16841. name: "Bernard",
  16842. rename: true,
  16843. image: {
  16844. source: "./media/characters/bernard-wilder/bernard.svg",
  16845. extra: 192 / 128,
  16846. bottom: 0.05
  16847. }
  16848. },
  16849. wilder: {
  16850. height: math.unit(5 + 8 / 12, "feet"),
  16851. weight: math.unit(143, "lb"),
  16852. name: "Wilder",
  16853. rename: true,
  16854. image: {
  16855. source: "./media/characters/bernard-wilder/wilder.svg",
  16856. extra: 361 / 312,
  16857. bottom: 0.02
  16858. }
  16859. },
  16860. },
  16861. [
  16862. {
  16863. name: "Normal",
  16864. height: math.unit(2 + 7 / 12, "feet"),
  16865. default: true
  16866. },
  16867. ]
  16868. ))
  16869. characterMakers.push(() => makeCharacter(
  16870. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16871. {
  16872. anthro: {
  16873. height: math.unit(6 + 1 / 12, "feet"),
  16874. weight: math.unit(155, "lb"),
  16875. name: "Anthro",
  16876. image: {
  16877. source: "./media/characters/hearth/anthro.svg",
  16878. extra: 1178/1136,
  16879. bottom: 28/1206
  16880. }
  16881. },
  16882. feral: {
  16883. height: math.unit(3.78, "feet"),
  16884. weight: math.unit(35, "kg"),
  16885. name: "Feral",
  16886. image: {
  16887. source: "./media/characters/hearth/feral.svg",
  16888. extra: 153 / 135,
  16889. bottom: 0.03
  16890. }
  16891. },
  16892. },
  16893. [
  16894. {
  16895. name: "Normal",
  16896. height: math.unit(6 + 1 / 12, "feet"),
  16897. default: true
  16898. },
  16899. ]
  16900. ))
  16901. characterMakers.push(() => makeCharacter(
  16902. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16903. {
  16904. front: {
  16905. height: math.unit(6, "feet"),
  16906. weight: math.unit(182, "lb"),
  16907. name: "Front",
  16908. image: {
  16909. source: "./media/characters/ingrid/front.svg",
  16910. extra: 294 / 268,
  16911. bottom: 0.027
  16912. }
  16913. },
  16914. },
  16915. [
  16916. {
  16917. name: "Normal",
  16918. height: math.unit(6, "feet"),
  16919. default: true
  16920. },
  16921. ]
  16922. ))
  16923. characterMakers.push(() => makeCharacter(
  16924. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16925. {
  16926. eevee: {
  16927. height: math.unit(2 + 10 / 12, "feet"),
  16928. weight: math.unit(86, "lb"),
  16929. name: "Malgam",
  16930. image: {
  16931. source: "./media/characters/malgam/eevee.svg",
  16932. extra: 952/784,
  16933. bottom: 38/990
  16934. }
  16935. },
  16936. sylveon: {
  16937. height: math.unit(4, "feet"),
  16938. weight: math.unit(101, "lb"),
  16939. name: "Future Malgam",
  16940. rename: true,
  16941. image: {
  16942. source: "./media/characters/malgam/sylveon.svg",
  16943. extra: 371 / 325,
  16944. bottom: 0.015
  16945. }
  16946. },
  16947. gigantamax: {
  16948. height: math.unit(50, "feet"),
  16949. name: "Gigantamax Malgam",
  16950. rename: true,
  16951. image: {
  16952. source: "./media/characters/malgam/gigantamax.svg"
  16953. }
  16954. },
  16955. },
  16956. [
  16957. {
  16958. name: "Normal",
  16959. height: math.unit(2 + 10 / 12, "feet"),
  16960. default: true
  16961. },
  16962. ]
  16963. ))
  16964. characterMakers.push(() => makeCharacter(
  16965. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16966. {
  16967. front: {
  16968. height: math.unit(5 + 11 / 12, "feet"),
  16969. weight: math.unit(188, "lb"),
  16970. name: "Front",
  16971. image: {
  16972. source: "./media/characters/fleur/front.svg",
  16973. extra: 309 / 283,
  16974. bottom: 0.007
  16975. }
  16976. },
  16977. },
  16978. [
  16979. {
  16980. name: "Normal",
  16981. height: math.unit(5 + 11 / 12, "feet"),
  16982. default: true
  16983. },
  16984. ]
  16985. ))
  16986. characterMakers.push(() => makeCharacter(
  16987. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16988. {
  16989. front: {
  16990. height: math.unit(5 + 4 / 12, "feet"),
  16991. weight: math.unit(122, "lb"),
  16992. name: "Front",
  16993. image: {
  16994. source: "./media/characters/jude/front.svg",
  16995. extra: 288 / 273,
  16996. bottom: 0.03
  16997. }
  16998. },
  16999. },
  17000. [
  17001. {
  17002. name: "Normal",
  17003. height: math.unit(5 + 4 / 12, "feet"),
  17004. default: true
  17005. },
  17006. ]
  17007. ))
  17008. characterMakers.push(() => makeCharacter(
  17009. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  17010. {
  17011. front: {
  17012. height: math.unit(5 + 11 / 12, "feet"),
  17013. weight: math.unit(190, "lb"),
  17014. name: "Front",
  17015. image: {
  17016. source: "./media/characters/seara/front.svg",
  17017. extra: 1,
  17018. bottom: 0.05
  17019. }
  17020. },
  17021. },
  17022. [
  17023. {
  17024. name: "Normal",
  17025. height: math.unit(5 + 11 / 12, "feet"),
  17026. default: true
  17027. },
  17028. ]
  17029. ))
  17030. characterMakers.push(() => makeCharacter(
  17031. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  17032. {
  17033. front: {
  17034. height: math.unit(16 + 5 / 12, "feet"),
  17035. weight: math.unit(524, "lb"),
  17036. name: "Front",
  17037. image: {
  17038. source: "./media/characters/caspian-lugia/front.svg",
  17039. extra: 1,
  17040. bottom: 0.04
  17041. }
  17042. },
  17043. },
  17044. [
  17045. {
  17046. name: "Normal",
  17047. height: math.unit(16 + 5 / 12, "feet"),
  17048. default: true
  17049. },
  17050. ]
  17051. ))
  17052. characterMakers.push(() => makeCharacter(
  17053. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  17054. {
  17055. front: {
  17056. height: math.unit(5 + 7 / 12, "feet"),
  17057. weight: math.unit(170, "lb"),
  17058. name: "Front",
  17059. image: {
  17060. source: "./media/characters/mika/front.svg",
  17061. extra: 1,
  17062. bottom: 0.016
  17063. }
  17064. },
  17065. },
  17066. [
  17067. {
  17068. name: "Normal",
  17069. height: math.unit(5 + 7 / 12, "feet"),
  17070. default: true
  17071. },
  17072. ]
  17073. ))
  17074. characterMakers.push(() => makeCharacter(
  17075. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  17076. {
  17077. front: {
  17078. height: math.unit(6 + 2 / 12, "feet"),
  17079. weight: math.unit(268, "lb"),
  17080. name: "Front",
  17081. image: {
  17082. source: "./media/characters/sol/front.svg",
  17083. extra: 247 / 231,
  17084. bottom: 0.05
  17085. }
  17086. },
  17087. },
  17088. [
  17089. {
  17090. name: "Normal",
  17091. height: math.unit(6 + 2 / 12, "feet"),
  17092. default: true
  17093. },
  17094. ]
  17095. ))
  17096. characterMakers.push(() => makeCharacter(
  17097. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  17098. {
  17099. buizel: {
  17100. height: math.unit(2 + 5 / 12, "feet"),
  17101. weight: math.unit(87, "lb"),
  17102. name: "Front",
  17103. image: {
  17104. source: "./media/characters/umiko/buizel.svg",
  17105. extra: 172 / 157,
  17106. bottom: 0.01
  17107. },
  17108. form: "buizel",
  17109. default: true
  17110. },
  17111. floatzel: {
  17112. height: math.unit(5 + 9 / 12, "feet"),
  17113. weight: math.unit(250, "lb"),
  17114. name: "Front",
  17115. image: {
  17116. source: "./media/characters/umiko/floatzel.svg",
  17117. extra: 1076/1006,
  17118. bottom: 15/1091
  17119. },
  17120. form: "floatzel",
  17121. default: true
  17122. },
  17123. },
  17124. [
  17125. {
  17126. name: "Normal",
  17127. height: math.unit(2 + 5 / 12, "feet"),
  17128. form: "buizel",
  17129. default: true
  17130. },
  17131. {
  17132. name: "Normal",
  17133. height: math.unit(5 + 9 / 12, "feet"),
  17134. form: "floatzel",
  17135. default: true
  17136. },
  17137. ],
  17138. {
  17139. "buizel": {
  17140. name: "Buizel"
  17141. },
  17142. "floatzel": {
  17143. name: "Floatzel",
  17144. default: true
  17145. }
  17146. }
  17147. ))
  17148. characterMakers.push(() => makeCharacter(
  17149. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  17150. {
  17151. front: {
  17152. height: math.unit(6 + 2 / 12, "feet"),
  17153. weight: math.unit(146, "lb"),
  17154. name: "Front",
  17155. image: {
  17156. source: "./media/characters/iliac/front.svg",
  17157. extra: 389 / 365,
  17158. bottom: 0.035
  17159. }
  17160. },
  17161. },
  17162. [
  17163. {
  17164. name: "Normal",
  17165. height: math.unit(6 + 2 / 12, "feet"),
  17166. default: true
  17167. },
  17168. ]
  17169. ))
  17170. characterMakers.push(() => makeCharacter(
  17171. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  17172. {
  17173. front: {
  17174. height: math.unit(6, "feet"),
  17175. weight: math.unit(170, "lb"),
  17176. name: "Front",
  17177. image: {
  17178. source: "./media/characters/topaz/front.svg",
  17179. extra: 317 / 303,
  17180. bottom: 0.055
  17181. }
  17182. },
  17183. },
  17184. [
  17185. {
  17186. name: "Normal",
  17187. height: math.unit(6, "feet"),
  17188. default: true
  17189. },
  17190. ]
  17191. ))
  17192. characterMakers.push(() => makeCharacter(
  17193. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  17194. {
  17195. front: {
  17196. height: math.unit(5 + 11 / 12, "feet"),
  17197. weight: math.unit(144, "lb"),
  17198. name: "Front",
  17199. image: {
  17200. source: "./media/characters/gabriel/front.svg",
  17201. extra: 285 / 262,
  17202. bottom: 0.004
  17203. }
  17204. },
  17205. },
  17206. [
  17207. {
  17208. name: "Normal",
  17209. height: math.unit(5 + 11 / 12, "feet"),
  17210. default: true
  17211. },
  17212. ]
  17213. ))
  17214. characterMakers.push(() => makeCharacter(
  17215. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  17216. {
  17217. side: {
  17218. height: math.unit(6 + 5 / 12, "feet"),
  17219. weight: math.unit(300, "lb"),
  17220. name: "Side",
  17221. image: {
  17222. source: "./media/characters/tempest-suicune/side.svg",
  17223. extra: 195 / 154,
  17224. bottom: 0.04
  17225. }
  17226. },
  17227. },
  17228. [
  17229. {
  17230. name: "Normal",
  17231. height: math.unit(6 + 5 / 12, "feet"),
  17232. default: true
  17233. },
  17234. ]
  17235. ))
  17236. characterMakers.push(() => makeCharacter(
  17237. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  17238. {
  17239. front: {
  17240. height: math.unit(7 + 2 / 12, "feet"),
  17241. weight: math.unit(322, "lb"),
  17242. name: "Front",
  17243. image: {
  17244. source: "./media/characters/vulcan/front.svg",
  17245. extra: 154 / 147,
  17246. bottom: 0.04
  17247. }
  17248. },
  17249. },
  17250. [
  17251. {
  17252. name: "Normal",
  17253. height: math.unit(7 + 2 / 12, "feet"),
  17254. default: true
  17255. },
  17256. ]
  17257. ))
  17258. characterMakers.push(() => makeCharacter(
  17259. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  17260. {
  17261. front: {
  17262. height: math.unit(5 + 10 / 12, "feet"),
  17263. weight: math.unit(264, "lb"),
  17264. name: "Front",
  17265. image: {
  17266. source: "./media/characters/gault/front.svg",
  17267. extra: 161 / 140,
  17268. bottom: 0.028
  17269. }
  17270. },
  17271. },
  17272. [
  17273. {
  17274. name: "Normal",
  17275. height: math.unit(5 + 10 / 12, "feet"),
  17276. default: true
  17277. },
  17278. ]
  17279. ))
  17280. characterMakers.push(() => makeCharacter(
  17281. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  17282. {
  17283. front: {
  17284. height: math.unit(6, "feet"),
  17285. weight: math.unit(150, "lb"),
  17286. name: "Front",
  17287. image: {
  17288. source: "./media/characters/shard/front.svg",
  17289. extra: 273 / 238,
  17290. bottom: 0.02
  17291. }
  17292. },
  17293. },
  17294. [
  17295. {
  17296. name: "Normal",
  17297. height: math.unit(3 + 6 / 12, "feet"),
  17298. default: true
  17299. },
  17300. ]
  17301. ))
  17302. characterMakers.push(() => makeCharacter(
  17303. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17304. {
  17305. front: {
  17306. height: math.unit(5 + 11 / 12, "feet"),
  17307. weight: math.unit(146, "lb"),
  17308. name: "Front",
  17309. image: {
  17310. source: "./media/characters/ashe/front.svg",
  17311. extra: 400 / 373,
  17312. bottom: 0.01
  17313. }
  17314. },
  17315. },
  17316. [
  17317. {
  17318. name: "Normal",
  17319. height: math.unit(5 + 11 / 12, "feet"),
  17320. default: true
  17321. },
  17322. ]
  17323. ))
  17324. characterMakers.push(() => makeCharacter(
  17325. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17326. {
  17327. front: {
  17328. height: math.unit(5 + 5 / 12, "feet"),
  17329. weight: math.unit(135, "lb"),
  17330. name: "Front",
  17331. image: {
  17332. source: "./media/characters/beatrix/front.svg",
  17333. extra: 392 / 379,
  17334. bottom: 0.01
  17335. }
  17336. },
  17337. },
  17338. [
  17339. {
  17340. name: "Normal",
  17341. height: math.unit(6, "feet"),
  17342. default: true
  17343. },
  17344. ]
  17345. ))
  17346. characterMakers.push(() => makeCharacter(
  17347. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17348. {
  17349. front: {
  17350. height: math.unit(6 + 2/12, "feet"),
  17351. weight: math.unit(135, "lb"),
  17352. name: "Front",
  17353. image: {
  17354. source: "./media/characters/ignatius/front.svg",
  17355. extra: 1380/1259,
  17356. bottom: 27/1407
  17357. }
  17358. },
  17359. },
  17360. [
  17361. {
  17362. name: "Normal",
  17363. height: math.unit(6 + 2/12, "feet"),
  17364. default: true
  17365. },
  17366. ]
  17367. ))
  17368. characterMakers.push(() => makeCharacter(
  17369. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17370. {
  17371. front: {
  17372. height: math.unit(6 + 2 / 12, "feet"),
  17373. weight: math.unit(138, "lb"),
  17374. name: "Front",
  17375. image: {
  17376. source: "./media/characters/mei-li/front.svg",
  17377. extra: 237 / 229,
  17378. bottom: 0.03
  17379. }
  17380. },
  17381. },
  17382. [
  17383. {
  17384. name: "Normal",
  17385. height: math.unit(6 + 2 / 12, "feet"),
  17386. default: true
  17387. },
  17388. ]
  17389. ))
  17390. characterMakers.push(() => makeCharacter(
  17391. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17392. {
  17393. front: {
  17394. height: math.unit(2 + 4 / 12, "feet"),
  17395. weight: math.unit(62, "lb"),
  17396. name: "Front",
  17397. image: {
  17398. source: "./media/characters/puru/front.svg",
  17399. extra: 206 / 149,
  17400. bottom: 0.06
  17401. }
  17402. },
  17403. },
  17404. [
  17405. {
  17406. name: "Normal",
  17407. height: math.unit(2 + 4 / 12, "feet"),
  17408. default: true
  17409. },
  17410. ]
  17411. ))
  17412. characterMakers.push(() => makeCharacter(
  17413. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17414. {
  17415. anthro: {
  17416. height: math.unit(5 + 8/12, "feet"),
  17417. weight: math.unit(200, "lb"),
  17418. energyNeed: math.unit(2000, "kcal"),
  17419. name: "Anthro",
  17420. image: {
  17421. source: "./media/characters/kee/anthro.svg",
  17422. extra: 3251/3184,
  17423. bottom: 250/3501
  17424. }
  17425. },
  17426. taur: {
  17427. height: math.unit(11, "feet"),
  17428. weight: math.unit(500, "lb"),
  17429. energyNeed: math.unit(5000, "kcal"),
  17430. name: "Taur",
  17431. image: {
  17432. source: "./media/characters/kee/taur.svg",
  17433. extra: 1362/1320,
  17434. bottom: 83/1445
  17435. }
  17436. },
  17437. },
  17438. [
  17439. {
  17440. name: "Normal",
  17441. height: math.unit(5 + 8/12, "feet"),
  17442. default: true
  17443. },
  17444. {
  17445. name: "Macro",
  17446. height: math.unit(35, "feet")
  17447. },
  17448. ]
  17449. ))
  17450. characterMakers.push(() => makeCharacter(
  17451. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17452. {
  17453. anthro: {
  17454. height: math.unit(7, "feet"),
  17455. weight: math.unit(190, "lb"),
  17456. name: "Anthro",
  17457. image: {
  17458. source: "./media/characters/cobalt-dracha/anthro.svg",
  17459. extra: 231 / 225,
  17460. bottom: 0.04
  17461. }
  17462. },
  17463. feral: {
  17464. height: math.unit(9 + 7 / 12, "feet"),
  17465. weight: math.unit(294, "lb"),
  17466. name: "Feral",
  17467. image: {
  17468. source: "./media/characters/cobalt-dracha/feral.svg",
  17469. extra: 692 / 633,
  17470. bottom: 0.05
  17471. }
  17472. },
  17473. },
  17474. [
  17475. {
  17476. name: "Normal",
  17477. height: math.unit(7, "feet"),
  17478. default: true
  17479. },
  17480. ]
  17481. ))
  17482. characterMakers.push(() => makeCharacter(
  17483. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17484. {
  17485. fallen: {
  17486. height: math.unit(11 + 8 / 12, "feet"),
  17487. weight: math.unit(485, "lb"),
  17488. name: "Java (Fallen)",
  17489. rename: true,
  17490. image: {
  17491. source: "./media/characters/java/fallen.svg",
  17492. extra: 226 / 208,
  17493. bottom: 0.005
  17494. }
  17495. },
  17496. godkin: {
  17497. height: math.unit(10 + 6 / 12, "feet"),
  17498. weight: math.unit(328, "lb"),
  17499. name: "Java (Godkin)",
  17500. rename: true,
  17501. image: {
  17502. source: "./media/characters/java/godkin.svg",
  17503. extra: 1104/1068,
  17504. bottom: 36/1140
  17505. }
  17506. },
  17507. },
  17508. [
  17509. {
  17510. name: "Normal",
  17511. height: math.unit(11 + 8 / 12, "feet"),
  17512. default: true
  17513. },
  17514. ]
  17515. ))
  17516. characterMakers.push(() => makeCharacter(
  17517. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17518. {
  17519. front: {
  17520. height: math.unit(5 + 9 / 12, "feet"),
  17521. weight: math.unit(170, "lb"),
  17522. name: "Front",
  17523. image: {
  17524. source: "./media/characters/purna/front.svg",
  17525. extra: 239 / 229,
  17526. bottom: 0.01
  17527. }
  17528. },
  17529. },
  17530. [
  17531. {
  17532. name: "Normal",
  17533. height: math.unit(5 + 9 / 12, "feet"),
  17534. default: true
  17535. },
  17536. ]
  17537. ))
  17538. characterMakers.push(() => makeCharacter(
  17539. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17540. {
  17541. front: {
  17542. height: math.unit(5 + 9 / 12, "feet"),
  17543. weight: math.unit(142, "lb"),
  17544. name: "Front",
  17545. image: {
  17546. source: "./media/characters/kuva/front.svg",
  17547. extra: 281 / 271,
  17548. bottom: 0.006
  17549. }
  17550. },
  17551. },
  17552. [
  17553. {
  17554. name: "Normal",
  17555. height: math.unit(5 + 9 / 12, "feet"),
  17556. default: true
  17557. },
  17558. ]
  17559. ))
  17560. characterMakers.push(() => makeCharacter(
  17561. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17562. {
  17563. anthro: {
  17564. height: math.unit(9 + 2 / 12, "feet"),
  17565. weight: math.unit(270, "lb"),
  17566. name: "Anthro",
  17567. image: {
  17568. source: "./media/characters/embra/anthro.svg",
  17569. extra: 200 / 187,
  17570. bottom: 0.02
  17571. }
  17572. },
  17573. feral: {
  17574. height: math.unit(18 + 8 / 12, "feet"),
  17575. weight: math.unit(576, "lb"),
  17576. name: "Feral",
  17577. image: {
  17578. source: "./media/characters/embra/feral.svg",
  17579. extra: 152 / 137,
  17580. bottom: 0.037
  17581. }
  17582. },
  17583. },
  17584. [
  17585. {
  17586. name: "Normal",
  17587. height: math.unit(9 + 2 / 12, "feet"),
  17588. default: true
  17589. },
  17590. ]
  17591. ))
  17592. characterMakers.push(() => makeCharacter(
  17593. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17594. {
  17595. anthro: {
  17596. height: math.unit(10 + 9 / 12, "feet"),
  17597. weight: math.unit(224, "lb"),
  17598. name: "Anthro",
  17599. image: {
  17600. source: "./media/characters/grottos/anthro.svg",
  17601. extra: 350 / 332,
  17602. bottom: 0.045
  17603. }
  17604. },
  17605. feral: {
  17606. height: math.unit(20 + 7 / 12, "feet"),
  17607. weight: math.unit(629, "lb"),
  17608. name: "Feral",
  17609. image: {
  17610. source: "./media/characters/grottos/feral.svg",
  17611. extra: 207 / 190,
  17612. bottom: 0.05
  17613. }
  17614. },
  17615. },
  17616. [
  17617. {
  17618. name: "Normal",
  17619. height: math.unit(10 + 9 / 12, "feet"),
  17620. default: true
  17621. },
  17622. ]
  17623. ))
  17624. characterMakers.push(() => makeCharacter(
  17625. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17626. {
  17627. anthro: {
  17628. height: math.unit(9 + 6 / 12, "feet"),
  17629. weight: math.unit(298, "lb"),
  17630. name: "Anthro",
  17631. image: {
  17632. source: "./media/characters/frifna/anthro.svg",
  17633. extra: 282 / 269,
  17634. bottom: 0.015
  17635. }
  17636. },
  17637. feral: {
  17638. height: math.unit(16 + 2 / 12, "feet"),
  17639. weight: math.unit(624, "lb"),
  17640. name: "Feral",
  17641. image: {
  17642. source: "./media/characters/frifna/feral.svg"
  17643. }
  17644. },
  17645. },
  17646. [
  17647. {
  17648. name: "Normal",
  17649. height: math.unit(9 + 6 / 12, "feet"),
  17650. default: true
  17651. },
  17652. ]
  17653. ))
  17654. characterMakers.push(() => makeCharacter(
  17655. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17656. {
  17657. front: {
  17658. height: math.unit(6 + 2 / 12, "feet"),
  17659. weight: math.unit(168, "lb"),
  17660. name: "Front",
  17661. image: {
  17662. source: "./media/characters/elise/front.svg",
  17663. extra: 276 / 271
  17664. }
  17665. },
  17666. },
  17667. [
  17668. {
  17669. name: "Normal",
  17670. height: math.unit(6 + 2 / 12, "feet"),
  17671. default: true
  17672. },
  17673. ]
  17674. ))
  17675. characterMakers.push(() => makeCharacter(
  17676. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17677. {
  17678. front: {
  17679. height: math.unit(5 + 10 / 12, "feet"),
  17680. weight: math.unit(210, "lb"),
  17681. name: "Front",
  17682. image: {
  17683. source: "./media/characters/glade/front.svg",
  17684. extra: 258 / 247,
  17685. bottom: 0.008
  17686. }
  17687. },
  17688. },
  17689. [
  17690. {
  17691. name: "Normal",
  17692. height: math.unit(5 + 10 / 12, "feet"),
  17693. default: true
  17694. },
  17695. ]
  17696. ))
  17697. characterMakers.push(() => makeCharacter(
  17698. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17699. {
  17700. front: {
  17701. height: math.unit(5 + 10 / 12, "feet"),
  17702. weight: math.unit(129, "lb"),
  17703. name: "Front",
  17704. image: {
  17705. source: "./media/characters/rina/front.svg",
  17706. extra: 266 / 255,
  17707. bottom: 0.005
  17708. }
  17709. },
  17710. },
  17711. [
  17712. {
  17713. name: "Normal",
  17714. height: math.unit(5 + 10 / 12, "feet"),
  17715. default: true
  17716. },
  17717. ]
  17718. ))
  17719. characterMakers.push(() => makeCharacter(
  17720. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17721. {
  17722. front: {
  17723. height: math.unit(6 + 1 / 12, "feet"),
  17724. weight: math.unit(192, "lb"),
  17725. name: "Front",
  17726. image: {
  17727. source: "./media/characters/veronica/front.svg",
  17728. extra: 319 / 309,
  17729. bottom: 0.005
  17730. }
  17731. },
  17732. },
  17733. [
  17734. {
  17735. name: "Normal",
  17736. height: math.unit(6 + 1 / 12, "feet"),
  17737. default: true
  17738. },
  17739. ]
  17740. ))
  17741. characterMakers.push(() => makeCharacter(
  17742. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17743. {
  17744. front: {
  17745. height: math.unit(9 + 3 / 12, "feet"),
  17746. weight: math.unit(1100, "lb"),
  17747. name: "Front",
  17748. image: {
  17749. source: "./media/characters/braxton/front.svg",
  17750. extra: 1057 / 984,
  17751. bottom: 0.05
  17752. }
  17753. },
  17754. },
  17755. [
  17756. {
  17757. name: "Normal",
  17758. height: math.unit(9 + 3 / 12, "feet")
  17759. },
  17760. {
  17761. name: "Giant",
  17762. height: math.unit(300, "feet"),
  17763. default: true
  17764. },
  17765. {
  17766. name: "Macro",
  17767. height: math.unit(700, "feet")
  17768. },
  17769. {
  17770. name: "Megamacro",
  17771. height: math.unit(6000, "feet")
  17772. },
  17773. ]
  17774. ))
  17775. characterMakers.push(() => makeCharacter(
  17776. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17777. {
  17778. front: {
  17779. height: math.unit(6 + 7 / 12, "feet"),
  17780. weight: math.unit(150, "lb"),
  17781. name: "Front",
  17782. image: {
  17783. source: "./media/characters/blue-feyonics/front.svg",
  17784. extra: 1403 / 1306,
  17785. bottom: 0.047
  17786. }
  17787. },
  17788. },
  17789. [
  17790. {
  17791. name: "Normal",
  17792. height: math.unit(6 + 7 / 12, "feet"),
  17793. default: true
  17794. },
  17795. ]
  17796. ))
  17797. characterMakers.push(() => makeCharacter(
  17798. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17799. {
  17800. front: {
  17801. height: math.unit(1.8, "meters"),
  17802. weight: math.unit(60, "kg"),
  17803. name: "Front",
  17804. image: {
  17805. source: "./media/characters/maxwell/front.svg",
  17806. extra: 2060 / 1873
  17807. }
  17808. },
  17809. },
  17810. [
  17811. {
  17812. name: "Micro",
  17813. height: math.unit(1, "mm")
  17814. },
  17815. {
  17816. name: "Normal",
  17817. height: math.unit(1.8, "meter"),
  17818. default: true
  17819. },
  17820. {
  17821. name: "Macro",
  17822. height: math.unit(30, "meters")
  17823. },
  17824. {
  17825. name: "Megamacro",
  17826. height: math.unit(10, "km")
  17827. },
  17828. ]
  17829. ))
  17830. characterMakers.push(() => makeCharacter(
  17831. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17832. {
  17833. front: {
  17834. height: math.unit(6, "feet"),
  17835. weight: math.unit(150, "lb"),
  17836. name: "Front",
  17837. image: {
  17838. source: "./media/characters/jack/front.svg",
  17839. extra: 1754 / 1640,
  17840. bottom: 0.01
  17841. }
  17842. },
  17843. },
  17844. [
  17845. {
  17846. name: "Normal",
  17847. height: math.unit(80000, "feet"),
  17848. default: true
  17849. },
  17850. {
  17851. name: "Max size",
  17852. height: math.unit(10, "lightyears")
  17853. },
  17854. ]
  17855. ))
  17856. characterMakers.push(() => makeCharacter(
  17857. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17858. {
  17859. urban: {
  17860. height: math.unit(5, "feet"),
  17861. weight: math.unit(240, "lb"),
  17862. name: "Urban",
  17863. image: {
  17864. source: "./media/characters/cafat/urban.svg",
  17865. extra: 1223/1126,
  17866. bottom: 205/1428
  17867. }
  17868. },
  17869. summer: {
  17870. height: math.unit(5, "feet"),
  17871. weight: math.unit(240, "lb"),
  17872. name: "Summer",
  17873. image: {
  17874. source: "./media/characters/cafat/summer.svg",
  17875. extra: 1223/1126,
  17876. bottom: 205/1428
  17877. }
  17878. },
  17879. winter: {
  17880. height: math.unit(5, "feet"),
  17881. weight: math.unit(240, "lb"),
  17882. name: "Winter",
  17883. image: {
  17884. source: "./media/characters/cafat/winter.svg",
  17885. extra: 1223/1126,
  17886. bottom: 205/1428
  17887. }
  17888. },
  17889. lingerie: {
  17890. height: math.unit(5, "feet"),
  17891. weight: math.unit(240, "lb"),
  17892. name: "Lingerie",
  17893. image: {
  17894. source: "./media/characters/cafat/lingerie.svg",
  17895. extra: 1223/1126,
  17896. bottom: 205/1428
  17897. }
  17898. },
  17899. upright: {
  17900. height: math.unit(6.3, "feet"),
  17901. weight: math.unit(240, "lb"),
  17902. name: "Upright",
  17903. image: {
  17904. source: "./media/characters/cafat/upright.svg",
  17905. bottom: 0.01
  17906. }
  17907. },
  17908. uprightFull: {
  17909. height: math.unit(6.3, "feet"),
  17910. weight: math.unit(240, "lb"),
  17911. name: "Upright (Full)",
  17912. image: {
  17913. source: "./media/characters/cafat/upright-full.svg",
  17914. bottom: 0.01
  17915. }
  17916. },
  17917. },
  17918. [
  17919. {
  17920. name: "Small",
  17921. height: math.unit(5, "feet"),
  17922. default: true
  17923. },
  17924. {
  17925. name: "Large",
  17926. height: math.unit(13, "feet")
  17927. },
  17928. ]
  17929. ))
  17930. characterMakers.push(() => makeCharacter(
  17931. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17932. {
  17933. front: {
  17934. height: math.unit(6, "feet"),
  17935. weight: math.unit(150, "lb"),
  17936. name: "Front",
  17937. image: {
  17938. source: "./media/characters/verin-raharra/front.svg",
  17939. extra: 5019 / 4835,
  17940. bottom: 0.023
  17941. }
  17942. },
  17943. },
  17944. [
  17945. {
  17946. name: "Normal",
  17947. height: math.unit(7 + 5 / 12, "feet"),
  17948. default: true
  17949. },
  17950. {
  17951. name: "Upsized",
  17952. height: math.unit(20, "feet")
  17953. },
  17954. ]
  17955. ))
  17956. characterMakers.push(() => makeCharacter(
  17957. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17958. {
  17959. front: {
  17960. height: math.unit(7, "feet"),
  17961. weight: math.unit(230, "lb"),
  17962. name: "Front",
  17963. image: {
  17964. source: "./media/characters/nakata/front.svg",
  17965. extra: 1.005,
  17966. bottom: 0.01
  17967. }
  17968. },
  17969. },
  17970. [
  17971. {
  17972. name: "Normal",
  17973. height: math.unit(7, "feet"),
  17974. default: true
  17975. },
  17976. {
  17977. name: "Big",
  17978. height: math.unit(14, "feet")
  17979. },
  17980. {
  17981. name: "Macro",
  17982. height: math.unit(400, "feet")
  17983. },
  17984. ]
  17985. ))
  17986. characterMakers.push(() => makeCharacter(
  17987. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17988. {
  17989. front: {
  17990. height: math.unit(4.91, "feet"),
  17991. weight: math.unit(100, "lb"),
  17992. name: "Front",
  17993. image: {
  17994. source: "./media/characters/lily/front.svg",
  17995. extra: 1585 / 1415,
  17996. bottom: 0.02
  17997. }
  17998. },
  17999. },
  18000. [
  18001. {
  18002. name: "Normal",
  18003. height: math.unit(4.91, "feet"),
  18004. default: true
  18005. },
  18006. ]
  18007. ))
  18008. characterMakers.push(() => makeCharacter(
  18009. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  18010. {
  18011. laying: {
  18012. height: math.unit(4 + 4 / 12, "feet"),
  18013. weight: math.unit(600, "lb"),
  18014. name: "Laying",
  18015. image: {
  18016. source: "./media/characters/sheila/laying.svg",
  18017. extra: 1333 / 1265,
  18018. bottom: 0.16
  18019. }
  18020. },
  18021. },
  18022. [
  18023. {
  18024. name: "Normal",
  18025. height: math.unit(4 + 4 / 12, "feet"),
  18026. default: true
  18027. },
  18028. ]
  18029. ))
  18030. characterMakers.push(() => makeCharacter(
  18031. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  18032. {
  18033. front: {
  18034. height: math.unit(6, "feet"),
  18035. weight: math.unit(190, "lb"),
  18036. name: "Front",
  18037. image: {
  18038. source: "./media/characters/sax/front.svg",
  18039. extra: 1187 / 973,
  18040. bottom: 0.042
  18041. }
  18042. },
  18043. },
  18044. [
  18045. {
  18046. name: "Micro",
  18047. height: math.unit(4, "inches"),
  18048. default: true
  18049. },
  18050. ]
  18051. ))
  18052. characterMakers.push(() => makeCharacter(
  18053. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  18054. {
  18055. front: {
  18056. height: math.unit(6, "feet"),
  18057. weight: math.unit(150, "lb"),
  18058. name: "Front",
  18059. image: {
  18060. source: "./media/characters/pandora/front.svg",
  18061. extra: 2720 / 2556,
  18062. bottom: 0.015
  18063. }
  18064. },
  18065. back: {
  18066. height: math.unit(6, "feet"),
  18067. weight: math.unit(150, "lb"),
  18068. name: "Back",
  18069. image: {
  18070. source: "./media/characters/pandora/back.svg",
  18071. extra: 2720 / 2556,
  18072. bottom: 0.01
  18073. }
  18074. },
  18075. beans: {
  18076. height: math.unit(6 / 8, "feet"),
  18077. name: "Beans",
  18078. image: {
  18079. source: "./media/characters/pandora/beans.svg"
  18080. }
  18081. },
  18082. collar: {
  18083. height: math.unit(0.31, "feet"),
  18084. name: "Collar",
  18085. image: {
  18086. source: "./media/characters/pandora/collar.svg"
  18087. }
  18088. },
  18089. skirt: {
  18090. height: math.unit(6, "feet"),
  18091. weight: math.unit(150, "lb"),
  18092. name: "Skirt",
  18093. image: {
  18094. source: "./media/characters/pandora/skirt.svg",
  18095. extra: 1622 / 1525,
  18096. bottom: 0.015
  18097. }
  18098. },
  18099. hoodie: {
  18100. height: math.unit(6, "feet"),
  18101. weight: math.unit(150, "lb"),
  18102. name: "Hoodie",
  18103. image: {
  18104. source: "./media/characters/pandora/hoodie.svg",
  18105. extra: 1622 / 1525,
  18106. bottom: 0.015
  18107. }
  18108. },
  18109. casual: {
  18110. height: math.unit(6, "feet"),
  18111. weight: math.unit(150, "lb"),
  18112. name: "Casual",
  18113. image: {
  18114. source: "./media/characters/pandora/casual.svg",
  18115. extra: 1622 / 1525,
  18116. bottom: 0.015
  18117. }
  18118. },
  18119. },
  18120. [
  18121. {
  18122. name: "Normal",
  18123. height: math.unit(6, "feet")
  18124. },
  18125. {
  18126. name: "Big Steppy",
  18127. height: math.unit(1, "km"),
  18128. default: true
  18129. },
  18130. {
  18131. name: "Galactic Steppy",
  18132. height: math.unit(2, "gigameters")
  18133. },
  18134. ]
  18135. ))
  18136. characterMakers.push(() => makeCharacter(
  18137. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  18138. {
  18139. side: {
  18140. height: math.unit(10, "feet"),
  18141. weight: math.unit(800, "kg"),
  18142. name: "Side",
  18143. image: {
  18144. source: "./media/characters/venio-darcony/side.svg",
  18145. extra: 1373 / 1003,
  18146. bottom: 0.037
  18147. }
  18148. },
  18149. front: {
  18150. height: math.unit(19, "feet"),
  18151. weight: math.unit(800, "kg"),
  18152. name: "Front",
  18153. image: {
  18154. source: "./media/characters/venio-darcony/front.svg"
  18155. }
  18156. },
  18157. back: {
  18158. height: math.unit(19, "feet"),
  18159. weight: math.unit(800, "kg"),
  18160. name: "Back",
  18161. image: {
  18162. source: "./media/characters/venio-darcony/back.svg"
  18163. }
  18164. },
  18165. sideNsfw: {
  18166. height: math.unit(10, "feet"),
  18167. weight: math.unit(800, "kg"),
  18168. name: "Side (NSFW)",
  18169. image: {
  18170. source: "./media/characters/venio-darcony/side-nsfw.svg",
  18171. extra: 1373 / 1003,
  18172. bottom: 0.037
  18173. }
  18174. },
  18175. frontNsfw: {
  18176. height: math.unit(19, "feet"),
  18177. weight: math.unit(800, "kg"),
  18178. name: "Front (NSFW)",
  18179. image: {
  18180. source: "./media/characters/venio-darcony/front-nsfw.svg"
  18181. }
  18182. },
  18183. backNsfw: {
  18184. height: math.unit(19, "feet"),
  18185. weight: math.unit(800, "kg"),
  18186. name: "Back (NSFW)",
  18187. image: {
  18188. source: "./media/characters/venio-darcony/back-nsfw.svg"
  18189. }
  18190. },
  18191. sideArmored: {
  18192. height: math.unit(10, "feet"),
  18193. weight: math.unit(800, "kg"),
  18194. name: "Side (Armored)",
  18195. image: {
  18196. source: "./media/characters/venio-darcony/side-armored.svg",
  18197. extra: 1373 / 1003,
  18198. bottom: 0.037
  18199. }
  18200. },
  18201. frontArmored: {
  18202. height: math.unit(19, "feet"),
  18203. weight: math.unit(900, "kg"),
  18204. name: "Front (Armored)",
  18205. image: {
  18206. source: "./media/characters/venio-darcony/front-armored.svg"
  18207. }
  18208. },
  18209. backArmored: {
  18210. height: math.unit(19, "feet"),
  18211. weight: math.unit(900, "kg"),
  18212. name: "Back (Armored)",
  18213. image: {
  18214. source: "./media/characters/venio-darcony/back-armored.svg"
  18215. }
  18216. },
  18217. sword: {
  18218. height: math.unit(10, "feet"),
  18219. weight: math.unit(50, "lb"),
  18220. name: "Sword",
  18221. image: {
  18222. source: "./media/characters/venio-darcony/sword.svg"
  18223. }
  18224. },
  18225. },
  18226. [
  18227. {
  18228. name: "Normal",
  18229. height: math.unit(10, "feet")
  18230. },
  18231. {
  18232. name: "Macro",
  18233. height: math.unit(130, "feet"),
  18234. default: true
  18235. },
  18236. {
  18237. name: "Macro+",
  18238. height: math.unit(240, "feet")
  18239. },
  18240. ]
  18241. ))
  18242. characterMakers.push(() => makeCharacter(
  18243. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  18244. {
  18245. front: {
  18246. height: math.unit(6, "feet"),
  18247. weight: math.unit(150, "lb"),
  18248. name: "Front",
  18249. image: {
  18250. source: "./media/characters/veski/front.svg",
  18251. extra: 1299 / 1225,
  18252. bottom: 0.04
  18253. }
  18254. },
  18255. back: {
  18256. height: math.unit(6, "feet"),
  18257. weight: math.unit(150, "lb"),
  18258. name: "Back",
  18259. image: {
  18260. source: "./media/characters/veski/back.svg",
  18261. extra: 1299 / 1225,
  18262. bottom: 0.008
  18263. }
  18264. },
  18265. maw: {
  18266. height: math.unit(1.5 * 1.21, "feet"),
  18267. name: "Maw",
  18268. image: {
  18269. source: "./media/characters/veski/maw.svg"
  18270. }
  18271. },
  18272. },
  18273. [
  18274. {
  18275. name: "Macro",
  18276. height: math.unit(2, "km"),
  18277. default: true
  18278. },
  18279. ]
  18280. ))
  18281. characterMakers.push(() => makeCharacter(
  18282. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18283. {
  18284. front: {
  18285. height: math.unit(5 + 7 / 12, "feet"),
  18286. name: "Front",
  18287. image: {
  18288. source: "./media/characters/isabelle/front.svg",
  18289. extra: 2130 / 1976,
  18290. bottom: 0.05
  18291. }
  18292. },
  18293. },
  18294. [
  18295. {
  18296. name: "Supermicro",
  18297. height: math.unit(10, "micrometers")
  18298. },
  18299. {
  18300. name: "Micro",
  18301. height: math.unit(1, "inch")
  18302. },
  18303. {
  18304. name: "Tiny",
  18305. height: math.unit(5, "inches")
  18306. },
  18307. {
  18308. name: "Standard",
  18309. height: math.unit(5 + 7 / 12, "inches")
  18310. },
  18311. {
  18312. name: "Macro",
  18313. height: math.unit(80, "meters"),
  18314. default: true
  18315. },
  18316. {
  18317. name: "Megamacro",
  18318. height: math.unit(250, "meters")
  18319. },
  18320. {
  18321. name: "Gigamacro",
  18322. height: math.unit(5, "km")
  18323. },
  18324. {
  18325. name: "Cosmic",
  18326. height: math.unit(2.5e6, "miles")
  18327. },
  18328. ]
  18329. ))
  18330. characterMakers.push(() => makeCharacter(
  18331. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18332. {
  18333. front: {
  18334. height: math.unit(6, "feet"),
  18335. weight: math.unit(150, "lb"),
  18336. name: "Front",
  18337. image: {
  18338. source: "./media/characters/hanzo/front.svg",
  18339. extra: 374 / 344,
  18340. bottom: 0.02
  18341. }
  18342. },
  18343. },
  18344. [
  18345. {
  18346. name: "Normal",
  18347. height: math.unit(8, "feet"),
  18348. default: true
  18349. },
  18350. ]
  18351. ))
  18352. characterMakers.push(() => makeCharacter(
  18353. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18354. {
  18355. front: {
  18356. height: math.unit(7, "feet"),
  18357. weight: math.unit(130, "lb"),
  18358. name: "Front",
  18359. image: {
  18360. source: "./media/characters/anna/front.svg",
  18361. extra: 169 / 145,
  18362. bottom: 0.06
  18363. }
  18364. },
  18365. full: {
  18366. height: math.unit(4.96, "feet"),
  18367. weight: math.unit(220, "lb"),
  18368. name: "Full",
  18369. image: {
  18370. source: "./media/characters/anna/full.svg",
  18371. extra: 138 / 114,
  18372. bottom: 0.15
  18373. }
  18374. },
  18375. tongue: {
  18376. height: math.unit(2.53, "feet"),
  18377. name: "Tongue",
  18378. image: {
  18379. source: "./media/characters/anna/tongue.svg"
  18380. }
  18381. },
  18382. },
  18383. [
  18384. {
  18385. name: "Normal",
  18386. height: math.unit(7, "feet"),
  18387. default: true
  18388. },
  18389. ]
  18390. ))
  18391. characterMakers.push(() => makeCharacter(
  18392. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18393. {
  18394. front: {
  18395. height: math.unit(7, "feet"),
  18396. weight: math.unit(150, "lb"),
  18397. name: "Front",
  18398. image: {
  18399. source: "./media/characters/ian-corvid/front.svg",
  18400. extra: 150 / 142,
  18401. bottom: 0.02
  18402. }
  18403. },
  18404. back: {
  18405. height: math.unit(7, "feet"),
  18406. weight: math.unit(150, "lb"),
  18407. name: "Back",
  18408. image: {
  18409. source: "./media/characters/ian-corvid/back.svg",
  18410. extra: 150 / 143,
  18411. bottom: 0.01
  18412. }
  18413. },
  18414. stomping: {
  18415. height: math.unit(7, "feet"),
  18416. weight: math.unit(150, "lb"),
  18417. name: "Stomping",
  18418. image: {
  18419. source: "./media/characters/ian-corvid/stomping.svg",
  18420. extra: 76 / 72
  18421. }
  18422. },
  18423. sitting: {
  18424. height: math.unit(7 / 1.8, "feet"),
  18425. weight: math.unit(150, "lb"),
  18426. name: "Sitting",
  18427. image: {
  18428. source: "./media/characters/ian-corvid/sitting.svg",
  18429. extra: 1400 / 1269,
  18430. bottom: 0.15
  18431. }
  18432. },
  18433. },
  18434. [
  18435. {
  18436. name: "Tiny Microw",
  18437. height: math.unit(1, "inch")
  18438. },
  18439. {
  18440. name: "Microw",
  18441. height: math.unit(6, "inches")
  18442. },
  18443. {
  18444. name: "Crow",
  18445. height: math.unit(7 + 1 / 12, "feet"),
  18446. default: true
  18447. },
  18448. {
  18449. name: "Macrow",
  18450. height: math.unit(176, "feet")
  18451. },
  18452. ]
  18453. ))
  18454. characterMakers.push(() => makeCharacter(
  18455. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18456. {
  18457. front: {
  18458. height: math.unit(5 + 7 / 12, "feet"),
  18459. weight: math.unit(147, "lb"),
  18460. name: "Front",
  18461. image: {
  18462. source: "./media/characters/natalie-kellon/front.svg",
  18463. extra: 1214 / 1141,
  18464. bottom: 0.02
  18465. }
  18466. },
  18467. },
  18468. [
  18469. {
  18470. name: "Micro",
  18471. height: math.unit(1 / 16, "inch")
  18472. },
  18473. {
  18474. name: "Tiny",
  18475. height: math.unit(4, "inches")
  18476. },
  18477. {
  18478. name: "Normal",
  18479. height: math.unit(5 + 7 / 12, "feet"),
  18480. default: true
  18481. },
  18482. {
  18483. name: "Amazon",
  18484. height: math.unit(12, "feet")
  18485. },
  18486. {
  18487. name: "Giantess",
  18488. height: math.unit(160, "meters")
  18489. },
  18490. {
  18491. name: "Titaness",
  18492. height: math.unit(800, "meters")
  18493. },
  18494. ]
  18495. ))
  18496. characterMakers.push(() => makeCharacter(
  18497. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18498. {
  18499. front: {
  18500. height: math.unit(6, "feet"),
  18501. weight: math.unit(150, "lb"),
  18502. name: "Front",
  18503. image: {
  18504. source: "./media/characters/alluria/front.svg",
  18505. extra: 806 / 738,
  18506. bottom: 0.01
  18507. }
  18508. },
  18509. side: {
  18510. height: math.unit(6, "feet"),
  18511. weight: math.unit(150, "lb"),
  18512. name: "Side",
  18513. image: {
  18514. source: "./media/characters/alluria/side.svg",
  18515. extra: 800 / 750,
  18516. }
  18517. },
  18518. back: {
  18519. height: math.unit(6, "feet"),
  18520. weight: math.unit(150, "lb"),
  18521. name: "Back",
  18522. image: {
  18523. source: "./media/characters/alluria/back.svg",
  18524. extra: 806 / 738,
  18525. }
  18526. },
  18527. frontMaid: {
  18528. height: math.unit(6, "feet"),
  18529. weight: math.unit(150, "lb"),
  18530. name: "Front (Maid)",
  18531. image: {
  18532. source: "./media/characters/alluria/front-maid.svg",
  18533. extra: 806 / 738,
  18534. bottom: 0.01
  18535. }
  18536. },
  18537. sideMaid: {
  18538. height: math.unit(6, "feet"),
  18539. weight: math.unit(150, "lb"),
  18540. name: "Side (Maid)",
  18541. image: {
  18542. source: "./media/characters/alluria/side-maid.svg",
  18543. extra: 800 / 750,
  18544. bottom: 0.005
  18545. }
  18546. },
  18547. backMaid: {
  18548. height: math.unit(6, "feet"),
  18549. weight: math.unit(150, "lb"),
  18550. name: "Back (Maid)",
  18551. image: {
  18552. source: "./media/characters/alluria/back-maid.svg",
  18553. extra: 806 / 738,
  18554. }
  18555. },
  18556. },
  18557. [
  18558. {
  18559. name: "Micro",
  18560. height: math.unit(6, "inches"),
  18561. default: true
  18562. },
  18563. ]
  18564. ))
  18565. characterMakers.push(() => makeCharacter(
  18566. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18567. {
  18568. front: {
  18569. height: math.unit(6, "feet"),
  18570. weight: math.unit(150, "lb"),
  18571. name: "Front",
  18572. image: {
  18573. source: "./media/characters/kyle/front.svg",
  18574. extra: 1069 / 962,
  18575. bottom: 77.228 / 1727.45
  18576. }
  18577. },
  18578. },
  18579. [
  18580. {
  18581. name: "Macro",
  18582. height: math.unit(150, "feet"),
  18583. default: true
  18584. },
  18585. ]
  18586. ))
  18587. characterMakers.push(() => makeCharacter(
  18588. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18589. {
  18590. front: {
  18591. height: math.unit(6, "feet"),
  18592. weight: math.unit(300, "lb"),
  18593. name: "Front",
  18594. image: {
  18595. source: "./media/characters/duncan/front.svg",
  18596. extra: 1650 / 1482,
  18597. bottom: 0.05
  18598. }
  18599. },
  18600. },
  18601. [
  18602. {
  18603. name: "Macro",
  18604. height: math.unit(100, "feet"),
  18605. default: true
  18606. },
  18607. ]
  18608. ))
  18609. characterMakers.push(() => makeCharacter(
  18610. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18611. {
  18612. front: {
  18613. height: math.unit(5 + 4 / 12, "feet"),
  18614. weight: math.unit(220, "lb"),
  18615. name: "Front",
  18616. image: {
  18617. source: "./media/characters/memory/front.svg",
  18618. extra: 3641 / 3545,
  18619. bottom: 0.03
  18620. }
  18621. },
  18622. back: {
  18623. height: math.unit(5 + 4 / 12, "feet"),
  18624. weight: math.unit(220, "lb"),
  18625. name: "Back",
  18626. image: {
  18627. source: "./media/characters/memory/back.svg",
  18628. extra: 3641 / 3545,
  18629. bottom: 0.025
  18630. }
  18631. },
  18632. frontSkirt: {
  18633. height: math.unit(5 + 4 / 12, "feet"),
  18634. weight: math.unit(220, "lb"),
  18635. name: "Front (Skirt)",
  18636. image: {
  18637. source: "./media/characters/memory/front-skirt.svg",
  18638. extra: 3641 / 3545,
  18639. bottom: 0.03
  18640. }
  18641. },
  18642. frontDress: {
  18643. height: math.unit(5 + 4 / 12, "feet"),
  18644. weight: math.unit(220, "lb"),
  18645. name: "Front (Dress)",
  18646. image: {
  18647. source: "./media/characters/memory/front-dress.svg",
  18648. extra: 3641 / 3545,
  18649. bottom: 0.03
  18650. }
  18651. },
  18652. },
  18653. [
  18654. {
  18655. name: "Micro",
  18656. height: math.unit(6, "inches"),
  18657. default: true
  18658. },
  18659. {
  18660. name: "Normal",
  18661. height: math.unit(5 + 4 / 12, "feet")
  18662. },
  18663. ]
  18664. ))
  18665. characterMakers.push(() => makeCharacter(
  18666. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18667. {
  18668. front: {
  18669. height: math.unit(4 + 11 / 12, "feet"),
  18670. weight: math.unit(100, "lb"),
  18671. name: "Front",
  18672. image: {
  18673. source: "./media/characters/luno/front.svg",
  18674. extra: 1535 / 1487,
  18675. bottom: 0.03
  18676. }
  18677. },
  18678. },
  18679. [
  18680. {
  18681. name: "Micro",
  18682. height: math.unit(3, "inches")
  18683. },
  18684. {
  18685. name: "Normal",
  18686. height: math.unit(4 + 11 / 12, "feet"),
  18687. default: true
  18688. },
  18689. {
  18690. name: "Macro",
  18691. height: math.unit(300, "feet")
  18692. },
  18693. {
  18694. name: "Megamacro",
  18695. height: math.unit(700, "miles")
  18696. },
  18697. ]
  18698. ))
  18699. characterMakers.push(() => makeCharacter(
  18700. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18701. {
  18702. front: {
  18703. height: math.unit(6 + 2 / 12, "feet"),
  18704. weight: math.unit(170, "lb"),
  18705. name: "Front",
  18706. image: {
  18707. source: "./media/characters/jamesy/front.svg",
  18708. extra: 440 / 382,
  18709. bottom: 0.005
  18710. }
  18711. },
  18712. },
  18713. [
  18714. {
  18715. name: "Micro",
  18716. height: math.unit(3, "inches")
  18717. },
  18718. {
  18719. name: "Normal",
  18720. height: math.unit(6 + 2 / 12, "feet"),
  18721. default: true
  18722. },
  18723. {
  18724. name: "Macro",
  18725. height: math.unit(300, "feet")
  18726. },
  18727. {
  18728. name: "Megamacro",
  18729. height: math.unit(700, "miles")
  18730. },
  18731. ]
  18732. ))
  18733. characterMakers.push(() => makeCharacter(
  18734. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18735. {
  18736. front: {
  18737. height: math.unit(6, "feet"),
  18738. weight: math.unit(160, "lb"),
  18739. name: "Front",
  18740. image: {
  18741. source: "./media/characters/mark/front.svg",
  18742. extra: 3300 / 3100,
  18743. bottom: 136.42 / 3440.47
  18744. }
  18745. },
  18746. },
  18747. [
  18748. {
  18749. name: "Macro",
  18750. height: math.unit(120, "meters")
  18751. },
  18752. {
  18753. name: "Bigger Macro",
  18754. height: math.unit(350, "meters")
  18755. },
  18756. {
  18757. name: "Megamacro",
  18758. height: math.unit(8, "km"),
  18759. default: true
  18760. },
  18761. {
  18762. name: "Continental",
  18763. height: math.unit(4550, "km")
  18764. },
  18765. {
  18766. name: "Planetary",
  18767. height: math.unit(65000, "km")
  18768. },
  18769. ]
  18770. ))
  18771. characterMakers.push(() => makeCharacter(
  18772. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18773. {
  18774. front: {
  18775. height: math.unit(6, "feet"),
  18776. weight: math.unit(400, "lb"),
  18777. name: "Front",
  18778. image: {
  18779. source: "./media/characters/mac/front.svg",
  18780. extra: 1048 / 987.7,
  18781. bottom: 60 / 1107.6,
  18782. }
  18783. },
  18784. },
  18785. [
  18786. {
  18787. name: "Macro",
  18788. height: math.unit(500, "feet"),
  18789. default: true
  18790. },
  18791. ]
  18792. ))
  18793. characterMakers.push(() => makeCharacter(
  18794. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18795. {
  18796. front: {
  18797. height: math.unit(5 + 2 / 12, "feet"),
  18798. weight: math.unit(190, "lb"),
  18799. name: "Front",
  18800. image: {
  18801. source: "./media/characters/bari/front.svg",
  18802. extra: 3156 / 2880,
  18803. bottom: 0.03
  18804. }
  18805. },
  18806. back: {
  18807. height: math.unit(5 + 2 / 12, "feet"),
  18808. weight: math.unit(190, "lb"),
  18809. name: "Back",
  18810. image: {
  18811. source: "./media/characters/bari/back.svg",
  18812. extra: 3260 / 2834,
  18813. bottom: 0.025
  18814. }
  18815. },
  18816. frontPlush: {
  18817. height: math.unit(5 + 2 / 12, "feet"),
  18818. weight: math.unit(190, "lb"),
  18819. name: "Front (Plush)",
  18820. image: {
  18821. source: "./media/characters/bari/front-plush.svg",
  18822. extra: 1112 / 1061,
  18823. bottom: 0.002
  18824. }
  18825. },
  18826. },
  18827. [
  18828. {
  18829. name: "Micro",
  18830. height: math.unit(3, "inches")
  18831. },
  18832. {
  18833. name: "Normal",
  18834. height: math.unit(5 + 2 / 12, "feet"),
  18835. default: true
  18836. },
  18837. {
  18838. name: "Macro",
  18839. height: math.unit(20, "feet")
  18840. },
  18841. ]
  18842. ))
  18843. characterMakers.push(() => makeCharacter(
  18844. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18845. {
  18846. front: {
  18847. height: math.unit(6 + 1 / 12, "feet"),
  18848. weight: math.unit(275, "lb"),
  18849. name: "Front",
  18850. image: {
  18851. source: "./media/characters/hunter-misha-raven/front.svg"
  18852. }
  18853. },
  18854. },
  18855. [
  18856. {
  18857. name: "Mortal",
  18858. height: math.unit(6 + 1 / 12, "feet")
  18859. },
  18860. {
  18861. name: "Divine",
  18862. height: math.unit(1.12134e34, "parsecs"),
  18863. default: true
  18864. },
  18865. ]
  18866. ))
  18867. characterMakers.push(() => makeCharacter(
  18868. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18869. {
  18870. front: {
  18871. height: math.unit(6 + 3 / 12, "feet"),
  18872. weight: math.unit(220, "lb"),
  18873. name: "Front",
  18874. image: {
  18875. source: "./media/characters/max-calore/front.svg",
  18876. extra: 1700 / 1648,
  18877. bottom: 0.01
  18878. }
  18879. },
  18880. back: {
  18881. height: math.unit(6 + 3 / 12, "feet"),
  18882. weight: math.unit(220, "lb"),
  18883. name: "Back",
  18884. image: {
  18885. source: "./media/characters/max-calore/back.svg",
  18886. extra: 1700 / 1648,
  18887. bottom: 0.01
  18888. }
  18889. },
  18890. },
  18891. [
  18892. {
  18893. name: "Normal",
  18894. height: math.unit(6 + 3 / 12, "feet"),
  18895. default: true
  18896. },
  18897. ]
  18898. ))
  18899. characterMakers.push(() => makeCharacter(
  18900. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18901. {
  18902. side: {
  18903. height: math.unit(2 + 8 / 12, "feet"),
  18904. weight: math.unit(99, "lb"),
  18905. name: "Side",
  18906. image: {
  18907. source: "./media/characters/aspen/side.svg",
  18908. extra: 152 / 138,
  18909. bottom: 0.032
  18910. }
  18911. },
  18912. },
  18913. [
  18914. {
  18915. name: "Normal",
  18916. height: math.unit(2 + 8 / 12, "feet"),
  18917. default: true
  18918. },
  18919. ]
  18920. ))
  18921. characterMakers.push(() => makeCharacter(
  18922. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18923. {
  18924. side: {
  18925. height: math.unit(3 + 2 / 12, "feet"),
  18926. weight: math.unit(224, "lb"),
  18927. name: "Side",
  18928. image: {
  18929. source: "./media/characters/sheila-feral-wolf/side.svg",
  18930. extra: 179 / 166,
  18931. bottom: 0.03
  18932. }
  18933. },
  18934. },
  18935. [
  18936. {
  18937. name: "Normal",
  18938. height: math.unit(3 + 2 / 12, "feet"),
  18939. default: true
  18940. },
  18941. ]
  18942. ))
  18943. characterMakers.push(() => makeCharacter(
  18944. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18945. {
  18946. side: {
  18947. height: math.unit(1 + 9 / 12, "feet"),
  18948. weight: math.unit(38, "lb"),
  18949. name: "Side",
  18950. image: {
  18951. source: "./media/characters/michelle/side.svg",
  18952. extra: 147 / 136.7,
  18953. bottom: 0.03
  18954. }
  18955. },
  18956. },
  18957. [
  18958. {
  18959. name: "Normal",
  18960. height: math.unit(1 + 9 / 12, "feet"),
  18961. default: true
  18962. },
  18963. ]
  18964. ))
  18965. characterMakers.push(() => makeCharacter(
  18966. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18967. {
  18968. front: {
  18969. height: math.unit(1.54, "feet"),
  18970. weight: math.unit(50, "lb"),
  18971. name: "Front",
  18972. image: {
  18973. source: "./media/characters/nino/front.svg"
  18974. }
  18975. },
  18976. },
  18977. [
  18978. {
  18979. name: "Normal",
  18980. height: math.unit(1.54, "feet"),
  18981. default: true
  18982. },
  18983. ]
  18984. ))
  18985. characterMakers.push(() => makeCharacter(
  18986. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18987. {
  18988. front: {
  18989. height: math.unit(1.49, "feet"),
  18990. weight: math.unit(45, "lb"),
  18991. name: "Front",
  18992. image: {
  18993. source: "./media/characters/viola/front.svg"
  18994. }
  18995. },
  18996. },
  18997. [
  18998. {
  18999. name: "Normal",
  19000. height: math.unit(1.49, "feet"),
  19001. default: true
  19002. },
  19003. ]
  19004. ))
  19005. characterMakers.push(() => makeCharacter(
  19006. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  19007. {
  19008. front: {
  19009. height: math.unit(6 + 5 / 12, "feet"),
  19010. weight: math.unit(580, "lb"),
  19011. name: "Front",
  19012. image: {
  19013. source: "./media/characters/atlas/front.svg",
  19014. extra: 298.5 / 290,
  19015. bottom: 0.015
  19016. }
  19017. },
  19018. },
  19019. [
  19020. {
  19021. name: "Normal",
  19022. height: math.unit(6 + 5 / 12, "feet"),
  19023. default: true
  19024. },
  19025. ]
  19026. ))
  19027. characterMakers.push(() => makeCharacter(
  19028. { name: "Davy", species: ["cat"], tags: ["feral"] },
  19029. {
  19030. side: {
  19031. height: math.unit(15.6, "inches"),
  19032. weight: math.unit(10, "lb"),
  19033. name: "Side",
  19034. image: {
  19035. source: "./media/characters/davy/side.svg",
  19036. extra: 200 / 170,
  19037. bottom: 0.01
  19038. }
  19039. },
  19040. },
  19041. [
  19042. {
  19043. name: "Normal",
  19044. height: math.unit(15.6, "inches"),
  19045. default: true
  19046. },
  19047. ]
  19048. ))
  19049. characterMakers.push(() => makeCharacter(
  19050. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  19051. {
  19052. side: {
  19053. height: math.unit(4 + 8 / 12, "feet"),
  19054. weight: math.unit(166, "lb"),
  19055. name: "Side",
  19056. image: {
  19057. source: "./media/characters/fiona/side.svg",
  19058. extra: 232 / 220,
  19059. bottom: 0.03
  19060. }
  19061. },
  19062. },
  19063. [
  19064. {
  19065. name: "Normal",
  19066. height: math.unit(4 + 8 / 12, "feet"),
  19067. default: true
  19068. },
  19069. ]
  19070. ))
  19071. characterMakers.push(() => makeCharacter(
  19072. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  19073. {
  19074. front: {
  19075. height: math.unit(26, "inches"),
  19076. weight: math.unit(35, "lb"),
  19077. name: "Front",
  19078. image: {
  19079. source: "./media/characters/lyla/front.svg",
  19080. bottom: 0.1
  19081. }
  19082. },
  19083. },
  19084. [
  19085. {
  19086. name: "Normal",
  19087. height: math.unit(3, "feet"),
  19088. default: true
  19089. },
  19090. ]
  19091. ))
  19092. characterMakers.push(() => makeCharacter(
  19093. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  19094. {
  19095. side: {
  19096. height: math.unit(1.8, "feet"),
  19097. weight: math.unit(44, "lb"),
  19098. name: "Side",
  19099. image: {
  19100. source: "./media/characters/perseus/side.svg",
  19101. bottom: 0.21
  19102. }
  19103. },
  19104. },
  19105. [
  19106. {
  19107. name: "Normal",
  19108. height: math.unit(1.8, "feet"),
  19109. default: true
  19110. },
  19111. ]
  19112. ))
  19113. characterMakers.push(() => makeCharacter(
  19114. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  19115. {
  19116. side: {
  19117. height: math.unit(4 + 2 / 12, "feet"),
  19118. weight: math.unit(20, "lb"),
  19119. name: "Side",
  19120. image: {
  19121. source: "./media/characters/remus/side.svg"
  19122. }
  19123. },
  19124. },
  19125. [
  19126. {
  19127. name: "Normal",
  19128. height: math.unit(4 + 2 / 12, "feet"),
  19129. default: true
  19130. },
  19131. ]
  19132. ))
  19133. characterMakers.push(() => makeCharacter(
  19134. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  19135. {
  19136. front: {
  19137. height: math.unit(4 + 11 / 12, "feet"),
  19138. weight: math.unit(114, "lb"),
  19139. name: "Front",
  19140. image: {
  19141. source: "./media/characters/raf/front.svg",
  19142. extra: 1504/1339,
  19143. bottom: 26/1530
  19144. }
  19145. },
  19146. side: {
  19147. height: math.unit(4 + 11 / 12, "feet"),
  19148. weight: math.unit(114, "lb"),
  19149. name: "Side",
  19150. image: {
  19151. source: "./media/characters/raf/side.svg",
  19152. extra: 1466/1316,
  19153. bottom: 29/1495
  19154. }
  19155. },
  19156. paw: {
  19157. height: math.unit(1.45, "feet"),
  19158. name: "Paw",
  19159. image: {
  19160. source: "./media/characters/raf/paw.svg"
  19161. },
  19162. extraAttributes: {
  19163. "toeSize": {
  19164. name: "Toe Size",
  19165. power: 2,
  19166. type: "area",
  19167. base: math.unit(0.004, "m^2")
  19168. },
  19169. "padSize": {
  19170. name: "Pad Size",
  19171. power: 2,
  19172. type: "area",
  19173. base: math.unit(0.04, "m^2")
  19174. },
  19175. "footSize": {
  19176. name: "Foot Size",
  19177. power: 2,
  19178. type: "area",
  19179. base: math.unit(0.08, "m^2")
  19180. },
  19181. }
  19182. },
  19183. },
  19184. [
  19185. {
  19186. name: "Micro",
  19187. height: math.unit(2, "inches")
  19188. },
  19189. {
  19190. name: "Normal",
  19191. height: math.unit(4 + 11 / 12, "feet"),
  19192. default: true
  19193. },
  19194. {
  19195. name: "Macro",
  19196. height: math.unit(70, "feet")
  19197. },
  19198. ]
  19199. ))
  19200. characterMakers.push(() => makeCharacter(
  19201. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  19202. {
  19203. front: {
  19204. height: math.unit(1.5, "meters"),
  19205. weight: math.unit(68, "kg"),
  19206. name: "Front",
  19207. image: {
  19208. source: "./media/characters/liam-einarr/front.svg",
  19209. extra: 2822 / 2666
  19210. }
  19211. },
  19212. back: {
  19213. height: math.unit(1.5, "meters"),
  19214. weight: math.unit(68, "kg"),
  19215. name: "Back",
  19216. image: {
  19217. source: "./media/characters/liam-einarr/back.svg",
  19218. extra: 2822 / 2666,
  19219. bottom: 0.015
  19220. }
  19221. },
  19222. },
  19223. [
  19224. {
  19225. name: "Normal",
  19226. height: math.unit(1.5, "meters"),
  19227. default: true
  19228. },
  19229. {
  19230. name: "Macro",
  19231. height: math.unit(150, "meters")
  19232. },
  19233. {
  19234. name: "Megamacro",
  19235. height: math.unit(35, "km")
  19236. },
  19237. ]
  19238. ))
  19239. characterMakers.push(() => makeCharacter(
  19240. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  19241. {
  19242. front: {
  19243. height: math.unit(6, "feet"),
  19244. weight: math.unit(75, "kg"),
  19245. name: "Front",
  19246. image: {
  19247. source: "./media/characters/linda/front.svg",
  19248. extra: 930 / 874,
  19249. bottom: 0.004
  19250. }
  19251. },
  19252. },
  19253. [
  19254. {
  19255. name: "Normal",
  19256. height: math.unit(6, "feet"),
  19257. default: true
  19258. },
  19259. ]
  19260. ))
  19261. characterMakers.push(() => makeCharacter(
  19262. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  19263. {
  19264. front: {
  19265. height: math.unit(6 + 8 / 12, "feet"),
  19266. weight: math.unit(220, "lb"),
  19267. name: "Front",
  19268. image: {
  19269. source: "./media/characters/caylex/front.svg",
  19270. extra: 821 / 772,
  19271. bottom: 0.07
  19272. }
  19273. },
  19274. back: {
  19275. height: math.unit(6 + 8 / 12, "feet"),
  19276. weight: math.unit(220, "lb"),
  19277. name: "Back",
  19278. image: {
  19279. source: "./media/characters/caylex/back.svg",
  19280. extra: 821 / 772,
  19281. bottom: 0.022
  19282. }
  19283. },
  19284. hand: {
  19285. height: math.unit(1.25, "feet"),
  19286. name: "Hand",
  19287. image: {
  19288. source: "./media/characters/caylex/hand.svg"
  19289. }
  19290. },
  19291. foot: {
  19292. height: math.unit(1.6, "feet"),
  19293. name: "Foot",
  19294. image: {
  19295. source: "./media/characters/caylex/foot.svg"
  19296. }
  19297. },
  19298. armored: {
  19299. height: math.unit(6 + 8 / 12, "feet"),
  19300. weight: math.unit(250, "lb"),
  19301. name: "Armored",
  19302. image: {
  19303. source: "./media/characters/caylex/armored.svg",
  19304. extra: 1420 / 1310,
  19305. bottom: 0.045
  19306. }
  19307. },
  19308. },
  19309. [
  19310. {
  19311. name: "Normal",
  19312. height: math.unit(6 + 8 / 12, "feet"),
  19313. default: true
  19314. },
  19315. {
  19316. name: "Normal+",
  19317. height: math.unit(12, "feet")
  19318. },
  19319. ]
  19320. ))
  19321. characterMakers.push(() => makeCharacter(
  19322. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19323. {
  19324. front: {
  19325. height: math.unit(7 + 6 / 12, "feet"),
  19326. weight: math.unit(288, "lb"),
  19327. name: "Front",
  19328. image: {
  19329. source: "./media/characters/alana/front.svg",
  19330. extra: 679 / 653,
  19331. bottom: 22.5 / 701
  19332. }
  19333. },
  19334. },
  19335. [
  19336. {
  19337. name: "Normal",
  19338. height: math.unit(7 + 6 / 12, "feet")
  19339. },
  19340. {
  19341. name: "Large",
  19342. height: math.unit(50, "feet")
  19343. },
  19344. {
  19345. name: "Macro",
  19346. height: math.unit(100, "feet"),
  19347. default: true
  19348. },
  19349. {
  19350. name: "Macro+",
  19351. height: math.unit(200, "feet")
  19352. },
  19353. ]
  19354. ))
  19355. characterMakers.push(() => makeCharacter(
  19356. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19357. {
  19358. front: {
  19359. height: math.unit(6 + 1 / 12, "feet"),
  19360. weight: math.unit(210, "lb"),
  19361. name: "Front",
  19362. image: {
  19363. source: "./media/characters/hasani/front.svg",
  19364. extra: 244 / 232,
  19365. bottom: 0.01
  19366. }
  19367. },
  19368. back: {
  19369. height: math.unit(6 + 1 / 12, "feet"),
  19370. weight: math.unit(210, "lb"),
  19371. name: "Back",
  19372. image: {
  19373. source: "./media/characters/hasani/back.svg",
  19374. extra: 244 / 232,
  19375. bottom: 0.01
  19376. }
  19377. },
  19378. },
  19379. [
  19380. {
  19381. name: "Normal",
  19382. height: math.unit(6 + 1 / 12, "feet")
  19383. },
  19384. {
  19385. name: "Macro",
  19386. height: math.unit(175, "feet"),
  19387. default: true
  19388. },
  19389. ]
  19390. ))
  19391. characterMakers.push(() => makeCharacter(
  19392. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19393. {
  19394. front: {
  19395. height: math.unit(1.82, "meters"),
  19396. weight: math.unit(140, "lb"),
  19397. name: "Front",
  19398. image: {
  19399. source: "./media/characters/nita/front.svg",
  19400. extra: 2473 / 2363,
  19401. bottom: 0.01
  19402. }
  19403. },
  19404. },
  19405. [
  19406. {
  19407. name: "Normal",
  19408. height: math.unit(1.82, "m")
  19409. },
  19410. {
  19411. name: "Macro",
  19412. height: math.unit(300, "m")
  19413. },
  19414. {
  19415. name: "Mistake Canon",
  19416. height: math.unit(0.5, "miles"),
  19417. default: true
  19418. },
  19419. {
  19420. name: "Big Mistake",
  19421. height: math.unit(13, "miles")
  19422. },
  19423. {
  19424. name: "Playing God",
  19425. height: math.unit(2450, "miles")
  19426. },
  19427. ]
  19428. ))
  19429. characterMakers.push(() => makeCharacter(
  19430. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19431. {
  19432. front: {
  19433. height: math.unit(4, "feet"),
  19434. weight: math.unit(120, "lb"),
  19435. name: "Front",
  19436. image: {
  19437. source: "./media/characters/shiriko/front.svg",
  19438. extra: 970/934,
  19439. bottom: 5/975
  19440. }
  19441. },
  19442. },
  19443. [
  19444. {
  19445. name: "Normal",
  19446. height: math.unit(4, "feet"),
  19447. default: true
  19448. },
  19449. ]
  19450. ))
  19451. characterMakers.push(() => makeCharacter(
  19452. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19453. {
  19454. front: {
  19455. height: math.unit(6, "feet"),
  19456. name: "front",
  19457. image: {
  19458. source: "./media/characters/deja/front.svg",
  19459. extra: 926 / 840,
  19460. bottom: 0.07
  19461. }
  19462. },
  19463. },
  19464. [
  19465. {
  19466. name: "Planck Length",
  19467. height: math.unit(1.6e-35, "meters")
  19468. },
  19469. {
  19470. name: "Normal",
  19471. height: math.unit(30.48, "meters"),
  19472. default: true
  19473. },
  19474. {
  19475. name: "Universal",
  19476. height: math.unit(8.8e26, "meters")
  19477. },
  19478. ]
  19479. ))
  19480. characterMakers.push(() => makeCharacter(
  19481. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19482. {
  19483. side: {
  19484. height: math.unit(8, "feet"),
  19485. weight: math.unit(6300, "lb"),
  19486. name: "Side",
  19487. image: {
  19488. source: "./media/characters/anima/side.svg",
  19489. bottom: 0.035
  19490. }
  19491. },
  19492. },
  19493. [
  19494. {
  19495. name: "Normal",
  19496. height: math.unit(8, "feet"),
  19497. default: true
  19498. },
  19499. ]
  19500. ))
  19501. characterMakers.push(() => makeCharacter(
  19502. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19503. {
  19504. front: {
  19505. height: math.unit(8, "feet"),
  19506. weight: math.unit(350, "lb"),
  19507. name: "Front",
  19508. image: {
  19509. source: "./media/characters/bianca/front.svg",
  19510. extra: 234 / 225,
  19511. bottom: 0.03
  19512. }
  19513. },
  19514. },
  19515. [
  19516. {
  19517. name: "Normal",
  19518. height: math.unit(8, "feet"),
  19519. default: true
  19520. },
  19521. ]
  19522. ))
  19523. characterMakers.push(() => makeCharacter(
  19524. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19525. {
  19526. front: {
  19527. height: math.unit(11 + 5/12, "feet"),
  19528. weight: math.unit(1200, "lb"),
  19529. name: "Front",
  19530. image: {
  19531. source: "./media/characters/adinia/front.svg",
  19532. extra: 1767/1641,
  19533. bottom: 44/1811
  19534. },
  19535. extraAttributes: {
  19536. "energyIntake": {
  19537. name: "Energy Intake",
  19538. power: 3,
  19539. type: "energy",
  19540. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19541. },
  19542. }
  19543. },
  19544. back: {
  19545. height: math.unit(11 + 5/12, "feet"),
  19546. weight: math.unit(1200, "lb"),
  19547. name: "Back",
  19548. image: {
  19549. source: "./media/characters/adinia/back.svg",
  19550. extra: 1834/1684,
  19551. bottom: 14/1848
  19552. },
  19553. extraAttributes: {
  19554. "energyIntake": {
  19555. name: "Energy Intake",
  19556. power: 3,
  19557. type: "energy",
  19558. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19559. },
  19560. }
  19561. },
  19562. maw: {
  19563. height: math.unit(3.79, "feet"),
  19564. name: "Maw",
  19565. image: {
  19566. source: "./media/characters/adinia/maw.svg"
  19567. }
  19568. },
  19569. rump: {
  19570. height: math.unit(4.6, "feet"),
  19571. name: "Rump",
  19572. image: {
  19573. source: "./media/characters/adinia/rump.svg"
  19574. }
  19575. },
  19576. },
  19577. [
  19578. {
  19579. name: "Normal",
  19580. height: math.unit(11 + 5 / 12, "feet"),
  19581. default: true
  19582. },
  19583. ]
  19584. ))
  19585. characterMakers.push(() => makeCharacter(
  19586. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19587. {
  19588. front: {
  19589. height: math.unit(3, "meters"),
  19590. weight: math.unit(200, "kg"),
  19591. name: "Front",
  19592. image: {
  19593. source: "./media/characters/lykasa/front.svg",
  19594. extra: 1076 / 976,
  19595. bottom: 0.06
  19596. }
  19597. },
  19598. },
  19599. [
  19600. {
  19601. name: "Normal",
  19602. height: math.unit(3, "meters")
  19603. },
  19604. {
  19605. name: "Kaiju",
  19606. height: math.unit(120, "meters"),
  19607. default: true
  19608. },
  19609. {
  19610. name: "Mega Kaiju",
  19611. height: math.unit(240, "km")
  19612. },
  19613. {
  19614. name: "Giga Kaiju",
  19615. height: math.unit(400, "megameters")
  19616. },
  19617. {
  19618. name: "Tera Kaiju",
  19619. height: math.unit(800, "gigameters")
  19620. },
  19621. {
  19622. name: "Kaiju Dragon Goddess",
  19623. height: math.unit(26, "zettaparsecs")
  19624. },
  19625. ]
  19626. ))
  19627. characterMakers.push(() => makeCharacter(
  19628. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19629. {
  19630. side: {
  19631. height: math.unit(283 / 124 * 6, "feet"),
  19632. weight: math.unit(35000, "lb"),
  19633. name: "Side",
  19634. image: {
  19635. source: "./media/characters/malfaren/side.svg",
  19636. extra: 1310/529,
  19637. bottom: 24/1334
  19638. }
  19639. },
  19640. front: {
  19641. height: math.unit(22.36, "feet"),
  19642. weight: math.unit(35000, "lb"),
  19643. name: "Front",
  19644. image: {
  19645. source: "./media/characters/malfaren/front.svg",
  19646. extra: 1237/1115,
  19647. bottom: 32/1269
  19648. }
  19649. },
  19650. maw: {
  19651. height: math.unit(6.9, "feet"),
  19652. name: "Maw",
  19653. image: {
  19654. source: "./media/characters/malfaren/maw.svg"
  19655. }
  19656. },
  19657. dick: {
  19658. height: math.unit(6.19, "feet"),
  19659. name: "Dick",
  19660. image: {
  19661. source: "./media/characters/malfaren/dick.svg"
  19662. }
  19663. },
  19664. eye: {
  19665. height: math.unit(0.69, "feet"),
  19666. name: "Eye",
  19667. image: {
  19668. source: "./media/characters/malfaren/eye.svg"
  19669. }
  19670. },
  19671. },
  19672. [
  19673. {
  19674. name: "Big",
  19675. height: math.unit(283 / 162 * 6, "feet"),
  19676. },
  19677. {
  19678. name: "Bigger",
  19679. height: math.unit(283 / 124 * 6, "feet")
  19680. },
  19681. {
  19682. name: "Massive",
  19683. height: math.unit(283 / 92 * 6, "feet"),
  19684. default: true
  19685. },
  19686. {
  19687. name: "👀💦",
  19688. height: math.unit(283 / 73 * 6, "feet"),
  19689. },
  19690. ]
  19691. ))
  19692. characterMakers.push(() => makeCharacter(
  19693. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19694. {
  19695. front: {
  19696. height: math.unit(1.7, "m"),
  19697. weight: math.unit(70, "kg"),
  19698. name: "Front",
  19699. image: {
  19700. source: "./media/characters/kernel/front.svg",
  19701. extra: 222 / 210,
  19702. bottom: 0.007
  19703. }
  19704. },
  19705. },
  19706. [
  19707. {
  19708. name: "Nano",
  19709. height: math.unit(17, "micrometers")
  19710. },
  19711. {
  19712. name: "Micro",
  19713. height: math.unit(1.7, "mm")
  19714. },
  19715. {
  19716. name: "Small",
  19717. height: math.unit(1.7, "cm")
  19718. },
  19719. {
  19720. name: "Normal",
  19721. height: math.unit(1.7, "m"),
  19722. default: true
  19723. },
  19724. ]
  19725. ))
  19726. characterMakers.push(() => makeCharacter(
  19727. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19728. {
  19729. front: {
  19730. height: math.unit(1.75, "meters"),
  19731. weight: math.unit(65, "kg"),
  19732. name: "Front",
  19733. image: {
  19734. source: "./media/characters/jayne-folest/front.svg",
  19735. extra: 2115 / 2007,
  19736. bottom: 0.02
  19737. }
  19738. },
  19739. back: {
  19740. height: math.unit(1.75, "meters"),
  19741. weight: math.unit(65, "kg"),
  19742. name: "Back",
  19743. image: {
  19744. source: "./media/characters/jayne-folest/back.svg",
  19745. extra: 2115 / 2007,
  19746. bottom: 0.005
  19747. }
  19748. },
  19749. frontClothed: {
  19750. height: math.unit(1.75, "meters"),
  19751. weight: math.unit(65, "kg"),
  19752. name: "Front (Clothed)",
  19753. image: {
  19754. source: "./media/characters/jayne-folest/front-clothed.svg",
  19755. extra: 2115 / 2007,
  19756. bottom: 0.035
  19757. }
  19758. },
  19759. hand: {
  19760. height: math.unit(1 / 1.260, "feet"),
  19761. name: "Hand",
  19762. image: {
  19763. source: "./media/characters/jayne-folest/hand.svg"
  19764. }
  19765. },
  19766. foot: {
  19767. height: math.unit(1 / 0.918, "feet"),
  19768. name: "Foot",
  19769. image: {
  19770. source: "./media/characters/jayne-folest/foot.svg"
  19771. }
  19772. },
  19773. },
  19774. [
  19775. {
  19776. name: "Micro",
  19777. height: math.unit(4, "cm")
  19778. },
  19779. {
  19780. name: "Normal",
  19781. height: math.unit(1.75, "meters")
  19782. },
  19783. {
  19784. name: "Macro",
  19785. height: math.unit(47.5, "meters"),
  19786. default: true
  19787. },
  19788. ]
  19789. ))
  19790. characterMakers.push(() => makeCharacter(
  19791. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19792. {
  19793. front: {
  19794. height: math.unit(180, "cm"),
  19795. weight: math.unit(70, "kg"),
  19796. name: "Front",
  19797. image: {
  19798. source: "./media/characters/algier/front.svg",
  19799. extra: 596 / 572,
  19800. bottom: 0.04
  19801. }
  19802. },
  19803. back: {
  19804. height: math.unit(180, "cm"),
  19805. weight: math.unit(70, "kg"),
  19806. name: "Back",
  19807. image: {
  19808. source: "./media/characters/algier/back.svg",
  19809. extra: 596 / 572,
  19810. bottom: 0.025
  19811. }
  19812. },
  19813. frontdressed: {
  19814. height: math.unit(180, "cm"),
  19815. weight: math.unit(150, "kg"),
  19816. name: "Front-dressed",
  19817. image: {
  19818. source: "./media/characters/algier/front-dressed.svg",
  19819. extra: 596 / 572,
  19820. bottom: 0.038
  19821. }
  19822. },
  19823. },
  19824. [
  19825. {
  19826. name: "Micro",
  19827. height: math.unit(5, "cm")
  19828. },
  19829. {
  19830. name: "Normal",
  19831. height: math.unit(180, "cm"),
  19832. default: true
  19833. },
  19834. {
  19835. name: "Macro",
  19836. height: math.unit(64, "m")
  19837. },
  19838. ]
  19839. ))
  19840. characterMakers.push(() => makeCharacter(
  19841. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19842. {
  19843. upright: {
  19844. height: math.unit(7, "feet"),
  19845. weight: math.unit(300, "lb"),
  19846. name: "Upright",
  19847. image: {
  19848. source: "./media/characters/pretzel/upright.svg",
  19849. extra: 534 / 522,
  19850. bottom: 0.065
  19851. }
  19852. },
  19853. sprawling: {
  19854. height: math.unit(3.75, "feet"),
  19855. weight: math.unit(300, "lb"),
  19856. name: "Sprawling",
  19857. image: {
  19858. source: "./media/characters/pretzel/sprawling.svg",
  19859. extra: 314 / 281,
  19860. bottom: 0.1
  19861. }
  19862. },
  19863. tongue: {
  19864. height: math.unit(2, "feet"),
  19865. name: "Tongue",
  19866. image: {
  19867. source: "./media/characters/pretzel/tongue.svg"
  19868. }
  19869. },
  19870. },
  19871. [
  19872. {
  19873. name: "Normal",
  19874. height: math.unit(7, "feet"),
  19875. default: true
  19876. },
  19877. {
  19878. name: "Oversized",
  19879. height: math.unit(15, "feet")
  19880. },
  19881. {
  19882. name: "Huge",
  19883. height: math.unit(30, "feet")
  19884. },
  19885. {
  19886. name: "Macro",
  19887. height: math.unit(250, "feet")
  19888. },
  19889. ]
  19890. ))
  19891. characterMakers.push(() => makeCharacter(
  19892. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19893. {
  19894. sideFront: {
  19895. height: math.unit(5 + 2 / 12, "feet"),
  19896. weight: math.unit(120, "lb"),
  19897. name: "Front Side",
  19898. image: {
  19899. source: "./media/characters/roxi/side-front.svg",
  19900. extra: 2924 / 2717,
  19901. bottom: 0.08
  19902. }
  19903. },
  19904. sideBack: {
  19905. height: math.unit(5 + 2 / 12, "feet"),
  19906. weight: math.unit(120, "lb"),
  19907. name: "Back Side",
  19908. image: {
  19909. source: "./media/characters/roxi/side-back.svg",
  19910. extra: 2904 / 2693,
  19911. bottom: 0.06
  19912. }
  19913. },
  19914. front: {
  19915. height: math.unit(5 + 2 / 12, "feet"),
  19916. weight: math.unit(120, "lb"),
  19917. name: "Front",
  19918. image: {
  19919. source: "./media/characters/roxi/front.svg",
  19920. extra: 2028 / 1907,
  19921. bottom: 0.01
  19922. }
  19923. },
  19924. frontAlt: {
  19925. height: math.unit(5 + 2 / 12, "feet"),
  19926. weight: math.unit(120, "lb"),
  19927. name: "Front (Alt)",
  19928. image: {
  19929. source: "./media/characters/roxi/front-alt.svg",
  19930. extra: 1828 / 1798,
  19931. bottom: 0.01
  19932. }
  19933. },
  19934. sitting: {
  19935. height: math.unit(2.8, "feet"),
  19936. weight: math.unit(120, "lb"),
  19937. name: "Sitting",
  19938. image: {
  19939. source: "./media/characters/roxi/sitting.svg",
  19940. extra: 2660 / 2462,
  19941. bottom: 0.1
  19942. }
  19943. },
  19944. },
  19945. [
  19946. {
  19947. name: "Normal",
  19948. height: math.unit(5 + 2 / 12, "feet"),
  19949. default: true
  19950. },
  19951. ]
  19952. ))
  19953. characterMakers.push(() => makeCharacter(
  19954. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19955. {
  19956. side: {
  19957. height: math.unit(55, "feet"),
  19958. weight: math.unit(153, "tons"),
  19959. name: "Side",
  19960. image: {
  19961. source: "./media/characters/shadow/side.svg",
  19962. extra: 701 / 628,
  19963. bottom: 0.02
  19964. }
  19965. },
  19966. flying: {
  19967. height: math.unit(145, "feet"),
  19968. weight: math.unit(153, "tons"),
  19969. name: "Flying",
  19970. image: {
  19971. source: "./media/characters/shadow/flying.svg"
  19972. }
  19973. },
  19974. },
  19975. [
  19976. {
  19977. name: "Normal",
  19978. height: math.unit(55, "feet"),
  19979. default: true
  19980. },
  19981. ]
  19982. ))
  19983. characterMakers.push(() => makeCharacter(
  19984. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19985. {
  19986. front: {
  19987. height: math.unit(6, "feet"),
  19988. weight: math.unit(200, "lb"),
  19989. name: "Front",
  19990. image: {
  19991. source: "./media/characters/marcie/front.svg",
  19992. extra: 960 / 876,
  19993. bottom: 58 / 1017.87
  19994. }
  19995. },
  19996. },
  19997. [
  19998. {
  19999. name: "Macro",
  20000. height: math.unit(1, "mile"),
  20001. default: true
  20002. },
  20003. ]
  20004. ))
  20005. characterMakers.push(() => makeCharacter(
  20006. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  20007. {
  20008. front: {
  20009. height: math.unit(7, "feet"),
  20010. weight: math.unit(200, "lb"),
  20011. name: "Front",
  20012. image: {
  20013. source: "./media/characters/kachina/front.svg",
  20014. extra: 1290.68 / 1119,
  20015. bottom: 36.5 / 1327.18
  20016. }
  20017. },
  20018. },
  20019. [
  20020. {
  20021. name: "Normal",
  20022. height: math.unit(7, "feet"),
  20023. default: true
  20024. },
  20025. ]
  20026. ))
  20027. characterMakers.push(() => makeCharacter(
  20028. { name: "Kash", species: ["canine"], tags: ["feral"] },
  20029. {
  20030. looking: {
  20031. height: math.unit(2, "meters"),
  20032. weight: math.unit(300, "kg"),
  20033. name: "Looking",
  20034. image: {
  20035. source: "./media/characters/kash/looking.svg",
  20036. extra: 474 / 344,
  20037. bottom: 0.03
  20038. }
  20039. },
  20040. side: {
  20041. height: math.unit(2, "meters"),
  20042. weight: math.unit(300, "kg"),
  20043. name: "Side",
  20044. image: {
  20045. source: "./media/characters/kash/side.svg",
  20046. extra: 302 / 251,
  20047. bottom: 0.03
  20048. }
  20049. },
  20050. front: {
  20051. height: math.unit(2, "meters"),
  20052. weight: math.unit(300, "kg"),
  20053. name: "Front",
  20054. image: {
  20055. source: "./media/characters/kash/front.svg",
  20056. extra: 495 / 360,
  20057. bottom: 0.015
  20058. }
  20059. },
  20060. },
  20061. [
  20062. {
  20063. name: "Normal",
  20064. height: math.unit(2, "meters"),
  20065. default: true
  20066. },
  20067. {
  20068. name: "Big",
  20069. height: math.unit(3, "meters")
  20070. },
  20071. {
  20072. name: "Large",
  20073. height: math.unit(5, "meters")
  20074. },
  20075. ]
  20076. ))
  20077. characterMakers.push(() => makeCharacter(
  20078. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  20079. {
  20080. feeding: {
  20081. height: math.unit(6.7, "feet"),
  20082. weight: math.unit(350, "lb"),
  20083. name: "Feeding",
  20084. image: {
  20085. source: "./media/characters/lalim/feeding.svg",
  20086. }
  20087. },
  20088. },
  20089. [
  20090. {
  20091. name: "Normal",
  20092. height: math.unit(6.7, "feet"),
  20093. default: true
  20094. },
  20095. ]
  20096. ))
  20097. characterMakers.push(() => makeCharacter(
  20098. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  20099. {
  20100. front: {
  20101. height: math.unit(9.5, "feet"),
  20102. weight: math.unit(600, "lb"),
  20103. name: "Front",
  20104. image: {
  20105. source: "./media/characters/de'vout/front.svg",
  20106. extra: 1443 / 1328,
  20107. bottom: 0.025
  20108. }
  20109. },
  20110. back: {
  20111. height: math.unit(9.5, "feet"),
  20112. weight: math.unit(600, "lb"),
  20113. name: "Back",
  20114. image: {
  20115. source: "./media/characters/de'vout/back.svg",
  20116. extra: 1443 / 1328
  20117. }
  20118. },
  20119. frontDressed: {
  20120. height: math.unit(9.5, "feet"),
  20121. weight: math.unit(600, "lb"),
  20122. name: "Front (Dressed",
  20123. image: {
  20124. source: "./media/characters/de'vout/front-dressed.svg",
  20125. extra: 1443 / 1328,
  20126. bottom: 0.025
  20127. }
  20128. },
  20129. backDressed: {
  20130. height: math.unit(9.5, "feet"),
  20131. weight: math.unit(600, "lb"),
  20132. name: "Back (Dressed",
  20133. image: {
  20134. source: "./media/characters/de'vout/back-dressed.svg",
  20135. extra: 1443 / 1328
  20136. }
  20137. },
  20138. },
  20139. [
  20140. {
  20141. name: "Normal",
  20142. height: math.unit(9.5, "feet"),
  20143. default: true
  20144. },
  20145. ]
  20146. ))
  20147. characterMakers.push(() => makeCharacter(
  20148. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  20149. {
  20150. front: {
  20151. height: math.unit(8, "feet"),
  20152. weight: math.unit(225, "lb"),
  20153. name: "Front",
  20154. image: {
  20155. source: "./media/characters/talana/front.svg",
  20156. extra: 1410 / 1300,
  20157. bottom: 0.015
  20158. }
  20159. },
  20160. frontDressed: {
  20161. height: math.unit(8, "feet"),
  20162. weight: math.unit(225, "lb"),
  20163. name: "Front (Dressed",
  20164. image: {
  20165. source: "./media/characters/talana/front-dressed.svg",
  20166. extra: 1410 / 1300,
  20167. bottom: 0.015
  20168. }
  20169. },
  20170. },
  20171. [
  20172. {
  20173. name: "Normal",
  20174. height: math.unit(8, "feet"),
  20175. default: true
  20176. },
  20177. ]
  20178. ))
  20179. characterMakers.push(() => makeCharacter(
  20180. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  20181. {
  20182. side: {
  20183. height: math.unit(7.2, "feet"),
  20184. weight: math.unit(150, "lb"),
  20185. name: "Side",
  20186. image: {
  20187. source: "./media/characters/xeauvok/side.svg",
  20188. extra: 1975 / 1523,
  20189. bottom: 0.07
  20190. }
  20191. },
  20192. },
  20193. [
  20194. {
  20195. name: "Normal",
  20196. height: math.unit(7.2, "feet"),
  20197. default: true
  20198. },
  20199. ]
  20200. ))
  20201. characterMakers.push(() => makeCharacter(
  20202. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  20203. {
  20204. side: {
  20205. height: math.unit(4, "meters"),
  20206. weight: math.unit(2200, "kg"),
  20207. name: "Side",
  20208. image: {
  20209. source: "./media/characters/zara/side.svg",
  20210. extra: 765/744,
  20211. bottom: 156/921
  20212. }
  20213. },
  20214. },
  20215. [
  20216. {
  20217. name: "Normal",
  20218. height: math.unit(4, "meters"),
  20219. default: true
  20220. },
  20221. ]
  20222. ))
  20223. characterMakers.push(() => makeCharacter(
  20224. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  20225. {
  20226. side: {
  20227. height: math.unit(6, "feet"),
  20228. weight: math.unit(150, "lb"),
  20229. name: "Side",
  20230. image: {
  20231. source: "./media/characters/richard-dragon/side.svg",
  20232. extra: 845 / 340,
  20233. bottom: 0.017
  20234. }
  20235. },
  20236. maw: {
  20237. height: math.unit(2.97, "feet"),
  20238. name: "Maw",
  20239. image: {
  20240. source: "./media/characters/richard-dragon/maw.svg"
  20241. }
  20242. },
  20243. },
  20244. [
  20245. ]
  20246. ))
  20247. characterMakers.push(() => makeCharacter(
  20248. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  20249. {
  20250. front: {
  20251. height: math.unit(4, "feet"),
  20252. weight: math.unit(100, "lb"),
  20253. name: "Front",
  20254. image: {
  20255. source: "./media/characters/richard-smeargle/front.svg",
  20256. extra: 2952 / 2820,
  20257. bottom: 0.028
  20258. }
  20259. },
  20260. },
  20261. [
  20262. {
  20263. name: "Normal",
  20264. height: math.unit(4, "feet"),
  20265. default: true
  20266. },
  20267. {
  20268. name: "Dynamax",
  20269. height: math.unit(20, "meters")
  20270. },
  20271. ]
  20272. ))
  20273. characterMakers.push(() => makeCharacter(
  20274. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  20275. {
  20276. front: {
  20277. height: math.unit(6, "feet"),
  20278. weight: math.unit(110, "lb"),
  20279. name: "Front",
  20280. image: {
  20281. source: "./media/characters/klay/front.svg",
  20282. extra: 962 / 883,
  20283. bottom: 0.04
  20284. }
  20285. },
  20286. back: {
  20287. height: math.unit(6, "feet"),
  20288. weight: math.unit(110, "lb"),
  20289. name: "Back",
  20290. image: {
  20291. source: "./media/characters/klay/back.svg",
  20292. extra: 962 / 883
  20293. }
  20294. },
  20295. beans: {
  20296. height: math.unit(1.15, "feet"),
  20297. name: "Beans",
  20298. image: {
  20299. source: "./media/characters/klay/beans.svg"
  20300. }
  20301. },
  20302. },
  20303. [
  20304. {
  20305. name: "Micro",
  20306. height: math.unit(6, "inches")
  20307. },
  20308. {
  20309. name: "Mini",
  20310. height: math.unit(3, "feet")
  20311. },
  20312. {
  20313. name: "Normal",
  20314. height: math.unit(6, "feet"),
  20315. default: true
  20316. },
  20317. {
  20318. name: "Big",
  20319. height: math.unit(25, "feet")
  20320. },
  20321. {
  20322. name: "Macro",
  20323. height: math.unit(100, "feet")
  20324. },
  20325. {
  20326. name: "Megamacro",
  20327. height: math.unit(400, "feet")
  20328. },
  20329. ]
  20330. ))
  20331. characterMakers.push(() => makeCharacter(
  20332. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20333. {
  20334. front: {
  20335. height: math.unit(6, "feet"),
  20336. weight: math.unit(160, "lb"),
  20337. name: "Front",
  20338. image: {
  20339. source: "./media/characters/marcus/front.svg",
  20340. extra: 734 / 676,
  20341. bottom: 0.03
  20342. }
  20343. },
  20344. },
  20345. [
  20346. {
  20347. name: "Little",
  20348. height: math.unit(6, "feet")
  20349. },
  20350. {
  20351. name: "Normal",
  20352. height: math.unit(110, "feet"),
  20353. default: true
  20354. },
  20355. {
  20356. name: "Macro",
  20357. height: math.unit(250, "feet")
  20358. },
  20359. {
  20360. name: "Megamacro",
  20361. height: math.unit(1000, "feet")
  20362. },
  20363. ]
  20364. ))
  20365. characterMakers.push(() => makeCharacter(
  20366. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20367. {
  20368. front: {
  20369. height: math.unit(7, "feet"),
  20370. weight: math.unit(275, "lb"),
  20371. name: "Front",
  20372. image: {
  20373. source: "./media/characters/claude-delroute/front.svg",
  20374. extra: 902/827,
  20375. bottom: 26/928
  20376. }
  20377. },
  20378. side: {
  20379. height: math.unit(7, "feet"),
  20380. weight: math.unit(275, "lb"),
  20381. name: "Side",
  20382. image: {
  20383. source: "./media/characters/claude-delroute/side.svg",
  20384. extra: 908/853,
  20385. bottom: 16/924
  20386. }
  20387. },
  20388. back: {
  20389. height: math.unit(7, "feet"),
  20390. weight: math.unit(275, "lb"),
  20391. name: "Back",
  20392. image: {
  20393. source: "./media/characters/claude-delroute/back.svg",
  20394. extra: 911/829,
  20395. bottom: 18/929
  20396. }
  20397. },
  20398. maw: {
  20399. height: math.unit(0.6407, "meters"),
  20400. name: "Maw",
  20401. image: {
  20402. source: "./media/characters/claude-delroute/maw.svg"
  20403. }
  20404. },
  20405. },
  20406. [
  20407. {
  20408. name: "Normal",
  20409. height: math.unit(7, "feet"),
  20410. default: true
  20411. },
  20412. {
  20413. name: "Lorge",
  20414. height: math.unit(20, "feet")
  20415. },
  20416. ]
  20417. ))
  20418. characterMakers.push(() => makeCharacter(
  20419. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20420. {
  20421. front: {
  20422. height: math.unit(8 + 4 / 12, "feet"),
  20423. weight: math.unit(600, "lb"),
  20424. name: "Front",
  20425. image: {
  20426. source: "./media/characters/dragonien/front.svg",
  20427. extra: 100 / 94,
  20428. bottom: 3.3 / 103.3445
  20429. }
  20430. },
  20431. back: {
  20432. height: math.unit(8 + 4 / 12, "feet"),
  20433. weight: math.unit(600, "lb"),
  20434. name: "Back",
  20435. image: {
  20436. source: "./media/characters/dragonien/back.svg",
  20437. extra: 776 / 746,
  20438. bottom: 6.4 / 782.0616
  20439. }
  20440. },
  20441. foot: {
  20442. height: math.unit(1.54, "feet"),
  20443. name: "Foot",
  20444. image: {
  20445. source: "./media/characters/dragonien/foot.svg",
  20446. }
  20447. },
  20448. },
  20449. [
  20450. {
  20451. name: "Normal",
  20452. height: math.unit(8 + 4 / 12, "feet"),
  20453. default: true
  20454. },
  20455. {
  20456. name: "Macro",
  20457. height: math.unit(200, "feet")
  20458. },
  20459. {
  20460. name: "Megamacro",
  20461. height: math.unit(1, "mile")
  20462. },
  20463. {
  20464. name: "Gigamacro",
  20465. height: math.unit(1000, "miles")
  20466. },
  20467. ]
  20468. ))
  20469. characterMakers.push(() => makeCharacter(
  20470. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20471. {
  20472. front: {
  20473. height: math.unit(5 + 2 / 12, "feet"),
  20474. weight: math.unit(110, "lb"),
  20475. name: "Front",
  20476. image: {
  20477. source: "./media/characters/desta/front.svg",
  20478. extra: 767 / 726,
  20479. bottom: 11.7 / 779
  20480. }
  20481. },
  20482. back: {
  20483. height: math.unit(5 + 2 / 12, "feet"),
  20484. weight: math.unit(110, "lb"),
  20485. name: "Back",
  20486. image: {
  20487. source: "./media/characters/desta/back.svg",
  20488. extra: 777 / 728,
  20489. bottom: 6 / 784
  20490. }
  20491. },
  20492. frontAlt: {
  20493. height: math.unit(5 + 2 / 12, "feet"),
  20494. weight: math.unit(110, "lb"),
  20495. name: "Front",
  20496. image: {
  20497. source: "./media/characters/desta/front-alt.svg",
  20498. extra: 1482 / 1417
  20499. }
  20500. },
  20501. side: {
  20502. height: math.unit(5 + 2 / 12, "feet"),
  20503. weight: math.unit(110, "lb"),
  20504. name: "Side",
  20505. image: {
  20506. source: "./media/characters/desta/side.svg",
  20507. extra: 2579 / 2491,
  20508. bottom: 0.053
  20509. }
  20510. },
  20511. },
  20512. [
  20513. {
  20514. name: "Micro",
  20515. height: math.unit(6, "inches")
  20516. },
  20517. {
  20518. name: "Normal",
  20519. height: math.unit(5 + 2 / 12, "feet"),
  20520. default: true
  20521. },
  20522. {
  20523. name: "Macro",
  20524. height: math.unit(62, "feet")
  20525. },
  20526. {
  20527. name: "Megamacro",
  20528. height: math.unit(1800, "feet")
  20529. },
  20530. ]
  20531. ))
  20532. characterMakers.push(() => makeCharacter(
  20533. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20534. {
  20535. front: {
  20536. height: math.unit(10, "feet"),
  20537. weight: math.unit(700, "lb"),
  20538. name: "Front",
  20539. image: {
  20540. source: "./media/characters/storm-alystar/front.svg",
  20541. extra: 2112 / 1898,
  20542. bottom: 0.034
  20543. }
  20544. },
  20545. },
  20546. [
  20547. {
  20548. name: "Micro",
  20549. height: math.unit(3.5, "inches")
  20550. },
  20551. {
  20552. name: "Normal",
  20553. height: math.unit(10, "feet"),
  20554. default: true
  20555. },
  20556. {
  20557. name: "Macro",
  20558. height: math.unit(400, "feet")
  20559. },
  20560. {
  20561. name: "Deific",
  20562. height: math.unit(60, "miles")
  20563. },
  20564. ]
  20565. ))
  20566. characterMakers.push(() => makeCharacter(
  20567. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20568. {
  20569. front: {
  20570. height: math.unit(2.35, "meters"),
  20571. weight: math.unit(119, "kg"),
  20572. name: "Front",
  20573. image: {
  20574. source: "./media/characters/ilia/front.svg",
  20575. extra: 1285 / 1255,
  20576. bottom: 0.06
  20577. }
  20578. },
  20579. },
  20580. [
  20581. {
  20582. name: "Normal",
  20583. height: math.unit(2.35, "meters")
  20584. },
  20585. {
  20586. name: "Macro",
  20587. height: math.unit(140, "meters"),
  20588. default: true
  20589. },
  20590. {
  20591. name: "Megamacro",
  20592. height: math.unit(100, "miles")
  20593. },
  20594. ]
  20595. ))
  20596. characterMakers.push(() => makeCharacter(
  20597. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20598. {
  20599. front: {
  20600. height: math.unit(6 + 5 / 12, "feet"),
  20601. weight: math.unit(190, "lb"),
  20602. name: "Front",
  20603. image: {
  20604. source: "./media/characters/kingdead/front.svg",
  20605. extra: 1228 / 1177
  20606. }
  20607. },
  20608. },
  20609. [
  20610. {
  20611. name: "Micro",
  20612. height: math.unit(7, "inches")
  20613. },
  20614. {
  20615. name: "Normal",
  20616. height: math.unit(6 + 5 / 12, "feet")
  20617. },
  20618. {
  20619. name: "Macro",
  20620. height: math.unit(150, "feet"),
  20621. default: true
  20622. },
  20623. {
  20624. name: "Megamacro",
  20625. height: math.unit(200, "miles")
  20626. },
  20627. ]
  20628. ))
  20629. characterMakers.push(() => makeCharacter(
  20630. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20631. {
  20632. front: {
  20633. height: math.unit(8, "feet"),
  20634. weight: math.unit(600, "lb"),
  20635. name: "Front",
  20636. image: {
  20637. source: "./media/characters/kyrehx/front.svg",
  20638. extra: 1195 / 1095,
  20639. bottom: 0.034
  20640. }
  20641. },
  20642. },
  20643. [
  20644. {
  20645. name: "Micro",
  20646. height: math.unit(2, "inches")
  20647. },
  20648. {
  20649. name: "Normal",
  20650. height: math.unit(8, "feet"),
  20651. default: true
  20652. },
  20653. {
  20654. name: "Macro",
  20655. height: math.unit(255, "feet")
  20656. },
  20657. ]
  20658. ))
  20659. characterMakers.push(() => makeCharacter(
  20660. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20661. {
  20662. front: {
  20663. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20664. weight: math.unit(184, "lb"),
  20665. name: "Front",
  20666. image: {
  20667. source: "./media/characters/xang/front.svg",
  20668. extra: 845 / 755
  20669. }
  20670. },
  20671. },
  20672. [
  20673. {
  20674. name: "Normal",
  20675. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20676. default: true
  20677. },
  20678. {
  20679. name: "Macro",
  20680. height: math.unit(0.935 * 146, "feet")
  20681. },
  20682. {
  20683. name: "Megamacro",
  20684. height: math.unit(0.935 * 3, "miles")
  20685. },
  20686. ]
  20687. ))
  20688. characterMakers.push(() => makeCharacter(
  20689. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20690. {
  20691. frontDressed: {
  20692. height: math.unit(5 + 7 / 12, "feet"),
  20693. weight: math.unit(140, "lb"),
  20694. name: "Front (Dressed)",
  20695. image: {
  20696. source: "./media/characters/doc-weardno/front-dressed.svg",
  20697. extra: 263 / 234
  20698. }
  20699. },
  20700. backDressed: {
  20701. height: math.unit(5 + 7 / 12, "feet"),
  20702. weight: math.unit(140, "lb"),
  20703. name: "Back (Dressed)",
  20704. image: {
  20705. source: "./media/characters/doc-weardno/back-dressed.svg",
  20706. extra: 266 / 238
  20707. }
  20708. },
  20709. front: {
  20710. height: math.unit(5 + 7 / 12, "feet"),
  20711. weight: math.unit(140, "lb"),
  20712. name: "Front",
  20713. image: {
  20714. source: "./media/characters/doc-weardno/front.svg",
  20715. extra: 254 / 233
  20716. }
  20717. },
  20718. },
  20719. [
  20720. {
  20721. name: "Micro",
  20722. height: math.unit(3, "inches")
  20723. },
  20724. {
  20725. name: "Normal",
  20726. height: math.unit(5 + 7 / 12, "feet"),
  20727. default: true
  20728. },
  20729. {
  20730. name: "Macro",
  20731. height: math.unit(25, "feet")
  20732. },
  20733. {
  20734. name: "Megamacro",
  20735. height: math.unit(2, "miles")
  20736. },
  20737. ]
  20738. ))
  20739. characterMakers.push(() => makeCharacter(
  20740. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20741. {
  20742. front: {
  20743. height: math.unit(6 + 2 / 12, "feet"),
  20744. weight: math.unit(153, "lb"),
  20745. name: "Front",
  20746. image: {
  20747. source: "./media/characters/seth-whilst/front.svg",
  20748. bottom: 0.07
  20749. }
  20750. },
  20751. },
  20752. [
  20753. {
  20754. name: "Micro",
  20755. height: math.unit(5, "inches")
  20756. },
  20757. {
  20758. name: "Normal",
  20759. height: math.unit(6 + 2 / 12, "feet"),
  20760. default: true
  20761. },
  20762. ]
  20763. ))
  20764. characterMakers.push(() => makeCharacter(
  20765. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20766. {
  20767. front: {
  20768. height: math.unit(3, "inches"),
  20769. weight: math.unit(8, "grams"),
  20770. name: "Front",
  20771. image: {
  20772. source: "./media/characters/pocket-jabari/front.svg",
  20773. extra: 1024 / 974,
  20774. bottom: 0.039
  20775. }
  20776. },
  20777. },
  20778. [
  20779. {
  20780. name: "Minimicro",
  20781. height: math.unit(8, "mm")
  20782. },
  20783. {
  20784. name: "Micro",
  20785. height: math.unit(3, "inches"),
  20786. default: true
  20787. },
  20788. {
  20789. name: "Normal",
  20790. height: math.unit(3, "feet")
  20791. },
  20792. ]
  20793. ))
  20794. characterMakers.push(() => makeCharacter(
  20795. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20796. {
  20797. frontDressed: {
  20798. height: math.unit(15, "feet"),
  20799. weight: math.unit(3280, "lb"),
  20800. name: "Front (Dressed)",
  20801. image: {
  20802. source: "./media/characters/sapphy/front-dressed.svg",
  20803. extra: 1951/1654,
  20804. bottom: 194/2145
  20805. },
  20806. form: "anthro",
  20807. default: true
  20808. },
  20809. backDressed: {
  20810. height: math.unit(15, "feet"),
  20811. weight: math.unit(3280, "lb"),
  20812. name: "Back (Dressed)",
  20813. image: {
  20814. source: "./media/characters/sapphy/back-dressed.svg",
  20815. extra: 2058/1918,
  20816. bottom: 125/2183
  20817. },
  20818. form: "anthro"
  20819. },
  20820. frontNude: {
  20821. height: math.unit(15, "feet"),
  20822. weight: math.unit(3280, "lb"),
  20823. name: "Front (Nude)",
  20824. image: {
  20825. source: "./media/characters/sapphy/front-nude.svg",
  20826. extra: 1951/1654,
  20827. bottom: 194/2145
  20828. },
  20829. form: "anthro"
  20830. },
  20831. backNude: {
  20832. height: math.unit(15, "feet"),
  20833. weight: math.unit(3280, "lb"),
  20834. name: "Back (Nude)",
  20835. image: {
  20836. source: "./media/characters/sapphy/back-nude.svg",
  20837. extra: 2058/1918,
  20838. bottom: 125/2183
  20839. },
  20840. form: "anthro"
  20841. },
  20842. full: {
  20843. height: math.unit(15, "feet"),
  20844. weight: math.unit(3280, "lb"),
  20845. name: "Full",
  20846. image: {
  20847. source: "./media/characters/sapphy/full.svg",
  20848. extra: 1396/1317,
  20849. bottom: 44/1440
  20850. },
  20851. form: "anthro"
  20852. },
  20853. dick: {
  20854. height: math.unit(3.8, "feet"),
  20855. name: "Dick",
  20856. image: {
  20857. source: "./media/characters/sapphy/dick.svg"
  20858. },
  20859. form: "anthro"
  20860. },
  20861. feral: {
  20862. height: math.unit(35, "feet"),
  20863. weight: math.unit(160, "tons"),
  20864. name: "Feral",
  20865. image: {
  20866. source: "./media/characters/sapphy/feral.svg",
  20867. extra: 1050/573,
  20868. bottom: 60/1110
  20869. },
  20870. form: "feral",
  20871. default: true
  20872. },
  20873. },
  20874. [
  20875. {
  20876. name: "Normal",
  20877. height: math.unit(15, "feet"),
  20878. form: "anthro"
  20879. },
  20880. {
  20881. name: "Casual Macro",
  20882. height: math.unit(120, "feet"),
  20883. form: "anthro"
  20884. },
  20885. {
  20886. name: "Macro",
  20887. height: math.unit(2150, "feet"),
  20888. default: true,
  20889. form: "anthro"
  20890. },
  20891. {
  20892. name: "Megamacro",
  20893. height: math.unit(8, "miles"),
  20894. form: "anthro"
  20895. },
  20896. {
  20897. name: "Galaxy Mom",
  20898. height: math.unit(6, "megalightyears"),
  20899. form: "anthro"
  20900. },
  20901. {
  20902. name: "Normal",
  20903. height: math.unit(35, "feet"),
  20904. form: "feral",
  20905. default: true
  20906. },
  20907. {
  20908. name: "Macro",
  20909. height: math.unit(300, "feet"),
  20910. form: "feral"
  20911. },
  20912. {
  20913. name: "Galaxy Mom",
  20914. height: math.unit(10, "megalightyears"),
  20915. form: "feral"
  20916. },
  20917. ],
  20918. {
  20919. "anthro": {
  20920. name: "Anthro",
  20921. default: true
  20922. },
  20923. "feral": {
  20924. name: "Feral"
  20925. }
  20926. }
  20927. ))
  20928. characterMakers.push(() => makeCharacter(
  20929. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20930. {
  20931. hyenaFront: {
  20932. height: math.unit(6, "feet"),
  20933. weight: math.unit(190, "lb"),
  20934. name: "Front",
  20935. image: {
  20936. source: "./media/characters/kiro/hyena-front.svg",
  20937. extra: 927/839,
  20938. bottom: 91/1018
  20939. },
  20940. form: "hyena",
  20941. default: true
  20942. },
  20943. front: {
  20944. height: math.unit(6, "feet"),
  20945. weight: math.unit(170, "lb"),
  20946. name: "Front",
  20947. image: {
  20948. source: "./media/characters/kiro/front.svg",
  20949. extra: 1064 / 1012,
  20950. bottom: 0.052
  20951. },
  20952. form: "folf",
  20953. default: true
  20954. },
  20955. },
  20956. [
  20957. {
  20958. name: "Micro",
  20959. height: math.unit(6, "inches"),
  20960. form: "folf"
  20961. },
  20962. {
  20963. name: "Normal",
  20964. height: math.unit(6, "feet"),
  20965. form: "folf",
  20966. default: true
  20967. },
  20968. {
  20969. name: "Macro",
  20970. height: math.unit(72, "feet"),
  20971. form: "folf"
  20972. },
  20973. {
  20974. name: "Micro",
  20975. height: math.unit(6, "inches"),
  20976. form: "hyena"
  20977. },
  20978. {
  20979. name: "Normal",
  20980. height: math.unit(6, "feet"),
  20981. form: "hyena",
  20982. default: true
  20983. },
  20984. {
  20985. name: "Macro",
  20986. height: math.unit(72, "feet"),
  20987. form: "hyena"
  20988. },
  20989. ],
  20990. {
  20991. "hyena": {
  20992. name: "Hyena",
  20993. default: true
  20994. },
  20995. "folf": {
  20996. name: "Folf",
  20997. },
  20998. }
  20999. ))
  21000. characterMakers.push(() => makeCharacter(
  21001. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  21002. {
  21003. front: {
  21004. height: math.unit(5 + 9 / 12, "feet"),
  21005. weight: math.unit(175, "lb"),
  21006. name: "Front",
  21007. image: {
  21008. source: "./media/characters/irishfox/front.svg",
  21009. extra: 1912 / 1680,
  21010. bottom: 0.02
  21011. }
  21012. },
  21013. },
  21014. [
  21015. {
  21016. name: "Nano",
  21017. height: math.unit(1, "mm")
  21018. },
  21019. {
  21020. name: "Micro",
  21021. height: math.unit(2, "inches")
  21022. },
  21023. {
  21024. name: "Normal",
  21025. height: math.unit(5 + 9 / 12, "feet"),
  21026. default: true
  21027. },
  21028. {
  21029. name: "Macro",
  21030. height: math.unit(45, "feet")
  21031. },
  21032. ]
  21033. ))
  21034. characterMakers.push(() => makeCharacter(
  21035. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  21036. {
  21037. front: {
  21038. height: math.unit(6 + 1 / 12, "feet"),
  21039. weight: math.unit(75, "lb"),
  21040. name: "Front",
  21041. image: {
  21042. source: "./media/characters/aronai-sieyes/front.svg",
  21043. extra: 1532/1450,
  21044. bottom: 42/1574
  21045. }
  21046. },
  21047. side: {
  21048. height: math.unit(6 + 1 / 12, "feet"),
  21049. weight: math.unit(75, "lb"),
  21050. name: "Side",
  21051. image: {
  21052. source: "./media/characters/aronai-sieyes/side.svg",
  21053. extra: 1422/1365,
  21054. bottom: 148/1570
  21055. }
  21056. },
  21057. back: {
  21058. height: math.unit(6 + 1 / 12, "feet"),
  21059. weight: math.unit(75, "lb"),
  21060. name: "Back",
  21061. image: {
  21062. source: "./media/characters/aronai-sieyes/back.svg",
  21063. extra: 1526/1464,
  21064. bottom: 51/1577
  21065. }
  21066. },
  21067. dressed: {
  21068. height: math.unit(6 + 1 / 12, "feet"),
  21069. weight: math.unit(75, "lb"),
  21070. name: "Dressed",
  21071. image: {
  21072. source: "./media/characters/aronai-sieyes/dressed.svg",
  21073. extra: 1559/1483,
  21074. bottom: 39/1598
  21075. }
  21076. },
  21077. slit: {
  21078. height: math.unit(1.3, "feet"),
  21079. name: "Slit",
  21080. image: {
  21081. source: "./media/characters/aronai-sieyes/slit.svg"
  21082. }
  21083. },
  21084. slitSpread: {
  21085. height: math.unit(0.9, "feet"),
  21086. name: "Slit (Spread)",
  21087. image: {
  21088. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  21089. }
  21090. },
  21091. rump: {
  21092. height: math.unit(1.3, "feet"),
  21093. name: "Rump",
  21094. image: {
  21095. source: "./media/characters/aronai-sieyes/rump.svg"
  21096. }
  21097. },
  21098. maw: {
  21099. height: math.unit(1.25, "feet"),
  21100. name: "Maw",
  21101. image: {
  21102. source: "./media/characters/aronai-sieyes/maw.svg"
  21103. }
  21104. },
  21105. feral: {
  21106. height: math.unit(18, "feet"),
  21107. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  21108. name: "Feral",
  21109. image: {
  21110. source: "./media/characters/aronai-sieyes/feral.svg",
  21111. extra: 1530 / 1240,
  21112. bottom: 0.035
  21113. }
  21114. },
  21115. },
  21116. [
  21117. {
  21118. name: "Micro",
  21119. height: math.unit(2, "inches")
  21120. },
  21121. {
  21122. name: "Normal",
  21123. height: math.unit(6 + 1 / 12, "feet"),
  21124. default: true
  21125. }
  21126. ]
  21127. ))
  21128. characterMakers.push(() => makeCharacter(
  21129. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  21130. {
  21131. front: {
  21132. height: math.unit(12, "feet"),
  21133. weight: math.unit(410, "kg"),
  21134. name: "Front",
  21135. image: {
  21136. source: "./media/characters/xuna/front.svg",
  21137. extra: 2184 / 1980
  21138. }
  21139. },
  21140. side: {
  21141. height: math.unit(12, "feet"),
  21142. weight: math.unit(410, "kg"),
  21143. name: "Side",
  21144. image: {
  21145. source: "./media/characters/xuna/side.svg",
  21146. extra: 2184 / 1980
  21147. }
  21148. },
  21149. back: {
  21150. height: math.unit(12, "feet"),
  21151. weight: math.unit(410, "kg"),
  21152. name: "Back",
  21153. image: {
  21154. source: "./media/characters/xuna/back.svg",
  21155. extra: 2184 / 1980
  21156. }
  21157. },
  21158. },
  21159. [
  21160. {
  21161. name: "Nano glow",
  21162. height: math.unit(10, "nm")
  21163. },
  21164. {
  21165. name: "Micro floof",
  21166. height: math.unit(0.3, "m")
  21167. },
  21168. {
  21169. name: "Huggable softy boi",
  21170. height: math.unit(3.6576, "m"),
  21171. default: true
  21172. },
  21173. {
  21174. name: "Admirable floof",
  21175. height: math.unit(80, "meters")
  21176. },
  21177. {
  21178. name: "Gentle macro",
  21179. height: math.unit(300, "meters")
  21180. },
  21181. {
  21182. name: "Very careful floof",
  21183. height: math.unit(3200, "meters")
  21184. },
  21185. {
  21186. name: "The mega floof",
  21187. height: math.unit(36000, "meters")
  21188. },
  21189. {
  21190. name: "Giga-fur-Wicker",
  21191. height: math.unit(4800000, "meters")
  21192. },
  21193. {
  21194. name: "Licky world",
  21195. height: math.unit(20000000, "meters")
  21196. },
  21197. {
  21198. name: "Floofy cyan sun",
  21199. height: math.unit(1500000000, "meters")
  21200. },
  21201. {
  21202. name: "Milky Wicker",
  21203. height: math.unit(1000000000000000000000, "meters")
  21204. },
  21205. {
  21206. name: "The observing Wicker",
  21207. height: math.unit(999999999999999999999999999, "meters")
  21208. },
  21209. ]
  21210. ))
  21211. characterMakers.push(() => makeCharacter(
  21212. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21213. {
  21214. front: {
  21215. height: math.unit(5 + 9 / 12, "feet"),
  21216. weight: math.unit(150, "lb"),
  21217. name: "Front",
  21218. image: {
  21219. source: "./media/characters/arokha-sieyes/front.svg",
  21220. extra: 1425 / 1284,
  21221. bottom: 0.05
  21222. }
  21223. },
  21224. },
  21225. [
  21226. {
  21227. name: "Normal",
  21228. height: math.unit(5 + 9 / 12, "feet")
  21229. },
  21230. {
  21231. name: "Macro",
  21232. height: math.unit(30, "meters"),
  21233. default: true
  21234. },
  21235. ]
  21236. ))
  21237. characterMakers.push(() => makeCharacter(
  21238. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21239. {
  21240. front: {
  21241. height: math.unit(6, "feet"),
  21242. weight: math.unit(180, "lb"),
  21243. name: "Front",
  21244. image: {
  21245. source: "./media/characters/arokh-sieyes/front.svg",
  21246. extra: 1830 / 1769,
  21247. bottom: 0.01
  21248. }
  21249. },
  21250. },
  21251. [
  21252. {
  21253. name: "Normal",
  21254. height: math.unit(6, "feet")
  21255. },
  21256. {
  21257. name: "Macro",
  21258. height: math.unit(30, "meters"),
  21259. default: true
  21260. },
  21261. ]
  21262. ))
  21263. characterMakers.push(() => makeCharacter(
  21264. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  21265. {
  21266. side: {
  21267. height: math.unit(13 + 1 / 12, "feet"),
  21268. weight: math.unit(8.5, "tonnes"),
  21269. preyCapacity: math.unit(36, "people"),
  21270. name: "Side",
  21271. image: {
  21272. source: "./media/characters/goldeneye/side.svg",
  21273. extra: 1139/741,
  21274. bottom: 98/1237
  21275. }
  21276. },
  21277. front: {
  21278. height: math.unit(5.1, "feet"),
  21279. weight: math.unit(8.5, "tonnes"),
  21280. preyCapacity: math.unit(36, "people"),
  21281. name: "Front",
  21282. image: {
  21283. source: "./media/characters/goldeneye/front.svg",
  21284. extra: 635/365,
  21285. bottom: 598/1233
  21286. }
  21287. },
  21288. maw: {
  21289. height: math.unit(6.6, "feet"),
  21290. name: "Maw",
  21291. image: {
  21292. source: "./media/characters/goldeneye/maw.svg"
  21293. }
  21294. },
  21295. headFront: {
  21296. height: math.unit(8, "feet"),
  21297. name: "Head (Front)",
  21298. image: {
  21299. source: "./media/characters/goldeneye/head-front.svg"
  21300. }
  21301. },
  21302. headSide: {
  21303. height: math.unit(6, "feet"),
  21304. name: "Head (Side)",
  21305. image: {
  21306. source: "./media/characters/goldeneye/head-side.svg"
  21307. }
  21308. },
  21309. headBack: {
  21310. height: math.unit(8, "feet"),
  21311. name: "Head (Back)",
  21312. image: {
  21313. source: "./media/characters/goldeneye/head-back.svg"
  21314. }
  21315. },
  21316. paw: {
  21317. height: math.unit(3.4, "feet"),
  21318. name: "Paw",
  21319. image: {
  21320. source: "./media/characters/goldeneye/paw.svg"
  21321. }
  21322. },
  21323. toering: {
  21324. height: math.unit(0.45, "feet"),
  21325. name: "Toering",
  21326. image: {
  21327. source: "./media/characters/goldeneye/toering.svg"
  21328. }
  21329. },
  21330. eyes: {
  21331. height: math.unit(0.5, "feet"),
  21332. name: "Eyes",
  21333. image: {
  21334. source: "./media/characters/goldeneye/eyes.svg"
  21335. }
  21336. },
  21337. },
  21338. [
  21339. {
  21340. name: "Normal",
  21341. height: math.unit(13 + 1 / 12, "feet"),
  21342. default: true
  21343. },
  21344. ]
  21345. ))
  21346. characterMakers.push(() => makeCharacter(
  21347. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21348. {
  21349. front: {
  21350. height: math.unit(6 + 1 / 12, "feet"),
  21351. weight: math.unit(210, "lb"),
  21352. name: "Front",
  21353. image: {
  21354. source: "./media/characters/leonardo-lycheborne/front.svg",
  21355. extra: 776/723,
  21356. bottom: 34/810
  21357. }
  21358. },
  21359. side: {
  21360. height: math.unit(6 + 1 / 12, "feet"),
  21361. weight: math.unit(210, "lb"),
  21362. name: "Side",
  21363. image: {
  21364. source: "./media/characters/leonardo-lycheborne/side.svg",
  21365. extra: 780/728,
  21366. bottom: 12/792
  21367. }
  21368. },
  21369. back: {
  21370. height: math.unit(6 + 1 / 12, "feet"),
  21371. weight: math.unit(210, "lb"),
  21372. name: "Back",
  21373. image: {
  21374. source: "./media/characters/leonardo-lycheborne/back.svg",
  21375. extra: 775/721,
  21376. bottom: 17/792
  21377. }
  21378. },
  21379. hand: {
  21380. height: math.unit(1.08, "feet"),
  21381. name: "Hand",
  21382. image: {
  21383. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21384. }
  21385. },
  21386. foot: {
  21387. height: math.unit(1.32, "feet"),
  21388. name: "Foot",
  21389. image: {
  21390. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21391. }
  21392. },
  21393. maw: {
  21394. height: math.unit(1, "feet"),
  21395. name: "Maw",
  21396. image: {
  21397. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21398. }
  21399. },
  21400. were: {
  21401. height: math.unit(20, "feet"),
  21402. weight: math.unit(7800, "lb"),
  21403. name: "Were",
  21404. image: {
  21405. source: "./media/characters/leonardo-lycheborne/were.svg",
  21406. extra: 1224/1165,
  21407. bottom: 72/1296
  21408. }
  21409. },
  21410. feral: {
  21411. height: math.unit(7.5, "feet"),
  21412. weight: math.unit(600, "lb"),
  21413. name: "Feral",
  21414. image: {
  21415. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21416. extra: 797/702,
  21417. bottom: 139/936
  21418. }
  21419. },
  21420. taur: {
  21421. height: math.unit(11, "feet"),
  21422. weight: math.unit(3300, "lb"),
  21423. name: "Taur",
  21424. image: {
  21425. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21426. extra: 1271/1197,
  21427. bottom: 47/1318
  21428. }
  21429. },
  21430. barghest: {
  21431. height: math.unit(11, "feet"),
  21432. weight: math.unit(1300, "lb"),
  21433. name: "Barghest",
  21434. image: {
  21435. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21436. extra: 1291/1204,
  21437. bottom: 37/1328
  21438. }
  21439. },
  21440. dick: {
  21441. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21442. name: "Dick",
  21443. image: {
  21444. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21445. }
  21446. },
  21447. dickWere: {
  21448. height: math.unit((20) / 3.8, "feet"),
  21449. name: "Dick (Were)",
  21450. image: {
  21451. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21452. }
  21453. },
  21454. },
  21455. [
  21456. {
  21457. name: "Normal",
  21458. height: math.unit(6 + 1 / 12, "feet"),
  21459. default: true
  21460. },
  21461. ]
  21462. ))
  21463. characterMakers.push(() => makeCharacter(
  21464. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21465. {
  21466. front: {
  21467. height: math.unit(10, "feet"),
  21468. weight: math.unit(350, "lb"),
  21469. name: "Front",
  21470. image: {
  21471. source: "./media/characters/jet/front.svg",
  21472. extra: 2050 / 1980,
  21473. bottom: 0.013
  21474. }
  21475. },
  21476. back: {
  21477. height: math.unit(10, "feet"),
  21478. weight: math.unit(350, "lb"),
  21479. name: "Back",
  21480. image: {
  21481. source: "./media/characters/jet/back.svg",
  21482. extra: 2050 / 1980,
  21483. bottom: 0.013
  21484. }
  21485. },
  21486. },
  21487. [
  21488. {
  21489. name: "Micro",
  21490. height: math.unit(6, "inches")
  21491. },
  21492. {
  21493. name: "Normal",
  21494. height: math.unit(10, "feet"),
  21495. default: true
  21496. },
  21497. {
  21498. name: "Macro",
  21499. height: math.unit(100, "feet")
  21500. },
  21501. ]
  21502. ))
  21503. characterMakers.push(() => makeCharacter(
  21504. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21505. {
  21506. front: {
  21507. height: math.unit(15, "feet"),
  21508. weight: math.unit(2800, "lb"),
  21509. name: "Front",
  21510. image: {
  21511. source: "./media/characters/tanarath/front.svg",
  21512. extra: 2392 / 2220,
  21513. bottom: 0.03
  21514. }
  21515. },
  21516. back: {
  21517. height: math.unit(15, "feet"),
  21518. weight: math.unit(2800, "lb"),
  21519. name: "Back",
  21520. image: {
  21521. source: "./media/characters/tanarath/back.svg",
  21522. extra: 2392 / 2220,
  21523. bottom: 0.03
  21524. }
  21525. },
  21526. },
  21527. [
  21528. {
  21529. name: "Normal",
  21530. height: math.unit(15, "feet"),
  21531. default: true
  21532. },
  21533. ]
  21534. ))
  21535. characterMakers.push(() => makeCharacter(
  21536. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21537. {
  21538. front: {
  21539. height: math.unit(7 + 1 / 12, "feet"),
  21540. weight: math.unit(175, "lb"),
  21541. name: "Front",
  21542. image: {
  21543. source: "./media/characters/patty-cattybatty/front.svg",
  21544. extra: 908 / 874,
  21545. bottom: 0.025
  21546. }
  21547. },
  21548. },
  21549. [
  21550. {
  21551. name: "Micro",
  21552. height: math.unit(1, "inch")
  21553. },
  21554. {
  21555. name: "Normal",
  21556. height: math.unit(7 + 1 / 12, "feet")
  21557. },
  21558. {
  21559. name: "Mini Macro",
  21560. height: math.unit(155, "feet")
  21561. },
  21562. {
  21563. name: "Macro",
  21564. height: math.unit(1077, "feet")
  21565. },
  21566. {
  21567. name: "Mega Macro",
  21568. height: math.unit(47650, "feet"),
  21569. default: true
  21570. },
  21571. {
  21572. name: "Giga Macro",
  21573. height: math.unit(440, "miles")
  21574. },
  21575. {
  21576. name: "Tera Macro",
  21577. height: math.unit(8700, "miles")
  21578. },
  21579. {
  21580. name: "Planetary Macro",
  21581. height: math.unit(32700, "miles")
  21582. },
  21583. {
  21584. name: "Solar Macro",
  21585. height: math.unit(550000, "miles")
  21586. },
  21587. {
  21588. name: "Celestial Macro",
  21589. height: math.unit(2.5, "AU")
  21590. },
  21591. ]
  21592. ))
  21593. characterMakers.push(() => makeCharacter(
  21594. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21595. {
  21596. front: {
  21597. height: math.unit(4 + 5 / 12, "feet"),
  21598. weight: math.unit(90, "lb"),
  21599. name: "Front",
  21600. image: {
  21601. source: "./media/characters/cappu/front.svg",
  21602. extra: 1247 / 1152,
  21603. bottom: 0.012
  21604. }
  21605. },
  21606. },
  21607. [
  21608. {
  21609. name: "Normal",
  21610. height: math.unit(4 + 5 / 12, "feet"),
  21611. default: true
  21612. },
  21613. ]
  21614. ))
  21615. characterMakers.push(() => makeCharacter(
  21616. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21617. {
  21618. frontDressed: {
  21619. height: math.unit(70, "cm"),
  21620. weight: math.unit(6, "kg"),
  21621. name: "Front (Dressed)",
  21622. image: {
  21623. source: "./media/characters/sebi/front-dressed.svg",
  21624. extra: 713.5 / 686.5,
  21625. bottom: 0.003
  21626. }
  21627. },
  21628. front: {
  21629. height: math.unit(70, "cm"),
  21630. weight: math.unit(5, "kg"),
  21631. name: "Front",
  21632. image: {
  21633. source: "./media/characters/sebi/front.svg",
  21634. extra: 713.5 / 686.5,
  21635. bottom: 0.003
  21636. }
  21637. }
  21638. },
  21639. [
  21640. {
  21641. name: "Normal",
  21642. height: math.unit(70, "cm"),
  21643. default: true
  21644. },
  21645. {
  21646. name: "Macro",
  21647. height: math.unit(8, "meters")
  21648. },
  21649. ]
  21650. ))
  21651. characterMakers.push(() => makeCharacter(
  21652. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21653. {
  21654. front: {
  21655. height: math.unit(6, "feet"),
  21656. weight: math.unit(150, "lb"),
  21657. name: "Front",
  21658. image: {
  21659. source: "./media/characters/typhek/front.svg",
  21660. extra: 1948 / 1929,
  21661. bottom: 0.025
  21662. }
  21663. },
  21664. side: {
  21665. height: math.unit(6, "feet"),
  21666. weight: math.unit(150, "lb"),
  21667. name: "Side",
  21668. image: {
  21669. source: "./media/characters/typhek/side.svg",
  21670. extra: 2034 / 2010,
  21671. bottom: 0.003
  21672. }
  21673. },
  21674. back: {
  21675. height: math.unit(6, "feet"),
  21676. weight: math.unit(150, "lb"),
  21677. name: "Back",
  21678. image: {
  21679. source: "./media/characters/typhek/back.svg",
  21680. extra: 2005 / 1978,
  21681. bottom: 0.004
  21682. }
  21683. },
  21684. palm: {
  21685. height: math.unit(1.2, "feet"),
  21686. name: "Palm",
  21687. image: {
  21688. source: "./media/characters/typhek/palm.svg"
  21689. }
  21690. },
  21691. fist: {
  21692. height: math.unit(1.1, "feet"),
  21693. name: "Fist",
  21694. image: {
  21695. source: "./media/characters/typhek/fist.svg"
  21696. }
  21697. },
  21698. foot: {
  21699. height: math.unit(1.57, "feet"),
  21700. name: "Foot",
  21701. image: {
  21702. source: "./media/characters/typhek/foot.svg"
  21703. }
  21704. },
  21705. sole: {
  21706. height: math.unit(2.05, "feet"),
  21707. name: "Sole",
  21708. image: {
  21709. source: "./media/characters/typhek/sole.svg"
  21710. }
  21711. },
  21712. },
  21713. [
  21714. {
  21715. name: "Macro",
  21716. height: math.unit(40, "stories"),
  21717. default: true
  21718. },
  21719. {
  21720. name: "Megamacro",
  21721. height: math.unit(1, "mile")
  21722. },
  21723. {
  21724. name: "Gigamacro",
  21725. height: math.unit(4000, "solarradii")
  21726. },
  21727. {
  21728. name: "Universal",
  21729. height: math.unit(1.1, "universes")
  21730. }
  21731. ]
  21732. ))
  21733. characterMakers.push(() => makeCharacter(
  21734. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21735. {
  21736. side: {
  21737. height: math.unit(5 + 7 / 12, "feet"),
  21738. weight: math.unit(150, "lb"),
  21739. name: "Side",
  21740. image: {
  21741. source: "./media/characters/kassy/side.svg",
  21742. extra: 1280 / 1225,
  21743. bottom: 0.002
  21744. }
  21745. },
  21746. front: {
  21747. height: math.unit(5 + 7 / 12, "feet"),
  21748. weight: math.unit(150, "lb"),
  21749. name: "Front",
  21750. image: {
  21751. source: "./media/characters/kassy/front.svg",
  21752. extra: 1280 / 1225,
  21753. bottom: 0.025
  21754. }
  21755. },
  21756. back: {
  21757. height: math.unit(5 + 7 / 12, "feet"),
  21758. weight: math.unit(150, "lb"),
  21759. name: "Back",
  21760. image: {
  21761. source: "./media/characters/kassy/back.svg",
  21762. extra: 1280 / 1225,
  21763. bottom: 0.002
  21764. }
  21765. },
  21766. foot: {
  21767. height: math.unit(1.266, "feet"),
  21768. name: "Foot",
  21769. image: {
  21770. source: "./media/characters/kassy/foot.svg"
  21771. }
  21772. },
  21773. },
  21774. [
  21775. {
  21776. name: "Normal",
  21777. height: math.unit(5 + 7 / 12, "feet")
  21778. },
  21779. {
  21780. name: "Macro",
  21781. height: math.unit(137, "feet"),
  21782. default: true
  21783. },
  21784. {
  21785. name: "Megamacro",
  21786. height: math.unit(1, "mile")
  21787. },
  21788. ]
  21789. ))
  21790. characterMakers.push(() => makeCharacter(
  21791. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21792. {
  21793. front: {
  21794. height: math.unit(6 + 1 / 12, "feet"),
  21795. weight: math.unit(200, "lb"),
  21796. name: "Front",
  21797. image: {
  21798. source: "./media/characters/neil/front.svg",
  21799. extra: 1326 / 1250,
  21800. bottom: 0.023
  21801. }
  21802. },
  21803. },
  21804. [
  21805. {
  21806. name: "Normal",
  21807. height: math.unit(6 + 1 / 12, "feet"),
  21808. default: true
  21809. },
  21810. {
  21811. name: "Macro",
  21812. height: math.unit(200, "feet")
  21813. },
  21814. ]
  21815. ))
  21816. characterMakers.push(() => makeCharacter(
  21817. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21818. {
  21819. front: {
  21820. height: math.unit(5 + 9 / 12, "feet"),
  21821. weight: math.unit(190, "lb"),
  21822. name: "Front",
  21823. image: {
  21824. source: "./media/characters/atticus/front.svg",
  21825. extra: 2934 / 2785,
  21826. bottom: 0.025
  21827. }
  21828. },
  21829. },
  21830. [
  21831. {
  21832. name: "Normal",
  21833. height: math.unit(5 + 9 / 12, "feet"),
  21834. default: true
  21835. },
  21836. {
  21837. name: "Macro",
  21838. height: math.unit(180, "feet")
  21839. },
  21840. ]
  21841. ))
  21842. characterMakers.push(() => makeCharacter(
  21843. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21844. {
  21845. side: {
  21846. height: math.unit(9, "feet"),
  21847. weight: math.unit(650, "lb"),
  21848. name: "Side",
  21849. image: {
  21850. source: "./media/characters/milo/side.svg",
  21851. extra: 2644 / 2310,
  21852. bottom: 0.032
  21853. }
  21854. },
  21855. },
  21856. [
  21857. {
  21858. name: "Normal",
  21859. height: math.unit(9, "feet"),
  21860. default: true
  21861. },
  21862. {
  21863. name: "Macro",
  21864. height: math.unit(300, "feet")
  21865. },
  21866. ]
  21867. ))
  21868. characterMakers.push(() => makeCharacter(
  21869. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21870. {
  21871. side: {
  21872. height: math.unit(8, "meters"),
  21873. weight: math.unit(90000, "kg"),
  21874. name: "Side",
  21875. image: {
  21876. source: "./media/characters/ijzer/side.svg",
  21877. extra: 2756 / 1600,
  21878. bottom: 0.01
  21879. }
  21880. },
  21881. },
  21882. [
  21883. {
  21884. name: "Small",
  21885. height: math.unit(3, "meters")
  21886. },
  21887. {
  21888. name: "Normal",
  21889. height: math.unit(8, "meters"),
  21890. default: true
  21891. },
  21892. {
  21893. name: "Normal+",
  21894. height: math.unit(10, "meters")
  21895. },
  21896. {
  21897. name: "Bigger",
  21898. height: math.unit(24, "meters")
  21899. },
  21900. {
  21901. name: "Huge",
  21902. height: math.unit(80, "meters")
  21903. },
  21904. ]
  21905. ))
  21906. characterMakers.push(() => makeCharacter(
  21907. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21908. {
  21909. front: {
  21910. height: math.unit(6 + 2 / 12, "feet"),
  21911. weight: math.unit(153, "lb"),
  21912. name: "Front",
  21913. image: {
  21914. source: "./media/characters/luca-cervicum/front.svg",
  21915. extra: 370 / 327,
  21916. bottom: 0.015
  21917. }
  21918. },
  21919. back: {
  21920. height: math.unit(6 + 2 / 12, "feet"),
  21921. weight: math.unit(153, "lb"),
  21922. name: "Back",
  21923. image: {
  21924. source: "./media/characters/luca-cervicum/back.svg",
  21925. extra: 367 / 333,
  21926. bottom: 0.005
  21927. }
  21928. },
  21929. frontGear: {
  21930. height: math.unit(6 + 2 / 12, "feet"),
  21931. weight: math.unit(173, "lb"),
  21932. name: "Front (Gear)",
  21933. image: {
  21934. source: "./media/characters/luca-cervicum/front-gear.svg",
  21935. extra: 377 / 333,
  21936. bottom: 0.006
  21937. }
  21938. },
  21939. },
  21940. [
  21941. {
  21942. name: "Normal",
  21943. height: math.unit(6 + 2 / 12, "feet"),
  21944. default: true
  21945. },
  21946. ]
  21947. ))
  21948. characterMakers.push(() => makeCharacter(
  21949. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21950. {
  21951. front: {
  21952. height: math.unit(6 + 1 / 12, "feet"),
  21953. weight: math.unit(304, "lb"),
  21954. name: "Front",
  21955. image: {
  21956. source: "./media/characters/oliver/front.svg",
  21957. extra: 157 / 143,
  21958. bottom: 0.08
  21959. }
  21960. },
  21961. },
  21962. [
  21963. {
  21964. name: "Normal",
  21965. height: math.unit(6 + 1 / 12, "feet"),
  21966. default: true
  21967. },
  21968. ]
  21969. ))
  21970. characterMakers.push(() => makeCharacter(
  21971. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21972. {
  21973. front: {
  21974. height: math.unit(5 + 7 / 12, "feet"),
  21975. weight: math.unit(140, "lb"),
  21976. name: "Front",
  21977. image: {
  21978. source: "./media/characters/shane/front.svg",
  21979. extra: 304 / 289,
  21980. bottom: 0.005
  21981. }
  21982. },
  21983. },
  21984. [
  21985. {
  21986. name: "Normal",
  21987. height: math.unit(5 + 7 / 12, "feet"),
  21988. default: true
  21989. },
  21990. ]
  21991. ))
  21992. characterMakers.push(() => makeCharacter(
  21993. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21994. {
  21995. front: {
  21996. height: math.unit(5 + 9 / 12, "feet"),
  21997. weight: math.unit(178, "lb"),
  21998. name: "Front",
  21999. image: {
  22000. source: "./media/characters/shin/front.svg",
  22001. extra: 159 / 151,
  22002. bottom: 0.015
  22003. }
  22004. },
  22005. },
  22006. [
  22007. {
  22008. name: "Normal",
  22009. height: math.unit(5 + 9 / 12, "feet"),
  22010. default: true
  22011. },
  22012. ]
  22013. ))
  22014. characterMakers.push(() => makeCharacter(
  22015. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  22016. {
  22017. front: {
  22018. height: math.unit(5 + 10 / 12, "feet"),
  22019. weight: math.unit(168, "lb"),
  22020. name: "Front",
  22021. image: {
  22022. source: "./media/characters/xerxes/front.svg",
  22023. extra: 282 / 260,
  22024. bottom: 0.045
  22025. }
  22026. },
  22027. },
  22028. [
  22029. {
  22030. name: "Normal",
  22031. height: math.unit(5 + 10 / 12, "feet"),
  22032. default: true
  22033. },
  22034. ]
  22035. ))
  22036. characterMakers.push(() => makeCharacter(
  22037. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  22038. {
  22039. front: {
  22040. height: math.unit(6 + 7 / 12, "feet"),
  22041. weight: math.unit(208, "lb"),
  22042. name: "Front",
  22043. image: {
  22044. source: "./media/characters/chaska/front.svg",
  22045. extra: 332 / 319,
  22046. bottom: 0.015
  22047. }
  22048. },
  22049. },
  22050. [
  22051. {
  22052. name: "Normal",
  22053. height: math.unit(6 + 7 / 12, "feet"),
  22054. default: true
  22055. },
  22056. ]
  22057. ))
  22058. characterMakers.push(() => makeCharacter(
  22059. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  22060. {
  22061. front: {
  22062. height: math.unit(5 + 8 / 12, "feet"),
  22063. weight: math.unit(208, "lb"),
  22064. name: "Front",
  22065. image: {
  22066. source: "./media/characters/enuk/front.svg",
  22067. extra: 437 / 406,
  22068. bottom: 0.02
  22069. }
  22070. },
  22071. },
  22072. [
  22073. {
  22074. name: "Normal",
  22075. height: math.unit(5 + 8 / 12, "feet"),
  22076. default: true
  22077. },
  22078. ]
  22079. ))
  22080. characterMakers.push(() => makeCharacter(
  22081. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  22082. {
  22083. front: {
  22084. height: math.unit(5 + 10 / 12, "feet"),
  22085. weight: math.unit(252, "lb"),
  22086. name: "Front",
  22087. image: {
  22088. source: "./media/characters/bruun/front.svg",
  22089. extra: 197 / 187,
  22090. bottom: 0.012
  22091. }
  22092. },
  22093. },
  22094. [
  22095. {
  22096. name: "Normal",
  22097. height: math.unit(5 + 10 / 12, "feet"),
  22098. default: true
  22099. },
  22100. ]
  22101. ))
  22102. characterMakers.push(() => makeCharacter(
  22103. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  22104. {
  22105. front: {
  22106. height: math.unit(6 + 10 / 12, "feet"),
  22107. weight: math.unit(255, "lb"),
  22108. name: "Front",
  22109. image: {
  22110. source: "./media/characters/alexeev/front.svg",
  22111. extra: 213 / 200,
  22112. bottom: 0.05
  22113. }
  22114. },
  22115. },
  22116. [
  22117. {
  22118. name: "Normal",
  22119. height: math.unit(6 + 10 / 12, "feet"),
  22120. default: true
  22121. },
  22122. ]
  22123. ))
  22124. characterMakers.push(() => makeCharacter(
  22125. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  22126. {
  22127. front: {
  22128. height: math.unit(2 + 8 / 12, "feet"),
  22129. weight: math.unit(22, "lb"),
  22130. name: "Front",
  22131. image: {
  22132. source: "./media/characters/evelyn/front.svg",
  22133. extra: 208 / 180
  22134. }
  22135. },
  22136. },
  22137. [
  22138. {
  22139. name: "Normal",
  22140. height: math.unit(2 + 8 / 12, "feet"),
  22141. default: true
  22142. },
  22143. ]
  22144. ))
  22145. characterMakers.push(() => makeCharacter(
  22146. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  22147. {
  22148. front: {
  22149. height: math.unit(5 + 9 / 12, "feet"),
  22150. weight: math.unit(139, "lb"),
  22151. name: "Front",
  22152. image: {
  22153. source: "./media/characters/inca/front.svg",
  22154. extra: 294 / 291,
  22155. bottom: 0.03
  22156. }
  22157. },
  22158. },
  22159. [
  22160. {
  22161. name: "Normal",
  22162. height: math.unit(5 + 9 / 12, "feet"),
  22163. default: true
  22164. },
  22165. ]
  22166. ))
  22167. characterMakers.push(() => makeCharacter(
  22168. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  22169. {
  22170. front: {
  22171. height: math.unit(6 + 3 / 12, "feet"),
  22172. weight: math.unit(185, "lb"),
  22173. name: "Front",
  22174. image: {
  22175. source: "./media/characters/mera/front.svg",
  22176. extra: 291 / 277,
  22177. bottom: 0.03
  22178. }
  22179. },
  22180. },
  22181. [
  22182. {
  22183. name: "Normal",
  22184. height: math.unit(6 + 3 / 12, "feet"),
  22185. default: true
  22186. },
  22187. ]
  22188. ))
  22189. characterMakers.push(() => makeCharacter(
  22190. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  22191. {
  22192. front: {
  22193. height: math.unit(6 + 7 / 12, "feet"),
  22194. weight: math.unit(160, "lb"),
  22195. name: "Front",
  22196. image: {
  22197. source: "./media/characters/ceres/front.svg",
  22198. extra: 1023 / 950,
  22199. bottom: 0.027
  22200. }
  22201. },
  22202. back: {
  22203. height: math.unit(6 + 7 / 12, "feet"),
  22204. weight: math.unit(160, "lb"),
  22205. name: "Back",
  22206. image: {
  22207. source: "./media/characters/ceres/back.svg",
  22208. extra: 1023 / 950
  22209. }
  22210. },
  22211. },
  22212. [
  22213. {
  22214. name: "Normal",
  22215. height: math.unit(6 + 7 / 12, "feet"),
  22216. default: true
  22217. },
  22218. ]
  22219. ))
  22220. characterMakers.push(() => makeCharacter(
  22221. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  22222. {
  22223. front: {
  22224. height: math.unit(5 + 10 / 12, "feet"),
  22225. weight: math.unit(150, "lb"),
  22226. name: "Front",
  22227. image: {
  22228. source: "./media/characters/kris/front.svg",
  22229. extra: 885 / 803,
  22230. bottom: 0.03
  22231. }
  22232. },
  22233. },
  22234. [
  22235. {
  22236. name: "Normal",
  22237. height: math.unit(5 + 10 / 12, "feet"),
  22238. default: true
  22239. },
  22240. ]
  22241. ))
  22242. characterMakers.push(() => makeCharacter(
  22243. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  22244. {
  22245. dragon_front: {
  22246. height: math.unit(5, "feet"),
  22247. name: "Front",
  22248. image: {
  22249. source: "./media/characters/taluthus/dragon-front.svg",
  22250. extra: 1203/1098,
  22251. bottom: 46/1249
  22252. },
  22253. form: "dragon",
  22254. default: true
  22255. },
  22256. dragon_maw: {
  22257. height: math.unit(2.35, "feet"),
  22258. name: "Maw",
  22259. image: {
  22260. source: "./media/characters/taluthus/dragon-maw.svg"
  22261. },
  22262. form: "dragon",
  22263. },
  22264. kitsune_front: {
  22265. height: math.unit(7, "feet"),
  22266. name: "Front",
  22267. image: {
  22268. source: "./media/characters/taluthus/kitsune-front.svg",
  22269. extra: 900/841,
  22270. bottom: 65/965
  22271. },
  22272. form: "kitsune",
  22273. default: true
  22274. },
  22275. },
  22276. [
  22277. {
  22278. name: "Normal",
  22279. height: math.unit(5, "feet"),
  22280. form: "dragon",
  22281. default: true,
  22282. },
  22283. {
  22284. name: "Normal",
  22285. height: math.unit(7, "feet"),
  22286. form: "kitsune",
  22287. default: true
  22288. },
  22289. {
  22290. name: "Macro",
  22291. height: math.unit(300, "feet"),
  22292. allForms: true
  22293. },
  22294. ],
  22295. {
  22296. "dragon": {
  22297. name: "Dragon",
  22298. default: true
  22299. },
  22300. "kitsune": {
  22301. name: "Kitsune",
  22302. },
  22303. }
  22304. ))
  22305. characterMakers.push(() => makeCharacter(
  22306. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22307. {
  22308. front: {
  22309. height: math.unit(5 + 9 / 12, "feet"),
  22310. weight: math.unit(145, "lb"),
  22311. name: "Front",
  22312. image: {
  22313. source: "./media/characters/dawn/front.svg",
  22314. extra: 2094 / 2016,
  22315. bottom: 0.025
  22316. }
  22317. },
  22318. back: {
  22319. height: math.unit(5 + 9 / 12, "feet"),
  22320. weight: math.unit(160, "lb"),
  22321. name: "Back",
  22322. image: {
  22323. source: "./media/characters/dawn/back.svg",
  22324. extra: 2112 / 2080,
  22325. bottom: 0.005
  22326. }
  22327. },
  22328. },
  22329. [
  22330. {
  22331. name: "Normal",
  22332. height: math.unit(6 + 7 / 12, "feet"),
  22333. default: true
  22334. },
  22335. ]
  22336. ))
  22337. characterMakers.push(() => makeCharacter(
  22338. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22339. {
  22340. anthro: {
  22341. height: math.unit(8 + 3 / 12, "feet"),
  22342. weight: math.unit(450, "lb"),
  22343. name: "Anthro",
  22344. image: {
  22345. source: "./media/characters/arador/anthro.svg",
  22346. extra: 1835 / 1718,
  22347. bottom: 0.025
  22348. }
  22349. },
  22350. feral: {
  22351. height: math.unit(4, "feet"),
  22352. weight: math.unit(200, "lb"),
  22353. name: "Feral",
  22354. image: {
  22355. source: "./media/characters/arador/feral.svg",
  22356. extra: 1683 / 1514,
  22357. bottom: 0.07
  22358. }
  22359. },
  22360. },
  22361. [
  22362. {
  22363. name: "Normal",
  22364. height: math.unit(8 + 3 / 12, "feet")
  22365. },
  22366. {
  22367. name: "Macro",
  22368. height: math.unit(82.5, "feet"),
  22369. default: true
  22370. },
  22371. ]
  22372. ))
  22373. characterMakers.push(() => makeCharacter(
  22374. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22375. {
  22376. front: {
  22377. height: math.unit(5 + 10 / 12, "feet"),
  22378. weight: math.unit(125, "lb"),
  22379. name: "Front",
  22380. image: {
  22381. source: "./media/characters/dharsi/front.svg",
  22382. extra: 716 / 630,
  22383. bottom: 0.035
  22384. }
  22385. },
  22386. },
  22387. [
  22388. {
  22389. name: "Nano",
  22390. height: math.unit(100, "nm")
  22391. },
  22392. {
  22393. name: "Micro",
  22394. height: math.unit(2, "inches")
  22395. },
  22396. {
  22397. name: "Normal",
  22398. height: math.unit(5 + 10 / 12, "feet"),
  22399. default: true
  22400. },
  22401. {
  22402. name: "Macro",
  22403. height: math.unit(1000, "feet")
  22404. },
  22405. {
  22406. name: "Megamacro",
  22407. height: math.unit(10, "miles")
  22408. },
  22409. {
  22410. name: "Gigamacro",
  22411. height: math.unit(3000, "miles")
  22412. },
  22413. {
  22414. name: "Teramacro",
  22415. height: math.unit(500000, "miles")
  22416. },
  22417. {
  22418. name: "Teramacro+",
  22419. height: math.unit(30, "galaxies")
  22420. },
  22421. ]
  22422. ))
  22423. characterMakers.push(() => makeCharacter(
  22424. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22425. {
  22426. front: {
  22427. height: math.unit(6, "feet"),
  22428. weight: math.unit(150, "lb"),
  22429. name: "Front",
  22430. image: {
  22431. source: "./media/characters/deathy/front.svg",
  22432. extra: 1552 / 1463,
  22433. bottom: 0.025
  22434. }
  22435. },
  22436. side: {
  22437. height: math.unit(6, "feet"),
  22438. weight: math.unit(150, "lb"),
  22439. name: "Side",
  22440. image: {
  22441. source: "./media/characters/deathy/side.svg",
  22442. extra: 1604 / 1455,
  22443. bottom: 0.025
  22444. }
  22445. },
  22446. back: {
  22447. height: math.unit(6, "feet"),
  22448. weight: math.unit(150, "lb"),
  22449. name: "Back",
  22450. image: {
  22451. source: "./media/characters/deathy/back.svg",
  22452. extra: 1580 / 1463,
  22453. bottom: 0.005
  22454. }
  22455. },
  22456. },
  22457. [
  22458. {
  22459. name: "Micro",
  22460. height: math.unit(5, "millimeters")
  22461. },
  22462. {
  22463. name: "Normal",
  22464. height: math.unit(6 + 5 / 12, "feet"),
  22465. default: true
  22466. },
  22467. ]
  22468. ))
  22469. characterMakers.push(() => makeCharacter(
  22470. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22471. {
  22472. front: {
  22473. height: math.unit(16, "feet"),
  22474. weight: math.unit(4000, "lb"),
  22475. name: "Front",
  22476. image: {
  22477. source: "./media/characters/juniper/front.svg",
  22478. bottom: 0.04
  22479. }
  22480. },
  22481. },
  22482. [
  22483. {
  22484. name: "Normal",
  22485. height: math.unit(16, "feet"),
  22486. default: true
  22487. },
  22488. ]
  22489. ))
  22490. characterMakers.push(() => makeCharacter(
  22491. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22492. {
  22493. front: {
  22494. height: math.unit(6, "feet"),
  22495. weight: math.unit(150, "lb"),
  22496. name: "Front",
  22497. image: {
  22498. source: "./media/characters/hipster/front.svg",
  22499. extra: 1312 / 1209,
  22500. bottom: 0.025
  22501. }
  22502. },
  22503. back: {
  22504. height: math.unit(6, "feet"),
  22505. weight: math.unit(150, "lb"),
  22506. name: "Back",
  22507. image: {
  22508. source: "./media/characters/hipster/back.svg",
  22509. extra: 1281 / 1196,
  22510. bottom: 0.01
  22511. }
  22512. },
  22513. },
  22514. [
  22515. {
  22516. name: "Micro",
  22517. height: math.unit(1, "mm")
  22518. },
  22519. {
  22520. name: "Normal",
  22521. height: math.unit(4, "inches"),
  22522. default: true
  22523. },
  22524. {
  22525. name: "Macro",
  22526. height: math.unit(500, "feet")
  22527. },
  22528. {
  22529. name: "Megamacro",
  22530. height: math.unit(1000, "miles")
  22531. },
  22532. ]
  22533. ))
  22534. characterMakers.push(() => makeCharacter(
  22535. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22536. {
  22537. front: {
  22538. height: math.unit(6, "feet"),
  22539. weight: math.unit(150, "lb"),
  22540. name: "Front",
  22541. image: {
  22542. source: "./media/characters/tendirmuldr/front.svg",
  22543. extra: 1878 / 1772,
  22544. bottom: 0.015
  22545. }
  22546. },
  22547. },
  22548. [
  22549. {
  22550. name: "Megamacro",
  22551. height: math.unit(1500, "miles"),
  22552. default: true
  22553. },
  22554. ]
  22555. ))
  22556. characterMakers.push(() => makeCharacter(
  22557. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22558. {
  22559. front: {
  22560. height: math.unit(14, "feet"),
  22561. weight: math.unit(12000, "lb"),
  22562. name: "Front",
  22563. image: {
  22564. source: "./media/characters/mort/front.svg",
  22565. extra: 365 / 318,
  22566. bottom: 0.01
  22567. }
  22568. },
  22569. side: {
  22570. height: math.unit(14, "feet"),
  22571. weight: math.unit(12000, "lb"),
  22572. name: "Side",
  22573. image: {
  22574. source: "./media/characters/mort/side.svg",
  22575. extra: 365 / 318,
  22576. bottom: 0.052
  22577. },
  22578. default: true
  22579. },
  22580. back: {
  22581. height: math.unit(14, "feet"),
  22582. weight: math.unit(12000, "lb"),
  22583. name: "Back",
  22584. image: {
  22585. source: "./media/characters/mort/back.svg",
  22586. extra: 371 / 332,
  22587. bottom: 0.18
  22588. }
  22589. },
  22590. },
  22591. [
  22592. {
  22593. name: "Normal",
  22594. height: math.unit(14, "feet"),
  22595. default: true
  22596. },
  22597. ]
  22598. ))
  22599. characterMakers.push(() => makeCharacter(
  22600. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22601. {
  22602. front: {
  22603. height: math.unit(8, "feet"),
  22604. weight: math.unit(1, "ton"),
  22605. name: "Front",
  22606. image: {
  22607. source: "./media/characters/lycoa/front.svg",
  22608. extra: 1836/1728,
  22609. bottom: 81/1917
  22610. }
  22611. },
  22612. back: {
  22613. height: math.unit(8, "feet"),
  22614. weight: math.unit(1, "ton"),
  22615. name: "Back",
  22616. image: {
  22617. source: "./media/characters/lycoa/back.svg",
  22618. extra: 1785/1720,
  22619. bottom: 91/1876
  22620. }
  22621. },
  22622. head: {
  22623. height: math.unit(1.6243, "feet"),
  22624. name: "Head",
  22625. image: {
  22626. source: "./media/characters/lycoa/head.svg",
  22627. extra: 1011/782,
  22628. bottom: 0/1011
  22629. }
  22630. },
  22631. tailmaw: {
  22632. height: math.unit(1.9, "feet"),
  22633. name: "Tailmaw",
  22634. image: {
  22635. source: "./media/characters/lycoa/tailmaw.svg"
  22636. }
  22637. },
  22638. tentacles: {
  22639. height: math.unit(2.1, "feet"),
  22640. name: "Tentacles",
  22641. image: {
  22642. source: "./media/characters/lycoa/tentacles.svg"
  22643. }
  22644. },
  22645. dick: {
  22646. height: math.unit(1.73, "feet"),
  22647. name: "Dick",
  22648. image: {
  22649. source: "./media/characters/lycoa/dick.svg"
  22650. }
  22651. },
  22652. },
  22653. [
  22654. {
  22655. name: "Normal",
  22656. height: math.unit(8, "feet"),
  22657. default: true
  22658. },
  22659. {
  22660. name: "Macro",
  22661. height: math.unit(30, "feet")
  22662. },
  22663. ]
  22664. ))
  22665. characterMakers.push(() => makeCharacter(
  22666. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22667. {
  22668. front: {
  22669. height: math.unit(4 + 2 / 12, "feet"),
  22670. weight: math.unit(70, "lb"),
  22671. name: "Front",
  22672. image: {
  22673. source: "./media/characters/naldara/front.svg",
  22674. extra: 1664/1387,
  22675. bottom: 81/1745
  22676. },
  22677. form: "anthro",
  22678. default: true
  22679. },
  22680. naga: {
  22681. height: math.unit(20, "feet"),
  22682. weight: math.unit(15000, "kg"),
  22683. name: "Front",
  22684. image: {
  22685. source: "./media/characters/naldara/naga.svg",
  22686. extra: 1590/1396,
  22687. bottom: 285/1875
  22688. },
  22689. form: "naga",
  22690. default: true
  22691. },
  22692. },
  22693. [
  22694. {
  22695. name: "Normal",
  22696. height: math.unit(4 + 2 / 12, "feet"),
  22697. form: "anthro",
  22698. default: true
  22699. },
  22700. {
  22701. name: "Normal",
  22702. height: math.unit(20, "feet"),
  22703. form: "naga",
  22704. default: true
  22705. },
  22706. ],
  22707. {
  22708. "anthro": {
  22709. name: "Anthro",
  22710. default: true
  22711. },
  22712. "naga": {
  22713. name: "Naga"
  22714. }
  22715. }
  22716. ))
  22717. characterMakers.push(() => makeCharacter(
  22718. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22719. {
  22720. front: {
  22721. height: math.unit(13 + 7 / 12, "feet"),
  22722. weight: math.unit(1500, "lb"),
  22723. name: "Front",
  22724. image: {
  22725. source: "./media/characters/briar/front.svg",
  22726. extra: 1223/1157,
  22727. bottom: 123/1346
  22728. }
  22729. },
  22730. },
  22731. [
  22732. {
  22733. name: "Normal",
  22734. height: math.unit(13 + 7 / 12, "feet"),
  22735. default: true
  22736. },
  22737. ]
  22738. ))
  22739. characterMakers.push(() => makeCharacter(
  22740. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22741. {
  22742. side: {
  22743. height: math.unit(16, "feet"),
  22744. weight: math.unit(500, "lb"),
  22745. name: "Side",
  22746. image: {
  22747. source: "./media/characters/vanguard/side.svg",
  22748. extra: 1022/914,
  22749. bottom: 30/1052
  22750. }
  22751. },
  22752. sideAlt: {
  22753. height: math.unit(10, "feet"),
  22754. weight: math.unit(500, "lb"),
  22755. name: "Side (Alt)",
  22756. image: {
  22757. source: "./media/characters/vanguard/side-alt.svg",
  22758. extra: 502 / 425,
  22759. bottom: 0.087
  22760. }
  22761. },
  22762. },
  22763. [
  22764. {
  22765. name: "Normal",
  22766. height: math.unit(17.71, "feet"),
  22767. default: true
  22768. },
  22769. ]
  22770. ))
  22771. characterMakers.push(() => makeCharacter(
  22772. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22773. {
  22774. front: {
  22775. height: math.unit(7.5, "feet"),
  22776. weight: math.unit(2, "lb"),
  22777. name: "Front",
  22778. image: {
  22779. source: "./media/characters/artemis/work-safe-front.svg",
  22780. extra: 1192 / 1075,
  22781. bottom: 0.07
  22782. },
  22783. form: "work-safe",
  22784. default: true
  22785. },
  22786. frontNsfw: {
  22787. height: math.unit(7.5, "feet"),
  22788. weight: math.unit(2, "lb"),
  22789. name: "Front",
  22790. image: {
  22791. source: "./media/characters/artemis/calibrating-front.svg",
  22792. extra: 1192 / 1075,
  22793. bottom: 0.07
  22794. },
  22795. form: "calibrating",
  22796. default: true
  22797. },
  22798. frontNsfwer: {
  22799. height: math.unit(7.5, "feet"),
  22800. weight: math.unit(2, "lb"),
  22801. name: "Front",
  22802. image: {
  22803. source: "./media/characters/artemis/oversize-load-front.svg",
  22804. extra: 1192 / 1075,
  22805. bottom: 0.07
  22806. },
  22807. form: "oversize-load",
  22808. default: true
  22809. },
  22810. side: {
  22811. height: math.unit(7.5, "feet"),
  22812. weight: math.unit(2, "lb"),
  22813. name: "Side",
  22814. image: {
  22815. source: "./media/characters/artemis/work-safe-side.svg",
  22816. extra: 1192 / 1075,
  22817. bottom: 0.07
  22818. },
  22819. form: "work-safe"
  22820. },
  22821. sideNsfw: {
  22822. height: math.unit(7.5, "feet"),
  22823. weight: math.unit(2, "lb"),
  22824. name: "Side",
  22825. image: {
  22826. source: "./media/characters/artemis/calibrating-side.svg",
  22827. extra: 1192 / 1075,
  22828. bottom: 0.07
  22829. },
  22830. form: "calibrating"
  22831. },
  22832. sideNsfwer: {
  22833. height: math.unit(7.5, "feet"),
  22834. weight: math.unit(2, "lb"),
  22835. name: "Side",
  22836. image: {
  22837. source: "./media/characters/artemis/oversize-load-side.svg",
  22838. extra: 1192 / 1075,
  22839. bottom: 0.07
  22840. },
  22841. form: "oversize-load"
  22842. },
  22843. maw: {
  22844. height: math.unit(1.1, "feet"),
  22845. name: "Maw",
  22846. image: {
  22847. source: "./media/characters/artemis/maw.svg"
  22848. },
  22849. form: "work-safe"
  22850. },
  22851. stomach: {
  22852. height: math.unit(0.95, "feet"),
  22853. name: "Stomach",
  22854. image: {
  22855. source: "./media/characters/artemis/stomach.svg"
  22856. },
  22857. form: "work-safe"
  22858. },
  22859. dickCanine: {
  22860. height: math.unit(1, "feet"),
  22861. name: "Dick (Canine)",
  22862. image: {
  22863. source: "./media/characters/artemis/dick-canine.svg"
  22864. },
  22865. form: "calibrating"
  22866. },
  22867. dickEquine: {
  22868. height: math.unit(0.85, "feet"),
  22869. name: "Dick (Equine)",
  22870. image: {
  22871. source: "./media/characters/artemis/dick-equine.svg"
  22872. },
  22873. form: "calibrating"
  22874. },
  22875. dickExotic: {
  22876. height: math.unit(0.85, "feet"),
  22877. name: "Dick (Exotic)",
  22878. image: {
  22879. source: "./media/characters/artemis/dick-exotic.svg"
  22880. },
  22881. form: "calibrating"
  22882. },
  22883. dickCanineBigger: {
  22884. height: math.unit(1 * 1.33, "feet"),
  22885. name: "Dick (Canine)",
  22886. image: {
  22887. source: "./media/characters/artemis/dick-canine.svg"
  22888. },
  22889. form: "oversize-load"
  22890. },
  22891. dickEquineBigger: {
  22892. height: math.unit(0.85 * 1.33, "feet"),
  22893. name: "Dick (Equine)",
  22894. image: {
  22895. source: "./media/characters/artemis/dick-equine.svg"
  22896. },
  22897. form: "oversize-load"
  22898. },
  22899. dickExoticBigger: {
  22900. height: math.unit(0.85 * 1.33, "feet"),
  22901. name: "Dick (Exotic)",
  22902. image: {
  22903. source: "./media/characters/artemis/dick-exotic.svg"
  22904. },
  22905. form: "oversize-load"
  22906. },
  22907. },
  22908. [
  22909. {
  22910. name: "Normal",
  22911. height: math.unit(7.5, "feet"),
  22912. form: "work-safe",
  22913. default: true
  22914. },
  22915. {
  22916. name: "Normal",
  22917. height: math.unit(7.5, "feet"),
  22918. form: "calibrating",
  22919. default: true
  22920. },
  22921. {
  22922. name: "Normal",
  22923. height: math.unit(7.5, "feet"),
  22924. form: "oversize-load",
  22925. default: true
  22926. },
  22927. {
  22928. name: "Enlarged",
  22929. height: math.unit(12, "feet"),
  22930. form: "work-safe",
  22931. },
  22932. {
  22933. name: "Enlarged",
  22934. height: math.unit(12, "feet"),
  22935. form: "calibrating",
  22936. },
  22937. {
  22938. name: "Enlarged",
  22939. height: math.unit(12, "feet"),
  22940. form: "oversize-load",
  22941. },
  22942. ],
  22943. {
  22944. "work-safe": {
  22945. name: "Work-Safe",
  22946. default: true
  22947. },
  22948. "calibrating": {
  22949. name: "Calibrating"
  22950. },
  22951. "oversize-load": {
  22952. name: "Oversize Load"
  22953. }
  22954. }
  22955. ))
  22956. characterMakers.push(() => makeCharacter(
  22957. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22958. {
  22959. front: {
  22960. height: math.unit(5 + 3 / 12, "feet"),
  22961. weight: math.unit(160, "lb"),
  22962. name: "Front",
  22963. image: {
  22964. source: "./media/characters/kira/front.svg",
  22965. extra: 906 / 786,
  22966. bottom: 0.01
  22967. }
  22968. },
  22969. back: {
  22970. height: math.unit(5 + 3 / 12, "feet"),
  22971. weight: math.unit(160, "lb"),
  22972. name: "Back",
  22973. image: {
  22974. source: "./media/characters/kira/back.svg",
  22975. extra: 882 / 757,
  22976. bottom: 0.005
  22977. }
  22978. },
  22979. frontDressed: {
  22980. height: math.unit(5 + 3 / 12, "feet"),
  22981. weight: math.unit(160, "lb"),
  22982. name: "Front (Dressed)",
  22983. image: {
  22984. source: "./media/characters/kira/front-dressed.svg",
  22985. extra: 906 / 786,
  22986. bottom: 0.01
  22987. }
  22988. },
  22989. beans: {
  22990. height: math.unit(0.92, "feet"),
  22991. name: "Beans",
  22992. image: {
  22993. source: "./media/characters/kira/beans.svg"
  22994. }
  22995. },
  22996. },
  22997. [
  22998. {
  22999. name: "Normal",
  23000. height: math.unit(5 + 3 / 12, "feet"),
  23001. default: true
  23002. },
  23003. ]
  23004. ))
  23005. characterMakers.push(() => makeCharacter(
  23006. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  23007. {
  23008. front: {
  23009. height: math.unit(5 + 4 / 12, "feet"),
  23010. weight: math.unit(145, "lb"),
  23011. name: "Front",
  23012. image: {
  23013. source: "./media/characters/scramble/front.svg",
  23014. extra: 763 / 727,
  23015. bottom: 0.05
  23016. }
  23017. },
  23018. back: {
  23019. height: math.unit(5 + 4 / 12, "feet"),
  23020. weight: math.unit(145, "lb"),
  23021. name: "Back",
  23022. image: {
  23023. source: "./media/characters/scramble/back.svg",
  23024. extra: 826 / 737,
  23025. bottom: 0.002
  23026. }
  23027. },
  23028. },
  23029. [
  23030. {
  23031. name: "Normal",
  23032. height: math.unit(5 + 4 / 12, "feet"),
  23033. default: true
  23034. },
  23035. ]
  23036. ))
  23037. characterMakers.push(() => makeCharacter(
  23038. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  23039. {
  23040. side: {
  23041. height: math.unit(6 + 2 / 12, "feet"),
  23042. weight: math.unit(190, "lb"),
  23043. name: "Side",
  23044. image: {
  23045. source: "./media/characters/biscuit/side.svg",
  23046. extra: 858 / 791,
  23047. bottom: 0.044
  23048. }
  23049. },
  23050. },
  23051. [
  23052. {
  23053. name: "Normal",
  23054. height: math.unit(6 + 2 / 12, "feet"),
  23055. default: true
  23056. },
  23057. ]
  23058. ))
  23059. characterMakers.push(() => makeCharacter(
  23060. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  23061. {
  23062. front: {
  23063. height: math.unit(5 + 2 / 12, "feet"),
  23064. weight: math.unit(120, "lb"),
  23065. name: "Front",
  23066. image: {
  23067. source: "./media/characters/poffin/front.svg",
  23068. extra: 786 / 680,
  23069. bottom: 0.005
  23070. }
  23071. },
  23072. },
  23073. [
  23074. {
  23075. name: "Normal",
  23076. height: math.unit(5 + 2 / 12, "feet"),
  23077. default: true
  23078. },
  23079. ]
  23080. ))
  23081. characterMakers.push(() => makeCharacter(
  23082. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  23083. {
  23084. front: {
  23085. height: math.unit(6 + 3 / 12, "feet"),
  23086. weight: math.unit(519, "lb"),
  23087. name: "Front",
  23088. image: {
  23089. source: "./media/characters/dhari/front.svg",
  23090. extra: 1048 / 946,
  23091. bottom: 0.015
  23092. }
  23093. },
  23094. back: {
  23095. height: math.unit(6 + 3 / 12, "feet"),
  23096. weight: math.unit(519, "lb"),
  23097. name: "Back",
  23098. image: {
  23099. source: "./media/characters/dhari/back.svg",
  23100. extra: 1048 / 931,
  23101. bottom: 0.005
  23102. }
  23103. },
  23104. frontDressed: {
  23105. height: math.unit(6 + 3 / 12, "feet"),
  23106. weight: math.unit(519, "lb"),
  23107. name: "Front (Dressed)",
  23108. image: {
  23109. source: "./media/characters/dhari/front-dressed.svg",
  23110. extra: 1713 / 1546,
  23111. bottom: 0.02
  23112. }
  23113. },
  23114. backDressed: {
  23115. height: math.unit(6 + 3 / 12, "feet"),
  23116. weight: math.unit(519, "lb"),
  23117. name: "Back (Dressed)",
  23118. image: {
  23119. source: "./media/characters/dhari/back-dressed.svg",
  23120. extra: 1699 / 1537,
  23121. bottom: 0.01
  23122. }
  23123. },
  23124. maw: {
  23125. height: math.unit(0.95, "feet"),
  23126. name: "Maw",
  23127. image: {
  23128. source: "./media/characters/dhari/maw.svg"
  23129. }
  23130. },
  23131. wereFront: {
  23132. height: math.unit(12 + 8 / 12, "feet"),
  23133. weight: math.unit(4000, "lb"),
  23134. name: "Front (Were)",
  23135. image: {
  23136. source: "./media/characters/dhari/were-front.svg",
  23137. extra: 1065 / 969,
  23138. bottom: 0.015
  23139. }
  23140. },
  23141. wereBack: {
  23142. height: math.unit(12 + 8 / 12, "feet"),
  23143. weight: math.unit(4000, "lb"),
  23144. name: "Back (Were)",
  23145. image: {
  23146. source: "./media/characters/dhari/were-back.svg",
  23147. extra: 1065 / 969,
  23148. bottom: 0.012
  23149. }
  23150. },
  23151. wereMaw: {
  23152. height: math.unit(0.625, "meters"),
  23153. name: "Maw (Were)",
  23154. image: {
  23155. source: "./media/characters/dhari/were-maw.svg"
  23156. }
  23157. },
  23158. },
  23159. [
  23160. {
  23161. name: "Normal",
  23162. height: math.unit(6 + 3 / 12, "feet"),
  23163. default: true
  23164. },
  23165. ]
  23166. ))
  23167. characterMakers.push(() => makeCharacter(
  23168. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  23169. {
  23170. anthro: {
  23171. height: math.unit(5 + 7 / 12, "feet"),
  23172. weight: math.unit(175, "lb"),
  23173. name: "Anthro",
  23174. image: {
  23175. source: "./media/characters/rena-dyne/anthro.svg",
  23176. extra: 1849 / 1785,
  23177. bottom: 0.005
  23178. }
  23179. },
  23180. taur: {
  23181. height: math.unit(15 + 6 / 12, "feet"),
  23182. weight: math.unit(8000, "lb"),
  23183. name: "Taur",
  23184. image: {
  23185. source: "./media/characters/rena-dyne/taur.svg",
  23186. extra: 2315 / 2234,
  23187. bottom: 0.033
  23188. }
  23189. },
  23190. },
  23191. [
  23192. {
  23193. name: "Normal",
  23194. height: math.unit(5 + 7 / 12, "feet"),
  23195. default: true
  23196. },
  23197. ]
  23198. ))
  23199. characterMakers.push(() => makeCharacter(
  23200. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  23201. {
  23202. front: {
  23203. height: math.unit(8, "feet"),
  23204. weight: math.unit(600, "lb"),
  23205. name: "Front",
  23206. image: {
  23207. source: "./media/characters/weremeep/front.svg",
  23208. extra: 970/849,
  23209. bottom: 7/977
  23210. }
  23211. },
  23212. },
  23213. [
  23214. {
  23215. name: "Normal",
  23216. height: math.unit(8, "feet"),
  23217. default: true
  23218. },
  23219. {
  23220. name: "Lorg",
  23221. height: math.unit(12, "feet")
  23222. },
  23223. {
  23224. name: "Oh Lawd She Comin'",
  23225. height: math.unit(20, "feet")
  23226. },
  23227. ]
  23228. ))
  23229. characterMakers.push(() => makeCharacter(
  23230. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  23231. {
  23232. front: {
  23233. height: math.unit(4, "feet"),
  23234. weight: math.unit(90, "lb"),
  23235. name: "Front",
  23236. image: {
  23237. source: "./media/characters/reza/front.svg",
  23238. extra: 1183 / 1111,
  23239. bottom: 0.017
  23240. }
  23241. },
  23242. back: {
  23243. height: math.unit(4, "feet"),
  23244. weight: math.unit(90, "lb"),
  23245. name: "Back",
  23246. image: {
  23247. source: "./media/characters/reza/back.svg",
  23248. extra: 1183 / 1111,
  23249. bottom: 0.01
  23250. }
  23251. },
  23252. drake: {
  23253. height: math.unit(30, "feet"),
  23254. weight: math.unit(246960, "lb"),
  23255. name: "Drake",
  23256. image: {
  23257. source: "./media/characters/reza/drake.svg",
  23258. extra: 2350 / 2024,
  23259. bottom: 60.7 / 2403
  23260. }
  23261. },
  23262. },
  23263. [
  23264. {
  23265. name: "Normal",
  23266. height: math.unit(4, "feet"),
  23267. default: true
  23268. },
  23269. ]
  23270. ))
  23271. characterMakers.push(() => makeCharacter(
  23272. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  23273. {
  23274. side: {
  23275. height: math.unit(15, "feet"),
  23276. weight: math.unit(14, "tons"),
  23277. name: "Side",
  23278. image: {
  23279. source: "./media/characters/athea/side.svg",
  23280. extra: 960 / 540,
  23281. bottom: 0.003
  23282. }
  23283. },
  23284. sitting: {
  23285. height: math.unit(6 * 2.85, "feet"),
  23286. weight: math.unit(14, "tons"),
  23287. name: "Sitting",
  23288. image: {
  23289. source: "./media/characters/athea/sitting.svg",
  23290. extra: 621 / 581,
  23291. bottom: 0.075
  23292. }
  23293. },
  23294. maw: {
  23295. height: math.unit(7.59498031496063, "feet"),
  23296. name: "Maw",
  23297. image: {
  23298. source: "./media/characters/athea/maw.svg"
  23299. }
  23300. },
  23301. },
  23302. [
  23303. {
  23304. name: "Lap Cat",
  23305. height: math.unit(2.5, "feet")
  23306. },
  23307. {
  23308. name: "Minimacro",
  23309. height: math.unit(15, "feet"),
  23310. default: true
  23311. },
  23312. {
  23313. name: "Macro",
  23314. height: math.unit(120, "feet")
  23315. },
  23316. {
  23317. name: "Macro+",
  23318. height: math.unit(640, "feet")
  23319. },
  23320. {
  23321. name: "Colossus",
  23322. height: math.unit(2.2, "miles")
  23323. },
  23324. ]
  23325. ))
  23326. characterMakers.push(() => makeCharacter(
  23327. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23328. {
  23329. front: {
  23330. height: math.unit(8 + 8 / 12, "feet"),
  23331. weight: math.unit(130, "kg"),
  23332. name: "Front",
  23333. image: {
  23334. source: "./media/characters/seroko/front.svg",
  23335. extra: 1385 / 1280,
  23336. bottom: 0.025
  23337. }
  23338. },
  23339. back: {
  23340. height: math.unit(8 + 8 / 12, "feet"),
  23341. weight: math.unit(130, "kg"),
  23342. name: "Back",
  23343. image: {
  23344. source: "./media/characters/seroko/back.svg",
  23345. extra: 1369 / 1238,
  23346. bottom: 0.018
  23347. }
  23348. },
  23349. frontDressed: {
  23350. height: math.unit(8 + 8 / 12, "feet"),
  23351. weight: math.unit(130, "kg"),
  23352. name: "Front (Dressed)",
  23353. image: {
  23354. source: "./media/characters/seroko/front-dressed.svg",
  23355. extra: 1366 / 1275,
  23356. bottom: 0.03
  23357. }
  23358. },
  23359. },
  23360. [
  23361. {
  23362. name: "Normal",
  23363. height: math.unit(8 + 8 / 12, "feet"),
  23364. default: true
  23365. },
  23366. ]
  23367. ))
  23368. characterMakers.push(() => makeCharacter(
  23369. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23370. {
  23371. front: {
  23372. height: math.unit(5.5, "feet"),
  23373. weight: math.unit(160, "lb"),
  23374. name: "Front",
  23375. image: {
  23376. source: "./media/characters/quatzi/front.svg",
  23377. extra: 2346 / 2242,
  23378. bottom: 0.015
  23379. }
  23380. },
  23381. },
  23382. [
  23383. {
  23384. name: "Normal",
  23385. height: math.unit(5.5, "feet"),
  23386. default: true
  23387. },
  23388. {
  23389. name: "Big",
  23390. height: math.unit(7.7, "feet")
  23391. },
  23392. ]
  23393. ))
  23394. characterMakers.push(() => makeCharacter(
  23395. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23396. {
  23397. front: {
  23398. height: math.unit(5 + 11 / 12, "feet"),
  23399. weight: math.unit(180, "lb"),
  23400. name: "Front",
  23401. image: {
  23402. source: "./media/characters/sen/front.svg",
  23403. extra: 1321 / 1254,
  23404. bottom: 0.015
  23405. }
  23406. },
  23407. side: {
  23408. height: math.unit(5 + 11 / 12, "feet"),
  23409. weight: math.unit(180, "lb"),
  23410. name: "Side",
  23411. image: {
  23412. source: "./media/characters/sen/side.svg",
  23413. extra: 1321 / 1254,
  23414. bottom: 0.007
  23415. }
  23416. },
  23417. back: {
  23418. height: math.unit(5 + 11 / 12, "feet"),
  23419. weight: math.unit(180, "lb"),
  23420. name: "Back",
  23421. image: {
  23422. source: "./media/characters/sen/back.svg",
  23423. extra: 1321 / 1254
  23424. }
  23425. },
  23426. },
  23427. [
  23428. {
  23429. name: "Normal",
  23430. height: math.unit(5 + 11 / 12, "feet"),
  23431. default: true
  23432. },
  23433. ]
  23434. ))
  23435. characterMakers.push(() => makeCharacter(
  23436. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23437. {
  23438. front: {
  23439. height: math.unit(166.6, "cm"),
  23440. weight: math.unit(66.6, "kg"),
  23441. name: "Front",
  23442. image: {
  23443. source: "./media/characters/fruity/front.svg",
  23444. extra: 1510 / 1386,
  23445. bottom: 0.04
  23446. }
  23447. },
  23448. back: {
  23449. height: math.unit(166.6, "cm"),
  23450. weight: math.unit(66.6, "lb"),
  23451. name: "Back",
  23452. image: {
  23453. source: "./media/characters/fruity/back.svg",
  23454. extra: 1563 / 1435,
  23455. bottom: 0.005
  23456. }
  23457. },
  23458. },
  23459. [
  23460. {
  23461. name: "Normal",
  23462. height: math.unit(166.6, "cm"),
  23463. default: true
  23464. },
  23465. {
  23466. name: "Demonic",
  23467. height: math.unit(166.6, "feet")
  23468. },
  23469. ]
  23470. ))
  23471. characterMakers.push(() => makeCharacter(
  23472. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23473. {
  23474. side: {
  23475. height: math.unit(10, "feet"),
  23476. weight: math.unit(500, "lb"),
  23477. name: "Side",
  23478. image: {
  23479. source: "./media/characters/zost/side.svg",
  23480. extra: 2870/2533,
  23481. bottom: 252/3122
  23482. }
  23483. },
  23484. mawFront: {
  23485. height: math.unit(1.08, "meters"),
  23486. name: "Maw (Front)",
  23487. image: {
  23488. source: "./media/characters/zost/maw-front.svg"
  23489. }
  23490. },
  23491. mawSide: {
  23492. height: math.unit(2.66, "feet"),
  23493. name: "Maw (Side)",
  23494. image: {
  23495. source: "./media/characters/zost/maw-side.svg"
  23496. }
  23497. },
  23498. wingspan: {
  23499. height: math.unit(7.4, "feet"),
  23500. name: "Wingspan",
  23501. image: {
  23502. source: "./media/characters/zost/wingspan.svg"
  23503. }
  23504. },
  23505. },
  23506. [
  23507. {
  23508. name: "Normal",
  23509. height: math.unit(10, "feet"),
  23510. default: true
  23511. },
  23512. ]
  23513. ))
  23514. characterMakers.push(() => makeCharacter(
  23515. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23516. {
  23517. front: {
  23518. height: math.unit(5 + 4 / 12, "feet"),
  23519. weight: math.unit(120, "lb"),
  23520. name: "Front",
  23521. image: {
  23522. source: "./media/characters/luci/front.svg",
  23523. extra: 1985 / 1884,
  23524. bottom: 0.04
  23525. }
  23526. },
  23527. back: {
  23528. height: math.unit(5 + 4 / 12, "feet"),
  23529. weight: math.unit(120, "lb"),
  23530. name: "Back",
  23531. image: {
  23532. source: "./media/characters/luci/back.svg",
  23533. extra: 1892 / 1791,
  23534. bottom: 0.002
  23535. }
  23536. },
  23537. },
  23538. [
  23539. {
  23540. name: "Normal",
  23541. height: math.unit(5 + 4 / 12, "feet"),
  23542. default: true
  23543. },
  23544. ]
  23545. ))
  23546. characterMakers.push(() => makeCharacter(
  23547. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23548. {
  23549. front: {
  23550. height: math.unit(1500, "feet"),
  23551. weight: math.unit(3.8e6, "tons"),
  23552. name: "Front",
  23553. image: {
  23554. source: "./media/characters/2th/front.svg",
  23555. extra: 3489 / 3350,
  23556. bottom: 0.1
  23557. }
  23558. },
  23559. foot: {
  23560. height: math.unit(461, "feet"),
  23561. name: "Foot",
  23562. image: {
  23563. source: "./media/characters/2th/foot.svg"
  23564. }
  23565. },
  23566. },
  23567. [
  23568. {
  23569. name: "\"Micro\"",
  23570. height: math.unit(15 + 7 / 12, "feet")
  23571. },
  23572. {
  23573. name: "Normal",
  23574. height: math.unit(1500, "feet"),
  23575. default: true
  23576. },
  23577. {
  23578. name: "Macro",
  23579. height: math.unit(5000, "feet")
  23580. },
  23581. {
  23582. name: "Megamacro",
  23583. height: math.unit(15, "miles")
  23584. },
  23585. {
  23586. name: "Gigamacro",
  23587. height: math.unit(4000, "miles")
  23588. },
  23589. {
  23590. name: "Galactic",
  23591. height: math.unit(50, "AU")
  23592. },
  23593. ]
  23594. ))
  23595. characterMakers.push(() => makeCharacter(
  23596. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23597. {
  23598. front: {
  23599. height: math.unit(5 + 6 / 12, "feet"),
  23600. weight: math.unit(220, "lb"),
  23601. name: "Front",
  23602. image: {
  23603. source: "./media/characters/amethyst/front.svg",
  23604. extra: 2078 / 2040,
  23605. bottom: 0.045
  23606. }
  23607. },
  23608. back: {
  23609. height: math.unit(5 + 6 / 12, "feet"),
  23610. weight: math.unit(220, "lb"),
  23611. name: "Back",
  23612. image: {
  23613. source: "./media/characters/amethyst/back.svg",
  23614. extra: 2021 / 1989,
  23615. bottom: 0.02
  23616. }
  23617. },
  23618. },
  23619. [
  23620. {
  23621. name: "Normal",
  23622. height: math.unit(5 + 6 / 12, "feet"),
  23623. default: true
  23624. },
  23625. ]
  23626. ))
  23627. characterMakers.push(() => makeCharacter(
  23628. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23629. {
  23630. front: {
  23631. height: math.unit(4 + 11 / 12, "feet"),
  23632. weight: math.unit(120, "lb"),
  23633. name: "Front",
  23634. image: {
  23635. source: "./media/characters/yumi-akiyama/front.svg",
  23636. extra: 1327 / 1235,
  23637. bottom: 0.02
  23638. }
  23639. },
  23640. back: {
  23641. height: math.unit(4 + 11 / 12, "feet"),
  23642. weight: math.unit(120, "lb"),
  23643. name: "Back",
  23644. image: {
  23645. source: "./media/characters/yumi-akiyama/back.svg",
  23646. extra: 1287 / 1245,
  23647. bottom: 0.002
  23648. }
  23649. },
  23650. },
  23651. [
  23652. {
  23653. name: "Galactic",
  23654. height: math.unit(50, "galaxies"),
  23655. default: true
  23656. },
  23657. {
  23658. name: "Universal",
  23659. height: math.unit(100, "universes")
  23660. },
  23661. ]
  23662. ))
  23663. characterMakers.push(() => makeCharacter(
  23664. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23665. {
  23666. front: {
  23667. height: math.unit(8, "feet"),
  23668. weight: math.unit(500, "lb"),
  23669. name: "Front",
  23670. image: {
  23671. source: "./media/characters/rifter-yrmori/front.svg",
  23672. extra: 1180 / 1125,
  23673. bottom: 0.02
  23674. }
  23675. },
  23676. back: {
  23677. height: math.unit(8, "feet"),
  23678. weight: math.unit(500, "lb"),
  23679. name: "Back",
  23680. image: {
  23681. source: "./media/characters/rifter-yrmori/back.svg",
  23682. extra: 1190 / 1145,
  23683. bottom: 0.001
  23684. }
  23685. },
  23686. wings: {
  23687. height: math.unit(7.75, "feet"),
  23688. weight: math.unit(500, "lb"),
  23689. name: "Wings",
  23690. image: {
  23691. source: "./media/characters/rifter-yrmori/wings.svg",
  23692. extra: 1357 / 1285
  23693. }
  23694. },
  23695. maw: {
  23696. height: math.unit(0.8, "feet"),
  23697. name: "Maw",
  23698. image: {
  23699. source: "./media/characters/rifter-yrmori/maw.svg"
  23700. }
  23701. },
  23702. mawfront: {
  23703. height: math.unit(1.45, "feet"),
  23704. name: "Maw (Front)",
  23705. image: {
  23706. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23707. }
  23708. },
  23709. },
  23710. [
  23711. {
  23712. name: "Normal",
  23713. height: math.unit(8, "feet"),
  23714. default: true
  23715. },
  23716. {
  23717. name: "Macro",
  23718. height: math.unit(42, "meters")
  23719. },
  23720. ]
  23721. ))
  23722. characterMakers.push(() => makeCharacter(
  23723. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23724. {
  23725. were: {
  23726. height: math.unit(25 + 6 / 12, "feet"),
  23727. weight: math.unit(10000, "lb"),
  23728. name: "Were",
  23729. image: {
  23730. source: "./media/characters/tahajin/were.svg",
  23731. extra: 801 / 770,
  23732. bottom: 0.042
  23733. }
  23734. },
  23735. aquatic: {
  23736. height: math.unit(6 + 4 / 12, "feet"),
  23737. weight: math.unit(160, "lb"),
  23738. name: "Aquatic",
  23739. image: {
  23740. source: "./media/characters/tahajin/aquatic.svg",
  23741. extra: 572 / 542,
  23742. bottom: 0.04
  23743. }
  23744. },
  23745. chow: {
  23746. height: math.unit(8 + 11 / 12, "feet"),
  23747. weight: math.unit(450, "lb"),
  23748. name: "Chow",
  23749. image: {
  23750. source: "./media/characters/tahajin/chow.svg",
  23751. extra: 660 / 640,
  23752. bottom: 0.015
  23753. }
  23754. },
  23755. demiNaga: {
  23756. height: math.unit(6 + 8 / 12, "feet"),
  23757. weight: math.unit(300, "lb"),
  23758. name: "Demi Naga",
  23759. image: {
  23760. source: "./media/characters/tahajin/demi-naga.svg",
  23761. extra: 643 / 615,
  23762. bottom: 0.1
  23763. }
  23764. },
  23765. data: {
  23766. height: math.unit(5, "inches"),
  23767. weight: math.unit(0.1, "lb"),
  23768. name: "Data",
  23769. image: {
  23770. source: "./media/characters/tahajin/data.svg"
  23771. }
  23772. },
  23773. fluu: {
  23774. height: math.unit(5 + 7 / 12, "feet"),
  23775. weight: math.unit(140, "lb"),
  23776. name: "Fluu",
  23777. image: {
  23778. source: "./media/characters/tahajin/fluu.svg",
  23779. extra: 628 / 592,
  23780. bottom: 0.02
  23781. }
  23782. },
  23783. starWarrior: {
  23784. height: math.unit(4 + 5 / 12, "feet"),
  23785. weight: math.unit(50, "lb"),
  23786. name: "Star Warrior",
  23787. image: {
  23788. source: "./media/characters/tahajin/star-warrior.svg"
  23789. }
  23790. },
  23791. },
  23792. [
  23793. {
  23794. name: "Normal",
  23795. height: math.unit(25 + 6 / 12, "feet"),
  23796. default: true
  23797. },
  23798. ]
  23799. ))
  23800. characterMakers.push(() => makeCharacter(
  23801. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23802. {
  23803. front: {
  23804. height: math.unit(8, "feet"),
  23805. weight: math.unit(350, "lb"),
  23806. name: "Front",
  23807. image: {
  23808. source: "./media/characters/gabira/front.svg",
  23809. extra: 1261/1154,
  23810. bottom: 51/1312
  23811. }
  23812. },
  23813. back: {
  23814. height: math.unit(8, "feet"),
  23815. weight: math.unit(350, "lb"),
  23816. name: "Back",
  23817. image: {
  23818. source: "./media/characters/gabira/back.svg",
  23819. extra: 1265/1163,
  23820. bottom: 46/1311
  23821. }
  23822. },
  23823. head: {
  23824. height: math.unit(2.85, "feet"),
  23825. name: "Head",
  23826. image: {
  23827. source: "./media/characters/gabira/head.svg"
  23828. }
  23829. },
  23830. },
  23831. [
  23832. {
  23833. name: "Normal",
  23834. height: math.unit(8, "feet"),
  23835. default: true
  23836. },
  23837. ]
  23838. ))
  23839. characterMakers.push(() => makeCharacter(
  23840. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23841. {
  23842. front: {
  23843. height: math.unit(5 + 3 / 12, "feet"),
  23844. weight: math.unit(137, "lb"),
  23845. name: "Front",
  23846. image: {
  23847. source: "./media/characters/sasha-katraine/front.svg",
  23848. extra: 1745/1694,
  23849. bottom: 37/1782
  23850. }
  23851. },
  23852. back: {
  23853. height: math.unit(5 + 3 / 12, "feet"),
  23854. weight: math.unit(137, "lb"),
  23855. name: "Back",
  23856. image: {
  23857. source: "./media/characters/sasha-katraine/back.svg",
  23858. extra: 1776/1699,
  23859. bottom: 26/1802
  23860. }
  23861. },
  23862. },
  23863. [
  23864. {
  23865. name: "Micro",
  23866. height: math.unit(5, "inches")
  23867. },
  23868. {
  23869. name: "Normal",
  23870. height: math.unit(5 + 3 / 12, "feet"),
  23871. default: true
  23872. },
  23873. ]
  23874. ))
  23875. characterMakers.push(() => makeCharacter(
  23876. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23877. {
  23878. side: {
  23879. height: math.unit(4, "inches"),
  23880. weight: math.unit(200, "grams"),
  23881. name: "Side",
  23882. image: {
  23883. source: "./media/characters/der/side.svg",
  23884. extra: 719 / 400,
  23885. bottom: 30.6 / 749.9187
  23886. }
  23887. },
  23888. },
  23889. [
  23890. {
  23891. name: "Micro",
  23892. height: math.unit(4, "inches"),
  23893. default: true
  23894. },
  23895. ]
  23896. ))
  23897. characterMakers.push(() => makeCharacter(
  23898. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23899. {
  23900. side: {
  23901. height: math.unit(30, "meters"),
  23902. weight: math.unit(700, "tonnes"),
  23903. name: "Side",
  23904. image: {
  23905. source: "./media/characters/fixerdragon/side.svg",
  23906. extra: (1293.0514 - 116.03) / 1106.86,
  23907. bottom: 116.03 / 1293.0514
  23908. }
  23909. },
  23910. },
  23911. [
  23912. {
  23913. name: "Planck",
  23914. height: math.unit(1.6e-35, "meters")
  23915. },
  23916. {
  23917. name: "Micro",
  23918. height: math.unit(0.4, "meters")
  23919. },
  23920. {
  23921. name: "Normal",
  23922. height: math.unit(30, "meters"),
  23923. default: true
  23924. },
  23925. {
  23926. name: "Megamacro",
  23927. height: math.unit(1.2, "megameters")
  23928. },
  23929. {
  23930. name: "Teramacro",
  23931. height: math.unit(130, "terameters")
  23932. },
  23933. {
  23934. name: "Yottamacro",
  23935. height: math.unit(6200, "yottameters")
  23936. },
  23937. ]
  23938. ));
  23939. characterMakers.push(() => makeCharacter(
  23940. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23941. {
  23942. front: {
  23943. height: math.unit(8, "feet"),
  23944. weight: math.unit(250, "lb"),
  23945. name: "Front",
  23946. image: {
  23947. source: "./media/characters/kite/front.svg",
  23948. extra: 2796 / 2659,
  23949. bottom: 0.002
  23950. }
  23951. },
  23952. },
  23953. [
  23954. {
  23955. name: "Normal",
  23956. height: math.unit(8, "feet"),
  23957. default: true
  23958. },
  23959. {
  23960. name: "Macro",
  23961. height: math.unit(360, "feet")
  23962. },
  23963. {
  23964. name: "Megamacro",
  23965. height: math.unit(1500, "feet")
  23966. },
  23967. ]
  23968. ))
  23969. characterMakers.push(() => makeCharacter(
  23970. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23971. {
  23972. anthro_front: {
  23973. height: math.unit(5 + 11/12, "feet"),
  23974. weight: math.unit(170, "lb"),
  23975. name: "Front",
  23976. image: {
  23977. source: "./media/characters/poojawa-vynar/anthro-front.svg",
  23978. extra: 1735/1585,
  23979. bottom: 96/1831
  23980. },
  23981. form: "anthro",
  23982. default: true
  23983. },
  23984. anthro_back: {
  23985. height: math.unit(5 + 11/12, "feet"),
  23986. weight: math.unit(170, "lb"),
  23987. name: "Back",
  23988. image: {
  23989. source: "./media/characters/poojawa-vynar/anthro-back.svg",
  23990. extra: 1749/1607,
  23991. bottom: 28/1777
  23992. },
  23993. form: "anthro"
  23994. },
  23995. anthro_male: {
  23996. height: math.unit(5 + 11/12, "feet"),
  23997. weight: math.unit(170, "lb"),
  23998. name: "Male",
  23999. image: {
  24000. source: "./media/characters/poojawa-vynar/anthro-front-male.svg",
  24001. extra: 1855/1713,
  24002. bottom: 63/1918
  24003. },
  24004. form: "anthro"
  24005. },
  24006. taur_front: {
  24007. height: math.unit(5 + 7/12, "feet"),
  24008. weight: math.unit(170, "lb"),
  24009. name: "Front",
  24010. image: {
  24011. source: "./media/characters/poojawa-vynar/taur-front.svg",
  24012. extra: 1151/1059,
  24013. bottom: 356/1507
  24014. },
  24015. form: "taur",
  24016. default: true
  24017. },
  24018. anthro_frontDressed: {
  24019. height: math.unit(5 + 11/12, "feet"),
  24020. weight: math.unit(170, "lb"),
  24021. name: "Front (Dressed)",
  24022. image: {
  24023. source: "./media/characters/poojawa-vynar/anthro-front-dressed.svg",
  24024. extra: 1735/1585,
  24025. bottom: 96/1831
  24026. },
  24027. form: "anthro"
  24028. },
  24029. anthro_backDressed: {
  24030. height: math.unit(5 + 11/12, "feet"),
  24031. weight: math.unit(170, "lb"),
  24032. name: "Back (Dressed)",
  24033. image: {
  24034. source: "./media/characters/poojawa-vynar/anthro-back-dressed.svg",
  24035. extra: 1749/1607,
  24036. bottom: 28/1777
  24037. },
  24038. form: "anthro"
  24039. },
  24040. anthro_maleDressed: {
  24041. height: math.unit(5 + 11/12, "feet"),
  24042. weight: math.unit(170, "lb"),
  24043. name: "Male (Dressed)",
  24044. image: {
  24045. source: "./media/characters/poojawa-vynar/anthro-front-male-dressed.svg",
  24046. extra: 1855/1713,
  24047. bottom: 63/1918
  24048. },
  24049. form: "anthro"
  24050. },
  24051. taur_frontDressed: {
  24052. height: math.unit(5 + 7/12, "feet"),
  24053. weight: math.unit(170, "lb"),
  24054. name: "Front (Dressed)",
  24055. image: {
  24056. source: "./media/characters/poojawa-vynar/taur-front-dressed.svg",
  24057. extra: 1151/1059,
  24058. bottom: 356/1507
  24059. },
  24060. form: "taur"
  24061. },
  24062. maw: {
  24063. height: math.unit(1.46, "feet"),
  24064. name: "Maw",
  24065. image: {
  24066. source: "./media/characters/poojawa-vynar/maw.svg"
  24067. },
  24068. allForms: true
  24069. },
  24070. head: {
  24071. height: math.unit(2.34, "feet"),
  24072. name: "Head",
  24073. image: {
  24074. source: "./media/characters/poojawa-vynar/head.svg"
  24075. },
  24076. allForms: true
  24077. },
  24078. leftPaw: {
  24079. height: math.unit(1.72, "feet"),
  24080. name: "Left Paw",
  24081. image: {
  24082. source: "./media/characters/poojawa-vynar/paw-left.svg"
  24083. },
  24084. allForms: true
  24085. },
  24086. rightPaw: {
  24087. height: math.unit(1.61, "feet"),
  24088. name: "Right Paw",
  24089. image: {
  24090. source: "./media/characters/poojawa-vynar/paw-right.svg"
  24091. },
  24092. allForms: true
  24093. },
  24094. toering: {
  24095. height: math.unit(2.9, "inches"),
  24096. name: "Toering",
  24097. image: {
  24098. source: "./media/characters/poojawa-vynar/toering.svg"
  24099. },
  24100. allForms: true
  24101. },
  24102. shaft: {
  24103. height: math.unit(0.625, "feet"),
  24104. name: "Shaft",
  24105. image: {
  24106. source: "./media/characters/poojawa-vynar/shaft.svg"
  24107. },
  24108. allForms: true
  24109. },
  24110. spade: {
  24111. height: math.unit(0.42, "feet"),
  24112. name: "Spade",
  24113. image: {
  24114. source: "./media/characters/poojawa-vynar/spade.svg"
  24115. },
  24116. allForms: true
  24117. },
  24118. },
  24119. [
  24120. {
  24121. name: "Shortstack",
  24122. height: math.unit(4, "feet"),
  24123. form: "anthro"
  24124. },
  24125. {
  24126. name: "Normal",
  24127. height: math.unit(5 + 11 / 12, "feet"),
  24128. form: "anthro",
  24129. default: true
  24130. },
  24131. {
  24132. name: "Tauric",
  24133. height: math.unit(4, "meters"),
  24134. form: "taur",
  24135. default: true
  24136. },
  24137. ],
  24138. {
  24139. "anthro": {
  24140. name: "Anthro",
  24141. default: true
  24142. },
  24143. "taur": {
  24144. name: "Taur",
  24145. },
  24146. }
  24147. ))
  24148. characterMakers.push(() => makeCharacter(
  24149. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  24150. {
  24151. front: {
  24152. height: math.unit(293, "meters"),
  24153. weight: math.unit(70400, "tons"),
  24154. name: "Front",
  24155. image: {
  24156. source: "./media/characters/violette/front.svg",
  24157. extra: 1227 / 1180,
  24158. bottom: 0.005
  24159. }
  24160. },
  24161. back: {
  24162. height: math.unit(293, "meters"),
  24163. weight: math.unit(70400, "tons"),
  24164. name: "Back",
  24165. image: {
  24166. source: "./media/characters/violette/back.svg",
  24167. extra: 1227 / 1180,
  24168. bottom: 0.005
  24169. }
  24170. },
  24171. },
  24172. [
  24173. {
  24174. name: "Macro",
  24175. height: math.unit(293, "meters"),
  24176. default: true
  24177. },
  24178. ]
  24179. ))
  24180. characterMakers.push(() => makeCharacter(
  24181. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  24182. {
  24183. front: {
  24184. height: math.unit(1050, "feet"),
  24185. weight: math.unit(200000, "tons"),
  24186. name: "Front",
  24187. image: {
  24188. source: "./media/characters/alessandra/front.svg",
  24189. extra: 960 / 912,
  24190. bottom: 0.06
  24191. }
  24192. },
  24193. },
  24194. [
  24195. {
  24196. name: "Macro",
  24197. height: math.unit(1050, "feet")
  24198. },
  24199. {
  24200. name: "Macro+",
  24201. height: math.unit(900, "meters"),
  24202. default: true
  24203. },
  24204. ]
  24205. ))
  24206. characterMakers.push(() => makeCharacter(
  24207. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  24208. {
  24209. front: {
  24210. height: math.unit(5, "feet"),
  24211. weight: math.unit(187, "lb"),
  24212. name: "Front",
  24213. image: {
  24214. source: "./media/characters/person/front.svg",
  24215. extra: 3087 / 2945,
  24216. bottom: 91 / 3181
  24217. }
  24218. },
  24219. },
  24220. [
  24221. {
  24222. name: "Micro",
  24223. height: math.unit(3, "inches")
  24224. },
  24225. {
  24226. name: "Normal",
  24227. height: math.unit(5, "feet"),
  24228. default: true
  24229. },
  24230. {
  24231. name: "Macro",
  24232. height: math.unit(90, "feet")
  24233. },
  24234. {
  24235. name: "Max Size",
  24236. height: math.unit(280, "feet")
  24237. },
  24238. ]
  24239. ))
  24240. characterMakers.push(() => makeCharacter(
  24241. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  24242. {
  24243. front: {
  24244. height: math.unit(4.5, "meters"),
  24245. weight: math.unit(3200, "lb"),
  24246. name: "Front",
  24247. image: {
  24248. source: "./media/characters/ty/front.svg",
  24249. extra: 1038 / 960,
  24250. bottom: 31.156 / 1068
  24251. }
  24252. },
  24253. back: {
  24254. height: math.unit(4.5, "meters"),
  24255. weight: math.unit(3200, "lb"),
  24256. name: "Back",
  24257. image: {
  24258. source: "./media/characters/ty/back.svg",
  24259. extra: 1044 / 966,
  24260. bottom: 7.48 / 1049
  24261. }
  24262. },
  24263. },
  24264. [
  24265. {
  24266. name: "Normal",
  24267. height: math.unit(4.5, "meters"),
  24268. default: true
  24269. },
  24270. ]
  24271. ))
  24272. characterMakers.push(() => makeCharacter(
  24273. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  24274. {
  24275. front: {
  24276. height: math.unit(5 + 4 / 12, "feet"),
  24277. weight: math.unit(115, "lb"),
  24278. name: "Front",
  24279. image: {
  24280. source: "./media/characters/rocky/front.svg",
  24281. extra: 1012 / 975,
  24282. bottom: 54 / 1066
  24283. }
  24284. },
  24285. },
  24286. [
  24287. {
  24288. name: "Normal",
  24289. height: math.unit(5 + 4 / 12, "feet"),
  24290. default: true
  24291. },
  24292. ]
  24293. ))
  24294. characterMakers.push(() => makeCharacter(
  24295. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  24296. {
  24297. upright: {
  24298. height: math.unit(6, "meters"),
  24299. weight: math.unit(4000, "kg"),
  24300. name: "Upright",
  24301. image: {
  24302. source: "./media/characters/ruin/upright.svg",
  24303. extra: 668 / 661,
  24304. bottom: 42 / 799.8396
  24305. }
  24306. },
  24307. },
  24308. [
  24309. {
  24310. name: "Normal",
  24311. height: math.unit(6, "meters"),
  24312. default: true
  24313. },
  24314. ]
  24315. ))
  24316. characterMakers.push(() => makeCharacter(
  24317. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24318. {
  24319. front: {
  24320. height: math.unit(5, "feet"),
  24321. weight: math.unit(106, "lb"),
  24322. name: "Front",
  24323. image: {
  24324. source: "./media/characters/robin/front.svg",
  24325. extra: 862 / 799,
  24326. bottom: 42.4 / 914.8856
  24327. }
  24328. },
  24329. },
  24330. [
  24331. {
  24332. name: "Normal",
  24333. height: math.unit(5, "feet"),
  24334. default: true
  24335. },
  24336. ]
  24337. ))
  24338. characterMakers.push(() => makeCharacter(
  24339. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24340. {
  24341. side: {
  24342. height: math.unit(3, "feet"),
  24343. weight: math.unit(225, "lb"),
  24344. name: "Side",
  24345. image: {
  24346. source: "./media/characters/saian/side.svg",
  24347. extra: 566 / 356,
  24348. bottom: 79.7 / 643
  24349. }
  24350. },
  24351. maw: {
  24352. height: math.unit(2.85, "feet"),
  24353. name: "Maw",
  24354. image: {
  24355. source: "./media/characters/saian/maw.svg"
  24356. }
  24357. },
  24358. },
  24359. [
  24360. {
  24361. name: "Normal",
  24362. height: math.unit(3, "feet"),
  24363. default: true
  24364. },
  24365. ]
  24366. ))
  24367. characterMakers.push(() => makeCharacter(
  24368. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24369. {
  24370. side: {
  24371. height: math.unit(8, "feet"),
  24372. weight: math.unit(300, "lb"),
  24373. name: "Side",
  24374. image: {
  24375. source: "./media/characters/equus-silvermane/side.svg",
  24376. extra: 2176 / 2050,
  24377. bottom: 65.7 / 2245
  24378. }
  24379. },
  24380. front: {
  24381. height: math.unit(8, "feet"),
  24382. weight: math.unit(300, "lb"),
  24383. name: "Front",
  24384. image: {
  24385. source: "./media/characters/equus-silvermane/front.svg",
  24386. extra: 4633 / 4400,
  24387. bottom: 71.3 / 4706.915
  24388. }
  24389. },
  24390. sideStepping: {
  24391. height: math.unit(8, "feet"),
  24392. weight: math.unit(300, "lb"),
  24393. name: "Side (Stepping)",
  24394. image: {
  24395. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24396. extra: 1968 / 1860,
  24397. bottom: 16.4 / 1989
  24398. }
  24399. },
  24400. },
  24401. [
  24402. {
  24403. name: "Normal",
  24404. height: math.unit(8, "feet")
  24405. },
  24406. {
  24407. name: "Minimacro",
  24408. height: math.unit(75, "feet"),
  24409. default: true
  24410. },
  24411. {
  24412. name: "Macro",
  24413. height: math.unit(150, "feet")
  24414. },
  24415. {
  24416. name: "Macro+",
  24417. height: math.unit(1000, "feet")
  24418. },
  24419. {
  24420. name: "Megamacro",
  24421. height: math.unit(1, "mile")
  24422. },
  24423. ]
  24424. ))
  24425. characterMakers.push(() => makeCharacter(
  24426. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24427. {
  24428. side: {
  24429. height: math.unit(20, "feet"),
  24430. weight: math.unit(30000, "kg"),
  24431. name: "Side",
  24432. image: {
  24433. source: "./media/characters/windar/side.svg",
  24434. extra: 1491 / 1248,
  24435. bottom: 82.56 / 1568
  24436. }
  24437. },
  24438. },
  24439. [
  24440. {
  24441. name: "Normal",
  24442. height: math.unit(20, "feet"),
  24443. default: true
  24444. },
  24445. ]
  24446. ))
  24447. characterMakers.push(() => makeCharacter(
  24448. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24449. {
  24450. side: {
  24451. height: math.unit(15.66, "feet"),
  24452. weight: math.unit(150, "lb"),
  24453. name: "Side",
  24454. image: {
  24455. source: "./media/characters/melody/side.svg",
  24456. extra: 1097 / 944,
  24457. bottom: 11.8 / 1109
  24458. }
  24459. },
  24460. sideOutfit: {
  24461. height: math.unit(15.66, "feet"),
  24462. weight: math.unit(150, "lb"),
  24463. name: "Side (Outfit)",
  24464. image: {
  24465. source: "./media/characters/melody/side-outfit.svg",
  24466. extra: 1097 / 944,
  24467. bottom: 11.8 / 1109
  24468. }
  24469. },
  24470. },
  24471. [
  24472. {
  24473. name: "Normal",
  24474. height: math.unit(15.66, "feet"),
  24475. default: true
  24476. },
  24477. ]
  24478. ))
  24479. characterMakers.push(() => makeCharacter(
  24480. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24481. {
  24482. armoredFront: {
  24483. height: math.unit(8, "feet"),
  24484. weight: math.unit(325, "lb"),
  24485. name: "Front",
  24486. image: {
  24487. source: "./media/characters/windera/armored-front.svg",
  24488. extra: 1830/1598,
  24489. bottom: 151/1981
  24490. },
  24491. form: "armored",
  24492. default: true
  24493. },
  24494. macroFront: {
  24495. height: math.unit(70, "feet"),
  24496. weight: math.unit(315453, "lb"),
  24497. name: "Front",
  24498. image: {
  24499. source: "./media/characters/windera/macro-front.svg",
  24500. extra: 963/883,
  24501. bottom: 23/986
  24502. },
  24503. form: "macro",
  24504. default: true
  24505. },
  24506. },
  24507. [
  24508. {
  24509. name: "Normal",
  24510. height: math.unit(8, "feet"),
  24511. default: true,
  24512. form: "armored"
  24513. },
  24514. {
  24515. name: "Normal",
  24516. height: math.unit(70, "feet"),
  24517. default: true,
  24518. form: "macro"
  24519. },
  24520. ],
  24521. {
  24522. "armored": {
  24523. name: "Armored",
  24524. default: true
  24525. },
  24526. "macro": {
  24527. name: "Macro",
  24528. },
  24529. }
  24530. ))
  24531. characterMakers.push(() => makeCharacter(
  24532. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24533. {
  24534. front: {
  24535. height: math.unit(28.75, "feet"),
  24536. weight: math.unit(2000, "kg"),
  24537. name: "Front",
  24538. image: {
  24539. source: "./media/characters/sonear/front.svg",
  24540. extra: 1041.1 / 964.9,
  24541. bottom: 53.7 / 1096.6
  24542. }
  24543. },
  24544. },
  24545. [
  24546. {
  24547. name: "Normal",
  24548. height: math.unit(28.75, "feet"),
  24549. default: true
  24550. },
  24551. ]
  24552. ))
  24553. characterMakers.push(() => makeCharacter(
  24554. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24555. {
  24556. side: {
  24557. height: math.unit(25.5, "feet"),
  24558. weight: math.unit(23000, "kg"),
  24559. name: "Side",
  24560. image: {
  24561. source: "./media/characters/kanara/side.svg"
  24562. }
  24563. },
  24564. },
  24565. [
  24566. {
  24567. name: "Normal",
  24568. height: math.unit(25.5, "feet"),
  24569. default: true
  24570. },
  24571. ]
  24572. ))
  24573. characterMakers.push(() => makeCharacter(
  24574. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24575. {
  24576. side: {
  24577. height: math.unit(10, "feet"),
  24578. weight: math.unit(1000, "kg"),
  24579. name: "Side",
  24580. image: {
  24581. source: "./media/characters/ereus/side.svg",
  24582. extra: 1157 / 959,
  24583. bottom: 153 / 1312.5
  24584. }
  24585. },
  24586. },
  24587. [
  24588. {
  24589. name: "Normal",
  24590. height: math.unit(10, "feet"),
  24591. default: true
  24592. },
  24593. ]
  24594. ))
  24595. characterMakers.push(() => makeCharacter(
  24596. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24597. {
  24598. side: {
  24599. height: math.unit(4.5, "feet"),
  24600. weight: math.unit(500, "lb"),
  24601. name: "Side",
  24602. image: {
  24603. source: "./media/characters/e-ter/side.svg",
  24604. extra: 1550 / 1248,
  24605. bottom: 146 / 1694
  24606. }
  24607. },
  24608. },
  24609. [
  24610. {
  24611. name: "Normal",
  24612. height: math.unit(4.5, "feet"),
  24613. default: true
  24614. },
  24615. ]
  24616. ))
  24617. characterMakers.push(() => makeCharacter(
  24618. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24619. {
  24620. side: {
  24621. height: math.unit(9.7, "feet"),
  24622. weight: math.unit(4000, "kg"),
  24623. name: "Side",
  24624. image: {
  24625. source: "./media/characters/yamie/side.svg"
  24626. }
  24627. },
  24628. },
  24629. [
  24630. {
  24631. name: "Normal",
  24632. height: math.unit(9.7, "feet"),
  24633. default: true
  24634. },
  24635. ]
  24636. ))
  24637. characterMakers.push(() => makeCharacter(
  24638. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24639. {
  24640. front: {
  24641. height: math.unit(50, "feet"),
  24642. weight: math.unit(50000, "kg"),
  24643. name: "Front",
  24644. image: {
  24645. source: "./media/characters/anders/front.svg",
  24646. extra: 570 / 539,
  24647. bottom: 14.7 / 586.7
  24648. }
  24649. },
  24650. },
  24651. [
  24652. {
  24653. name: "Large",
  24654. height: math.unit(50, "feet")
  24655. },
  24656. {
  24657. name: "Macro",
  24658. height: math.unit(2000, "feet"),
  24659. default: true
  24660. },
  24661. {
  24662. name: "Megamacro",
  24663. height: math.unit(12, "miles")
  24664. },
  24665. ]
  24666. ))
  24667. characterMakers.push(() => makeCharacter(
  24668. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24669. {
  24670. front: {
  24671. height: math.unit(7 + 2 / 12, "feet"),
  24672. weight: math.unit(300, "lb"),
  24673. name: "Front",
  24674. image: {
  24675. source: "./media/characters/reban/front.svg",
  24676. extra: 1287/1212,
  24677. bottom: 148/1435
  24678. }
  24679. },
  24680. head: {
  24681. height: math.unit(1.95, "feet"),
  24682. name: "Head",
  24683. image: {
  24684. source: "./media/characters/reban/head.svg"
  24685. }
  24686. },
  24687. maw: {
  24688. height: math.unit(0.95, "feet"),
  24689. name: "Maw",
  24690. image: {
  24691. source: "./media/characters/reban/maw.svg"
  24692. }
  24693. },
  24694. foot: {
  24695. height: math.unit(1.65, "feet"),
  24696. name: "Foot",
  24697. image: {
  24698. source: "./media/characters/reban/foot.svg"
  24699. }
  24700. },
  24701. dick: {
  24702. height: math.unit(7 / 5, "feet"),
  24703. name: "Dick",
  24704. image: {
  24705. source: "./media/characters/reban/dick.svg"
  24706. }
  24707. },
  24708. },
  24709. [
  24710. {
  24711. name: "Natural Height",
  24712. height: math.unit(7 + 2 / 12, "feet")
  24713. },
  24714. {
  24715. name: "Macro",
  24716. height: math.unit(500, "feet"),
  24717. default: true
  24718. },
  24719. {
  24720. name: "Canon Height",
  24721. height: math.unit(50, "AU")
  24722. },
  24723. ]
  24724. ))
  24725. characterMakers.push(() => makeCharacter(
  24726. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24727. {
  24728. front: {
  24729. height: math.unit(6, "feet"),
  24730. weight: math.unit(150, "lb"),
  24731. name: "Front",
  24732. image: {
  24733. source: "./media/characters/terrance-keayes/front.svg",
  24734. extra: 1.005,
  24735. bottom: 151 / 1615
  24736. }
  24737. },
  24738. side: {
  24739. height: math.unit(6, "feet"),
  24740. weight: math.unit(150, "lb"),
  24741. name: "Side",
  24742. image: {
  24743. source: "./media/characters/terrance-keayes/side.svg",
  24744. extra: 1.005,
  24745. bottom: 129.4 / 1544
  24746. }
  24747. },
  24748. back: {
  24749. height: math.unit(6, "feet"),
  24750. weight: math.unit(150, "lb"),
  24751. name: "Back",
  24752. image: {
  24753. source: "./media/characters/terrance-keayes/back.svg",
  24754. extra: 1.005,
  24755. bottom: 58.4 / 1557.3
  24756. }
  24757. },
  24758. dick: {
  24759. height: math.unit(6 * 0.208, "feet"),
  24760. name: "Dick",
  24761. image: {
  24762. source: "./media/characters/terrance-keayes/dick.svg"
  24763. }
  24764. },
  24765. },
  24766. [
  24767. {
  24768. name: "Canon Height",
  24769. height: math.unit(35, "miles"),
  24770. default: true
  24771. },
  24772. ]
  24773. ))
  24774. characterMakers.push(() => makeCharacter(
  24775. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24776. {
  24777. front: {
  24778. height: math.unit(6, "feet"),
  24779. weight: math.unit(150, "lb"),
  24780. name: "Front",
  24781. image: {
  24782. source: "./media/characters/ofelia/front.svg",
  24783. extra: 1130/1117,
  24784. bottom: 91/1221
  24785. }
  24786. },
  24787. back: {
  24788. height: math.unit(6, "feet"),
  24789. weight: math.unit(150, "lb"),
  24790. name: "Back",
  24791. image: {
  24792. source: "./media/characters/ofelia/back.svg",
  24793. extra: 1172/1159,
  24794. bottom: 28/1200
  24795. }
  24796. },
  24797. maw: {
  24798. height: math.unit(1, "feet"),
  24799. name: "Maw",
  24800. image: {
  24801. source: "./media/characters/ofelia/maw.svg"
  24802. }
  24803. },
  24804. foot: {
  24805. height: math.unit(1.949, "feet"),
  24806. name: "Foot",
  24807. image: {
  24808. source: "./media/characters/ofelia/foot.svg"
  24809. }
  24810. },
  24811. },
  24812. [
  24813. {
  24814. name: "Canon Height",
  24815. height: math.unit(2000, "miles"),
  24816. default: true
  24817. },
  24818. ]
  24819. ))
  24820. characterMakers.push(() => makeCharacter(
  24821. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24822. {
  24823. front: {
  24824. height: math.unit(6, "feet"),
  24825. weight: math.unit(150, "lb"),
  24826. name: "Front",
  24827. image: {
  24828. source: "./media/characters/samuel/front.svg",
  24829. extra: 265 / 258,
  24830. bottom: 2 / 266.1566
  24831. }
  24832. },
  24833. },
  24834. [
  24835. {
  24836. name: "Macro",
  24837. height: math.unit(100, "feet"),
  24838. default: true
  24839. },
  24840. {
  24841. name: "Full Size",
  24842. height: math.unit(1000, "miles")
  24843. },
  24844. ]
  24845. ))
  24846. characterMakers.push(() => makeCharacter(
  24847. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24848. {
  24849. front: {
  24850. height: math.unit(6, "feet"),
  24851. weight: math.unit(300, "lb"),
  24852. name: "Front",
  24853. image: {
  24854. source: "./media/characters/beishir-kiel/front.svg",
  24855. extra: 569 / 547,
  24856. bottom: 41.9 / 609
  24857. }
  24858. },
  24859. maw: {
  24860. height: math.unit(6 * 0.202, "feet"),
  24861. name: "Maw",
  24862. image: {
  24863. source: "./media/characters/beishir-kiel/maw.svg"
  24864. }
  24865. },
  24866. },
  24867. [
  24868. {
  24869. name: "Macro",
  24870. height: math.unit(300, "feet"),
  24871. default: true
  24872. },
  24873. ]
  24874. ))
  24875. characterMakers.push(() => makeCharacter(
  24876. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24877. {
  24878. front: {
  24879. height: math.unit(5 + 7/12, "feet"),
  24880. weight: math.unit(120, "lb"),
  24881. name: "Front",
  24882. image: {
  24883. source: "./media/characters/logan-grey/front.svg",
  24884. extra: 1836/1738,
  24885. bottom: 108/1944
  24886. }
  24887. },
  24888. back: {
  24889. height: math.unit(5 + 7/12, "feet"),
  24890. weight: math.unit(120, "lb"),
  24891. name: "Back",
  24892. image: {
  24893. source: "./media/characters/logan-grey/back.svg",
  24894. extra: 1880/1794,
  24895. bottom: 24/1904
  24896. }
  24897. },
  24898. frontSfw: {
  24899. height: math.unit(5 + 7/12, "feet"),
  24900. weight: math.unit(120, "lb"),
  24901. name: "Front (SFW)",
  24902. image: {
  24903. source: "./media/characters/logan-grey/front-sfw.svg",
  24904. extra: 1836/1738,
  24905. bottom: 108/1944
  24906. }
  24907. },
  24908. backSfw: {
  24909. height: math.unit(5 + 7/12, "feet"),
  24910. weight: math.unit(120, "lb"),
  24911. name: "Back (SFW)",
  24912. image: {
  24913. source: "./media/characters/logan-grey/back-sfw.svg",
  24914. extra: 1880/1794,
  24915. bottom: 24/1904
  24916. }
  24917. },
  24918. hands: {
  24919. height: math.unit(0.84, "feet"),
  24920. name: "Hands",
  24921. image: {
  24922. source: "./media/characters/logan-grey/hands.svg"
  24923. }
  24924. },
  24925. paws: {
  24926. height: math.unit(0.72, "feet"),
  24927. name: "Paws",
  24928. image: {
  24929. source: "./media/characters/logan-grey/paws.svg"
  24930. }
  24931. },
  24932. cock: {
  24933. height: math.unit(1.45, "feet"),
  24934. name: "Cock",
  24935. image: {
  24936. source: "./media/characters/logan-grey/cock.svg"
  24937. }
  24938. },
  24939. cockAlt: {
  24940. height: math.unit(1.437, "feet"),
  24941. name: "Cock (alt)",
  24942. image: {
  24943. source: "./media/characters/logan-grey/cock-alt.svg"
  24944. }
  24945. },
  24946. },
  24947. [
  24948. {
  24949. name: "Normal",
  24950. height: math.unit(5 + 8 / 12, "feet")
  24951. },
  24952. {
  24953. name: "The 500 Foot Femboy",
  24954. height: math.unit(500, "feet"),
  24955. default: true
  24956. },
  24957. {
  24958. name: "Megmacro",
  24959. height: math.unit(20, "miles")
  24960. },
  24961. ]
  24962. ))
  24963. characterMakers.push(() => makeCharacter(
  24964. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24965. {
  24966. front: {
  24967. height: math.unit(8 + 2 / 12, "feet"),
  24968. weight: math.unit(275, "lb"),
  24969. name: "Front",
  24970. image: {
  24971. source: "./media/characters/draganta/front.svg",
  24972. extra: 1177 / 1135,
  24973. bottom: 33.46 / 1212.1
  24974. }
  24975. },
  24976. },
  24977. [
  24978. {
  24979. name: "Normal",
  24980. height: math.unit(8 + 6 / 12, "feet"),
  24981. default: true
  24982. },
  24983. {
  24984. name: "Macro",
  24985. height: math.unit(150, "feet")
  24986. },
  24987. {
  24988. name: "Megamacro",
  24989. height: math.unit(1000, "miles")
  24990. },
  24991. ]
  24992. ))
  24993. characterMakers.push(() => makeCharacter(
  24994. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24995. {
  24996. front: {
  24997. height: math.unit(1.72, "m"),
  24998. weight: math.unit(80, "lb"),
  24999. name: "Front",
  25000. image: {
  25001. source: "./media/characters/voski/front.svg",
  25002. extra: 2076.22 / 2022.4,
  25003. bottom: 102.7 / 2177.3866
  25004. }
  25005. },
  25006. frontFlaccid: {
  25007. height: math.unit(1.72, "m"),
  25008. weight: math.unit(80, "lb"),
  25009. name: "Front (Flaccid)",
  25010. image: {
  25011. source: "./media/characters/voski/front-flaccid.svg",
  25012. extra: 2076.22 / 2022.4,
  25013. bottom: 102.7 / 2177.3866
  25014. }
  25015. },
  25016. frontErect: {
  25017. height: math.unit(1.72, "m"),
  25018. weight: math.unit(80, "lb"),
  25019. name: "Front (Erect)",
  25020. image: {
  25021. source: "./media/characters/voski/front-erect.svg",
  25022. extra: 2076.22 / 2022.4,
  25023. bottom: 102.7 / 2177.3866
  25024. }
  25025. },
  25026. back: {
  25027. height: math.unit(1.72, "m"),
  25028. weight: math.unit(80, "lb"),
  25029. name: "Back",
  25030. image: {
  25031. source: "./media/characters/voski/back.svg",
  25032. extra: 2104 / 2051,
  25033. bottom: 10.45 / 2113.63
  25034. }
  25035. },
  25036. },
  25037. [
  25038. {
  25039. name: "Normal",
  25040. height: math.unit(1.72, "m")
  25041. },
  25042. {
  25043. name: "Macro",
  25044. height: math.unit(55, "m"),
  25045. default: true
  25046. },
  25047. {
  25048. name: "Macro+",
  25049. height: math.unit(300, "m")
  25050. },
  25051. {
  25052. name: "Macro++",
  25053. height: math.unit(700, "m")
  25054. },
  25055. {
  25056. name: "Macro+++",
  25057. height: math.unit(4500, "m")
  25058. },
  25059. {
  25060. name: "Macro++++",
  25061. height: math.unit(45, "km")
  25062. },
  25063. {
  25064. name: "Macro+++++",
  25065. height: math.unit(1220, "km")
  25066. },
  25067. ]
  25068. ))
  25069. characterMakers.push(() => makeCharacter(
  25070. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  25071. {
  25072. front: {
  25073. height: math.unit(2.3, "m"),
  25074. weight: math.unit(304, "kg"),
  25075. name: "Front",
  25076. image: {
  25077. source: "./media/characters/icowom-lee/front.svg",
  25078. extra: 985 / 955,
  25079. bottom: 25.4 / 1012
  25080. }
  25081. },
  25082. fronttentacles: {
  25083. height: math.unit(2.3, "m"),
  25084. weight: math.unit(304, "kg"),
  25085. name: "Front-tentacles",
  25086. image: {
  25087. source: "./media/characters/icowom-lee/front-tentacles.svg",
  25088. extra: 985 / 955,
  25089. bottom: 25.4 / 1012
  25090. }
  25091. },
  25092. back: {
  25093. height: math.unit(2.3, "m"),
  25094. weight: math.unit(304, "kg"),
  25095. name: "Back",
  25096. image: {
  25097. source: "./media/characters/icowom-lee/back.svg",
  25098. extra: 975 / 954,
  25099. bottom: 9.5 / 985
  25100. }
  25101. },
  25102. backtentacles: {
  25103. height: math.unit(2.3, "m"),
  25104. weight: math.unit(304, "kg"),
  25105. name: "Back-tentacles",
  25106. image: {
  25107. source: "./media/characters/icowom-lee/back-tentacles.svg",
  25108. extra: 975 / 954,
  25109. bottom: 9.5 / 985
  25110. }
  25111. },
  25112. frontDressed: {
  25113. height: math.unit(2.3, "m"),
  25114. weight: math.unit(304, "kg"),
  25115. name: "Front (Dressed)",
  25116. image: {
  25117. source: "./media/characters/icowom-lee/front-dressed.svg",
  25118. extra: 3076 / 2933,
  25119. bottom: 51.4 / 3125.1889
  25120. }
  25121. },
  25122. rump: {
  25123. height: math.unit(0.776, "meters"),
  25124. name: "Rump",
  25125. image: {
  25126. source: "./media/characters/icowom-lee/rump.svg"
  25127. }
  25128. },
  25129. genitals: {
  25130. height: math.unit(0.78, "meters"),
  25131. name: "Genitals",
  25132. image: {
  25133. source: "./media/characters/icowom-lee/genitals.svg"
  25134. }
  25135. },
  25136. },
  25137. [
  25138. {
  25139. name: "Normal",
  25140. height: math.unit(2.3, "meters"),
  25141. default: true
  25142. },
  25143. {
  25144. name: "Macro",
  25145. height: math.unit(94, "meters"),
  25146. default: true
  25147. },
  25148. ]
  25149. ))
  25150. characterMakers.push(() => makeCharacter(
  25151. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  25152. {
  25153. front: {
  25154. height: math.unit(22, "meters"),
  25155. weight: math.unit(21000, "kg"),
  25156. name: "Front",
  25157. image: {
  25158. source: "./media/characters/shock-diamond/front.svg",
  25159. extra: 2204 / 2053,
  25160. bottom: 65 / 2239.47
  25161. }
  25162. },
  25163. frontNude: {
  25164. height: math.unit(22, "meters"),
  25165. weight: math.unit(21000, "kg"),
  25166. name: "Front (Nude)",
  25167. image: {
  25168. source: "./media/characters/shock-diamond/front-nude.svg",
  25169. extra: 2514 / 2285,
  25170. bottom: 13 / 2527.56
  25171. }
  25172. },
  25173. },
  25174. [
  25175. {
  25176. name: "Normal",
  25177. height: math.unit(3, "meters")
  25178. },
  25179. {
  25180. name: "Macro",
  25181. height: math.unit(22, "meters"),
  25182. default: true
  25183. },
  25184. ]
  25185. ))
  25186. characterMakers.push(() => makeCharacter(
  25187. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  25188. {
  25189. front: {
  25190. height: math.unit(5 + 4/12, "feet"),
  25191. weight: math.unit(125, "lb"),
  25192. name: "Front",
  25193. image: {
  25194. source: "./media/characters/rory/front.svg",
  25195. extra: 1790/1681,
  25196. bottom: 66/1856
  25197. },
  25198. form: "normal",
  25199. default: true
  25200. },
  25201. back: {
  25202. height: math.unit(5 + 4/12, "feet"),
  25203. weight: math.unit(125, "lb"),
  25204. name: "Back",
  25205. image: {
  25206. source: "./media/characters/rory/back.svg",
  25207. extra: 1805/1690,
  25208. bottom: 56/1861
  25209. },
  25210. form: "normal"
  25211. },
  25212. frontDressed: {
  25213. height: math.unit(5 + 4/12, "feet"),
  25214. weight: math.unit(125, "lb"),
  25215. name: "Front (Dressed)",
  25216. image: {
  25217. source: "./media/characters/rory/front-dressed.svg",
  25218. extra: 1790/1681,
  25219. bottom: 66/1856
  25220. },
  25221. form: "normal"
  25222. },
  25223. backDressed: {
  25224. height: math.unit(5 + 4/12, "feet"),
  25225. weight: math.unit(125, "lb"),
  25226. name: "Back (Dressed)",
  25227. image: {
  25228. source: "./media/characters/rory/back-dressed.svg",
  25229. extra: 1805/1690,
  25230. bottom: 56/1861
  25231. },
  25232. form: "normal"
  25233. },
  25234. frontNsfw: {
  25235. height: math.unit(5 + 4/12, "feet"),
  25236. weight: math.unit(125, "lb"),
  25237. name: "Front (NSFW)",
  25238. image: {
  25239. source: "./media/characters/rory/front-nsfw.svg",
  25240. extra: 1790/1681,
  25241. bottom: 66/1856
  25242. },
  25243. form: "normal"
  25244. },
  25245. backNsfw: {
  25246. height: math.unit(5 + 4/12, "feet"),
  25247. weight: math.unit(125, "lb"),
  25248. name: "Back (NSFW)",
  25249. image: {
  25250. source: "./media/characters/rory/back-nsfw.svg",
  25251. extra: 1805/1690,
  25252. bottom: 56/1861
  25253. },
  25254. form: "normal"
  25255. },
  25256. dick: {
  25257. height: math.unit(0.8, "feet"),
  25258. name: "Dick",
  25259. image: {
  25260. source: "./media/characters/rory/dick.svg"
  25261. },
  25262. form: "normal"
  25263. },
  25264. thicc_front: {
  25265. height: math.unit(5 + 4/12, "feet"),
  25266. weight: math.unit(195, "lb"),
  25267. name: "Front",
  25268. image: {
  25269. source: "./media/characters/rory/thicc-front.svg",
  25270. extra: 1220/1100,
  25271. bottom: 103/1323
  25272. },
  25273. form: "thicc",
  25274. default: true
  25275. },
  25276. thicc_back: {
  25277. height: math.unit(5 + 4/12, "feet"),
  25278. weight: math.unit(195, "lb"),
  25279. name: "Back",
  25280. image: {
  25281. source: "./media/characters/rory/thicc-back.svg",
  25282. extra: 1166/1086,
  25283. bottom: 35/1201
  25284. },
  25285. form: "thicc"
  25286. },
  25287. },
  25288. [
  25289. {
  25290. name: "Micro",
  25291. height: math.unit(3, "inches"),
  25292. allForms: true
  25293. },
  25294. {
  25295. name: "Normal",
  25296. height: math.unit(5 + 4/12, "feet"),
  25297. allForms: true,
  25298. default: true
  25299. },
  25300. {
  25301. name: "Macro",
  25302. height: math.unit(90, "feet"),
  25303. allForms: true
  25304. },
  25305. {
  25306. name: "Supercharged",
  25307. height: math.unit(270, "feet"),
  25308. allForms: true
  25309. },
  25310. ],
  25311. {
  25312. "normal": {
  25313. name: "Normal",
  25314. default: true
  25315. },
  25316. "thicc": {
  25317. name: "Thicc",
  25318. },
  25319. }
  25320. ))
  25321. characterMakers.push(() => makeCharacter(
  25322. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25323. {
  25324. front: {
  25325. height: math.unit(5 + 9 / 12, "feet"),
  25326. weight: math.unit(190, "lb"),
  25327. name: "Front",
  25328. image: {
  25329. source: "./media/characters/sprisk/front.svg",
  25330. extra: 1225 / 1180,
  25331. bottom: 42.7 / 1266.4
  25332. }
  25333. },
  25334. frontNsfw: {
  25335. height: math.unit(5 + 9 / 12, "feet"),
  25336. weight: math.unit(190, "lb"),
  25337. name: "Front (NSFW)",
  25338. image: {
  25339. source: "./media/characters/sprisk/front-nsfw.svg",
  25340. extra: 1225 / 1180,
  25341. bottom: 42.7 / 1266.4
  25342. }
  25343. },
  25344. back: {
  25345. height: math.unit(5 + 9 / 12, "feet"),
  25346. weight: math.unit(190, "lb"),
  25347. name: "Back",
  25348. image: {
  25349. source: "./media/characters/sprisk/back.svg",
  25350. extra: 1247 / 1200,
  25351. bottom: 5.6 / 1253.04
  25352. }
  25353. },
  25354. },
  25355. [
  25356. {
  25357. name: "Tiny",
  25358. height: math.unit(2, "inches")
  25359. },
  25360. {
  25361. name: "Normal",
  25362. height: math.unit(5 + 9 / 12, "feet"),
  25363. default: true
  25364. },
  25365. {
  25366. name: "Mini Macro",
  25367. height: math.unit(18, "feet")
  25368. },
  25369. {
  25370. name: "Macro",
  25371. height: math.unit(100, "feet")
  25372. },
  25373. {
  25374. name: "MACRO",
  25375. height: math.unit(50, "miles")
  25376. },
  25377. {
  25378. name: "M A C R O",
  25379. height: math.unit(300, "miles")
  25380. },
  25381. ]
  25382. ))
  25383. characterMakers.push(() => makeCharacter(
  25384. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25385. {
  25386. side: {
  25387. height: math.unit(15.6, "meters"),
  25388. weight: math.unit(700000, "kg"),
  25389. name: "Side",
  25390. image: {
  25391. source: "./media/characters/bunsen/side.svg",
  25392. extra: 1644 / 358
  25393. }
  25394. },
  25395. foot: {
  25396. height: math.unit(1.611 * 1644 / 358, "meter"),
  25397. name: "Foot",
  25398. image: {
  25399. source: "./media/characters/bunsen/foot.svg"
  25400. }
  25401. },
  25402. },
  25403. [
  25404. {
  25405. name: "Small",
  25406. height: math.unit(10, "feet")
  25407. },
  25408. {
  25409. name: "Normal",
  25410. height: math.unit(15.6, "meters"),
  25411. default: true
  25412. },
  25413. ]
  25414. ))
  25415. characterMakers.push(() => makeCharacter(
  25416. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25417. {
  25418. front: {
  25419. height: math.unit(4 + 11 / 12, "feet"),
  25420. weight: math.unit(140, "lb"),
  25421. name: "Front",
  25422. image: {
  25423. source: "./media/characters/sesh/front.svg",
  25424. extra: 3420 / 3231,
  25425. bottom: 72 / 3949.5
  25426. }
  25427. },
  25428. },
  25429. [
  25430. {
  25431. name: "Normal",
  25432. height: math.unit(4 + 11 / 12, "feet")
  25433. },
  25434. {
  25435. name: "Grown",
  25436. height: math.unit(15, "feet"),
  25437. default: true
  25438. },
  25439. {
  25440. name: "Macro",
  25441. height: math.unit(1500, "feet")
  25442. },
  25443. {
  25444. name: "Megamacro",
  25445. height: math.unit(30, "miles")
  25446. },
  25447. {
  25448. name: "Continental",
  25449. height: math.unit(3000, "miles")
  25450. },
  25451. {
  25452. name: "Gravity Mass",
  25453. height: math.unit(300000, "miles")
  25454. },
  25455. {
  25456. name: "Planet Buster",
  25457. height: math.unit(30000000, "miles")
  25458. },
  25459. {
  25460. name: "Big",
  25461. height: math.unit(3000000000, "miles")
  25462. },
  25463. ]
  25464. ))
  25465. characterMakers.push(() => makeCharacter(
  25466. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25467. {
  25468. front: {
  25469. height: math.unit(9, "feet"),
  25470. weight: math.unit(350, "lb"),
  25471. name: "Front",
  25472. image: {
  25473. source: "./media/characters/pepper/front.svg",
  25474. extra: 1448 / 1312,
  25475. bottom: 9.4 / 1457.88
  25476. }
  25477. },
  25478. back: {
  25479. height: math.unit(9, "feet"),
  25480. weight: math.unit(350, "lb"),
  25481. name: "Back",
  25482. image: {
  25483. source: "./media/characters/pepper/back.svg",
  25484. extra: 1423 / 1300,
  25485. bottom: 4.6 / 1429
  25486. }
  25487. },
  25488. maw: {
  25489. height: math.unit(0.932, "feet"),
  25490. name: "Maw",
  25491. image: {
  25492. source: "./media/characters/pepper/maw.svg"
  25493. }
  25494. },
  25495. },
  25496. [
  25497. {
  25498. name: "Normal",
  25499. height: math.unit(9, "feet"),
  25500. default: true
  25501. },
  25502. ]
  25503. ))
  25504. characterMakers.push(() => makeCharacter(
  25505. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25506. {
  25507. front: {
  25508. height: math.unit(6, "feet"),
  25509. weight: math.unit(150, "lb"),
  25510. name: "Front",
  25511. image: {
  25512. source: "./media/characters/maelstrom/front.svg",
  25513. extra: 2100 / 1883,
  25514. bottom: 94 / 2196.7
  25515. }
  25516. },
  25517. },
  25518. [
  25519. {
  25520. name: "Less Kaiju",
  25521. height: math.unit(200, "feet")
  25522. },
  25523. {
  25524. name: "Kaiju",
  25525. height: math.unit(400, "feet"),
  25526. default: true
  25527. },
  25528. {
  25529. name: "Kaiju-er",
  25530. height: math.unit(600, "feet")
  25531. },
  25532. ]
  25533. ))
  25534. characterMakers.push(() => makeCharacter(
  25535. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25536. {
  25537. front: {
  25538. height: math.unit(6 + 5 / 12, "feet"),
  25539. weight: math.unit(180, "lb"),
  25540. name: "Front",
  25541. image: {
  25542. source: "./media/characters/lexir/front.svg",
  25543. extra: 180 / 172,
  25544. bottom: 12 / 192
  25545. }
  25546. },
  25547. back: {
  25548. height: math.unit(6 + 5 / 12, "feet"),
  25549. weight: math.unit(180, "lb"),
  25550. name: "Back",
  25551. image: {
  25552. source: "./media/characters/lexir/back.svg",
  25553. extra: 1273/1201,
  25554. bottom: 39/1312
  25555. }
  25556. },
  25557. },
  25558. [
  25559. {
  25560. name: "Very Smal",
  25561. height: math.unit(1, "nm")
  25562. },
  25563. {
  25564. name: "Normal",
  25565. height: math.unit(6 + 5 / 12, "feet"),
  25566. default: true
  25567. },
  25568. {
  25569. name: "Macro",
  25570. height: math.unit(1, "mile")
  25571. },
  25572. {
  25573. name: "Megamacro",
  25574. height: math.unit(50, "miles")
  25575. },
  25576. ]
  25577. ))
  25578. characterMakers.push(() => makeCharacter(
  25579. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25580. {
  25581. front: {
  25582. height: math.unit(1.5, "meters"),
  25583. weight: math.unit(100, "lb"),
  25584. name: "Front",
  25585. image: {
  25586. source: "./media/characters/maksio/front.svg",
  25587. extra: 1549 / 1531,
  25588. bottom: 123.7 / 1674.5429
  25589. }
  25590. },
  25591. back: {
  25592. height: math.unit(1.5, "meters"),
  25593. weight: math.unit(100, "lb"),
  25594. name: "Back",
  25595. image: {
  25596. source: "./media/characters/maksio/back.svg",
  25597. extra: 1541 / 1509,
  25598. bottom: 97 / 1639
  25599. }
  25600. },
  25601. hand: {
  25602. height: math.unit(0.621, "feet"),
  25603. name: "Hand",
  25604. image: {
  25605. source: "./media/characters/maksio/hand.svg"
  25606. }
  25607. },
  25608. foot: {
  25609. height: math.unit(1.611, "feet"),
  25610. name: "Foot",
  25611. image: {
  25612. source: "./media/characters/maksio/foot.svg"
  25613. }
  25614. },
  25615. },
  25616. [
  25617. {
  25618. name: "Shrunken",
  25619. height: math.unit(10, "cm")
  25620. },
  25621. {
  25622. name: "Normal",
  25623. height: math.unit(150, "cm"),
  25624. default: true
  25625. },
  25626. ]
  25627. ))
  25628. characterMakers.push(() => makeCharacter(
  25629. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25630. {
  25631. front: {
  25632. height: math.unit(100, "feet"),
  25633. name: "Front",
  25634. image: {
  25635. source: "./media/characters/erza-bear/front.svg",
  25636. extra: 2449 / 2390,
  25637. bottom: 46 / 2494
  25638. }
  25639. },
  25640. back: {
  25641. height: math.unit(100, "feet"),
  25642. name: "Back",
  25643. image: {
  25644. source: "./media/characters/erza-bear/back.svg",
  25645. extra: 2489 / 2430,
  25646. bottom: 85.4 / 2480
  25647. }
  25648. },
  25649. tail: {
  25650. height: math.unit(42, "feet"),
  25651. name: "Tail",
  25652. image: {
  25653. source: "./media/characters/erza-bear/tail.svg"
  25654. }
  25655. },
  25656. tongue: {
  25657. height: math.unit(8, "feet"),
  25658. name: "Tongue",
  25659. image: {
  25660. source: "./media/characters/erza-bear/tongue.svg"
  25661. }
  25662. },
  25663. dick: {
  25664. height: math.unit(10.5, "feet"),
  25665. name: "Dick",
  25666. image: {
  25667. source: "./media/characters/erza-bear/dick.svg"
  25668. }
  25669. },
  25670. dickVertical: {
  25671. height: math.unit(16.9, "feet"),
  25672. name: "Dick (Vertical)",
  25673. image: {
  25674. source: "./media/characters/erza-bear/dick-vertical.svg"
  25675. }
  25676. },
  25677. },
  25678. [
  25679. {
  25680. name: "Macro",
  25681. height: math.unit(100, "feet"),
  25682. default: true
  25683. },
  25684. ]
  25685. ))
  25686. characterMakers.push(() => makeCharacter(
  25687. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25688. {
  25689. front: {
  25690. height: math.unit(172, "cm"),
  25691. weight: math.unit(73, "kg"),
  25692. name: "Front",
  25693. image: {
  25694. source: "./media/characters/violet-flor/front.svg",
  25695. extra: 1530 / 1442,
  25696. bottom: 61.9 / 1588.8
  25697. }
  25698. },
  25699. back: {
  25700. height: math.unit(180, "cm"),
  25701. weight: math.unit(73, "kg"),
  25702. name: "Back",
  25703. image: {
  25704. source: "./media/characters/violet-flor/back.svg",
  25705. extra: 1692 / 1630,
  25706. bottom: 20 / 1712
  25707. }
  25708. },
  25709. },
  25710. [
  25711. {
  25712. name: "Normal",
  25713. height: math.unit(172, "cm"),
  25714. default: true
  25715. },
  25716. ]
  25717. ))
  25718. characterMakers.push(() => makeCharacter(
  25719. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25720. {
  25721. front: {
  25722. height: math.unit(6, "feet"),
  25723. weight: math.unit(220, "lb"),
  25724. name: "Front",
  25725. image: {
  25726. source: "./media/characters/lynn-rhea/front.svg",
  25727. extra: 310 / 273
  25728. }
  25729. },
  25730. back: {
  25731. height: math.unit(6, "feet"),
  25732. weight: math.unit(220, "lb"),
  25733. name: "Back",
  25734. image: {
  25735. source: "./media/characters/lynn-rhea/back.svg",
  25736. extra: 310 / 273
  25737. }
  25738. },
  25739. dicks: {
  25740. height: math.unit(0.9, "feet"),
  25741. name: "Dicks",
  25742. image: {
  25743. source: "./media/characters/lynn-rhea/dicks.svg"
  25744. }
  25745. },
  25746. slit: {
  25747. height: math.unit(0.4, "feet"),
  25748. name: "Slit",
  25749. image: {
  25750. source: "./media/characters/lynn-rhea/slit.svg"
  25751. }
  25752. },
  25753. },
  25754. [
  25755. {
  25756. name: "Micro",
  25757. height: math.unit(1, "inch")
  25758. },
  25759. {
  25760. name: "Macro",
  25761. height: math.unit(60, "feet"),
  25762. default: true
  25763. },
  25764. {
  25765. name: "Megamacro",
  25766. height: math.unit(2, "miles")
  25767. },
  25768. {
  25769. name: "Gigamacro",
  25770. height: math.unit(3, "earths")
  25771. },
  25772. {
  25773. name: "Galactic",
  25774. height: math.unit(0.8, "galaxies")
  25775. },
  25776. ]
  25777. ))
  25778. characterMakers.push(() => makeCharacter(
  25779. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25780. {
  25781. front: {
  25782. height: math.unit(1600, "feet"),
  25783. weight: math.unit(85758785169, "kg"),
  25784. name: "Front",
  25785. image: {
  25786. source: "./media/characters/valathos/front.svg",
  25787. extra: 1451 / 1339
  25788. }
  25789. },
  25790. },
  25791. [
  25792. {
  25793. name: "Macro",
  25794. height: math.unit(1600, "feet"),
  25795. default: true
  25796. },
  25797. ]
  25798. ))
  25799. characterMakers.push(() => makeCharacter(
  25800. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25801. {
  25802. front: {
  25803. height: math.unit(7 + 5 / 12, "feet"),
  25804. weight: math.unit(300, "lb"),
  25805. name: "Front",
  25806. image: {
  25807. source: "./media/characters/azula/front.svg",
  25808. extra: 3208 / 2880,
  25809. bottom: 80.2 / 3277
  25810. }
  25811. },
  25812. back: {
  25813. height: math.unit(7 + 5 / 12, "feet"),
  25814. weight: math.unit(300, "lb"),
  25815. name: "Back",
  25816. image: {
  25817. source: "./media/characters/azula/back.svg",
  25818. extra: 3169 / 2822,
  25819. bottom: 150.6 / 3321
  25820. }
  25821. },
  25822. },
  25823. [
  25824. {
  25825. name: "Normal",
  25826. height: math.unit(7 + 5 / 12, "feet"),
  25827. default: true
  25828. },
  25829. {
  25830. name: "Big",
  25831. height: math.unit(20, "feet")
  25832. },
  25833. ]
  25834. ))
  25835. characterMakers.push(() => makeCharacter(
  25836. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25837. {
  25838. front: {
  25839. height: math.unit(5 + 1 / 12, "feet"),
  25840. weight: math.unit(110, "lb"),
  25841. name: "Front",
  25842. image: {
  25843. source: "./media/characters/rupert/front.svg",
  25844. extra: 1549 / 1495,
  25845. bottom: 54.2 / 1604.4
  25846. }
  25847. },
  25848. },
  25849. [
  25850. {
  25851. name: "Normal",
  25852. height: math.unit(5 + 1 / 12, "feet"),
  25853. default: true
  25854. },
  25855. ]
  25856. ))
  25857. characterMakers.push(() => makeCharacter(
  25858. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25859. {
  25860. front: {
  25861. height: math.unit(8 + 4 / 12, "feet"),
  25862. weight: math.unit(350, "lb"),
  25863. name: "Front",
  25864. image: {
  25865. source: "./media/characters/sheera-castellar/front.svg",
  25866. extra: 1957 / 1894,
  25867. bottom: 26.97 / 1975.017
  25868. }
  25869. },
  25870. side: {
  25871. height: math.unit(8 + 4 / 12, "feet"),
  25872. weight: math.unit(350, "lb"),
  25873. name: "Side",
  25874. image: {
  25875. source: "./media/characters/sheera-castellar/side.svg",
  25876. extra: 1957 / 1894
  25877. }
  25878. },
  25879. back: {
  25880. height: math.unit(8 + 4 / 12, "feet"),
  25881. weight: math.unit(350, "lb"),
  25882. name: "Back",
  25883. image: {
  25884. source: "./media/characters/sheera-castellar/back.svg",
  25885. extra: 1957 / 1894
  25886. }
  25887. },
  25888. angled: {
  25889. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25890. weight: math.unit(350, "lb"),
  25891. name: "Angled",
  25892. image: {
  25893. source: "./media/characters/sheera-castellar/angled.svg",
  25894. extra: 1807 / 1707,
  25895. bottom: 68 / 1875
  25896. }
  25897. },
  25898. genitals: {
  25899. height: math.unit(2.2, "feet"),
  25900. name: "Genitals",
  25901. image: {
  25902. source: "./media/characters/sheera-castellar/genitals.svg"
  25903. }
  25904. },
  25905. taur: {
  25906. height: math.unit(10 + 6/12, "feet"),
  25907. name: "Taur",
  25908. image: {
  25909. source: "./media/characters/sheera-castellar/taur.svg",
  25910. extra: 2017/1909,
  25911. bottom: 185/2202
  25912. }
  25913. },
  25914. },
  25915. [
  25916. {
  25917. name: "Normal",
  25918. height: math.unit(8 + 4 / 12, "feet")
  25919. },
  25920. {
  25921. name: "Macro",
  25922. height: math.unit(150, "feet"),
  25923. default: true
  25924. },
  25925. {
  25926. name: "Macro+",
  25927. height: math.unit(800, "feet")
  25928. },
  25929. ]
  25930. ))
  25931. characterMakers.push(() => makeCharacter(
  25932. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25933. {
  25934. front: {
  25935. height: math.unit(6, "feet"),
  25936. weight: math.unit(150, "lb"),
  25937. name: "Front",
  25938. image: {
  25939. source: "./media/characters/jaipur/front.svg",
  25940. extra: 3860 / 3731,
  25941. bottom: 287 / 4140
  25942. }
  25943. },
  25944. back: {
  25945. height: math.unit(6, "feet"),
  25946. weight: math.unit(150, "lb"),
  25947. name: "Back",
  25948. image: {
  25949. source: "./media/characters/jaipur/back.svg",
  25950. extra: 1637/1561,
  25951. bottom: 154/1791
  25952. }
  25953. },
  25954. },
  25955. [
  25956. {
  25957. name: "Normal",
  25958. height: math.unit(1.85, "meters"),
  25959. default: true
  25960. },
  25961. {
  25962. name: "Macro",
  25963. height: math.unit(150, "meters")
  25964. },
  25965. {
  25966. name: "Macro+",
  25967. height: math.unit(0.5, "miles")
  25968. },
  25969. {
  25970. name: "Macro++",
  25971. height: math.unit(2.5, "miles")
  25972. },
  25973. {
  25974. name: "Macro+++",
  25975. height: math.unit(12, "miles")
  25976. },
  25977. {
  25978. name: "Macro++++",
  25979. height: math.unit(120, "miles")
  25980. },
  25981. {
  25982. name: "Macro+++++",
  25983. height: math.unit(1200, "miles")
  25984. },
  25985. ]
  25986. ))
  25987. characterMakers.push(() => makeCharacter(
  25988. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25989. {
  25990. front: {
  25991. height: math.unit(6, "feet"),
  25992. weight: math.unit(150, "lb"),
  25993. name: "Front",
  25994. image: {
  25995. source: "./media/characters/sheila-wolf/front.svg",
  25996. extra: 1931 / 1808,
  25997. bottom: 29.5 / 1960
  25998. }
  25999. },
  26000. dick: {
  26001. height: math.unit(1.464, "feet"),
  26002. name: "Dick",
  26003. image: {
  26004. source: "./media/characters/sheila-wolf/dick.svg"
  26005. }
  26006. },
  26007. muzzle: {
  26008. height: math.unit(0.513, "feet"),
  26009. name: "Muzzle",
  26010. image: {
  26011. source: "./media/characters/sheila-wolf/muzzle.svg"
  26012. }
  26013. },
  26014. },
  26015. [
  26016. {
  26017. name: "Macro",
  26018. height: math.unit(70, "feet"),
  26019. default: true
  26020. },
  26021. ]
  26022. ))
  26023. characterMakers.push(() => makeCharacter(
  26024. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  26025. {
  26026. front: {
  26027. height: math.unit(32, "meters"),
  26028. weight: math.unit(300000, "kg"),
  26029. name: "Front",
  26030. image: {
  26031. source: "./media/characters/almor/front.svg",
  26032. extra: 1408 / 1322,
  26033. bottom: 94.6 / 1506.5
  26034. }
  26035. },
  26036. },
  26037. [
  26038. {
  26039. name: "Macro",
  26040. height: math.unit(32, "meters"),
  26041. default: true
  26042. },
  26043. ]
  26044. ))
  26045. characterMakers.push(() => makeCharacter(
  26046. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  26047. {
  26048. front: {
  26049. height: math.unit(7, "feet"),
  26050. weight: math.unit(200, "lb"),
  26051. name: "Front",
  26052. image: {
  26053. source: "./media/characters/silver/front.svg",
  26054. extra: 472.1 / 450.5,
  26055. bottom: 26.5 / 499.424
  26056. }
  26057. },
  26058. },
  26059. [
  26060. {
  26061. name: "Normal",
  26062. height: math.unit(7, "feet"),
  26063. default: true
  26064. },
  26065. {
  26066. name: "Macro",
  26067. height: math.unit(800, "feet")
  26068. },
  26069. {
  26070. name: "Megamacro",
  26071. height: math.unit(250, "miles")
  26072. },
  26073. ]
  26074. ))
  26075. characterMakers.push(() => makeCharacter(
  26076. { name: "Pliskin", species: ["cat"], 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/pliskin/front.svg",
  26084. extra: 1469 / 1359,
  26085. bottom: 70 / 1540
  26086. }
  26087. },
  26088. },
  26089. [
  26090. {
  26091. name: "Micro",
  26092. height: math.unit(3, "inches")
  26093. },
  26094. {
  26095. name: "Normal",
  26096. height: math.unit(5 + 11 / 12, "feet"),
  26097. default: true
  26098. },
  26099. {
  26100. name: "Macro",
  26101. height: math.unit(120, "feet")
  26102. },
  26103. ]
  26104. ))
  26105. characterMakers.push(() => makeCharacter(
  26106. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  26107. {
  26108. front: {
  26109. height: math.unit(6, "feet"),
  26110. weight: math.unit(150, "lb"),
  26111. name: "Front",
  26112. image: {
  26113. source: "./media/characters/sammy/front.svg",
  26114. extra: 1193 / 1089,
  26115. bottom: 30.5 / 1226
  26116. }
  26117. },
  26118. },
  26119. [
  26120. {
  26121. name: "Macro",
  26122. height: math.unit(1700, "feet"),
  26123. default: true
  26124. },
  26125. {
  26126. name: "Examacro",
  26127. height: math.unit(2.5e9, "lightyears")
  26128. },
  26129. ]
  26130. ))
  26131. characterMakers.push(() => makeCharacter(
  26132. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  26133. {
  26134. front: {
  26135. height: math.unit(21, "meters"),
  26136. weight: math.unit(12, "tonnes"),
  26137. name: "Front",
  26138. image: {
  26139. source: "./media/characters/kuru/front.svg",
  26140. extra: 4301 / 3785,
  26141. bottom: 371.3 / 4691
  26142. }
  26143. },
  26144. },
  26145. [
  26146. {
  26147. name: "Macro",
  26148. height: math.unit(21, "meters"),
  26149. default: true
  26150. },
  26151. ]
  26152. ))
  26153. characterMakers.push(() => makeCharacter(
  26154. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  26155. {
  26156. front: {
  26157. height: math.unit(23, "meters"),
  26158. weight: math.unit(12.2, "tonnes"),
  26159. name: "Front",
  26160. image: {
  26161. source: "./media/characters/rakka/front.svg",
  26162. extra: 4670 / 4169,
  26163. bottom: 301 / 4968.7
  26164. }
  26165. },
  26166. },
  26167. [
  26168. {
  26169. name: "Macro",
  26170. height: math.unit(23, "meters"),
  26171. default: true
  26172. },
  26173. ]
  26174. ))
  26175. characterMakers.push(() => makeCharacter(
  26176. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  26177. {
  26178. front: {
  26179. height: math.unit(6, "feet"),
  26180. weight: math.unit(150, "lb"),
  26181. name: "Front",
  26182. image: {
  26183. source: "./media/characters/rhys-feline/front.svg",
  26184. extra: 2488 / 2308,
  26185. bottom: 35.67 / 2519.19
  26186. }
  26187. },
  26188. },
  26189. [
  26190. {
  26191. name: "Really Small",
  26192. height: math.unit(1, "nm")
  26193. },
  26194. {
  26195. name: "Micro",
  26196. height: math.unit(4, "inches")
  26197. },
  26198. {
  26199. name: "Normal",
  26200. height: math.unit(4 + 10 / 12, "feet"),
  26201. default: true
  26202. },
  26203. {
  26204. name: "Macro",
  26205. height: math.unit(100, "feet")
  26206. },
  26207. {
  26208. name: "Megamacto",
  26209. height: math.unit(50, "miles")
  26210. },
  26211. ]
  26212. ))
  26213. characterMakers.push(() => makeCharacter(
  26214. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  26215. {
  26216. side: {
  26217. height: math.unit(30, "feet"),
  26218. weight: math.unit(35000, "kg"),
  26219. name: "Side",
  26220. image: {
  26221. source: "./media/characters/alydar/side.svg",
  26222. extra: 234 / 222,
  26223. bottom: 6.5 / 241
  26224. }
  26225. },
  26226. front: {
  26227. height: math.unit(30, "feet"),
  26228. weight: math.unit(35000, "kg"),
  26229. name: "Front",
  26230. image: {
  26231. source: "./media/characters/alydar/front.svg",
  26232. extra: 223.37 / 210.2,
  26233. bottom: 22.3 / 246.76
  26234. }
  26235. },
  26236. top: {
  26237. height: math.unit(64.54, "feet"),
  26238. weight: math.unit(35000, "kg"),
  26239. name: "Top",
  26240. image: {
  26241. source: "./media/characters/alydar/top.svg"
  26242. }
  26243. },
  26244. anthro: {
  26245. height: math.unit(30, "feet"),
  26246. weight: math.unit(9000, "kg"),
  26247. name: "Anthro",
  26248. image: {
  26249. source: "./media/characters/alydar/anthro.svg",
  26250. extra: 432 / 421,
  26251. bottom: 7.18 / 440
  26252. }
  26253. },
  26254. maw: {
  26255. height: math.unit(11.693, "feet"),
  26256. name: "Maw",
  26257. image: {
  26258. source: "./media/characters/alydar/maw.svg"
  26259. }
  26260. },
  26261. head: {
  26262. height: math.unit(11.693, "feet"),
  26263. name: "Head",
  26264. image: {
  26265. source: "./media/characters/alydar/head.svg"
  26266. }
  26267. },
  26268. headAlt: {
  26269. height: math.unit(12.861, "feet"),
  26270. name: "Head (Alt)",
  26271. image: {
  26272. source: "./media/characters/alydar/head-alt.svg"
  26273. }
  26274. },
  26275. wing: {
  26276. height: math.unit(20.712, "feet"),
  26277. name: "Wing",
  26278. image: {
  26279. source: "./media/characters/alydar/wing.svg"
  26280. }
  26281. },
  26282. wingFeather: {
  26283. height: math.unit(9.662, "feet"),
  26284. name: "Wing Feather",
  26285. image: {
  26286. source: "./media/characters/alydar/wing-feather.svg"
  26287. }
  26288. },
  26289. countourFeather: {
  26290. height: math.unit(4.154, "feet"),
  26291. name: "Contour Feather",
  26292. image: {
  26293. source: "./media/characters/alydar/contour-feather.svg"
  26294. }
  26295. },
  26296. },
  26297. [
  26298. {
  26299. name: "Diplomatic",
  26300. height: math.unit(13, "feet"),
  26301. default: true
  26302. },
  26303. {
  26304. name: "Small",
  26305. height: math.unit(30, "feet")
  26306. },
  26307. {
  26308. name: "Normal",
  26309. height: math.unit(95, "feet"),
  26310. default: true
  26311. },
  26312. {
  26313. name: "Large",
  26314. height: math.unit(285, "feet")
  26315. },
  26316. {
  26317. name: "Incomprehensible",
  26318. height: math.unit(450, "megameters")
  26319. },
  26320. ]
  26321. ))
  26322. characterMakers.push(() => makeCharacter(
  26323. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26324. {
  26325. side: {
  26326. height: math.unit(11, "feet"),
  26327. weight: math.unit(1750, "kg"),
  26328. name: "Side",
  26329. image: {
  26330. source: "./media/characters/selicia/side.svg",
  26331. extra: 440 / 396,
  26332. bottom: 24.8 / 465.979
  26333. }
  26334. },
  26335. maw: {
  26336. height: math.unit(4.665, "feet"),
  26337. name: "Maw",
  26338. image: {
  26339. source: "./media/characters/selicia/maw.svg"
  26340. }
  26341. },
  26342. },
  26343. [
  26344. {
  26345. name: "Normal",
  26346. height: math.unit(11, "feet"),
  26347. default: true
  26348. },
  26349. ]
  26350. ))
  26351. characterMakers.push(() => makeCharacter(
  26352. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26353. {
  26354. side: {
  26355. height: math.unit(2 + 6 / 12, "feet"),
  26356. weight: math.unit(30, "lb"),
  26357. name: "Side",
  26358. image: {
  26359. source: "./media/characters/layla/side.svg",
  26360. extra: 244 / 188,
  26361. bottom: 18.2 / 262.1
  26362. }
  26363. },
  26364. back: {
  26365. height: math.unit(2 + 6 / 12, "feet"),
  26366. weight: math.unit(30, "lb"),
  26367. name: "Back",
  26368. image: {
  26369. source: "./media/characters/layla/back.svg",
  26370. extra: 308 / 241.5,
  26371. bottom: 8.9 / 316.8
  26372. }
  26373. },
  26374. cumming: {
  26375. height: math.unit(2 + 6 / 12, "feet"),
  26376. weight: math.unit(30, "lb"),
  26377. name: "Cumming",
  26378. image: {
  26379. source: "./media/characters/layla/cumming.svg",
  26380. extra: 342 / 279,
  26381. bottom: 595 / 938
  26382. }
  26383. },
  26384. dickFlaccid: {
  26385. height: math.unit(2.595, "feet"),
  26386. name: "Flaccid Genitals",
  26387. image: {
  26388. source: "./media/characters/layla/dick-flaccid.svg"
  26389. }
  26390. },
  26391. dickErect: {
  26392. height: math.unit(2.359, "feet"),
  26393. name: "Erect Genitals",
  26394. image: {
  26395. source: "./media/characters/layla/dick-erect.svg"
  26396. }
  26397. },
  26398. dragon: {
  26399. height: math.unit(40, "feet"),
  26400. name: "Dragon",
  26401. image: {
  26402. source: "./media/characters/layla/dragon.svg",
  26403. extra: 610/535,
  26404. bottom: 367/977
  26405. }
  26406. },
  26407. taur: {
  26408. height: math.unit(30, "feet"),
  26409. name: "Taur",
  26410. image: {
  26411. source: "./media/characters/layla/taur.svg",
  26412. extra: 1268/1199,
  26413. bottom: 112/1380
  26414. }
  26415. },
  26416. },
  26417. [
  26418. {
  26419. name: "Micro",
  26420. height: math.unit(1, "inch")
  26421. },
  26422. {
  26423. name: "Small",
  26424. height: math.unit(1, "foot")
  26425. },
  26426. {
  26427. name: "Normal",
  26428. height: math.unit(2 + 6 / 12, "feet"),
  26429. default: true
  26430. },
  26431. {
  26432. name: "Macro",
  26433. height: math.unit(200, "feet")
  26434. },
  26435. {
  26436. name: "Megamacro",
  26437. height: math.unit(1000, "miles")
  26438. },
  26439. {
  26440. name: "Planetary",
  26441. height: math.unit(8000, "miles")
  26442. },
  26443. {
  26444. name: "True Layla",
  26445. height: math.unit(200000 * 7, "multiverses")
  26446. },
  26447. ]
  26448. ))
  26449. characterMakers.push(() => makeCharacter(
  26450. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26451. {
  26452. back: {
  26453. height: math.unit(10.5, "feet"),
  26454. weight: math.unit(800, "lb"),
  26455. name: "Back",
  26456. image: {
  26457. source: "./media/characters/knox/back.svg",
  26458. extra: 1486 / 1089,
  26459. bottom: 107 / 1601.4
  26460. }
  26461. },
  26462. side: {
  26463. height: math.unit(10.5, "feet"),
  26464. weight: math.unit(800, "lb"),
  26465. name: "Side",
  26466. image: {
  26467. source: "./media/characters/knox/side.svg",
  26468. extra: 244 / 218,
  26469. bottom: 14 / 260
  26470. }
  26471. },
  26472. },
  26473. [
  26474. {
  26475. name: "Compact",
  26476. height: math.unit(10.5, "feet"),
  26477. default: true
  26478. },
  26479. {
  26480. name: "Dynamax",
  26481. height: math.unit(210, "feet")
  26482. },
  26483. {
  26484. name: "Full Macro",
  26485. height: math.unit(850, "feet")
  26486. },
  26487. ]
  26488. ))
  26489. characterMakers.push(() => makeCharacter(
  26490. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26491. {
  26492. front: {
  26493. height: math.unit(28, "feet"),
  26494. weight: math.unit(10500, "lb"),
  26495. name: "Front",
  26496. image: {
  26497. source: "./media/characters/kayda/front.svg",
  26498. extra: 1536 / 1428,
  26499. bottom: 68.7 / 1603
  26500. }
  26501. },
  26502. back: {
  26503. height: math.unit(28, "feet"),
  26504. weight: math.unit(10500, "lb"),
  26505. name: "Back",
  26506. image: {
  26507. source: "./media/characters/kayda/back.svg",
  26508. extra: 1557 / 1464,
  26509. bottom: 39.5 / 1597.49
  26510. }
  26511. },
  26512. dick: {
  26513. height: math.unit(3.858, "feet"),
  26514. name: "Dick",
  26515. image: {
  26516. source: "./media/characters/kayda/dick.svg"
  26517. }
  26518. },
  26519. },
  26520. [
  26521. {
  26522. name: "Macro",
  26523. height: math.unit(28, "feet"),
  26524. default: true
  26525. },
  26526. ]
  26527. ))
  26528. characterMakers.push(() => makeCharacter(
  26529. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26530. {
  26531. front: {
  26532. height: math.unit(10 + 11 / 12, "feet"),
  26533. weight: math.unit(1400, "lb"),
  26534. name: "Front",
  26535. image: {
  26536. source: "./media/characters/brian/front.svg",
  26537. extra: 737 / 692,
  26538. bottom: 55.4 / 785
  26539. }
  26540. },
  26541. },
  26542. [
  26543. {
  26544. name: "Normal",
  26545. height: math.unit(10 + 11 / 12, "feet"),
  26546. default: true
  26547. },
  26548. ]
  26549. ))
  26550. characterMakers.push(() => makeCharacter(
  26551. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26552. {
  26553. front: {
  26554. height: math.unit(5 + 8 / 12, "feet"),
  26555. weight: math.unit(140, "lb"),
  26556. name: "Front",
  26557. image: {
  26558. source: "./media/characters/khemri/front.svg",
  26559. extra: 4780 / 4059,
  26560. bottom: 80.1 / 4859.25
  26561. }
  26562. },
  26563. },
  26564. [
  26565. {
  26566. name: "Micro",
  26567. height: math.unit(6, "inches")
  26568. },
  26569. {
  26570. name: "Normal",
  26571. height: math.unit(5 + 8 / 12, "feet"),
  26572. default: true
  26573. },
  26574. ]
  26575. ))
  26576. characterMakers.push(() => makeCharacter(
  26577. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26578. {
  26579. front: {
  26580. height: math.unit(13, "feet"),
  26581. weight: math.unit(1700, "lb"),
  26582. name: "Front",
  26583. image: {
  26584. source: "./media/characters/felix-braveheart/front.svg",
  26585. extra: 1222 / 1157,
  26586. bottom: 53.2 / 1280
  26587. }
  26588. },
  26589. back: {
  26590. height: math.unit(13, "feet"),
  26591. weight: math.unit(1700, "lb"),
  26592. name: "Back",
  26593. image: {
  26594. source: "./media/characters/felix-braveheart/back.svg",
  26595. extra: 1277 / 1203,
  26596. bottom: 50.2 / 1327
  26597. }
  26598. },
  26599. feral: {
  26600. height: math.unit(6, "feet"),
  26601. weight: math.unit(400, "lb"),
  26602. name: "Feral",
  26603. image: {
  26604. source: "./media/characters/felix-braveheart/feral.svg",
  26605. extra: 682 / 625,
  26606. bottom: 6.9 / 688
  26607. }
  26608. },
  26609. },
  26610. [
  26611. {
  26612. name: "Normal",
  26613. height: math.unit(13, "feet"),
  26614. default: true
  26615. },
  26616. ]
  26617. ))
  26618. characterMakers.push(() => makeCharacter(
  26619. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26620. {
  26621. side: {
  26622. height: math.unit(5 + 11 / 12, "feet"),
  26623. weight: math.unit(1400, "lb"),
  26624. name: "Side",
  26625. image: {
  26626. source: "./media/characters/shadow-blade/side.svg",
  26627. extra: 1726 / 1267,
  26628. bottom: 58.4 / 1785
  26629. }
  26630. },
  26631. },
  26632. [
  26633. {
  26634. name: "Normal",
  26635. height: math.unit(5 + 11 / 12, "feet"),
  26636. default: true
  26637. },
  26638. ]
  26639. ))
  26640. characterMakers.push(() => makeCharacter(
  26641. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26642. {
  26643. front: {
  26644. height: math.unit(1 + 6 / 12, "feet"),
  26645. weight: math.unit(25, "lb"),
  26646. name: "Front",
  26647. image: {
  26648. source: "./media/characters/karla-halldor/front.svg",
  26649. extra: 1459 / 1383,
  26650. bottom: 12 / 1472
  26651. }
  26652. },
  26653. },
  26654. [
  26655. {
  26656. name: "Normal",
  26657. height: math.unit(1 + 6 / 12, "feet"),
  26658. default: true
  26659. },
  26660. ]
  26661. ))
  26662. characterMakers.push(() => makeCharacter(
  26663. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26664. {
  26665. front: {
  26666. height: math.unit(6 + 2 / 12, "feet"),
  26667. weight: math.unit(160, "lb"),
  26668. name: "Front",
  26669. image: {
  26670. source: "./media/characters/ariam/front.svg",
  26671. extra: 1073/976,
  26672. bottom: 52/1125
  26673. }
  26674. },
  26675. back: {
  26676. height: math.unit(6 + 2/12, "feet"),
  26677. weight: math.unit(160, "lb"),
  26678. name: "Back",
  26679. image: {
  26680. source: "./media/characters/ariam/back.svg",
  26681. extra: 1103/1023,
  26682. bottom: 9/1112
  26683. }
  26684. },
  26685. dressed: {
  26686. height: math.unit(6 + 2/12, "feet"),
  26687. weight: math.unit(160, "lb"),
  26688. name: "Dressed",
  26689. image: {
  26690. source: "./media/characters/ariam/dressed.svg",
  26691. extra: 1099/1009,
  26692. bottom: 25/1124
  26693. }
  26694. },
  26695. squatting: {
  26696. height: math.unit(4.1, "feet"),
  26697. weight: math.unit(160, "lb"),
  26698. name: "Squatting",
  26699. image: {
  26700. source: "./media/characters/ariam/squatting.svg",
  26701. extra: 2617 / 2112,
  26702. bottom: 61.2 / 2681,
  26703. }
  26704. },
  26705. },
  26706. [
  26707. {
  26708. name: "Normal",
  26709. height: math.unit(6 + 2 / 12, "feet"),
  26710. default: true
  26711. },
  26712. {
  26713. name: "Normal+",
  26714. height: math.unit(4, "meters")
  26715. },
  26716. {
  26717. name: "Macro",
  26718. height: math.unit(50, "meters")
  26719. },
  26720. {
  26721. name: "Macro+",
  26722. height: math.unit(100, "meters")
  26723. },
  26724. {
  26725. name: "Megamacro",
  26726. height: math.unit(20, "km")
  26727. },
  26728. {
  26729. name: "Caretaker",
  26730. height: math.unit(444, "megameters")
  26731. },
  26732. ]
  26733. ))
  26734. characterMakers.push(() => makeCharacter(
  26735. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26736. {
  26737. front: {
  26738. height: math.unit(1.67, "meters"),
  26739. weight: math.unit(140, "lb"),
  26740. name: "Front",
  26741. image: {
  26742. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26743. extra: 438 / 410,
  26744. bottom: 0.75 / 439
  26745. }
  26746. },
  26747. },
  26748. [
  26749. {
  26750. name: "Shrunken",
  26751. height: math.unit(7.6, "cm")
  26752. },
  26753. {
  26754. name: "Human Scale",
  26755. height: math.unit(1.67, "meters")
  26756. },
  26757. {
  26758. name: "Wolxi Scale",
  26759. height: math.unit(36.7, "meters"),
  26760. default: true
  26761. },
  26762. ]
  26763. ))
  26764. characterMakers.push(() => makeCharacter(
  26765. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26766. {
  26767. front: {
  26768. height: math.unit(1.73, "meters"),
  26769. weight: math.unit(240, "lb"),
  26770. name: "Front",
  26771. image: {
  26772. source: "./media/characters/izue-two-mothers/front.svg",
  26773. extra: 469 / 437,
  26774. bottom: 1.24 / 470.6
  26775. }
  26776. },
  26777. },
  26778. [
  26779. {
  26780. name: "Shrunken",
  26781. height: math.unit(7.86, "cm")
  26782. },
  26783. {
  26784. name: "Human Scale",
  26785. height: math.unit(1.73, "meters")
  26786. },
  26787. {
  26788. name: "Wolxi Scale",
  26789. height: math.unit(38, "meters"),
  26790. default: true
  26791. },
  26792. ]
  26793. ))
  26794. characterMakers.push(() => makeCharacter(
  26795. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26796. {
  26797. front: {
  26798. height: math.unit(1.55, "meters"),
  26799. weight: math.unit(120, "lb"),
  26800. name: "Front",
  26801. image: {
  26802. source: "./media/characters/teeku-love-shack/front.svg",
  26803. extra: 387 / 362,
  26804. bottom: 1.51 / 388
  26805. }
  26806. },
  26807. },
  26808. [
  26809. {
  26810. name: "Shrunken",
  26811. height: math.unit(7, "cm")
  26812. },
  26813. {
  26814. name: "Human Scale",
  26815. height: math.unit(1.55, "meters")
  26816. },
  26817. {
  26818. name: "Wolxi Scale",
  26819. height: math.unit(34.1, "meters"),
  26820. default: true
  26821. },
  26822. ]
  26823. ))
  26824. characterMakers.push(() => makeCharacter(
  26825. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26826. {
  26827. front: {
  26828. height: math.unit(1.83, "meters"),
  26829. weight: math.unit(135, "lb"),
  26830. name: "Front",
  26831. image: {
  26832. source: "./media/characters/dejma-the-red/front.svg",
  26833. extra: 480 / 458,
  26834. bottom: 1.8 / 482
  26835. }
  26836. },
  26837. },
  26838. [
  26839. {
  26840. name: "Shrunken",
  26841. height: math.unit(8.3, "cm")
  26842. },
  26843. {
  26844. name: "Human Scale",
  26845. height: math.unit(1.83, "meters")
  26846. },
  26847. {
  26848. name: "Wolxi Scale",
  26849. height: math.unit(40, "meters"),
  26850. default: true
  26851. },
  26852. ]
  26853. ))
  26854. characterMakers.push(() => makeCharacter(
  26855. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26856. {
  26857. front: {
  26858. height: math.unit(1.78, "meters"),
  26859. weight: math.unit(65, "kg"),
  26860. name: "Front",
  26861. image: {
  26862. source: "./media/characters/aki/front.svg",
  26863. extra: 452 / 415
  26864. }
  26865. },
  26866. frontNsfw: {
  26867. height: math.unit(1.78, "meters"),
  26868. weight: math.unit(65, "kg"),
  26869. name: "Front (NSFW)",
  26870. image: {
  26871. source: "./media/characters/aki/front-nsfw.svg",
  26872. extra: 452 / 415
  26873. }
  26874. },
  26875. back: {
  26876. height: math.unit(1.78, "meters"),
  26877. weight: math.unit(65, "kg"),
  26878. name: "Back",
  26879. image: {
  26880. source: "./media/characters/aki/back.svg",
  26881. extra: 452 / 415
  26882. }
  26883. },
  26884. rump: {
  26885. height: math.unit(2.05, "feet"),
  26886. name: "Rump",
  26887. image: {
  26888. source: "./media/characters/aki/rump.svg"
  26889. }
  26890. },
  26891. dick: {
  26892. height: math.unit(0.95, "feet"),
  26893. name: "Dick",
  26894. image: {
  26895. source: "./media/characters/aki/dick.svg"
  26896. }
  26897. },
  26898. },
  26899. [
  26900. {
  26901. name: "Micro",
  26902. height: math.unit(15, "cm")
  26903. },
  26904. {
  26905. name: "Normal",
  26906. height: math.unit(178, "cm"),
  26907. default: true
  26908. },
  26909. {
  26910. name: "Macro",
  26911. height: math.unit(214, "m")
  26912. },
  26913. {
  26914. name: "Macro+",
  26915. height: math.unit(534, "m")
  26916. },
  26917. ]
  26918. ))
  26919. characterMakers.push(() => makeCharacter(
  26920. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26921. {
  26922. front: {
  26923. height: math.unit(5 + 5 / 12, "feet"),
  26924. weight: math.unit(120, "lb"),
  26925. name: "Front",
  26926. image: {
  26927. source: "./media/characters/ari/front.svg",
  26928. extra: 1550/1471,
  26929. bottom: 39/1589
  26930. }
  26931. },
  26932. },
  26933. [
  26934. {
  26935. name: "Normal",
  26936. height: math.unit(5 + 5 / 12, "feet")
  26937. },
  26938. {
  26939. name: "Macro",
  26940. height: math.unit(100, "feet"),
  26941. default: true
  26942. },
  26943. {
  26944. name: "Megamacro",
  26945. height: math.unit(100, "miles")
  26946. },
  26947. {
  26948. name: "Gigamacro",
  26949. height: math.unit(80000, "miles")
  26950. },
  26951. ]
  26952. ))
  26953. characterMakers.push(() => makeCharacter(
  26954. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26955. {
  26956. side: {
  26957. height: math.unit(9, "feet"),
  26958. weight: math.unit(400, "kg"),
  26959. name: "Side",
  26960. image: {
  26961. source: "./media/characters/bolt/side.svg",
  26962. extra: 1126 / 896,
  26963. bottom: 60 / 1187.3,
  26964. }
  26965. },
  26966. },
  26967. [
  26968. {
  26969. name: "Micro",
  26970. height: math.unit(5, "inches")
  26971. },
  26972. {
  26973. name: "Normal",
  26974. height: math.unit(9, "feet"),
  26975. default: true
  26976. },
  26977. {
  26978. name: "Macro",
  26979. height: math.unit(700, "feet")
  26980. },
  26981. {
  26982. name: "Max Size",
  26983. height: math.unit(1.52e22, "yottameters")
  26984. },
  26985. ]
  26986. ))
  26987. characterMakers.push(() => makeCharacter(
  26988. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26989. {
  26990. front: {
  26991. height: math.unit(4.3, "meters"),
  26992. weight: math.unit(3, "tons"),
  26993. name: "Front",
  26994. image: {
  26995. source: "./media/characters/draekon-sylviar/front.svg",
  26996. extra: 2072/1512,
  26997. bottom: 74/2146
  26998. }
  26999. },
  27000. back: {
  27001. height: math.unit(4.3, "meters"),
  27002. weight: math.unit(3, "tons"),
  27003. name: "Back",
  27004. image: {
  27005. source: "./media/characters/draekon-sylviar/back.svg",
  27006. extra: 1639/1483,
  27007. bottom: 41/1680
  27008. }
  27009. },
  27010. feral: {
  27011. height: math.unit(1.15, "meters"),
  27012. weight: math.unit(3, "tons"),
  27013. name: "Feral",
  27014. image: {
  27015. source: "./media/characters/draekon-sylviar/feral.svg",
  27016. extra: 1033/395,
  27017. bottom: 130/1163
  27018. }
  27019. },
  27020. maw: {
  27021. height: math.unit(1.3, "meters"),
  27022. name: "Maw",
  27023. image: {
  27024. source: "./media/characters/draekon-sylviar/maw.svg"
  27025. }
  27026. },
  27027. mawSeparated: {
  27028. height: math.unit(1.53, "meters"),
  27029. name: "Separated Maw",
  27030. image: {
  27031. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  27032. }
  27033. },
  27034. tail: {
  27035. height: math.unit(1.15, "meters"),
  27036. name: "Tail",
  27037. image: {
  27038. source: "./media/characters/draekon-sylviar/tail.svg"
  27039. }
  27040. },
  27041. tailDick: {
  27042. height: math.unit(1.15, "meters"),
  27043. name: "Tail (Dick)",
  27044. image: {
  27045. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  27046. }
  27047. },
  27048. tailDickSeparated: {
  27049. height: math.unit(1.19, "meters"),
  27050. name: "Tail (Separated Dick)",
  27051. image: {
  27052. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  27053. }
  27054. },
  27055. slit: {
  27056. height: math.unit(1, "meters"),
  27057. name: "Slit",
  27058. image: {
  27059. source: "./media/characters/draekon-sylviar/slit.svg"
  27060. }
  27061. },
  27062. dick: {
  27063. height: math.unit(1.15, "meters"),
  27064. name: "Dick",
  27065. image: {
  27066. source: "./media/characters/draekon-sylviar/dick.svg"
  27067. }
  27068. },
  27069. dickSeparated: {
  27070. height: math.unit(1.1, "meters"),
  27071. name: "Separated Dick",
  27072. image: {
  27073. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  27074. }
  27075. },
  27076. sheath: {
  27077. height: math.unit(1.15, "meters"),
  27078. name: "Sheath",
  27079. image: {
  27080. source: "./media/characters/draekon-sylviar/sheath.svg"
  27081. }
  27082. },
  27083. },
  27084. [
  27085. {
  27086. name: "Small",
  27087. height: math.unit(4.53 / 2, "meters"),
  27088. default: true
  27089. },
  27090. {
  27091. name: "Normal",
  27092. height: math.unit(4.53, "meters"),
  27093. default: true
  27094. },
  27095. {
  27096. name: "Large",
  27097. height: math.unit(4.53 * 2, "meters"),
  27098. },
  27099. ]
  27100. ))
  27101. characterMakers.push(() => makeCharacter(
  27102. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  27103. {
  27104. front: {
  27105. height: math.unit(6 + 2 / 12, "feet"),
  27106. weight: math.unit(180, "lb"),
  27107. name: "Front",
  27108. image: {
  27109. source: "./media/characters/brawler/front.svg",
  27110. extra: 3301 / 3027,
  27111. bottom: 138 / 3439
  27112. }
  27113. },
  27114. },
  27115. [
  27116. {
  27117. name: "Normal",
  27118. height: math.unit(6 + 2 / 12, "feet"),
  27119. default: true
  27120. },
  27121. ]
  27122. ))
  27123. characterMakers.push(() => makeCharacter(
  27124. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  27125. {
  27126. front: {
  27127. height: math.unit(11, "feet"),
  27128. weight: math.unit(1000, "lb"),
  27129. name: "Front",
  27130. image: {
  27131. source: "./media/characters/alex/front.svg",
  27132. bottom: 44.5 / 620
  27133. }
  27134. },
  27135. },
  27136. [
  27137. {
  27138. name: "Micro",
  27139. height: math.unit(5, "inches")
  27140. },
  27141. {
  27142. name: "Normal",
  27143. height: math.unit(11, "feet"),
  27144. default: true
  27145. },
  27146. {
  27147. name: "Macro",
  27148. height: math.unit(9.5e9, "feet")
  27149. },
  27150. {
  27151. name: "Max Size",
  27152. height: math.unit(1.4e283, "yottameters")
  27153. },
  27154. ]
  27155. ))
  27156. characterMakers.push(() => makeCharacter(
  27157. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  27158. {
  27159. female: {
  27160. height: math.unit(29.9, "m"),
  27161. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  27162. name: "Female",
  27163. image: {
  27164. source: "./media/characters/zenari/female.svg",
  27165. extra: 3281.6 / 3217,
  27166. bottom: 72.2 / 3353
  27167. }
  27168. },
  27169. male: {
  27170. height: math.unit(27.7, "m"),
  27171. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  27172. name: "Male",
  27173. image: {
  27174. source: "./media/characters/zenari/male.svg",
  27175. extra: 3008 / 2991,
  27176. bottom: 54.6 / 3069
  27177. }
  27178. },
  27179. },
  27180. [
  27181. {
  27182. name: "Macro",
  27183. height: math.unit(29.7, "meters"),
  27184. default: true
  27185. },
  27186. ]
  27187. ))
  27188. characterMakers.push(() => makeCharacter(
  27189. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  27190. {
  27191. female: {
  27192. height: math.unit(23.8, "m"),
  27193. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27194. name: "Female",
  27195. image: {
  27196. source: "./media/characters/mactarian/female.svg",
  27197. extra: 2662 / 2569,
  27198. bottom: 73 / 2736
  27199. }
  27200. },
  27201. male: {
  27202. height: math.unit(23.8, "m"),
  27203. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27204. name: "Male",
  27205. image: {
  27206. source: "./media/characters/mactarian/male.svg",
  27207. extra: 2673 / 2600,
  27208. bottom: 76 / 2750
  27209. }
  27210. },
  27211. },
  27212. [
  27213. {
  27214. name: "Macro",
  27215. height: math.unit(23.8, "meters"),
  27216. default: true
  27217. },
  27218. ]
  27219. ))
  27220. characterMakers.push(() => makeCharacter(
  27221. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  27222. {
  27223. female: {
  27224. height: math.unit(19.3, "m"),
  27225. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  27226. name: "Female",
  27227. image: {
  27228. source: "./media/characters/umok/female.svg",
  27229. extra: 2186 / 2078,
  27230. bottom: 87 / 2277
  27231. }
  27232. },
  27233. male: {
  27234. height: math.unit(19.5, "m"),
  27235. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  27236. name: "Male",
  27237. image: {
  27238. source: "./media/characters/umok/male.svg",
  27239. extra: 2233 / 2140,
  27240. bottom: 24.4 / 2258
  27241. }
  27242. },
  27243. },
  27244. [
  27245. {
  27246. name: "Macro",
  27247. height: math.unit(19.3, "meters"),
  27248. default: true
  27249. },
  27250. ]
  27251. ))
  27252. characterMakers.push(() => makeCharacter(
  27253. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  27254. {
  27255. female: {
  27256. height: math.unit(26.15, "m"),
  27257. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  27258. name: "Female",
  27259. image: {
  27260. source: "./media/characters/joraxian/female.svg",
  27261. extra: 2912 / 2824,
  27262. bottom: 36 / 2956
  27263. }
  27264. },
  27265. male: {
  27266. height: math.unit(25.4, "m"),
  27267. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  27268. name: "Male",
  27269. image: {
  27270. source: "./media/characters/joraxian/male.svg",
  27271. extra: 2877 / 2721,
  27272. bottom: 82 / 2967
  27273. }
  27274. },
  27275. },
  27276. [
  27277. {
  27278. name: "Macro",
  27279. height: math.unit(26.15, "meters"),
  27280. default: true
  27281. },
  27282. ]
  27283. ))
  27284. characterMakers.push(() => makeCharacter(
  27285. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  27286. {
  27287. female: {
  27288. height: math.unit(21.6, "m"),
  27289. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  27290. name: "Female",
  27291. image: {
  27292. source: "./media/characters/sthara/female.svg",
  27293. extra: 2516 / 2347,
  27294. bottom: 21.5 / 2537
  27295. }
  27296. },
  27297. male: {
  27298. height: math.unit(24, "m"),
  27299. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  27300. name: "Male",
  27301. image: {
  27302. source: "./media/characters/sthara/male.svg",
  27303. extra: 2732 / 2607,
  27304. bottom: 23 / 2732
  27305. }
  27306. },
  27307. },
  27308. [
  27309. {
  27310. name: "Macro",
  27311. height: math.unit(21.6, "meters"),
  27312. default: true
  27313. },
  27314. ]
  27315. ))
  27316. characterMakers.push(() => makeCharacter(
  27317. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27318. {
  27319. front: {
  27320. height: math.unit(6 + 4 / 12, "feet"),
  27321. weight: math.unit(175, "lb"),
  27322. name: "Front",
  27323. image: {
  27324. source: "./media/characters/luka-bryzant/front.svg",
  27325. extra: 311 / 289,
  27326. bottom: 4 / 315
  27327. }
  27328. },
  27329. back: {
  27330. height: math.unit(6 + 4 / 12, "feet"),
  27331. weight: math.unit(175, "lb"),
  27332. name: "Back",
  27333. image: {
  27334. source: "./media/characters/luka-bryzant/back.svg",
  27335. extra: 311 / 289,
  27336. bottom: 3.8 / 313.7
  27337. }
  27338. },
  27339. },
  27340. [
  27341. {
  27342. name: "Micro",
  27343. height: math.unit(10, "inches")
  27344. },
  27345. {
  27346. name: "Normal",
  27347. height: math.unit(6 + 4 / 12, "feet"),
  27348. default: true
  27349. },
  27350. {
  27351. name: "Large",
  27352. height: math.unit(12, "feet")
  27353. },
  27354. ]
  27355. ))
  27356. characterMakers.push(() => makeCharacter(
  27357. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27358. {
  27359. front: {
  27360. height: math.unit(5 + 7 / 12, "feet"),
  27361. weight: math.unit(185, "lb"),
  27362. name: "Front",
  27363. image: {
  27364. source: "./media/characters/aman-aquila/front.svg",
  27365. extra: 1013 / 976,
  27366. bottom: 45.6 / 1057
  27367. }
  27368. },
  27369. side: {
  27370. height: math.unit(5 + 7 / 12, "feet"),
  27371. weight: math.unit(185, "lb"),
  27372. name: "Side",
  27373. image: {
  27374. source: "./media/characters/aman-aquila/side.svg",
  27375. extra: 1054 / 1011,
  27376. bottom: 15 / 1070
  27377. }
  27378. },
  27379. back: {
  27380. height: math.unit(5 + 7 / 12, "feet"),
  27381. weight: math.unit(185, "lb"),
  27382. name: "Back",
  27383. image: {
  27384. source: "./media/characters/aman-aquila/back.svg",
  27385. extra: 1026 / 970,
  27386. bottom: 12 / 1039
  27387. }
  27388. },
  27389. head: {
  27390. height: math.unit(1.211, "feet"),
  27391. name: "Head",
  27392. image: {
  27393. source: "./media/characters/aman-aquila/head.svg",
  27394. }
  27395. },
  27396. },
  27397. [
  27398. {
  27399. name: "Minimicro",
  27400. height: math.unit(0.057, "inches")
  27401. },
  27402. {
  27403. name: "Micro",
  27404. height: math.unit(7, "inches")
  27405. },
  27406. {
  27407. name: "Mini",
  27408. height: math.unit(3 + 7 / 12, "feet")
  27409. },
  27410. {
  27411. name: "Normal",
  27412. height: math.unit(5 + 7 / 12, "feet"),
  27413. default: true
  27414. },
  27415. {
  27416. name: "Macro",
  27417. height: math.unit(157 + 7 / 12, "feet")
  27418. },
  27419. {
  27420. name: "Megamacro",
  27421. height: math.unit(1557 + 7 / 12, "feet")
  27422. },
  27423. {
  27424. name: "Gigamacro",
  27425. height: math.unit(15557 + 7 / 12, "feet")
  27426. },
  27427. ]
  27428. ))
  27429. characterMakers.push(() => makeCharacter(
  27430. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27431. {
  27432. front: {
  27433. height: math.unit(3 + 2 / 12, "inches"),
  27434. weight: math.unit(0.3, "ounces"),
  27435. name: "Front",
  27436. image: {
  27437. source: "./media/characters/hiphae/front.svg",
  27438. extra: 1931 / 1683,
  27439. bottom: 24 / 1955
  27440. }
  27441. },
  27442. },
  27443. [
  27444. {
  27445. name: "Normal",
  27446. height: math.unit(3 + 1 / 2, "inches"),
  27447. default: true
  27448. },
  27449. ]
  27450. ))
  27451. characterMakers.push(() => makeCharacter(
  27452. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27453. {
  27454. front: {
  27455. height: math.unit(5 + 10 / 12, "feet"),
  27456. weight: math.unit(165, "lb"),
  27457. name: "Front",
  27458. image: {
  27459. source: "./media/characters/nicky/front.svg",
  27460. extra: 3144 / 2886,
  27461. bottom: 45.6 / 3192
  27462. }
  27463. },
  27464. back: {
  27465. height: math.unit(5 + 10 / 12, "feet"),
  27466. weight: math.unit(165, "lb"),
  27467. name: "Back",
  27468. image: {
  27469. source: "./media/characters/nicky/back.svg",
  27470. extra: 3055 / 2804,
  27471. bottom: 28.4 / 3087
  27472. }
  27473. },
  27474. frontclothed: {
  27475. height: math.unit(5 + 10 / 12, "feet"),
  27476. weight: math.unit(165, "lb"),
  27477. name: "Front-clothed",
  27478. image: {
  27479. source: "./media/characters/nicky/front-clothed.svg",
  27480. extra: 3184.9 / 2926.9,
  27481. bottom: 86.5 / 3239.9
  27482. }
  27483. },
  27484. foot: {
  27485. height: math.unit(1.16, "feet"),
  27486. name: "Foot",
  27487. image: {
  27488. source: "./media/characters/nicky/foot.svg"
  27489. }
  27490. },
  27491. feet: {
  27492. height: math.unit(1.34, "feet"),
  27493. name: "Feet",
  27494. image: {
  27495. source: "./media/characters/nicky/feet.svg"
  27496. }
  27497. },
  27498. maw: {
  27499. height: math.unit(0.9, "feet"),
  27500. name: "Maw",
  27501. image: {
  27502. source: "./media/characters/nicky/maw.svg"
  27503. }
  27504. },
  27505. },
  27506. [
  27507. {
  27508. name: "Normal",
  27509. height: math.unit(5 + 10 / 12, "feet"),
  27510. default: true
  27511. },
  27512. {
  27513. name: "Macro",
  27514. height: math.unit(60, "feet")
  27515. },
  27516. {
  27517. name: "Megamacro",
  27518. height: math.unit(1, "mile")
  27519. },
  27520. ]
  27521. ))
  27522. characterMakers.push(() => makeCharacter(
  27523. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27524. {
  27525. side: {
  27526. height: math.unit(10, "feet"),
  27527. weight: math.unit(600, "lb"),
  27528. name: "Side",
  27529. image: {
  27530. source: "./media/characters/blair/side.svg",
  27531. bottom: 16.6 / 475,
  27532. extra: 458 / 431
  27533. }
  27534. },
  27535. },
  27536. [
  27537. {
  27538. name: "Micro",
  27539. height: math.unit(8, "inches")
  27540. },
  27541. {
  27542. name: "Normal",
  27543. height: math.unit(10, "feet"),
  27544. default: true
  27545. },
  27546. {
  27547. name: "Macro",
  27548. height: math.unit(180, "feet")
  27549. },
  27550. ]
  27551. ))
  27552. characterMakers.push(() => makeCharacter(
  27553. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27554. {
  27555. front: {
  27556. height: math.unit(5 + 4 / 12, "feet"),
  27557. weight: math.unit(125, "lb"),
  27558. name: "Front",
  27559. image: {
  27560. source: "./media/characters/fisher/front.svg",
  27561. extra: 444 / 390,
  27562. bottom: 2 / 444.8
  27563. }
  27564. },
  27565. },
  27566. [
  27567. {
  27568. name: "Micro",
  27569. height: math.unit(4, "inches")
  27570. },
  27571. {
  27572. name: "Normal",
  27573. height: math.unit(5 + 4 / 12, "feet"),
  27574. default: true
  27575. },
  27576. {
  27577. name: "Macro",
  27578. height: math.unit(100, "feet")
  27579. },
  27580. ]
  27581. ))
  27582. characterMakers.push(() => makeCharacter(
  27583. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27584. {
  27585. front: {
  27586. height: math.unit(6.71, "feet"),
  27587. weight: math.unit(200, "lb"),
  27588. preyCapacity: math.unit(1000000, "people"),
  27589. name: "Front",
  27590. image: {
  27591. source: "./media/characters/gliss/front.svg",
  27592. extra: 2347 / 2231,
  27593. bottom: 113 / 2462
  27594. }
  27595. },
  27596. hammerspaceSize: {
  27597. height: math.unit(6.71 * 717, "feet"),
  27598. weight: math.unit(200, "lb"),
  27599. preyCapacity: math.unit(1000000, "people"),
  27600. name: "Hammerspace Size",
  27601. image: {
  27602. source: "./media/characters/gliss/front.svg",
  27603. extra: 2347 / 2231,
  27604. bottom: 113 / 2462
  27605. }
  27606. },
  27607. },
  27608. [
  27609. {
  27610. name: "Normal",
  27611. height: math.unit(6.71, "feet"),
  27612. default: true
  27613. },
  27614. ]
  27615. ))
  27616. characterMakers.push(() => makeCharacter(
  27617. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27618. {
  27619. side: {
  27620. height: math.unit(1.44, "m"),
  27621. weight: math.unit(80, "kg"),
  27622. name: "Side",
  27623. image: {
  27624. source: "./media/characters/dune-anderson/side.svg",
  27625. bottom: 49 / 1426
  27626. }
  27627. },
  27628. },
  27629. [
  27630. {
  27631. name: "Wolf-sized",
  27632. height: math.unit(1.44, "meters")
  27633. },
  27634. {
  27635. name: "Normal",
  27636. height: math.unit(5.05, "meters"),
  27637. default: true
  27638. },
  27639. {
  27640. name: "Big",
  27641. height: math.unit(14.4, "meters")
  27642. },
  27643. {
  27644. name: "Huge",
  27645. height: math.unit(144, "meters")
  27646. },
  27647. ]
  27648. ))
  27649. characterMakers.push(() => makeCharacter(
  27650. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27651. {
  27652. front: {
  27653. height: math.unit(6, "feet"),
  27654. weight: math.unit(220, "lb"),
  27655. name: "Front",
  27656. image: {
  27657. source: "./media/characters/hind/front.svg",
  27658. extra: 1912/1787,
  27659. bottom: 52/1964
  27660. }
  27661. },
  27662. back: {
  27663. height: math.unit(6, "feet"),
  27664. weight: math.unit(220, "lb"),
  27665. name: "Back",
  27666. image: {
  27667. source: "./media/characters/hind/back.svg",
  27668. extra: 1901/1794,
  27669. bottom: 26/1927
  27670. }
  27671. },
  27672. },
  27673. [
  27674. {
  27675. name: "Normal",
  27676. height: math.unit(6, "feet"),
  27677. default: true
  27678. },
  27679. ]
  27680. ))
  27681. characterMakers.push(() => makeCharacter(
  27682. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27683. {
  27684. front: {
  27685. height: math.unit(2.1, "meters"),
  27686. weight: math.unit(150, "lb"),
  27687. name: "Front",
  27688. image: {
  27689. source: "./media/characters/tharquench-sizestealer/front.svg",
  27690. extra: 1605/1470,
  27691. bottom: 36/1641
  27692. }
  27693. },
  27694. frontAlt: {
  27695. height: math.unit(2.1, "meters"),
  27696. weight: math.unit(150, "lb"),
  27697. name: "Front (Alt)",
  27698. image: {
  27699. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27700. extra: 2318 / 2063,
  27701. bottom: 93.4 / 2410
  27702. }
  27703. },
  27704. },
  27705. [
  27706. {
  27707. name: "Nano",
  27708. height: math.unit(1, "mm")
  27709. },
  27710. {
  27711. name: "Micro",
  27712. height: math.unit(1, "cm")
  27713. },
  27714. {
  27715. name: "Normal",
  27716. height: math.unit(2.1, "meters"),
  27717. default: true
  27718. },
  27719. ]
  27720. ))
  27721. characterMakers.push(() => makeCharacter(
  27722. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27723. {
  27724. front: {
  27725. height: math.unit(7 + 5 / 12, "feet"),
  27726. weight: math.unit(357, "lb"),
  27727. name: "Front",
  27728. image: {
  27729. source: "./media/characters/solex-draconov/front.svg",
  27730. extra: 1993 / 1865,
  27731. bottom: 117 / 2111
  27732. }
  27733. },
  27734. },
  27735. [
  27736. {
  27737. name: "Natural Height",
  27738. height: math.unit(7 + 5 / 12, "feet"),
  27739. default: true
  27740. },
  27741. {
  27742. name: "Macro",
  27743. height: math.unit(350, "feet")
  27744. },
  27745. {
  27746. name: "Macro+",
  27747. height: math.unit(1000, "feet")
  27748. },
  27749. {
  27750. name: "Megamacro",
  27751. height: math.unit(20, "km")
  27752. },
  27753. {
  27754. name: "Megamacro+",
  27755. height: math.unit(1000, "km")
  27756. },
  27757. {
  27758. name: "Gigamacro",
  27759. height: math.unit(2.5, "Gm")
  27760. },
  27761. {
  27762. name: "Teramacro",
  27763. height: math.unit(15, "Tm")
  27764. },
  27765. {
  27766. name: "Galactic",
  27767. height: math.unit(30, "Zm")
  27768. },
  27769. {
  27770. name: "Universal",
  27771. height: math.unit(21000, "Ym")
  27772. },
  27773. {
  27774. name: "Omniversal",
  27775. height: math.unit(9.861e50, "Ym")
  27776. },
  27777. {
  27778. name: "Existential",
  27779. height: math.unit(1e300, "meters")
  27780. },
  27781. ]
  27782. ))
  27783. characterMakers.push(() => makeCharacter(
  27784. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27785. {
  27786. side: {
  27787. height: math.unit(25, "feet"),
  27788. weight: math.unit(90000, "lb"),
  27789. name: "Side",
  27790. image: {
  27791. source: "./media/characters/mandarax/side.svg",
  27792. extra: 614 / 332,
  27793. bottom: 55 / 630
  27794. }
  27795. },
  27796. lounging: {
  27797. height: math.unit(15.4, "feet"),
  27798. weight: math.unit(90000, "lb"),
  27799. name: "Lounging",
  27800. image: {
  27801. source: "./media/characters/mandarax/lounging.svg",
  27802. extra: 817/609,
  27803. bottom: 685/1502
  27804. }
  27805. },
  27806. head: {
  27807. height: math.unit(11.4, "feet"),
  27808. name: "Head",
  27809. image: {
  27810. source: "./media/characters/mandarax/head.svg"
  27811. }
  27812. },
  27813. belly: {
  27814. height: math.unit(33, "feet"),
  27815. name: "Belly",
  27816. preyCapacity: math.unit(500, "people"),
  27817. image: {
  27818. source: "./media/characters/mandarax/belly.svg"
  27819. }
  27820. },
  27821. dick: {
  27822. height: math.unit(8.46, "feet"),
  27823. name: "Dick",
  27824. image: {
  27825. source: "./media/characters/mandarax/dick.svg"
  27826. }
  27827. },
  27828. top: {
  27829. height: math.unit(28, "meters"),
  27830. name: "Top",
  27831. image: {
  27832. source: "./media/characters/mandarax/top.svg"
  27833. }
  27834. },
  27835. },
  27836. [
  27837. {
  27838. name: "Normal",
  27839. height: math.unit(25, "feet"),
  27840. default: true
  27841. },
  27842. ]
  27843. ))
  27844. characterMakers.push(() => makeCharacter(
  27845. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27846. {
  27847. front: {
  27848. height: math.unit(5, "feet"),
  27849. weight: math.unit(90, "lb"),
  27850. name: "Front",
  27851. image: {
  27852. source: "./media/characters/pixil/front.svg",
  27853. extra: 2000 / 1618,
  27854. bottom: 12.3 / 2011
  27855. }
  27856. },
  27857. },
  27858. [
  27859. {
  27860. name: "Normal",
  27861. height: math.unit(5, "feet"),
  27862. default: true
  27863. },
  27864. {
  27865. name: "Megamacro",
  27866. height: math.unit(10, "miles"),
  27867. },
  27868. ]
  27869. ))
  27870. characterMakers.push(() => makeCharacter(
  27871. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27872. {
  27873. front: {
  27874. height: math.unit(7 + 2 / 12, "feet"),
  27875. weight: math.unit(200, "lb"),
  27876. name: "Front",
  27877. image: {
  27878. source: "./media/characters/angel/front.svg",
  27879. extra: 1946/1840,
  27880. bottom: 30/1976
  27881. }
  27882. },
  27883. },
  27884. [
  27885. {
  27886. name: "Normal",
  27887. height: math.unit(7 + 2 / 12, "feet"),
  27888. default: true
  27889. },
  27890. {
  27891. name: "Macro",
  27892. height: math.unit(1000, "feet")
  27893. },
  27894. {
  27895. name: "Megamacro",
  27896. height: math.unit(2, "miles")
  27897. },
  27898. {
  27899. name: "Gigamacro",
  27900. height: math.unit(20, "earths")
  27901. },
  27902. ]
  27903. ))
  27904. characterMakers.push(() => makeCharacter(
  27905. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27906. {
  27907. front: {
  27908. height: math.unit(5, "feet"),
  27909. weight: math.unit(180, "lb"),
  27910. name: "Front",
  27911. image: {
  27912. source: "./media/characters/mekana/front.svg",
  27913. extra: 1671 / 1605,
  27914. bottom: 3.5 / 1691
  27915. }
  27916. },
  27917. side: {
  27918. height: math.unit(5, "feet"),
  27919. weight: math.unit(180, "lb"),
  27920. name: "Side",
  27921. image: {
  27922. source: "./media/characters/mekana/side.svg",
  27923. extra: 1671 / 1605,
  27924. bottom: 3.5 / 1691
  27925. }
  27926. },
  27927. back: {
  27928. height: math.unit(5, "feet"),
  27929. weight: math.unit(180, "lb"),
  27930. name: "Back",
  27931. image: {
  27932. source: "./media/characters/mekana/back.svg",
  27933. extra: 1671 / 1605,
  27934. bottom: 3.5 / 1691
  27935. }
  27936. },
  27937. },
  27938. [
  27939. {
  27940. name: "Normal",
  27941. height: math.unit(5, "feet"),
  27942. default: true
  27943. },
  27944. ]
  27945. ))
  27946. characterMakers.push(() => makeCharacter(
  27947. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27948. {
  27949. front: {
  27950. height: math.unit(4 + 6 / 12, "feet"),
  27951. weight: math.unit(80, "lb"),
  27952. name: "Front",
  27953. image: {
  27954. source: "./media/characters/pixie/front.svg",
  27955. extra: 1924 / 1825,
  27956. bottom: 22.4 / 1946
  27957. }
  27958. },
  27959. },
  27960. [
  27961. {
  27962. name: "Normal",
  27963. height: math.unit(4 + 6 / 12, "feet"),
  27964. default: true
  27965. },
  27966. {
  27967. name: "Macro",
  27968. height: math.unit(40, "feet")
  27969. },
  27970. ]
  27971. ))
  27972. characterMakers.push(() => makeCharacter(
  27973. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27974. {
  27975. front: {
  27976. height: math.unit(2.1, "meters"),
  27977. weight: math.unit(200, "lb"),
  27978. name: "Front",
  27979. image: {
  27980. source: "./media/characters/the-lascivious/front.svg",
  27981. extra: 1 / 0.893,
  27982. bottom: 3.5 / 573.7
  27983. }
  27984. },
  27985. },
  27986. [
  27987. {
  27988. name: "Human Scale",
  27989. height: math.unit(2.1, "meters")
  27990. },
  27991. {
  27992. name: "Wolxi Scale",
  27993. height: math.unit(46.2, "m"),
  27994. default: true
  27995. },
  27996. {
  27997. name: "Boinker of Buildings",
  27998. height: math.unit(10, "km")
  27999. },
  28000. {
  28001. name: "Shagger of Skyscrapers",
  28002. height: math.unit(40, "km")
  28003. },
  28004. {
  28005. name: "Banger of Boroughs",
  28006. height: math.unit(4000, "km")
  28007. },
  28008. {
  28009. name: "Screwer of States",
  28010. height: math.unit(100000, "km")
  28011. },
  28012. {
  28013. name: "Pounder of Planets",
  28014. height: math.unit(2000000, "km")
  28015. },
  28016. ]
  28017. ))
  28018. characterMakers.push(() => makeCharacter(
  28019. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  28020. {
  28021. front: {
  28022. height: math.unit(6, "feet"),
  28023. weight: math.unit(150, "lb"),
  28024. name: "Front",
  28025. image: {
  28026. source: "./media/characters/aj/front.svg",
  28027. extra: 2039 / 1562,
  28028. bottom: 40 / 2079
  28029. }
  28030. },
  28031. },
  28032. [
  28033. {
  28034. name: "Normal",
  28035. height: math.unit(11 + 6 / 12, "feet"),
  28036. default: true
  28037. },
  28038. {
  28039. name: "Megamacro",
  28040. height: math.unit(60, "megameters")
  28041. },
  28042. ]
  28043. ))
  28044. characterMakers.push(() => makeCharacter(
  28045. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  28046. {
  28047. side: {
  28048. height: math.unit(31 + 8 / 12, "feet"),
  28049. weight: math.unit(75000, "kg"),
  28050. name: "Side",
  28051. image: {
  28052. source: "./media/characters/koros/side.svg",
  28053. extra: 1442 / 1297,
  28054. bottom: 122.7 / 1562
  28055. }
  28056. },
  28057. dicksKingsCrown: {
  28058. height: math.unit(6, "feet"),
  28059. name: "Dicks (King's Crown)",
  28060. image: {
  28061. source: "./media/characters/koros/dicks-kings-crown.svg"
  28062. }
  28063. },
  28064. dicksTailSet: {
  28065. height: math.unit(3, "feet"),
  28066. name: "Dicks (Tail Set)",
  28067. image: {
  28068. source: "./media/characters/koros/dicks-tail-set.svg"
  28069. }
  28070. },
  28071. dickCumming: {
  28072. height: math.unit(7.98, "feet"),
  28073. name: "Dick (Cumming)",
  28074. image: {
  28075. source: "./media/characters/koros/dick-cumming.svg"
  28076. }
  28077. },
  28078. dicksBack: {
  28079. height: math.unit(5.9, "feet"),
  28080. name: "Dicks (Back)",
  28081. image: {
  28082. source: "./media/characters/koros/dicks-back.svg"
  28083. }
  28084. },
  28085. dicksFront: {
  28086. height: math.unit(3.72, "feet"),
  28087. name: "Dicks (Front)",
  28088. image: {
  28089. source: "./media/characters/koros/dicks-front.svg"
  28090. }
  28091. },
  28092. dicksPeeking: {
  28093. height: math.unit(3.0, "feet"),
  28094. name: "Dicks (Peeking)",
  28095. image: {
  28096. source: "./media/characters/koros/dicks-peeking.svg"
  28097. }
  28098. },
  28099. eye: {
  28100. height: math.unit(1.7, "feet"),
  28101. name: "Eye",
  28102. image: {
  28103. source: "./media/characters/koros/eye.svg"
  28104. }
  28105. },
  28106. headFront: {
  28107. height: math.unit(11.69, "feet"),
  28108. name: "Head (Front)",
  28109. image: {
  28110. source: "./media/characters/koros/head-front.svg"
  28111. }
  28112. },
  28113. headSide: {
  28114. height: math.unit(14, "feet"),
  28115. name: "Head (Side)",
  28116. image: {
  28117. source: "./media/characters/koros/head-side.svg"
  28118. }
  28119. },
  28120. leg: {
  28121. height: math.unit(17, "feet"),
  28122. name: "Leg",
  28123. image: {
  28124. source: "./media/characters/koros/leg.svg"
  28125. }
  28126. },
  28127. mawSide: {
  28128. height: math.unit(12.8, "feet"),
  28129. name: "Maw (Side)",
  28130. image: {
  28131. source: "./media/characters/koros/maw-side.svg"
  28132. }
  28133. },
  28134. mawSpitting: {
  28135. height: math.unit(17, "feet"),
  28136. name: "Maw (Spitting)",
  28137. image: {
  28138. source: "./media/characters/koros/maw-spitting.svg"
  28139. }
  28140. },
  28141. slit: {
  28142. height: math.unit(2.8, "feet"),
  28143. name: "Slit",
  28144. image: {
  28145. source: "./media/characters/koros/slit.svg"
  28146. }
  28147. },
  28148. stomach: {
  28149. height: math.unit(6.8, "feet"),
  28150. preyCapacity: math.unit(20, "people"),
  28151. name: "Stomach",
  28152. image: {
  28153. source: "./media/characters/koros/stomach.svg"
  28154. }
  28155. },
  28156. wingspanBottom: {
  28157. height: math.unit(114, "feet"),
  28158. name: "Wingspan (Bottom)",
  28159. image: {
  28160. source: "./media/characters/koros/wingspan-bottom.svg"
  28161. }
  28162. },
  28163. wingspanTop: {
  28164. height: math.unit(104, "feet"),
  28165. name: "Wingspan (Top)",
  28166. image: {
  28167. source: "./media/characters/koros/wingspan-top.svg"
  28168. }
  28169. },
  28170. },
  28171. [
  28172. {
  28173. name: "Normal",
  28174. height: math.unit(31 + 8 / 12, "feet"),
  28175. default: true
  28176. },
  28177. ]
  28178. ))
  28179. characterMakers.push(() => makeCharacter(
  28180. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  28181. {
  28182. front: {
  28183. height: math.unit(18 + 5 / 12, "feet"),
  28184. weight: math.unit(3750, "kg"),
  28185. name: "Front",
  28186. image: {
  28187. source: "./media/characters/vexx/front.svg",
  28188. extra: 426 / 396,
  28189. bottom: 31.5 / 458
  28190. }
  28191. },
  28192. maw: {
  28193. height: math.unit(6, "feet"),
  28194. name: "Maw",
  28195. image: {
  28196. source: "./media/characters/vexx/maw.svg"
  28197. }
  28198. },
  28199. },
  28200. [
  28201. {
  28202. name: "Normal",
  28203. height: math.unit(18 + 5 / 12, "feet"),
  28204. default: true
  28205. },
  28206. ]
  28207. ))
  28208. characterMakers.push(() => makeCharacter(
  28209. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  28210. {
  28211. front: {
  28212. height: math.unit(17 + 6 / 12, "feet"),
  28213. weight: math.unit(150, "lb"),
  28214. name: "Front",
  28215. image: {
  28216. source: "./media/characters/baadra/front.svg",
  28217. extra: 1694/1553,
  28218. bottom: 179/1873
  28219. }
  28220. },
  28221. frontAlt: {
  28222. height: math.unit(17 + 6 / 12, "feet"),
  28223. weight: math.unit(150, "lb"),
  28224. name: "Front (Alt)",
  28225. image: {
  28226. source: "./media/characters/baadra/front-alt.svg",
  28227. extra: 3137 / 2890,
  28228. bottom: 168.4 / 3305
  28229. }
  28230. },
  28231. back: {
  28232. height: math.unit(17 + 6 / 12, "feet"),
  28233. weight: math.unit(150, "lb"),
  28234. name: "Back",
  28235. image: {
  28236. source: "./media/characters/baadra/back.svg",
  28237. extra: 3142 / 2890,
  28238. bottom: 220 / 3371
  28239. }
  28240. },
  28241. head: {
  28242. height: math.unit(5.45, "feet"),
  28243. name: "Head",
  28244. image: {
  28245. source: "./media/characters/baadra/head.svg"
  28246. }
  28247. },
  28248. headAngry: {
  28249. height: math.unit(4.95, "feet"),
  28250. name: "Head (Angry)",
  28251. image: {
  28252. source: "./media/characters/baadra/head-angry.svg"
  28253. }
  28254. },
  28255. headOpen: {
  28256. height: math.unit(6, "feet"),
  28257. name: "Head (Open)",
  28258. image: {
  28259. source: "./media/characters/baadra/head-open.svg"
  28260. }
  28261. },
  28262. },
  28263. [
  28264. {
  28265. name: "Normal",
  28266. height: math.unit(17 + 6 / 12, "feet"),
  28267. default: true
  28268. },
  28269. ]
  28270. ))
  28271. characterMakers.push(() => makeCharacter(
  28272. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  28273. {
  28274. front: {
  28275. height: math.unit(7 + 3 / 12, "feet"),
  28276. weight: math.unit(180, "lb"),
  28277. name: "Front",
  28278. image: {
  28279. source: "./media/characters/juri/front.svg",
  28280. extra: 1401 / 1237,
  28281. bottom: 18.5 / 1418
  28282. }
  28283. },
  28284. side: {
  28285. height: math.unit(7 + 3 / 12, "feet"),
  28286. weight: math.unit(180, "lb"),
  28287. name: "Side",
  28288. image: {
  28289. source: "./media/characters/juri/side.svg",
  28290. extra: 1424 / 1242,
  28291. bottom: 18.5 / 1447
  28292. }
  28293. },
  28294. sitting: {
  28295. height: math.unit(6, "feet"),
  28296. weight: math.unit(180, "lb"),
  28297. name: "Sitting",
  28298. image: {
  28299. source: "./media/characters/juri/sitting.svg",
  28300. extra: 1270 / 1143,
  28301. bottom: 100 / 1343
  28302. }
  28303. },
  28304. back: {
  28305. height: math.unit(7 + 3 / 12, "feet"),
  28306. weight: math.unit(180, "lb"),
  28307. name: "Back",
  28308. image: {
  28309. source: "./media/characters/juri/back.svg",
  28310. extra: 1377 / 1240,
  28311. bottom: 23.7 / 1405
  28312. }
  28313. },
  28314. maw: {
  28315. height: math.unit(2.8, "feet"),
  28316. name: "Maw",
  28317. image: {
  28318. source: "./media/characters/juri/maw.svg"
  28319. }
  28320. },
  28321. stomach: {
  28322. height: math.unit(0.89, "feet"),
  28323. preyCapacity: math.unit(4, "liters"),
  28324. name: "Stomach",
  28325. image: {
  28326. source: "./media/characters/juri/stomach.svg"
  28327. }
  28328. },
  28329. },
  28330. [
  28331. {
  28332. name: "Normal",
  28333. height: math.unit(7 + 3 / 12, "feet"),
  28334. default: true
  28335. },
  28336. ]
  28337. ))
  28338. characterMakers.push(() => makeCharacter(
  28339. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28340. {
  28341. fox: {
  28342. height: math.unit(5 + 6 / 12, "feet"),
  28343. weight: math.unit(140, "lb"),
  28344. name: "Fox",
  28345. image: {
  28346. source: "./media/characters/maxene-sita/fox.svg",
  28347. extra: 146 / 138,
  28348. bottom: 2.1 / 148.19
  28349. }
  28350. },
  28351. foxLaying: {
  28352. height: math.unit(1.70, "feet"),
  28353. weight: math.unit(140, "lb"),
  28354. name: "Fox (Laying)",
  28355. image: {
  28356. source: "./media/characters/maxene-sita/fox-laying.svg",
  28357. extra: 910 / 572,
  28358. bottom: 71 / 981
  28359. }
  28360. },
  28361. kitsune: {
  28362. height: math.unit(10, "feet"),
  28363. weight: math.unit(800, "lb"),
  28364. name: "Kitsune",
  28365. image: {
  28366. source: "./media/characters/maxene-sita/kitsune.svg",
  28367. extra: 185 / 176,
  28368. bottom: 4.7 / 189.9
  28369. }
  28370. },
  28371. hellhound: {
  28372. height: math.unit(10, "feet"),
  28373. weight: math.unit(700, "lb"),
  28374. name: "Hellhound",
  28375. image: {
  28376. source: "./media/characters/maxene-sita/hellhound.svg",
  28377. extra: 1600 / 1545,
  28378. bottom: 81 / 1681
  28379. }
  28380. },
  28381. },
  28382. [
  28383. {
  28384. name: "Normal",
  28385. height: math.unit(5 + 6 / 12, "feet"),
  28386. default: true
  28387. },
  28388. ]
  28389. ))
  28390. characterMakers.push(() => makeCharacter(
  28391. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28392. {
  28393. front: {
  28394. height: math.unit(3 + 4 / 12, "feet"),
  28395. weight: math.unit(70, "lb"),
  28396. name: "Front",
  28397. image: {
  28398. source: "./media/characters/maia/front.svg",
  28399. extra: 227 / 219.5,
  28400. bottom: 40 / 267
  28401. }
  28402. },
  28403. back: {
  28404. height: math.unit(3 + 4 / 12, "feet"),
  28405. weight: math.unit(70, "lb"),
  28406. name: "Back",
  28407. image: {
  28408. source: "./media/characters/maia/back.svg",
  28409. extra: 237 / 225
  28410. }
  28411. },
  28412. },
  28413. [
  28414. {
  28415. name: "Normal",
  28416. height: math.unit(3 + 4 / 12, "feet"),
  28417. default: true
  28418. },
  28419. ]
  28420. ))
  28421. characterMakers.push(() => makeCharacter(
  28422. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28423. {
  28424. front: {
  28425. height: math.unit(5 + 10 / 12, "feet"),
  28426. weight: math.unit(197, "lb"),
  28427. name: "Front",
  28428. image: {
  28429. source: "./media/characters/jabaro/front.svg",
  28430. extra: 225 / 216,
  28431. bottom: 5.06 / 230
  28432. }
  28433. },
  28434. back: {
  28435. height: math.unit(5 + 10 / 12, "feet"),
  28436. weight: math.unit(197, "lb"),
  28437. name: "Back",
  28438. image: {
  28439. source: "./media/characters/jabaro/back.svg",
  28440. extra: 225 / 219,
  28441. bottom: 1.9 / 227
  28442. }
  28443. },
  28444. },
  28445. [
  28446. {
  28447. name: "Normal",
  28448. height: math.unit(5 + 10 / 12, "feet"),
  28449. default: true
  28450. },
  28451. ]
  28452. ))
  28453. characterMakers.push(() => makeCharacter(
  28454. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28455. {
  28456. front: {
  28457. height: math.unit(5 + 8 / 12, "feet"),
  28458. weight: math.unit(139, "lb"),
  28459. name: "Front",
  28460. image: {
  28461. source: "./media/characters/risa/front.svg",
  28462. extra: 270 / 260,
  28463. bottom: 11.2 / 282
  28464. }
  28465. },
  28466. back: {
  28467. height: math.unit(5 + 8 / 12, "feet"),
  28468. weight: math.unit(139, "lb"),
  28469. name: "Back",
  28470. image: {
  28471. source: "./media/characters/risa/back.svg",
  28472. extra: 264 / 255,
  28473. bottom: 4 / 268
  28474. }
  28475. },
  28476. },
  28477. [
  28478. {
  28479. name: "Normal",
  28480. height: math.unit(5 + 8 / 12, "feet"),
  28481. default: true
  28482. },
  28483. ]
  28484. ))
  28485. characterMakers.push(() => makeCharacter(
  28486. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28487. {
  28488. front: {
  28489. height: math.unit(2 + 11 / 12, "feet"),
  28490. weight: math.unit(30, "lb"),
  28491. name: "Front",
  28492. image: {
  28493. source: "./media/characters/weatley/front.svg",
  28494. bottom: 10.7 / 414,
  28495. extra: 403.5 / 362
  28496. }
  28497. },
  28498. back: {
  28499. height: math.unit(2 + 11 / 12, "feet"),
  28500. weight: math.unit(30, "lb"),
  28501. name: "Back",
  28502. image: {
  28503. source: "./media/characters/weatley/back.svg",
  28504. bottom: 10.7 / 414,
  28505. extra: 403.5 / 362
  28506. }
  28507. },
  28508. },
  28509. [
  28510. {
  28511. name: "Normal",
  28512. height: math.unit(2 + 11 / 12, "feet"),
  28513. default: true
  28514. },
  28515. ]
  28516. ))
  28517. characterMakers.push(() => makeCharacter(
  28518. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28519. {
  28520. front: {
  28521. height: math.unit(5 + 2 / 12, "feet"),
  28522. weight: math.unit(50, "kg"),
  28523. name: "Front",
  28524. image: {
  28525. source: "./media/characters/mercury-crescent/front.svg",
  28526. extra: 1088 / 1033,
  28527. bottom: 18.9 / 1109
  28528. }
  28529. },
  28530. },
  28531. [
  28532. {
  28533. name: "Normal",
  28534. height: math.unit(5 + 2 / 12, "feet"),
  28535. default: true
  28536. },
  28537. ]
  28538. ))
  28539. characterMakers.push(() => makeCharacter(
  28540. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28541. {
  28542. front: {
  28543. height: math.unit(2, "feet"),
  28544. weight: math.unit(15, "kg"),
  28545. name: "Front",
  28546. image: {
  28547. source: "./media/characters/diamond-jones/front.svg",
  28548. extra: 727/723,
  28549. bottom: 46/773
  28550. }
  28551. },
  28552. },
  28553. [
  28554. {
  28555. name: "Normal",
  28556. height: math.unit(2, "feet"),
  28557. default: true
  28558. },
  28559. ]
  28560. ))
  28561. characterMakers.push(() => makeCharacter(
  28562. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28563. {
  28564. front: {
  28565. height: math.unit(3, "feet"),
  28566. weight: math.unit(30, "kg"),
  28567. name: "Front",
  28568. image: {
  28569. source: "./media/characters/sweet-bit/front.svg",
  28570. extra: 675 / 567,
  28571. bottom: 27.7 / 703
  28572. }
  28573. },
  28574. },
  28575. [
  28576. {
  28577. name: "Normal",
  28578. height: math.unit(3, "feet"),
  28579. default: true
  28580. },
  28581. ]
  28582. ))
  28583. characterMakers.push(() => makeCharacter(
  28584. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28585. {
  28586. side: {
  28587. height: math.unit(9.178, "feet"),
  28588. weight: math.unit(500, "lb"),
  28589. name: "Side",
  28590. image: {
  28591. source: "./media/characters/umbrazen/side.svg",
  28592. extra: 1730 / 1473,
  28593. bottom: 34.6 / 1765
  28594. }
  28595. },
  28596. },
  28597. [
  28598. {
  28599. name: "Normal",
  28600. height: math.unit(9.178, "feet"),
  28601. default: true
  28602. },
  28603. ]
  28604. ))
  28605. characterMakers.push(() => makeCharacter(
  28606. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28607. {
  28608. front: {
  28609. height: math.unit(10, "feet"),
  28610. weight: math.unit(750, "lb"),
  28611. name: "Front",
  28612. image: {
  28613. source: "./media/characters/arlist/front.svg",
  28614. extra: 961 / 778,
  28615. bottom: 6.2 / 986
  28616. }
  28617. },
  28618. },
  28619. [
  28620. {
  28621. name: "Normal",
  28622. height: math.unit(10, "feet"),
  28623. default: true
  28624. },
  28625. ]
  28626. ))
  28627. characterMakers.push(() => makeCharacter(
  28628. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28629. {
  28630. front: {
  28631. height: math.unit(5 + 1 / 12, "feet"),
  28632. weight: math.unit(110, "lb"),
  28633. name: "Front",
  28634. image: {
  28635. source: "./media/characters/aradel/front.svg",
  28636. extra: 324 / 303,
  28637. bottom: 3.6 / 329.4
  28638. }
  28639. },
  28640. },
  28641. [
  28642. {
  28643. name: "Normal",
  28644. height: math.unit(5 + 1 / 12, "feet"),
  28645. default: true
  28646. },
  28647. ]
  28648. ))
  28649. characterMakers.push(() => makeCharacter(
  28650. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28651. {
  28652. dressed: {
  28653. height: math.unit(3 + 8 / 12, "feet"),
  28654. weight: math.unit(50, "lb"),
  28655. name: "Dressed",
  28656. image: {
  28657. source: "./media/characters/serryn/dressed.svg",
  28658. extra: 1792 / 1656,
  28659. bottom: 43.5 / 1840
  28660. }
  28661. },
  28662. nude: {
  28663. height: math.unit(3 + 8 / 12, "feet"),
  28664. weight: math.unit(50, "lb"),
  28665. name: "Nude",
  28666. image: {
  28667. source: "./media/characters/serryn/nude.svg",
  28668. extra: 1792 / 1656,
  28669. bottom: 43.5 / 1840
  28670. }
  28671. },
  28672. },
  28673. [
  28674. {
  28675. name: "Normal",
  28676. height: math.unit(3 + 8 / 12, "feet"),
  28677. default: true
  28678. },
  28679. ]
  28680. ))
  28681. characterMakers.push(() => makeCharacter(
  28682. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28683. {
  28684. front: {
  28685. height: math.unit(7 + 10 / 12, "feet"),
  28686. weight: math.unit(255, "lb"),
  28687. name: "Front",
  28688. image: {
  28689. source: "./media/characters/xavier-thyme/front.svg",
  28690. extra: 3733 / 3642,
  28691. bottom: 131 / 3869
  28692. }
  28693. },
  28694. frontRaven: {
  28695. height: math.unit(7 + 10 / 12, "feet"),
  28696. weight: math.unit(255, "lb"),
  28697. name: "Front (Raven)",
  28698. image: {
  28699. source: "./media/characters/xavier-thyme/front-raven.svg",
  28700. extra: 4385 / 3642,
  28701. bottom: 131 / 4517
  28702. }
  28703. },
  28704. },
  28705. [
  28706. {
  28707. name: "Normal",
  28708. height: math.unit(7 + 10 / 12, "feet"),
  28709. default: true
  28710. },
  28711. ]
  28712. ))
  28713. characterMakers.push(() => makeCharacter(
  28714. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28715. {
  28716. front: {
  28717. height: math.unit(1.6, "m"),
  28718. weight: math.unit(50, "kg"),
  28719. name: "Front",
  28720. image: {
  28721. source: "./media/characters/kiki/front.svg",
  28722. extra: 4682 / 3610,
  28723. bottom: 115 / 4777
  28724. }
  28725. },
  28726. },
  28727. [
  28728. {
  28729. name: "Normal",
  28730. height: math.unit(1.6, "meters"),
  28731. default: true
  28732. },
  28733. ]
  28734. ))
  28735. characterMakers.push(() => makeCharacter(
  28736. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28737. {
  28738. front: {
  28739. height: math.unit(50, "m"),
  28740. weight: math.unit(500, "tonnes"),
  28741. name: "Front",
  28742. image: {
  28743. source: "./media/characters/ryoko/front.svg",
  28744. extra: 4632 / 3926,
  28745. bottom: 193 / 4823
  28746. }
  28747. },
  28748. },
  28749. [
  28750. {
  28751. name: "Normal",
  28752. height: math.unit(50, "meters"),
  28753. default: true
  28754. },
  28755. ]
  28756. ))
  28757. characterMakers.push(() => makeCharacter(
  28758. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28759. {
  28760. front: {
  28761. height: math.unit(30, "m"),
  28762. weight: math.unit(22, "tonnes"),
  28763. name: "Front",
  28764. image: {
  28765. source: "./media/characters/elio/front.svg",
  28766. extra: 4582 / 3720,
  28767. bottom: 236 / 4828
  28768. }
  28769. },
  28770. },
  28771. [
  28772. {
  28773. name: "Normal",
  28774. height: math.unit(30, "meters"),
  28775. default: true
  28776. },
  28777. ]
  28778. ))
  28779. characterMakers.push(() => makeCharacter(
  28780. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28781. {
  28782. front: {
  28783. height: math.unit(6 + 3 / 12, "feet"),
  28784. weight: math.unit(120, "lb"),
  28785. name: "Front",
  28786. image: {
  28787. source: "./media/characters/azura/front.svg",
  28788. extra: 1149 / 1135,
  28789. bottom: 45 / 1194
  28790. }
  28791. },
  28792. frontClothed: {
  28793. height: math.unit(6 + 3 / 12, "feet"),
  28794. weight: math.unit(120, "lb"),
  28795. name: "Front (Clothed)",
  28796. image: {
  28797. source: "./media/characters/azura/front-clothed.svg",
  28798. extra: 1149 / 1135,
  28799. bottom: 45 / 1194
  28800. }
  28801. },
  28802. },
  28803. [
  28804. {
  28805. name: "Normal",
  28806. height: math.unit(6 + 3 / 12, "feet"),
  28807. default: true
  28808. },
  28809. {
  28810. name: "Macro",
  28811. height: math.unit(20 + 6 / 12, "feet")
  28812. },
  28813. {
  28814. name: "Megamacro",
  28815. height: math.unit(12, "miles")
  28816. },
  28817. {
  28818. name: "Gigamacro",
  28819. height: math.unit(10000, "miles")
  28820. },
  28821. {
  28822. name: "Teramacro",
  28823. height: math.unit(900000, "miles")
  28824. },
  28825. ]
  28826. ))
  28827. characterMakers.push(() => makeCharacter(
  28828. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28829. {
  28830. front: {
  28831. height: math.unit(12, "feet"),
  28832. weight: math.unit(1, "ton"),
  28833. capacity: math.unit(660000, "gallons"),
  28834. name: "Front",
  28835. image: {
  28836. source: "./media/characters/zeus/front.svg",
  28837. extra: 5005 / 4717,
  28838. bottom: 363 / 5388
  28839. }
  28840. },
  28841. },
  28842. [
  28843. {
  28844. name: "Normal",
  28845. height: math.unit(12, "feet")
  28846. },
  28847. {
  28848. name: "Preferred Size",
  28849. height: math.unit(0.5, "miles"),
  28850. default: true
  28851. },
  28852. {
  28853. name: "Giga Horse",
  28854. height: math.unit(300, "miles")
  28855. },
  28856. {
  28857. name: "Riding Planets",
  28858. height: math.unit(30, "megameters")
  28859. },
  28860. {
  28861. name: "Cosmic Giant",
  28862. height: math.unit(3, "zettameters")
  28863. },
  28864. {
  28865. name: "Breeding God",
  28866. height: math.unit(9.92e22, "yottameters")
  28867. },
  28868. ]
  28869. ))
  28870. characterMakers.push(() => makeCharacter(
  28871. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28872. {
  28873. side: {
  28874. height: math.unit(9, "feet"),
  28875. weight: math.unit(1500, "kg"),
  28876. name: "Side",
  28877. image: {
  28878. source: "./media/characters/fang/side.svg",
  28879. extra: 924 / 866,
  28880. bottom: 47.5 / 972.3
  28881. }
  28882. },
  28883. },
  28884. [
  28885. {
  28886. name: "Normal",
  28887. height: math.unit(9, "feet"),
  28888. default: true
  28889. },
  28890. {
  28891. name: "Macro",
  28892. height: math.unit(75 + 6 / 12, "feet")
  28893. },
  28894. {
  28895. name: "Teramacro",
  28896. height: math.unit(50000, "miles")
  28897. },
  28898. ]
  28899. ))
  28900. characterMakers.push(() => makeCharacter(
  28901. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28902. {
  28903. front: {
  28904. height: math.unit(10, "feet"),
  28905. weight: math.unit(2, "tons"),
  28906. name: "Front",
  28907. image: {
  28908. source: "./media/characters/rekhit/front.svg",
  28909. extra: 2796 / 2590,
  28910. bottom: 225 / 3022
  28911. }
  28912. },
  28913. },
  28914. [
  28915. {
  28916. name: "Normal",
  28917. height: math.unit(10, "feet"),
  28918. default: true
  28919. },
  28920. {
  28921. name: "Macro",
  28922. height: math.unit(500, "feet")
  28923. },
  28924. ]
  28925. ))
  28926. characterMakers.push(() => makeCharacter(
  28927. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28928. {
  28929. front: {
  28930. height: math.unit(7 + 6.451 / 12, "feet"),
  28931. weight: math.unit(310, "lb"),
  28932. name: "Front",
  28933. image: {
  28934. source: "./media/characters/dahlia-verrick/front.svg",
  28935. extra: 1488 / 1365,
  28936. bottom: 6.2 / 1495
  28937. }
  28938. },
  28939. back: {
  28940. height: math.unit(7 + 6.451 / 12, "feet"),
  28941. weight: math.unit(310, "lb"),
  28942. name: "Back",
  28943. image: {
  28944. source: "./media/characters/dahlia-verrick/back.svg",
  28945. extra: 1472 / 1351,
  28946. bottom: 5.28 / 1477
  28947. }
  28948. },
  28949. frontBusiness: {
  28950. height: math.unit(7 + 6.451 / 12, "feet"),
  28951. weight: math.unit(200, "lb"),
  28952. name: "Front (Business)",
  28953. image: {
  28954. source: "./media/characters/dahlia-verrick/front-business.svg",
  28955. extra: 1478 / 1381,
  28956. bottom: 5.5 / 1484
  28957. }
  28958. },
  28959. frontCasual: {
  28960. height: math.unit(7 + 6.451 / 12, "feet"),
  28961. weight: math.unit(200, "lb"),
  28962. name: "Front (Casual)",
  28963. image: {
  28964. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28965. extra: 1478 / 1381,
  28966. bottom: 5.5 / 1484
  28967. }
  28968. },
  28969. },
  28970. [
  28971. {
  28972. name: "Travel-Sized",
  28973. height: math.unit(7.45, "inches")
  28974. },
  28975. {
  28976. name: "Normal",
  28977. height: math.unit(7 + 6.451 / 12, "feet"),
  28978. default: true
  28979. },
  28980. {
  28981. name: "Hitting the Town",
  28982. height: math.unit(37 + 8 / 12, "feet")
  28983. },
  28984. {
  28985. name: "Stomp in the Suburbs",
  28986. height: math.unit(964 + 9.728 / 12, "feet")
  28987. },
  28988. {
  28989. name: "Sit on the City",
  28990. height: math.unit(61747 + 10.592 / 12, "feet")
  28991. },
  28992. {
  28993. name: "Glomp the Globe",
  28994. height: math.unit(252919327 + 4.832 / 12, "feet")
  28995. },
  28996. ]
  28997. ))
  28998. characterMakers.push(() => makeCharacter(
  28999. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  29000. {
  29001. front: {
  29002. height: math.unit(6 + 4 / 12, "feet"),
  29003. weight: math.unit(320, "lb"),
  29004. name: "Front",
  29005. image: {
  29006. source: "./media/characters/balina-mahigan/front.svg",
  29007. extra: 447 / 428,
  29008. bottom: 18 / 466
  29009. }
  29010. },
  29011. back: {
  29012. height: math.unit(6 + 4 / 12, "feet"),
  29013. weight: math.unit(320, "lb"),
  29014. name: "Back",
  29015. image: {
  29016. source: "./media/characters/balina-mahigan/back.svg",
  29017. extra: 445 / 428,
  29018. bottom: 4.07 / 448
  29019. }
  29020. },
  29021. arm: {
  29022. height: math.unit(1.88, "feet"),
  29023. name: "Arm",
  29024. image: {
  29025. source: "./media/characters/balina-mahigan/arm.svg"
  29026. }
  29027. },
  29028. backPort: {
  29029. height: math.unit(0.685, "feet"),
  29030. name: "Back Port",
  29031. image: {
  29032. source: "./media/characters/balina-mahigan/back-port.svg"
  29033. }
  29034. },
  29035. hoofpaw: {
  29036. height: math.unit(1.41, "feet"),
  29037. name: "Hoofpaw",
  29038. image: {
  29039. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  29040. }
  29041. },
  29042. leftHandBack: {
  29043. height: math.unit(0.938, "feet"),
  29044. name: "Left Hand (Back)",
  29045. image: {
  29046. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  29047. }
  29048. },
  29049. leftHandFront: {
  29050. height: math.unit(0.938, "feet"),
  29051. name: "Left Hand (Front)",
  29052. image: {
  29053. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  29054. }
  29055. },
  29056. rightHandBack: {
  29057. height: math.unit(0.95, "feet"),
  29058. name: "Right Hand (Back)",
  29059. image: {
  29060. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  29061. }
  29062. },
  29063. rightHandFront: {
  29064. height: math.unit(0.95, "feet"),
  29065. name: "Right Hand (Front)",
  29066. image: {
  29067. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  29068. }
  29069. },
  29070. },
  29071. [
  29072. {
  29073. name: "Normal",
  29074. height: math.unit(6 + 4 / 12, "feet"),
  29075. default: true
  29076. },
  29077. ]
  29078. ))
  29079. characterMakers.push(() => makeCharacter(
  29080. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  29081. {
  29082. front: {
  29083. height: math.unit(6, "feet"),
  29084. weight: math.unit(320, "lb"),
  29085. name: "Front",
  29086. image: {
  29087. source: "./media/characters/balina-mejeri/front.svg",
  29088. extra: 517 / 488,
  29089. bottom: 44.2 / 561
  29090. }
  29091. },
  29092. },
  29093. [
  29094. {
  29095. name: "Normal",
  29096. height: math.unit(6 + 4 / 12, "feet")
  29097. },
  29098. {
  29099. name: "Business",
  29100. height: math.unit(155, "feet"),
  29101. default: true
  29102. },
  29103. ]
  29104. ))
  29105. characterMakers.push(() => makeCharacter(
  29106. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  29107. {
  29108. kneeling: {
  29109. height: math.unit(6 + 4 / 12, "feet"),
  29110. weight: math.unit(300 * 20, "lb"),
  29111. name: "Kneeling",
  29112. image: {
  29113. source: "./media/characters/balbarian/kneeling.svg",
  29114. extra: 922 / 862,
  29115. bottom: 42.4 / 965
  29116. }
  29117. },
  29118. },
  29119. [
  29120. {
  29121. name: "Normal",
  29122. height: math.unit(6 + 4 / 12, "feet")
  29123. },
  29124. {
  29125. name: "Treasured",
  29126. height: math.unit(18 + 9 / 12, "feet"),
  29127. default: true
  29128. },
  29129. {
  29130. name: "Macro",
  29131. height: math.unit(900, "feet")
  29132. },
  29133. ]
  29134. ))
  29135. characterMakers.push(() => makeCharacter(
  29136. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  29137. {
  29138. front: {
  29139. height: math.unit(6 + 4 / 12, "feet"),
  29140. weight: math.unit(325, "lb"),
  29141. name: "Front",
  29142. image: {
  29143. source: "./media/characters/balina-amarini/front.svg",
  29144. extra: 415 / 403,
  29145. bottom: 19 / 433.4
  29146. }
  29147. },
  29148. back: {
  29149. height: math.unit(6 + 4 / 12, "feet"),
  29150. weight: math.unit(325, "lb"),
  29151. name: "Back",
  29152. image: {
  29153. source: "./media/characters/balina-amarini/back.svg",
  29154. extra: 415 / 403,
  29155. bottom: 13.5 / 432
  29156. }
  29157. },
  29158. overdrive: {
  29159. height: math.unit(6 + 4 / 12, "feet"),
  29160. weight: math.unit(400, "lb"),
  29161. name: "Overdrive",
  29162. image: {
  29163. source: "./media/characters/balina-amarini/overdrive.svg",
  29164. extra: 269 / 259,
  29165. bottom: 12 / 282
  29166. }
  29167. },
  29168. },
  29169. [
  29170. {
  29171. name: "Boom",
  29172. height: math.unit(9 + 10 / 12, "feet"),
  29173. default: true
  29174. },
  29175. {
  29176. name: "Macro",
  29177. height: math.unit(280, "feet")
  29178. },
  29179. ]
  29180. ))
  29181. characterMakers.push(() => makeCharacter(
  29182. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  29183. {
  29184. goddess: {
  29185. height: math.unit(600, "feet"),
  29186. weight: math.unit(2000000, "tons"),
  29187. name: "Goddess",
  29188. image: {
  29189. source: "./media/characters/lady-kubwa/goddess.svg",
  29190. extra: 1240.5 / 1223,
  29191. bottom: 22 / 1263
  29192. }
  29193. },
  29194. goddesser: {
  29195. height: math.unit(900, "feet"),
  29196. weight: math.unit(20000000, "lb"),
  29197. name: "Goddess-er",
  29198. image: {
  29199. source: "./media/characters/lady-kubwa/goddess-er.svg",
  29200. extra: 899 / 888,
  29201. bottom: 12.6 / 912
  29202. }
  29203. },
  29204. },
  29205. [
  29206. {
  29207. name: "Macro",
  29208. height: math.unit(600, "feet"),
  29209. default: true
  29210. },
  29211. {
  29212. name: "Megamacro",
  29213. height: math.unit(250, "miles")
  29214. },
  29215. ]
  29216. ))
  29217. characterMakers.push(() => makeCharacter(
  29218. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  29219. {
  29220. front: {
  29221. height: math.unit(7 + 7 / 12, "feet"),
  29222. weight: math.unit(250, "lb"),
  29223. name: "Front",
  29224. image: {
  29225. source: "./media/characters/tala-grovehorn/front.svg",
  29226. extra: 2636 / 2525,
  29227. bottom: 147 / 2781
  29228. }
  29229. },
  29230. back: {
  29231. height: math.unit(7 + 7 / 12, "feet"),
  29232. weight: math.unit(250, "lb"),
  29233. name: "Back",
  29234. image: {
  29235. source: "./media/characters/tala-grovehorn/back.svg",
  29236. extra: 2635 / 2539,
  29237. bottom: 100 / 2732.8
  29238. }
  29239. },
  29240. mouth: {
  29241. height: math.unit(1.15, "feet"),
  29242. name: "Mouth",
  29243. image: {
  29244. source: "./media/characters/tala-grovehorn/mouth.svg"
  29245. }
  29246. },
  29247. dick: {
  29248. height: math.unit(2.36, "feet"),
  29249. name: "Dick",
  29250. image: {
  29251. source: "./media/characters/tala-grovehorn/dick.svg"
  29252. }
  29253. },
  29254. slit: {
  29255. height: math.unit(0.61, "feet"),
  29256. name: "Slit",
  29257. image: {
  29258. source: "./media/characters/tala-grovehorn/slit.svg"
  29259. }
  29260. },
  29261. },
  29262. [
  29263. ]
  29264. ))
  29265. characterMakers.push(() => makeCharacter(
  29266. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  29267. {
  29268. front: {
  29269. height: math.unit(7 + 7 / 12, "feet"),
  29270. weight: math.unit(225, "lb"),
  29271. name: "Front",
  29272. image: {
  29273. source: "./media/characters/epona/front.svg",
  29274. extra: 2445 / 2290,
  29275. bottom: 251 / 2696
  29276. }
  29277. },
  29278. back: {
  29279. height: math.unit(7 + 7 / 12, "feet"),
  29280. weight: math.unit(225, "lb"),
  29281. name: "Back",
  29282. image: {
  29283. source: "./media/characters/epona/back.svg",
  29284. extra: 2546 / 2408,
  29285. bottom: 44 / 2589
  29286. }
  29287. },
  29288. genitals: {
  29289. height: math.unit(1.5, "feet"),
  29290. name: "Genitals",
  29291. image: {
  29292. source: "./media/characters/epona/genitals.svg"
  29293. }
  29294. },
  29295. },
  29296. [
  29297. {
  29298. name: "Normal",
  29299. height: math.unit(7 + 7 / 12, "feet"),
  29300. default: true
  29301. },
  29302. ]
  29303. ))
  29304. characterMakers.push(() => makeCharacter(
  29305. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29306. {
  29307. front: {
  29308. height: math.unit(7, "feet"),
  29309. weight: math.unit(518, "lb"),
  29310. name: "Front",
  29311. image: {
  29312. source: "./media/characters/avia-bloodbourn/front.svg",
  29313. extra: 1466 / 1350,
  29314. bottom: 65 / 1527
  29315. }
  29316. },
  29317. },
  29318. [
  29319. ]
  29320. ))
  29321. characterMakers.push(() => makeCharacter(
  29322. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29323. {
  29324. front: {
  29325. height: math.unit(9.35, "feet"),
  29326. weight: math.unit(600, "lb"),
  29327. name: "Front",
  29328. image: {
  29329. source: "./media/characters/amera/front.svg",
  29330. extra: 891 / 818,
  29331. bottom: 30 / 922.7
  29332. }
  29333. },
  29334. back: {
  29335. height: math.unit(9.35, "feet"),
  29336. weight: math.unit(600, "lb"),
  29337. name: "Back",
  29338. image: {
  29339. source: "./media/characters/amera/back.svg",
  29340. extra: 876 / 824,
  29341. bottom: 6.8 / 884
  29342. }
  29343. },
  29344. dick: {
  29345. height: math.unit(2.14, "feet"),
  29346. name: "Dick",
  29347. image: {
  29348. source: "./media/characters/amera/dick.svg"
  29349. }
  29350. },
  29351. },
  29352. [
  29353. {
  29354. name: "Normal",
  29355. height: math.unit(9.35, "feet"),
  29356. default: true
  29357. },
  29358. ]
  29359. ))
  29360. characterMakers.push(() => makeCharacter(
  29361. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29362. {
  29363. kneeling: {
  29364. height: math.unit(3 + 4 / 12, "feet"),
  29365. weight: math.unit(90, "lb"),
  29366. name: "Kneeling",
  29367. image: {
  29368. source: "./media/characters/rosewen/kneeling.svg",
  29369. extra: 1835 / 1571,
  29370. bottom: 27.7 / 1862
  29371. }
  29372. },
  29373. },
  29374. [
  29375. {
  29376. name: "Normal",
  29377. height: math.unit(3 + 4 / 12, "feet"),
  29378. default: true
  29379. },
  29380. ]
  29381. ))
  29382. characterMakers.push(() => makeCharacter(
  29383. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29384. {
  29385. front: {
  29386. height: math.unit(5 + 10 / 12, "feet"),
  29387. weight: math.unit(200, "lb"),
  29388. name: "Front",
  29389. image: {
  29390. source: "./media/characters/sabah/front.svg",
  29391. extra: 849 / 763,
  29392. bottom: 33.9 / 881
  29393. }
  29394. },
  29395. },
  29396. [
  29397. {
  29398. name: "Normal",
  29399. height: math.unit(5 + 10 / 12, "feet"),
  29400. default: true
  29401. },
  29402. ]
  29403. ))
  29404. characterMakers.push(() => makeCharacter(
  29405. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29406. {
  29407. front: {
  29408. height: math.unit(3 + 5 / 12, "feet"),
  29409. weight: math.unit(40, "kg"),
  29410. name: "Front",
  29411. image: {
  29412. source: "./media/characters/purple-flame/front.svg",
  29413. extra: 1577 / 1412,
  29414. bottom: 97 / 1694
  29415. }
  29416. },
  29417. frontDressed: {
  29418. height: math.unit(3 + 5 / 12, "feet"),
  29419. weight: math.unit(40, "kg"),
  29420. name: "Front (Dressed)",
  29421. image: {
  29422. source: "./media/characters/purple-flame/front-dressed.svg",
  29423. extra: 1577 / 1412,
  29424. bottom: 97 / 1694
  29425. }
  29426. },
  29427. headphones: {
  29428. height: math.unit(0.85, "feet"),
  29429. name: "Headphones",
  29430. image: {
  29431. source: "./media/characters/purple-flame/headphones.svg"
  29432. }
  29433. },
  29434. },
  29435. [
  29436. {
  29437. name: "Really Small",
  29438. height: math.unit(5, "cm")
  29439. },
  29440. {
  29441. name: "Micro",
  29442. height: math.unit(1 + 5 / 12, "feet")
  29443. },
  29444. {
  29445. name: "Normal",
  29446. height: math.unit(3 + 5 / 12, "feet"),
  29447. default: true
  29448. },
  29449. {
  29450. name: "Minimacro",
  29451. height: math.unit(125, "feet")
  29452. },
  29453. {
  29454. name: "Macro",
  29455. height: math.unit(0.5, "miles")
  29456. },
  29457. {
  29458. name: "Megamacro",
  29459. height: math.unit(50, "miles")
  29460. },
  29461. {
  29462. name: "Gigantic",
  29463. height: math.unit(750, "miles")
  29464. },
  29465. {
  29466. name: "Planetary",
  29467. height: math.unit(15000, "miles")
  29468. },
  29469. ]
  29470. ))
  29471. characterMakers.push(() => makeCharacter(
  29472. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29473. {
  29474. front: {
  29475. height: math.unit(14, "feet"),
  29476. weight: math.unit(959, "lb"),
  29477. name: "Front",
  29478. image: {
  29479. source: "./media/characters/arsenal/front.svg",
  29480. extra: 2357 / 2157,
  29481. bottom: 93 / 2458
  29482. }
  29483. },
  29484. },
  29485. [
  29486. {
  29487. name: "Normal",
  29488. height: math.unit(14, "feet"),
  29489. default: true
  29490. },
  29491. ]
  29492. ))
  29493. characterMakers.push(() => makeCharacter(
  29494. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29495. {
  29496. front: {
  29497. height: math.unit(6, "feet"),
  29498. weight: math.unit(150, "lb"),
  29499. name: "Front",
  29500. image: {
  29501. source: "./media/characters/adira/front.svg",
  29502. extra: 1078 / 1029,
  29503. bottom: 87 / 1166
  29504. }
  29505. },
  29506. },
  29507. [
  29508. {
  29509. name: "Micro",
  29510. height: math.unit(4, "inches"),
  29511. default: true
  29512. },
  29513. {
  29514. name: "Macro",
  29515. height: math.unit(50, "feet")
  29516. },
  29517. ]
  29518. ))
  29519. characterMakers.push(() => makeCharacter(
  29520. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29521. {
  29522. front: {
  29523. height: math.unit(16, "feet"),
  29524. weight: math.unit(1000, "lb"),
  29525. name: "Front",
  29526. image: {
  29527. source: "./media/characters/grim/front.svg",
  29528. extra: 622 / 614,
  29529. bottom: 18.1 / 642
  29530. }
  29531. },
  29532. back: {
  29533. height: math.unit(16, "feet"),
  29534. weight: math.unit(1000, "lb"),
  29535. name: "Back",
  29536. image: {
  29537. source: "./media/characters/grim/back.svg",
  29538. extra: 610.6 / 602,
  29539. bottom: 40.8 / 652
  29540. }
  29541. },
  29542. hunched: {
  29543. height: math.unit(9.75, "feet"),
  29544. weight: math.unit(1000, "lb"),
  29545. name: "Hunched",
  29546. image: {
  29547. source: "./media/characters/grim/hunched.svg",
  29548. extra: 304 / 297,
  29549. bottom: 35.4 / 394
  29550. }
  29551. },
  29552. },
  29553. [
  29554. {
  29555. name: "Normal",
  29556. height: math.unit(16, "feet"),
  29557. default: true
  29558. },
  29559. ]
  29560. ))
  29561. characterMakers.push(() => makeCharacter(
  29562. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29563. {
  29564. front: {
  29565. height: math.unit(2.3, "meters"),
  29566. weight: math.unit(300, "lb"),
  29567. name: "Front",
  29568. image: {
  29569. source: "./media/characters/sinja/front-sfw.svg",
  29570. extra: 1393 / 1294,
  29571. bottom: 70 / 1463
  29572. }
  29573. },
  29574. frontNsfw: {
  29575. height: math.unit(2.3, "meters"),
  29576. weight: math.unit(300, "lb"),
  29577. name: "Front (NSFW)",
  29578. image: {
  29579. source: "./media/characters/sinja/front-nsfw.svg",
  29580. extra: 1393 / 1294,
  29581. bottom: 70 / 1463
  29582. }
  29583. },
  29584. back: {
  29585. height: math.unit(2.3, "meters"),
  29586. weight: math.unit(300, "lb"),
  29587. name: "Back",
  29588. image: {
  29589. source: "./media/characters/sinja/back.svg",
  29590. extra: 1393 / 1294,
  29591. bottom: 70 / 1463
  29592. }
  29593. },
  29594. head: {
  29595. height: math.unit(1.771, "feet"),
  29596. name: "Head",
  29597. image: {
  29598. source: "./media/characters/sinja/head.svg"
  29599. }
  29600. },
  29601. slit: {
  29602. height: math.unit(0.8, "feet"),
  29603. name: "Slit",
  29604. image: {
  29605. source: "./media/characters/sinja/slit.svg"
  29606. }
  29607. },
  29608. },
  29609. [
  29610. {
  29611. name: "Normal",
  29612. height: math.unit(2.3, "meters")
  29613. },
  29614. {
  29615. name: "Macro",
  29616. height: math.unit(91, "meters"),
  29617. default: true
  29618. },
  29619. {
  29620. name: "Megamacro",
  29621. height: math.unit(91440, "meters")
  29622. },
  29623. {
  29624. name: "Gigamacro",
  29625. height: math.unit(60960000, "meters")
  29626. },
  29627. {
  29628. name: "Teramacro",
  29629. height: math.unit(9144000000, "meters")
  29630. },
  29631. ]
  29632. ))
  29633. characterMakers.push(() => makeCharacter(
  29634. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29635. {
  29636. front: {
  29637. height: math.unit(1.7, "meters"),
  29638. weight: math.unit(130, "lb"),
  29639. name: "Front",
  29640. image: {
  29641. source: "./media/characters/kyu/front.svg",
  29642. extra: 415 / 395,
  29643. bottom: 5 / 420
  29644. }
  29645. },
  29646. head: {
  29647. height: math.unit(1.75, "feet"),
  29648. name: "Head",
  29649. image: {
  29650. source: "./media/characters/kyu/head.svg"
  29651. }
  29652. },
  29653. foot: {
  29654. height: math.unit(0.81, "feet"),
  29655. name: "Foot",
  29656. image: {
  29657. source: "./media/characters/kyu/foot.svg"
  29658. }
  29659. },
  29660. },
  29661. [
  29662. {
  29663. name: "Normal",
  29664. height: math.unit(1.7, "meters")
  29665. },
  29666. {
  29667. name: "Macro",
  29668. height: math.unit(131, "feet"),
  29669. default: true
  29670. },
  29671. {
  29672. name: "Megamacro",
  29673. height: math.unit(91440, "meters")
  29674. },
  29675. {
  29676. name: "Gigamacro",
  29677. height: math.unit(60960000, "meters")
  29678. },
  29679. {
  29680. name: "Teramacro",
  29681. height: math.unit(9144000000, "meters")
  29682. },
  29683. ]
  29684. ))
  29685. characterMakers.push(() => makeCharacter(
  29686. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29687. {
  29688. front: {
  29689. height: math.unit(7 + 1 / 12, "feet"),
  29690. weight: math.unit(250, "lb"),
  29691. name: "Front",
  29692. image: {
  29693. source: "./media/characters/joey/front.svg",
  29694. extra: 1791 / 1537,
  29695. bottom: 28 / 1816
  29696. }
  29697. },
  29698. },
  29699. [
  29700. {
  29701. name: "Micro",
  29702. height: math.unit(3, "inches")
  29703. },
  29704. {
  29705. name: "Normal",
  29706. height: math.unit(7 + 1 / 12, "feet"),
  29707. default: true
  29708. },
  29709. ]
  29710. ))
  29711. characterMakers.push(() => makeCharacter(
  29712. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29713. {
  29714. front: {
  29715. height: math.unit(165, "cm"),
  29716. weight: math.unit(140, "lb"),
  29717. name: "Front",
  29718. image: {
  29719. source: "./media/characters/sam-evans/front.svg",
  29720. extra: 3417 / 3230,
  29721. bottom: 41.3 / 3417
  29722. }
  29723. },
  29724. frontSixTails: {
  29725. height: math.unit(165, "cm"),
  29726. weight: math.unit(140, "lb"),
  29727. name: "Front-six-tails",
  29728. image: {
  29729. source: "./media/characters/sam-evans/front-six-tails.svg",
  29730. extra: 3417 / 3230,
  29731. bottom: 41.3 / 3417
  29732. }
  29733. },
  29734. back: {
  29735. height: math.unit(165, "cm"),
  29736. weight: math.unit(140, "lb"),
  29737. name: "Back",
  29738. image: {
  29739. source: "./media/characters/sam-evans/back.svg",
  29740. extra: 3227 / 3032,
  29741. bottom: 6.8 / 3234
  29742. }
  29743. },
  29744. face: {
  29745. height: math.unit(0.68, "feet"),
  29746. name: "Face",
  29747. image: {
  29748. source: "./media/characters/sam-evans/face.svg"
  29749. }
  29750. },
  29751. },
  29752. [
  29753. {
  29754. name: "Normal",
  29755. height: math.unit(165, "cm"),
  29756. default: true
  29757. },
  29758. {
  29759. name: "Macro",
  29760. height: math.unit(100, "meters")
  29761. },
  29762. {
  29763. name: "Macro+",
  29764. height: math.unit(800, "meters")
  29765. },
  29766. {
  29767. name: "Macro++",
  29768. height: math.unit(3, "km")
  29769. },
  29770. {
  29771. name: "Macro+++",
  29772. height: math.unit(30, "km")
  29773. },
  29774. ]
  29775. ))
  29776. characterMakers.push(() => makeCharacter(
  29777. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29778. {
  29779. front: {
  29780. height: math.unit(10, "feet"),
  29781. weight: math.unit(750, "lb"),
  29782. name: "Front",
  29783. image: {
  29784. source: "./media/characters/juliet-a/front.svg",
  29785. extra: 1766 / 1720,
  29786. bottom: 43 / 1809
  29787. }
  29788. },
  29789. back: {
  29790. height: math.unit(10, "feet"),
  29791. weight: math.unit(750, "lb"),
  29792. name: "Back",
  29793. image: {
  29794. source: "./media/characters/juliet-a/back.svg",
  29795. extra: 1781 / 1734,
  29796. bottom: 35 / 1810,
  29797. }
  29798. },
  29799. },
  29800. [
  29801. {
  29802. name: "Normal",
  29803. height: math.unit(10, "feet"),
  29804. default: true
  29805. },
  29806. {
  29807. name: "Dragon Form",
  29808. height: math.unit(250, "feet")
  29809. },
  29810. {
  29811. name: "Macro",
  29812. height: math.unit(1000, "feet")
  29813. },
  29814. {
  29815. name: "Megamacro",
  29816. height: math.unit(10000, "feet")
  29817. }
  29818. ]
  29819. ))
  29820. characterMakers.push(() => makeCharacter(
  29821. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29822. {
  29823. regular: {
  29824. height: math.unit(7 + 3 / 12, "feet"),
  29825. weight: math.unit(260, "lb"),
  29826. name: "Regular",
  29827. image: {
  29828. source: "./media/characters/wild/regular.svg",
  29829. extra: 97.45 / 92,
  29830. bottom: 6.8 / 104.3
  29831. }
  29832. },
  29833. biggums: {
  29834. height: math.unit(8 + 6 / 12, "feet"),
  29835. weight: math.unit(425, "lb"),
  29836. name: "Biggums",
  29837. image: {
  29838. source: "./media/characters/wild/biggums.svg",
  29839. extra: 97.45 / 92,
  29840. bottom: 7.5 / 132.34
  29841. }
  29842. },
  29843. mawRegular: {
  29844. height: math.unit(1.24, "feet"),
  29845. name: "Maw (Regular)",
  29846. image: {
  29847. source: "./media/characters/wild/maw.svg"
  29848. }
  29849. },
  29850. mawBiggums: {
  29851. height: math.unit(1.47, "feet"),
  29852. name: "Maw (Biggums)",
  29853. image: {
  29854. source: "./media/characters/wild/maw.svg"
  29855. }
  29856. },
  29857. },
  29858. [
  29859. {
  29860. name: "Normal",
  29861. height: math.unit(7 + 3 / 12, "feet"),
  29862. default: true
  29863. },
  29864. ]
  29865. ))
  29866. characterMakers.push(() => makeCharacter(
  29867. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29868. {
  29869. front: {
  29870. height: math.unit(2.5, "meters"),
  29871. weight: math.unit(200, "kg"),
  29872. name: "Front",
  29873. image: {
  29874. source: "./media/characters/vidar/front.svg",
  29875. extra: 2994 / 2795,
  29876. bottom: 56 / 3061
  29877. }
  29878. },
  29879. back: {
  29880. height: math.unit(2.5, "meters"),
  29881. weight: math.unit(200, "kg"),
  29882. name: "Back",
  29883. image: {
  29884. source: "./media/characters/vidar/back.svg",
  29885. extra: 3131 / 2928,
  29886. bottom: 13.5 / 3141.5
  29887. }
  29888. },
  29889. feral: {
  29890. height: math.unit(2.5, "meters"),
  29891. weight: math.unit(2000, "kg"),
  29892. name: "Feral",
  29893. image: {
  29894. source: "./media/characters/vidar/feral.svg",
  29895. extra: 2790 / 1765,
  29896. bottom: 6 / 2796
  29897. }
  29898. },
  29899. },
  29900. [
  29901. {
  29902. name: "Normal",
  29903. height: math.unit(2.5, "meters"),
  29904. default: true
  29905. },
  29906. {
  29907. name: "Macro",
  29908. height: math.unit(100, "meters")
  29909. },
  29910. ]
  29911. ))
  29912. characterMakers.push(() => makeCharacter(
  29913. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29914. {
  29915. front: {
  29916. height: math.unit(5 + 9 / 12, "feet"),
  29917. weight: math.unit(120, "lb"),
  29918. name: "Front",
  29919. image: {
  29920. source: "./media/characters/ash/front.svg",
  29921. extra: 2189 / 1961,
  29922. bottom: 5.2 / 2194
  29923. }
  29924. },
  29925. },
  29926. [
  29927. {
  29928. name: "Normal",
  29929. height: math.unit(5 + 9 / 12, "feet"),
  29930. default: true
  29931. },
  29932. ]
  29933. ))
  29934. characterMakers.push(() => makeCharacter(
  29935. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29936. {
  29937. front: {
  29938. height: math.unit(9, "feet"),
  29939. weight: math.unit(10000, "lb"),
  29940. name: "Front",
  29941. image: {
  29942. source: "./media/characters/gygabite/front.svg",
  29943. bottom: 31.7 / 537.8,
  29944. extra: 505 / 370
  29945. }
  29946. },
  29947. },
  29948. [
  29949. {
  29950. name: "Normal",
  29951. height: math.unit(9, "feet"),
  29952. default: true
  29953. },
  29954. ]
  29955. ))
  29956. characterMakers.push(() => makeCharacter(
  29957. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29958. {
  29959. front: {
  29960. height: math.unit(12, "feet"),
  29961. weight: math.unit(4000, "lb"),
  29962. name: "Front",
  29963. image: {
  29964. source: "./media/characters/p0tat0/front.svg",
  29965. extra: 1065 / 921,
  29966. bottom: 55.7 / 1121.25
  29967. }
  29968. },
  29969. },
  29970. [
  29971. {
  29972. name: "Normal",
  29973. height: math.unit(12, "feet"),
  29974. default: true
  29975. },
  29976. ]
  29977. ))
  29978. characterMakers.push(() => makeCharacter(
  29979. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29980. {
  29981. side: {
  29982. height: math.unit(6.5, "feet"),
  29983. weight: math.unit(800, "lb"),
  29984. name: "Side",
  29985. image: {
  29986. source: "./media/characters/dusk/side.svg",
  29987. extra: 615 / 373,
  29988. bottom: 53 / 664
  29989. }
  29990. },
  29991. sitting: {
  29992. height: math.unit(7, "feet"),
  29993. weight: math.unit(800, "lb"),
  29994. name: "Sitting",
  29995. image: {
  29996. source: "./media/characters/dusk/sitting.svg",
  29997. extra: 753 / 425,
  29998. bottom: 33 / 774
  29999. }
  30000. },
  30001. head: {
  30002. height: math.unit(6.1, "feet"),
  30003. name: "Head",
  30004. image: {
  30005. source: "./media/characters/dusk/head.svg"
  30006. }
  30007. },
  30008. },
  30009. [
  30010. {
  30011. name: "Normal",
  30012. height: math.unit(7, "feet"),
  30013. default: true
  30014. },
  30015. ]
  30016. ))
  30017. characterMakers.push(() => makeCharacter(
  30018. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  30019. {
  30020. front: {
  30021. height: math.unit(15, "feet"),
  30022. weight: math.unit(7000, "lb"),
  30023. name: "Front",
  30024. image: {
  30025. source: "./media/characters/jay-direwolf/front.svg",
  30026. extra: 1810 / 1732,
  30027. bottom: 66 / 1892
  30028. }
  30029. },
  30030. },
  30031. [
  30032. {
  30033. name: "Normal",
  30034. height: math.unit(15, "feet"),
  30035. default: true
  30036. },
  30037. ]
  30038. ))
  30039. characterMakers.push(() => makeCharacter(
  30040. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  30041. {
  30042. front: {
  30043. height: math.unit(4 + 9 / 12, "feet"),
  30044. weight: math.unit(130, "lb"),
  30045. name: "Front",
  30046. image: {
  30047. source: "./media/characters/anchovie/front.svg",
  30048. extra: 382 / 350,
  30049. bottom: 25 / 409
  30050. }
  30051. },
  30052. back: {
  30053. height: math.unit(4 + 9 / 12, "feet"),
  30054. weight: math.unit(130, "lb"),
  30055. name: "Back",
  30056. image: {
  30057. source: "./media/characters/anchovie/back.svg",
  30058. extra: 385 / 352,
  30059. bottom: 16.6 / 402
  30060. }
  30061. },
  30062. frontDressed: {
  30063. height: math.unit(4 + 9 / 12, "feet"),
  30064. weight: math.unit(130, "lb"),
  30065. name: "Front (Dressed)",
  30066. image: {
  30067. source: "./media/characters/anchovie/front-dressed.svg",
  30068. extra: 382 / 350,
  30069. bottom: 25 / 409
  30070. }
  30071. },
  30072. backDressed: {
  30073. height: math.unit(4 + 9 / 12, "feet"),
  30074. weight: math.unit(130, "lb"),
  30075. name: "Back (Dressed)",
  30076. image: {
  30077. source: "./media/characters/anchovie/back-dressed.svg",
  30078. extra: 385 / 352,
  30079. bottom: 16.6 / 402
  30080. }
  30081. },
  30082. },
  30083. [
  30084. {
  30085. name: "Micro",
  30086. height: math.unit(6.4, "inches")
  30087. },
  30088. {
  30089. name: "Normal",
  30090. height: math.unit(4 + 9 / 12, "feet"),
  30091. default: true
  30092. },
  30093. ]
  30094. ))
  30095. characterMakers.push(() => makeCharacter(
  30096. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  30097. {
  30098. front: {
  30099. height: math.unit(2, "meters"),
  30100. weight: math.unit(180, "lb"),
  30101. name: "Front",
  30102. image: {
  30103. source: "./media/characters/acidrenamon/front.svg",
  30104. extra: 987 / 890,
  30105. bottom: 22.8 / 1009
  30106. }
  30107. },
  30108. back: {
  30109. height: math.unit(2, "meters"),
  30110. weight: math.unit(180, "lb"),
  30111. name: "Back",
  30112. image: {
  30113. source: "./media/characters/acidrenamon/back.svg",
  30114. extra: 983 / 891,
  30115. bottom: 8.4 / 992
  30116. }
  30117. },
  30118. head: {
  30119. height: math.unit(1.92, "feet"),
  30120. name: "Head",
  30121. image: {
  30122. source: "./media/characters/acidrenamon/head.svg"
  30123. }
  30124. },
  30125. rump: {
  30126. height: math.unit(1.72, "feet"),
  30127. name: "Rump",
  30128. image: {
  30129. source: "./media/characters/acidrenamon/rump.svg"
  30130. }
  30131. },
  30132. tail: {
  30133. height: math.unit(4.2, "feet"),
  30134. name: "Tail",
  30135. image: {
  30136. source: "./media/characters/acidrenamon/tail.svg"
  30137. }
  30138. },
  30139. },
  30140. [
  30141. {
  30142. name: "Normal",
  30143. height: math.unit(2, "meters"),
  30144. default: true
  30145. },
  30146. {
  30147. name: "Minimacro",
  30148. height: math.unit(7, "meters")
  30149. },
  30150. {
  30151. name: "Macro",
  30152. height: math.unit(200, "meters")
  30153. },
  30154. {
  30155. name: "Gigamacro",
  30156. height: math.unit(0.2, "earths")
  30157. },
  30158. ]
  30159. ))
  30160. characterMakers.push(() => makeCharacter(
  30161. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  30162. {
  30163. front: {
  30164. height: math.unit(152, "feet"),
  30165. name: "Front",
  30166. image: {
  30167. source: "./media/characters/kenzie-lee/front.svg",
  30168. extra: 1869/1774,
  30169. bottom: 128/1997
  30170. }
  30171. },
  30172. side: {
  30173. height: math.unit(86, "feet"),
  30174. name: "Side",
  30175. image: {
  30176. source: "./media/characters/kenzie-lee/side.svg",
  30177. extra: 930/815,
  30178. bottom: 177/1107
  30179. }
  30180. },
  30181. paw: {
  30182. height: math.unit(15, "feet"),
  30183. name: "Paw",
  30184. image: {
  30185. source: "./media/characters/kenzie-lee/paw.svg"
  30186. }
  30187. },
  30188. },
  30189. [
  30190. {
  30191. name: "Kenzie Flea",
  30192. height: math.unit(2, "mm"),
  30193. default: true
  30194. },
  30195. {
  30196. name: "Micro",
  30197. height: math.unit(2, "inches")
  30198. },
  30199. {
  30200. name: "Normal",
  30201. height: math.unit(152, "feet")
  30202. },
  30203. {
  30204. name: "Megamacro",
  30205. height: math.unit(7, "miles")
  30206. },
  30207. {
  30208. name: "Gigamacro",
  30209. height: math.unit(8000, "miles")
  30210. },
  30211. ]
  30212. ))
  30213. characterMakers.push(() => makeCharacter(
  30214. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  30215. {
  30216. front: {
  30217. height: math.unit(6, "feet"),
  30218. name: "Front",
  30219. image: {
  30220. source: "./media/characters/withers/front.svg",
  30221. extra: 1935/1760,
  30222. bottom: 72/2007
  30223. }
  30224. },
  30225. back: {
  30226. height: math.unit(6, "feet"),
  30227. name: "Back",
  30228. image: {
  30229. source: "./media/characters/withers/back.svg",
  30230. extra: 1944/1792,
  30231. bottom: 12/1956
  30232. }
  30233. },
  30234. dressed: {
  30235. height: math.unit(6, "feet"),
  30236. name: "Dressed",
  30237. image: {
  30238. source: "./media/characters/withers/dressed.svg",
  30239. extra: 1937/1765,
  30240. bottom: 73/2010
  30241. }
  30242. },
  30243. phase1: {
  30244. height: math.unit(1.1, "feet"),
  30245. name: "Phase 1",
  30246. image: {
  30247. source: "./media/characters/withers/phase-1.svg",
  30248. extra: 1885/1232,
  30249. bottom: 0/1885
  30250. }
  30251. },
  30252. phase2: {
  30253. height: math.unit(1.05, "feet"),
  30254. name: "Phase 2",
  30255. image: {
  30256. source: "./media/characters/withers/phase-2.svg",
  30257. extra: 1792/1090,
  30258. bottom: 0/1792
  30259. }
  30260. },
  30261. partyWipe: {
  30262. height: math.unit(1.1, "feet"),
  30263. name: "Party Wipe",
  30264. image: {
  30265. source: "./media/characters/withers/party-wipe.svg",
  30266. extra: 1864/1207,
  30267. bottom: 0/1864
  30268. }
  30269. },
  30270. },
  30271. [
  30272. {
  30273. name: "Macro",
  30274. height: math.unit(167, "feet"),
  30275. default: true
  30276. },
  30277. {
  30278. name: "Megamacro",
  30279. height: math.unit(15, "miles")
  30280. }
  30281. ]
  30282. ))
  30283. characterMakers.push(() => makeCharacter(
  30284. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  30285. {
  30286. front: {
  30287. height: math.unit(6 + 7 / 12, "feet"),
  30288. weight: math.unit(250, "lb"),
  30289. name: "Front",
  30290. image: {
  30291. source: "./media/characters/nemoskii/front.svg",
  30292. extra: 2270 / 1734,
  30293. bottom: 86 / 2354
  30294. }
  30295. },
  30296. back: {
  30297. height: math.unit(6 + 7 / 12, "feet"),
  30298. weight: math.unit(250, "lb"),
  30299. name: "Back",
  30300. image: {
  30301. source: "./media/characters/nemoskii/back.svg",
  30302. extra: 1845 / 1788,
  30303. bottom: 10.5 / 1852
  30304. }
  30305. },
  30306. head: {
  30307. height: math.unit(1.31, "feet"),
  30308. name: "Head",
  30309. image: {
  30310. source: "./media/characters/nemoskii/head.svg"
  30311. }
  30312. },
  30313. },
  30314. [
  30315. {
  30316. name: "Micro",
  30317. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30318. },
  30319. {
  30320. name: "Normal",
  30321. height: math.unit(6 + 7 / 12, "feet"),
  30322. default: true
  30323. },
  30324. {
  30325. name: "Macro",
  30326. height: math.unit((6 + 7 / 12) * 150, "feet")
  30327. },
  30328. {
  30329. name: "Macro+",
  30330. height: math.unit((6 + 7 / 12) * 500, "feet")
  30331. },
  30332. {
  30333. name: "Megamacro",
  30334. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30335. },
  30336. ]
  30337. ))
  30338. characterMakers.push(() => makeCharacter(
  30339. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30340. {
  30341. front: {
  30342. height: math.unit(1, "mile"),
  30343. weight: math.unit(265261.9, "lb"),
  30344. name: "Front",
  30345. image: {
  30346. source: "./media/characters/shui/front.svg",
  30347. extra: 1633 / 1564,
  30348. bottom: 91.5 / 1726
  30349. }
  30350. },
  30351. },
  30352. [
  30353. {
  30354. name: "Macro",
  30355. height: math.unit(1, "mile"),
  30356. default: true
  30357. },
  30358. ]
  30359. ))
  30360. characterMakers.push(() => makeCharacter(
  30361. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30362. {
  30363. front: {
  30364. height: math.unit(12 + 6 / 12, "feet"),
  30365. weight: math.unit(1342, "lb"),
  30366. name: "Front",
  30367. image: {
  30368. source: "./media/characters/arokh-takakura/front.svg",
  30369. extra: 1089 / 1043,
  30370. bottom: 77.4 / 1176.7
  30371. }
  30372. },
  30373. back: {
  30374. height: math.unit(12 + 6 / 12, "feet"),
  30375. weight: math.unit(1342, "lb"),
  30376. name: "Back",
  30377. image: {
  30378. source: "./media/characters/arokh-takakura/back.svg",
  30379. extra: 1046 / 1019,
  30380. bottom: 102 / 1150
  30381. }
  30382. },
  30383. },
  30384. [
  30385. {
  30386. name: "Big",
  30387. height: math.unit(12 + 6 / 12, "feet"),
  30388. default: true
  30389. },
  30390. ]
  30391. ))
  30392. characterMakers.push(() => makeCharacter(
  30393. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30394. {
  30395. front: {
  30396. height: math.unit(5 + 6 / 12, "feet"),
  30397. weight: math.unit(150, "lb"),
  30398. name: "Front",
  30399. image: {
  30400. source: "./media/characters/theo/front.svg",
  30401. extra: 1184 / 1131,
  30402. bottom: 7.4 / 1191
  30403. }
  30404. },
  30405. },
  30406. [
  30407. {
  30408. name: "Micro",
  30409. height: math.unit(5, "inches")
  30410. },
  30411. {
  30412. name: "Normal",
  30413. height: math.unit(5 + 6 / 12, "feet"),
  30414. default: true
  30415. },
  30416. ]
  30417. ))
  30418. characterMakers.push(() => makeCharacter(
  30419. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30420. {
  30421. front: {
  30422. height: math.unit(5 + 9 / 12, "feet"),
  30423. weight: math.unit(130, "lb"),
  30424. name: "Front",
  30425. image: {
  30426. source: "./media/characters/cecelia-swift/front.svg",
  30427. extra: 502 / 484,
  30428. bottom: 23 / 523
  30429. }
  30430. },
  30431. back: {
  30432. height: math.unit(5 + 9 / 12, "feet"),
  30433. weight: math.unit(130, "lb"),
  30434. name: "Back",
  30435. image: {
  30436. source: "./media/characters/cecelia-swift/back.svg",
  30437. extra: 499 / 485,
  30438. bottom: 12 / 511
  30439. }
  30440. },
  30441. head: {
  30442. height: math.unit(0.90, "feet"),
  30443. name: "Head",
  30444. image: {
  30445. source: "./media/characters/cecelia-swift/head.svg"
  30446. }
  30447. },
  30448. rump: {
  30449. height: math.unit(1.75, "feet"),
  30450. name: "Rump",
  30451. image: {
  30452. source: "./media/characters/cecelia-swift/rump.svg"
  30453. }
  30454. },
  30455. },
  30456. [
  30457. {
  30458. name: "Normal",
  30459. height: math.unit(5 + 9 / 12, "feet"),
  30460. default: true
  30461. },
  30462. {
  30463. name: "Big",
  30464. height: math.unit(50, "feet")
  30465. },
  30466. {
  30467. name: "Macro",
  30468. height: math.unit(100, "feet")
  30469. },
  30470. {
  30471. name: "Macro+",
  30472. height: math.unit(500, "feet")
  30473. },
  30474. {
  30475. name: "Macro++",
  30476. height: math.unit(1000, "feet")
  30477. },
  30478. ]
  30479. ))
  30480. characterMakers.push(() => makeCharacter(
  30481. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30482. {
  30483. front: {
  30484. height: math.unit(6, "feet"),
  30485. weight: math.unit(150, "lb"),
  30486. name: "Front",
  30487. image: {
  30488. source: "./media/characters/kaunan/front.svg",
  30489. extra: 2890 / 2523,
  30490. bottom: 49 / 2939
  30491. }
  30492. },
  30493. },
  30494. [
  30495. {
  30496. name: "Macro",
  30497. height: math.unit(150, "feet"),
  30498. default: true
  30499. },
  30500. ]
  30501. ))
  30502. characterMakers.push(() => makeCharacter(
  30503. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30504. {
  30505. dressed: {
  30506. height: math.unit(175, "cm"),
  30507. weight: math.unit(60, "kg"),
  30508. name: "Dressed",
  30509. image: {
  30510. source: "./media/characters/fei/dressed.svg",
  30511. extra: 1402/1278,
  30512. bottom: 27/1429
  30513. }
  30514. },
  30515. nude: {
  30516. height: math.unit(175, "cm"),
  30517. weight: math.unit(60, "kg"),
  30518. name: "Nude",
  30519. image: {
  30520. source: "./media/characters/fei/nude.svg",
  30521. extra: 1402/1278,
  30522. bottom: 27/1429
  30523. }
  30524. },
  30525. heels: {
  30526. height: math.unit(0.466, "feet"),
  30527. name: "Heels",
  30528. image: {
  30529. source: "./media/characters/fei/heels.svg",
  30530. extra: 156/152,
  30531. bottom: 28/184
  30532. }
  30533. },
  30534. },
  30535. [
  30536. {
  30537. name: "Mortal",
  30538. height: math.unit(175, "cm")
  30539. },
  30540. {
  30541. name: "Normal",
  30542. height: math.unit(3500, "m")
  30543. },
  30544. {
  30545. name: "Stroll",
  30546. height: math.unit(18.4, "km"),
  30547. default: true
  30548. },
  30549. {
  30550. name: "Showoff",
  30551. height: math.unit(175, "km")
  30552. },
  30553. ]
  30554. ))
  30555. characterMakers.push(() => makeCharacter(
  30556. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30557. {
  30558. front: {
  30559. height: math.unit(7, "feet"),
  30560. weight: math.unit(1000, "kg"),
  30561. name: "Front",
  30562. image: {
  30563. source: "./media/characters/edrax/front.svg",
  30564. extra: 2838 / 2550,
  30565. bottom: 130 / 2968
  30566. }
  30567. },
  30568. },
  30569. [
  30570. {
  30571. name: "Small",
  30572. height: math.unit(7, "feet")
  30573. },
  30574. {
  30575. name: "Normal",
  30576. height: math.unit(1500, "meters")
  30577. },
  30578. {
  30579. name: "Mega",
  30580. height: math.unit(12000000, "km"),
  30581. default: true
  30582. },
  30583. {
  30584. name: "Megamacro",
  30585. height: math.unit(10600000, "lightyears")
  30586. },
  30587. {
  30588. name: "Hypermacro",
  30589. height: math.unit(256, "yottameters")
  30590. },
  30591. ]
  30592. ))
  30593. characterMakers.push(() => makeCharacter(
  30594. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30595. {
  30596. front: {
  30597. height: math.unit(10, "feet"),
  30598. weight: math.unit(750, "lb"),
  30599. name: "Front",
  30600. image: {
  30601. source: "./media/characters/clove/front.svg",
  30602. extra: 1918/1751,
  30603. bottom: 52/1970
  30604. }
  30605. },
  30606. back: {
  30607. height: math.unit(10, "feet"),
  30608. weight: math.unit(750, "lb"),
  30609. name: "Back",
  30610. image: {
  30611. source: "./media/characters/clove/back.svg",
  30612. extra: 1912/1747,
  30613. bottom: 50/1962
  30614. }
  30615. },
  30616. },
  30617. [
  30618. {
  30619. name: "Normal",
  30620. height: math.unit(10, "feet"),
  30621. default: true
  30622. },
  30623. ]
  30624. ))
  30625. characterMakers.push(() => makeCharacter(
  30626. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30627. {
  30628. front: {
  30629. height: math.unit(4, "feet"),
  30630. weight: math.unit(50, "lb"),
  30631. name: "Front",
  30632. image: {
  30633. source: "./media/characters/alex-rabbit/front.svg",
  30634. extra: 507 / 458,
  30635. bottom: 18.5 / 527
  30636. }
  30637. },
  30638. back: {
  30639. height: math.unit(4, "feet"),
  30640. weight: math.unit(50, "lb"),
  30641. name: "Back",
  30642. image: {
  30643. source: "./media/characters/alex-rabbit/back.svg",
  30644. extra: 502 / 460,
  30645. bottom: 18.9 / 521
  30646. }
  30647. },
  30648. },
  30649. [
  30650. {
  30651. name: "Normal",
  30652. height: math.unit(4, "feet"),
  30653. default: true
  30654. },
  30655. ]
  30656. ))
  30657. characterMakers.push(() => makeCharacter(
  30658. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30659. {
  30660. front: {
  30661. height: math.unit(1 + 3 / 12, "feet"),
  30662. weight: math.unit(80, "lb"),
  30663. name: "Front",
  30664. image: {
  30665. source: "./media/characters/zander-rose/front.svg",
  30666. extra: 916 / 797,
  30667. bottom: 17 / 933
  30668. }
  30669. },
  30670. back: {
  30671. height: math.unit(1 + 3 / 12, "feet"),
  30672. weight: math.unit(80, "lb"),
  30673. name: "Back",
  30674. image: {
  30675. source: "./media/characters/zander-rose/back.svg",
  30676. extra: 903 / 779,
  30677. bottom: 31 / 934
  30678. }
  30679. },
  30680. },
  30681. [
  30682. {
  30683. name: "Normal",
  30684. height: math.unit(1 + 3 / 12, "feet"),
  30685. default: true
  30686. },
  30687. ]
  30688. ))
  30689. characterMakers.push(() => makeCharacter(
  30690. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30691. {
  30692. anthro: {
  30693. height: math.unit(6, "feet"),
  30694. weight: math.unit(150, "lb"),
  30695. name: "Anthro",
  30696. image: {
  30697. source: "./media/characters/razz/anthro.svg",
  30698. extra: 1437 / 1343,
  30699. bottom: 48 / 1485
  30700. }
  30701. },
  30702. feral: {
  30703. height: math.unit(6, "feet"),
  30704. weight: math.unit(150, "lb"),
  30705. name: "Feral",
  30706. image: {
  30707. source: "./media/characters/razz/feral.svg",
  30708. extra: 2569 / 1385,
  30709. bottom: 95 / 2664
  30710. }
  30711. },
  30712. },
  30713. [
  30714. {
  30715. name: "Normal",
  30716. height: math.unit(6, "feet"),
  30717. default: true
  30718. },
  30719. ]
  30720. ))
  30721. characterMakers.push(() => makeCharacter(
  30722. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30723. {
  30724. front: {
  30725. height: math.unit(9 + 4 / 12, "feet"),
  30726. weight: math.unit(500, "lb"),
  30727. name: "Front",
  30728. image: {
  30729. source: "./media/characters/morrigan/front.svg",
  30730. extra: 2707 / 2579,
  30731. bottom: 156 / 2863
  30732. }
  30733. },
  30734. },
  30735. [
  30736. {
  30737. name: "Normal",
  30738. height: math.unit(9 + 4 / 12, "feet"),
  30739. default: true
  30740. },
  30741. ]
  30742. ))
  30743. characterMakers.push(() => makeCharacter(
  30744. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30745. {
  30746. front: {
  30747. height: math.unit(5, "stories"),
  30748. weight: math.unit(4000, "lb"),
  30749. name: "Front",
  30750. image: {
  30751. source: "./media/characters/jenene/front.svg",
  30752. extra: 1780 / 1710,
  30753. bottom: 57 / 1837
  30754. }
  30755. },
  30756. },
  30757. [
  30758. {
  30759. name: "Normal",
  30760. height: math.unit(5, "stories"),
  30761. default: true
  30762. },
  30763. ]
  30764. ))
  30765. characterMakers.push(() => makeCharacter(
  30766. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30767. {
  30768. taurSfw: {
  30769. height: math.unit(10, "meters"),
  30770. weight: math.unit(17500, "kg"),
  30771. name: "Taur",
  30772. image: {
  30773. source: "./media/characters/faey/taur-sfw.svg",
  30774. extra: 1200 / 968,
  30775. bottom: 41 / 1241
  30776. }
  30777. },
  30778. chestmaw: {
  30779. height: math.unit(2.01, "meters"),
  30780. name: "Chestmaw",
  30781. image: {
  30782. source: "./media/characters/faey/chestmaw.svg"
  30783. }
  30784. },
  30785. foot: {
  30786. height: math.unit(2.43, "meters"),
  30787. name: "Foot",
  30788. image: {
  30789. source: "./media/characters/faey/foot.svg"
  30790. }
  30791. },
  30792. jaws: {
  30793. height: math.unit(1.66, "meters"),
  30794. name: "Jaws",
  30795. image: {
  30796. source: "./media/characters/faey/jaws.svg"
  30797. }
  30798. },
  30799. tongues: {
  30800. height: math.unit(2.01, "meters"),
  30801. name: "Tongues",
  30802. image: {
  30803. source: "./media/characters/faey/tongues.svg"
  30804. }
  30805. },
  30806. },
  30807. [
  30808. {
  30809. name: "Small",
  30810. height: math.unit(10, "meters"),
  30811. default: true
  30812. },
  30813. {
  30814. name: "Big",
  30815. height: math.unit(500000, "km")
  30816. },
  30817. ]
  30818. ))
  30819. characterMakers.push(() => makeCharacter(
  30820. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30821. {
  30822. front: {
  30823. height: math.unit(7, "feet"),
  30824. weight: math.unit(275, "lb"),
  30825. name: "Front",
  30826. image: {
  30827. source: "./media/characters/roku/front.svg",
  30828. extra: 903 / 878,
  30829. bottom: 37 / 940
  30830. }
  30831. },
  30832. },
  30833. [
  30834. {
  30835. name: "Normal",
  30836. height: math.unit(7, "feet"),
  30837. default: true
  30838. },
  30839. {
  30840. name: "Macro",
  30841. height: math.unit(500, "feet")
  30842. },
  30843. {
  30844. name: "Megamacro",
  30845. height: math.unit(200, "miles")
  30846. },
  30847. ]
  30848. ))
  30849. characterMakers.push(() => makeCharacter(
  30850. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30851. {
  30852. front: {
  30853. height: math.unit(6 + 2 / 12, "feet"),
  30854. weight: math.unit(150, "lb"),
  30855. name: "Front",
  30856. image: {
  30857. source: "./media/characters/lira/front.svg",
  30858. extra: 1727 / 1605,
  30859. bottom: 26 / 1753
  30860. }
  30861. },
  30862. back: {
  30863. height: math.unit(6 + 2 / 12, "feet"),
  30864. weight: math.unit(150, "lb"),
  30865. name: "Back",
  30866. image: {
  30867. source: "./media/characters/lira/back.svg",
  30868. extra: 1713/1621,
  30869. bottom: 20/1733
  30870. }
  30871. },
  30872. hand: {
  30873. height: math.unit(0.75, "feet"),
  30874. name: "Hand",
  30875. image: {
  30876. source: "./media/characters/lira/hand.svg"
  30877. }
  30878. },
  30879. maw: {
  30880. height: math.unit(0.65, "feet"),
  30881. name: "Maw",
  30882. image: {
  30883. source: "./media/characters/lira/maw.svg"
  30884. }
  30885. },
  30886. pawDigi: {
  30887. height: math.unit(1.6, "feet"),
  30888. name: "Paw Digi",
  30889. image: {
  30890. source: "./media/characters/lira/paw-digi.svg"
  30891. }
  30892. },
  30893. pawPlanti: {
  30894. height: math.unit(1.4, "feet"),
  30895. name: "Paw Planti",
  30896. image: {
  30897. source: "./media/characters/lira/paw-planti.svg"
  30898. }
  30899. },
  30900. },
  30901. [
  30902. {
  30903. name: "Normal",
  30904. height: math.unit(6 + 2 / 12, "feet"),
  30905. default: true
  30906. },
  30907. {
  30908. name: "Macro",
  30909. height: math.unit(100, "feet")
  30910. },
  30911. {
  30912. name: "Macro²",
  30913. height: math.unit(1600, "feet")
  30914. },
  30915. {
  30916. name: "Planetary",
  30917. height: math.unit(20, "earths")
  30918. },
  30919. ]
  30920. ))
  30921. characterMakers.push(() => makeCharacter(
  30922. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30923. {
  30924. front: {
  30925. height: math.unit(6, "feet"),
  30926. weight: math.unit(150, "lb"),
  30927. name: "Front",
  30928. image: {
  30929. source: "./media/characters/hadjet/front.svg",
  30930. extra: 1480 / 1346,
  30931. bottom: 26 / 1506
  30932. }
  30933. },
  30934. frontNsfw: {
  30935. height: math.unit(6, "feet"),
  30936. weight: math.unit(150, "lb"),
  30937. name: "Front (NSFW)",
  30938. image: {
  30939. source: "./media/characters/hadjet/front-nsfw.svg",
  30940. extra: 1440 / 1358,
  30941. bottom: 52 / 1492
  30942. }
  30943. },
  30944. },
  30945. [
  30946. {
  30947. name: "Macro",
  30948. height: math.unit(10, "stories"),
  30949. default: true
  30950. },
  30951. {
  30952. name: "Megamacro",
  30953. height: math.unit(1.5, "miles")
  30954. },
  30955. {
  30956. name: "Megamacro+",
  30957. height: math.unit(5, "miles")
  30958. },
  30959. ]
  30960. ))
  30961. characterMakers.push(() => makeCharacter(
  30962. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30963. {
  30964. side: {
  30965. height: math.unit(106, "feet"),
  30966. weight: math.unit(500, "tonnes"),
  30967. name: "Side",
  30968. image: {
  30969. source: "./media/characters/kodran/side.svg",
  30970. extra: 553 / 480,
  30971. bottom: 33 / 586
  30972. }
  30973. },
  30974. front: {
  30975. height: math.unit(132, "feet"),
  30976. weight: math.unit(500, "tonnes"),
  30977. name: "Front",
  30978. image: {
  30979. source: "./media/characters/kodran/front.svg",
  30980. extra: 667 / 643,
  30981. bottom: 42 / 709
  30982. }
  30983. },
  30984. flying: {
  30985. height: math.unit(350, "feet"),
  30986. weight: math.unit(500, "tonnes"),
  30987. name: "Flying",
  30988. image: {
  30989. source: "./media/characters/kodran/flying.svg"
  30990. }
  30991. },
  30992. foot: {
  30993. height: math.unit(33, "feet"),
  30994. name: "Foot",
  30995. image: {
  30996. source: "./media/characters/kodran/foot.svg"
  30997. }
  30998. },
  30999. footFront: {
  31000. height: math.unit(19, "feet"),
  31001. name: "Foot (Front)",
  31002. image: {
  31003. source: "./media/characters/kodran/foot-front.svg",
  31004. extra: 261 / 261,
  31005. bottom: 91 / 352
  31006. }
  31007. },
  31008. headFront: {
  31009. height: math.unit(53, "feet"),
  31010. name: "Head (Front)",
  31011. image: {
  31012. source: "./media/characters/kodran/head-front.svg"
  31013. }
  31014. },
  31015. headSide: {
  31016. height: math.unit(65, "feet"),
  31017. name: "Head (Side)",
  31018. image: {
  31019. source: "./media/characters/kodran/head-side.svg"
  31020. }
  31021. },
  31022. throat: {
  31023. height: math.unit(79, "feet"),
  31024. name: "Throat",
  31025. image: {
  31026. source: "./media/characters/kodran/throat.svg"
  31027. }
  31028. },
  31029. },
  31030. [
  31031. {
  31032. name: "Large",
  31033. height: math.unit(106, "feet"),
  31034. default: true
  31035. },
  31036. ]
  31037. ))
  31038. characterMakers.push(() => makeCharacter(
  31039. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  31040. {
  31041. side: {
  31042. height: math.unit(11, "feet"),
  31043. weight: math.unit(150, "lb"),
  31044. name: "Side",
  31045. image: {
  31046. source: "./media/characters/pyxaron/side.svg",
  31047. extra: 305 / 195,
  31048. bottom: 17 / 322
  31049. }
  31050. },
  31051. },
  31052. [
  31053. {
  31054. name: "Normal",
  31055. height: math.unit(11, "feet"),
  31056. default: true
  31057. },
  31058. ]
  31059. ))
  31060. characterMakers.push(() => makeCharacter(
  31061. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  31062. {
  31063. front: {
  31064. height: math.unit(6, "feet"),
  31065. weight: math.unit(150, "lb"),
  31066. name: "Front",
  31067. image: {
  31068. source: "./media/characters/meep/front.svg",
  31069. extra: 88 / 80,
  31070. bottom: 6 / 94
  31071. }
  31072. },
  31073. },
  31074. [
  31075. {
  31076. name: "Fun Sized",
  31077. height: math.unit(2, "inches"),
  31078. default: true
  31079. },
  31080. {
  31081. name: "Friend Sized",
  31082. height: math.unit(8, "inches")
  31083. },
  31084. ]
  31085. ))
  31086. characterMakers.push(() => makeCharacter(
  31087. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  31088. {
  31089. front: {
  31090. height: math.unit(15, "feet"),
  31091. weight: math.unit(2500, "lb"),
  31092. name: "Front",
  31093. image: {
  31094. source: "./media/characters/holly-rabbit/front.svg",
  31095. extra: 1433 / 1233,
  31096. bottom: 125 / 1558
  31097. }
  31098. },
  31099. dick: {
  31100. height: math.unit(4.6, "feet"),
  31101. name: "Dick",
  31102. image: {
  31103. source: "./media/characters/holly-rabbit/dick.svg"
  31104. }
  31105. },
  31106. },
  31107. [
  31108. {
  31109. name: "Normal",
  31110. height: math.unit(15, "feet"),
  31111. default: true
  31112. },
  31113. {
  31114. name: "Macro",
  31115. height: math.unit(250, "feet")
  31116. },
  31117. {
  31118. name: "Macro+",
  31119. height: math.unit(2500, "feet")
  31120. },
  31121. ]
  31122. ))
  31123. characterMakers.push(() => makeCharacter(
  31124. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  31125. {
  31126. front: {
  31127. height: math.unit(3.02, "meters"),
  31128. weight: math.unit(500, "kg"),
  31129. name: "Front",
  31130. image: {
  31131. source: "./media/characters/drena/front.svg",
  31132. extra: 282 / 243,
  31133. bottom: 8 / 290
  31134. }
  31135. },
  31136. side: {
  31137. height: math.unit(3.02, "meters"),
  31138. weight: math.unit(500, "kg"),
  31139. name: "Side",
  31140. image: {
  31141. source: "./media/characters/drena/side.svg",
  31142. extra: 280 / 245,
  31143. bottom: 10 / 290
  31144. }
  31145. },
  31146. back: {
  31147. height: math.unit(3.02, "meters"),
  31148. weight: math.unit(500, "kg"),
  31149. name: "Back",
  31150. image: {
  31151. source: "./media/characters/drena/back.svg",
  31152. extra: 278 / 243,
  31153. bottom: 2 / 280
  31154. }
  31155. },
  31156. foot: {
  31157. height: math.unit(0.75, "meters"),
  31158. name: "Foot",
  31159. image: {
  31160. source: "./media/characters/drena/foot.svg"
  31161. }
  31162. },
  31163. maw: {
  31164. height: math.unit(0.82, "meters"),
  31165. name: "Maw",
  31166. image: {
  31167. source: "./media/characters/drena/maw.svg"
  31168. }
  31169. },
  31170. eating: {
  31171. height: math.unit(0.75, "meters"),
  31172. name: "Eating",
  31173. image: {
  31174. source: "./media/characters/drena/eating.svg"
  31175. }
  31176. },
  31177. rump: {
  31178. height: math.unit(0.93, "meters"),
  31179. name: "Rump",
  31180. image: {
  31181. source: "./media/characters/drena/rump.svg"
  31182. }
  31183. },
  31184. },
  31185. [
  31186. {
  31187. name: "Normal",
  31188. height: math.unit(3.02, "meters"),
  31189. default: true
  31190. },
  31191. ]
  31192. ))
  31193. characterMakers.push(() => makeCharacter(
  31194. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  31195. {
  31196. front: {
  31197. height: math.unit(6 + 4 / 12, "feet"),
  31198. weight: math.unit(250, "lb"),
  31199. name: "Front",
  31200. image: {
  31201. source: "./media/characters/remmyzilla/front.svg",
  31202. extra: 4033 / 3588,
  31203. bottom: 123 / 4156
  31204. }
  31205. },
  31206. back: {
  31207. height: math.unit(6 + 4 / 12, "feet"),
  31208. weight: math.unit(250, "lb"),
  31209. name: "Back",
  31210. image: {
  31211. source: "./media/characters/remmyzilla/back.svg",
  31212. extra: 1696/1602,
  31213. bottom: 63/1759
  31214. }
  31215. },
  31216. paw: {
  31217. height: math.unit(1.73, "feet"),
  31218. name: "Paw",
  31219. image: {
  31220. source: "./media/characters/remmyzilla/paw.svg"
  31221. },
  31222. extraAttributes: {
  31223. "toeSize": {
  31224. name: "Toe Size",
  31225. power: 2,
  31226. type: "area",
  31227. base: math.unit(0.0035, "m^2")
  31228. },
  31229. "padSize": {
  31230. name: "Pad Size",
  31231. power: 2,
  31232. type: "area",
  31233. base: math.unit(0.015, "m^2")
  31234. },
  31235. "pawsize": {
  31236. name: "Paw Size",
  31237. power: 2,
  31238. type: "area",
  31239. base: math.unit(0.072, "m^2")
  31240. },
  31241. }
  31242. },
  31243. maw: {
  31244. height: math.unit(1.73, "feet"),
  31245. name: "Maw",
  31246. image: {
  31247. source: "./media/characters/remmyzilla/maw.svg"
  31248. }
  31249. },
  31250. },
  31251. [
  31252. {
  31253. name: "Normal",
  31254. height: math.unit(6 + 4 / 12, "feet")
  31255. },
  31256. {
  31257. name: "Minimacro",
  31258. height: math.unit(12 + 8 / 12, "feet")
  31259. },
  31260. {
  31261. name: "Normal",
  31262. height: math.unit(640, "feet"),
  31263. default: true
  31264. },
  31265. {
  31266. name: "Megamacro",
  31267. height: math.unit(6400, "feet")
  31268. },
  31269. {
  31270. name: "Gigamacro",
  31271. height: math.unit(64000, "miles")
  31272. },
  31273. ]
  31274. ))
  31275. characterMakers.push(() => makeCharacter(
  31276. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  31277. {
  31278. front: {
  31279. height: math.unit(2.5, "meters"),
  31280. weight: math.unit(300, "lb"),
  31281. name: "Front",
  31282. image: {
  31283. source: "./media/characters/lawrence/front.svg",
  31284. extra: 357 / 335,
  31285. bottom: 30 / 387
  31286. }
  31287. },
  31288. back: {
  31289. height: math.unit(2.5, "meters"),
  31290. weight: math.unit(300, "lb"),
  31291. name: "Back",
  31292. image: {
  31293. source: "./media/characters/lawrence/back.svg",
  31294. extra: 357 / 338,
  31295. bottom: 16 / 373
  31296. }
  31297. },
  31298. head: {
  31299. height: math.unit(0.9, "meter"),
  31300. name: "Head",
  31301. image: {
  31302. source: "./media/characters/lawrence/head.svg"
  31303. }
  31304. },
  31305. maw: {
  31306. height: math.unit(0.7, "meter"),
  31307. name: "Maw",
  31308. image: {
  31309. source: "./media/characters/lawrence/maw.svg"
  31310. }
  31311. },
  31312. footBottom: {
  31313. height: math.unit(0.5, "meter"),
  31314. name: "Foot (Bottom)",
  31315. image: {
  31316. source: "./media/characters/lawrence/foot-bottom.svg"
  31317. }
  31318. },
  31319. footTop: {
  31320. height: math.unit(0.5, "meter"),
  31321. name: "Foot (Top)",
  31322. image: {
  31323. source: "./media/characters/lawrence/foot-top.svg"
  31324. }
  31325. },
  31326. },
  31327. [
  31328. {
  31329. name: "Normal",
  31330. height: math.unit(2.5, "meters"),
  31331. default: true
  31332. },
  31333. {
  31334. name: "Macro",
  31335. height: math.unit(95, "meters")
  31336. },
  31337. {
  31338. name: "Megamacro",
  31339. height: math.unit(150, "km")
  31340. },
  31341. ]
  31342. ))
  31343. characterMakers.push(() => makeCharacter(
  31344. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31345. {
  31346. front: {
  31347. height: math.unit(4.2, "meters"),
  31348. preyCapacity: math.unit(50, "m^3"),
  31349. weight: math.unit(30, "tonnes"),
  31350. name: "Front",
  31351. image: {
  31352. source: "./media/characters/sydney/front.svg",
  31353. extra: 1177/1129,
  31354. bottom: 197/1374
  31355. },
  31356. extraAttributes: {
  31357. "length": {
  31358. name: "Length",
  31359. power: 1,
  31360. type: "length",
  31361. base: math.unit(21, "meters")
  31362. },
  31363. }
  31364. },
  31365. },
  31366. [
  31367. {
  31368. name: "Normal",
  31369. height: math.unit(4.2, "meters"),
  31370. default: true
  31371. },
  31372. ]
  31373. ))
  31374. characterMakers.push(() => makeCharacter(
  31375. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31376. {
  31377. back: {
  31378. height: math.unit(201, "feet"),
  31379. name: "Back",
  31380. image: {
  31381. source: "./media/characters/jessica/back.svg",
  31382. extra: 273 / 259,
  31383. bottom: 7 / 280
  31384. }
  31385. },
  31386. },
  31387. [
  31388. {
  31389. name: "Normal",
  31390. height: math.unit(201, "feet"),
  31391. default: true
  31392. },
  31393. {
  31394. name: "Megamacro",
  31395. height: math.unit(8, "miles")
  31396. },
  31397. ]
  31398. ))
  31399. characterMakers.push(() => makeCharacter(
  31400. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31401. {
  31402. side: {
  31403. height: math.unit(5.6, "m"),
  31404. weight: math.unit(8000, "kg"),
  31405. name: "Side",
  31406. image: {
  31407. source: "./media/characters/victoria/side.svg",
  31408. extra: 1542/1229,
  31409. bottom: 124/1666
  31410. }
  31411. },
  31412. maw: {
  31413. height: math.unit(7.14, "feet"),
  31414. name: "Maw",
  31415. image: {
  31416. source: "./media/characters/victoria/maw.svg"
  31417. }
  31418. },
  31419. },
  31420. [
  31421. {
  31422. name: "Normal",
  31423. height: math.unit(5.6, "m"),
  31424. default: true
  31425. },
  31426. ]
  31427. ))
  31428. characterMakers.push(() => makeCharacter(
  31429. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  31430. {
  31431. front: {
  31432. height: math.unit(5 + 6 / 12, "feet"),
  31433. name: "Front",
  31434. image: {
  31435. source: "./media/characters/cat/front.svg",
  31436. extra: 1449/1295,
  31437. bottom: 34/1483
  31438. },
  31439. form: "cat",
  31440. default: true
  31441. },
  31442. back: {
  31443. height: math.unit(5 + 6 / 12, "feet"),
  31444. name: "Back",
  31445. image: {
  31446. source: "./media/characters/cat/back.svg",
  31447. extra: 1466/1301,
  31448. bottom: 19/1485
  31449. },
  31450. form: "cat"
  31451. },
  31452. taur: {
  31453. height: math.unit(7, "feet"),
  31454. name: "Taur",
  31455. image: {
  31456. source: "./media/characters/cat/taur.svg",
  31457. extra: 1389/1233,
  31458. bottom: 83/1472
  31459. },
  31460. form: "taur",
  31461. default: true
  31462. },
  31463. lucarioFront: {
  31464. height: math.unit(4, "feet"),
  31465. name: "Lucario (Front)",
  31466. image: {
  31467. source: "./media/characters/cat/lucario-front.svg",
  31468. extra: 1149/1019,
  31469. bottom: 84/1233
  31470. },
  31471. form: "lucario",
  31472. default: true
  31473. },
  31474. lucarioBack: {
  31475. height: math.unit(4, "feet"),
  31476. name: "Lucario (Back)",
  31477. image: {
  31478. source: "./media/characters/cat/lucario-back.svg",
  31479. extra: 1190/1059,
  31480. bottom: 33/1223
  31481. },
  31482. form: "lucario"
  31483. },
  31484. megaLucario: {
  31485. height: math.unit(4, "feet"),
  31486. name: "Mega Lucario",
  31487. image: {
  31488. source: "./media/characters/cat/mega-lucario.svg",
  31489. extra: 1515 / 1319,
  31490. bottom: 63 / 1578
  31491. },
  31492. form: "lucario"
  31493. },
  31494. nickit: {
  31495. height: math.unit(2, "feet"),
  31496. name: "Nickit",
  31497. image: {
  31498. source: "./media/characters/cat/nickit.svg",
  31499. extra: 1980 / 1585,
  31500. bottom: 102 / 2082
  31501. },
  31502. form: "nickit",
  31503. default: true
  31504. },
  31505. lopunnyFront: {
  31506. height: math.unit(5, "feet"),
  31507. name: "Lopunny (Front)",
  31508. image: {
  31509. source: "./media/characters/cat/lopunny-front.svg",
  31510. extra: 1782 / 1469,
  31511. bottom: 38 / 1820
  31512. },
  31513. form: "lopunny",
  31514. default: true
  31515. },
  31516. lopunnyBack: {
  31517. height: math.unit(5, "feet"),
  31518. name: "Lopunny (Back)",
  31519. image: {
  31520. source: "./media/characters/cat/lopunny-back.svg",
  31521. extra: 1660 / 1490,
  31522. bottom: 25 / 1685
  31523. },
  31524. form: "lopunny"
  31525. },
  31526. },
  31527. [
  31528. {
  31529. name: "Really small",
  31530. height: math.unit(1, "nm"),
  31531. allForms: true
  31532. },
  31533. {
  31534. name: "Micro",
  31535. height: math.unit(5, "inches"),
  31536. allForms: true
  31537. },
  31538. {
  31539. name: "Normal",
  31540. height: math.unit(5 + 6 / 12, "feet"),
  31541. default: true,
  31542. form: "cat"
  31543. },
  31544. {
  31545. name: "Normal",
  31546. height: math.unit(7, "feet"),
  31547. default: true,
  31548. form: "taur"
  31549. },
  31550. {
  31551. name: "Normal",
  31552. height: math.unit(4, "feet"),
  31553. default: true,
  31554. form: "lucario"
  31555. },
  31556. {
  31557. name: "Normal",
  31558. height: math.unit(2, "feet"),
  31559. default: true,
  31560. form: "nickit"
  31561. },
  31562. {
  31563. name: "Normal",
  31564. height: math.unit(5, "feet"),
  31565. default: true,
  31566. form: "lopunny"
  31567. },
  31568. {
  31569. name: "Macro",
  31570. height: math.unit(50, "feet"),
  31571. allForms: true
  31572. },
  31573. {
  31574. name: "Macro+",
  31575. height: math.unit(150, "feet"),
  31576. allForms: true
  31577. },
  31578. {
  31579. name: "Megamacro",
  31580. height: math.unit(100, "miles"),
  31581. allForms: true
  31582. },
  31583. ],
  31584. {
  31585. "cat": {
  31586. name: "Cat",
  31587. default: true
  31588. },
  31589. "taur": {
  31590. name: "Taur",
  31591. },
  31592. "lucario": {
  31593. name: "Lucario",
  31594. },
  31595. "nickit": {
  31596. name: "Nickit",
  31597. },
  31598. "lopunny": {
  31599. name: "Lopunny",
  31600. }
  31601. }
  31602. ))
  31603. characterMakers.push(() => makeCharacter(
  31604. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31605. {
  31606. front: {
  31607. height: math.unit(63.4, "meters"),
  31608. weight: math.unit(3.28349e+6, "kilograms"),
  31609. name: "Front",
  31610. image: {
  31611. source: "./media/characters/kirina-violet/front.svg",
  31612. extra: 2812 / 2725,
  31613. bottom: 0 / 2812
  31614. }
  31615. },
  31616. back: {
  31617. height: math.unit(63.4, "meters"),
  31618. weight: math.unit(3.28349e+6, "kilograms"),
  31619. name: "Back",
  31620. image: {
  31621. source: "./media/characters/kirina-violet/back.svg",
  31622. extra: 2812 / 2725,
  31623. bottom: 0 / 2812
  31624. }
  31625. },
  31626. mouth: {
  31627. height: math.unit(4.35, "meters"),
  31628. name: "Mouth",
  31629. image: {
  31630. source: "./media/characters/kirina-violet/mouth.svg"
  31631. }
  31632. },
  31633. paw: {
  31634. height: math.unit(5.6, "meters"),
  31635. name: "Paw",
  31636. image: {
  31637. source: "./media/characters/kirina-violet/paw.svg"
  31638. }
  31639. },
  31640. tail: {
  31641. height: math.unit(18, "meters"),
  31642. name: "Tail",
  31643. image: {
  31644. source: "./media/characters/kirina-violet/tail.svg"
  31645. }
  31646. },
  31647. },
  31648. [
  31649. {
  31650. name: "Macro",
  31651. height: math.unit(63.4, "meters"),
  31652. default: true
  31653. },
  31654. ]
  31655. ))
  31656. characterMakers.push(() => makeCharacter(
  31657. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  31658. {
  31659. front: {
  31660. height: math.unit(75, "feet"),
  31661. name: "Front",
  31662. image: {
  31663. source: "./media/characters/cat-gigachu/front.svg",
  31664. extra: 1239/1027,
  31665. bottom: 32/1271
  31666. }
  31667. },
  31668. back: {
  31669. height: math.unit(75, "feet"),
  31670. name: "Back",
  31671. image: {
  31672. source: "./media/characters/cat-gigachu/back.svg",
  31673. extra: 1229/1030,
  31674. bottom: 9/1238
  31675. }
  31676. },
  31677. },
  31678. [
  31679. {
  31680. name: "Dynamax",
  31681. height: math.unit(75, "feet"),
  31682. default: true
  31683. },
  31684. ]
  31685. ))
  31686. characterMakers.push(() => makeCharacter(
  31687. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  31688. {
  31689. front: {
  31690. height: math.unit(6, "feet"),
  31691. weight: math.unit(150, "lb"),
  31692. name: "Front",
  31693. image: {
  31694. source: "./media/characters/sfaiyan/front.svg",
  31695. extra: 999 / 978,
  31696. bottom: 5 / 1004
  31697. }
  31698. },
  31699. },
  31700. [
  31701. {
  31702. name: "Normal",
  31703. height: math.unit(1.82, "meters")
  31704. },
  31705. {
  31706. name: "Giant",
  31707. height: math.unit(2.27, "km"),
  31708. default: true
  31709. },
  31710. ]
  31711. ))
  31712. characterMakers.push(() => makeCharacter(
  31713. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31714. {
  31715. front: {
  31716. height: math.unit(179, "cm"),
  31717. weight: math.unit(100, "kg"),
  31718. name: "Front",
  31719. image: {
  31720. source: "./media/characters/raunehkeli/front.svg",
  31721. extra: 1934 / 1926,
  31722. bottom: 0 / 1934
  31723. }
  31724. },
  31725. },
  31726. [
  31727. {
  31728. name: "Normal",
  31729. height: math.unit(179, "cm")
  31730. },
  31731. {
  31732. name: "Maximum",
  31733. height: math.unit(575, "meters"),
  31734. default: true
  31735. },
  31736. ]
  31737. ))
  31738. characterMakers.push(() => makeCharacter(
  31739. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31740. {
  31741. front: {
  31742. height: math.unit(6, "feet"),
  31743. weight: math.unit(150, "lb"),
  31744. name: "Front",
  31745. image: {
  31746. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31747. extra: 2625 / 2518,
  31748. bottom: 60 / 2685
  31749. }
  31750. },
  31751. },
  31752. [
  31753. {
  31754. name: "Normal",
  31755. height: math.unit(6 + 2 / 12, "feet")
  31756. },
  31757. {
  31758. name: "Macro",
  31759. height: math.unit(1180, "feet"),
  31760. default: true
  31761. },
  31762. ]
  31763. ))
  31764. characterMakers.push(() => makeCharacter(
  31765. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31766. {
  31767. front: {
  31768. height: math.unit(5 + 6 / 12, "feet"),
  31769. weight: math.unit(108, "lb"),
  31770. name: "Front",
  31771. image: {
  31772. source: "./media/characters/lilith-zott/front.svg",
  31773. extra: 2510 / 2238,
  31774. bottom: 100 / 2610
  31775. }
  31776. },
  31777. frontDressed: {
  31778. height: math.unit(5 + 6 / 12, "feet"),
  31779. weight: math.unit(108, "lb"),
  31780. name: "Front (Dressed)",
  31781. image: {
  31782. source: "./media/characters/lilith-zott/front-dressed.svg",
  31783. extra: 2510 / 2238,
  31784. bottom: 100 / 2610
  31785. }
  31786. },
  31787. },
  31788. [
  31789. {
  31790. name: "Normal",
  31791. height: math.unit(5 + 6 / 12, "feet")
  31792. },
  31793. {
  31794. name: "Macro",
  31795. height: math.unit(1030, "feet"),
  31796. default: true
  31797. },
  31798. ]
  31799. ))
  31800. characterMakers.push(() => makeCharacter(
  31801. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31802. {
  31803. front: {
  31804. height: math.unit(6, "feet"),
  31805. weight: math.unit(150, "lb"),
  31806. name: "Front",
  31807. image: {
  31808. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31809. extra: 2567 / 2435,
  31810. bottom: 39 / 2606
  31811. }
  31812. },
  31813. frontSuper: {
  31814. height: math.unit(6, "feet"),
  31815. name: "Front (Super)",
  31816. image: {
  31817. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31818. extra: 2567 / 2435,
  31819. bottom: 39 / 2606
  31820. }
  31821. },
  31822. },
  31823. [
  31824. {
  31825. name: "Normal",
  31826. height: math.unit(5 + 10 / 12, "feet")
  31827. },
  31828. {
  31829. name: "Macro",
  31830. height: math.unit(1100, "feet"),
  31831. default: true
  31832. },
  31833. ]
  31834. ))
  31835. characterMakers.push(() => makeCharacter(
  31836. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31837. {
  31838. front: {
  31839. height: math.unit(100, "miles"),
  31840. name: "Front",
  31841. image: {
  31842. source: "./media/characters/sona/front.svg",
  31843. extra: 2433 / 2201,
  31844. bottom: 53 / 2486
  31845. }
  31846. },
  31847. foot: {
  31848. height: math.unit(16.1, "miles"),
  31849. name: "Foot",
  31850. image: {
  31851. source: "./media/characters/sona/foot.svg"
  31852. }
  31853. },
  31854. },
  31855. [
  31856. {
  31857. name: "Macro",
  31858. height: math.unit(100, "miles"),
  31859. default: true
  31860. },
  31861. ]
  31862. ))
  31863. characterMakers.push(() => makeCharacter(
  31864. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31865. {
  31866. front: {
  31867. height: math.unit(6, "feet"),
  31868. weight: math.unit(150, "lb"),
  31869. name: "Front",
  31870. image: {
  31871. source: "./media/characters/bailey/front.svg",
  31872. extra: 1778 / 1724,
  31873. bottom: 30 / 1808
  31874. }
  31875. },
  31876. },
  31877. [
  31878. {
  31879. name: "Micro",
  31880. height: math.unit(4, "inches")
  31881. },
  31882. {
  31883. name: "Normal",
  31884. height: math.unit(5 + 5 / 12, "feet"),
  31885. default: true
  31886. },
  31887. {
  31888. name: "Macro",
  31889. height: math.unit(250, "feet")
  31890. },
  31891. {
  31892. name: "Megamacro",
  31893. height: math.unit(100, "miles")
  31894. },
  31895. ]
  31896. ))
  31897. characterMakers.push(() => makeCharacter(
  31898. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31899. {
  31900. front: {
  31901. height: math.unit(5 + 2 / 12, "feet"),
  31902. weight: math.unit(120, "lb"),
  31903. name: "Front",
  31904. image: {
  31905. source: "./media/characters/snaps/front.svg",
  31906. extra: 2370 / 2177,
  31907. bottom: 48 / 2418
  31908. }
  31909. },
  31910. back: {
  31911. height: math.unit(5 + 2 / 12, "feet"),
  31912. weight: math.unit(120, "lb"),
  31913. name: "Back",
  31914. image: {
  31915. source: "./media/characters/snaps/back.svg",
  31916. extra: 2408 / 2258,
  31917. bottom: 15 / 2423
  31918. }
  31919. },
  31920. },
  31921. [
  31922. {
  31923. name: "Micro",
  31924. height: math.unit(9, "inches")
  31925. },
  31926. {
  31927. name: "Normal",
  31928. height: math.unit(5 + 2 / 12, "feet"),
  31929. default: true
  31930. },
  31931. {
  31932. name: "Mini Macro",
  31933. height: math.unit(10, "feet")
  31934. },
  31935. ]
  31936. ))
  31937. characterMakers.push(() => makeCharacter(
  31938. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31939. {
  31940. front: {
  31941. height: math.unit(1.8, "meters"),
  31942. weight: math.unit(85, "kg"),
  31943. name: "Front",
  31944. image: {
  31945. source: "./media/characters/azteck/front.svg",
  31946. extra: 2815 / 2625,
  31947. bottom: 89 / 2904
  31948. }
  31949. },
  31950. back: {
  31951. height: math.unit(1.8, "meters"),
  31952. weight: math.unit(85, "kg"),
  31953. name: "Back",
  31954. image: {
  31955. source: "./media/characters/azteck/back.svg",
  31956. extra: 2856 / 2648,
  31957. bottom: 85 / 2941
  31958. }
  31959. },
  31960. frontDressed: {
  31961. height: math.unit(1.8, "meters"),
  31962. weight: math.unit(85, "kg"),
  31963. name: "Front (Dressed)",
  31964. image: {
  31965. source: "./media/characters/azteck/front-dressed.svg",
  31966. extra: 2147 / 2003,
  31967. bottom: 68 / 2215
  31968. }
  31969. },
  31970. head: {
  31971. height: math.unit(0.47, "meters"),
  31972. weight: math.unit(85, "kg"),
  31973. name: "Head",
  31974. image: {
  31975. source: "./media/characters/azteck/head.svg"
  31976. }
  31977. },
  31978. },
  31979. [
  31980. {
  31981. name: "Bite sized",
  31982. height: math.unit(16, "cm")
  31983. },
  31984. {
  31985. name: "Normal",
  31986. height: math.unit(1.8, "meters"),
  31987. default: true
  31988. },
  31989. ]
  31990. ))
  31991. characterMakers.push(() => makeCharacter(
  31992. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31993. {
  31994. front: {
  31995. height: math.unit(6, "feet"),
  31996. weight: math.unit(150, "lb"),
  31997. name: "Front",
  31998. image: {
  31999. source: "./media/characters/pidge/front.svg",
  32000. extra: 1936/1820,
  32001. bottom: 0/1936
  32002. }
  32003. },
  32004. back: {
  32005. height: math.unit(6, "feet"),
  32006. weight: math.unit(150, "lb"),
  32007. name: "Back",
  32008. image: {
  32009. source: "./media/characters/pidge/back.svg",
  32010. extra: 1938/1843,
  32011. bottom: 0/1938
  32012. }
  32013. },
  32014. casual: {
  32015. height: math.unit(6, "feet"),
  32016. weight: math.unit(150, "lb"),
  32017. name: "Casual",
  32018. image: {
  32019. source: "./media/characters/pidge/casual.svg",
  32020. extra: 1936/1820,
  32021. bottom: 0/1936
  32022. }
  32023. },
  32024. tech: {
  32025. height: math.unit(6, "feet"),
  32026. weight: math.unit(150, "lb"),
  32027. name: "Tech",
  32028. image: {
  32029. source: "./media/characters/pidge/tech.svg",
  32030. extra: 1802/1682,
  32031. bottom: 0/1802
  32032. }
  32033. },
  32034. head: {
  32035. height: math.unit(1.61, "feet"),
  32036. name: "Head",
  32037. image: {
  32038. source: "./media/characters/pidge/head.svg"
  32039. }
  32040. },
  32041. collar: {
  32042. height: math.unit(0.82, "feet"),
  32043. name: "Collar",
  32044. image: {
  32045. source: "./media/characters/pidge/collar.svg"
  32046. }
  32047. },
  32048. },
  32049. [
  32050. {
  32051. name: "Macro",
  32052. height: math.unit(2, "mile"),
  32053. default: true
  32054. },
  32055. {
  32056. name: "PUPPY",
  32057. height: math.unit(20, "miles")
  32058. },
  32059. ]
  32060. ))
  32061. characterMakers.push(() => makeCharacter(
  32062. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  32063. {
  32064. front: {
  32065. height: math.unit(6, "feet"),
  32066. weight: math.unit(150, "lb"),
  32067. name: "Front",
  32068. image: {
  32069. source: "./media/characters/en/front.svg",
  32070. extra: 1697 / 1563,
  32071. bottom: 103 / 1800
  32072. }
  32073. },
  32074. back: {
  32075. height: math.unit(6, "feet"),
  32076. weight: math.unit(150, "lb"),
  32077. name: "Back",
  32078. image: {
  32079. source: "./media/characters/en/back.svg",
  32080. extra: 1700 / 1570,
  32081. bottom: 51 / 1751
  32082. }
  32083. },
  32084. frontDressed: {
  32085. height: math.unit(6, "feet"),
  32086. weight: math.unit(150, "lb"),
  32087. name: "Front (Dressed)",
  32088. image: {
  32089. source: "./media/characters/en/front-dressed.svg",
  32090. extra: 1697 / 1563,
  32091. bottom: 103 / 1800
  32092. }
  32093. },
  32094. backDressed: {
  32095. height: math.unit(6, "feet"),
  32096. weight: math.unit(150, "lb"),
  32097. name: "Back (Dressed)",
  32098. image: {
  32099. source: "./media/characters/en/back-dressed.svg",
  32100. extra: 1700 / 1570,
  32101. bottom: 51 / 1751
  32102. }
  32103. },
  32104. },
  32105. [
  32106. {
  32107. name: "Macro",
  32108. height: math.unit(210, "feet"),
  32109. default: true
  32110. },
  32111. ]
  32112. ))
  32113. characterMakers.push(() => makeCharacter(
  32114. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  32115. {
  32116. front: {
  32117. height: math.unit(6, "feet"),
  32118. weight: math.unit(150, "lb"),
  32119. name: "Front",
  32120. image: {
  32121. source: "./media/characters/haze-orris/front.svg",
  32122. extra: 3975 / 3525,
  32123. bottom: 137 / 4112
  32124. }
  32125. },
  32126. },
  32127. [
  32128. {
  32129. name: "Micro",
  32130. height: math.unit(150, "mm"),
  32131. default: true
  32132. },
  32133. ]
  32134. ))
  32135. characterMakers.push(() => makeCharacter(
  32136. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  32137. {
  32138. front: {
  32139. height: math.unit(6, "feet"),
  32140. weight: math.unit(150, "lb"),
  32141. name: "Front",
  32142. image: {
  32143. source: "./media/characters/casselene-yaro/front.svg",
  32144. extra: 4721 / 4541,
  32145. bottom: 82 / 4803
  32146. }
  32147. },
  32148. back: {
  32149. height: math.unit(6, "feet"),
  32150. weight: math.unit(150, "lb"),
  32151. name: "Back",
  32152. image: {
  32153. source: "./media/characters/casselene-yaro/back.svg",
  32154. extra: 4569 / 4377,
  32155. bottom: 69 / 4638
  32156. }
  32157. },
  32158. dressed: {
  32159. height: math.unit(6, "feet"),
  32160. weight: math.unit(150, "lb"),
  32161. name: "Dressed",
  32162. image: {
  32163. source: "./media/characters/casselene-yaro/dressed.svg",
  32164. extra: 4721 / 4541,
  32165. bottom: 82 / 4803
  32166. }
  32167. },
  32168. maw: {
  32169. height: math.unit(1, "feet"),
  32170. name: "Maw",
  32171. image: {
  32172. source: "./media/characters/casselene-yaro/maw.svg"
  32173. }
  32174. },
  32175. },
  32176. [
  32177. {
  32178. name: "Macro",
  32179. height: math.unit(190, "feet"),
  32180. default: true
  32181. },
  32182. ]
  32183. ))
  32184. characterMakers.push(() => makeCharacter(
  32185. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  32186. {
  32187. front: {
  32188. height: math.unit(10, "feet"),
  32189. weight: math.unit(15015, "lb"),
  32190. name: "Front",
  32191. image: {
  32192. source: "./media/characters/platine/front.svg",
  32193. extra: 1741/1650,
  32194. bottom: 84/1825
  32195. }
  32196. },
  32197. side: {
  32198. height: math.unit(10, "feet"),
  32199. weight: math.unit(15015, "lb"),
  32200. name: "Side",
  32201. image: {
  32202. source: "./media/characters/platine/side.svg",
  32203. extra: 1790/1705,
  32204. bottom: 29/1819
  32205. }
  32206. },
  32207. },
  32208. [
  32209. {
  32210. name: "Normal",
  32211. height: math.unit(10, "feet"),
  32212. default: true
  32213. },
  32214. {
  32215. name: "Macro",
  32216. height: math.unit(100, "feet")
  32217. },
  32218. {
  32219. name: "Megamacro",
  32220. height: math.unit(1000, "feet")
  32221. },
  32222. ]
  32223. ))
  32224. characterMakers.push(() => makeCharacter(
  32225. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  32226. {
  32227. front: {
  32228. height: math.unit(15 + 5 / 12, "feet"),
  32229. weight: math.unit(4600, "lb"),
  32230. name: "Front",
  32231. image: {
  32232. source: "./media/characters/neapolitan-ananassa/front.svg",
  32233. extra: 2903 / 2736,
  32234. bottom: 0 / 2903
  32235. }
  32236. },
  32237. side: {
  32238. height: math.unit(15 + 5 / 12, "feet"),
  32239. weight: math.unit(4600, "lb"),
  32240. name: "Side",
  32241. image: {
  32242. source: "./media/characters/neapolitan-ananassa/side.svg",
  32243. extra: 2925 / 2719,
  32244. bottom: 0 / 2925
  32245. }
  32246. },
  32247. back: {
  32248. height: math.unit(15 + 5 / 12, "feet"),
  32249. weight: math.unit(4600, "lb"),
  32250. name: "Back",
  32251. image: {
  32252. source: "./media/characters/neapolitan-ananassa/back.svg",
  32253. extra: 2903 / 2736,
  32254. bottom: 0 / 2903
  32255. }
  32256. },
  32257. },
  32258. [
  32259. {
  32260. name: "Normal",
  32261. height: math.unit(15 + 5 / 12, "feet"),
  32262. default: true
  32263. },
  32264. {
  32265. name: "Post-Millenium",
  32266. height: math.unit(35 + 5 / 12, "feet")
  32267. },
  32268. {
  32269. name: "Post-Era",
  32270. height: math.unit(450 + 5 / 12, "feet")
  32271. },
  32272. ]
  32273. ))
  32274. characterMakers.push(() => makeCharacter(
  32275. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  32276. {
  32277. front: {
  32278. height: math.unit(300, "meters"),
  32279. weight: math.unit(125000, "tonnes"),
  32280. name: "Front",
  32281. image: {
  32282. source: "./media/characters/pazuzu/front.svg",
  32283. extra: 877 / 794,
  32284. bottom: 47 / 924
  32285. }
  32286. },
  32287. },
  32288. [
  32289. {
  32290. name: "Macro",
  32291. height: math.unit(300, "meters"),
  32292. default: true
  32293. },
  32294. ]
  32295. ))
  32296. characterMakers.push(() => makeCharacter(
  32297. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  32298. {
  32299. side: {
  32300. height: math.unit(10 + 7 / 12, "feet"),
  32301. weight: math.unit(2.5, "tons"),
  32302. name: "Side",
  32303. image: {
  32304. source: "./media/characters/aasha/side.svg",
  32305. extra: 1345 / 1245,
  32306. bottom: 111 / 1456
  32307. }
  32308. },
  32309. back: {
  32310. height: math.unit(10 + 7 / 12, "feet"),
  32311. weight: math.unit(2.5, "tons"),
  32312. name: "Back",
  32313. image: {
  32314. source: "./media/characters/aasha/back.svg",
  32315. extra: 1133 / 1057,
  32316. bottom: 257 / 1390
  32317. }
  32318. },
  32319. },
  32320. [
  32321. {
  32322. name: "Normal",
  32323. height: math.unit(10 + 7 / 12, "feet"),
  32324. default: true
  32325. },
  32326. ]
  32327. ))
  32328. characterMakers.push(() => makeCharacter(
  32329. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  32330. {
  32331. front: {
  32332. height: math.unit(6 + 3 / 12, "feet"),
  32333. name: "Front",
  32334. image: {
  32335. source: "./media/characters/nevan/front.svg",
  32336. extra: 704 / 704,
  32337. bottom: 28 / 732
  32338. }
  32339. },
  32340. back: {
  32341. height: math.unit(6 + 3 / 12, "feet"),
  32342. name: "Back",
  32343. image: {
  32344. source: "./media/characters/nevan/back.svg",
  32345. extra: 714 / 714,
  32346. bottom: 21 / 735
  32347. }
  32348. },
  32349. frontFlaccid: {
  32350. height: math.unit(6 + 3 / 12, "feet"),
  32351. name: "Front (Flaccid)",
  32352. image: {
  32353. source: "./media/characters/nevan/front-flaccid.svg",
  32354. extra: 704 / 704,
  32355. bottom: 28 / 732
  32356. }
  32357. },
  32358. frontErect: {
  32359. height: math.unit(6 + 3 / 12, "feet"),
  32360. name: "Front (Erect)",
  32361. image: {
  32362. source: "./media/characters/nevan/front-erect.svg",
  32363. extra: 704 / 704,
  32364. bottom: 28 / 732
  32365. }
  32366. },
  32367. backFlaccid: {
  32368. height: math.unit(6 + 3 / 12, "feet"),
  32369. name: "Back (Flaccid)",
  32370. image: {
  32371. source: "./media/characters/nevan/back-flaccid.svg",
  32372. extra: 714 / 714,
  32373. bottom: 21 / 735
  32374. }
  32375. },
  32376. },
  32377. [
  32378. {
  32379. name: "Normal",
  32380. height: math.unit(6 + 3 / 12, "feet"),
  32381. default: true
  32382. },
  32383. ]
  32384. ))
  32385. characterMakers.push(() => makeCharacter(
  32386. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32387. {
  32388. front: {
  32389. height: math.unit(4, "feet"),
  32390. name: "Front",
  32391. image: {
  32392. source: "./media/characters/arhan/front.svg",
  32393. extra: 3368 / 3133,
  32394. bottom: 0 / 3368
  32395. }
  32396. },
  32397. side: {
  32398. height: math.unit(4, "feet"),
  32399. name: "Side",
  32400. image: {
  32401. source: "./media/characters/arhan/side.svg",
  32402. extra: 3347 / 3105,
  32403. bottom: 0 / 3347
  32404. }
  32405. },
  32406. tongue: {
  32407. height: math.unit(1.42, "feet"),
  32408. name: "Tongue",
  32409. image: {
  32410. source: "./media/characters/arhan/tongue.svg"
  32411. }
  32412. },
  32413. head: {
  32414. height: math.unit(0.85, "feet"),
  32415. name: "Head",
  32416. image: {
  32417. source: "./media/characters/arhan/head.svg"
  32418. }
  32419. },
  32420. },
  32421. [
  32422. {
  32423. name: "Normal",
  32424. height: math.unit(4, "feet"),
  32425. default: true
  32426. },
  32427. ]
  32428. ))
  32429. characterMakers.push(() => makeCharacter(
  32430. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32431. {
  32432. front: {
  32433. height: math.unit(5 + 7.5 / 12, "feet"),
  32434. weight: math.unit(120, "lb"),
  32435. name: "Front",
  32436. image: {
  32437. source: "./media/characters/digi-duncan/front.svg",
  32438. extra: 330 / 326,
  32439. bottom: 16 / 346
  32440. }
  32441. },
  32442. side: {
  32443. height: math.unit(5 + 7.5 / 12, "feet"),
  32444. weight: math.unit(120, "lb"),
  32445. name: "Side",
  32446. image: {
  32447. source: "./media/characters/digi-duncan/side.svg",
  32448. extra: 341 / 337,
  32449. bottom: 1 / 342
  32450. }
  32451. },
  32452. back: {
  32453. height: math.unit(5 + 7.5 / 12, "feet"),
  32454. weight: math.unit(120, "lb"),
  32455. name: "Back",
  32456. image: {
  32457. source: "./media/characters/digi-duncan/back.svg",
  32458. extra: 330 / 326,
  32459. bottom: 12 / 342
  32460. }
  32461. },
  32462. },
  32463. [
  32464. {
  32465. name: "Speck",
  32466. height: math.unit(0.25, "mm")
  32467. },
  32468. {
  32469. name: "Micro",
  32470. height: math.unit(5, "mm")
  32471. },
  32472. {
  32473. name: "Tiny",
  32474. height: math.unit(0.5, "inches"),
  32475. default: true
  32476. },
  32477. {
  32478. name: "Human",
  32479. height: math.unit(5 + 7.5 / 12, "feet")
  32480. },
  32481. {
  32482. name: "Minigiant",
  32483. height: math.unit(8 + 5.25, "feet")
  32484. },
  32485. {
  32486. name: "Giant",
  32487. height: math.unit(2000, "feet")
  32488. },
  32489. {
  32490. name: "Mega",
  32491. height: math.unit(371.1, "miles")
  32492. },
  32493. ]
  32494. ))
  32495. characterMakers.push(() => makeCharacter(
  32496. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32497. {
  32498. front: {
  32499. height: math.unit(2, "meters"),
  32500. weight: math.unit(350, "kg"),
  32501. name: "Front",
  32502. image: {
  32503. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32504. extra: 898 / 838,
  32505. bottom: 9 / 907
  32506. }
  32507. },
  32508. },
  32509. [
  32510. {
  32511. name: "Micro",
  32512. height: math.unit(8, "meters")
  32513. },
  32514. {
  32515. name: "Normal",
  32516. height: math.unit(50, "meters"),
  32517. default: true
  32518. },
  32519. {
  32520. name: "Macro",
  32521. height: math.unit(500, "meters")
  32522. },
  32523. ]
  32524. ))
  32525. characterMakers.push(() => makeCharacter(
  32526. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32527. {
  32528. front: {
  32529. height: math.unit(6 + 6 / 12, "feet"),
  32530. name: "Front",
  32531. image: {
  32532. source: "./media/characters/khardesh/front.svg",
  32533. extra: 1788/1596,
  32534. bottom: 66/1854
  32535. }
  32536. },
  32537. back: {
  32538. height: math.unit(6 + 6 / 12, "feet"),
  32539. name: "Back",
  32540. image: {
  32541. source: "./media/characters/khardesh/back.svg",
  32542. extra: 1781/1584,
  32543. bottom: 68/1849
  32544. }
  32545. },
  32546. },
  32547. [
  32548. {
  32549. name: "Normal",
  32550. height: math.unit(6 + 6 / 12, "feet"),
  32551. default: true
  32552. },
  32553. {
  32554. name: "Normal+",
  32555. height: math.unit(4, "meters")
  32556. },
  32557. {
  32558. name: "Macro",
  32559. height: math.unit(50, "meters")
  32560. },
  32561. {
  32562. name: "Macro+",
  32563. height: math.unit(100, "meters")
  32564. },
  32565. {
  32566. name: "Megamacro",
  32567. height: math.unit(20, "km")
  32568. },
  32569. ]
  32570. ))
  32571. characterMakers.push(() => makeCharacter(
  32572. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32573. {
  32574. front: {
  32575. height: math.unit(6, "feet"),
  32576. weight: math.unit(150, "lb"),
  32577. name: "Front",
  32578. image: {
  32579. source: "./media/characters/kosho/front.svg",
  32580. extra: 1847 / 1847,
  32581. bottom: 86 / 1933
  32582. }
  32583. },
  32584. },
  32585. [
  32586. {
  32587. name: "Second-stage micro",
  32588. height: math.unit(0.5, "inches")
  32589. },
  32590. {
  32591. name: "First-stage micro",
  32592. height: math.unit(6, "inches")
  32593. },
  32594. {
  32595. name: "Normal",
  32596. height: math.unit(6, "feet"),
  32597. default: true
  32598. },
  32599. {
  32600. name: "First-stage macro",
  32601. height: math.unit(72, "feet")
  32602. },
  32603. {
  32604. name: "Second-stage macro",
  32605. height: math.unit(864, "feet")
  32606. },
  32607. ]
  32608. ))
  32609. characterMakers.push(() => makeCharacter(
  32610. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32611. {
  32612. normal: {
  32613. height: math.unit(4 + 6 / 12, "feet"),
  32614. name: "Normal",
  32615. image: {
  32616. source: "./media/characters/hydra/normal.svg",
  32617. extra: 2833 / 2634,
  32618. bottom: 68 / 2901
  32619. }
  32620. },
  32621. smol: {
  32622. height: math.unit(0.705, "inches"),
  32623. name: "Smol",
  32624. image: {
  32625. source: "./media/characters/hydra/smol.svg",
  32626. extra: 2715 / 2540,
  32627. bottom: 0 / 2715
  32628. }
  32629. },
  32630. },
  32631. [
  32632. {
  32633. name: "Normal",
  32634. height: math.unit(4 + 6 / 12, "feet"),
  32635. default: true
  32636. }
  32637. ]
  32638. ))
  32639. characterMakers.push(() => makeCharacter(
  32640. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32641. {
  32642. front: {
  32643. height: math.unit(0.6, "cm"),
  32644. name: "Front",
  32645. image: {
  32646. source: "./media/characters/daz/front.svg",
  32647. extra: 1682 / 1164,
  32648. bottom: 42 / 1724
  32649. }
  32650. },
  32651. },
  32652. [
  32653. {
  32654. name: "Normal",
  32655. height: math.unit(0.6, "cm"),
  32656. default: true
  32657. },
  32658. ]
  32659. ))
  32660. characterMakers.push(() => makeCharacter(
  32661. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32662. {
  32663. front: {
  32664. height: math.unit(6, "feet"),
  32665. weight: math.unit(235, "lb"),
  32666. name: "Front",
  32667. image: {
  32668. source: "./media/characters/theo-pangolin/front.svg",
  32669. extra: 1996 / 1969,
  32670. bottom: 115 / 2111
  32671. }
  32672. },
  32673. back: {
  32674. height: math.unit(6, "feet"),
  32675. weight: math.unit(235, "lb"),
  32676. name: "Back",
  32677. image: {
  32678. source: "./media/characters/theo-pangolin/back.svg",
  32679. extra: 1979 / 1979,
  32680. bottom: 40 / 2019
  32681. }
  32682. },
  32683. feral: {
  32684. height: math.unit(2, "feet"),
  32685. weight: math.unit(30, "lb"),
  32686. name: "Feral",
  32687. image: {
  32688. source: "./media/characters/theo-pangolin/feral.svg",
  32689. extra: 803 / 791,
  32690. bottom: 181 / 984
  32691. }
  32692. },
  32693. footFive: {
  32694. height: math.unit(1.43, "feet"),
  32695. name: "Foot (Five Toes)",
  32696. image: {
  32697. source: "./media/characters/theo-pangolin/foot-five.svg"
  32698. }
  32699. },
  32700. footFour: {
  32701. height: math.unit(1.43, "feet"),
  32702. name: "Foot (Four Toes)",
  32703. image: {
  32704. source: "./media/characters/theo-pangolin/foot-four.svg"
  32705. }
  32706. },
  32707. handFour: {
  32708. height: math.unit(0.81, "feet"),
  32709. name: "Hand (Four Fingers)",
  32710. image: {
  32711. source: "./media/characters/theo-pangolin/hand-four.svg"
  32712. }
  32713. },
  32714. handThree: {
  32715. height: math.unit(0.81, "feet"),
  32716. name: "Hand (Three Fingers)",
  32717. image: {
  32718. source: "./media/characters/theo-pangolin/hand-three.svg"
  32719. }
  32720. },
  32721. headFront: {
  32722. height: math.unit(1.37, "feet"),
  32723. name: "Head (Front)",
  32724. image: {
  32725. source: "./media/characters/theo-pangolin/head-front.svg"
  32726. }
  32727. },
  32728. headSide: {
  32729. height: math.unit(1.43, "feet"),
  32730. name: "Head (Side)",
  32731. image: {
  32732. source: "./media/characters/theo-pangolin/head-side.svg"
  32733. }
  32734. },
  32735. tongue: {
  32736. height: math.unit(2.29, "feet"),
  32737. name: "Tongue",
  32738. image: {
  32739. source: "./media/characters/theo-pangolin/tongue.svg"
  32740. }
  32741. },
  32742. },
  32743. [
  32744. {
  32745. name: "Normal",
  32746. height: math.unit(6, "feet")
  32747. },
  32748. {
  32749. name: "Macro",
  32750. height: math.unit(400, "feet"),
  32751. default: true
  32752. },
  32753. ]
  32754. ))
  32755. characterMakers.push(() => makeCharacter(
  32756. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32757. {
  32758. front: {
  32759. height: math.unit(6, "inches"),
  32760. weight: math.unit(0.036, "kg"),
  32761. name: "Front",
  32762. image: {
  32763. source: "./media/characters/renée/front.svg",
  32764. extra: 900 / 886,
  32765. bottom: 8 / 908
  32766. }
  32767. },
  32768. },
  32769. [
  32770. {
  32771. name: "Nano",
  32772. height: math.unit(1, "nm")
  32773. },
  32774. {
  32775. name: "Micro",
  32776. height: math.unit(1, "mm")
  32777. },
  32778. {
  32779. name: "Normal",
  32780. height: math.unit(6, "inches")
  32781. },
  32782. {
  32783. name: "Macro",
  32784. height: math.unit(2000, "feet"),
  32785. default: true
  32786. },
  32787. {
  32788. name: "Megamacro",
  32789. height: math.unit(2, "km")
  32790. },
  32791. {
  32792. name: "Gigamacro",
  32793. height: math.unit(2000, "km")
  32794. },
  32795. {
  32796. name: "Teramacro",
  32797. height: math.unit(250000, "km")
  32798. },
  32799. ]
  32800. ))
  32801. characterMakers.push(() => makeCharacter(
  32802. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32803. {
  32804. front: {
  32805. height: math.unit(4, "meters"),
  32806. weight: math.unit(150, "kg"),
  32807. name: "Front",
  32808. image: {
  32809. source: "./media/characters/caledvwlch/front.svg",
  32810. extra: 1757/1537,
  32811. bottom: 31/1788
  32812. }
  32813. },
  32814. side: {
  32815. height: math.unit(4, "meters"),
  32816. weight: math.unit(150, "kg"),
  32817. name: "Side",
  32818. image: {
  32819. source: "./media/characters/caledvwlch/side.svg",
  32820. extra: 1605 / 1536,
  32821. bottom: 31 / 1636
  32822. }
  32823. },
  32824. back: {
  32825. height: math.unit(4, "meters"),
  32826. weight: math.unit(150, "kg"),
  32827. name: "Back",
  32828. image: {
  32829. source: "./media/characters/caledvwlch/back.svg",
  32830. extra: 1635 / 1565,
  32831. bottom: 27 / 1662
  32832. }
  32833. },
  32834. },
  32835. [
  32836. {
  32837. name: "\"Incognito\"",
  32838. height: math.unit(4, "meters")
  32839. },
  32840. {
  32841. name: "Small rampage",
  32842. height: math.unit(600, "meters")
  32843. },
  32844. {
  32845. name: "Mega",
  32846. height: math.unit(30, "km")
  32847. },
  32848. {
  32849. name: "Home-size",
  32850. height: math.unit(50, "km"),
  32851. default: true
  32852. },
  32853. {
  32854. name: "Giga",
  32855. height: math.unit(300, "km")
  32856. },
  32857. {
  32858. name: "Lounging",
  32859. height: math.unit(11000, "km")
  32860. },
  32861. {
  32862. name: "Planet snacking",
  32863. height: math.unit(2000000, "km")
  32864. },
  32865. ]
  32866. ))
  32867. characterMakers.push(() => makeCharacter(
  32868. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32869. {
  32870. front: {
  32871. height: math.unit(6, "feet"),
  32872. weight: math.unit(215, "lb"),
  32873. name: "Front",
  32874. image: {
  32875. source: "./media/characters/sapphire-svell/front.svg",
  32876. extra: 495 / 455,
  32877. bottom: 20 / 515
  32878. }
  32879. },
  32880. back: {
  32881. height: math.unit(6, "feet"),
  32882. weight: math.unit(216, "lb"),
  32883. name: "Back",
  32884. image: {
  32885. source: "./media/characters/sapphire-svell/back.svg",
  32886. extra: 497 / 477,
  32887. bottom: 7 / 504
  32888. }
  32889. },
  32890. maw: {
  32891. height: math.unit(1.57, "feet"),
  32892. name: "Maw",
  32893. image: {
  32894. source: "./media/characters/sapphire-svell/maw.svg"
  32895. }
  32896. },
  32897. foot: {
  32898. height: math.unit(1.07, "feet"),
  32899. name: "Foot",
  32900. image: {
  32901. source: "./media/characters/sapphire-svell/foot.svg"
  32902. }
  32903. },
  32904. toering: {
  32905. height: math.unit(1.7, "inch"),
  32906. name: "Toering",
  32907. image: {
  32908. source: "./media/characters/sapphire-svell/toering.svg"
  32909. }
  32910. },
  32911. },
  32912. [
  32913. {
  32914. name: "Normal",
  32915. height: math.unit(300, "feet"),
  32916. default: true
  32917. },
  32918. {
  32919. name: "Augmented",
  32920. height: math.unit(1250, "feet")
  32921. },
  32922. {
  32923. name: "Unleashed",
  32924. height: math.unit(3000, "feet")
  32925. },
  32926. ]
  32927. ))
  32928. characterMakers.push(() => makeCharacter(
  32929. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32930. {
  32931. side: {
  32932. height: math.unit(2 + 3 / 12, "feet"),
  32933. weight: math.unit(110, "lb"),
  32934. name: "Side",
  32935. image: {
  32936. source: "./media/characters/glitch-flux/side.svg",
  32937. extra: 997 / 805,
  32938. bottom: 20 / 1017
  32939. }
  32940. },
  32941. },
  32942. [
  32943. {
  32944. name: "Normal",
  32945. height: math.unit(2 + 3 / 12, "feet"),
  32946. default: true
  32947. },
  32948. ]
  32949. ))
  32950. characterMakers.push(() => makeCharacter(
  32951. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32952. {
  32953. front: {
  32954. height: math.unit(4, "meters"),
  32955. name: "Front",
  32956. image: {
  32957. source: "./media/characters/mid/front.svg",
  32958. extra: 507 / 476,
  32959. bottom: 17 / 524
  32960. }
  32961. },
  32962. back: {
  32963. height: math.unit(4, "meters"),
  32964. name: "Back",
  32965. image: {
  32966. source: "./media/characters/mid/back.svg",
  32967. extra: 519 / 487,
  32968. bottom: 7 / 526
  32969. }
  32970. },
  32971. stuck: {
  32972. height: math.unit(2.2, "meters"),
  32973. name: "Stuck",
  32974. image: {
  32975. source: "./media/characters/mid/stuck.svg",
  32976. extra: 1951 / 1869,
  32977. bottom: 88 / 2039
  32978. }
  32979. }
  32980. },
  32981. [
  32982. {
  32983. name: "Normal",
  32984. height: math.unit(4, "meters"),
  32985. default: true
  32986. },
  32987. {
  32988. name: "Big",
  32989. height: math.unit(10, "meters")
  32990. },
  32991. {
  32992. name: "Macro",
  32993. height: math.unit(800, "meters")
  32994. },
  32995. {
  32996. name: "Megamacro",
  32997. height: math.unit(100, "km")
  32998. },
  32999. {
  33000. name: "Overgrown",
  33001. height: math.unit(1, "parsec")
  33002. },
  33003. ]
  33004. ))
  33005. characterMakers.push(() => makeCharacter(
  33006. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  33007. {
  33008. front: {
  33009. height: math.unit(2.5, "meters"),
  33010. weight: math.unit(225, "kg"),
  33011. name: "Front",
  33012. image: {
  33013. source: "./media/characters/iris/front.svg",
  33014. extra: 3348 / 3251,
  33015. bottom: 205 / 3553
  33016. }
  33017. },
  33018. maw: {
  33019. height: math.unit(0.56, "meter"),
  33020. name: "Maw",
  33021. image: {
  33022. source: "./media/characters/iris/maw.svg"
  33023. }
  33024. },
  33025. },
  33026. [
  33027. {
  33028. name: "Mewter cat",
  33029. height: math.unit(1.2, "meters")
  33030. },
  33031. {
  33032. name: "Normal",
  33033. height: math.unit(2.5, "meters"),
  33034. default: true
  33035. },
  33036. {
  33037. name: "Minimacro",
  33038. height: math.unit(18, "feet")
  33039. },
  33040. {
  33041. name: "Macro",
  33042. height: math.unit(140, "feet")
  33043. },
  33044. {
  33045. name: "Macro+",
  33046. height: math.unit(180, "meters")
  33047. },
  33048. {
  33049. name: "Megamacro",
  33050. height: math.unit(2746, "meters")
  33051. },
  33052. ]
  33053. ))
  33054. characterMakers.push(() => makeCharacter(
  33055. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  33056. {
  33057. front: {
  33058. height: math.unit(6, "feet"),
  33059. weight: math.unit(135, "lb"),
  33060. name: "Front",
  33061. image: {
  33062. source: "./media/characters/axel/front.svg",
  33063. extra: 908 / 908,
  33064. bottom: 58 / 966
  33065. }
  33066. },
  33067. side: {
  33068. height: math.unit(6, "feet"),
  33069. weight: math.unit(135, "lb"),
  33070. name: "Side",
  33071. image: {
  33072. source: "./media/characters/axel/side.svg",
  33073. extra: 958 / 958,
  33074. bottom: 11 / 969
  33075. }
  33076. },
  33077. back: {
  33078. height: math.unit(6, "feet"),
  33079. weight: math.unit(135, "lb"),
  33080. name: "Back",
  33081. image: {
  33082. source: "./media/characters/axel/back.svg",
  33083. extra: 887 / 887,
  33084. bottom: 34 / 921
  33085. }
  33086. },
  33087. head: {
  33088. height: math.unit(1.07, "feet"),
  33089. name: "Head",
  33090. image: {
  33091. source: "./media/characters/axel/head.svg"
  33092. }
  33093. },
  33094. beak: {
  33095. height: math.unit(1.4, "feet"),
  33096. name: "Beak",
  33097. image: {
  33098. source: "./media/characters/axel/beak.svg"
  33099. }
  33100. },
  33101. beakSide: {
  33102. height: math.unit(1.4, "feet"),
  33103. name: "Beak Side",
  33104. image: {
  33105. source: "./media/characters/axel/beak-side.svg"
  33106. }
  33107. },
  33108. sheath: {
  33109. height: math.unit(0.5, "feet"),
  33110. name: "Sheath",
  33111. image: {
  33112. source: "./media/characters/axel/sheath.svg"
  33113. }
  33114. },
  33115. dick: {
  33116. height: math.unit(0.98, "feet"),
  33117. name: "Dick",
  33118. image: {
  33119. source: "./media/characters/axel/dick.svg"
  33120. }
  33121. },
  33122. },
  33123. [
  33124. {
  33125. name: "Macro",
  33126. height: math.unit(68, "meters"),
  33127. default: true
  33128. },
  33129. ]
  33130. ))
  33131. characterMakers.push(() => makeCharacter(
  33132. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  33133. {
  33134. front: {
  33135. height: math.unit(3.5, "meters"),
  33136. weight: math.unit(1200, "kg"),
  33137. name: "Front",
  33138. image: {
  33139. source: "./media/characters/joanna/front.svg",
  33140. extra: 1596 / 1488,
  33141. bottom: 29 / 1625
  33142. }
  33143. },
  33144. back: {
  33145. height: math.unit(3.5, "meters"),
  33146. weight: math.unit(1200, "kg"),
  33147. name: "Back",
  33148. image: {
  33149. source: "./media/characters/joanna/back.svg",
  33150. extra: 1594 / 1495,
  33151. bottom: 26 / 1620
  33152. }
  33153. },
  33154. frontShorts: {
  33155. height: math.unit(3.5, "meters"),
  33156. weight: math.unit(1200, "kg"),
  33157. name: "Front (Shorts)",
  33158. image: {
  33159. source: "./media/characters/joanna/front-shorts.svg",
  33160. extra: 1596 / 1488,
  33161. bottom: 29 / 1625
  33162. }
  33163. },
  33164. frontBiker: {
  33165. height: math.unit(3.5, "meters"),
  33166. weight: math.unit(1200, "kg"),
  33167. name: "Front (Biker)",
  33168. image: {
  33169. source: "./media/characters/joanna/front-biker.svg",
  33170. extra: 1596 / 1488,
  33171. bottom: 29 / 1625
  33172. }
  33173. },
  33174. backBiker: {
  33175. height: math.unit(3.5, "meters"),
  33176. weight: math.unit(1200, "kg"),
  33177. name: "Back (Biker)",
  33178. image: {
  33179. source: "./media/characters/joanna/back-biker.svg",
  33180. extra: 1594 / 1495,
  33181. bottom: 88 / 1682
  33182. }
  33183. },
  33184. bikeLeft: {
  33185. height: math.unit(2.4, "meters"),
  33186. weight: math.unit(1600, "kg"),
  33187. name: "Bike (Left)",
  33188. image: {
  33189. source: "./media/characters/joanna/bike-left.svg",
  33190. extra: 720 / 720,
  33191. bottom: 8 / 728
  33192. }
  33193. },
  33194. bikeRight: {
  33195. height: math.unit(2.4, "meters"),
  33196. weight: math.unit(1600, "kg"),
  33197. name: "Bike (Right)",
  33198. image: {
  33199. source: "./media/characters/joanna/bike-right.svg",
  33200. extra: 720 / 720,
  33201. bottom: 8 / 728
  33202. }
  33203. },
  33204. },
  33205. [
  33206. {
  33207. name: "Incognito",
  33208. height: math.unit(3.5, "meters")
  33209. },
  33210. {
  33211. name: "Casual Big",
  33212. height: math.unit(200, "meters")
  33213. },
  33214. {
  33215. name: "Macro",
  33216. height: math.unit(600, "meters")
  33217. },
  33218. {
  33219. name: "Original",
  33220. height: math.unit(20, "km"),
  33221. default: true
  33222. },
  33223. {
  33224. name: "Giga",
  33225. height: math.unit(400, "km")
  33226. },
  33227. {
  33228. name: "Lounging",
  33229. height: math.unit(1500, "km")
  33230. },
  33231. {
  33232. name: "Planetary",
  33233. height: math.unit(200000, "km")
  33234. },
  33235. ]
  33236. ))
  33237. characterMakers.push(() => makeCharacter(
  33238. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  33239. {
  33240. front: {
  33241. height: math.unit(6, "feet"),
  33242. weight: math.unit(150, "lb"),
  33243. name: "Front",
  33244. image: {
  33245. source: "./media/characters/hugo-sigil/front.svg",
  33246. extra: 522 / 500,
  33247. bottom: 2 / 524
  33248. }
  33249. },
  33250. back: {
  33251. height: math.unit(6, "feet"),
  33252. weight: math.unit(150, "lb"),
  33253. name: "Back",
  33254. image: {
  33255. source: "./media/characters/hugo-sigil/back.svg",
  33256. extra: 519 / 495,
  33257. bottom: 5 / 524
  33258. }
  33259. },
  33260. maw: {
  33261. height: math.unit(1.4, "feet"),
  33262. weight: math.unit(150, "lb"),
  33263. name: "Maw",
  33264. image: {
  33265. source: "./media/characters/hugo-sigil/maw.svg"
  33266. }
  33267. },
  33268. feet: {
  33269. height: math.unit(1.56, "feet"),
  33270. weight: math.unit(150, "lb"),
  33271. name: "Feet",
  33272. image: {
  33273. source: "./media/characters/hugo-sigil/feet.svg",
  33274. extra: 177 / 177,
  33275. bottom: 12 / 189
  33276. }
  33277. },
  33278. },
  33279. [
  33280. {
  33281. name: "Normal",
  33282. height: math.unit(6, "feet")
  33283. },
  33284. {
  33285. name: "Macro",
  33286. height: math.unit(200, "feet"),
  33287. default: true
  33288. },
  33289. ]
  33290. ))
  33291. characterMakers.push(() => makeCharacter(
  33292. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  33293. {
  33294. front: {
  33295. height: math.unit(6, "feet"),
  33296. weight: math.unit(150, "lb"),
  33297. name: "Front",
  33298. image: {
  33299. source: "./media/characters/peri/front.svg",
  33300. extra: 2354 / 2233,
  33301. bottom: 49 / 2403
  33302. }
  33303. },
  33304. },
  33305. [
  33306. {
  33307. name: "Really Small",
  33308. height: math.unit(1, "nm")
  33309. },
  33310. {
  33311. name: "Micro",
  33312. height: math.unit(4, "inches")
  33313. },
  33314. {
  33315. name: "Normal",
  33316. height: math.unit(7, "inches"),
  33317. default: true
  33318. },
  33319. {
  33320. name: "Macro",
  33321. height: math.unit(400, "feet")
  33322. },
  33323. {
  33324. name: "Megamacro",
  33325. height: math.unit(100, "miles")
  33326. },
  33327. ]
  33328. ))
  33329. characterMakers.push(() => makeCharacter(
  33330. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  33331. {
  33332. frontSlim: {
  33333. height: math.unit(7, "feet"),
  33334. name: "Front (Slim)",
  33335. image: {
  33336. source: "./media/characters/issilora/front-slim.svg",
  33337. extra: 529 / 449,
  33338. bottom: 53 / 582
  33339. }
  33340. },
  33341. sideSlim: {
  33342. height: math.unit(7, "feet"),
  33343. name: "Side (Slim)",
  33344. image: {
  33345. source: "./media/characters/issilora/side-slim.svg",
  33346. extra: 570 / 480,
  33347. bottom: 30 / 600
  33348. }
  33349. },
  33350. backSlim: {
  33351. height: math.unit(7, "feet"),
  33352. name: "Back (Slim)",
  33353. image: {
  33354. source: "./media/characters/issilora/back-slim.svg",
  33355. extra: 537 / 455,
  33356. bottom: 46 / 583
  33357. }
  33358. },
  33359. frontBuff: {
  33360. height: math.unit(7, "feet"),
  33361. name: "Front (Buff)",
  33362. image: {
  33363. source: "./media/characters/issilora/front-buff.svg",
  33364. extra: 2310 / 2035,
  33365. bottom: 335 / 2645
  33366. }
  33367. },
  33368. head: {
  33369. height: math.unit(1.94, "feet"),
  33370. name: "Head",
  33371. image: {
  33372. source: "./media/characters/issilora/head.svg"
  33373. }
  33374. },
  33375. },
  33376. [
  33377. {
  33378. name: "Minimum",
  33379. height: math.unit(7, "feet")
  33380. },
  33381. {
  33382. name: "Comfortable",
  33383. height: math.unit(17, "feet")
  33384. },
  33385. {
  33386. name: "Fun Size",
  33387. height: math.unit(47, "feet")
  33388. },
  33389. {
  33390. name: "Natural Macro",
  33391. height: math.unit(137, "feet"),
  33392. default: true
  33393. },
  33394. {
  33395. name: "Maximum Kaiju",
  33396. height: math.unit(397, "feet")
  33397. },
  33398. ]
  33399. ))
  33400. characterMakers.push(() => makeCharacter(
  33401. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33402. {
  33403. front: {
  33404. height: math.unit(50 + 9/12, "feet"),
  33405. weight: math.unit(32.8, "tons"),
  33406. name: "Front",
  33407. image: {
  33408. source: "./media/characters/irb'iiritaahn/front.svg",
  33409. extra: 1878/1826,
  33410. bottom: 326/2204
  33411. }
  33412. },
  33413. back: {
  33414. height: math.unit(50 + 9/12, "feet"),
  33415. weight: math.unit(32.8, "tons"),
  33416. name: "Back",
  33417. image: {
  33418. source: "./media/characters/irb'iiritaahn/back.svg",
  33419. extra: 2052/2018,
  33420. bottom: 152/2204
  33421. }
  33422. },
  33423. head: {
  33424. height: math.unit(12.86, "feet"),
  33425. name: "Head",
  33426. image: {
  33427. source: "./media/characters/irb'iiritaahn/head.svg"
  33428. }
  33429. },
  33430. maw: {
  33431. height: math.unit(9.66, "feet"),
  33432. name: "Maw",
  33433. image: {
  33434. source: "./media/characters/irb'iiritaahn/maw.svg"
  33435. }
  33436. },
  33437. frontDick: {
  33438. height: math.unit(8.78461, "feet"),
  33439. name: "Front Dick",
  33440. image: {
  33441. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33442. }
  33443. },
  33444. rearDick: {
  33445. height: math.unit(8.78461, "feet"),
  33446. name: "Rear Dick",
  33447. image: {
  33448. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33449. }
  33450. },
  33451. rearDickUnfolded: {
  33452. height: math.unit(8.78, "feet"),
  33453. name: "Rear Dick (Unfolded)",
  33454. image: {
  33455. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33456. }
  33457. },
  33458. wings: {
  33459. height: math.unit(43, "feet"),
  33460. name: "Wings",
  33461. image: {
  33462. source: "./media/characters/irb'iiritaahn/wings.svg"
  33463. }
  33464. },
  33465. },
  33466. [
  33467. {
  33468. name: "Macro",
  33469. height: math.unit(50 + 9/12, "feet"),
  33470. default: true
  33471. },
  33472. ]
  33473. ))
  33474. characterMakers.push(() => makeCharacter(
  33475. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33476. {
  33477. front: {
  33478. height: math.unit(205, "cm"),
  33479. weight: math.unit(102, "kg"),
  33480. name: "Front",
  33481. image: {
  33482. source: "./media/characters/irbisgreif/front.svg",
  33483. extra: 785/706,
  33484. bottom: 13/798
  33485. }
  33486. },
  33487. back: {
  33488. height: math.unit(205, "cm"),
  33489. weight: math.unit(102, "kg"),
  33490. name: "Back",
  33491. image: {
  33492. source: "./media/characters/irbisgreif/back.svg",
  33493. extra: 713/701,
  33494. bottom: 26/739
  33495. }
  33496. },
  33497. frontDressed: {
  33498. height: math.unit(216, "cm"),
  33499. weight: math.unit(102, "kg"),
  33500. name: "Front-dressed",
  33501. image: {
  33502. source: "./media/characters/irbisgreif/front-dressed.svg",
  33503. extra: 902/776,
  33504. bottom: 14/916
  33505. }
  33506. },
  33507. sideDressed: {
  33508. height: math.unit(195, "cm"),
  33509. weight: math.unit(102, "kg"),
  33510. name: "Side-dressed",
  33511. image: {
  33512. source: "./media/characters/irbisgreif/side-dressed.svg",
  33513. extra: 788/688,
  33514. bottom: 21/809
  33515. }
  33516. },
  33517. backDressed: {
  33518. height: math.unit(216, "cm"),
  33519. weight: math.unit(102, "kg"),
  33520. name: "Back-dressed",
  33521. image: {
  33522. source: "./media/characters/irbisgreif/back-dressed.svg",
  33523. extra: 901/783,
  33524. bottom: 10/911
  33525. }
  33526. },
  33527. dick: {
  33528. height: math.unit(0.49, "feet"),
  33529. name: "Dick",
  33530. image: {
  33531. source: "./media/characters/irbisgreif/dick.svg"
  33532. }
  33533. },
  33534. wingTop: {
  33535. height: math.unit(1.93 , "feet"),
  33536. name: "Wing-top",
  33537. image: {
  33538. source: "./media/characters/irbisgreif/wing-top.svg"
  33539. }
  33540. },
  33541. wingBottom: {
  33542. height: math.unit(1.93 , "feet"),
  33543. name: "Wing-bottom",
  33544. image: {
  33545. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33546. }
  33547. },
  33548. },
  33549. [
  33550. {
  33551. name: "Normal",
  33552. height: math.unit(216, "cm"),
  33553. default: true
  33554. },
  33555. ]
  33556. ))
  33557. characterMakers.push(() => makeCharacter(
  33558. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33559. {
  33560. front: {
  33561. height: math.unit(6, "feet"),
  33562. weight: math.unit(150, "lb"),
  33563. name: "Front",
  33564. image: {
  33565. source: "./media/characters/pride/front.svg",
  33566. extra: 1299/1230,
  33567. bottom: 18/1317
  33568. }
  33569. },
  33570. },
  33571. [
  33572. {
  33573. name: "Normal",
  33574. height: math.unit(7, "feet")
  33575. },
  33576. {
  33577. name: "Mini-macro",
  33578. height: math.unit(11, "feet")
  33579. },
  33580. {
  33581. name: "Macro",
  33582. height: math.unit(15, "meters"),
  33583. default: true
  33584. },
  33585. {
  33586. name: "Macro+",
  33587. height: math.unit(40, "meters")
  33588. },
  33589. ]
  33590. ))
  33591. characterMakers.push(() => makeCharacter(
  33592. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33593. {
  33594. front: {
  33595. height: math.unit(4 + 2 / 12, "feet"),
  33596. weight: math.unit(95, "lb"),
  33597. name: "Front",
  33598. image: {
  33599. source: "./media/characters/vaelophis-nyx/front.svg",
  33600. extra: 2532/2330,
  33601. bottom: 0/2532
  33602. }
  33603. },
  33604. back: {
  33605. height: math.unit(4 + 2 / 12, "feet"),
  33606. weight: math.unit(95, "lb"),
  33607. name: "Back",
  33608. image: {
  33609. source: "./media/characters/vaelophis-nyx/back.svg",
  33610. extra: 2484/2361,
  33611. bottom: 0/2484
  33612. }
  33613. },
  33614. feralSide: {
  33615. height: math.unit(2 + 1/12, "feet"),
  33616. weight: math.unit(20, "lb"),
  33617. name: "Feral (Side)",
  33618. image: {
  33619. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33620. extra: 1721/1581,
  33621. bottom: 70/1791
  33622. }
  33623. },
  33624. feralLazing: {
  33625. height: math.unit(1.08, "feet"),
  33626. weight: math.unit(20, "lb"),
  33627. name: "Feral (Lazing)",
  33628. image: {
  33629. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33630. extra: 822/822,
  33631. bottom: 248/1070
  33632. }
  33633. },
  33634. ear: {
  33635. height: math.unit(0.416, "feet"),
  33636. name: "Ear",
  33637. image: {
  33638. source: "./media/characters/vaelophis-nyx/ear.svg"
  33639. }
  33640. },
  33641. eye: {
  33642. height: math.unit(0.0748, "feet"),
  33643. name: "Eye",
  33644. image: {
  33645. source: "./media/characters/vaelophis-nyx/eye.svg"
  33646. }
  33647. },
  33648. mouth: {
  33649. height: math.unit(0.378, "feet"),
  33650. name: "Mouth",
  33651. image: {
  33652. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33653. }
  33654. },
  33655. spade: {
  33656. height: math.unit(0.55, "feet"),
  33657. name: "Spade",
  33658. image: {
  33659. source: "./media/characters/vaelophis-nyx/spade.svg"
  33660. }
  33661. },
  33662. },
  33663. [
  33664. {
  33665. name: "Normal",
  33666. height: math.unit(4 + 2/12, "feet"),
  33667. default: true
  33668. },
  33669. ]
  33670. ))
  33671. characterMakers.push(() => makeCharacter(
  33672. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33673. {
  33674. front: {
  33675. height: math.unit(7, "feet"),
  33676. weight: math.unit(231, "lb"),
  33677. name: "Front",
  33678. image: {
  33679. source: "./media/characters/flux/front.svg",
  33680. extra: 919/871,
  33681. bottom: 0/919
  33682. }
  33683. },
  33684. back: {
  33685. height: math.unit(7, "feet"),
  33686. weight: math.unit(231, "lb"),
  33687. name: "Back",
  33688. image: {
  33689. source: "./media/characters/flux/back.svg",
  33690. extra: 1040/992,
  33691. bottom: 0/1040
  33692. }
  33693. },
  33694. frontDressed: {
  33695. height: math.unit(7, "feet"),
  33696. weight: math.unit(231, "lb"),
  33697. name: "Front (Dressed)",
  33698. image: {
  33699. source: "./media/characters/flux/front-dressed.svg",
  33700. extra: 919/871,
  33701. bottom: 0/919
  33702. }
  33703. },
  33704. feralSide: {
  33705. height: math.unit(5, "feet"),
  33706. weight: math.unit(150, "lb"),
  33707. name: "Feral (Side)",
  33708. image: {
  33709. source: "./media/characters/flux/feral-side.svg",
  33710. extra: 598/528,
  33711. bottom: 28/626
  33712. }
  33713. },
  33714. head: {
  33715. height: math.unit(1.585, "feet"),
  33716. name: "Head",
  33717. image: {
  33718. source: "./media/characters/flux/head.svg"
  33719. }
  33720. },
  33721. headSide: {
  33722. height: math.unit(1.74, "feet"),
  33723. name: "Head (Side)",
  33724. image: {
  33725. source: "./media/characters/flux/head-side.svg"
  33726. }
  33727. },
  33728. headSideFire: {
  33729. height: math.unit(1.76, "feet"),
  33730. name: "Head (Side, Fire)",
  33731. image: {
  33732. source: "./media/characters/flux/head-side-fire.svg"
  33733. }
  33734. },
  33735. },
  33736. [
  33737. {
  33738. name: "Normal",
  33739. height: math.unit(7, "feet"),
  33740. default: true
  33741. },
  33742. ]
  33743. ))
  33744. characterMakers.push(() => makeCharacter(
  33745. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33746. {
  33747. front: {
  33748. height: math.unit(9, "feet"),
  33749. weight: math.unit(1012, "lb"),
  33750. name: "Front",
  33751. image: {
  33752. source: "./media/characters/ulfra-lupae/front.svg",
  33753. extra: 1083/1011,
  33754. bottom: 67/1150
  33755. }
  33756. },
  33757. },
  33758. [
  33759. {
  33760. name: "Micro",
  33761. height: math.unit(6, "inches")
  33762. },
  33763. {
  33764. name: "Socializing",
  33765. height: math.unit(6 + 5/12, "feet")
  33766. },
  33767. {
  33768. name: "Normal",
  33769. height: math.unit(9, "feet"),
  33770. default: true
  33771. },
  33772. {
  33773. name: "Macro",
  33774. height: math.unit(150, "feet")
  33775. },
  33776. ]
  33777. ))
  33778. characterMakers.push(() => makeCharacter(
  33779. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33780. {
  33781. front: {
  33782. height: math.unit(5 + 2/12, "feet"),
  33783. weight: math.unit(120, "lb"),
  33784. name: "Front",
  33785. image: {
  33786. source: "./media/characters/timber/front.svg",
  33787. extra: 2814/2705,
  33788. bottom: 181/2995
  33789. }
  33790. },
  33791. },
  33792. [
  33793. {
  33794. name: "Normal",
  33795. height: math.unit(5 + 2/12, "feet"),
  33796. default: true
  33797. },
  33798. ]
  33799. ))
  33800. characterMakers.push(() => makeCharacter(
  33801. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33802. {
  33803. front: {
  33804. height: math.unit(9, "feet"),
  33805. name: "Front",
  33806. image: {
  33807. source: "./media/characters/nicki/front.svg",
  33808. extra: 1240/990,
  33809. bottom: 45/1285
  33810. },
  33811. form: "anthro",
  33812. default: true
  33813. },
  33814. side: {
  33815. height: math.unit(9, "feet"),
  33816. name: "Side",
  33817. image: {
  33818. source: "./media/characters/nicki/side.svg",
  33819. extra: 1047/973,
  33820. bottom: 61/1108
  33821. },
  33822. form: "anthro"
  33823. },
  33824. back: {
  33825. height: math.unit(9, "feet"),
  33826. name: "Back",
  33827. image: {
  33828. source: "./media/characters/nicki/back.svg",
  33829. extra: 1006/965,
  33830. bottom: 39/1045
  33831. },
  33832. form: "anthro"
  33833. },
  33834. taur: {
  33835. height: math.unit(15, "feet"),
  33836. name: "Taur",
  33837. image: {
  33838. source: "./media/characters/nicki/taur.svg",
  33839. extra: 1592/1347,
  33840. bottom: 0/1592
  33841. },
  33842. form: "taur",
  33843. default: true
  33844. },
  33845. },
  33846. [
  33847. {
  33848. name: "Normal",
  33849. height: math.unit(9, "feet"),
  33850. form: "anthro",
  33851. default: true
  33852. },
  33853. {
  33854. name: "Normal",
  33855. height: math.unit(15, "feet"),
  33856. form: "taur",
  33857. default: true
  33858. }
  33859. ],
  33860. {
  33861. "anthro": {
  33862. name: "Anthro",
  33863. default: true
  33864. },
  33865. "taur": {
  33866. name: "Taur"
  33867. }
  33868. }
  33869. ))
  33870. characterMakers.push(() => makeCharacter(
  33871. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33872. {
  33873. front: {
  33874. height: math.unit(7 + 10/12, "feet"),
  33875. weight: math.unit(3.5, "tons"),
  33876. name: "Front",
  33877. image: {
  33878. source: "./media/characters/lee/front.svg",
  33879. extra: 1773/1615,
  33880. bottom: 86/1859
  33881. }
  33882. },
  33883. hand: {
  33884. height: math.unit(1.78, "feet"),
  33885. name: "Hand",
  33886. image: {
  33887. source: "./media/characters/lee/hand.svg"
  33888. }
  33889. },
  33890. maw: {
  33891. height: math.unit(1.18, "feet"),
  33892. name: "Maw",
  33893. image: {
  33894. source: "./media/characters/lee/maw.svg"
  33895. }
  33896. },
  33897. },
  33898. [
  33899. {
  33900. name: "Normal",
  33901. height: math.unit(7 + 10/12, "feet"),
  33902. default: true
  33903. },
  33904. ]
  33905. ))
  33906. characterMakers.push(() => makeCharacter(
  33907. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33908. {
  33909. front: {
  33910. height: math.unit(9, "feet"),
  33911. name: "Front",
  33912. image: {
  33913. source: "./media/characters/guti/front.svg",
  33914. extra: 4551/4355,
  33915. bottom: 123/4674
  33916. }
  33917. },
  33918. tongue: {
  33919. height: math.unit(1, "feet"),
  33920. name: "Tongue",
  33921. image: {
  33922. source: "./media/characters/guti/tongue.svg"
  33923. }
  33924. },
  33925. paw: {
  33926. height: math.unit(1.18, "feet"),
  33927. name: "Paw",
  33928. image: {
  33929. source: "./media/characters/guti/paw.svg"
  33930. }
  33931. },
  33932. },
  33933. [
  33934. {
  33935. name: "Normal",
  33936. height: math.unit(9, "feet"),
  33937. default: true
  33938. },
  33939. ]
  33940. ))
  33941. characterMakers.push(() => makeCharacter(
  33942. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33943. {
  33944. side: {
  33945. height: math.unit(5, "meters"),
  33946. name: "Side",
  33947. image: {
  33948. source: "./media/characters/vesper/side.svg",
  33949. extra: 1605/1518,
  33950. bottom: 0/1605
  33951. }
  33952. },
  33953. },
  33954. [
  33955. {
  33956. name: "Small",
  33957. height: math.unit(5, "meters")
  33958. },
  33959. {
  33960. name: "Sage",
  33961. height: math.unit(100, "meters"),
  33962. default: true
  33963. },
  33964. {
  33965. name: "Fun Size",
  33966. height: math.unit(600, "meters")
  33967. },
  33968. {
  33969. name: "Goddess",
  33970. height: math.unit(20000, "km")
  33971. },
  33972. {
  33973. name: "Maximum",
  33974. height: math.unit(5, "galaxies")
  33975. },
  33976. ]
  33977. ))
  33978. characterMakers.push(() => makeCharacter(
  33979. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33980. {
  33981. front: {
  33982. height: math.unit(6 + 3/12, "feet"),
  33983. weight: math.unit(190, "lb"),
  33984. name: "Front",
  33985. image: {
  33986. source: "./media/characters/gawain/front.svg",
  33987. extra: 2222/2139,
  33988. bottom: 90/2312
  33989. }
  33990. },
  33991. back: {
  33992. height: math.unit(6 + 3/12, "feet"),
  33993. weight: math.unit(190, "lb"),
  33994. name: "Back",
  33995. image: {
  33996. source: "./media/characters/gawain/back.svg",
  33997. extra: 2199/2111,
  33998. bottom: 73/2272
  33999. }
  34000. },
  34001. },
  34002. [
  34003. {
  34004. name: "Normal",
  34005. height: math.unit(6 + 3/12, "feet"),
  34006. default: true
  34007. },
  34008. ]
  34009. ))
  34010. characterMakers.push(() => makeCharacter(
  34011. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  34012. {
  34013. side: {
  34014. height: math.unit(3.5, "meters"),
  34015. weight: math.unit(16000, "lb"),
  34016. name: "Side",
  34017. image: {
  34018. source: "./media/characters/dascalti/side.svg",
  34019. extra: 392/273,
  34020. bottom: 47/439
  34021. }
  34022. },
  34023. breath: {
  34024. height: math.unit(7.4, "feet"),
  34025. name: "Breath",
  34026. image: {
  34027. source: "./media/characters/dascalti/breath.svg"
  34028. }
  34029. },
  34030. fed: {
  34031. height: math.unit(3.6, "meters"),
  34032. weight: math.unit(16000, "lb"),
  34033. name: "Fed",
  34034. image: {
  34035. source: "./media/characters/dascalti/fed.svg",
  34036. extra: 1419/820,
  34037. bottom: 95/1514
  34038. }
  34039. },
  34040. },
  34041. [
  34042. {
  34043. name: "Normal",
  34044. height: math.unit(3.5, "meters"),
  34045. default: true
  34046. },
  34047. ]
  34048. ))
  34049. characterMakers.push(() => makeCharacter(
  34050. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  34051. {
  34052. front: {
  34053. height: math.unit(3 + 5/12, "feet"),
  34054. name: "Front",
  34055. image: {
  34056. source: "./media/characters/mauve/front.svg",
  34057. extra: 1126/1033,
  34058. bottom: 65/1191
  34059. }
  34060. },
  34061. side: {
  34062. height: math.unit(3 + 5/12, "feet"),
  34063. name: "Side",
  34064. image: {
  34065. source: "./media/characters/mauve/side.svg",
  34066. extra: 1089/1001,
  34067. bottom: 29/1118
  34068. }
  34069. },
  34070. back: {
  34071. height: math.unit(3 + 5/12, "feet"),
  34072. name: "Back",
  34073. image: {
  34074. source: "./media/characters/mauve/back.svg",
  34075. extra: 1173/1053,
  34076. bottom: 109/1282
  34077. }
  34078. },
  34079. },
  34080. [
  34081. {
  34082. name: "Normal",
  34083. height: math.unit(3 + 5/12, "feet"),
  34084. default: true
  34085. },
  34086. ]
  34087. ))
  34088. characterMakers.push(() => makeCharacter(
  34089. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  34090. {
  34091. front: {
  34092. height: math.unit(6 + 3/12, "feet"),
  34093. weight: math.unit(430, "lb"),
  34094. name: "Front",
  34095. image: {
  34096. source: "./media/characters/carlos/front.svg",
  34097. extra: 1964/1913,
  34098. bottom: 70/2034
  34099. }
  34100. },
  34101. },
  34102. [
  34103. {
  34104. name: "Normal",
  34105. height: math.unit(6 + 3/12, "feet"),
  34106. default: true
  34107. },
  34108. ]
  34109. ))
  34110. characterMakers.push(() => makeCharacter(
  34111. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  34112. {
  34113. back: {
  34114. height: math.unit(5 + 10/12, "feet"),
  34115. weight: math.unit(200, "lb"),
  34116. name: "Back",
  34117. image: {
  34118. source: "./media/characters/jax/back.svg",
  34119. extra: 764/739,
  34120. bottom: 25/789
  34121. }
  34122. },
  34123. },
  34124. [
  34125. {
  34126. name: "Normal",
  34127. height: math.unit(5 + 10/12, "feet"),
  34128. default: true
  34129. },
  34130. ]
  34131. ))
  34132. characterMakers.push(() => makeCharacter(
  34133. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  34134. {
  34135. front: {
  34136. height: math.unit(8, "feet"),
  34137. weight: math.unit(250, "lb"),
  34138. name: "Front",
  34139. image: {
  34140. source: "./media/characters/eikthynir/front.svg",
  34141. extra: 1332/1166,
  34142. bottom: 82/1414
  34143. }
  34144. },
  34145. back: {
  34146. height: math.unit(8, "feet"),
  34147. weight: math.unit(250, "lb"),
  34148. name: "Back",
  34149. image: {
  34150. source: "./media/characters/eikthynir/back.svg",
  34151. extra: 1342/1190,
  34152. bottom: 19/1361
  34153. }
  34154. },
  34155. dick: {
  34156. height: math.unit(2.35, "feet"),
  34157. name: "Dick",
  34158. image: {
  34159. source: "./media/characters/eikthynir/dick.svg"
  34160. }
  34161. },
  34162. },
  34163. [
  34164. {
  34165. name: "Normal",
  34166. height: math.unit(8, "feet"),
  34167. default: true
  34168. },
  34169. ]
  34170. ))
  34171. characterMakers.push(() => makeCharacter(
  34172. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  34173. {
  34174. front: {
  34175. height: math.unit(99, "meters"),
  34176. weight: math.unit(13000, "tons"),
  34177. name: "Front",
  34178. image: {
  34179. source: "./media/characters/zlmos/front.svg",
  34180. extra: 2202/1992,
  34181. bottom: 315/2517
  34182. }
  34183. },
  34184. },
  34185. [
  34186. {
  34187. name: "Macro",
  34188. height: math.unit(99, "meters"),
  34189. default: true
  34190. },
  34191. ]
  34192. ))
  34193. characterMakers.push(() => makeCharacter(
  34194. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  34195. {
  34196. front: {
  34197. height: math.unit(6 + 5/12, "feet"),
  34198. name: "Front",
  34199. image: {
  34200. source: "./media/characters/purri/front.svg",
  34201. extra: 1698/1610,
  34202. bottom: 32/1730
  34203. }
  34204. },
  34205. frontAlt: {
  34206. height: math.unit(6 + 5/12, "feet"),
  34207. name: "Front (Alt)",
  34208. image: {
  34209. source: "./media/characters/purri/front-alt.svg",
  34210. extra: 450/420,
  34211. bottom: 26/476
  34212. }
  34213. },
  34214. boots: {
  34215. height: math.unit(5.5, "feet"),
  34216. name: "Boots",
  34217. image: {
  34218. source: "./media/characters/purri/boots.svg",
  34219. extra: 905/853,
  34220. bottom: 18/923
  34221. },
  34222. extraAttributes: {
  34223. "shoeSize": {
  34224. name: "Shoe Size",
  34225. power: 1,
  34226. type: "length",
  34227. base: math.unit(12, "ShoeSizeMensUS")
  34228. },
  34229. "platformHeight": {
  34230. name: "Platform Height",
  34231. power: 1,
  34232. type: "length",
  34233. base: math.unit(2, "inches")
  34234. },
  34235. }
  34236. },
  34237. lying: {
  34238. height: math.unit(2, "feet"),
  34239. name: "Lying",
  34240. image: {
  34241. source: "./media/characters/purri/lying.svg",
  34242. extra: 940/843,
  34243. bottom: 146/1086
  34244. }
  34245. },
  34246. devious: {
  34247. height: math.unit(1.77, "feet"),
  34248. name: "Devious",
  34249. image: {
  34250. source: "./media/characters/purri/devious.svg",
  34251. extra: 1440/1155,
  34252. bottom: 147/1587
  34253. }
  34254. },
  34255. bean: {
  34256. height: math.unit(1.94, "feet"),
  34257. name: "Bean",
  34258. image: {
  34259. source: "./media/characters/purri/bean.svg"
  34260. }
  34261. },
  34262. },
  34263. [
  34264. {
  34265. name: "Micro",
  34266. height: math.unit(1, "mm")
  34267. },
  34268. {
  34269. name: "Normal",
  34270. height: math.unit(6 + 5/12, "feet"),
  34271. default: true
  34272. },
  34273. {
  34274. name: "Macro :3c",
  34275. height: math.unit(2, "miles")
  34276. },
  34277. ]
  34278. ))
  34279. characterMakers.push(() => makeCharacter(
  34280. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  34281. {
  34282. front: {
  34283. height: math.unit(6 + 2/12, "feet"),
  34284. weight: math.unit(250, "lb"),
  34285. name: "Front",
  34286. image: {
  34287. source: "./media/characters/moonlight/front.svg",
  34288. extra: 1044/908,
  34289. bottom: 56/1100
  34290. }
  34291. },
  34292. feral: {
  34293. height: math.unit(3 + 1/12, "feet"),
  34294. weight: math.unit(50, "kg"),
  34295. name: "Feral",
  34296. image: {
  34297. source: "./media/characters/moonlight/feral.svg",
  34298. extra: 3705/2791,
  34299. bottom: 145/3850
  34300. }
  34301. },
  34302. paw: {
  34303. height: math.unit(1, "feet"),
  34304. name: "Paw",
  34305. image: {
  34306. source: "./media/characters/moonlight/paw.svg"
  34307. }
  34308. },
  34309. paws: {
  34310. height: math.unit(0.98, "feet"),
  34311. name: "Paws",
  34312. image: {
  34313. source: "./media/characters/moonlight/paws.svg",
  34314. extra: 939/939,
  34315. bottom: 50/989
  34316. }
  34317. },
  34318. mouth: {
  34319. height: math.unit(0.48, "feet"),
  34320. name: "Mouth",
  34321. image: {
  34322. source: "./media/characters/moonlight/mouth.svg"
  34323. }
  34324. },
  34325. dick: {
  34326. height: math.unit(1.46, "feet"),
  34327. name: "Dick",
  34328. image: {
  34329. source: "./media/characters/moonlight/dick.svg"
  34330. }
  34331. },
  34332. },
  34333. [
  34334. {
  34335. name: "Normal",
  34336. height: math.unit(6 + 2/12, "feet"),
  34337. default: true
  34338. },
  34339. {
  34340. name: "Macro",
  34341. height: math.unit(300, "feet")
  34342. },
  34343. {
  34344. name: "Macro+",
  34345. height: math.unit(1, "mile")
  34346. },
  34347. {
  34348. name: "Mt. Moon",
  34349. height: math.unit(5, "miles")
  34350. },
  34351. {
  34352. name: "Megamacro",
  34353. height: math.unit(15, "miles")
  34354. },
  34355. ]
  34356. ))
  34357. characterMakers.push(() => makeCharacter(
  34358. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  34359. {
  34360. back: {
  34361. height: math.unit(6, "feet"),
  34362. weight: math.unit(150, "lb"),
  34363. name: "Back",
  34364. image: {
  34365. source: "./media/characters/sylen/back.svg",
  34366. extra: 1335/1273,
  34367. bottom: 107/1442
  34368. }
  34369. },
  34370. },
  34371. [
  34372. {
  34373. name: "Normal",
  34374. height: math.unit(5 + 5/12, "feet")
  34375. },
  34376. {
  34377. name: "Megamacro",
  34378. height: math.unit(3, "miles"),
  34379. default: true
  34380. },
  34381. ]
  34382. ))
  34383. characterMakers.push(() => makeCharacter(
  34384. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  34385. {
  34386. front: {
  34387. height: math.unit(6, "feet"),
  34388. weight: math.unit(190, "lb"),
  34389. name: "Front",
  34390. image: {
  34391. source: "./media/characters/huttser/front.svg",
  34392. extra: 1152/1058,
  34393. bottom: 23/1175
  34394. }
  34395. },
  34396. side: {
  34397. height: math.unit(6, "feet"),
  34398. weight: math.unit(190, "lb"),
  34399. name: "Side",
  34400. image: {
  34401. source: "./media/characters/huttser/side.svg",
  34402. extra: 1174/1065,
  34403. bottom: 18/1192
  34404. }
  34405. },
  34406. back: {
  34407. height: math.unit(6, "feet"),
  34408. weight: math.unit(190, "lb"),
  34409. name: "Back",
  34410. image: {
  34411. source: "./media/characters/huttser/back.svg",
  34412. extra: 1158/1056,
  34413. bottom: 12/1170
  34414. }
  34415. },
  34416. },
  34417. [
  34418. ]
  34419. ))
  34420. characterMakers.push(() => makeCharacter(
  34421. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34422. {
  34423. side: {
  34424. height: math.unit(12 + 9/12, "feet"),
  34425. weight: math.unit(15000, "lb"),
  34426. name: "Side",
  34427. image: {
  34428. source: "./media/characters/faan/side.svg",
  34429. extra: 2747/2697,
  34430. bottom: 0/2747
  34431. }
  34432. },
  34433. front: {
  34434. height: math.unit(12 + 9/12, "feet"),
  34435. weight: math.unit(15000, "lb"),
  34436. name: "Front",
  34437. image: {
  34438. source: "./media/characters/faan/front.svg",
  34439. extra: 607/571,
  34440. bottom: 24/631
  34441. }
  34442. },
  34443. head: {
  34444. height: math.unit(2.85, "feet"),
  34445. name: "Head",
  34446. image: {
  34447. source: "./media/characters/faan/head.svg"
  34448. }
  34449. },
  34450. headAlt: {
  34451. height: math.unit(3.13, "feet"),
  34452. name: "Head-alt",
  34453. image: {
  34454. source: "./media/characters/faan/head-alt.svg"
  34455. }
  34456. },
  34457. },
  34458. [
  34459. {
  34460. name: "Normal",
  34461. height: math.unit(12 + 9/12, "feet"),
  34462. default: true
  34463. },
  34464. ]
  34465. ))
  34466. characterMakers.push(() => makeCharacter(
  34467. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34468. {
  34469. front: {
  34470. height: math.unit(6, "feet"),
  34471. weight: math.unit(300, "lb"),
  34472. name: "Front",
  34473. image: {
  34474. source: "./media/characters/tanio/front.svg",
  34475. extra: 711/673,
  34476. bottom: 25/736
  34477. }
  34478. },
  34479. },
  34480. [
  34481. {
  34482. name: "Normal",
  34483. height: math.unit(6, "feet"),
  34484. default: true
  34485. },
  34486. ]
  34487. ))
  34488. characterMakers.push(() => makeCharacter(
  34489. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34490. {
  34491. front: {
  34492. height: math.unit(3, "inches"),
  34493. name: "Front",
  34494. image: {
  34495. source: "./media/characters/noboru/front.svg",
  34496. extra: 1039/932,
  34497. bottom: 18/1057
  34498. }
  34499. },
  34500. },
  34501. [
  34502. {
  34503. name: "Micro",
  34504. height: math.unit(3, "inches"),
  34505. default: true
  34506. },
  34507. ]
  34508. ))
  34509. characterMakers.push(() => makeCharacter(
  34510. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34511. {
  34512. front: {
  34513. height: math.unit(1.85, "meters"),
  34514. weight: math.unit(80, "kg"),
  34515. name: "Front",
  34516. image: {
  34517. source: "./media/characters/daniel-barrett/front.svg",
  34518. extra: 355/337,
  34519. bottom: 9/364
  34520. }
  34521. },
  34522. },
  34523. [
  34524. {
  34525. name: "Pico",
  34526. height: math.unit(0.0433, "mm")
  34527. },
  34528. {
  34529. name: "Nano",
  34530. height: math.unit(1.5, "mm")
  34531. },
  34532. {
  34533. name: "Micro",
  34534. height: math.unit(5.3, "cm"),
  34535. default: true
  34536. },
  34537. {
  34538. name: "Normal",
  34539. height: math.unit(1.85, "meters")
  34540. },
  34541. {
  34542. name: "Macro",
  34543. height: math.unit(64.7, "meters")
  34544. },
  34545. {
  34546. name: "Megamacro",
  34547. height: math.unit(2.26, "km")
  34548. },
  34549. {
  34550. name: "Gigamacro",
  34551. height: math.unit(79, "km")
  34552. },
  34553. {
  34554. name: "Teramacro",
  34555. height: math.unit(2765, "km")
  34556. },
  34557. {
  34558. name: "Petamacro",
  34559. height: math.unit(96678, "km")
  34560. },
  34561. ]
  34562. ))
  34563. characterMakers.push(() => makeCharacter(
  34564. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34565. {
  34566. front: {
  34567. height: math.unit(30, "meters"),
  34568. weight: math.unit(400, "tons"),
  34569. name: "Front",
  34570. image: {
  34571. source: "./media/characters/zeel/front.svg",
  34572. extra: 2599/2599,
  34573. bottom: 226/2825
  34574. }
  34575. },
  34576. },
  34577. [
  34578. {
  34579. name: "Macro",
  34580. height: math.unit(30, "meters"),
  34581. default: true
  34582. },
  34583. ]
  34584. ))
  34585. characterMakers.push(() => makeCharacter(
  34586. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34587. {
  34588. front: {
  34589. height: math.unit(6 + 7/12, "feet"),
  34590. weight: math.unit(210, "lb"),
  34591. name: "Front",
  34592. image: {
  34593. source: "./media/characters/tarn/front.svg",
  34594. extra: 3517/3220,
  34595. bottom: 91/3608
  34596. }
  34597. },
  34598. back: {
  34599. height: math.unit(6 + 7/12, "feet"),
  34600. weight: math.unit(210, "lb"),
  34601. name: "Back",
  34602. image: {
  34603. source: "./media/characters/tarn/back.svg",
  34604. extra: 3566/3241,
  34605. bottom: 34/3600
  34606. }
  34607. },
  34608. dick: {
  34609. height: math.unit(1.65, "feet"),
  34610. name: "Dick",
  34611. image: {
  34612. source: "./media/characters/tarn/dick.svg"
  34613. }
  34614. },
  34615. paw: {
  34616. height: math.unit(1.80, "feet"),
  34617. name: "Paw",
  34618. image: {
  34619. source: "./media/characters/tarn/paw.svg"
  34620. }
  34621. },
  34622. tongue: {
  34623. height: math.unit(0.97, "feet"),
  34624. name: "Tongue",
  34625. image: {
  34626. source: "./media/characters/tarn/tongue.svg"
  34627. }
  34628. },
  34629. },
  34630. [
  34631. {
  34632. name: "Micro",
  34633. height: math.unit(4, "inches")
  34634. },
  34635. {
  34636. name: "Normal",
  34637. height: math.unit(6 + 7/12, "feet"),
  34638. default: true
  34639. },
  34640. {
  34641. name: "Macro",
  34642. height: math.unit(300, "feet")
  34643. },
  34644. ]
  34645. ))
  34646. characterMakers.push(() => makeCharacter(
  34647. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34648. {
  34649. front: {
  34650. height: math.unit(5 + 7/12, "feet"),
  34651. weight: math.unit(80, "kg"),
  34652. name: "Front",
  34653. image: {
  34654. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34655. extra: 3023/2865,
  34656. bottom: 33/3056
  34657. }
  34658. },
  34659. back: {
  34660. height: math.unit(5 + 7/12, "feet"),
  34661. weight: math.unit(80, "kg"),
  34662. name: "Back",
  34663. image: {
  34664. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34665. extra: 3020/2886,
  34666. bottom: 30/3050
  34667. }
  34668. },
  34669. dick: {
  34670. height: math.unit(0.98, "feet"),
  34671. name: "Dick",
  34672. image: {
  34673. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34674. }
  34675. },
  34676. anatomy: {
  34677. height: math.unit(2.86, "feet"),
  34678. name: "Anatomy",
  34679. image: {
  34680. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  34681. }
  34682. },
  34683. },
  34684. [
  34685. {
  34686. name: "Really Small",
  34687. height: math.unit(2, "inches")
  34688. },
  34689. {
  34690. name: "Micro",
  34691. height: math.unit(5.583, "inches")
  34692. },
  34693. {
  34694. name: "Normal",
  34695. height: math.unit(5 + 7/12, "feet"),
  34696. default: true
  34697. },
  34698. {
  34699. name: "Macro",
  34700. height: math.unit(67, "feet")
  34701. },
  34702. {
  34703. name: "Megamacro",
  34704. height: math.unit(134, "feet")
  34705. },
  34706. ]
  34707. ))
  34708. characterMakers.push(() => makeCharacter(
  34709. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34710. {
  34711. front: {
  34712. height: math.unit(9, "feet"),
  34713. weight: math.unit(120, "lb"),
  34714. name: "Front",
  34715. image: {
  34716. source: "./media/characters/sally/front.svg",
  34717. extra: 1506/1349,
  34718. bottom: 66/1572
  34719. }
  34720. },
  34721. },
  34722. [
  34723. {
  34724. name: "Normal",
  34725. height: math.unit(9, "feet"),
  34726. default: true
  34727. },
  34728. ]
  34729. ))
  34730. characterMakers.push(() => makeCharacter(
  34731. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34732. {
  34733. front: {
  34734. height: math.unit(8, "feet"),
  34735. weight: math.unit(900, "lb"),
  34736. name: "Front",
  34737. image: {
  34738. source: "./media/characters/owen/front.svg",
  34739. extra: 1761/1657,
  34740. bottom: 74/1835
  34741. }
  34742. },
  34743. side: {
  34744. height: math.unit(8, "feet"),
  34745. weight: math.unit(900, "lb"),
  34746. name: "Side",
  34747. image: {
  34748. source: "./media/characters/owen/side.svg",
  34749. extra: 1797/1734,
  34750. bottom: 30/1827
  34751. }
  34752. },
  34753. back: {
  34754. height: math.unit(8, "feet"),
  34755. weight: math.unit(900, "lb"),
  34756. name: "Back",
  34757. image: {
  34758. source: "./media/characters/owen/back.svg",
  34759. extra: 1796/1706,
  34760. bottom: 59/1855
  34761. }
  34762. },
  34763. maw: {
  34764. height: math.unit(1.76, "feet"),
  34765. name: "Maw",
  34766. image: {
  34767. source: "./media/characters/owen/maw.svg"
  34768. }
  34769. },
  34770. },
  34771. [
  34772. {
  34773. name: "Normal",
  34774. height: math.unit(8, "feet"),
  34775. default: true
  34776. },
  34777. ]
  34778. ))
  34779. characterMakers.push(() => makeCharacter(
  34780. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34781. {
  34782. front: {
  34783. height: math.unit(4, "feet"),
  34784. weight: math.unit(400, "lb"),
  34785. name: "Front",
  34786. image: {
  34787. source: "./media/characters/ryth/front.svg",
  34788. extra: 1920/1748,
  34789. bottom: 42/1962
  34790. }
  34791. },
  34792. back: {
  34793. height: math.unit(4, "feet"),
  34794. weight: math.unit(400, "lb"),
  34795. name: "Back",
  34796. image: {
  34797. source: "./media/characters/ryth/back.svg",
  34798. extra: 1897/1690,
  34799. bottom: 89/1986
  34800. }
  34801. },
  34802. mouth: {
  34803. height: math.unit(1.39, "feet"),
  34804. name: "Mouth",
  34805. image: {
  34806. source: "./media/characters/ryth/mouth.svg"
  34807. }
  34808. },
  34809. tailmaw: {
  34810. height: math.unit(1.23, "feet"),
  34811. name: "Tailmaw",
  34812. image: {
  34813. source: "./media/characters/ryth/tailmaw.svg"
  34814. }
  34815. },
  34816. goia: {
  34817. height: math.unit(4, "meters"),
  34818. weight: math.unit(10800, "lb"),
  34819. name: "Goia",
  34820. image: {
  34821. source: "./media/characters/ryth/goia.svg",
  34822. extra: 745/640,
  34823. bottom: 107/852
  34824. }
  34825. },
  34826. goiaFront: {
  34827. height: math.unit(4, "meters"),
  34828. weight: math.unit(10800, "lb"),
  34829. name: "Goia (Front)",
  34830. image: {
  34831. source: "./media/characters/ryth/goia-front.svg",
  34832. extra: 750/586,
  34833. bottom: 114/864
  34834. }
  34835. },
  34836. goiaMaw: {
  34837. height: math.unit(5.55, "feet"),
  34838. name: "Goia Maw",
  34839. image: {
  34840. source: "./media/characters/ryth/goia-maw.svg"
  34841. }
  34842. },
  34843. goiaForepaw: {
  34844. height: math.unit(3.5, "feet"),
  34845. name: "Goia Forepaw",
  34846. image: {
  34847. source: "./media/characters/ryth/goia-forepaw.svg"
  34848. }
  34849. },
  34850. goiaHindpaw: {
  34851. height: math.unit(5.55, "feet"),
  34852. name: "Goia Hindpaw",
  34853. image: {
  34854. source: "./media/characters/ryth/goia-hindpaw.svg"
  34855. }
  34856. },
  34857. },
  34858. [
  34859. {
  34860. name: "Normal",
  34861. height: math.unit(4, "feet"),
  34862. default: true
  34863. },
  34864. ]
  34865. ))
  34866. characterMakers.push(() => makeCharacter(
  34867. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34868. {
  34869. front: {
  34870. height: math.unit(7, "feet"),
  34871. weight: math.unit(180, "lb"),
  34872. name: "Front",
  34873. image: {
  34874. source: "./media/characters/necrolance/front.svg",
  34875. extra: 1062/947,
  34876. bottom: 41/1103
  34877. }
  34878. },
  34879. back: {
  34880. height: math.unit(7, "feet"),
  34881. weight: math.unit(180, "lb"),
  34882. name: "Back",
  34883. image: {
  34884. source: "./media/characters/necrolance/back.svg",
  34885. extra: 1045/984,
  34886. bottom: 14/1059
  34887. }
  34888. },
  34889. wing: {
  34890. height: math.unit(2.67, "feet"),
  34891. name: "Wing",
  34892. image: {
  34893. source: "./media/characters/necrolance/wing.svg"
  34894. }
  34895. },
  34896. },
  34897. [
  34898. {
  34899. name: "Normal",
  34900. height: math.unit(7, "feet"),
  34901. default: true
  34902. },
  34903. ]
  34904. ))
  34905. characterMakers.push(() => makeCharacter(
  34906. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34907. {
  34908. front: {
  34909. height: math.unit(76, "meters"),
  34910. weight: math.unit(30000, "tons"),
  34911. name: "Front",
  34912. image: {
  34913. source: "./media/characters/tyler/front.svg",
  34914. extra: 1640/1640,
  34915. bottom: 114/1754
  34916. }
  34917. },
  34918. },
  34919. [
  34920. {
  34921. name: "Macro",
  34922. height: math.unit(76, "meters"),
  34923. default: true
  34924. },
  34925. ]
  34926. ))
  34927. characterMakers.push(() => makeCharacter(
  34928. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34929. {
  34930. front: {
  34931. height: math.unit(4 + 11/12, "feet"),
  34932. weight: math.unit(132, "lb"),
  34933. name: "Front",
  34934. image: {
  34935. source: "./media/characters/icey/front.svg",
  34936. extra: 2750/2550,
  34937. bottom: 33/2783
  34938. }
  34939. },
  34940. back: {
  34941. height: math.unit(4 + 11/12, "feet"),
  34942. weight: math.unit(132, "lb"),
  34943. name: "Back",
  34944. image: {
  34945. source: "./media/characters/icey/back.svg",
  34946. extra: 2624/2481,
  34947. bottom: 35/2659
  34948. }
  34949. },
  34950. },
  34951. [
  34952. {
  34953. name: "Normal",
  34954. height: math.unit(4 + 11/12, "feet"),
  34955. default: true
  34956. },
  34957. ]
  34958. ))
  34959. characterMakers.push(() => makeCharacter(
  34960. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34961. {
  34962. front: {
  34963. height: math.unit(100, "feet"),
  34964. weight: math.unit(0, "lb"),
  34965. name: "Front",
  34966. image: {
  34967. source: "./media/characters/smile/front.svg",
  34968. extra: 2983/2912,
  34969. bottom: 162/3145
  34970. }
  34971. },
  34972. back: {
  34973. height: math.unit(100, "feet"),
  34974. weight: math.unit(0, "lb"),
  34975. name: "Back",
  34976. image: {
  34977. source: "./media/characters/smile/back.svg",
  34978. extra: 3143/3031,
  34979. bottom: 91/3234
  34980. }
  34981. },
  34982. head: {
  34983. height: math.unit(26.3, "feet"),
  34984. weight: math.unit(0, "lb"),
  34985. name: "Head",
  34986. image: {
  34987. source: "./media/characters/smile/head.svg"
  34988. }
  34989. },
  34990. collar: {
  34991. height: math.unit(5.3, "feet"),
  34992. weight: math.unit(0, "lb"),
  34993. name: "Collar",
  34994. image: {
  34995. source: "./media/characters/smile/collar.svg"
  34996. }
  34997. },
  34998. },
  34999. [
  35000. {
  35001. name: "Macro",
  35002. height: math.unit(100, "feet"),
  35003. default: true
  35004. },
  35005. ]
  35006. ))
  35007. characterMakers.push(() => makeCharacter(
  35008. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  35009. {
  35010. dragon: {
  35011. height: math.unit(26, "feet"),
  35012. weight: math.unit(36, "tons"),
  35013. name: "Dragon",
  35014. image: {
  35015. source: "./media/characters/arimphae/dragon.svg",
  35016. extra: 1574/983,
  35017. bottom: 357/1931
  35018. }
  35019. },
  35020. drake: {
  35021. height: math.unit(9, "feet"),
  35022. weight: math.unit(1.5, "tons"),
  35023. name: "Drake",
  35024. image: {
  35025. source: "./media/characters/arimphae/drake.svg",
  35026. extra: 1120/925,
  35027. bottom: 435/1555
  35028. }
  35029. },
  35030. },
  35031. [
  35032. {
  35033. name: "Small",
  35034. height: math.unit(26*5/9, "feet")
  35035. },
  35036. {
  35037. name: "Normal",
  35038. height: math.unit(26, "feet"),
  35039. default: true
  35040. },
  35041. ]
  35042. ))
  35043. characterMakers.push(() => makeCharacter(
  35044. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  35045. {
  35046. front: {
  35047. height: math.unit(8 + 9/12, "feet"),
  35048. name: "Front",
  35049. image: {
  35050. source: "./media/characters/xander/front.svg",
  35051. extra: 1237/974,
  35052. bottom: 94/1331
  35053. }
  35054. },
  35055. },
  35056. [
  35057. {
  35058. name: "Normal",
  35059. height: math.unit(8 + 9/12, "feet"),
  35060. default: true
  35061. },
  35062. {
  35063. name: "Gaze Grabber",
  35064. height: math.unit(13 + 8/12, "feet")
  35065. },
  35066. {
  35067. name: "Jaw Dropper",
  35068. height: math.unit(27, "feet")
  35069. },
  35070. {
  35071. name: "Show Stopper",
  35072. height: math.unit(136, "feet")
  35073. },
  35074. {
  35075. name: "Superstar",
  35076. height: math.unit(1.9e6, "miles")
  35077. },
  35078. ]
  35079. ))
  35080. characterMakers.push(() => makeCharacter(
  35081. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  35082. {
  35083. side: {
  35084. height: math.unit(2100, "feet"),
  35085. name: "Side",
  35086. image: {
  35087. source: "./media/characters/osiris/side.svg",
  35088. extra: 1105/939,
  35089. bottom: 167/1272
  35090. }
  35091. },
  35092. },
  35093. [
  35094. {
  35095. name: "Macro",
  35096. height: math.unit(2100, "feet"),
  35097. default: true
  35098. },
  35099. ]
  35100. ))
  35101. characterMakers.push(() => makeCharacter(
  35102. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  35103. {
  35104. front: {
  35105. height: math.unit(6 + 8/12, "feet"),
  35106. weight: math.unit(225, "lb"),
  35107. name: "Front",
  35108. image: {
  35109. source: "./media/characters/rhys-londe/front.svg",
  35110. extra: 2258/2141,
  35111. bottom: 188/2446
  35112. }
  35113. },
  35114. back: {
  35115. height: math.unit(6 + 8/12, "feet"),
  35116. weight: math.unit(225, "lb"),
  35117. name: "Back",
  35118. image: {
  35119. source: "./media/characters/rhys-londe/back.svg",
  35120. extra: 2237/2137,
  35121. bottom: 63/2300
  35122. }
  35123. },
  35124. frontNsfw: {
  35125. height: math.unit(6 + 8/12, "feet"),
  35126. weight: math.unit(225, "lb"),
  35127. name: "Front (NSFW)",
  35128. image: {
  35129. source: "./media/characters/rhys-londe/front-nsfw.svg",
  35130. extra: 2258/2141,
  35131. bottom: 188/2446
  35132. }
  35133. },
  35134. backNsfw: {
  35135. height: math.unit(6 + 8/12, "feet"),
  35136. weight: math.unit(225, "lb"),
  35137. name: "Back (NSFW)",
  35138. image: {
  35139. source: "./media/characters/rhys-londe/back-nsfw.svg",
  35140. extra: 2237/2137,
  35141. bottom: 63/2300
  35142. }
  35143. },
  35144. dick: {
  35145. height: math.unit(30, "inches"),
  35146. name: "Dick",
  35147. image: {
  35148. source: "./media/characters/rhys-londe/dick.svg"
  35149. }
  35150. },
  35151. maw: {
  35152. height: math.unit(1.6, "feet"),
  35153. name: "Maw",
  35154. image: {
  35155. source: "./media/characters/rhys-londe/maw.svg"
  35156. }
  35157. },
  35158. },
  35159. [
  35160. {
  35161. name: "Normal",
  35162. height: math.unit(6 + 8/12, "feet"),
  35163. default: true
  35164. },
  35165. ]
  35166. ))
  35167. characterMakers.push(() => makeCharacter(
  35168. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  35169. {
  35170. front: {
  35171. height: math.unit(3 + 10/12, "feet"),
  35172. weight: math.unit(90, "lb"),
  35173. name: "Front",
  35174. image: {
  35175. source: "./media/characters/taivas-ensim/front.svg",
  35176. extra: 1327/1216,
  35177. bottom: 96/1423
  35178. }
  35179. },
  35180. back: {
  35181. height: math.unit(3 + 10/12, "feet"),
  35182. weight: math.unit(90, "lb"),
  35183. name: "Back",
  35184. image: {
  35185. source: "./media/characters/taivas-ensim/back.svg",
  35186. extra: 1355/1247,
  35187. bottom: 11/1366
  35188. }
  35189. },
  35190. frontNsfw: {
  35191. height: math.unit(3 + 10/12, "feet"),
  35192. weight: math.unit(90, "lb"),
  35193. name: "Front (NSFW)",
  35194. image: {
  35195. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  35196. extra: 1327/1216,
  35197. bottom: 96/1423
  35198. }
  35199. },
  35200. backNsfw: {
  35201. height: math.unit(3 + 10/12, "feet"),
  35202. weight: math.unit(90, "lb"),
  35203. name: "Back (NSFW)",
  35204. image: {
  35205. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  35206. extra: 1355/1247,
  35207. bottom: 11/1366
  35208. }
  35209. },
  35210. },
  35211. [
  35212. {
  35213. name: "Normal",
  35214. height: math.unit(3 + 10/12, "feet"),
  35215. default: true
  35216. },
  35217. ]
  35218. ))
  35219. characterMakers.push(() => makeCharacter(
  35220. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  35221. {
  35222. front: {
  35223. height: math.unit(9 + 6/12, "feet"),
  35224. weight: math.unit(940, "lb"),
  35225. name: "Front",
  35226. image: {
  35227. source: "./media/characters/byliss/front.svg",
  35228. extra: 1327/1290,
  35229. bottom: 82/1409
  35230. }
  35231. },
  35232. back: {
  35233. height: math.unit(9 + 6/12, "feet"),
  35234. weight: math.unit(940, "lb"),
  35235. name: "Back",
  35236. image: {
  35237. source: "./media/characters/byliss/back.svg",
  35238. extra: 1376/1349,
  35239. bottom: 9/1385
  35240. }
  35241. },
  35242. frontNsfw: {
  35243. height: math.unit(9 + 6/12, "feet"),
  35244. weight: math.unit(940, "lb"),
  35245. name: "Front (NSFW)",
  35246. image: {
  35247. source: "./media/characters/byliss/front-nsfw.svg",
  35248. extra: 1327/1290,
  35249. bottom: 82/1409
  35250. }
  35251. },
  35252. backNsfw: {
  35253. height: math.unit(9 + 6/12, "feet"),
  35254. weight: math.unit(940, "lb"),
  35255. name: "Back (NSFW)",
  35256. image: {
  35257. source: "./media/characters/byliss/back-nsfw.svg",
  35258. extra: 1376/1349,
  35259. bottom: 9/1385
  35260. }
  35261. },
  35262. },
  35263. [
  35264. {
  35265. name: "Normal",
  35266. height: math.unit(9 + 6/12, "feet"),
  35267. default: true
  35268. },
  35269. ]
  35270. ))
  35271. characterMakers.push(() => makeCharacter(
  35272. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  35273. {
  35274. front: {
  35275. height: math.unit(5 + 2/12, "feet"),
  35276. weight: math.unit(200, "lb"),
  35277. name: "Front",
  35278. image: {
  35279. source: "./media/characters/noraly/front.svg",
  35280. extra: 4985/4773,
  35281. bottom: 150/5135
  35282. }
  35283. },
  35284. full: {
  35285. height: math.unit(5 + 2/12, "feet"),
  35286. weight: math.unit(164, "lb"),
  35287. name: "Full",
  35288. image: {
  35289. source: "./media/characters/noraly/full.svg",
  35290. extra: 1114/1059,
  35291. bottom: 35/1149
  35292. }
  35293. },
  35294. fuller: {
  35295. height: math.unit(5 + 2/12, "feet"),
  35296. weight: math.unit(230, "lb"),
  35297. name: "Fuller",
  35298. image: {
  35299. source: "./media/characters/noraly/fuller.svg",
  35300. extra: 1114/1059,
  35301. bottom: 35/1149
  35302. }
  35303. },
  35304. fullest: {
  35305. height: math.unit(5 + 2/12, "feet"),
  35306. weight: math.unit(300, "lb"),
  35307. name: "Fullest",
  35308. image: {
  35309. source: "./media/characters/noraly/fullest.svg",
  35310. extra: 1114/1059,
  35311. bottom: 35/1149
  35312. }
  35313. },
  35314. },
  35315. [
  35316. {
  35317. name: "Normal",
  35318. height: math.unit(5 + 2/12, "feet"),
  35319. default: true
  35320. },
  35321. ]
  35322. ))
  35323. characterMakers.push(() => makeCharacter(
  35324. { name: "Pera", species: ["snake"], tags: ["naga"] },
  35325. {
  35326. front: {
  35327. height: math.unit(5 + 2/12, "feet"),
  35328. weight: math.unit(210, "lb"),
  35329. name: "Front",
  35330. image: {
  35331. source: "./media/characters/pera/front.svg",
  35332. extra: 1560/1531,
  35333. bottom: 165/1725
  35334. }
  35335. },
  35336. back: {
  35337. height: math.unit(5 + 2/12, "feet"),
  35338. weight: math.unit(210, "lb"),
  35339. name: "Back",
  35340. image: {
  35341. source: "./media/characters/pera/back.svg",
  35342. extra: 1523/1493,
  35343. bottom: 152/1675
  35344. }
  35345. },
  35346. dick: {
  35347. height: math.unit(2.4, "feet"),
  35348. name: "Dick",
  35349. image: {
  35350. source: "./media/characters/pera/dick.svg"
  35351. }
  35352. },
  35353. },
  35354. [
  35355. {
  35356. name: "Normal",
  35357. height: math.unit(5 + 2/12, "feet"),
  35358. default: true
  35359. },
  35360. ]
  35361. ))
  35362. characterMakers.push(() => makeCharacter(
  35363. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  35364. {
  35365. front: {
  35366. height: math.unit(12, "feet"),
  35367. weight: math.unit(3200, "lb"),
  35368. name: "Front",
  35369. image: {
  35370. source: "./media/characters/julian/front.svg",
  35371. extra: 2962/2701,
  35372. bottom: 184/3146
  35373. }
  35374. },
  35375. maw: {
  35376. height: math.unit(5.35, "feet"),
  35377. name: "Maw",
  35378. image: {
  35379. source: "./media/characters/julian/maw.svg"
  35380. }
  35381. },
  35382. paw: {
  35383. height: math.unit(3.07, "feet"),
  35384. name: "Paw",
  35385. image: {
  35386. source: "./media/characters/julian/paw.svg"
  35387. }
  35388. },
  35389. },
  35390. [
  35391. {
  35392. name: "Default",
  35393. height: math.unit(12, "feet"),
  35394. default: true
  35395. },
  35396. {
  35397. name: "Big",
  35398. height: math.unit(50, "feet")
  35399. },
  35400. {
  35401. name: "Really Big",
  35402. height: math.unit(1, "mile")
  35403. },
  35404. {
  35405. name: "Extremely Big",
  35406. height: math.unit(100, "miles")
  35407. },
  35408. {
  35409. name: "Planet Hugger",
  35410. height: math.unit(200, "megameters")
  35411. },
  35412. {
  35413. name: "Unreasonably Big",
  35414. height: math.unit(1e300, "meters")
  35415. },
  35416. ]
  35417. ))
  35418. characterMakers.push(() => makeCharacter(
  35419. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35420. {
  35421. solgooleo: {
  35422. height: math.unit(4, "meters"),
  35423. weight: math.unit(6000*1.5, "kg"),
  35424. volume: math.unit(6000, "liters"),
  35425. name: "Solgooleo",
  35426. image: {
  35427. source: "./media/characters/pi/solgooleo.svg",
  35428. extra: 388/331,
  35429. bottom: 29/417
  35430. }
  35431. },
  35432. },
  35433. [
  35434. {
  35435. name: "Normal",
  35436. height: math.unit(4, "meters"),
  35437. default: true
  35438. },
  35439. ]
  35440. ))
  35441. characterMakers.push(() => makeCharacter(
  35442. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35443. {
  35444. front: {
  35445. height: math.unit(8, "feet"),
  35446. weight: math.unit(4, "tons"),
  35447. name: "Front",
  35448. image: {
  35449. source: "./media/characters/shaun/front.svg",
  35450. extra: 503/495,
  35451. bottom: 20/523
  35452. }
  35453. },
  35454. back: {
  35455. height: math.unit(8, "feet"),
  35456. weight: math.unit(4, "tons"),
  35457. name: "Back",
  35458. image: {
  35459. source: "./media/characters/shaun/back.svg",
  35460. extra: 487/480,
  35461. bottom: 20/507
  35462. }
  35463. },
  35464. },
  35465. [
  35466. {
  35467. name: "Lorg",
  35468. height: math.unit(8, "feet"),
  35469. default: true
  35470. },
  35471. ]
  35472. ))
  35473. characterMakers.push(() => makeCharacter(
  35474. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35475. {
  35476. frontAnthro: {
  35477. height: math.unit(7, "feet"),
  35478. name: "Front",
  35479. image: {
  35480. source: "./media/characters/sini/front-anthro.svg",
  35481. extra: 726/678,
  35482. bottom: 35/761
  35483. },
  35484. form: "anthro",
  35485. default: true
  35486. },
  35487. backAnthro: {
  35488. height: math.unit(7, "feet"),
  35489. name: "Back",
  35490. image: {
  35491. source: "./media/characters/sini/back-anthro.svg",
  35492. extra: 743/701,
  35493. bottom: 12/755
  35494. },
  35495. form: "anthro",
  35496. },
  35497. frontAnthroNsfw: {
  35498. height: math.unit(7, "feet"),
  35499. name: "Front (NSFW)",
  35500. image: {
  35501. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35502. extra: 726/678,
  35503. bottom: 35/761
  35504. },
  35505. form: "anthro"
  35506. },
  35507. backAnthroNsfw: {
  35508. height: math.unit(7, "feet"),
  35509. name: "Back (NSFW)",
  35510. image: {
  35511. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35512. extra: 743/701,
  35513. bottom: 12/755
  35514. },
  35515. form: "anthro",
  35516. },
  35517. mawAnthro: {
  35518. height: math.unit(2.14, "feet"),
  35519. name: "Maw",
  35520. image: {
  35521. source: "./media/characters/sini/maw-anthro.svg"
  35522. },
  35523. form: "anthro"
  35524. },
  35525. dick: {
  35526. height: math.unit(1.45, "feet"),
  35527. name: "Dick",
  35528. image: {
  35529. source: "./media/characters/sini/dick-anthro.svg"
  35530. },
  35531. form: "anthro"
  35532. },
  35533. feral: {
  35534. height: math.unit(16, "feet"),
  35535. name: "Feral",
  35536. image: {
  35537. source: "./media/characters/sini/feral.svg",
  35538. extra: 814/605,
  35539. bottom: 11/825
  35540. },
  35541. form: "feral",
  35542. default: true
  35543. },
  35544. feralNsfw: {
  35545. height: math.unit(16, "feet"),
  35546. name: "Feral (NSFW)",
  35547. image: {
  35548. source: "./media/characters/sini/feral-nsfw.svg",
  35549. extra: 814/605,
  35550. bottom: 11/825
  35551. },
  35552. form: "feral"
  35553. },
  35554. mawFeral: {
  35555. height: math.unit(5.66, "feet"),
  35556. name: "Maw",
  35557. image: {
  35558. source: "./media/characters/sini/maw-feral.svg"
  35559. },
  35560. form: "feral",
  35561. },
  35562. pawFeral: {
  35563. height: math.unit(5.17, "feet"),
  35564. name: "Paw",
  35565. image: {
  35566. source: "./media/characters/sini/paw-feral.svg"
  35567. },
  35568. form: "feral",
  35569. },
  35570. rumpFeral: {
  35571. height: math.unit(13.11, "feet"),
  35572. name: "Rump",
  35573. image: {
  35574. source: "./media/characters/sini/rump-feral.svg"
  35575. },
  35576. form: "feral",
  35577. },
  35578. dickFeral: {
  35579. height: math.unit(1, "feet"),
  35580. name: "Dick",
  35581. image: {
  35582. source: "./media/characters/sini/dick-feral.svg"
  35583. },
  35584. form: "feral",
  35585. },
  35586. eyeFeral: {
  35587. height: math.unit(1.23, "feet"),
  35588. name: "Eye",
  35589. image: {
  35590. source: "./media/characters/sini/eye-feral.svg"
  35591. },
  35592. form: "feral",
  35593. },
  35594. },
  35595. [
  35596. {
  35597. name: "Normal",
  35598. height: math.unit(7, "feet"),
  35599. default: true,
  35600. form: "anthro"
  35601. },
  35602. {
  35603. name: "Normal",
  35604. height: math.unit(16, "feet"),
  35605. default: true,
  35606. form: "feral"
  35607. },
  35608. ],
  35609. {
  35610. "anthro": {
  35611. name: "Anthro",
  35612. default: true
  35613. },
  35614. "feral": {
  35615. name: "Feral",
  35616. }
  35617. }
  35618. ))
  35619. characterMakers.push(() => makeCharacter(
  35620. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35621. {
  35622. side: {
  35623. height: math.unit(47.2, "meters"),
  35624. weight: math.unit(10000, "tons"),
  35625. name: "Side",
  35626. image: {
  35627. source: "./media/characters/raylldo/side.svg",
  35628. extra: 2363/642,
  35629. bottom: 221/2584
  35630. }
  35631. },
  35632. top: {
  35633. height: math.unit(240, "meters"),
  35634. weight: math.unit(10000, "tons"),
  35635. name: "Top",
  35636. image: {
  35637. source: "./media/characters/raylldo/top.svg"
  35638. }
  35639. },
  35640. bottom: {
  35641. height: math.unit(240, "meters"),
  35642. weight: math.unit(10000, "tons"),
  35643. name: "Bottom",
  35644. image: {
  35645. source: "./media/characters/raylldo/bottom.svg"
  35646. }
  35647. },
  35648. head: {
  35649. height: math.unit(38.6, "meters"),
  35650. name: "Head",
  35651. image: {
  35652. source: "./media/characters/raylldo/head.svg",
  35653. extra: 1335/1112,
  35654. bottom: 0/1335
  35655. }
  35656. },
  35657. maw: {
  35658. height: math.unit(16.37, "meters"),
  35659. name: "Maw",
  35660. image: {
  35661. source: "./media/characters/raylldo/maw.svg",
  35662. extra: 883/660,
  35663. bottom: 0/883
  35664. },
  35665. extraAttributes: {
  35666. preyCapacity: {
  35667. name: "Capacity",
  35668. power: 3,
  35669. type: "volume",
  35670. base: math.unit(1000, "people")
  35671. },
  35672. tongueSize: {
  35673. name: "Tongue Size",
  35674. power: 2,
  35675. type: "area",
  35676. base: math.unit(21, "m^2")
  35677. }
  35678. }
  35679. },
  35680. forepaw: {
  35681. height: math.unit(18, "meters"),
  35682. name: "Forepaw",
  35683. image: {
  35684. source: "./media/characters/raylldo/forepaw.svg"
  35685. }
  35686. },
  35687. hindpaw: {
  35688. height: math.unit(23, "meters"),
  35689. name: "Hindpaw",
  35690. image: {
  35691. source: "./media/characters/raylldo/hindpaw.svg"
  35692. }
  35693. },
  35694. genitals: {
  35695. height: math.unit(42, "meters"),
  35696. name: "Genitals",
  35697. image: {
  35698. source: "./media/characters/raylldo/genitals.svg"
  35699. }
  35700. },
  35701. },
  35702. [
  35703. {
  35704. name: "Normal",
  35705. height: math.unit(47.2, "meters"),
  35706. default: true
  35707. },
  35708. ]
  35709. ))
  35710. characterMakers.push(() => makeCharacter(
  35711. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35712. {
  35713. anthroFront: {
  35714. height: math.unit(9, "feet"),
  35715. weight: math.unit(600, "lb"),
  35716. name: "Anthro (Front)",
  35717. image: {
  35718. source: "./media/characters/glint/anthro-front.svg",
  35719. extra: 1097/1018,
  35720. bottom: 28/1125
  35721. }
  35722. },
  35723. anthroBack: {
  35724. height: math.unit(9, "feet"),
  35725. weight: math.unit(600, "lb"),
  35726. name: "Anthro (Back)",
  35727. image: {
  35728. source: "./media/characters/glint/anthro-back.svg",
  35729. extra: 1154/997,
  35730. bottom: 36/1190
  35731. }
  35732. },
  35733. feral: {
  35734. height: math.unit(11, "feet"),
  35735. weight: math.unit(50000, "lb"),
  35736. name: "Feral",
  35737. image: {
  35738. source: "./media/characters/glint/feral.svg",
  35739. extra: 3035/1585,
  35740. bottom: 1169/4204
  35741. }
  35742. },
  35743. dickAnthro: {
  35744. height: math.unit(0.7, "meters"),
  35745. name: "Dick (Anthro)",
  35746. image: {
  35747. source: "./media/characters/glint/dick-anthro.svg"
  35748. }
  35749. },
  35750. dickFeral: {
  35751. height: math.unit(2.65, "meters"),
  35752. name: "Dick (Feral)",
  35753. image: {
  35754. source: "./media/characters/glint/dick-feral.svg"
  35755. }
  35756. },
  35757. slitHidden: {
  35758. height: math.unit(5.85, "meters"),
  35759. name: "Slit (Hidden)",
  35760. image: {
  35761. source: "./media/characters/glint/slit-hidden.svg"
  35762. }
  35763. },
  35764. slitErect: {
  35765. height: math.unit(5.85, "meters"),
  35766. name: "Slit (Erect)",
  35767. image: {
  35768. source: "./media/characters/glint/slit-erect.svg"
  35769. }
  35770. },
  35771. mawAnthro: {
  35772. height: math.unit(0.63, "meters"),
  35773. name: "Maw (Anthro)",
  35774. image: {
  35775. source: "./media/characters/glint/maw.svg"
  35776. }
  35777. },
  35778. mawFeral: {
  35779. height: math.unit(2.89, "meters"),
  35780. name: "Maw (Feral)",
  35781. image: {
  35782. source: "./media/characters/glint/maw.svg"
  35783. }
  35784. },
  35785. },
  35786. [
  35787. {
  35788. name: "Normal",
  35789. height: math.unit(9, "feet"),
  35790. default: true
  35791. },
  35792. ]
  35793. ))
  35794. characterMakers.push(() => makeCharacter(
  35795. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35796. {
  35797. side: {
  35798. height: math.unit(15, "feet"),
  35799. weight: math.unit(5000, "kg"),
  35800. name: "Side",
  35801. image: {
  35802. source: "./media/characters/kairne/side.svg",
  35803. extra: 979/811,
  35804. bottom: 13/992
  35805. }
  35806. },
  35807. front: {
  35808. height: math.unit(15, "feet"),
  35809. weight: math.unit(5000, "kg"),
  35810. name: "Front",
  35811. image: {
  35812. source: "./media/characters/kairne/front.svg",
  35813. extra: 908/814,
  35814. bottom: 26/934
  35815. }
  35816. },
  35817. sideNsfw: {
  35818. height: math.unit(15, "feet"),
  35819. weight: math.unit(5000, "kg"),
  35820. name: "Side (NSFW)",
  35821. image: {
  35822. source: "./media/characters/kairne/side-nsfw.svg",
  35823. extra: 979/811,
  35824. bottom: 13/992
  35825. }
  35826. },
  35827. frontNsfw: {
  35828. height: math.unit(15, "feet"),
  35829. weight: math.unit(5000, "kg"),
  35830. name: "Front (NSFW)",
  35831. image: {
  35832. source: "./media/characters/kairne/front-nsfw.svg",
  35833. extra: 908/814,
  35834. bottom: 26/934
  35835. }
  35836. },
  35837. dickCaged: {
  35838. height: math.unit(0.65, "meters"),
  35839. name: "Dick-caged",
  35840. image: {
  35841. source: "./media/characters/kairne/dick-caged.svg"
  35842. }
  35843. },
  35844. dick: {
  35845. height: math.unit(0.79, "meters"),
  35846. name: "Dick",
  35847. image: {
  35848. source: "./media/characters/kairne/dick.svg"
  35849. }
  35850. },
  35851. genitals: {
  35852. height: math.unit(1.29, "meters"),
  35853. name: "Genitals",
  35854. image: {
  35855. source: "./media/characters/kairne/genitals.svg"
  35856. }
  35857. },
  35858. maw: {
  35859. height: math.unit(1.73, "meters"),
  35860. name: "Maw",
  35861. image: {
  35862. source: "./media/characters/kairne/maw.svg"
  35863. }
  35864. },
  35865. },
  35866. [
  35867. {
  35868. name: "Normal",
  35869. height: math.unit(15, "feet"),
  35870. default: true
  35871. },
  35872. ]
  35873. ))
  35874. characterMakers.push(() => makeCharacter(
  35875. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35876. {
  35877. front: {
  35878. height: math.unit(5 + 8/12, "feet"),
  35879. weight: math.unit(139, "lb"),
  35880. name: "Front",
  35881. image: {
  35882. source: "./media/characters/biscuit-jackal/front.svg",
  35883. extra: 2106/1961,
  35884. bottom: 58/2164
  35885. }
  35886. },
  35887. back: {
  35888. height: math.unit(5 + 8/12, "feet"),
  35889. weight: math.unit(139, "lb"),
  35890. name: "Back",
  35891. image: {
  35892. source: "./media/characters/biscuit-jackal/back.svg",
  35893. extra: 2132/1976,
  35894. bottom: 57/2189
  35895. }
  35896. },
  35897. werejackal: {
  35898. height: math.unit(6 + 3/12, "feet"),
  35899. weight: math.unit(188, "lb"),
  35900. name: "Werejackal",
  35901. image: {
  35902. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35903. extra: 2373/2178,
  35904. bottom: 53/2426
  35905. }
  35906. },
  35907. },
  35908. [
  35909. {
  35910. name: "Normal",
  35911. height: math.unit(5 + 8/12, "feet"),
  35912. default: true
  35913. },
  35914. ]
  35915. ))
  35916. characterMakers.push(() => makeCharacter(
  35917. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35918. {
  35919. front: {
  35920. height: math.unit(140, "cm"),
  35921. weight: math.unit(45, "kg"),
  35922. name: "Front",
  35923. image: {
  35924. source: "./media/characters/tayra-white/front.svg",
  35925. extra: 2229/2192,
  35926. bottom: 75/2304
  35927. }
  35928. },
  35929. },
  35930. [
  35931. {
  35932. name: "Normal",
  35933. height: math.unit(140, "cm"),
  35934. default: true
  35935. },
  35936. ]
  35937. ))
  35938. characterMakers.push(() => makeCharacter(
  35939. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35940. {
  35941. front: {
  35942. height: math.unit(4 + 5/12, "feet"),
  35943. name: "Front",
  35944. image: {
  35945. source: "./media/characters/scoop/front.svg",
  35946. extra: 1257/1136,
  35947. bottom: 69/1326
  35948. }
  35949. },
  35950. back: {
  35951. height: math.unit(4 + 5/12, "feet"),
  35952. name: "Back",
  35953. image: {
  35954. source: "./media/characters/scoop/back.svg",
  35955. extra: 1321/1152,
  35956. bottom: 32/1353
  35957. }
  35958. },
  35959. maw: {
  35960. height: math.unit(0.68, "feet"),
  35961. name: "Maw",
  35962. image: {
  35963. source: "./media/characters/scoop/maw.svg"
  35964. }
  35965. },
  35966. },
  35967. [
  35968. {
  35969. name: "Really Small",
  35970. height: math.unit(1, "mm")
  35971. },
  35972. {
  35973. name: "Micro",
  35974. height: math.unit(1, "inch")
  35975. },
  35976. {
  35977. name: "Normal",
  35978. height: math.unit(4 + 5/12, "feet"),
  35979. default: true
  35980. },
  35981. {
  35982. name: "Macro",
  35983. height: math.unit(200, "feet")
  35984. },
  35985. {
  35986. name: "Megamacro",
  35987. height: math.unit(3240, "feet")
  35988. },
  35989. {
  35990. name: "Teramacro",
  35991. height: math.unit(2500, "miles")
  35992. },
  35993. ]
  35994. ))
  35995. characterMakers.push(() => makeCharacter(
  35996. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35997. {
  35998. front: {
  35999. height: math.unit(15 + 7/12, "feet"),
  36000. weight: math.unit(1150, "tons"),
  36001. name: "Front",
  36002. image: {
  36003. source: "./media/characters/saphinara/front.svg",
  36004. extra: 1837/1643,
  36005. bottom: 84/1921
  36006. },
  36007. form: "normal",
  36008. default: true
  36009. },
  36010. side: {
  36011. height: math.unit(15 + 7/12, "feet"),
  36012. weight: math.unit(1150, "tons"),
  36013. name: "Side",
  36014. image: {
  36015. source: "./media/characters/saphinara/side.svg",
  36016. extra: 605/547,
  36017. bottom: 6/611
  36018. },
  36019. form: "normal"
  36020. },
  36021. back: {
  36022. height: math.unit(15 + 7/12, "feet"),
  36023. weight: math.unit(1150, "tons"),
  36024. name: "Back",
  36025. image: {
  36026. source: "./media/characters/saphinara/back.svg",
  36027. extra: 591/531,
  36028. bottom: 13/604
  36029. },
  36030. form: "normal"
  36031. },
  36032. frontTail: {
  36033. height: math.unit(15 + 7/12, "feet"),
  36034. weight: math.unit(1150, "tons"),
  36035. name: "Front (Full Tail)",
  36036. image: {
  36037. source: "./media/characters/saphinara/front-tail.svg",
  36038. extra: 2256/1630,
  36039. bottom: 261/2517
  36040. },
  36041. form: "normal"
  36042. },
  36043. insides: {
  36044. height: math.unit(11.92, "feet"),
  36045. name: "Insides",
  36046. image: {
  36047. source: "./media/characters/saphinara/insides.svg"
  36048. },
  36049. form: "normal"
  36050. },
  36051. head: {
  36052. height: math.unit(4.17, "feet"),
  36053. name: "Head",
  36054. image: {
  36055. source: "./media/characters/saphinara/head.svg"
  36056. },
  36057. form: "normal"
  36058. },
  36059. tongue: {
  36060. height: math.unit(4.60, "feet"),
  36061. name: "Tongue",
  36062. image: {
  36063. source: "./media/characters/saphinara/tongue.svg"
  36064. },
  36065. form: "normal"
  36066. },
  36067. headEnraged: {
  36068. height: math.unit(5.55, "feet"),
  36069. name: "Head (Enraged)",
  36070. image: {
  36071. source: "./media/characters/saphinara/head-enraged.svg"
  36072. },
  36073. form: "normal"
  36074. },
  36075. wings: {
  36076. height: math.unit(11.95, "feet"),
  36077. name: "Wings",
  36078. image: {
  36079. source: "./media/characters/saphinara/wings.svg"
  36080. },
  36081. form: "normal"
  36082. },
  36083. feathers: {
  36084. height: math.unit(8.92, "feet"),
  36085. name: "Feathers",
  36086. image: {
  36087. source: "./media/characters/saphinara/feathers.svg"
  36088. },
  36089. form: "normal"
  36090. },
  36091. shackles: {
  36092. height: math.unit(2, "feet"),
  36093. name: "Shackles",
  36094. image: {
  36095. source: "./media/characters/saphinara/shackles.svg"
  36096. },
  36097. form: "normal"
  36098. },
  36099. eyes: {
  36100. height: math.unit(1.331, "feet"),
  36101. name: "Eyes",
  36102. image: {
  36103. source: "./media/characters/saphinara/eyes.svg"
  36104. },
  36105. form: "normal"
  36106. },
  36107. eyesEnraged: {
  36108. height: math.unit(1.331, "feet"),
  36109. name: "Eyes (Enraged)",
  36110. image: {
  36111. source: "./media/characters/saphinara/eyes-enraged.svg"
  36112. },
  36113. form: "normal"
  36114. },
  36115. trueFormSide: {
  36116. height: math.unit(200, "feet"),
  36117. weight: math.unit(1e7, "tons"),
  36118. name: "Side",
  36119. image: {
  36120. source: "./media/characters/saphinara/true-form-side.svg",
  36121. extra: 1399/770,
  36122. bottom: 97/1496
  36123. },
  36124. form: "true-form",
  36125. default: true
  36126. },
  36127. trueFormMaw: {
  36128. height: math.unit(71.5, "feet"),
  36129. name: "Maw",
  36130. image: {
  36131. source: "./media/characters/saphinara/true-form-maw.svg",
  36132. extra: 2302/1453,
  36133. bottom: 0/2302
  36134. },
  36135. form: "true-form"
  36136. },
  36137. meowberusSide: {
  36138. height: math.unit(75, "feet"),
  36139. weight: math.unit(180000, "kg"),
  36140. preyCapacity: math.unit(50000, "people"),
  36141. name: "Side",
  36142. image: {
  36143. source: "./media/characters/saphinara/meowberus-side.svg",
  36144. extra: 1400/711,
  36145. bottom: 126/1526
  36146. },
  36147. form: "meowberus",
  36148. extraAttributes: {
  36149. "pawArea": {
  36150. name: "Paw Size",
  36151. power: 2,
  36152. type: "area",
  36153. base: math.unit(35, "m^2")
  36154. }
  36155. }
  36156. },
  36157. },
  36158. [
  36159. {
  36160. name: "Normal",
  36161. height: math.unit(15 + 7/12, "feet"),
  36162. default: true,
  36163. form: "normal"
  36164. },
  36165. {
  36166. name: "Angry",
  36167. height: math.unit(30 + 6/12, "feet"),
  36168. form: "normal"
  36169. },
  36170. {
  36171. name: "Enraged",
  36172. height: math.unit(102 + 1/12, "feet"),
  36173. form: "normal"
  36174. },
  36175. {
  36176. name: "True",
  36177. height: math.unit(200, "feet"),
  36178. default: true,
  36179. form: "true-form"
  36180. },
  36181. {
  36182. name: "Normal",
  36183. height: math.unit(75, "feet"),
  36184. default: true,
  36185. form: "meowberus"
  36186. },
  36187. ],
  36188. {
  36189. "normal": {
  36190. name: "Normal",
  36191. default: true
  36192. },
  36193. "true-form": {
  36194. name: "True Form"
  36195. },
  36196. "meowberus": {
  36197. name: "Meowberus",
  36198. },
  36199. }
  36200. ))
  36201. characterMakers.push(() => makeCharacter(
  36202. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  36203. {
  36204. front: {
  36205. height: math.unit(6 + 8/12, "feet"),
  36206. weight: math.unit(300, "lb"),
  36207. name: "Front",
  36208. image: {
  36209. source: "./media/characters/jrain/front.svg",
  36210. extra: 3039/2865,
  36211. bottom: 399/3438
  36212. }
  36213. },
  36214. back: {
  36215. height: math.unit(6 + 8/12, "feet"),
  36216. weight: math.unit(300, "lb"),
  36217. name: "Back",
  36218. image: {
  36219. source: "./media/characters/jrain/back.svg",
  36220. extra: 3089/2938,
  36221. bottom: 172/3261
  36222. }
  36223. },
  36224. head: {
  36225. height: math.unit(2.14, "feet"),
  36226. name: "Head",
  36227. image: {
  36228. source: "./media/characters/jrain/head.svg"
  36229. }
  36230. },
  36231. maw: {
  36232. height: math.unit(1.77, "feet"),
  36233. name: "Maw",
  36234. image: {
  36235. source: "./media/characters/jrain/maw.svg"
  36236. }
  36237. },
  36238. leftHand: {
  36239. height: math.unit(1.1, "feet"),
  36240. name: "Left Hand",
  36241. image: {
  36242. source: "./media/characters/jrain/left-hand.svg"
  36243. }
  36244. },
  36245. rightHand: {
  36246. height: math.unit(1.1, "feet"),
  36247. name: "Right Hand",
  36248. image: {
  36249. source: "./media/characters/jrain/right-hand.svg"
  36250. }
  36251. },
  36252. eye: {
  36253. height: math.unit(0.35, "feet"),
  36254. name: "Eye",
  36255. image: {
  36256. source: "./media/characters/jrain/eye.svg"
  36257. }
  36258. },
  36259. },
  36260. [
  36261. {
  36262. name: "Normal",
  36263. height: math.unit(6 + 8/12, "feet"),
  36264. default: true
  36265. },
  36266. {
  36267. name: "Casually Large",
  36268. height: math.unit(25, "feet")
  36269. },
  36270. {
  36271. name: "Giant",
  36272. height: math.unit(100, "feet")
  36273. },
  36274. {
  36275. name: "Kaiju",
  36276. height: math.unit(300, "feet")
  36277. },
  36278. ]
  36279. ))
  36280. characterMakers.push(() => makeCharacter(
  36281. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  36282. {
  36283. dragon: {
  36284. height: math.unit(5, "meters"),
  36285. name: "Dragon",
  36286. image: {
  36287. source: "./media/characters/sabrina/dragon.svg",
  36288. extra: 3670 / 2365,
  36289. bottom: 333 / 4003
  36290. }
  36291. },
  36292. gryphon: {
  36293. height: math.unit(3, "meters"),
  36294. name: "Gryphon",
  36295. image: {
  36296. source: "./media/characters/sabrina/gryphon.svg",
  36297. extra: 1576 / 945,
  36298. bottom: 71 / 1647
  36299. }
  36300. },
  36301. snake: {
  36302. height: math.unit(12, "meters"),
  36303. name: "Snake",
  36304. image: {
  36305. source: "./media/characters/sabrina/snake.svg",
  36306. extra: 1758 / 1320,
  36307. bottom: 186 / 1944
  36308. }
  36309. },
  36310. collar: {
  36311. height: math.unit(1.86, "meters"),
  36312. name: "Collar",
  36313. image: {
  36314. source: "./media/characters/sabrina/collar.svg"
  36315. }
  36316. },
  36317. eye: {
  36318. height: math.unit(0.53, "meters"),
  36319. name: "Eye",
  36320. image: {
  36321. source: "./media/characters/sabrina/eye.svg"
  36322. }
  36323. },
  36324. foot: {
  36325. height: math.unit(1.86, "meters"),
  36326. name: "Foot",
  36327. image: {
  36328. source: "./media/characters/sabrina/foot.svg"
  36329. }
  36330. },
  36331. hand: {
  36332. height: math.unit(1.32, "meters"),
  36333. name: "Hand",
  36334. image: {
  36335. source: "./media/characters/sabrina/hand.svg"
  36336. }
  36337. },
  36338. head: {
  36339. height: math.unit(2.44, "meters"),
  36340. name: "Head",
  36341. image: {
  36342. source: "./media/characters/sabrina/head.svg"
  36343. }
  36344. },
  36345. headAngry: {
  36346. height: math.unit(2.44, "meters"),
  36347. name: "Head (Angry))",
  36348. image: {
  36349. source: "./media/characters/sabrina/head-angry.svg"
  36350. }
  36351. },
  36352. maw: {
  36353. height: math.unit(1.65, "meters"),
  36354. name: "Maw",
  36355. image: {
  36356. source: "./media/characters/sabrina/maw.svg"
  36357. }
  36358. },
  36359. spikes: {
  36360. height: math.unit(1.69, "meters"),
  36361. name: "Spikes",
  36362. image: {
  36363. source: "./media/characters/sabrina/spikes.svg"
  36364. }
  36365. },
  36366. stomach: {
  36367. height: math.unit(1.15, "meters"),
  36368. name: "Stomach",
  36369. image: {
  36370. source: "./media/characters/sabrina/stomach.svg"
  36371. }
  36372. },
  36373. tongue: {
  36374. height: math.unit(1.27, "meters"),
  36375. name: "Tongue",
  36376. image: {
  36377. source: "./media/characters/sabrina/tongue.svg"
  36378. }
  36379. },
  36380. wingDorsal: {
  36381. height: math.unit(4.85, "meters"),
  36382. name: "Wing (Dorsal)",
  36383. image: {
  36384. source: "./media/characters/sabrina/wing-dorsal.svg"
  36385. }
  36386. },
  36387. wingVentral: {
  36388. height: math.unit(4.85, "meters"),
  36389. name: "Wing (Ventral)",
  36390. image: {
  36391. source: "./media/characters/sabrina/wing-ventral.svg"
  36392. }
  36393. },
  36394. },
  36395. [
  36396. {
  36397. name: "Normal",
  36398. height: math.unit(5, "meters"),
  36399. default: true
  36400. },
  36401. ]
  36402. ))
  36403. characterMakers.push(() => makeCharacter(
  36404. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  36405. {
  36406. frontMaid: {
  36407. height: math.unit(5 + 5/12, "feet"),
  36408. weight: math.unit(130, "lb"),
  36409. name: "Front (Maid)",
  36410. image: {
  36411. source: "./media/characters/midnight-tales/front-maid.svg",
  36412. extra: 489/454,
  36413. bottom: 61/550
  36414. }
  36415. },
  36416. frontFormal: {
  36417. height: math.unit(5 + 5/12, "feet"),
  36418. weight: math.unit(130, "lb"),
  36419. name: "Front (Formal)",
  36420. image: {
  36421. source: "./media/characters/midnight-tales/front-formal.svg",
  36422. extra: 489/454,
  36423. bottom: 61/550
  36424. }
  36425. },
  36426. back: {
  36427. height: math.unit(5 + 5/12, "feet"),
  36428. weight: math.unit(130, "lb"),
  36429. name: "Back",
  36430. image: {
  36431. source: "./media/characters/midnight-tales/back.svg",
  36432. extra: 498/456,
  36433. bottom: 33/531
  36434. }
  36435. },
  36436. frontBeast: {
  36437. height: math.unit(40, "feet"),
  36438. weight: math.unit(64000, "lb"),
  36439. name: "Front (Beast)",
  36440. image: {
  36441. source: "./media/characters/midnight-tales/front-beast.svg",
  36442. extra: 927/860,
  36443. bottom: 53/980
  36444. }
  36445. },
  36446. backBeast: {
  36447. height: math.unit(40, "feet"),
  36448. weight: math.unit(64000, "lb"),
  36449. name: "Back (Beast)",
  36450. image: {
  36451. source: "./media/characters/midnight-tales/back-beast.svg",
  36452. extra: 929/855,
  36453. bottom: 16/945
  36454. }
  36455. },
  36456. footBeast: {
  36457. height: math.unit(6.7, "feet"),
  36458. name: "Foot (Beast)",
  36459. image: {
  36460. source: "./media/characters/midnight-tales/foot-beast.svg"
  36461. }
  36462. },
  36463. headBeast: {
  36464. height: math.unit(8, "feet"),
  36465. name: "Head (Beast)",
  36466. image: {
  36467. source: "./media/characters/midnight-tales/head-beast.svg"
  36468. }
  36469. },
  36470. },
  36471. [
  36472. {
  36473. name: "Normal",
  36474. height: math.unit(5 + 5 / 12, "feet"),
  36475. default: true
  36476. },
  36477. {
  36478. name: "Macro",
  36479. height: math.unit(25, "feet")
  36480. },
  36481. ]
  36482. ))
  36483. characterMakers.push(() => makeCharacter(
  36484. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36485. {
  36486. front: {
  36487. height: math.unit(5 + 10/12, "feet"),
  36488. name: "Front",
  36489. image: {
  36490. source: "./media/characters/argon/front.svg",
  36491. extra: 2009/1935,
  36492. bottom: 118/2127
  36493. }
  36494. },
  36495. back: {
  36496. height: math.unit(5 + 10/12, "feet"),
  36497. name: "Back",
  36498. image: {
  36499. source: "./media/characters/argon/back.svg",
  36500. extra: 2047/1992,
  36501. bottom: 20/2067
  36502. }
  36503. },
  36504. frontDressed: {
  36505. height: math.unit(5 + 10/12, "feet"),
  36506. name: "Front (Dressed)",
  36507. image: {
  36508. source: "./media/characters/argon/front-dressed.svg",
  36509. extra: 2009/1935,
  36510. bottom: 118/2127
  36511. }
  36512. },
  36513. },
  36514. [
  36515. {
  36516. name: "Normal",
  36517. height: math.unit(5 + 10/12, "feet"),
  36518. default: true
  36519. },
  36520. ]
  36521. ))
  36522. characterMakers.push(() => makeCharacter(
  36523. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  36524. {
  36525. front: {
  36526. height: math.unit(8 + 6/12, "feet"),
  36527. weight: math.unit(1150, "lb"),
  36528. name: "Front",
  36529. image: {
  36530. source: "./media/characters/kichi/front.svg",
  36531. extra: 1267/1164,
  36532. bottom: 61/1328
  36533. }
  36534. },
  36535. back: {
  36536. height: math.unit(8 + 6/12, "feet"),
  36537. weight: math.unit(1150, "lb"),
  36538. name: "Back",
  36539. image: {
  36540. source: "./media/characters/kichi/back.svg",
  36541. extra: 1273/1166,
  36542. bottom: 33/1306
  36543. }
  36544. },
  36545. },
  36546. [
  36547. {
  36548. name: "Normal",
  36549. height: math.unit(8 + 6/12, "feet"),
  36550. default: true
  36551. },
  36552. ]
  36553. ))
  36554. characterMakers.push(() => makeCharacter(
  36555. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36556. {
  36557. front: {
  36558. height: math.unit(6, "feet"),
  36559. weight: math.unit(210, "lb"),
  36560. name: "Front",
  36561. image: {
  36562. source: "./media/characters/manetel-greyscale/front.svg",
  36563. extra: 350/312,
  36564. bottom: 8/358
  36565. }
  36566. },
  36567. },
  36568. [
  36569. {
  36570. name: "Micro",
  36571. height: math.unit(2, "inches")
  36572. },
  36573. {
  36574. name: "Normal",
  36575. height: math.unit(6, "feet"),
  36576. default: true
  36577. },
  36578. {
  36579. name: "Minimacro",
  36580. height: math.unit(17, "feet")
  36581. },
  36582. {
  36583. name: "Macro",
  36584. height: math.unit(117, "feet")
  36585. },
  36586. ]
  36587. ))
  36588. characterMakers.push(() => makeCharacter(
  36589. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36590. {
  36591. side: {
  36592. height: math.unit(5 + 1/12, "feet"),
  36593. weight: math.unit(418, "lb"),
  36594. name: "Side",
  36595. image: {
  36596. source: "./media/characters/softpurr/side.svg",
  36597. extra: 1993/1945,
  36598. bottom: 134/2127
  36599. }
  36600. },
  36601. front: {
  36602. height: math.unit(5 + 1/12, "feet"),
  36603. weight: math.unit(418, "lb"),
  36604. name: "Front",
  36605. image: {
  36606. source: "./media/characters/softpurr/front.svg",
  36607. extra: 1950/1856,
  36608. bottom: 174/2124
  36609. }
  36610. },
  36611. paw: {
  36612. height: math.unit(1, "feet"),
  36613. name: "Paw",
  36614. image: {
  36615. source: "./media/characters/softpurr/paw.svg"
  36616. }
  36617. },
  36618. },
  36619. [
  36620. {
  36621. name: "Normal",
  36622. height: math.unit(5 + 1/12, "feet"),
  36623. default: true
  36624. },
  36625. ]
  36626. ))
  36627. characterMakers.push(() => makeCharacter(
  36628. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36629. {
  36630. front: {
  36631. height: math.unit(260, "meters"),
  36632. name: "Front",
  36633. image: {
  36634. source: "./media/characters/anahita/front.svg",
  36635. extra: 665/635,
  36636. bottom: 89/754
  36637. }
  36638. },
  36639. },
  36640. [
  36641. {
  36642. name: "Macro",
  36643. height: math.unit(260, "meters"),
  36644. default: true
  36645. },
  36646. ]
  36647. ))
  36648. characterMakers.push(() => makeCharacter(
  36649. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36650. {
  36651. front: {
  36652. height: math.unit(4 + 10/12, "feet"),
  36653. weight: math.unit(160, "lb"),
  36654. name: "Front",
  36655. image: {
  36656. source: "./media/characters/chip-mouse/front.svg",
  36657. extra: 3528/3408,
  36658. bottom: 0/3528
  36659. }
  36660. },
  36661. frontNsfw: {
  36662. height: math.unit(4 + 10/12, "feet"),
  36663. weight: math.unit(160, "lb"),
  36664. name: "Front (NSFW)",
  36665. image: {
  36666. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36667. extra: 3528/3408,
  36668. bottom: 0/3528
  36669. }
  36670. },
  36671. },
  36672. [
  36673. {
  36674. name: "Normal",
  36675. height: math.unit(4 + 10/12, "feet"),
  36676. default: true
  36677. },
  36678. ]
  36679. ))
  36680. characterMakers.push(() => makeCharacter(
  36681. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  36682. {
  36683. side: {
  36684. height: math.unit(10, "feet"),
  36685. weight: math.unit(14000, "lb"),
  36686. name: "Side",
  36687. image: {
  36688. source: "./media/characters/kremm/side.svg",
  36689. extra: 1390/1053,
  36690. bottom: 90/1480
  36691. }
  36692. },
  36693. gut: {
  36694. height: math.unit(5.8, "feet"),
  36695. name: "Gut",
  36696. image: {
  36697. source: "./media/characters/kremm/gut.svg"
  36698. }
  36699. },
  36700. ass: {
  36701. height: math.unit(6.1, "feet"),
  36702. name: "Ass",
  36703. image: {
  36704. source: "./media/characters/kremm/ass.svg"
  36705. }
  36706. },
  36707. jaws: {
  36708. height: math.unit(2.2, "feet"),
  36709. name: "Jaws",
  36710. image: {
  36711. source: "./media/characters/kremm/jaws.svg"
  36712. }
  36713. },
  36714. dick: {
  36715. height: math.unit(4.26, "feet"),
  36716. name: "Dick",
  36717. image: {
  36718. source: "./media/characters/kremm/dick.svg"
  36719. }
  36720. },
  36721. },
  36722. [
  36723. {
  36724. name: "Normal",
  36725. height: math.unit(10, "feet"),
  36726. default: true
  36727. },
  36728. ]
  36729. ))
  36730. characterMakers.push(() => makeCharacter(
  36731. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36732. {
  36733. front: {
  36734. height: math.unit(30, "stories"),
  36735. name: "Front",
  36736. image: {
  36737. source: "./media/characters/kai/front.svg",
  36738. extra: 1892/1718,
  36739. bottom: 162/2054
  36740. }
  36741. },
  36742. },
  36743. [
  36744. {
  36745. name: "Macro",
  36746. height: math.unit(30, "stories"),
  36747. default: true
  36748. },
  36749. ]
  36750. ))
  36751. characterMakers.push(() => makeCharacter(
  36752. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36753. {
  36754. front: {
  36755. height: math.unit(6 + 4/12, "feet"),
  36756. weight: math.unit(145, "lb"),
  36757. name: "Front",
  36758. image: {
  36759. source: "./media/characters/sykes/front.svg",
  36760. extra: 1321 / 1187,
  36761. bottom: 66 / 1387
  36762. }
  36763. },
  36764. back: {
  36765. height: math.unit(6 + 4/12, "feet"),
  36766. weight: math.unit(145, "lb"),
  36767. name: "Back",
  36768. image: {
  36769. source: "./media/characters/sykes/back.svg",
  36770. extra: 1326/1181,
  36771. bottom: 31/1357
  36772. }
  36773. },
  36774. traditionalOutfit: {
  36775. height: math.unit(6 + 4/12, "feet"),
  36776. weight: math.unit(145, "lb"),
  36777. name: "Traditional Outfit",
  36778. image: {
  36779. source: "./media/characters/sykes/traditional-outfit.svg",
  36780. extra: 1321 / 1187,
  36781. bottom: 66 / 1387
  36782. }
  36783. },
  36784. adventureOutfit: {
  36785. height: math.unit(6 + 4/12, "feet"),
  36786. weight: math.unit(145, "lb"),
  36787. name: "Adventure Outfit",
  36788. image: {
  36789. source: "./media/characters/sykes/adventure-outfit.svg",
  36790. extra: 1321 / 1187,
  36791. bottom: 66 / 1387
  36792. }
  36793. },
  36794. handLeft: {
  36795. height: math.unit(0.9, "feet"),
  36796. name: "Hand (Left)",
  36797. image: {
  36798. source: "./media/characters/sykes/hand-left.svg"
  36799. }
  36800. },
  36801. handRight: {
  36802. height: math.unit(0.839, "feet"),
  36803. name: "Hand (Right)",
  36804. image: {
  36805. source: "./media/characters/sykes/hand-right.svg"
  36806. }
  36807. },
  36808. leftFoot: {
  36809. height: math.unit(1.2, "feet"),
  36810. name: "Foot (Left)",
  36811. image: {
  36812. source: "./media/characters/sykes/foot-left.svg"
  36813. }
  36814. },
  36815. rightFoot: {
  36816. height: math.unit(1.2, "feet"),
  36817. name: "Foot (Right)",
  36818. image: {
  36819. source: "./media/characters/sykes/foot-right.svg"
  36820. }
  36821. },
  36822. maw: {
  36823. height: math.unit(1.93, "feet"),
  36824. name: "Maw",
  36825. image: {
  36826. source: "./media/characters/sykes/maw.svg"
  36827. }
  36828. },
  36829. teeth: {
  36830. height: math.unit(0.51, "feet"),
  36831. name: "Teeth",
  36832. image: {
  36833. source: "./media/characters/sykes/teeth.svg"
  36834. }
  36835. },
  36836. tongue: {
  36837. height: math.unit(2.13, "feet"),
  36838. name: "Tongue",
  36839. image: {
  36840. source: "./media/characters/sykes/tongue.svg"
  36841. }
  36842. },
  36843. uvula: {
  36844. height: math.unit(0.16, "feet"),
  36845. name: "Uvula",
  36846. image: {
  36847. source: "./media/characters/sykes/uvula.svg"
  36848. }
  36849. },
  36850. collar: {
  36851. height: math.unit(0.287, "feet"),
  36852. name: "Collar",
  36853. image: {
  36854. source: "./media/characters/sykes/collar.svg"
  36855. }
  36856. },
  36857. tail: {
  36858. height: math.unit(3.8, "feet"),
  36859. name: "Tail",
  36860. image: {
  36861. source: "./media/characters/sykes/tail.svg"
  36862. }
  36863. },
  36864. },
  36865. [
  36866. {
  36867. name: "Shrunken",
  36868. height: math.unit(5, "inches")
  36869. },
  36870. {
  36871. name: "Normal",
  36872. height: math.unit(6 + 4 / 12, "feet"),
  36873. default: true
  36874. },
  36875. {
  36876. name: "Big",
  36877. height: math.unit(15, "feet")
  36878. },
  36879. ]
  36880. ))
  36881. characterMakers.push(() => makeCharacter(
  36882. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36883. {
  36884. front: {
  36885. height: math.unit(5 + 8/12, "feet"),
  36886. weight: math.unit(190, "lb"),
  36887. name: "Front",
  36888. image: {
  36889. source: "./media/characters/oven-otter/front.svg",
  36890. extra: 1809/1740,
  36891. bottom: 181/1990
  36892. }
  36893. },
  36894. back: {
  36895. height: math.unit(5 + 8/12, "feet"),
  36896. weight: math.unit(190, "lb"),
  36897. name: "Back",
  36898. image: {
  36899. source: "./media/characters/oven-otter/back.svg",
  36900. extra: 1709/1635,
  36901. bottom: 118/1827
  36902. }
  36903. },
  36904. hand: {
  36905. height: math.unit(1.07, "feet"),
  36906. name: "Hand",
  36907. image: {
  36908. source: "./media/characters/oven-otter/hand.svg"
  36909. }
  36910. },
  36911. beans: {
  36912. height: math.unit(1.74, "feet"),
  36913. name: "Beans",
  36914. image: {
  36915. source: "./media/characters/oven-otter/beans.svg"
  36916. }
  36917. },
  36918. },
  36919. [
  36920. {
  36921. name: "Micro",
  36922. height: math.unit(0.5, "inches")
  36923. },
  36924. {
  36925. name: "Normal",
  36926. height: math.unit(5 + 8/12, "feet"),
  36927. default: true
  36928. },
  36929. {
  36930. name: "Macro",
  36931. height: math.unit(250, "feet")
  36932. },
  36933. {
  36934. name: "Really High",
  36935. height: math.unit(420, "feet")
  36936. },
  36937. ]
  36938. ))
  36939. characterMakers.push(() => makeCharacter(
  36940. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36941. {
  36942. front: {
  36943. height: math.unit(5, "meters"),
  36944. weight: math.unit(292000000000000, "kg"),
  36945. name: "Front",
  36946. image: {
  36947. source: "./media/characters/devourer/front.svg",
  36948. extra: 1800/1733,
  36949. bottom: 211/2011
  36950. }
  36951. },
  36952. maw: {
  36953. height: math.unit(1.1, "meter"),
  36954. name: "Maw",
  36955. image: {
  36956. source: "./media/characters/devourer/maw.svg"
  36957. }
  36958. },
  36959. },
  36960. [
  36961. {
  36962. name: "Small",
  36963. height: math.unit(3, "meters")
  36964. },
  36965. {
  36966. name: "Large",
  36967. height: math.unit(5, "meters"),
  36968. default: true
  36969. },
  36970. ]
  36971. ))
  36972. characterMakers.push(() => makeCharacter(
  36973. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36974. {
  36975. front: {
  36976. height: math.unit(6, "feet"),
  36977. weight: math.unit(400, "lb"),
  36978. name: "Front",
  36979. image: {
  36980. source: "./media/characters/ellarby/front.svg",
  36981. extra: 1909/1763,
  36982. bottom: 80/1989
  36983. }
  36984. },
  36985. back: {
  36986. height: math.unit(6, "feet"),
  36987. weight: math.unit(400, "lb"),
  36988. name: "Back",
  36989. image: {
  36990. source: "./media/characters/ellarby/back.svg",
  36991. extra: 1914/1784,
  36992. bottom: 172/2086
  36993. }
  36994. },
  36995. },
  36996. [
  36997. {
  36998. name: "Mischief",
  36999. height: math.unit(18, "inches")
  37000. },
  37001. {
  37002. name: "Trouble",
  37003. height: math.unit(12, "feet")
  37004. },
  37005. {
  37006. name: "Havoc",
  37007. height: math.unit(200, "feet"),
  37008. default: true
  37009. },
  37010. {
  37011. name: "Pandemonium",
  37012. height: math.unit(1, "mile")
  37013. },
  37014. {
  37015. name: "Catastrophe",
  37016. height: math.unit(100, "miles")
  37017. },
  37018. ]
  37019. ))
  37020. characterMakers.push(() => makeCharacter(
  37021. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  37022. {
  37023. front: {
  37024. height: math.unit(4.7, "meters"),
  37025. weight: math.unit(6500, "kg"),
  37026. name: "Front",
  37027. image: {
  37028. source: "./media/characters/vex/front.svg",
  37029. extra: 1288/1140,
  37030. bottom: 100/1388
  37031. }
  37032. },
  37033. },
  37034. [
  37035. {
  37036. name: "Normal",
  37037. height: math.unit(4.7, "meters"),
  37038. default: true
  37039. },
  37040. ]
  37041. ))
  37042. characterMakers.push(() => makeCharacter(
  37043. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  37044. {
  37045. normal: {
  37046. height: math.unit(6, "feet"),
  37047. weight: math.unit(350, "lb"),
  37048. name: "Normal",
  37049. image: {
  37050. source: "./media/characters/teshy/normal.svg",
  37051. extra: 1795/1735,
  37052. bottom: 16/1811
  37053. }
  37054. },
  37055. monsterFront: {
  37056. height: math.unit(12, "feet"),
  37057. weight: math.unit(4700, "lb"),
  37058. name: "Monster (Front)",
  37059. image: {
  37060. source: "./media/characters/teshy/monster-front.svg",
  37061. extra: 2042/2034,
  37062. bottom: 128/2170
  37063. }
  37064. },
  37065. monsterSide: {
  37066. height: math.unit(12, "feet"),
  37067. weight: math.unit(4700, "lb"),
  37068. name: "Monster (Side)",
  37069. image: {
  37070. source: "./media/characters/teshy/monster-side.svg",
  37071. extra: 2067/2056,
  37072. bottom: 70/2137
  37073. }
  37074. },
  37075. monsterBack: {
  37076. height: math.unit(12, "feet"),
  37077. weight: math.unit(4700, "lb"),
  37078. name: "Monster (Back)",
  37079. image: {
  37080. source: "./media/characters/teshy/monster-back.svg",
  37081. extra: 1921/1914,
  37082. bottom: 171/2092
  37083. }
  37084. },
  37085. },
  37086. [
  37087. {
  37088. name: "Normal",
  37089. height: math.unit(6, "feet"),
  37090. default: true
  37091. },
  37092. ]
  37093. ))
  37094. characterMakers.push(() => makeCharacter(
  37095. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  37096. {
  37097. front: {
  37098. height: math.unit(6, "feet"),
  37099. name: "Front",
  37100. image: {
  37101. source: "./media/characters/ramey/front.svg",
  37102. extra: 790/787,
  37103. bottom: 27/817
  37104. }
  37105. },
  37106. },
  37107. [
  37108. {
  37109. name: "Normal",
  37110. height: math.unit(6, "feet"),
  37111. default: true
  37112. },
  37113. ]
  37114. ))
  37115. characterMakers.push(() => makeCharacter(
  37116. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  37117. {
  37118. front: {
  37119. height: math.unit(5 + 5/12, "feet"),
  37120. weight: math.unit(120, "lb"),
  37121. name: "Front",
  37122. image: {
  37123. source: "./media/characters/phirae/front.svg",
  37124. extra: 2491/2436,
  37125. bottom: 38/2529
  37126. }
  37127. },
  37128. },
  37129. [
  37130. {
  37131. name: "Normal",
  37132. height: math.unit(5 + 5/12, "feet"),
  37133. default: true
  37134. },
  37135. ]
  37136. ))
  37137. characterMakers.push(() => makeCharacter(
  37138. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  37139. {
  37140. front: {
  37141. height: math.unit(5 + 3/12, "feet"),
  37142. name: "Front",
  37143. image: {
  37144. source: "./media/characters/stagglas/front.svg",
  37145. extra: 962/882,
  37146. bottom: 53/1015
  37147. }
  37148. },
  37149. feral: {
  37150. height: math.unit(335, "cm"),
  37151. name: "Feral",
  37152. image: {
  37153. source: "./media/characters/stagglas/feral.svg",
  37154. extra: 1732/1090,
  37155. bottom: 48/1780
  37156. }
  37157. },
  37158. },
  37159. [
  37160. {
  37161. name: "Normal",
  37162. height: math.unit(5 + 3/12, "feet"),
  37163. default: true
  37164. },
  37165. ]
  37166. ))
  37167. characterMakers.push(() => makeCharacter(
  37168. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  37169. {
  37170. front: {
  37171. height: math.unit(5 + 4/12, "feet"),
  37172. weight: math.unit(145, "lb"),
  37173. name: "Front",
  37174. image: {
  37175. source: "./media/characters/starra/front.svg",
  37176. extra: 1790/1691,
  37177. bottom: 91/1881
  37178. }
  37179. },
  37180. },
  37181. [
  37182. {
  37183. name: "Normal",
  37184. height: math.unit(5 + 4/12, "feet"),
  37185. default: true
  37186. },
  37187. ]
  37188. ))
  37189. characterMakers.push(() => makeCharacter(
  37190. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  37191. {
  37192. front: {
  37193. height: math.unit(3.5, "meters"),
  37194. name: "Front",
  37195. image: {
  37196. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  37197. extra: 1248/972,
  37198. bottom: 38/1286
  37199. }
  37200. },
  37201. },
  37202. [
  37203. {
  37204. name: "Normal",
  37205. height: math.unit(3.5, "meters"),
  37206. default: true
  37207. },
  37208. ]
  37209. ))
  37210. characterMakers.push(() => makeCharacter(
  37211. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  37212. {
  37213. side: {
  37214. height: math.unit(8 + 2/12, "feet"),
  37215. weight: math.unit(1240, "lb"),
  37216. name: "Side",
  37217. image: {
  37218. source: "./media/characters/mika-valentine/side.svg",
  37219. extra: 2670/2501,
  37220. bottom: 250/2920
  37221. }
  37222. },
  37223. },
  37224. [
  37225. {
  37226. name: "Normal",
  37227. height: math.unit(8 + 2/12, "feet"),
  37228. default: true
  37229. },
  37230. ]
  37231. ))
  37232. characterMakers.push(() => makeCharacter(
  37233. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  37234. {
  37235. front: {
  37236. height: math.unit(7 + 2/12, "feet"),
  37237. name: "Front",
  37238. image: {
  37239. source: "./media/characters/xoltol/front.svg",
  37240. extra: 2212/2124,
  37241. bottom: 84/2296
  37242. }
  37243. },
  37244. side: {
  37245. height: math.unit(7 + 2/12, "feet"),
  37246. name: "Side",
  37247. image: {
  37248. source: "./media/characters/xoltol/side.svg",
  37249. extra: 2273/2197,
  37250. bottom: 26/2299
  37251. }
  37252. },
  37253. hand: {
  37254. height: math.unit(2.5, "feet"),
  37255. name: "Hand",
  37256. image: {
  37257. source: "./media/characters/xoltol/hand.svg"
  37258. }
  37259. },
  37260. },
  37261. [
  37262. {
  37263. name: "Small-ish",
  37264. height: math.unit(5 + 11/12, "feet")
  37265. },
  37266. {
  37267. name: "Normal",
  37268. height: math.unit(7 + 2/12, "feet")
  37269. },
  37270. {
  37271. name: "\"Macro\"",
  37272. height: math.unit(14 + 9/12, "feet"),
  37273. default: true
  37274. },
  37275. {
  37276. name: "Alternate Height",
  37277. height: math.unit(20, "feet")
  37278. },
  37279. {
  37280. name: "Actually Macro",
  37281. height: math.unit(100, "feet")
  37282. },
  37283. ]
  37284. ))
  37285. characterMakers.push(() => makeCharacter(
  37286. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  37287. {
  37288. front: {
  37289. height: math.unit(5 + 2/12, "feet"),
  37290. weight: math.unit(75, "kg"),
  37291. name: "Front",
  37292. image: {
  37293. source: "./media/characters/kotetsu-redwood/front.svg",
  37294. extra: 1053/942,
  37295. bottom: 60/1113
  37296. }
  37297. },
  37298. },
  37299. [
  37300. {
  37301. name: "Normal",
  37302. height: math.unit(5 + 2/12, "feet"),
  37303. default: true
  37304. },
  37305. ]
  37306. ))
  37307. characterMakers.push(() => makeCharacter(
  37308. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  37309. {
  37310. front: {
  37311. height: math.unit(2.4, "meters"),
  37312. weight: math.unit(125, "kg"),
  37313. name: "Front",
  37314. image: {
  37315. source: "./media/characters/lilith/front.svg",
  37316. extra: 1590/1513,
  37317. bottom: 203/1793
  37318. }
  37319. },
  37320. },
  37321. [
  37322. {
  37323. name: "Humanoid",
  37324. height: math.unit(2.4, "meters")
  37325. },
  37326. {
  37327. name: "Normal",
  37328. height: math.unit(6, "meters"),
  37329. default: true
  37330. },
  37331. {
  37332. name: "Largest",
  37333. height: math.unit(55, "meters")
  37334. },
  37335. ]
  37336. ))
  37337. characterMakers.push(() => makeCharacter(
  37338. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  37339. {
  37340. front: {
  37341. height: math.unit(8 + 4/12, "feet"),
  37342. weight: math.unit(535, "lb"),
  37343. name: "Front",
  37344. image: {
  37345. source: "./media/characters/beh'kah-bolger/front.svg",
  37346. extra: 1660/1603,
  37347. bottom: 37/1697
  37348. }
  37349. },
  37350. },
  37351. [
  37352. {
  37353. name: "Normal",
  37354. height: math.unit(8 + 4/12, "feet"),
  37355. default: true
  37356. },
  37357. {
  37358. name: "Kaiju",
  37359. height: math.unit(250, "feet")
  37360. },
  37361. {
  37362. name: "Still Growing",
  37363. height: math.unit(10, "miles")
  37364. },
  37365. {
  37366. name: "Continental",
  37367. height: math.unit(5000, "miles")
  37368. },
  37369. {
  37370. name: "Final Form",
  37371. height: math.unit(2500000, "miles")
  37372. },
  37373. ]
  37374. ))
  37375. characterMakers.push(() => makeCharacter(
  37376. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  37377. {
  37378. front: {
  37379. height: math.unit(7 + 2/12, "feet"),
  37380. weight: math.unit(230, "kg"),
  37381. name: "Front",
  37382. image: {
  37383. source: "./media/characters/tatyana-milewska/front.svg",
  37384. extra: 1199/1150,
  37385. bottom: 86/1285
  37386. }
  37387. },
  37388. },
  37389. [
  37390. {
  37391. name: "Normal",
  37392. height: math.unit(7 + 2/12, "feet"),
  37393. default: true
  37394. },
  37395. {
  37396. name: "Big",
  37397. height: math.unit(12, "feet")
  37398. },
  37399. {
  37400. name: "Minimacro",
  37401. height: math.unit(20, "feet")
  37402. },
  37403. {
  37404. name: "Macro",
  37405. height: math.unit(120, "feet")
  37406. },
  37407. ]
  37408. ))
  37409. characterMakers.push(() => makeCharacter(
  37410. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  37411. {
  37412. front: {
  37413. height: math.unit(7 + 8/12, "feet"),
  37414. weight: math.unit(152, "kg"),
  37415. name: "Front",
  37416. image: {
  37417. source: "./media/characters/helen-arri/front.svg",
  37418. extra: 440/423,
  37419. bottom: 14/454
  37420. }
  37421. },
  37422. back: {
  37423. height: math.unit(7 + 8/12, "feet"),
  37424. weight: math.unit(152, "kg"),
  37425. name: "Back",
  37426. image: {
  37427. source: "./media/characters/helen-arri/back.svg",
  37428. extra: 443/426,
  37429. bottom: 8/451
  37430. }
  37431. },
  37432. },
  37433. [
  37434. {
  37435. name: "Normal",
  37436. height: math.unit(7 + 8/12, "feet"),
  37437. default: true
  37438. },
  37439. {
  37440. name: "Big",
  37441. height: math.unit(14, "feet")
  37442. },
  37443. {
  37444. name: "Minimacro",
  37445. height: math.unit(24, "feet")
  37446. },
  37447. {
  37448. name: "Macro",
  37449. height: math.unit(140, "feet")
  37450. },
  37451. ]
  37452. ))
  37453. characterMakers.push(() => makeCharacter(
  37454. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  37455. {
  37456. front: {
  37457. height: math.unit(6, "meters"),
  37458. name: "Front",
  37459. image: {
  37460. source: "./media/characters/ehanu-rehu/front.svg",
  37461. extra: 1800/1800,
  37462. bottom: 59/1859
  37463. }
  37464. },
  37465. },
  37466. [
  37467. {
  37468. name: "Normal",
  37469. height: math.unit(6, "meters"),
  37470. default: true
  37471. },
  37472. ]
  37473. ))
  37474. characterMakers.push(() => makeCharacter(
  37475. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  37476. {
  37477. front: {
  37478. height: math.unit(7 + 3/12, "feet"),
  37479. name: "Front",
  37480. image: {
  37481. source: "./media/characters/renholder/front.svg",
  37482. extra: 3096/2960,
  37483. bottom: 250/3346
  37484. }
  37485. },
  37486. },
  37487. [
  37488. {
  37489. name: "Normal Bat",
  37490. height: math.unit(7 + 3/12, "feet"),
  37491. default: true
  37492. },
  37493. {
  37494. name: "Slightly Tall Bat",
  37495. height: math.unit(100, "feet")
  37496. },
  37497. {
  37498. name: "Big Bat",
  37499. height: math.unit(1000, "feet")
  37500. },
  37501. {
  37502. name: "City-Sized Bat",
  37503. height: math.unit(200000, "feet")
  37504. },
  37505. {
  37506. name: "Bigger Bat",
  37507. height: math.unit(10000, "miles")
  37508. },
  37509. {
  37510. name: "Solar Sized Bat",
  37511. height: math.unit(100, "AU")
  37512. },
  37513. {
  37514. name: "Galactic Bat",
  37515. height: math.unit(200000, "lightyears")
  37516. },
  37517. {
  37518. name: "Universally Known Bat",
  37519. height: math.unit(1, "universe")
  37520. },
  37521. ]
  37522. ))
  37523. characterMakers.push(() => makeCharacter(
  37524. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  37525. {
  37526. front: {
  37527. height: math.unit(6 + 11/12, "feet"),
  37528. weight: math.unit(250, "lb"),
  37529. name: "Front",
  37530. image: {
  37531. source: "./media/characters/cookiecat/front.svg",
  37532. extra: 893/827,
  37533. bottom: 14/907
  37534. }
  37535. },
  37536. },
  37537. [
  37538. {
  37539. name: "Micro",
  37540. height: math.unit(3, "inches")
  37541. },
  37542. {
  37543. name: "Normal",
  37544. height: math.unit(6 + 11/12, "feet"),
  37545. default: true
  37546. },
  37547. {
  37548. name: "Macro",
  37549. height: math.unit(100, "feet")
  37550. },
  37551. {
  37552. name: "Macro+",
  37553. height: math.unit(404, "feet")
  37554. },
  37555. {
  37556. name: "Megamacro",
  37557. height: math.unit(165, "miles")
  37558. },
  37559. {
  37560. name: "Planetary",
  37561. height: math.unit(4600, "miles")
  37562. },
  37563. ]
  37564. ))
  37565. characterMakers.push(() => makeCharacter(
  37566. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  37567. {
  37568. front: {
  37569. height: math.unit(10 + 3/12, "feet"),
  37570. weight: math.unit(1500, "lb"),
  37571. name: "Front",
  37572. image: {
  37573. source: "./media/characters/tux-kusanagi/front.svg",
  37574. extra: 944/840,
  37575. bottom: 39/983
  37576. }
  37577. },
  37578. back: {
  37579. height: math.unit(10 + 3/12, "feet"),
  37580. weight: math.unit(1500, "lb"),
  37581. name: "Back",
  37582. image: {
  37583. source: "./media/characters/tux-kusanagi/back.svg",
  37584. extra: 941/842,
  37585. bottom: 28/969
  37586. }
  37587. },
  37588. rump: {
  37589. height: math.unit(5.25, "feet"),
  37590. name: "Rump",
  37591. image: {
  37592. source: "./media/characters/tux-kusanagi/rump.svg"
  37593. }
  37594. },
  37595. beak: {
  37596. height: math.unit(1.54, "feet"),
  37597. name: "Beak",
  37598. image: {
  37599. source: "./media/characters/tux-kusanagi/beak.svg"
  37600. }
  37601. },
  37602. },
  37603. [
  37604. {
  37605. name: "Normal",
  37606. height: math.unit(10 + 3/12, "feet"),
  37607. default: true
  37608. },
  37609. ]
  37610. ))
  37611. characterMakers.push(() => makeCharacter(
  37612. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37613. {
  37614. front: {
  37615. height: math.unit(58, "feet"),
  37616. weight: math.unit(200, "tons"),
  37617. name: "Front",
  37618. image: {
  37619. source: "./media/characters/uzarmazari/front.svg",
  37620. extra: 1575/1455,
  37621. bottom: 152/1727
  37622. }
  37623. },
  37624. back: {
  37625. height: math.unit(58, "feet"),
  37626. weight: math.unit(200, "tons"),
  37627. name: "Back",
  37628. image: {
  37629. source: "./media/characters/uzarmazari/back.svg",
  37630. extra: 1585/1510,
  37631. bottom: 157/1742
  37632. }
  37633. },
  37634. head: {
  37635. height: math.unit(26, "feet"),
  37636. name: "Head",
  37637. image: {
  37638. source: "./media/characters/uzarmazari/head.svg"
  37639. }
  37640. },
  37641. },
  37642. [
  37643. {
  37644. name: "Normal",
  37645. height: math.unit(58, "feet"),
  37646. default: true
  37647. },
  37648. ]
  37649. ))
  37650. characterMakers.push(() => makeCharacter(
  37651. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37652. {
  37653. side: {
  37654. height: math.unit(15, "feet"),
  37655. name: "Side",
  37656. image: {
  37657. source: "./media/characters/akitu/side.svg",
  37658. extra: 1421/1321,
  37659. bottom: 157/1578
  37660. }
  37661. },
  37662. front: {
  37663. height: math.unit(15, "feet"),
  37664. name: "Front",
  37665. image: {
  37666. source: "./media/characters/akitu/front.svg",
  37667. extra: 1435/1326,
  37668. bottom: 232/1667
  37669. }
  37670. },
  37671. },
  37672. [
  37673. {
  37674. name: "Normal",
  37675. height: math.unit(15, "feet"),
  37676. default: true
  37677. },
  37678. ]
  37679. ))
  37680. characterMakers.push(() => makeCharacter(
  37681. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  37682. {
  37683. front: {
  37684. height: math.unit(10 + 8/12, "feet"),
  37685. name: "Front",
  37686. image: {
  37687. source: "./media/characters/azalie-croixland/front.svg",
  37688. extra: 1972/1856,
  37689. bottom: 31/2003
  37690. }
  37691. },
  37692. },
  37693. [
  37694. {
  37695. name: "Original Height",
  37696. height: math.unit(5 + 4/12, "feet")
  37697. },
  37698. {
  37699. name: "Normal Height",
  37700. height: math.unit(10 + 8/12, "feet"),
  37701. default: true
  37702. },
  37703. ]
  37704. ))
  37705. characterMakers.push(() => makeCharacter(
  37706. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37707. {
  37708. side: {
  37709. height: math.unit(7 + 1/12, "feet"),
  37710. weight: math.unit(245, "lb"),
  37711. name: "Side",
  37712. image: {
  37713. source: "./media/characters/kavus-kazian/side.svg",
  37714. extra: 349/342,
  37715. bottom: 15/364
  37716. }
  37717. },
  37718. },
  37719. [
  37720. {
  37721. name: "Normal",
  37722. height: math.unit(7 + 1/12, "feet"),
  37723. default: true
  37724. },
  37725. ]
  37726. ))
  37727. characterMakers.push(() => makeCharacter(
  37728. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37729. {
  37730. normalFront: {
  37731. height: math.unit(5 + 11/12, "feet"),
  37732. name: "Front",
  37733. image: {
  37734. source: "./media/characters/moonlight-rose/normal-front.svg",
  37735. extra: 1980/1825,
  37736. bottom: 18/1998
  37737. },
  37738. form: "normal",
  37739. default: true
  37740. },
  37741. normalBack: {
  37742. height: math.unit(5 + 11/12, "feet"),
  37743. name: "Back",
  37744. image: {
  37745. source: "./media/characters/moonlight-rose/normal-back.svg",
  37746. extra: 2010/1839,
  37747. bottom: 10/2020
  37748. },
  37749. form: "normal"
  37750. },
  37751. demonFront: {
  37752. height: math.unit(1.5, "earths"),
  37753. name: "Front",
  37754. image: {
  37755. source: "./media/characters/moonlight-rose/demon.svg",
  37756. extra: 1400/1294,
  37757. bottom: 45/1445
  37758. },
  37759. form: "demon",
  37760. default: true
  37761. },
  37762. terraFront: {
  37763. height: math.unit(1.5, "earths"),
  37764. name: "Front",
  37765. image: {
  37766. source: "./media/characters/moonlight-rose/terra.svg"
  37767. },
  37768. form: "terra",
  37769. default: true
  37770. },
  37771. jupiterFront: {
  37772. height: math.unit(69911*2, "km"),
  37773. name: "Front",
  37774. image: {
  37775. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37776. extra: 1367/1286,
  37777. bottom: 55/1422
  37778. },
  37779. form: "jupiter",
  37780. default: true
  37781. },
  37782. neptuneFront: {
  37783. height: math.unit(24622*2, "feet"),
  37784. name: "Front",
  37785. image: {
  37786. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37787. extra: 1851/1712,
  37788. bottom: 0/1851
  37789. },
  37790. form: "neptune",
  37791. default: true
  37792. },
  37793. },
  37794. [
  37795. {
  37796. name: "\"Natural\" Height",
  37797. height: math.unit(5 + 11/12, "feet"),
  37798. form: "normal"
  37799. },
  37800. {
  37801. name: "Smallest comfortable size",
  37802. height: math.unit(40, "meters"),
  37803. form: "normal"
  37804. },
  37805. {
  37806. name: "Common size",
  37807. height: math.unit(50, "km"),
  37808. form: "normal",
  37809. default: true
  37810. },
  37811. {
  37812. name: "Normal",
  37813. height: math.unit(1.5, "earths"),
  37814. form: "demon",
  37815. default: true
  37816. },
  37817. {
  37818. name: "Universal",
  37819. height: math.unit(15, "universes"),
  37820. form: "demon"
  37821. },
  37822. {
  37823. name: "Earth",
  37824. height: math.unit(1.5, "earths"),
  37825. form: "terra",
  37826. default: true
  37827. },
  37828. {
  37829. name: "Super Earth",
  37830. height: math.unit(67.5, "earths"),
  37831. form: "terra"
  37832. },
  37833. {
  37834. name: "Doesn't fit in a solar system...",
  37835. height: math.unit(1, "galaxy"),
  37836. form: "terra"
  37837. },
  37838. {
  37839. name: "Saturn",
  37840. height: math.unit(58232*2, "km"),
  37841. form: "jupiter"
  37842. },
  37843. {
  37844. name: "Jupiter",
  37845. height: math.unit(69911*2, "km"),
  37846. form: "jupiter",
  37847. default: true
  37848. },
  37849. {
  37850. name: "HD 100546 b",
  37851. height: math.unit(482938, "km"),
  37852. form: "jupiter"
  37853. },
  37854. {
  37855. name: "Enceladus",
  37856. height: math.unit(513*2, "km"),
  37857. form: "neptune"
  37858. },
  37859. {
  37860. name: "Europe",
  37861. height: math.unit(1560*2, "km"),
  37862. form: "neptune"
  37863. },
  37864. {
  37865. name: "Neptune",
  37866. height: math.unit(24622*2, "km"),
  37867. form: "neptune",
  37868. default: true
  37869. },
  37870. {
  37871. name: "CoRoT-9b",
  37872. height: math.unit(75067*2, "km"),
  37873. form: "neptune"
  37874. },
  37875. ],
  37876. {
  37877. "normal": {
  37878. name: "Normal",
  37879. default: true
  37880. },
  37881. "demon": {
  37882. name: "Demon"
  37883. },
  37884. "terra": {
  37885. name: "Terra"
  37886. },
  37887. "jupiter": {
  37888. name: "Jupiter"
  37889. },
  37890. "neptune": {
  37891. name: "Neptune"
  37892. }
  37893. }
  37894. ))
  37895. characterMakers.push(() => makeCharacter(
  37896. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37897. {
  37898. front: {
  37899. height: math.unit(16, "feet"),
  37900. weight: math.unit(610, "kg"),
  37901. name: "Front",
  37902. image: {
  37903. source: "./media/characters/huckle/front.svg",
  37904. extra: 1731/1625,
  37905. bottom: 33/1764
  37906. }
  37907. },
  37908. back: {
  37909. height: math.unit(16, "feet"),
  37910. weight: math.unit(610, "kg"),
  37911. name: "Back",
  37912. image: {
  37913. source: "./media/characters/huckle/back.svg",
  37914. extra: 1738/1651,
  37915. bottom: 37/1775
  37916. }
  37917. },
  37918. laughing: {
  37919. height: math.unit(3.75, "feet"),
  37920. name: "Laughing",
  37921. image: {
  37922. source: "./media/characters/huckle/laughing.svg"
  37923. }
  37924. },
  37925. angry: {
  37926. height: math.unit(4.15, "feet"),
  37927. name: "Angry",
  37928. image: {
  37929. source: "./media/characters/huckle/angry.svg"
  37930. }
  37931. },
  37932. },
  37933. [
  37934. {
  37935. name: "Normal",
  37936. height: math.unit(16, "feet"),
  37937. default: true
  37938. },
  37939. {
  37940. name: "Mini Macro",
  37941. height: math.unit(463, "feet")
  37942. },
  37943. {
  37944. name: "Macro",
  37945. height: math.unit(1680, "meters")
  37946. },
  37947. {
  37948. name: "Mega Macro",
  37949. height: math.unit(175, "km")
  37950. },
  37951. {
  37952. name: "Terra Macro",
  37953. height: math.unit(32, "gigameters")
  37954. },
  37955. {
  37956. name: "Multiverse+",
  37957. height: math.unit(2.56e23, "yottameters")
  37958. },
  37959. ]
  37960. ))
  37961. characterMakers.push(() => makeCharacter(
  37962. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37963. {
  37964. front: {
  37965. height: math.unit(6 + 9/12, "feet"),
  37966. weight: math.unit(280, "lb"),
  37967. name: "Front",
  37968. image: {
  37969. source: "./media/characters/candy/front.svg",
  37970. extra: 234/217,
  37971. bottom: 11/245
  37972. }
  37973. },
  37974. },
  37975. [
  37976. {
  37977. name: "Really Small",
  37978. height: math.unit(0.1, "nm")
  37979. },
  37980. {
  37981. name: "Micro",
  37982. height: math.unit(2, "inches")
  37983. },
  37984. {
  37985. name: "Normal",
  37986. height: math.unit(6 + 9/12, "feet"),
  37987. default: true
  37988. },
  37989. {
  37990. name: "Small Macro",
  37991. height: math.unit(69, "feet")
  37992. },
  37993. {
  37994. name: "Macro",
  37995. height: math.unit(160, "feet")
  37996. },
  37997. {
  37998. name: "Megamacro",
  37999. height: math.unit(22000, "miles")
  38000. },
  38001. {
  38002. name: "Gigamacro",
  38003. height: math.unit(50000, "miles")
  38004. },
  38005. ]
  38006. ))
  38007. characterMakers.push(() => makeCharacter(
  38008. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  38009. {
  38010. front: {
  38011. height: math.unit(4, "feet"),
  38012. weight: math.unit(90, "lb"),
  38013. name: "Front",
  38014. image: {
  38015. source: "./media/characters/joey-mcdonald/front.svg",
  38016. extra: 1059/852,
  38017. bottom: 33/1092
  38018. }
  38019. },
  38020. back: {
  38021. height: math.unit(4, "feet"),
  38022. weight: math.unit(90, "lb"),
  38023. name: "Back",
  38024. image: {
  38025. source: "./media/characters/joey-mcdonald/back.svg",
  38026. extra: 1077/879,
  38027. bottom: 5/1082
  38028. }
  38029. },
  38030. frontKobold: {
  38031. height: math.unit(4, "feet"),
  38032. weight: math.unit(100, "lb"),
  38033. name: "Front-kobold",
  38034. image: {
  38035. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  38036. extra: 1480/1367,
  38037. bottom: 0/1480
  38038. }
  38039. },
  38040. backKobold: {
  38041. height: math.unit(4, "feet"),
  38042. weight: math.unit(100, "lb"),
  38043. name: "Back-kobold",
  38044. image: {
  38045. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  38046. extra: 1449/1361,
  38047. bottom: 0/1449
  38048. }
  38049. },
  38050. },
  38051. [
  38052. {
  38053. name: "Normal",
  38054. height: math.unit(4, "feet"),
  38055. default: true
  38056. },
  38057. ]
  38058. ))
  38059. characterMakers.push(() => makeCharacter(
  38060. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  38061. {
  38062. front: {
  38063. height: math.unit(12 + 6/12, "feet"),
  38064. name: "Front",
  38065. image: {
  38066. source: "./media/characters/kass-lockheed/front.svg",
  38067. extra: 354/343,
  38068. bottom: 9/363
  38069. }
  38070. },
  38071. back: {
  38072. height: math.unit(12 + 6/12, "feet"),
  38073. name: "Back",
  38074. image: {
  38075. source: "./media/characters/kass-lockheed/back.svg",
  38076. extra: 364/352,
  38077. bottom: 3/367
  38078. }
  38079. },
  38080. dick: {
  38081. height: math.unit(3.12, "feet"),
  38082. name: "Dick",
  38083. image: {
  38084. source: "./media/characters/kass-lockheed/dick.svg"
  38085. }
  38086. },
  38087. head: {
  38088. height: math.unit(2.6, "feet"),
  38089. name: "Head",
  38090. image: {
  38091. source: "./media/characters/kass-lockheed/head.svg"
  38092. }
  38093. },
  38094. bleh: {
  38095. height: math.unit(2.85, "feet"),
  38096. name: "Bleh",
  38097. image: {
  38098. source: "./media/characters/kass-lockheed/bleh.svg"
  38099. }
  38100. },
  38101. smug: {
  38102. height: math.unit(2.85, "feet"),
  38103. name: "Smug",
  38104. image: {
  38105. source: "./media/characters/kass-lockheed/smug.svg"
  38106. }
  38107. },
  38108. },
  38109. [
  38110. {
  38111. name: "Normal",
  38112. height: math.unit(12 + 6/12, "feet"),
  38113. default: true
  38114. },
  38115. ]
  38116. ))
  38117. characterMakers.push(() => makeCharacter(
  38118. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  38119. {
  38120. front: {
  38121. height: math.unit(6 + 2/12, "feet"),
  38122. name: "Front",
  38123. image: {
  38124. source: "./media/characters/taylor/front.svg",
  38125. extra: 639/495,
  38126. bottom: 12/651
  38127. }
  38128. },
  38129. },
  38130. [
  38131. {
  38132. name: "Normal",
  38133. height: math.unit(6 + 2/12, "feet"),
  38134. default: true
  38135. },
  38136. {
  38137. name: "Big",
  38138. height: math.unit(15, "feet")
  38139. },
  38140. {
  38141. name: "Lorg",
  38142. height: math.unit(80, "feet")
  38143. },
  38144. {
  38145. name: "Too Lorg",
  38146. height: math.unit(120, "feet")
  38147. },
  38148. ]
  38149. ))
  38150. characterMakers.push(() => makeCharacter(
  38151. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  38152. {
  38153. front: {
  38154. height: math.unit(15, "feet"),
  38155. name: "Front",
  38156. image: {
  38157. source: "./media/characters/kaizer/front.svg",
  38158. extra: 1612/1436,
  38159. bottom: 43/1655
  38160. }
  38161. },
  38162. },
  38163. [
  38164. {
  38165. name: "Normal",
  38166. height: math.unit(15, "feet"),
  38167. default: true
  38168. },
  38169. ]
  38170. ))
  38171. characterMakers.push(() => makeCharacter(
  38172. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  38173. {
  38174. front: {
  38175. height: math.unit(2, "feet"),
  38176. weight: math.unit(30, "lb"),
  38177. name: "Front",
  38178. image: {
  38179. source: "./media/characters/sandy/front.svg",
  38180. extra: 1439/1307,
  38181. bottom: 194/1633
  38182. }
  38183. },
  38184. },
  38185. [
  38186. {
  38187. name: "Normal",
  38188. height: math.unit(2, "feet"),
  38189. default: true
  38190. },
  38191. ]
  38192. ))
  38193. characterMakers.push(() => makeCharacter(
  38194. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  38195. {
  38196. front: {
  38197. height: math.unit(3, "feet"),
  38198. name: "Front",
  38199. image: {
  38200. source: "./media/characters/mellvi/front.svg",
  38201. extra: 1831/1630,
  38202. bottom: 58/1889
  38203. }
  38204. },
  38205. },
  38206. [
  38207. {
  38208. name: "Normal",
  38209. height: math.unit(3, "feet"),
  38210. default: true
  38211. },
  38212. ]
  38213. ))
  38214. characterMakers.push(() => makeCharacter(
  38215. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  38216. {
  38217. front: {
  38218. height: math.unit(5 + 11/12, "feet"),
  38219. weight: math.unit(200, "lb"),
  38220. name: "Front",
  38221. image: {
  38222. source: "./media/characters/shirou/front.svg",
  38223. extra: 2491/2383,
  38224. bottom: 189/2680
  38225. }
  38226. },
  38227. back: {
  38228. height: math.unit(5 + 11/12, "feet"),
  38229. weight: math.unit(200, "lb"),
  38230. name: "Back",
  38231. image: {
  38232. source: "./media/characters/shirou/back.svg",
  38233. extra: 2554/2450,
  38234. bottom: 76/2630
  38235. }
  38236. },
  38237. },
  38238. [
  38239. {
  38240. name: "Normal",
  38241. height: math.unit(5 + 11/12, "feet"),
  38242. default: true
  38243. },
  38244. ]
  38245. ))
  38246. characterMakers.push(() => makeCharacter(
  38247. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  38248. {
  38249. front: {
  38250. height: math.unit(6 + 3/12, "feet"),
  38251. weight: math.unit(177, "lb"),
  38252. name: "Front",
  38253. image: {
  38254. source: "./media/characters/noryu/front.svg",
  38255. extra: 973/885,
  38256. bottom: 10/983
  38257. }
  38258. },
  38259. },
  38260. [
  38261. {
  38262. name: "Normal",
  38263. height: math.unit(6 + 3/12, "feet"),
  38264. default: true
  38265. },
  38266. ]
  38267. ))
  38268. characterMakers.push(() => makeCharacter(
  38269. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  38270. {
  38271. front: {
  38272. height: math.unit(5 + 6/12, "feet"),
  38273. weight: math.unit(170, "lb"),
  38274. name: "Front",
  38275. image: {
  38276. source: "./media/characters/mevolas-rubenido/front.svg",
  38277. extra: 2109/1901,
  38278. bottom: 96/2205
  38279. }
  38280. },
  38281. },
  38282. [
  38283. {
  38284. name: "Normal",
  38285. height: math.unit(5 + 6/12, "feet"),
  38286. default: true
  38287. },
  38288. ]
  38289. ))
  38290. characterMakers.push(() => makeCharacter(
  38291. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  38292. {
  38293. front: {
  38294. height: math.unit(100, "feet"),
  38295. name: "Front",
  38296. image: {
  38297. source: "./media/characters/dee/front.svg",
  38298. extra: 2153/2036,
  38299. bottom: 59/2212
  38300. }
  38301. },
  38302. back: {
  38303. height: math.unit(100, "feet"),
  38304. name: "Back",
  38305. image: {
  38306. source: "./media/characters/dee/back.svg",
  38307. extra: 2183/2058,
  38308. bottom: 75/2258
  38309. }
  38310. },
  38311. foot: {
  38312. height: math.unit(19.43, "feet"),
  38313. name: "Foot",
  38314. image: {
  38315. source: "./media/characters/dee/foot.svg"
  38316. }
  38317. },
  38318. hoof: {
  38319. height: math.unit(20.6, "feet"),
  38320. name: "Hoof",
  38321. image: {
  38322. source: "./media/characters/dee/hoof.svg"
  38323. }
  38324. },
  38325. },
  38326. [
  38327. {
  38328. name: "Macro",
  38329. height: math.unit(100, "feet"),
  38330. default: true
  38331. },
  38332. ]
  38333. ))
  38334. characterMakers.push(() => makeCharacter(
  38335. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  38336. {
  38337. front: {
  38338. height: math.unit(5 + 6/12, "feet"),
  38339. name: "Front",
  38340. image: {
  38341. source: "./media/characters/teh/front.svg",
  38342. extra: 1002/847,
  38343. bottom: 62/1064
  38344. }
  38345. },
  38346. },
  38347. [
  38348. {
  38349. name: "Normal",
  38350. height: math.unit(5 + 6/12, "feet"),
  38351. default: true
  38352. },
  38353. ]
  38354. ))
  38355. characterMakers.push(() => makeCharacter(
  38356. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  38357. {
  38358. side: {
  38359. height: math.unit(6 + 1/12, "feet"),
  38360. weight: math.unit(204, "lb"),
  38361. name: "Side",
  38362. image: {
  38363. source: "./media/characters/quicksilver-ayukoti/side.svg",
  38364. extra: 974/775,
  38365. bottom: 169/1143
  38366. }
  38367. },
  38368. sitting: {
  38369. height: math.unit(6 + 2/12, "feet"),
  38370. weight: math.unit(204, "lb"),
  38371. name: "Sitting",
  38372. image: {
  38373. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  38374. extra: 1175/964,
  38375. bottom: 378/1553
  38376. }
  38377. },
  38378. },
  38379. [
  38380. {
  38381. name: "Normal",
  38382. height: math.unit(6 + 1/12, "feet"),
  38383. default: true
  38384. },
  38385. ]
  38386. ))
  38387. characterMakers.push(() => makeCharacter(
  38388. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  38389. {
  38390. front: {
  38391. height: math.unit(6, "inches"),
  38392. name: "Front",
  38393. image: {
  38394. source: "./media/characters/tululi/front.svg",
  38395. extra: 1997/1876,
  38396. bottom: 20/2017
  38397. }
  38398. },
  38399. },
  38400. [
  38401. {
  38402. name: "Normal",
  38403. height: math.unit(6, "inches"),
  38404. default: true
  38405. },
  38406. ]
  38407. ))
  38408. characterMakers.push(() => makeCharacter(
  38409. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  38410. {
  38411. front: {
  38412. height: math.unit(4 + 1/12, "feet"),
  38413. name: "Front",
  38414. image: {
  38415. source: "./media/characters/star/front.svg",
  38416. extra: 1493/1189,
  38417. bottom: 48/1541
  38418. }
  38419. },
  38420. },
  38421. [
  38422. {
  38423. name: "Normal",
  38424. height: math.unit(4 + 1/12, "feet"),
  38425. default: true
  38426. },
  38427. ]
  38428. ))
  38429. characterMakers.push(() => makeCharacter(
  38430. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  38431. {
  38432. front: {
  38433. height: math.unit(6 + 3/12, "feet"),
  38434. name: "Front",
  38435. image: {
  38436. source: "./media/characters/comet/front.svg",
  38437. extra: 1681/1462,
  38438. bottom: 26/1707
  38439. }
  38440. },
  38441. },
  38442. [
  38443. {
  38444. name: "Normal",
  38445. height: math.unit(6 + 3/12, "feet"),
  38446. default: true
  38447. },
  38448. ]
  38449. ))
  38450. characterMakers.push(() => makeCharacter(
  38451. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  38452. {
  38453. front: {
  38454. height: math.unit(950, "feet"),
  38455. name: "Front",
  38456. image: {
  38457. source: "./media/characters/vortex/front.svg",
  38458. extra: 1497/1434,
  38459. bottom: 56/1553
  38460. }
  38461. },
  38462. maw: {
  38463. height: math.unit(285, "feet"),
  38464. name: "Maw",
  38465. image: {
  38466. source: "./media/characters/vortex/maw.svg"
  38467. }
  38468. },
  38469. },
  38470. [
  38471. {
  38472. name: "Macro",
  38473. height: math.unit(950, "feet"),
  38474. default: true
  38475. },
  38476. ]
  38477. ))
  38478. characterMakers.push(() => makeCharacter(
  38479. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  38480. {
  38481. front: {
  38482. height: math.unit(600, "feet"),
  38483. weight: math.unit(0.02, "grams"),
  38484. name: "Front",
  38485. image: {
  38486. source: "./media/characters/doodle/front.svg",
  38487. extra: 1578/1413,
  38488. bottom: 37/1615
  38489. }
  38490. },
  38491. },
  38492. [
  38493. {
  38494. name: "Macro",
  38495. height: math.unit(600, "feet"),
  38496. default: true
  38497. },
  38498. ]
  38499. ))
  38500. characterMakers.push(() => makeCharacter(
  38501. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  38502. {
  38503. front: {
  38504. height: math.unit(6 + 6/12, "feet"),
  38505. name: "Front",
  38506. image: {
  38507. source: "./media/characters/jai/front.svg",
  38508. extra: 1645/1534,
  38509. bottom: 115/1760
  38510. }
  38511. },
  38512. },
  38513. [
  38514. {
  38515. name: "Normal",
  38516. height: math.unit(6 + 6/12, "feet"),
  38517. default: true
  38518. },
  38519. ]
  38520. ))
  38521. characterMakers.push(() => makeCharacter(
  38522. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  38523. {
  38524. front: {
  38525. height: math.unit(6 + 8/12, "feet"),
  38526. name: "Front",
  38527. image: {
  38528. source: "./media/characters/pixel/front.svg",
  38529. extra: 1900/1735,
  38530. bottom: 63/1963
  38531. }
  38532. },
  38533. },
  38534. [
  38535. {
  38536. name: "Normal",
  38537. height: math.unit(6 + 8/12, "feet"),
  38538. default: true
  38539. },
  38540. ]
  38541. ))
  38542. characterMakers.push(() => makeCharacter(
  38543. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38544. {
  38545. back: {
  38546. height: math.unit(4 + 1/12, "feet"),
  38547. weight: math.unit(75, "lb"),
  38548. name: "Back",
  38549. image: {
  38550. source: "./media/characters/rhett/back.svg",
  38551. extra: 930/878,
  38552. bottom: 25/955
  38553. }
  38554. },
  38555. front: {
  38556. height: math.unit(4 + 1/12, "feet"),
  38557. weight: math.unit(75, "lb"),
  38558. name: "Front",
  38559. image: {
  38560. source: "./media/characters/rhett/front.svg",
  38561. extra: 1682/1586,
  38562. bottom: 92/1774
  38563. }
  38564. },
  38565. },
  38566. [
  38567. {
  38568. name: "Micro",
  38569. height: math.unit(8, "inches")
  38570. },
  38571. {
  38572. name: "Tiny",
  38573. height: math.unit(2, "feet")
  38574. },
  38575. {
  38576. name: "Normal",
  38577. height: math.unit(4 + 1/12, "feet"),
  38578. default: true
  38579. },
  38580. ]
  38581. ))
  38582. characterMakers.push(() => makeCharacter(
  38583. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  38584. {
  38585. front: {
  38586. height: math.unit(3 + 3/12, "feet"),
  38587. name: "Front",
  38588. image: {
  38589. source: "./media/characters/penny/front.svg",
  38590. extra: 1406/1311,
  38591. bottom: 26/1432
  38592. }
  38593. },
  38594. },
  38595. [
  38596. {
  38597. name: "Normal",
  38598. height: math.unit(3 + 3/12, "feet"),
  38599. default: true
  38600. },
  38601. ]
  38602. ))
  38603. characterMakers.push(() => makeCharacter(
  38604. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38605. {
  38606. front: {
  38607. height: math.unit(4 + 11/12, "feet"),
  38608. name: "Front",
  38609. image: {
  38610. source: "./media/characters/monty/front.svg",
  38611. extra: 1479/1209,
  38612. bottom: 0/1479
  38613. }
  38614. },
  38615. },
  38616. [
  38617. {
  38618. name: "Normal",
  38619. height: math.unit(4 + 11/12, "feet"),
  38620. default: true
  38621. },
  38622. ]
  38623. ))
  38624. characterMakers.push(() => makeCharacter(
  38625. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38626. {
  38627. front: {
  38628. height: math.unit(8 + 4/12, "feet"),
  38629. name: "Front",
  38630. image: {
  38631. source: "./media/characters/sterling/front.svg",
  38632. extra: 1420/1236,
  38633. bottom: 27/1447
  38634. }
  38635. },
  38636. },
  38637. [
  38638. {
  38639. name: "Normal",
  38640. height: math.unit(8 + 4/12, "feet"),
  38641. default: true
  38642. },
  38643. ]
  38644. ))
  38645. characterMakers.push(() => makeCharacter(
  38646. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38647. {
  38648. front: {
  38649. height: math.unit(15, "feet"),
  38650. name: "Front",
  38651. image: {
  38652. source: "./media/characters/marble/front.svg",
  38653. extra: 973/937,
  38654. bottom: 32/1005
  38655. }
  38656. },
  38657. },
  38658. [
  38659. {
  38660. name: "Normal",
  38661. height: math.unit(15, "feet"),
  38662. default: true
  38663. },
  38664. ]
  38665. ))
  38666. characterMakers.push(() => makeCharacter(
  38667. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38668. {
  38669. front: {
  38670. height: math.unit(3, "inches"),
  38671. name: "Front",
  38672. image: {
  38673. source: "./media/characters/powder/front.svg",
  38674. extra: 1504/1334,
  38675. bottom: 518/2022
  38676. }
  38677. },
  38678. },
  38679. [
  38680. {
  38681. name: "Normal",
  38682. height: math.unit(3, "inches"),
  38683. default: true
  38684. },
  38685. ]
  38686. ))
  38687. characterMakers.push(() => makeCharacter(
  38688. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  38689. {
  38690. front: {
  38691. height: math.unit(4 + 5/12, "feet"),
  38692. name: "Front",
  38693. image: {
  38694. source: "./media/characters/joey-raccoon/front.svg",
  38695. extra: 1273/1197,
  38696. bottom: 0/1273
  38697. }
  38698. },
  38699. },
  38700. [
  38701. {
  38702. name: "Normal",
  38703. height: math.unit(4 + 5/12, "feet"),
  38704. default: true
  38705. },
  38706. ]
  38707. ))
  38708. characterMakers.push(() => makeCharacter(
  38709. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38710. {
  38711. front: {
  38712. height: math.unit(8 + 4/12, "feet"),
  38713. name: "Front",
  38714. image: {
  38715. source: "./media/characters/vick/front.svg",
  38716. extra: 2187/2118,
  38717. bottom: 47/2234
  38718. }
  38719. },
  38720. },
  38721. [
  38722. {
  38723. name: "Normal",
  38724. height: math.unit(8 + 4/12, "feet"),
  38725. default: true
  38726. },
  38727. ]
  38728. ))
  38729. characterMakers.push(() => makeCharacter(
  38730. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38731. {
  38732. front: {
  38733. height: math.unit(5 + 5/12, "feet"),
  38734. name: "Front",
  38735. image: {
  38736. source: "./media/characters/mitsy/front.svg",
  38737. extra: 1842/1695,
  38738. bottom: 0/1842
  38739. }
  38740. },
  38741. },
  38742. [
  38743. {
  38744. name: "Normal",
  38745. height: math.unit(5 + 5/12, "feet"),
  38746. default: true
  38747. },
  38748. ]
  38749. ))
  38750. characterMakers.push(() => makeCharacter(
  38751. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38752. {
  38753. front: {
  38754. height: math.unit(6 + 3/12, "feet"),
  38755. name: "Front",
  38756. image: {
  38757. source: "./media/characters/silvy/front.svg",
  38758. extra: 1995/1836,
  38759. bottom: 225/2220
  38760. }
  38761. },
  38762. },
  38763. [
  38764. {
  38765. name: "Normal",
  38766. height: math.unit(6 + 3/12, "feet"),
  38767. default: true
  38768. },
  38769. ]
  38770. ))
  38771. characterMakers.push(() => makeCharacter(
  38772. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38773. {
  38774. front: {
  38775. height: math.unit(3 + 8/12, "feet"),
  38776. name: "Front",
  38777. image: {
  38778. source: "./media/characters/rodney/front.svg",
  38779. extra: 1956/1747,
  38780. bottom: 31/1987
  38781. }
  38782. },
  38783. frontDressed: {
  38784. height: math.unit(2.9, "feet"),
  38785. name: "Front (Dressed)",
  38786. image: {
  38787. source: "./media/characters/rodney/front-dressed.svg",
  38788. extra: 1382/1241,
  38789. bottom: 385/1767
  38790. }
  38791. },
  38792. },
  38793. [
  38794. {
  38795. name: "Normal",
  38796. height: math.unit(3 + 8/12, "feet"),
  38797. default: true
  38798. },
  38799. ]
  38800. ))
  38801. characterMakers.push(() => makeCharacter(
  38802. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38803. {
  38804. front: {
  38805. height: math.unit(5 + 9/12, "feet"),
  38806. weight: math.unit(194, "lbs"),
  38807. name: "Front",
  38808. image: {
  38809. source: "./media/characters/zakail-sudekai/front.svg",
  38810. extra: 2696/2533,
  38811. bottom: 248/2944
  38812. }
  38813. },
  38814. maw: {
  38815. height: math.unit(1.35, "feet"),
  38816. name: "Maw",
  38817. image: {
  38818. source: "./media/characters/zakail-sudekai/maw.svg"
  38819. }
  38820. },
  38821. },
  38822. [
  38823. {
  38824. name: "Normal",
  38825. height: math.unit(5 + 9/12, "feet"),
  38826. default: true
  38827. },
  38828. ]
  38829. ))
  38830. characterMakers.push(() => makeCharacter(
  38831. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38832. {
  38833. front: {
  38834. height: math.unit(8 + 4/12, "feet"),
  38835. weight: math.unit(1200, "lb"),
  38836. name: "Front",
  38837. image: {
  38838. source: "./media/characters/eleanor/front.svg",
  38839. extra: 1226/1192,
  38840. bottom: 52/1278
  38841. }
  38842. },
  38843. back: {
  38844. height: math.unit(8 + 4/12, "feet"),
  38845. weight: math.unit(1200, "lb"),
  38846. name: "Back",
  38847. image: {
  38848. source: "./media/characters/eleanor/back.svg",
  38849. extra: 1242/1184,
  38850. bottom: 60/1302
  38851. }
  38852. },
  38853. head: {
  38854. height: math.unit(2.62, "feet"),
  38855. name: "Head",
  38856. image: {
  38857. source: "./media/characters/eleanor/head.svg"
  38858. }
  38859. },
  38860. },
  38861. [
  38862. {
  38863. name: "Normal",
  38864. height: math.unit(8 + 4/12, "feet"),
  38865. default: true
  38866. },
  38867. ]
  38868. ))
  38869. characterMakers.push(() => makeCharacter(
  38870. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38871. {
  38872. front: {
  38873. height: math.unit(8 + 4/12, "feet"),
  38874. weight: math.unit(750, "lb"),
  38875. name: "Front",
  38876. image: {
  38877. source: "./media/characters/tanya/front.svg",
  38878. extra: 1749/1615,
  38879. bottom: 33/1782
  38880. }
  38881. },
  38882. },
  38883. [
  38884. {
  38885. name: "Normal",
  38886. height: math.unit(8 + 4/12, "feet"),
  38887. default: true
  38888. },
  38889. ]
  38890. ))
  38891. characterMakers.push(() => makeCharacter(
  38892. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38893. {
  38894. front: {
  38895. height: math.unit(5, "feet"),
  38896. weight: math.unit(225, "lb"),
  38897. name: "Front",
  38898. image: {
  38899. source: "./media/characters/cindy/front.svg",
  38900. extra: 1320/1250,
  38901. bottom: 42/1362
  38902. }
  38903. },
  38904. frontDressed: {
  38905. height: math.unit(5, "feet"),
  38906. weight: math.unit(225, "lb"),
  38907. name: "Front (Dressed)",
  38908. image: {
  38909. source: "./media/characters/cindy/front-dressed.svg",
  38910. extra: 1320/1250,
  38911. bottom: 42/1362
  38912. }
  38913. },
  38914. back: {
  38915. height: math.unit(5, "feet"),
  38916. weight: math.unit(225, "lb"),
  38917. name: "Back",
  38918. image: {
  38919. source: "./media/characters/cindy/back.svg",
  38920. extra: 1384/1346,
  38921. bottom: 14/1398
  38922. }
  38923. },
  38924. },
  38925. [
  38926. {
  38927. name: "Normal",
  38928. height: math.unit(5, "feet"),
  38929. default: true
  38930. },
  38931. ]
  38932. ))
  38933. characterMakers.push(() => makeCharacter(
  38934. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38935. {
  38936. front: {
  38937. height: math.unit(6 + 9/12, "feet"),
  38938. weight: math.unit(440, "lb"),
  38939. name: "Front",
  38940. image: {
  38941. source: "./media/characters/wilbur-owen/front.svg",
  38942. extra: 1575/1448,
  38943. bottom: 72/1647
  38944. }
  38945. },
  38946. back: {
  38947. height: math.unit(6 + 9/12, "feet"),
  38948. weight: math.unit(440, "lb"),
  38949. name: "Back",
  38950. image: {
  38951. source: "./media/characters/wilbur-owen/back.svg",
  38952. extra: 1578/1445,
  38953. bottom: 36/1614
  38954. }
  38955. },
  38956. },
  38957. [
  38958. {
  38959. name: "Normal",
  38960. height: math.unit(6 + 9/12, "feet"),
  38961. default: true
  38962. },
  38963. ]
  38964. ))
  38965. characterMakers.push(() => makeCharacter(
  38966. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38967. {
  38968. front: {
  38969. height: math.unit(6 + 5/12, "feet"),
  38970. weight: math.unit(650, "lb"),
  38971. name: "Front",
  38972. image: {
  38973. source: "./media/characters/keegan/front.svg",
  38974. extra: 2387/2198,
  38975. bottom: 33/2420
  38976. }
  38977. },
  38978. side: {
  38979. height: math.unit(6 + 5/12, "feet"),
  38980. weight: math.unit(650, "lb"),
  38981. name: "Side",
  38982. image: {
  38983. source: "./media/characters/keegan/side.svg",
  38984. extra: 2390/2202,
  38985. bottom: 47/2437
  38986. }
  38987. },
  38988. back: {
  38989. height: math.unit(6 + 5/12, "feet"),
  38990. weight: math.unit(650, "lb"),
  38991. name: "Back",
  38992. image: {
  38993. source: "./media/characters/keegan/back.svg",
  38994. extra: 2418/2268,
  38995. bottom: 15/2433
  38996. }
  38997. },
  38998. frontSfw: {
  38999. height: math.unit(6 + 5/12, "feet"),
  39000. weight: math.unit(650, "lb"),
  39001. name: "Front (SFW)",
  39002. image: {
  39003. source: "./media/characters/keegan/front-sfw.svg",
  39004. extra: 2387/2198,
  39005. bottom: 33/2420
  39006. }
  39007. },
  39008. beans: {
  39009. height: math.unit(1.85, "feet"),
  39010. name: "Beans",
  39011. image: {
  39012. source: "./media/characters/keegan/beans.svg"
  39013. }
  39014. },
  39015. },
  39016. [
  39017. {
  39018. name: "Normal",
  39019. height: math.unit(6 + 5/12, "feet"),
  39020. default: true
  39021. },
  39022. ]
  39023. ))
  39024. characterMakers.push(() => makeCharacter(
  39025. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  39026. {
  39027. front: {
  39028. height: math.unit(9, "feet"),
  39029. name: "Front",
  39030. image: {
  39031. source: "./media/characters/colton/front.svg",
  39032. extra: 1589/1326,
  39033. bottom: 139/1728
  39034. }
  39035. },
  39036. },
  39037. [
  39038. {
  39039. name: "Normal",
  39040. height: math.unit(9, "feet"),
  39041. default: true
  39042. },
  39043. ]
  39044. ))
  39045. characterMakers.push(() => makeCharacter(
  39046. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  39047. {
  39048. front: {
  39049. height: math.unit(2 + 9/12, "feet"),
  39050. name: "Front",
  39051. image: {
  39052. source: "./media/characters/bora/front.svg",
  39053. extra: 1265/1250,
  39054. bottom: 24/1289
  39055. }
  39056. },
  39057. },
  39058. [
  39059. {
  39060. name: "Normal",
  39061. height: math.unit(2 + 9/12, "feet"),
  39062. default: true
  39063. },
  39064. ]
  39065. ))
  39066. characterMakers.push(() => makeCharacter(
  39067. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  39068. {
  39069. front: {
  39070. height: math.unit(8, "feet"),
  39071. name: "Front",
  39072. image: {
  39073. source: "./media/characters/myu-myu/front.svg",
  39074. extra: 1949/1857,
  39075. bottom: 90/2039
  39076. }
  39077. },
  39078. },
  39079. [
  39080. {
  39081. name: "Normal",
  39082. height: math.unit(8, "feet"),
  39083. default: true
  39084. },
  39085. {
  39086. name: "Big",
  39087. height: math.unit(15, "feet")
  39088. },
  39089. {
  39090. name: "BIG",
  39091. height: math.unit(25, "feet")
  39092. },
  39093. ]
  39094. ))
  39095. characterMakers.push(() => makeCharacter(
  39096. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  39097. {
  39098. side: {
  39099. height: math.unit(7 + 5/12, "feet"),
  39100. weight: math.unit(2800, "lb"),
  39101. name: "Side",
  39102. image: {
  39103. source: "./media/characters/haloren/side.svg",
  39104. extra: 1793/409,
  39105. bottom: 59/1852
  39106. }
  39107. },
  39108. frontPaw: {
  39109. height: math.unit(2.36, "feet"),
  39110. name: "Front paw",
  39111. image: {
  39112. source: "./media/characters/haloren/front-paw.svg"
  39113. }
  39114. },
  39115. hindPaw: {
  39116. height: math.unit(3.18, "feet"),
  39117. name: "Hind paw",
  39118. image: {
  39119. source: "./media/characters/haloren/hind-paw.svg"
  39120. }
  39121. },
  39122. maw: {
  39123. height: math.unit(5.05, "feet"),
  39124. name: "Maw",
  39125. image: {
  39126. source: "./media/characters/haloren/maw.svg"
  39127. }
  39128. },
  39129. dick: {
  39130. height: math.unit(2.90, "feet"),
  39131. name: "Dick",
  39132. image: {
  39133. source: "./media/characters/haloren/dick.svg"
  39134. }
  39135. },
  39136. },
  39137. [
  39138. {
  39139. name: "Normal",
  39140. height: math.unit(7 + 5/12, "feet"),
  39141. default: true
  39142. },
  39143. {
  39144. name: "Enhanced",
  39145. height: math.unit(14 + 3/12, "feet")
  39146. },
  39147. ]
  39148. ))
  39149. characterMakers.push(() => makeCharacter(
  39150. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  39151. {
  39152. front: {
  39153. height: math.unit(171, "cm"),
  39154. name: "Front",
  39155. image: {
  39156. source: "./media/characters/kimmy/front.svg",
  39157. extra: 1491/1435,
  39158. bottom: 53/1544
  39159. }
  39160. },
  39161. },
  39162. [
  39163. {
  39164. name: "Small",
  39165. height: math.unit(9, "cm")
  39166. },
  39167. {
  39168. name: "Normal",
  39169. height: math.unit(171, "cm"),
  39170. default: true
  39171. },
  39172. ]
  39173. ))
  39174. characterMakers.push(() => makeCharacter(
  39175. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  39176. {
  39177. front: {
  39178. height: math.unit(8, "feet"),
  39179. weight: math.unit(300, "lb"),
  39180. name: "Front",
  39181. image: {
  39182. source: "./media/characters/galeboomer/front.svg",
  39183. extra: 4651/4415,
  39184. bottom: 162/4813
  39185. }
  39186. },
  39187. back: {
  39188. height: math.unit(8, "feet"),
  39189. weight: math.unit(300, "lb"),
  39190. name: "Back",
  39191. image: {
  39192. source: "./media/characters/galeboomer/back.svg",
  39193. extra: 4544/4314,
  39194. bottom: 16/4560
  39195. }
  39196. },
  39197. frontAlt: {
  39198. height: math.unit(8, "feet"),
  39199. weight: math.unit(300, "lb"),
  39200. name: "Front (Alt)",
  39201. image: {
  39202. source: "./media/characters/galeboomer/front-alt.svg",
  39203. extra: 4458/4228,
  39204. bottom: 68/4526
  39205. }
  39206. },
  39207. maw: {
  39208. height: math.unit(1.2, "feet"),
  39209. name: "Maw",
  39210. image: {
  39211. source: "./media/characters/galeboomer/maw.svg"
  39212. }
  39213. },
  39214. },
  39215. [
  39216. {
  39217. name: "Normal",
  39218. height: math.unit(8, "feet"),
  39219. default: true
  39220. },
  39221. ]
  39222. ))
  39223. characterMakers.push(() => makeCharacter(
  39224. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  39225. {
  39226. front: {
  39227. height: math.unit(5 + 9/12, "feet"),
  39228. weight: math.unit(120, "lb"),
  39229. name: "Front",
  39230. image: {
  39231. source: "./media/characters/chyr/front.svg",
  39232. extra: 1323/1254,
  39233. bottom: 63/1386
  39234. }
  39235. },
  39236. back: {
  39237. height: math.unit(5 + 9/12, "feet"),
  39238. weight: math.unit(120, "lb"),
  39239. name: "Back",
  39240. image: {
  39241. source: "./media/characters/chyr/back.svg",
  39242. extra: 1323/1252,
  39243. bottom: 48/1371
  39244. }
  39245. },
  39246. },
  39247. [
  39248. {
  39249. name: "Normal",
  39250. height: math.unit(5 + 9/12, "feet"),
  39251. default: true
  39252. },
  39253. ]
  39254. ))
  39255. characterMakers.push(() => makeCharacter(
  39256. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  39257. {
  39258. front: {
  39259. height: math.unit(7, "feet"),
  39260. weight: math.unit(310, "lb"),
  39261. name: "Front",
  39262. image: {
  39263. source: "./media/characters/solarus/front.svg",
  39264. extra: 2415/2021,
  39265. bottom: 103/2518
  39266. }
  39267. },
  39268. back: {
  39269. height: math.unit(7, "feet"),
  39270. weight: math.unit(310, "lb"),
  39271. name: "Back",
  39272. image: {
  39273. source: "./media/characters/solarus/back.svg",
  39274. extra: 2463/2089,
  39275. bottom: 79/2542
  39276. }
  39277. },
  39278. },
  39279. [
  39280. {
  39281. name: "Normal",
  39282. height: math.unit(7, "feet"),
  39283. default: true
  39284. },
  39285. ]
  39286. ))
  39287. characterMakers.push(() => makeCharacter(
  39288. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  39289. {
  39290. front: {
  39291. height: math.unit(16, "feet"),
  39292. name: "Front",
  39293. image: {
  39294. source: "./media/characters/mutsuju-koizaemon/front.svg",
  39295. extra: 1844/1780,
  39296. bottom: 58/1902
  39297. }
  39298. },
  39299. winterCoat: {
  39300. height: math.unit(16, "feet"),
  39301. name: "Winter Coat",
  39302. image: {
  39303. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  39304. extra: 1807/1775,
  39305. bottom: 69/1876
  39306. }
  39307. },
  39308. },
  39309. [
  39310. {
  39311. name: "Normal",
  39312. height: math.unit(16, "feet"),
  39313. default: true
  39314. },
  39315. {
  39316. name: "Chicago Size",
  39317. height: math.unit(560, "feet")
  39318. },
  39319. ]
  39320. ))
  39321. characterMakers.push(() => makeCharacter(
  39322. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  39323. {
  39324. front: {
  39325. height: math.unit(11 + 6/12, "feet"),
  39326. weight: math.unit(1366, "lb"),
  39327. name: "Front",
  39328. image: {
  39329. source: "./media/characters/lexor/front.svg",
  39330. extra: 1560/1481,
  39331. bottom: 211/1771
  39332. }
  39333. },
  39334. back: {
  39335. height: math.unit(11 + 6/12, "feet"),
  39336. weight: math.unit(1366, "lb"),
  39337. name: "Back",
  39338. image: {
  39339. source: "./media/characters/lexor/back.svg",
  39340. extra: 1614/1533,
  39341. bottom: 76/1690
  39342. }
  39343. },
  39344. maw: {
  39345. height: math.unit(3, "feet"),
  39346. name: "Maw",
  39347. image: {
  39348. source: "./media/characters/lexor/maw.svg"
  39349. }
  39350. },
  39351. dick: {
  39352. height: math.unit(2.59, "feet"),
  39353. name: "Dick",
  39354. image: {
  39355. source: "./media/characters/lexor/dick.svg"
  39356. }
  39357. },
  39358. },
  39359. [
  39360. {
  39361. name: "Normal",
  39362. height: math.unit(11 + 6/12, "feet"),
  39363. default: true
  39364. },
  39365. ]
  39366. ))
  39367. characterMakers.push(() => makeCharacter(
  39368. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  39369. {
  39370. front: {
  39371. height: math.unit(5 + 8/12, "feet"),
  39372. name: "Front",
  39373. image: {
  39374. source: "./media/characters/magnum/front.svg",
  39375. extra: 942/855,
  39376. bottom: 26/968
  39377. }
  39378. },
  39379. },
  39380. [
  39381. {
  39382. name: "Normal",
  39383. height: math.unit(5 + 8/12, "feet"),
  39384. default: true
  39385. },
  39386. ]
  39387. ))
  39388. characterMakers.push(() => makeCharacter(
  39389. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  39390. {
  39391. front: {
  39392. height: math.unit(18 + 4/12, "feet"),
  39393. weight: math.unit(1500, "kg"),
  39394. name: "Front",
  39395. image: {
  39396. source: "./media/characters/solas-sharpsman/front.svg",
  39397. extra: 1698/1589,
  39398. bottom: 0/1698
  39399. }
  39400. },
  39401. },
  39402. [
  39403. {
  39404. name: "Normal",
  39405. height: math.unit(18 + 4/12, "feet"),
  39406. default: true
  39407. },
  39408. ]
  39409. ))
  39410. characterMakers.push(() => makeCharacter(
  39411. { name: "October", species: ["tiger"], tags: ["anthro"] },
  39412. {
  39413. front: {
  39414. height: math.unit(5 + 5/12, "feet"),
  39415. weight: math.unit(180, "lb"),
  39416. name: "Front",
  39417. image: {
  39418. source: "./media/characters/october/front.svg",
  39419. extra: 1800/1650,
  39420. bottom: 0/1800
  39421. }
  39422. },
  39423. frontNsfw: {
  39424. height: math.unit(5 + 5/12, "feet"),
  39425. weight: math.unit(180, "lb"),
  39426. name: "Front (NSFW)",
  39427. image: {
  39428. source: "./media/characters/october/front-nsfw.svg",
  39429. extra: 1392/1307,
  39430. bottom: 42/1434
  39431. }
  39432. },
  39433. },
  39434. [
  39435. {
  39436. name: "Normal",
  39437. height: math.unit(5 + 5/12, "feet"),
  39438. default: true
  39439. },
  39440. ]
  39441. ))
  39442. characterMakers.push(() => makeCharacter(
  39443. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  39444. {
  39445. front: {
  39446. height: math.unit(8 + 6/12, "feet"),
  39447. name: "Front",
  39448. image: {
  39449. source: "./media/characters/essynkardi/front.svg",
  39450. extra: 1541/1457,
  39451. bottom: 47/1588
  39452. }
  39453. },
  39454. },
  39455. [
  39456. {
  39457. name: "Normal",
  39458. height: math.unit(8 + 6/12, "feet"),
  39459. default: true
  39460. },
  39461. ]
  39462. ))
  39463. characterMakers.push(() => makeCharacter(
  39464. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  39465. {
  39466. front: {
  39467. height: math.unit(6 + 6/12, "feet"),
  39468. weight: math.unit(7, "lb"),
  39469. name: "Front",
  39470. image: {
  39471. source: "./media/characters/icky/front.svg",
  39472. extra: 813/782,
  39473. bottom: 66/879
  39474. }
  39475. },
  39476. back: {
  39477. height: math.unit(6 + 6/12, "feet"),
  39478. weight: math.unit(7, "lb"),
  39479. name: "Back",
  39480. image: {
  39481. source: "./media/characters/icky/back.svg",
  39482. extra: 754/735,
  39483. bottom: 56/810
  39484. }
  39485. },
  39486. },
  39487. [
  39488. {
  39489. name: "Normal",
  39490. height: math.unit(6 + 6/12, "feet"),
  39491. default: true
  39492. },
  39493. ]
  39494. ))
  39495. characterMakers.push(() => makeCharacter(
  39496. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  39497. {
  39498. front: {
  39499. height: math.unit(15, "feet"),
  39500. name: "Front",
  39501. image: {
  39502. source: "./media/characters/rojas/front.svg",
  39503. extra: 1462/1408,
  39504. bottom: 95/1557
  39505. }
  39506. },
  39507. back: {
  39508. height: math.unit(15, "feet"),
  39509. name: "Back",
  39510. image: {
  39511. source: "./media/characters/rojas/back.svg",
  39512. extra: 1023/954,
  39513. bottom: 28/1051
  39514. }
  39515. },
  39516. },
  39517. [
  39518. {
  39519. name: "Normal",
  39520. height: math.unit(15, "feet"),
  39521. default: true
  39522. },
  39523. ]
  39524. ))
  39525. characterMakers.push(() => makeCharacter(
  39526. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  39527. {
  39528. frontHuman: {
  39529. height: math.unit(5 + 7/12, "feet"),
  39530. name: "Front (Human)",
  39531. image: {
  39532. source: "./media/characters/alek-dryagan/front-human.svg",
  39533. extra: 1687/1667,
  39534. bottom: 69/1756
  39535. }
  39536. },
  39537. backHuman: {
  39538. height: math.unit(5 + 7/12, "feet"),
  39539. name: "Back (Human)",
  39540. image: {
  39541. source: "./media/characters/alek-dryagan/back-human.svg",
  39542. extra: 1670/1649,
  39543. bottom: 65/1735
  39544. }
  39545. },
  39546. frontDemi: {
  39547. height: math.unit(65, "feet"),
  39548. name: "Front (Demi)",
  39549. image: {
  39550. source: "./media/characters/alek-dryagan/front-demi.svg",
  39551. extra: 1669/1642,
  39552. bottom: 49/1718
  39553. }
  39554. },
  39555. backDemi: {
  39556. height: math.unit(65, "feet"),
  39557. name: "Back (Demi)",
  39558. image: {
  39559. source: "./media/characters/alek-dryagan/back-demi.svg",
  39560. extra: 1658/1637,
  39561. bottom: 40/1698
  39562. }
  39563. },
  39564. mawHuman: {
  39565. height: math.unit(0.3, "feet"),
  39566. name: "Maw (Human)",
  39567. image: {
  39568. source: "./media/characters/alek-dryagan/maw-human.svg"
  39569. }
  39570. },
  39571. mawDemi: {
  39572. height: math.unit(3.8, "feet"),
  39573. name: "Maw (Demi)",
  39574. image: {
  39575. source: "./media/characters/alek-dryagan/maw-demi.svg"
  39576. }
  39577. },
  39578. },
  39579. [
  39580. {
  39581. name: "Normal",
  39582. height: math.unit(5 + 7/12, "feet"),
  39583. default: true
  39584. },
  39585. ]
  39586. ))
  39587. characterMakers.push(() => makeCharacter(
  39588. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  39589. {
  39590. frontHuman: {
  39591. height: math.unit(5 + 2/12, "feet"),
  39592. name: "Front (Human)",
  39593. image: {
  39594. source: "./media/characters/gen/front-human.svg",
  39595. extra: 1627/1538,
  39596. bottom: 71/1698
  39597. }
  39598. },
  39599. backHuman: {
  39600. height: math.unit(5 + 2/12, "feet"),
  39601. name: "Back (Human)",
  39602. image: {
  39603. source: "./media/characters/gen/back-human.svg",
  39604. extra: 1638/1548,
  39605. bottom: 69/1707
  39606. }
  39607. },
  39608. frontDemi: {
  39609. height: math.unit(5 + 2/12, "feet"),
  39610. name: "Front (Demi)",
  39611. image: {
  39612. source: "./media/characters/gen/front-demi.svg",
  39613. extra: 1627/1538,
  39614. bottom: 71/1698
  39615. }
  39616. },
  39617. backDemi: {
  39618. height: math.unit(5 + 2/12, "feet"),
  39619. name: "Back (Demi)",
  39620. image: {
  39621. source: "./media/characters/gen/back-demi.svg",
  39622. extra: 1638/1548,
  39623. bottom: 69/1707
  39624. }
  39625. },
  39626. },
  39627. [
  39628. {
  39629. name: "Normal",
  39630. height: math.unit(5 + 2/12, "feet"),
  39631. default: true
  39632. },
  39633. ]
  39634. ))
  39635. characterMakers.push(() => makeCharacter(
  39636. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39637. {
  39638. frontImp: {
  39639. height: math.unit(1 + 11/12, "feet"),
  39640. name: "Front (Imp)",
  39641. image: {
  39642. source: "./media/characters/max-kobold/front-imp.svg",
  39643. extra: 1238/1134,
  39644. bottom: 81/1319
  39645. }
  39646. },
  39647. backImp: {
  39648. height: math.unit(1 + 11/12, "feet"),
  39649. name: "Back (Imp)",
  39650. image: {
  39651. source: "./media/characters/max-kobold/back-imp.svg",
  39652. extra: 1334/1175,
  39653. bottom: 34/1368
  39654. }
  39655. },
  39656. frontDemi: {
  39657. height: math.unit(5 + 9/12, "feet"),
  39658. name: "Front (Demi)",
  39659. image: {
  39660. source: "./media/characters/max-kobold/front-demi.svg",
  39661. extra: 1715/1685,
  39662. bottom: 54/1769
  39663. }
  39664. },
  39665. backDemi: {
  39666. height: math.unit(5 + 9/12, "feet"),
  39667. name: "Back (Demi)",
  39668. image: {
  39669. source: "./media/characters/max-kobold/back-demi.svg",
  39670. extra: 1752/1729,
  39671. bottom: 41/1793
  39672. }
  39673. },
  39674. handImp: {
  39675. height: math.unit(0.45, "feet"),
  39676. name: "Hand (Imp)",
  39677. image: {
  39678. source: "./media/characters/max-kobold/hand.svg"
  39679. }
  39680. },
  39681. pawImp: {
  39682. height: math.unit(0.46, "feet"),
  39683. name: "Paw (Imp)",
  39684. image: {
  39685. source: "./media/characters/max-kobold/paw.svg"
  39686. }
  39687. },
  39688. handDemi: {
  39689. height: math.unit(0.80, "feet"),
  39690. name: "Hand (Demi)",
  39691. image: {
  39692. source: "./media/characters/max-kobold/hand.svg"
  39693. }
  39694. },
  39695. pawDemi: {
  39696. height: math.unit(1.1, "feet"),
  39697. name: "Paw (Demi)",
  39698. image: {
  39699. source: "./media/characters/max-kobold/paw.svg"
  39700. }
  39701. },
  39702. headImp: {
  39703. height: math.unit(1.33, "feet"),
  39704. name: "Head (Imp)",
  39705. image: {
  39706. source: "./media/characters/max-kobold/head-imp.svg"
  39707. }
  39708. },
  39709. mawImp: {
  39710. height: math.unit(0.75, "feet"),
  39711. name: "Maw (Imp)",
  39712. image: {
  39713. source: "./media/characters/max-kobold/maw-imp.svg"
  39714. }
  39715. },
  39716. mawDemi: {
  39717. height: math.unit(0.42, "feet"),
  39718. name: "Maw (Demi)",
  39719. image: {
  39720. source: "./media/characters/max-kobold/maw-demi.svg"
  39721. }
  39722. },
  39723. },
  39724. [
  39725. {
  39726. name: "Normal",
  39727. height: math.unit(1 + 11/12, "feet"),
  39728. default: true
  39729. },
  39730. ]
  39731. ))
  39732. characterMakers.push(() => makeCharacter(
  39733. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39734. {
  39735. front: {
  39736. height: math.unit(7 + 5/12, "feet"),
  39737. name: "Front",
  39738. image: {
  39739. source: "./media/characters/carbon/front.svg",
  39740. extra: 1754/1689,
  39741. bottom: 65/1819
  39742. }
  39743. },
  39744. back: {
  39745. height: math.unit(7 + 5/12, "feet"),
  39746. name: "Back",
  39747. image: {
  39748. source: "./media/characters/carbon/back.svg",
  39749. extra: 1762/1695,
  39750. bottom: 24/1786
  39751. }
  39752. },
  39753. frontGigantamax: {
  39754. height: math.unit(150, "feet"),
  39755. name: "Front (Gigantamax)",
  39756. image: {
  39757. source: "./media/characters/carbon/front-gigantamax.svg",
  39758. extra: 1826/1669,
  39759. bottom: 59/1885
  39760. }
  39761. },
  39762. backGigantamax: {
  39763. height: math.unit(150, "feet"),
  39764. name: "Back (Gigantamax)",
  39765. image: {
  39766. source: "./media/characters/carbon/back-gigantamax.svg",
  39767. extra: 1796/1653,
  39768. bottom: 53/1849
  39769. }
  39770. },
  39771. maw: {
  39772. height: math.unit(0.48, "feet"),
  39773. name: "Maw",
  39774. image: {
  39775. source: "./media/characters/carbon/maw.svg"
  39776. }
  39777. },
  39778. mawGigantamax: {
  39779. height: math.unit(7.5, "feet"),
  39780. name: "Maw (Gigantamax)",
  39781. image: {
  39782. source: "./media/characters/carbon/maw-gigantamax.svg"
  39783. }
  39784. },
  39785. },
  39786. [
  39787. {
  39788. name: "Normal",
  39789. height: math.unit(7 + 5/12, "feet"),
  39790. default: true
  39791. },
  39792. ]
  39793. ))
  39794. characterMakers.push(() => makeCharacter(
  39795. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39796. {
  39797. front: {
  39798. height: math.unit(6, "feet"),
  39799. name: "Front",
  39800. image: {
  39801. source: "./media/characters/maverick/front.svg",
  39802. extra: 1672/1661,
  39803. bottom: 85/1757
  39804. }
  39805. },
  39806. back: {
  39807. height: math.unit(6, "feet"),
  39808. name: "Back",
  39809. image: {
  39810. source: "./media/characters/maverick/back.svg",
  39811. extra: 1642/1631,
  39812. bottom: 38/1680
  39813. }
  39814. },
  39815. },
  39816. [
  39817. {
  39818. name: "Normal",
  39819. height: math.unit(6, "feet"),
  39820. default: true
  39821. },
  39822. ]
  39823. ))
  39824. characterMakers.push(() => makeCharacter(
  39825. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39826. {
  39827. front: {
  39828. height: math.unit(15, "feet"),
  39829. weight: math.unit(615, "lb"),
  39830. name: "Front",
  39831. image: {
  39832. source: "./media/characters/grockle/front.svg",
  39833. extra: 1535/1427,
  39834. bottom: 56/1591
  39835. }
  39836. },
  39837. },
  39838. [
  39839. {
  39840. name: "Normal",
  39841. height: math.unit(15, "feet"),
  39842. default: true
  39843. },
  39844. {
  39845. name: "Large",
  39846. height: math.unit(150, "feet")
  39847. },
  39848. {
  39849. name: "Macro",
  39850. height: math.unit(1876, "feet")
  39851. },
  39852. {
  39853. name: "Mega Macro",
  39854. height: math.unit(121940, "feet")
  39855. },
  39856. {
  39857. name: "Giga Macro",
  39858. height: math.unit(750, "km")
  39859. },
  39860. {
  39861. name: "Tera Macro",
  39862. height: math.unit(750000, "km")
  39863. },
  39864. {
  39865. name: "Galactic",
  39866. height: math.unit(1.4e5, "km")
  39867. },
  39868. {
  39869. name: "Godlike",
  39870. height: math.unit(9.8e280, "galaxies")
  39871. },
  39872. ]
  39873. ))
  39874. characterMakers.push(() => makeCharacter(
  39875. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39876. {
  39877. front: {
  39878. height: math.unit(11, "meters"),
  39879. weight: math.unit(20, "tonnes"),
  39880. name: "Front",
  39881. image: {
  39882. source: "./media/characters/alistair/front.svg",
  39883. extra: 1265/1009,
  39884. bottom: 93/1358
  39885. }
  39886. },
  39887. },
  39888. [
  39889. {
  39890. name: "Normal",
  39891. height: math.unit(11, "meters"),
  39892. default: true
  39893. },
  39894. ]
  39895. ))
  39896. characterMakers.push(() => makeCharacter(
  39897. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39898. {
  39899. front: {
  39900. height: math.unit(5 + 8/12, "feet"),
  39901. name: "Front",
  39902. image: {
  39903. source: "./media/characters/haruka/front.svg",
  39904. extra: 2012/1952,
  39905. bottom: 0/2012
  39906. }
  39907. },
  39908. },
  39909. [
  39910. {
  39911. name: "Normal",
  39912. height: math.unit(5 + 8/12, "feet"),
  39913. default: true
  39914. },
  39915. ]
  39916. ))
  39917. characterMakers.push(() => makeCharacter(
  39918. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39919. {
  39920. back: {
  39921. height: math.unit(9, "feet"),
  39922. name: "Back",
  39923. image: {
  39924. source: "./media/characters/vivian-sylveon/back.svg",
  39925. extra: 1853/1714,
  39926. bottom: 0/1853
  39927. }
  39928. },
  39929. hyper: {
  39930. height: math.unit(5.58, "feet"),
  39931. name: "Hyper",
  39932. preyCapacity: math.unit(2.80616218797, "m^3"),
  39933. image: {
  39934. source: "./media/characters/vivian-sylveon/hyper.svg",
  39935. extra: 999/676,
  39936. bottom: 697/1696
  39937. },
  39938. },
  39939. paw: {
  39940. height: math.unit(1.8, "feet"),
  39941. name: "Paw",
  39942. image: {
  39943. source: "./media/characters/vivian-sylveon/paw.svg"
  39944. }
  39945. },
  39946. danger: {
  39947. height: math.unit(7.5, "feet"),
  39948. name: "DANGER",
  39949. image: {
  39950. source: "./media/characters/vivian-sylveon/danger.svg"
  39951. }
  39952. },
  39953. },
  39954. [
  39955. {
  39956. name: "Normal",
  39957. height: math.unit(9, "feet"),
  39958. default: true
  39959. },
  39960. {
  39961. name: "Macro",
  39962. height: math.unit(500, "feet")
  39963. },
  39964. {
  39965. name: "Megamacro",
  39966. height: math.unit(600, "miles")
  39967. },
  39968. {
  39969. name: "Gigamacro",
  39970. height: math.unit(30000, "miles")
  39971. },
  39972. ]
  39973. ))
  39974. characterMakers.push(() => makeCharacter(
  39975. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39976. {
  39977. anthro: {
  39978. height: math.unit(5 + 10/12, "feet"),
  39979. weight: math.unit(100, "lb"),
  39980. name: "Anthro",
  39981. image: {
  39982. source: "./media/characters/daiki/anthro.svg",
  39983. extra: 1115/1027,
  39984. bottom: 69/1184
  39985. }
  39986. },
  39987. feral: {
  39988. height: math.unit(200, "feet"),
  39989. name: "Feral",
  39990. image: {
  39991. source: "./media/characters/daiki/feral.svg",
  39992. extra: 1256/313,
  39993. bottom: 39/1295
  39994. }
  39995. },
  39996. feralHead: {
  39997. height: math.unit(171, "feet"),
  39998. name: "Feral Head",
  39999. image: {
  40000. source: "./media/characters/daiki/feral-head.svg"
  40001. }
  40002. },
  40003. manaDragon: {
  40004. height: math.unit(170, "meters"),
  40005. name: "Mana-dragon",
  40006. image: {
  40007. source: "./media/characters/daiki/mana-dragon.svg",
  40008. extra: 763/420,
  40009. bottom: 97/860
  40010. }
  40011. },
  40012. },
  40013. [
  40014. {
  40015. name: "Normal",
  40016. height: math.unit(5 + 10/12, "feet"),
  40017. default: true
  40018. },
  40019. ]
  40020. ))
  40021. characterMakers.push(() => makeCharacter(
  40022. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  40023. {
  40024. fullyEquippedFront: {
  40025. height: math.unit(3 + 1/12, "feet"),
  40026. weight: math.unit(24, "lb"),
  40027. name: "Fully Equipped (Front)",
  40028. image: {
  40029. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  40030. extra: 687/605,
  40031. bottom: 18/705
  40032. }
  40033. },
  40034. fullyEquippedBack: {
  40035. height: math.unit(3 + 1/12, "feet"),
  40036. weight: math.unit(24, "lb"),
  40037. name: "Fully Equipped (Back)",
  40038. image: {
  40039. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  40040. extra: 689/590,
  40041. bottom: 18/707
  40042. }
  40043. },
  40044. dailyWear: {
  40045. height: math.unit(3 + 1/12, "feet"),
  40046. weight: math.unit(24, "lb"),
  40047. name: "Daily Wear",
  40048. image: {
  40049. source: "./media/characters/tea-spot/daily-wear.svg",
  40050. extra: 701/620,
  40051. bottom: 21/722
  40052. }
  40053. },
  40054. maidWork: {
  40055. height: math.unit(3 + 1/12, "feet"),
  40056. weight: math.unit(24, "lb"),
  40057. name: "Maid Work",
  40058. image: {
  40059. source: "./media/characters/tea-spot/maid-work.svg",
  40060. extra: 693/609,
  40061. bottom: 15/708
  40062. }
  40063. },
  40064. },
  40065. [
  40066. {
  40067. name: "Normal",
  40068. height: math.unit(3 + 1/12, "feet"),
  40069. default: true
  40070. },
  40071. ]
  40072. ))
  40073. characterMakers.push(() => makeCharacter(
  40074. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  40075. {
  40076. front: {
  40077. height: math.unit(175, "cm"),
  40078. weight: math.unit(75, "kg"),
  40079. name: "Front",
  40080. image: {
  40081. source: "./media/characters/chee/front.svg",
  40082. extra: 1796/1740,
  40083. bottom: 40/1836
  40084. }
  40085. },
  40086. },
  40087. [
  40088. {
  40089. name: "Micro-Micro",
  40090. height: math.unit(1, "nm")
  40091. },
  40092. {
  40093. name: "Micro-erst",
  40094. height: math.unit(1, "micrometer")
  40095. },
  40096. {
  40097. name: "Micro-er",
  40098. height: math.unit(1, "cm")
  40099. },
  40100. {
  40101. name: "Normal",
  40102. height: math.unit(175, "cm"),
  40103. default: true
  40104. },
  40105. {
  40106. name: "Macro",
  40107. height: math.unit(100, "m")
  40108. },
  40109. {
  40110. name: "Macro-er",
  40111. height: math.unit(1, "km")
  40112. },
  40113. {
  40114. name: "Macro-erst",
  40115. height: math.unit(10, "km")
  40116. },
  40117. {
  40118. name: "Macro-Macro",
  40119. height: math.unit(100, "km")
  40120. },
  40121. ]
  40122. ))
  40123. characterMakers.push(() => makeCharacter(
  40124. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  40125. {
  40126. front: {
  40127. height: math.unit(11 + 9/12, "feet"),
  40128. weight: math.unit(935, "lb"),
  40129. name: "Front",
  40130. image: {
  40131. source: "./media/characters/kingsley/front.svg",
  40132. extra: 1803/1674,
  40133. bottom: 127/1930
  40134. }
  40135. },
  40136. frontNude: {
  40137. height: math.unit(11 + 9/12, "feet"),
  40138. weight: math.unit(935, "lb"),
  40139. name: "Front (Nude)",
  40140. image: {
  40141. source: "./media/characters/kingsley/front-nude.svg",
  40142. extra: 1803/1674,
  40143. bottom: 127/1930
  40144. }
  40145. },
  40146. },
  40147. [
  40148. {
  40149. name: "Normal",
  40150. height: math.unit(11 + 9/12, "feet"),
  40151. default: true
  40152. },
  40153. ]
  40154. ))
  40155. characterMakers.push(() => makeCharacter(
  40156. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  40157. {
  40158. side: {
  40159. height: math.unit(9, "feet"),
  40160. name: "Side",
  40161. image: {
  40162. source: "./media/characters/rymel/side.svg",
  40163. extra: 792/469,
  40164. bottom: 121/913
  40165. }
  40166. },
  40167. maw: {
  40168. height: math.unit(2.4, "meters"),
  40169. name: "Maw",
  40170. image: {
  40171. source: "./media/characters/rymel/maw.svg"
  40172. }
  40173. },
  40174. },
  40175. [
  40176. {
  40177. name: "House Drake",
  40178. height: math.unit(2, "feet")
  40179. },
  40180. {
  40181. name: "Reduced",
  40182. height: math.unit(4.5, "feet")
  40183. },
  40184. {
  40185. name: "Normal",
  40186. height: math.unit(9, "feet"),
  40187. default: true
  40188. },
  40189. ]
  40190. ))
  40191. characterMakers.push(() => makeCharacter(
  40192. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  40193. {
  40194. front: {
  40195. height: math.unit(1.74, "meters"),
  40196. weight: math.unit(55, "kg"),
  40197. name: "Front",
  40198. image: {
  40199. source: "./media/characters/rubus/front.svg",
  40200. extra: 1894/1742,
  40201. bottom: 44/1938
  40202. }
  40203. },
  40204. },
  40205. [
  40206. {
  40207. name: "Normal",
  40208. height: math.unit(1.74, "meters"),
  40209. default: true
  40210. },
  40211. ]
  40212. ))
  40213. characterMakers.push(() => makeCharacter(
  40214. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  40215. {
  40216. front: {
  40217. height: math.unit(5 + 2/12, "feet"),
  40218. weight: math.unit(112, "lb"),
  40219. name: "Front",
  40220. image: {
  40221. source: "./media/characters/cassie-kingston/front.svg",
  40222. extra: 1438/1390,
  40223. bottom: 47/1485
  40224. }
  40225. },
  40226. },
  40227. [
  40228. {
  40229. name: "Normal",
  40230. height: math.unit(5 + 2/12, "feet"),
  40231. default: true
  40232. },
  40233. {
  40234. name: "Macro",
  40235. height: math.unit(128, "feet")
  40236. },
  40237. {
  40238. name: "Megamacro",
  40239. height: math.unit(2.56, "miles")
  40240. },
  40241. ]
  40242. ))
  40243. characterMakers.push(() => makeCharacter(
  40244. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  40245. {
  40246. front: {
  40247. height: math.unit(7, "feet"),
  40248. name: "Front",
  40249. image: {
  40250. source: "./media/characters/fox/front.svg",
  40251. extra: 1798/1703,
  40252. bottom: 55/1853
  40253. }
  40254. },
  40255. back: {
  40256. height: math.unit(7, "feet"),
  40257. name: "Back",
  40258. image: {
  40259. source: "./media/characters/fox/back.svg",
  40260. extra: 1748/1649,
  40261. bottom: 32/1780
  40262. }
  40263. },
  40264. head: {
  40265. height: math.unit(1.95, "feet"),
  40266. name: "Head",
  40267. image: {
  40268. source: "./media/characters/fox/head.svg"
  40269. }
  40270. },
  40271. dick: {
  40272. height: math.unit(1.33, "feet"),
  40273. name: "Dick",
  40274. image: {
  40275. source: "./media/characters/fox/dick.svg"
  40276. }
  40277. },
  40278. foot: {
  40279. height: math.unit(1, "feet"),
  40280. name: "Foot",
  40281. image: {
  40282. source: "./media/characters/fox/foot.svg"
  40283. }
  40284. },
  40285. paw: {
  40286. height: math.unit(0.92, "feet"),
  40287. name: "Paw",
  40288. image: {
  40289. source: "./media/characters/fox/paw.svg"
  40290. }
  40291. },
  40292. },
  40293. [
  40294. {
  40295. name: "Small",
  40296. height: math.unit(3, "inches")
  40297. },
  40298. {
  40299. name: "\"Realistic\"",
  40300. height: math.unit(7, "feet")
  40301. },
  40302. {
  40303. name: "Normal",
  40304. height: math.unit(150, "feet"),
  40305. default: true
  40306. },
  40307. {
  40308. name: "BIG",
  40309. height: math.unit(1200, "feet")
  40310. },
  40311. {
  40312. name: "👀",
  40313. height: math.unit(5, "miles")
  40314. },
  40315. {
  40316. name: "👀👀👀",
  40317. height: math.unit(64, "miles")
  40318. },
  40319. ]
  40320. ))
  40321. characterMakers.push(() => makeCharacter(
  40322. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  40323. {
  40324. front: {
  40325. height: math.unit(625, "feet"),
  40326. name: "Front",
  40327. image: {
  40328. source: "./media/characters/asonja-rossa/front.svg",
  40329. extra: 1833/1686,
  40330. bottom: 24/1857
  40331. }
  40332. },
  40333. back: {
  40334. height: math.unit(625, "feet"),
  40335. name: "Back",
  40336. image: {
  40337. source: "./media/characters/asonja-rossa/back.svg",
  40338. extra: 1852/1753,
  40339. bottom: 26/1878
  40340. }
  40341. },
  40342. },
  40343. [
  40344. {
  40345. name: "Macro",
  40346. height: math.unit(625, "feet"),
  40347. default: true
  40348. },
  40349. ]
  40350. ))
  40351. characterMakers.push(() => makeCharacter(
  40352. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  40353. {
  40354. side: {
  40355. height: math.unit(8, "feet"),
  40356. name: "Side",
  40357. image: {
  40358. source: "./media/characters/rezukii/side.svg",
  40359. extra: 979/542,
  40360. bottom: 87/1066
  40361. }
  40362. },
  40363. sitting: {
  40364. height: math.unit(14.6, "feet"),
  40365. name: "Sitting",
  40366. image: {
  40367. source: "./media/characters/rezukii/sitting.svg",
  40368. extra: 1023/813,
  40369. bottom: 45/1068
  40370. }
  40371. },
  40372. },
  40373. [
  40374. {
  40375. name: "Tiny",
  40376. height: math.unit(2, "feet")
  40377. },
  40378. {
  40379. name: "Smol",
  40380. height: math.unit(4, "feet")
  40381. },
  40382. {
  40383. name: "Normal",
  40384. height: math.unit(8, "feet"),
  40385. default: true
  40386. },
  40387. {
  40388. name: "Big",
  40389. height: math.unit(12, "feet")
  40390. },
  40391. {
  40392. name: "Macro",
  40393. height: math.unit(30, "feet")
  40394. },
  40395. ]
  40396. ))
  40397. characterMakers.push(() => makeCharacter(
  40398. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  40399. {
  40400. front: {
  40401. height: math.unit(14, "feet"),
  40402. weight: math.unit(9.5, "tonnes"),
  40403. name: "Front",
  40404. image: {
  40405. source: "./media/characters/dawnheart/front.svg",
  40406. extra: 2792/2675,
  40407. bottom: 64/2856
  40408. }
  40409. },
  40410. },
  40411. [
  40412. {
  40413. name: "Normal",
  40414. height: math.unit(14, "feet"),
  40415. default: true
  40416. },
  40417. ]
  40418. ))
  40419. characterMakers.push(() => makeCharacter(
  40420. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  40421. {
  40422. front: {
  40423. height: math.unit(1.7, "m"),
  40424. name: "Front",
  40425. image: {
  40426. source: "./media/characters/gladi/front.svg",
  40427. extra: 1460/1362,
  40428. bottom: 19/1479
  40429. }
  40430. },
  40431. back: {
  40432. height: math.unit(1.7, "m"),
  40433. name: "Back",
  40434. image: {
  40435. source: "./media/characters/gladi/back.svg",
  40436. extra: 1459/1357,
  40437. bottom: 12/1471
  40438. }
  40439. },
  40440. feral: {
  40441. height: math.unit(2.05, "m"),
  40442. name: "Feral",
  40443. image: {
  40444. source: "./media/characters/gladi/feral.svg",
  40445. extra: 821/557,
  40446. bottom: 91/912
  40447. }
  40448. },
  40449. },
  40450. [
  40451. {
  40452. name: "Shortest",
  40453. height: math.unit(70, "cm")
  40454. },
  40455. {
  40456. name: "Normal",
  40457. height: math.unit(1.7, "m")
  40458. },
  40459. {
  40460. name: "Macro",
  40461. height: math.unit(10, "m"),
  40462. default: true
  40463. },
  40464. {
  40465. name: "Tallest",
  40466. height: math.unit(200, "m")
  40467. },
  40468. ]
  40469. ))
  40470. characterMakers.push(() => makeCharacter(
  40471. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  40472. {
  40473. front: {
  40474. height: math.unit(5 + 7/12, "feet"),
  40475. weight: math.unit(2, "tons"),
  40476. name: "Front",
  40477. image: {
  40478. source: "./media/characters/erdno/front.svg",
  40479. extra: 1234/1129,
  40480. bottom: 35/1269
  40481. }
  40482. },
  40483. angled: {
  40484. height: math.unit(5 + 7/12, "feet"),
  40485. weight: math.unit(2, "tons"),
  40486. name: "Angled",
  40487. image: {
  40488. source: "./media/characters/erdno/angled.svg",
  40489. extra: 1185/1139,
  40490. bottom: 36/1221
  40491. }
  40492. },
  40493. side: {
  40494. height: math.unit(5 + 7/12, "feet"),
  40495. weight: math.unit(2, "tons"),
  40496. name: "Side",
  40497. image: {
  40498. source: "./media/characters/erdno/side.svg",
  40499. extra: 1191/1144,
  40500. bottom: 40/1231
  40501. }
  40502. },
  40503. back: {
  40504. height: math.unit(5 + 7/12, "feet"),
  40505. weight: math.unit(2, "tons"),
  40506. name: "Back",
  40507. image: {
  40508. source: "./media/characters/erdno/back.svg",
  40509. extra: 1202/1146,
  40510. bottom: 17/1219
  40511. }
  40512. },
  40513. frontNsfw: {
  40514. height: math.unit(5 + 7/12, "feet"),
  40515. weight: math.unit(2, "tons"),
  40516. name: "Front (NSFW)",
  40517. image: {
  40518. source: "./media/characters/erdno/front-nsfw.svg",
  40519. extra: 1234/1129,
  40520. bottom: 35/1269
  40521. }
  40522. },
  40523. angledNsfw: {
  40524. height: math.unit(5 + 7/12, "feet"),
  40525. weight: math.unit(2, "tons"),
  40526. name: "Angled (NSFW)",
  40527. image: {
  40528. source: "./media/characters/erdno/angled-nsfw.svg",
  40529. extra: 1185/1139,
  40530. bottom: 36/1221
  40531. }
  40532. },
  40533. sideNsfw: {
  40534. height: math.unit(5 + 7/12, "feet"),
  40535. weight: math.unit(2, "tons"),
  40536. name: "Side (NSFW)",
  40537. image: {
  40538. source: "./media/characters/erdno/side-nsfw.svg",
  40539. extra: 1191/1144,
  40540. bottom: 40/1231
  40541. }
  40542. },
  40543. backNsfw: {
  40544. height: math.unit(5 + 7/12, "feet"),
  40545. weight: math.unit(2, "tons"),
  40546. name: "Back (NSFW)",
  40547. image: {
  40548. source: "./media/characters/erdno/back-nsfw.svg",
  40549. extra: 1202/1146,
  40550. bottom: 17/1219
  40551. }
  40552. },
  40553. frontHyper: {
  40554. height: math.unit(5 + 7/12, "feet"),
  40555. weight: math.unit(2, "tons"),
  40556. name: "Front (Hyper)",
  40557. image: {
  40558. source: "./media/characters/erdno/front-hyper.svg",
  40559. extra: 1298/1136,
  40560. bottom: 35/1333
  40561. }
  40562. },
  40563. },
  40564. [
  40565. {
  40566. name: "Normal",
  40567. height: math.unit(5 + 7/12, "feet"),
  40568. default: true
  40569. },
  40570. {
  40571. name: "Big",
  40572. height: math.unit(5.7, "meters")
  40573. },
  40574. {
  40575. name: "Macro",
  40576. height: math.unit(5.7, "kilometers")
  40577. },
  40578. {
  40579. name: "Megamacro",
  40580. height: math.unit(5.7, "earths")
  40581. },
  40582. ]
  40583. ))
  40584. characterMakers.push(() => makeCharacter(
  40585. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  40586. {
  40587. front: {
  40588. height: math.unit(5 + 10/12, "feet"),
  40589. weight: math.unit(150, "lb"),
  40590. name: "Front",
  40591. image: {
  40592. source: "./media/characters/jamie/front.svg",
  40593. extra: 1908/1768,
  40594. bottom: 19/1927
  40595. }
  40596. },
  40597. },
  40598. [
  40599. {
  40600. name: "Minimum",
  40601. height: math.unit(2, "cm")
  40602. },
  40603. {
  40604. name: "Micro",
  40605. height: math.unit(3, "inches")
  40606. },
  40607. {
  40608. name: "Normal",
  40609. height: math.unit(5 + 10/12, "feet"),
  40610. default: true
  40611. },
  40612. {
  40613. name: "Macro",
  40614. height: math.unit(150, "feet")
  40615. },
  40616. {
  40617. name: "Megamacro",
  40618. height: math.unit(10000, "m")
  40619. },
  40620. ]
  40621. ))
  40622. characterMakers.push(() => makeCharacter(
  40623. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40624. {
  40625. front: {
  40626. height: math.unit(2, "meters"),
  40627. weight: math.unit(100, "kg"),
  40628. name: "Front",
  40629. image: {
  40630. source: "./media/characters/shiron/front.svg",
  40631. extra: 2103/1985,
  40632. bottom: 98/2201
  40633. }
  40634. },
  40635. back: {
  40636. height: math.unit(2, "meters"),
  40637. weight: math.unit(100, "kg"),
  40638. name: "Back",
  40639. image: {
  40640. source: "./media/characters/shiron/back.svg",
  40641. extra: 2110/2015,
  40642. bottom: 89/2199
  40643. }
  40644. },
  40645. hand: {
  40646. height: math.unit(0.96, "feet"),
  40647. name: "Hand",
  40648. image: {
  40649. source: "./media/characters/shiron/hand.svg"
  40650. }
  40651. },
  40652. foot: {
  40653. height: math.unit(1.464, "feet"),
  40654. name: "Foot",
  40655. image: {
  40656. source: "./media/characters/shiron/foot.svg"
  40657. }
  40658. },
  40659. },
  40660. [
  40661. {
  40662. name: "Normal",
  40663. height: math.unit(2, "meters")
  40664. },
  40665. {
  40666. name: "Macro",
  40667. height: math.unit(500, "meters"),
  40668. default: true
  40669. },
  40670. {
  40671. name: "Megamacro",
  40672. height: math.unit(20, "km")
  40673. },
  40674. ]
  40675. ))
  40676. characterMakers.push(() => makeCharacter(
  40677. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  40678. {
  40679. front: {
  40680. height: math.unit(6, "feet"),
  40681. name: "Front",
  40682. image: {
  40683. source: "./media/characters/sam/front.svg",
  40684. extra: 849/826,
  40685. bottom: 19/868
  40686. }
  40687. },
  40688. },
  40689. [
  40690. {
  40691. name: "Normal",
  40692. height: math.unit(6, "feet"),
  40693. default: true
  40694. },
  40695. ]
  40696. ))
  40697. characterMakers.push(() => makeCharacter(
  40698. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  40699. {
  40700. front: {
  40701. height: math.unit(8 + 4/12, "feet"),
  40702. weight: math.unit(122, "kg"),
  40703. name: "Front",
  40704. image: {
  40705. source: "./media/characters/namori-kurogawa/front.svg",
  40706. extra: 1894/1576,
  40707. bottom: 34/1928
  40708. }
  40709. },
  40710. },
  40711. [
  40712. {
  40713. name: "Normal",
  40714. height: math.unit(8 + 4/12, "feet"),
  40715. default: true
  40716. },
  40717. ]
  40718. ))
  40719. characterMakers.push(() => makeCharacter(
  40720. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  40721. {
  40722. front: {
  40723. height: math.unit(9, "feet"),
  40724. weight: math.unit(621, "lb"),
  40725. name: "Front",
  40726. image: {
  40727. source: "./media/characters/unmru/front.svg",
  40728. extra: 1853/1747,
  40729. bottom: 73/1926
  40730. }
  40731. },
  40732. side: {
  40733. height: math.unit(9, "feet"),
  40734. weight: math.unit(621, "lb"),
  40735. name: "Side",
  40736. image: {
  40737. source: "./media/characters/unmru/side.svg",
  40738. extra: 1781/1671,
  40739. bottom: 127/1908
  40740. }
  40741. },
  40742. back: {
  40743. height: math.unit(9, "feet"),
  40744. weight: math.unit(621, "lb"),
  40745. name: "Back",
  40746. image: {
  40747. source: "./media/characters/unmru/back.svg",
  40748. extra: 1894/1765,
  40749. bottom: 75/1969
  40750. }
  40751. },
  40752. dick: {
  40753. height: math.unit(3, "feet"),
  40754. weight: math.unit(35, "lb"),
  40755. name: "Dick",
  40756. image: {
  40757. source: "./media/characters/unmru/dick.svg"
  40758. }
  40759. },
  40760. },
  40761. [
  40762. {
  40763. name: "Normal",
  40764. height: math.unit(9, "feet")
  40765. },
  40766. {
  40767. name: "Natural",
  40768. height: math.unit(27, "feet"),
  40769. default: true
  40770. },
  40771. {
  40772. name: "Giant",
  40773. height: math.unit(90, "feet")
  40774. },
  40775. {
  40776. name: "Kaiju",
  40777. height: math.unit(270, "feet")
  40778. },
  40779. {
  40780. name: "Macro",
  40781. height: math.unit(900, "feet")
  40782. },
  40783. {
  40784. name: "Macro+",
  40785. height: math.unit(2700, "feet")
  40786. },
  40787. {
  40788. name: "Megamacro",
  40789. height: math.unit(9000, "feet")
  40790. },
  40791. {
  40792. name: "City-Crushing",
  40793. height: math.unit(27000, "feet")
  40794. },
  40795. {
  40796. name: "Mountain-Mashing",
  40797. height: math.unit(90000, "feet")
  40798. },
  40799. {
  40800. name: "Earth-Eclipsing",
  40801. height: math.unit(2.7e8, "feet")
  40802. },
  40803. {
  40804. name: "Sol-Swallowing",
  40805. height: math.unit(9e10, "feet")
  40806. },
  40807. {
  40808. name: "Majoris-Munching",
  40809. height: math.unit(2.7e13, "feet")
  40810. },
  40811. ]
  40812. ))
  40813. characterMakers.push(() => makeCharacter(
  40814. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40815. {
  40816. front: {
  40817. height: math.unit(1, "inch"),
  40818. name: "Front",
  40819. image: {
  40820. source: "./media/characters/squeaks-mouse/front.svg",
  40821. extra: 352/308,
  40822. bottom: 25/377
  40823. }
  40824. },
  40825. },
  40826. [
  40827. {
  40828. name: "Micro",
  40829. height: math.unit(1, "inch"),
  40830. default: true
  40831. },
  40832. ]
  40833. ))
  40834. characterMakers.push(() => makeCharacter(
  40835. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40836. {
  40837. side: {
  40838. height: math.unit(35, "feet"),
  40839. name: "Side",
  40840. image: {
  40841. source: "./media/characters/sayko/side.svg",
  40842. extra: 1697/1021,
  40843. bottom: 82/1779
  40844. }
  40845. },
  40846. head: {
  40847. height: math.unit(16, "feet"),
  40848. name: "Head",
  40849. image: {
  40850. source: "./media/characters/sayko/head.svg"
  40851. }
  40852. },
  40853. forepaw: {
  40854. height: math.unit(7.85, "feet"),
  40855. name: "Forepaw",
  40856. image: {
  40857. source: "./media/characters/sayko/forepaw.svg"
  40858. }
  40859. },
  40860. hindpaw: {
  40861. height: math.unit(8.8, "feet"),
  40862. name: "Hindpaw",
  40863. image: {
  40864. source: "./media/characters/sayko/hindpaw.svg"
  40865. }
  40866. },
  40867. },
  40868. [
  40869. {
  40870. name: "Normal",
  40871. height: math.unit(35, "feet"),
  40872. default: true
  40873. },
  40874. {
  40875. name: "Colossus",
  40876. height: math.unit(100, "meters")
  40877. },
  40878. {
  40879. name: "\"Small\" Deity",
  40880. height: math.unit(1, "km")
  40881. },
  40882. {
  40883. name: "\"Large\" Deity",
  40884. height: math.unit(15, "km")
  40885. },
  40886. ]
  40887. ))
  40888. characterMakers.push(() => makeCharacter(
  40889. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40890. {
  40891. front: {
  40892. height: math.unit(6, "feet"),
  40893. weight: math.unit(250, "lb"),
  40894. name: "Front",
  40895. image: {
  40896. source: "./media/characters/mukiro/front.svg",
  40897. extra: 1368/1310,
  40898. bottom: 34/1402
  40899. }
  40900. },
  40901. },
  40902. [
  40903. {
  40904. name: "Normal",
  40905. height: math.unit(6, "feet"),
  40906. default: true
  40907. },
  40908. ]
  40909. ))
  40910. characterMakers.push(() => makeCharacter(
  40911. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40912. {
  40913. front: {
  40914. height: math.unit(12 + 4/12, "feet"),
  40915. name: "Front",
  40916. image: {
  40917. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40918. extra: 1346/1311,
  40919. bottom: 65/1411
  40920. }
  40921. },
  40922. },
  40923. [
  40924. {
  40925. name: "Base",
  40926. height: math.unit(12 + 4/12, "feet"),
  40927. default: true
  40928. },
  40929. {
  40930. name: "Macro",
  40931. height: math.unit(150, "feet")
  40932. },
  40933. {
  40934. name: "Mega",
  40935. height: math.unit(2, "miles")
  40936. },
  40937. {
  40938. name: "Demi God",
  40939. height: math.unit(4, "AU")
  40940. },
  40941. {
  40942. name: "God Size",
  40943. height: math.unit(1, "universe")
  40944. },
  40945. ]
  40946. ))
  40947. characterMakers.push(() => makeCharacter(
  40948. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40949. {
  40950. front: {
  40951. height: math.unit(3 + 3/12, "feet"),
  40952. weight: math.unit(88, "lb"),
  40953. name: "Front",
  40954. image: {
  40955. source: "./media/characters/trey/front.svg",
  40956. extra: 1815/1509,
  40957. bottom: 60/1875
  40958. }
  40959. },
  40960. },
  40961. [
  40962. {
  40963. name: "Normal",
  40964. height: math.unit(3 + 3/12, "feet"),
  40965. default: true
  40966. },
  40967. ]
  40968. ))
  40969. characterMakers.push(() => makeCharacter(
  40970. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40971. {
  40972. front: {
  40973. height: math.unit(4, "meters"),
  40974. name: "Front",
  40975. image: {
  40976. source: "./media/characters/adelonda/front.svg",
  40977. extra: 1077/982,
  40978. bottom: 39/1116
  40979. }
  40980. },
  40981. back: {
  40982. height: math.unit(4, "meters"),
  40983. name: "Back",
  40984. image: {
  40985. source: "./media/characters/adelonda/back.svg",
  40986. extra: 1105/1003,
  40987. bottom: 25/1130
  40988. }
  40989. },
  40990. feral: {
  40991. height: math.unit(40/1.5, "meters"),
  40992. name: "Feral",
  40993. image: {
  40994. source: "./media/characters/adelonda/feral.svg",
  40995. extra: 597/271,
  40996. bottom: 387/984
  40997. }
  40998. },
  40999. },
  41000. [
  41001. {
  41002. name: "Normal",
  41003. height: math.unit(4, "meters"),
  41004. default: true
  41005. },
  41006. ]
  41007. ))
  41008. characterMakers.push(() => makeCharacter(
  41009. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  41010. {
  41011. front: {
  41012. height: math.unit(8 + 4/12, "feet"),
  41013. weight: math.unit(670, "lb"),
  41014. name: "Front",
  41015. image: {
  41016. source: "./media/characters/acadiel/front.svg",
  41017. extra: 1901/1595,
  41018. bottom: 142/2043
  41019. }
  41020. },
  41021. },
  41022. [
  41023. {
  41024. name: "Normal",
  41025. height: math.unit(8 + 4/12, "feet"),
  41026. default: true
  41027. },
  41028. {
  41029. name: "Macro",
  41030. height: math.unit(200, "feet")
  41031. },
  41032. ]
  41033. ))
  41034. characterMakers.push(() => makeCharacter(
  41035. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  41036. {
  41037. front: {
  41038. height: math.unit(6 + 2/12, "feet"),
  41039. weight: math.unit(185, "lb"),
  41040. name: "Front",
  41041. image: {
  41042. source: "./media/characters/kayne-ein/front.svg",
  41043. extra: 1780/1560,
  41044. bottom: 81/1861
  41045. }
  41046. },
  41047. },
  41048. [
  41049. {
  41050. name: "Normal",
  41051. height: math.unit(6 + 2/12, "feet"),
  41052. default: true
  41053. },
  41054. {
  41055. name: "Transformation Stage",
  41056. height: math.unit(15, "feet")
  41057. },
  41058. {
  41059. name: "Macro",
  41060. height: math.unit(150, "feet")
  41061. },
  41062. {
  41063. name: "Earth's Shadow",
  41064. height: math.unit(6200, "miles")
  41065. },
  41066. {
  41067. name: "Universal Demon",
  41068. height: math.unit(28e9, "parsecs")
  41069. },
  41070. {
  41071. name: "Multiverse God",
  41072. height: math.unit(3, "multiverses")
  41073. },
  41074. ]
  41075. ))
  41076. characterMakers.push(() => makeCharacter(
  41077. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  41078. {
  41079. front: {
  41080. height: math.unit(5 + 5/12, "feet"),
  41081. name: "Front",
  41082. image: {
  41083. source: "./media/characters/fawn/front.svg",
  41084. extra: 1873/1731,
  41085. bottom: 95/1968
  41086. }
  41087. },
  41088. back: {
  41089. height: math.unit(5 + 5/12, "feet"),
  41090. name: "Back",
  41091. image: {
  41092. source: "./media/characters/fawn/back.svg",
  41093. extra: 1813/1700,
  41094. bottom: 14/1827
  41095. }
  41096. },
  41097. hoof: {
  41098. height: math.unit(1.45, "feet"),
  41099. name: "Hoof",
  41100. image: {
  41101. source: "./media/characters/fawn/hoof.svg"
  41102. }
  41103. },
  41104. },
  41105. [
  41106. {
  41107. name: "Normal",
  41108. height: math.unit(5 + 5/12, "feet"),
  41109. default: true
  41110. },
  41111. ]
  41112. ))
  41113. characterMakers.push(() => makeCharacter(
  41114. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  41115. {
  41116. front: {
  41117. height: math.unit(2 + 5/12, "feet"),
  41118. name: "Front",
  41119. image: {
  41120. source: "./media/characters/orion/front.svg",
  41121. extra: 1366/1304,
  41122. bottom: 43/1409
  41123. }
  41124. },
  41125. paw: {
  41126. height: math.unit(0.52, "feet"),
  41127. name: "Paw",
  41128. image: {
  41129. source: "./media/characters/orion/paw.svg"
  41130. }
  41131. },
  41132. },
  41133. [
  41134. {
  41135. name: "Normal",
  41136. height: math.unit(2 + 5/12, "feet"),
  41137. default: true
  41138. },
  41139. ]
  41140. ))
  41141. characterMakers.push(() => makeCharacter(
  41142. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  41143. {
  41144. front: {
  41145. height: math.unit(5 + 10/12, "feet"),
  41146. name: "Front",
  41147. image: {
  41148. source: "./media/characters/vera/front.svg",
  41149. extra: 1680/1575,
  41150. bottom: 49/1729
  41151. }
  41152. },
  41153. back: {
  41154. height: math.unit(5 + 10/12, "feet"),
  41155. name: "Back",
  41156. image: {
  41157. source: "./media/characters/vera/back.svg",
  41158. extra: 1700/1588,
  41159. bottom: 18/1718
  41160. }
  41161. },
  41162. arcanine: {
  41163. height: math.unit(6 + 8/12, "feet"),
  41164. name: "Arcanine",
  41165. image: {
  41166. source: "./media/characters/vera/arcanine.svg",
  41167. extra: 1590/1511,
  41168. bottom: 71/1661
  41169. }
  41170. },
  41171. maw: {
  41172. height: math.unit(0.82, "feet"),
  41173. name: "Maw",
  41174. image: {
  41175. source: "./media/characters/vera/maw.svg"
  41176. }
  41177. },
  41178. mawArcanine: {
  41179. height: math.unit(0.97, "feet"),
  41180. name: "Maw (Arcanine)",
  41181. image: {
  41182. source: "./media/characters/vera/maw-arcanine.svg"
  41183. }
  41184. },
  41185. paw: {
  41186. height: math.unit(0.75, "feet"),
  41187. name: "Paw",
  41188. image: {
  41189. source: "./media/characters/vera/paw.svg"
  41190. }
  41191. },
  41192. pawprint: {
  41193. height: math.unit(0.52, "feet"),
  41194. name: "Pawprint",
  41195. image: {
  41196. source: "./media/characters/vera/pawprint.svg"
  41197. }
  41198. },
  41199. },
  41200. [
  41201. {
  41202. name: "Normal",
  41203. height: math.unit(5 + 10/12, "feet"),
  41204. default: true
  41205. },
  41206. {
  41207. name: "Macro",
  41208. height: math.unit(75, "feet")
  41209. },
  41210. ]
  41211. ))
  41212. characterMakers.push(() => makeCharacter(
  41213. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  41214. {
  41215. front: {
  41216. height: math.unit(4, "feet"),
  41217. weight: math.unit(40, "lb"),
  41218. name: "Front",
  41219. image: {
  41220. source: "./media/characters/orvan-rabbit/front.svg",
  41221. extra: 1896/1642,
  41222. bottom: 29/1925
  41223. }
  41224. },
  41225. },
  41226. [
  41227. {
  41228. name: "Normal",
  41229. height: math.unit(4, "feet"),
  41230. default: true
  41231. },
  41232. ]
  41233. ))
  41234. characterMakers.push(() => makeCharacter(
  41235. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  41236. {
  41237. front: {
  41238. height: math.unit(6, "feet"),
  41239. weight: math.unit(168, "lb"),
  41240. name: "Front",
  41241. image: {
  41242. source: "./media/characters/lisa/front.svg",
  41243. extra: 2065/1867,
  41244. bottom: 46/2111
  41245. }
  41246. },
  41247. back: {
  41248. height: math.unit(6, "feet"),
  41249. weight: math.unit(168, "lb"),
  41250. name: "Back",
  41251. image: {
  41252. source: "./media/characters/lisa/back.svg",
  41253. extra: 1982/1838,
  41254. bottom: 29/2011
  41255. }
  41256. },
  41257. maw: {
  41258. height: math.unit(0.81, "feet"),
  41259. name: "Maw",
  41260. image: {
  41261. source: "./media/characters/lisa/maw.svg"
  41262. }
  41263. },
  41264. paw: {
  41265. height: math.unit(0.9, "feet"),
  41266. name: "Paw",
  41267. image: {
  41268. source: "./media/characters/lisa/paw.svg"
  41269. }
  41270. },
  41271. caribousune: {
  41272. height: math.unit(7 + 2/12, "feet"),
  41273. weight: math.unit(268, "lb"),
  41274. name: "Caribousune",
  41275. image: {
  41276. source: "./media/characters/lisa/caribousune.svg",
  41277. extra: 1843/1633,
  41278. bottom: 29/1872
  41279. }
  41280. },
  41281. frontCaribousune: {
  41282. height: math.unit(7 + 2/12, "feet"),
  41283. weight: math.unit(268, "lb"),
  41284. name: "Front (Caribousune)",
  41285. image: {
  41286. source: "./media/characters/lisa/front-caribousune.svg",
  41287. extra: 1818/1638,
  41288. bottom: 52/1870
  41289. }
  41290. },
  41291. sideCaribousune: {
  41292. height: math.unit(7 + 2/12, "feet"),
  41293. weight: math.unit(268, "lb"),
  41294. name: "Side (Caribousune)",
  41295. image: {
  41296. source: "./media/characters/lisa/side-caribousune.svg",
  41297. extra: 1851/1635,
  41298. bottom: 16/1867
  41299. }
  41300. },
  41301. backCaribousune: {
  41302. height: math.unit(7 + 2/12, "feet"),
  41303. weight: math.unit(268, "lb"),
  41304. name: "Back (Caribousune)",
  41305. image: {
  41306. source: "./media/characters/lisa/back-caribousune.svg",
  41307. extra: 1801/1604,
  41308. bottom: 44/1845
  41309. }
  41310. },
  41311. caribou: {
  41312. height: math.unit(7 + 2/12, "feet"),
  41313. weight: math.unit(268, "lb"),
  41314. name: "Caribou",
  41315. image: {
  41316. source: "./media/characters/lisa/caribou.svg",
  41317. extra: 1843/1633,
  41318. bottom: 29/1872
  41319. }
  41320. },
  41321. frontCaribou: {
  41322. height: math.unit(7 + 2/12, "feet"),
  41323. weight: math.unit(268, "lb"),
  41324. name: "Front (Caribou)",
  41325. image: {
  41326. source: "./media/characters/lisa/front-caribou.svg",
  41327. extra: 1818/1638,
  41328. bottom: 52/1870
  41329. }
  41330. },
  41331. sideCaribou: {
  41332. height: math.unit(7 + 2/12, "feet"),
  41333. weight: math.unit(268, "lb"),
  41334. name: "Side (Caribou)",
  41335. image: {
  41336. source: "./media/characters/lisa/side-caribou.svg",
  41337. extra: 1851/1635,
  41338. bottom: 16/1867
  41339. }
  41340. },
  41341. backCaribou: {
  41342. height: math.unit(7 + 2/12, "feet"),
  41343. weight: math.unit(268, "lb"),
  41344. name: "Back (Caribou)",
  41345. image: {
  41346. source: "./media/characters/lisa/back-caribou.svg",
  41347. extra: 1801/1604,
  41348. bottom: 44/1845
  41349. }
  41350. },
  41351. mawCaribou: {
  41352. height: math.unit(1.45, "feet"),
  41353. name: "Maw (Caribou)",
  41354. image: {
  41355. source: "./media/characters/lisa/maw-caribou.svg"
  41356. }
  41357. },
  41358. mawCaribousune: {
  41359. height: math.unit(1.45, "feet"),
  41360. name: "Maw (Caribousune)",
  41361. image: {
  41362. source: "./media/characters/lisa/maw-caribousune.svg"
  41363. }
  41364. },
  41365. pawCaribousune: {
  41366. height: math.unit(1.61, "feet"),
  41367. name: "Paw (Caribou)",
  41368. image: {
  41369. source: "./media/characters/lisa/paw-caribousune.svg"
  41370. }
  41371. },
  41372. },
  41373. [
  41374. {
  41375. name: "Normal",
  41376. height: math.unit(6, "feet")
  41377. },
  41378. {
  41379. name: "God Size",
  41380. height: math.unit(72, "feet"),
  41381. default: true
  41382. },
  41383. {
  41384. name: "Towering",
  41385. height: math.unit(288, "feet")
  41386. },
  41387. {
  41388. name: "City Size",
  41389. height: math.unit(48384, "feet")
  41390. },
  41391. {
  41392. name: "Continental",
  41393. height: math.unit(4200, "miles")
  41394. },
  41395. {
  41396. name: "Planet Eater",
  41397. height: math.unit(42, "earths")
  41398. },
  41399. {
  41400. name: "Star Swallower",
  41401. height: math.unit(42, "solarradii")
  41402. },
  41403. {
  41404. name: "System Swallower",
  41405. height: math.unit(84000, "AU")
  41406. },
  41407. {
  41408. name: "Galaxy Gobbler",
  41409. height: math.unit(42, "galaxies")
  41410. },
  41411. {
  41412. name: "Universe Devourer",
  41413. height: math.unit(42, "universes")
  41414. },
  41415. {
  41416. name: "Multiverse Muncher",
  41417. height: math.unit(42, "multiverses")
  41418. },
  41419. ]
  41420. ))
  41421. characterMakers.push(() => makeCharacter(
  41422. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  41423. {
  41424. front: {
  41425. height: math.unit(36, "feet"),
  41426. name: "Front",
  41427. image: {
  41428. source: "./media/characters/shadow-rat/front.svg",
  41429. extra: 1845/1758,
  41430. bottom: 83/1928
  41431. }
  41432. },
  41433. },
  41434. [
  41435. {
  41436. name: "Macro",
  41437. height: math.unit(36, "feet"),
  41438. default: true
  41439. },
  41440. ]
  41441. ))
  41442. characterMakers.push(() => makeCharacter(
  41443. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  41444. {
  41445. side: {
  41446. height: math.unit(8, "feet"),
  41447. weight: math.unit(2630, "lb"),
  41448. name: "Side",
  41449. image: {
  41450. source: "./media/characters/torallia/side.svg",
  41451. extra: 2164/2021,
  41452. bottom: 371/2535
  41453. }
  41454. },
  41455. },
  41456. [
  41457. {
  41458. name: "Mortal Interaction",
  41459. height: math.unit(8, "feet")
  41460. },
  41461. {
  41462. name: "Natural",
  41463. height: math.unit(24, "feet"),
  41464. default: true
  41465. },
  41466. {
  41467. name: "Giant",
  41468. height: math.unit(80, "feet")
  41469. },
  41470. {
  41471. name: "Kaiju",
  41472. height: math.unit(240, "feet")
  41473. },
  41474. {
  41475. name: "Macro",
  41476. height: math.unit(800, "feet")
  41477. },
  41478. {
  41479. name: "Macro+",
  41480. height: math.unit(2400, "feet")
  41481. },
  41482. {
  41483. name: "Macro++",
  41484. height: math.unit(8000, "feet")
  41485. },
  41486. {
  41487. name: "City-Crushing",
  41488. height: math.unit(24000, "feet")
  41489. },
  41490. {
  41491. name: "Mountain-Mashing",
  41492. height: math.unit(80000, "feet")
  41493. },
  41494. {
  41495. name: "District Demolisher",
  41496. height: math.unit(240000, "feet")
  41497. },
  41498. {
  41499. name: "Tri-County Terror",
  41500. height: math.unit(800000, "feet")
  41501. },
  41502. {
  41503. name: "State Smasher",
  41504. height: math.unit(2.4e6, "feet")
  41505. },
  41506. {
  41507. name: "Nation Nemesis",
  41508. height: math.unit(8e6, "feet")
  41509. },
  41510. {
  41511. name: "Continent Cracker",
  41512. height: math.unit(2.4e7, "feet")
  41513. },
  41514. {
  41515. name: "Planet-Pillaging",
  41516. height: math.unit(8e7, "feet")
  41517. },
  41518. {
  41519. name: "Earth-Eclipsing",
  41520. height: math.unit(2.4e8, "feet")
  41521. },
  41522. {
  41523. name: "Jovian-Jostling",
  41524. height: math.unit(8e8, "feet")
  41525. },
  41526. {
  41527. name: "Gas Giant Gulper",
  41528. height: math.unit(2.4e9, "feet")
  41529. },
  41530. {
  41531. name: "Astral Annihilator",
  41532. height: math.unit(8e9, "feet")
  41533. },
  41534. {
  41535. name: "Celestial Conqueror",
  41536. height: math.unit(2.4e10, "feet")
  41537. },
  41538. {
  41539. name: "Sol-Swallowing",
  41540. height: math.unit(8e10, "feet")
  41541. },
  41542. {
  41543. name: "Hunter of the Heavens",
  41544. height: math.unit(2.4e13, "feet")
  41545. },
  41546. ]
  41547. ))
  41548. characterMakers.push(() => makeCharacter(
  41549. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  41550. {
  41551. front: {
  41552. height: math.unit(10, "feet"),
  41553. weight: math.unit(844, "kilograms"),
  41554. name: "Front",
  41555. image: {
  41556. source: "./media/characters/rebecca-pawlson/front.svg",
  41557. extra: 1196/1099,
  41558. bottom: 81/1277
  41559. },
  41560. extraAttributes: {
  41561. "pawSize": {
  41562. name: "Paw Size",
  41563. power: 2,
  41564. type: "area",
  41565. base: math.unit(0.2 * 0.375, "meters^2")
  41566. },
  41567. "handSize": {
  41568. name: "Hand Size",
  41569. power: 2,
  41570. type: "area",
  41571. base: math.unit(0.2 * 0.35, "meters^2")
  41572. },
  41573. "breastDiameter": {
  41574. name: "Breast Diameter",
  41575. power: 1,
  41576. type: "length",
  41577. base: math.unit(0.5, "meters")
  41578. },
  41579. "breastVolume": {
  41580. name: "Breast Volume",
  41581. power: 3,
  41582. type: "volume",
  41583. base: math.unit(0.065, "m^3")
  41584. },
  41585. "breastMass": {
  41586. name: "Breast Mass",
  41587. power: 3,
  41588. type: "mass",
  41589. base: math.unit(65, "kg")
  41590. },
  41591. "nippleDiameter": {
  41592. name: "Nipple Diameter",
  41593. power: 1,
  41594. type: "length",
  41595. base: math.unit(0.1, "meters")
  41596. },
  41597. }
  41598. },
  41599. back: {
  41600. height: math.unit(10, "feet"),
  41601. weight: math.unit(844, "kilograms"),
  41602. name: "Back",
  41603. image: {
  41604. source: "./media/characters/rebecca-pawlson/back.svg",
  41605. extra: 879/776,
  41606. bottom: 43/922
  41607. },
  41608. extraAttributes: {
  41609. "pawSize": {
  41610. name: "Paw Size",
  41611. power: 2,
  41612. type: "area",
  41613. base: math.unit(0.2 * 0.375, "meters^2")
  41614. },
  41615. "handSize": {
  41616. name: "Hand Size",
  41617. power: 2,
  41618. type: "area",
  41619. base: math.unit(0.2 * 0.35, "meters^2")
  41620. },
  41621. "breastDiameter": {
  41622. name: "Breast Diameter",
  41623. power: 1,
  41624. type: "length",
  41625. base: math.unit(0.5, "meters")
  41626. },
  41627. "breastVolume": {
  41628. name: "Breast Volume",
  41629. power: 3,
  41630. type: "volume",
  41631. base: math.unit(0.065, "m^3")
  41632. },
  41633. "breastMass": {
  41634. name: "Breast Mass",
  41635. power: 3,
  41636. type: "mass",
  41637. base: math.unit(65, "kg")
  41638. },
  41639. "nippleDiameter": {
  41640. name: "Nipple Diameter",
  41641. power: 1,
  41642. type: "length",
  41643. base: math.unit(0.1, "meters")
  41644. },
  41645. }
  41646. },
  41647. },
  41648. [
  41649. {
  41650. name: "Normal",
  41651. height: math.unit(6 + 8/12, "feet")
  41652. },
  41653. {
  41654. name: "Mini Macro",
  41655. height: math.unit(10, "feet"),
  41656. default: true
  41657. },
  41658. {
  41659. name: "Macro",
  41660. height: math.unit(100, "feet")
  41661. },
  41662. {
  41663. name: "Mega Macro",
  41664. height: math.unit(2500, "feet")
  41665. },
  41666. {
  41667. name: "Giga Macro",
  41668. height: math.unit(50, "miles")
  41669. },
  41670. ]
  41671. ))
  41672. characterMakers.push(() => makeCharacter(
  41673. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  41674. {
  41675. front: {
  41676. height: math.unit(7 + 6/12, "feet"),
  41677. weight: math.unit(600, "lb"),
  41678. name: "Front",
  41679. image: {
  41680. source: "./media/characters/moxie-nova/front.svg",
  41681. extra: 1734/1652,
  41682. bottom: 41/1775
  41683. }
  41684. },
  41685. },
  41686. [
  41687. {
  41688. name: "Normal",
  41689. height: math.unit(7 + 6/12, "feet"),
  41690. default: true
  41691. },
  41692. ]
  41693. ))
  41694. characterMakers.push(() => makeCharacter(
  41695. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  41696. {
  41697. goat: {
  41698. height: math.unit(4, "feet"),
  41699. weight: math.unit(180, "lb"),
  41700. name: "Goat",
  41701. image: {
  41702. source: "./media/characters/tiffany/goat.svg",
  41703. extra: 1845/1595,
  41704. bottom: 106/1951
  41705. }
  41706. },
  41707. front: {
  41708. height: math.unit(5, "feet"),
  41709. weight: math.unit(150, "lb"),
  41710. name: "Foxcoon",
  41711. image: {
  41712. source: "./media/characters/tiffany/foxcoon.svg",
  41713. extra: 1941/1845,
  41714. bottom: 58/1999
  41715. }
  41716. },
  41717. },
  41718. [
  41719. {
  41720. name: "Normal",
  41721. height: math.unit(5, "feet"),
  41722. default: true
  41723. },
  41724. ]
  41725. ))
  41726. characterMakers.push(() => makeCharacter(
  41727. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  41728. {
  41729. front: {
  41730. height: math.unit(8, "feet"),
  41731. weight: math.unit(300, "lb"),
  41732. name: "Front",
  41733. image: {
  41734. source: "./media/characters/raxinath/front.svg",
  41735. extra: 1407/1309,
  41736. bottom: 39/1446
  41737. }
  41738. },
  41739. back: {
  41740. height: math.unit(8, "feet"),
  41741. weight: math.unit(300, "lb"),
  41742. name: "Back",
  41743. image: {
  41744. source: "./media/characters/raxinath/back.svg",
  41745. extra: 1405/1315,
  41746. bottom: 9/1414
  41747. }
  41748. },
  41749. },
  41750. [
  41751. {
  41752. name: "Speck",
  41753. height: math.unit(0.5, "nm")
  41754. },
  41755. {
  41756. name: "Micro",
  41757. height: math.unit(3, "inches")
  41758. },
  41759. {
  41760. name: "Kobold",
  41761. height: math.unit(3, "feet")
  41762. },
  41763. {
  41764. name: "Normal",
  41765. height: math.unit(8, "feet"),
  41766. default: true
  41767. },
  41768. {
  41769. name: "Giant",
  41770. height: math.unit(50, "feet")
  41771. },
  41772. {
  41773. name: "Macro",
  41774. height: math.unit(1000, "feet")
  41775. },
  41776. {
  41777. name: "Megamacro",
  41778. height: math.unit(1, "mile")
  41779. },
  41780. ]
  41781. ))
  41782. characterMakers.push(() => makeCharacter(
  41783. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  41784. {
  41785. front: {
  41786. height: math.unit(10, "feet"),
  41787. weight: math.unit(1442, "lb"),
  41788. name: "Front",
  41789. image: {
  41790. source: "./media/characters/mal-dragon/front.svg",
  41791. extra: 1515/1444,
  41792. bottom: 113/1628
  41793. }
  41794. },
  41795. back: {
  41796. height: math.unit(10, "feet"),
  41797. weight: math.unit(1442, "lb"),
  41798. name: "Back",
  41799. image: {
  41800. source: "./media/characters/mal-dragon/back.svg",
  41801. extra: 1527/1434,
  41802. bottom: 25/1552
  41803. }
  41804. },
  41805. },
  41806. [
  41807. {
  41808. name: "Mortal Interaction",
  41809. height: math.unit(10, "feet"),
  41810. default: true
  41811. },
  41812. {
  41813. name: "Large",
  41814. height: math.unit(30, "feet")
  41815. },
  41816. {
  41817. name: "Kaiju",
  41818. height: math.unit(300, "feet")
  41819. },
  41820. {
  41821. name: "Megamacro",
  41822. height: math.unit(10000, "feet")
  41823. },
  41824. {
  41825. name: "Continent Cracker",
  41826. height: math.unit(30000000, "feet")
  41827. },
  41828. {
  41829. name: "Sol-Swallowing",
  41830. height: math.unit(1e11, "feet")
  41831. },
  41832. {
  41833. name: "Light Universal",
  41834. height: math.unit(5, "universes")
  41835. },
  41836. {
  41837. name: "Universe Atoms",
  41838. height: math.unit(1.829e9, "universes")
  41839. },
  41840. {
  41841. name: "Light Multiversal",
  41842. height: math.unit(5, "multiverses")
  41843. },
  41844. {
  41845. name: "Multiverse Atoms",
  41846. height: math.unit(1.829e9, "multiverses")
  41847. },
  41848. {
  41849. name: "Fabric of Time",
  41850. height: math.unit(1e262, "multiverses")
  41851. },
  41852. ]
  41853. ))
  41854. characterMakers.push(() => makeCharacter(
  41855. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41856. {
  41857. front: {
  41858. height: math.unit(9, "feet"),
  41859. weight: math.unit(1050, "lb"),
  41860. name: "Front",
  41861. image: {
  41862. source: "./media/characters/tabitha/front.svg",
  41863. extra: 2083/1994,
  41864. bottom: 68/2151
  41865. }
  41866. },
  41867. },
  41868. [
  41869. {
  41870. name: "Baseline",
  41871. height: math.unit(9, "feet"),
  41872. default: true
  41873. },
  41874. {
  41875. name: "Giant",
  41876. height: math.unit(90, "feet")
  41877. },
  41878. {
  41879. name: "Macro",
  41880. height: math.unit(900, "feet")
  41881. },
  41882. {
  41883. name: "Megamacro",
  41884. height: math.unit(9000, "feet")
  41885. },
  41886. {
  41887. name: "City-Crushing",
  41888. height: math.unit(27000, "feet")
  41889. },
  41890. {
  41891. name: "Mountain-Mashing",
  41892. height: math.unit(90000, "feet")
  41893. },
  41894. {
  41895. name: "Nation Nemesis",
  41896. height: math.unit(9e6, "feet")
  41897. },
  41898. {
  41899. name: "Continent Cracker",
  41900. height: math.unit(27e6, "feet")
  41901. },
  41902. {
  41903. name: "Earth-Eclipsing",
  41904. height: math.unit(2.7e8, "feet")
  41905. },
  41906. {
  41907. name: "Gas Giant Gulper",
  41908. height: math.unit(2.7e9, "feet")
  41909. },
  41910. {
  41911. name: "Sol-Swallowing",
  41912. height: math.unit(9e10, "feet")
  41913. },
  41914. {
  41915. name: "Galaxy Gulper",
  41916. height: math.unit(9, "galaxies")
  41917. },
  41918. {
  41919. name: "Cosmos Churner",
  41920. height: math.unit(9, "universes")
  41921. },
  41922. ]
  41923. ))
  41924. characterMakers.push(() => makeCharacter(
  41925. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41926. {
  41927. front: {
  41928. height: math.unit(160, "cm"),
  41929. weight: math.unit(55, "kg"),
  41930. name: "Front",
  41931. image: {
  41932. source: "./media/characters/tow/front.svg",
  41933. extra: 1751/1722,
  41934. bottom: 74/1825
  41935. }
  41936. },
  41937. },
  41938. [
  41939. {
  41940. name: "Norm",
  41941. height: math.unit(160, "cm")
  41942. },
  41943. {
  41944. name: "Casual",
  41945. height: math.unit(3200, "m"),
  41946. default: true
  41947. },
  41948. {
  41949. name: "Show-Off",
  41950. height: math.unit(160, "km")
  41951. },
  41952. ]
  41953. ))
  41954. characterMakers.push(() => makeCharacter(
  41955. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41956. {
  41957. front: {
  41958. height: math.unit(7 + 11/12, "feet"),
  41959. weight: math.unit(342.8, "lb"),
  41960. name: "Front",
  41961. image: {
  41962. source: "./media/characters/vivian-orca-dragon/front.svg",
  41963. extra: 1890/1865,
  41964. bottom: 28/1918
  41965. }
  41966. },
  41967. },
  41968. [
  41969. {
  41970. name: "Micro",
  41971. height: math.unit(5, "inches")
  41972. },
  41973. {
  41974. name: "Normal",
  41975. height: math.unit(7 + 11/12, "feet"),
  41976. default: true
  41977. },
  41978. {
  41979. name: "Macro",
  41980. height: math.unit(395 + 7/12, "feet")
  41981. },
  41982. ]
  41983. ))
  41984. characterMakers.push(() => makeCharacter(
  41985. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41986. {
  41987. side: {
  41988. height: math.unit(10, "feet"),
  41989. weight: math.unit(1442, "lb"),
  41990. name: "Side",
  41991. image: {
  41992. source: "./media/characters/lotherakon/side.svg",
  41993. extra: 1604/1497,
  41994. bottom: 89/1693
  41995. }
  41996. },
  41997. },
  41998. [
  41999. {
  42000. name: "Mortal Interaction",
  42001. height: math.unit(10, "feet")
  42002. },
  42003. {
  42004. name: "Large",
  42005. height: math.unit(30, "feet"),
  42006. default: true
  42007. },
  42008. {
  42009. name: "Giant",
  42010. height: math.unit(100, "feet")
  42011. },
  42012. {
  42013. name: "Kaiju",
  42014. height: math.unit(300, "feet")
  42015. },
  42016. {
  42017. name: "Macro",
  42018. height: math.unit(1000, "feet")
  42019. },
  42020. {
  42021. name: "Macro+",
  42022. height: math.unit(3000, "feet")
  42023. },
  42024. {
  42025. name: "Megamacro",
  42026. height: math.unit(10000, "feet")
  42027. },
  42028. {
  42029. name: "City-Crushing",
  42030. height: math.unit(30000, "feet")
  42031. },
  42032. {
  42033. name: "Continent Cracker",
  42034. height: math.unit(30e6, "feet")
  42035. },
  42036. {
  42037. name: "Earth Eclipsing",
  42038. height: math.unit(3e8, "feet")
  42039. },
  42040. {
  42041. name: "Gas Giant Gulper",
  42042. height: math.unit(3e9, "feet")
  42043. },
  42044. {
  42045. name: "Sol-Swallowing",
  42046. height: math.unit(1e11, "feet")
  42047. },
  42048. {
  42049. name: "System Swallower",
  42050. height: math.unit(3e14, "feet")
  42051. },
  42052. {
  42053. name: "Galaxy Gulper",
  42054. height: math.unit(10, "galaxies")
  42055. },
  42056. {
  42057. name: "Light Universal",
  42058. height: math.unit(5, "universes")
  42059. },
  42060. {
  42061. name: "Universe Palm",
  42062. height: math.unit(20, "universes")
  42063. },
  42064. {
  42065. name: "Light Multiversal",
  42066. height: math.unit(5, "multiverses")
  42067. },
  42068. {
  42069. name: "Multiverse Palm",
  42070. height: math.unit(20, "multiverses")
  42071. },
  42072. {
  42073. name: "Inferno Incarnate",
  42074. height: math.unit(1e7, "multiverses")
  42075. },
  42076. ]
  42077. ))
  42078. characterMakers.push(() => makeCharacter(
  42079. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  42080. {
  42081. front: {
  42082. height: math.unit(8, "feet"),
  42083. weight: math.unit(1200, "lb"),
  42084. name: "Front",
  42085. image: {
  42086. source: "./media/characters/malithee/front.svg",
  42087. extra: 1675/1640,
  42088. bottom: 162/1837
  42089. }
  42090. },
  42091. },
  42092. [
  42093. {
  42094. name: "Mortal Interaction",
  42095. height: math.unit(8, "feet"),
  42096. default: true
  42097. },
  42098. {
  42099. name: "Large",
  42100. height: math.unit(24, "feet")
  42101. },
  42102. {
  42103. name: "Kaiju",
  42104. height: math.unit(240, "feet")
  42105. },
  42106. {
  42107. name: "Megamacro",
  42108. height: math.unit(8000, "feet")
  42109. },
  42110. {
  42111. name: "Continent Cracker",
  42112. height: math.unit(24e6, "feet")
  42113. },
  42114. {
  42115. name: "Earth-Eclipsing",
  42116. height: math.unit(2.4e8, "feet")
  42117. },
  42118. {
  42119. name: "Sol-Swallowing",
  42120. height: math.unit(8e10, "feet")
  42121. },
  42122. {
  42123. name: "Galaxy Gulper",
  42124. height: math.unit(8, "galaxies")
  42125. },
  42126. {
  42127. name: "Light Universal",
  42128. height: math.unit(4, "universes")
  42129. },
  42130. {
  42131. name: "Universe Atoms",
  42132. height: math.unit(1.829e9, "universes")
  42133. },
  42134. {
  42135. name: "Light Multiversal",
  42136. height: math.unit(4, "multiverses")
  42137. },
  42138. {
  42139. name: "Multiverse Atoms",
  42140. height: math.unit(1.829e9, "multiverses")
  42141. },
  42142. {
  42143. name: "Nigh-Omnipresence",
  42144. height: math.unit(8e261, "multiverses")
  42145. },
  42146. ]
  42147. ))
  42148. characterMakers.push(() => makeCharacter(
  42149. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  42150. {
  42151. front: {
  42152. height: math.unit(10, "feet"),
  42153. weight: math.unit(1500, "lb"),
  42154. name: "Front",
  42155. image: {
  42156. source: "./media/characters/miles-thestia/front.svg",
  42157. extra: 1812/1727,
  42158. bottom: 86/1898
  42159. }
  42160. },
  42161. back: {
  42162. height: math.unit(10, "feet"),
  42163. weight: math.unit(1500, "lb"),
  42164. name: "Back",
  42165. image: {
  42166. source: "./media/characters/miles-thestia/back.svg",
  42167. extra: 1799/1690,
  42168. bottom: 47/1846
  42169. }
  42170. },
  42171. frontNsfw: {
  42172. height: math.unit(10, "feet"),
  42173. weight: math.unit(1500, "lb"),
  42174. name: "Front (NSFW)",
  42175. image: {
  42176. source: "./media/characters/miles-thestia/front-nsfw.svg",
  42177. extra: 1812/1727,
  42178. bottom: 86/1898
  42179. }
  42180. },
  42181. },
  42182. [
  42183. {
  42184. name: "Mini-Macro",
  42185. height: math.unit(10, "feet"),
  42186. default: true
  42187. },
  42188. ]
  42189. ))
  42190. characterMakers.push(() => makeCharacter(
  42191. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  42192. {
  42193. front: {
  42194. height: math.unit(25, "feet"),
  42195. name: "Front",
  42196. image: {
  42197. source: "./media/characters/titan-s-wulf/front.svg",
  42198. extra: 1560/1484,
  42199. bottom: 76/1636
  42200. }
  42201. },
  42202. },
  42203. [
  42204. {
  42205. name: "Smallest",
  42206. height: math.unit(25, "feet"),
  42207. default: true
  42208. },
  42209. {
  42210. name: "Normal",
  42211. height: math.unit(200, "feet")
  42212. },
  42213. {
  42214. name: "Macro",
  42215. height: math.unit(200000, "feet")
  42216. },
  42217. {
  42218. name: "Multiversal Original",
  42219. height: math.unit(10000, "multiverses")
  42220. },
  42221. ]
  42222. ))
  42223. characterMakers.push(() => makeCharacter(
  42224. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  42225. {
  42226. front: {
  42227. height: math.unit(8, "feet"),
  42228. weight: math.unit(553, "lb"),
  42229. name: "Front",
  42230. image: {
  42231. source: "./media/characters/tawendeh/front.svg",
  42232. extra: 2365/2268,
  42233. bottom: 83/2448
  42234. }
  42235. },
  42236. frontClothed: {
  42237. height: math.unit(8, "feet"),
  42238. weight: math.unit(553, "lb"),
  42239. name: "Front (Clothed)",
  42240. image: {
  42241. source: "./media/characters/tawendeh/front-clothed.svg",
  42242. extra: 2365/2268,
  42243. bottom: 83/2448
  42244. }
  42245. },
  42246. back: {
  42247. height: math.unit(8, "feet"),
  42248. weight: math.unit(553, "lb"),
  42249. name: "Back",
  42250. image: {
  42251. source: "./media/characters/tawendeh/back.svg",
  42252. extra: 2397/2294,
  42253. bottom: 42/2439
  42254. }
  42255. },
  42256. },
  42257. [
  42258. {
  42259. name: "Mortal Interaction",
  42260. height: math.unit(8, "feet"),
  42261. default: true
  42262. },
  42263. {
  42264. name: "Giant",
  42265. height: math.unit(80, "feet")
  42266. },
  42267. {
  42268. name: "Macro",
  42269. height: math.unit(800, "feet")
  42270. },
  42271. {
  42272. name: "Megamacro",
  42273. height: math.unit(8000, "feet")
  42274. },
  42275. {
  42276. name: "City-Crushing",
  42277. height: math.unit(24000, "feet")
  42278. },
  42279. {
  42280. name: "Mountain-Mashing",
  42281. height: math.unit(80000, "feet")
  42282. },
  42283. {
  42284. name: "Nation Nemesis",
  42285. height: math.unit(8e6, "feet")
  42286. },
  42287. {
  42288. name: "Continent Cracker",
  42289. height: math.unit(24e6, "feet")
  42290. },
  42291. {
  42292. name: "Earth-Eclipsing",
  42293. height: math.unit(2.4e8, "feet")
  42294. },
  42295. {
  42296. name: "Gas Giant Gulper",
  42297. height: math.unit(2.4e9, "feet")
  42298. },
  42299. {
  42300. name: "Sol-Swallowing",
  42301. height: math.unit(8e10, "feet")
  42302. },
  42303. {
  42304. name: "Galaxy Gulper",
  42305. height: math.unit(8, "galaxies")
  42306. },
  42307. {
  42308. name: "Cosmos Churner",
  42309. height: math.unit(8, "universes")
  42310. },
  42311. {
  42312. name: "Omnipotent Otter",
  42313. height: math.unit(80, "universes")
  42314. },
  42315. ]
  42316. ))
  42317. characterMakers.push(() => makeCharacter(
  42318. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  42319. {
  42320. front: {
  42321. height: math.unit(2.6, "meters"),
  42322. weight: math.unit(900, "kg"),
  42323. name: "Front",
  42324. image: {
  42325. source: "./media/characters/neesha/front.svg",
  42326. extra: 1803/1653,
  42327. bottom: 128/1931
  42328. }
  42329. },
  42330. },
  42331. [
  42332. {
  42333. name: "Normal",
  42334. height: math.unit(2.6, "meters"),
  42335. default: true
  42336. },
  42337. {
  42338. name: "Macro",
  42339. height: math.unit(50, "meters")
  42340. },
  42341. ]
  42342. ))
  42343. characterMakers.push(() => makeCharacter(
  42344. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  42345. {
  42346. front: {
  42347. height: math.unit(5, "feet"),
  42348. weight: math.unit(185, "lb"),
  42349. name: "Front",
  42350. image: {
  42351. source: "./media/characters/kyera/front.svg",
  42352. extra: 1875/1790,
  42353. bottom: 96/1971
  42354. }
  42355. },
  42356. },
  42357. [
  42358. {
  42359. name: "Normal",
  42360. height: math.unit(5, "feet"),
  42361. default: true
  42362. },
  42363. ]
  42364. ))
  42365. characterMakers.push(() => makeCharacter(
  42366. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  42367. {
  42368. front: {
  42369. height: math.unit(7 + 6/12, "feet"),
  42370. weight: math.unit(540, "lb"),
  42371. name: "Front",
  42372. image: {
  42373. source: "./media/characters/yuko/front.svg",
  42374. extra: 1282/1222,
  42375. bottom: 101/1383
  42376. }
  42377. },
  42378. frontClothed: {
  42379. height: math.unit(7 + 6/12, "feet"),
  42380. weight: math.unit(540, "lb"),
  42381. name: "Front (Clothed)",
  42382. image: {
  42383. source: "./media/characters/yuko/front-clothed.svg",
  42384. extra: 1282/1222,
  42385. bottom: 101/1383
  42386. }
  42387. },
  42388. },
  42389. [
  42390. {
  42391. name: "Normal",
  42392. height: math.unit(7 + 6/12, "feet"),
  42393. default: true
  42394. },
  42395. {
  42396. name: "Macro",
  42397. height: math.unit(26 + 9/12, "feet")
  42398. },
  42399. {
  42400. name: "Megamacro",
  42401. height: math.unit(300, "feet")
  42402. },
  42403. {
  42404. name: "Gigamacro",
  42405. height: math.unit(5000, "feet")
  42406. },
  42407. {
  42408. name: "Planetary",
  42409. height: math.unit(10000, "miles")
  42410. },
  42411. ]
  42412. ))
  42413. characterMakers.push(() => makeCharacter(
  42414. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  42415. {
  42416. front: {
  42417. height: math.unit(8 + 2/12, "feet"),
  42418. weight: math.unit(600, "lb"),
  42419. name: "Front",
  42420. image: {
  42421. source: "./media/characters/deam-nitrel/front.svg",
  42422. extra: 1308/1234,
  42423. bottom: 125/1433
  42424. }
  42425. },
  42426. },
  42427. [
  42428. {
  42429. name: "Normal",
  42430. height: math.unit(8 + 2/12, "feet"),
  42431. default: true
  42432. },
  42433. ]
  42434. ))
  42435. characterMakers.push(() => makeCharacter(
  42436. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  42437. {
  42438. front: {
  42439. height: math.unit(6.1, "feet"),
  42440. weight: math.unit(180, "lb"),
  42441. name: "Front",
  42442. image: {
  42443. source: "./media/characters/skyress/front.svg",
  42444. extra: 1045/915,
  42445. bottom: 28/1073
  42446. }
  42447. },
  42448. maw: {
  42449. height: math.unit(1, "feet"),
  42450. name: "Maw",
  42451. image: {
  42452. source: "./media/characters/skyress/maw.svg"
  42453. }
  42454. },
  42455. },
  42456. [
  42457. {
  42458. name: "Normal",
  42459. height: math.unit(6.1, "feet"),
  42460. default: true
  42461. },
  42462. {
  42463. name: "Macro",
  42464. height: math.unit(200, "feet")
  42465. },
  42466. ]
  42467. ))
  42468. characterMakers.push(() => makeCharacter(
  42469. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  42470. {
  42471. front: {
  42472. height: math.unit(4 + 2/12, "feet"),
  42473. weight: math.unit(40, "kg"),
  42474. name: "Front",
  42475. image: {
  42476. source: "./media/characters/amethyst-jones/front.svg",
  42477. extra: 1220/1150,
  42478. bottom: 101/1321
  42479. }
  42480. },
  42481. },
  42482. [
  42483. {
  42484. name: "Normal",
  42485. height: math.unit(4 + 2/12, "feet"),
  42486. default: true
  42487. },
  42488. ]
  42489. ))
  42490. characterMakers.push(() => makeCharacter(
  42491. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  42492. {
  42493. front: {
  42494. height: math.unit(1.7, "m"),
  42495. weight: math.unit(135, "lb"),
  42496. name: "Front",
  42497. image: {
  42498. source: "./media/characters/jade/front.svg",
  42499. extra: 1818/1767,
  42500. bottom: 32/1850
  42501. }
  42502. },
  42503. back: {
  42504. height: math.unit(1.7, "m"),
  42505. weight: math.unit(135, "lb"),
  42506. name: "Back",
  42507. image: {
  42508. source: "./media/characters/jade/back.svg",
  42509. extra: 1869/1809,
  42510. bottom: 35/1904
  42511. }
  42512. },
  42513. hand: {
  42514. height: math.unit(0.24, "m"),
  42515. name: "Hand",
  42516. image: {
  42517. source: "./media/characters/jade/hand.svg"
  42518. }
  42519. },
  42520. foot: {
  42521. height: math.unit(0.263, "m"),
  42522. name: "Foot",
  42523. image: {
  42524. source: "./media/characters/jade/foot.svg"
  42525. }
  42526. },
  42527. dick: {
  42528. height: math.unit(0.47, "m"),
  42529. name: "Dick",
  42530. image: {
  42531. source: "./media/characters/jade/dick.svg"
  42532. }
  42533. },
  42534. },
  42535. [
  42536. {
  42537. name: "Micro",
  42538. height: math.unit(22, "cm")
  42539. },
  42540. {
  42541. name: "Normal",
  42542. height: math.unit(1.7, "m"),
  42543. default: true
  42544. },
  42545. {
  42546. name: "Macro",
  42547. height: math.unit(152, "m")
  42548. },
  42549. ]
  42550. ))
  42551. characterMakers.push(() => makeCharacter(
  42552. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  42553. {
  42554. front: {
  42555. height: math.unit(100, "miles"),
  42556. weight: math.unit(20000, "tons"),
  42557. name: "Front",
  42558. image: {
  42559. source: "./media/characters/cookie/front.svg",
  42560. extra: 1125/1070,
  42561. bottom: 30/1155
  42562. }
  42563. },
  42564. },
  42565. [
  42566. {
  42567. name: "Big",
  42568. height: math.unit(50, "feet")
  42569. },
  42570. {
  42571. name: "Macro",
  42572. height: math.unit(100, "miles"),
  42573. default: true
  42574. },
  42575. {
  42576. name: "Megamacro",
  42577. height: math.unit(90000, "miles")
  42578. },
  42579. ]
  42580. ))
  42581. characterMakers.push(() => makeCharacter(
  42582. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  42583. {
  42584. front: {
  42585. height: math.unit(6, "feet"),
  42586. weight: math.unit(145, "lb"),
  42587. name: "Front",
  42588. image: {
  42589. source: "./media/characters/farzian/front.svg",
  42590. extra: 1902/1693,
  42591. bottom: 108/2010
  42592. }
  42593. },
  42594. },
  42595. [
  42596. {
  42597. name: "Macro",
  42598. height: math.unit(500, "feet"),
  42599. default: true
  42600. },
  42601. ]
  42602. ))
  42603. characterMakers.push(() => makeCharacter(
  42604. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  42605. {
  42606. front: {
  42607. height: math.unit(3 + 6/12, "feet"),
  42608. weight: math.unit(50, "lb"),
  42609. name: "Front",
  42610. image: {
  42611. source: "./media/characters/kimberly-tilson/front.svg",
  42612. extra: 1400/1322,
  42613. bottom: 36/1436
  42614. }
  42615. },
  42616. back: {
  42617. height: math.unit(3 + 6/12, "feet"),
  42618. weight: math.unit(50, "lb"),
  42619. name: "Back",
  42620. image: {
  42621. source: "./media/characters/kimberly-tilson/back.svg",
  42622. extra: 1370/1307,
  42623. bottom: 20/1390
  42624. }
  42625. },
  42626. },
  42627. [
  42628. {
  42629. name: "Normal",
  42630. height: math.unit(3 + 6/12, "feet"),
  42631. default: true
  42632. },
  42633. ]
  42634. ))
  42635. characterMakers.push(() => makeCharacter(
  42636. { name: "Harthos", species: ["peacekeeper", "allusus"], tags: ["anthro"] },
  42637. {
  42638. front: {
  42639. height: math.unit(350, "meters"),
  42640. weight: math.unit(7.57059e+8, "lb"),
  42641. name: "Front",
  42642. image: {
  42643. source: "./media/characters/harthos/front.svg",
  42644. extra: 455/446,
  42645. bottom: 15/470
  42646. },
  42647. form: "peacekeeper",
  42648. default: true
  42649. },
  42650. allusus_front: {
  42651. height: math.unit(270, "meters"),
  42652. weight: math.unit(3.47550e+8, "lb"),
  42653. name: "Front",
  42654. image: {
  42655. source: "./media/characters/harthos/allusus-front.svg",
  42656. extra: 455/446,
  42657. bottom: 15/470
  42658. },
  42659. form: "allusus",
  42660. },
  42661. },
  42662. [
  42663. {
  42664. name: "Macro",
  42665. height: math.unit(350, "meters"),
  42666. default: true,
  42667. form: "peacekeeper"
  42668. },
  42669. {
  42670. name: "Macro",
  42671. height: math.unit(270, "meters"),
  42672. default: true,
  42673. form: "allusus"
  42674. },
  42675. ],
  42676. {
  42677. "peacekeeper": {
  42678. name: "Peacekeeper",
  42679. default: true
  42680. },
  42681. "allusus": {
  42682. name: "Allusus",
  42683. },
  42684. }
  42685. ))
  42686. characterMakers.push(() => makeCharacter(
  42687. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  42688. {
  42689. front: {
  42690. height: math.unit(15, "feet"),
  42691. name: "Front",
  42692. image: {
  42693. source: "./media/characters/hypatia/front.svg",
  42694. extra: 1653/1591,
  42695. bottom: 79/1732
  42696. }
  42697. },
  42698. },
  42699. [
  42700. {
  42701. name: "Normal",
  42702. height: math.unit(15, "feet")
  42703. },
  42704. {
  42705. name: "Small",
  42706. height: math.unit(300, "feet")
  42707. },
  42708. {
  42709. name: "Macro",
  42710. height: math.unit(2500, "feet"),
  42711. default: true
  42712. },
  42713. {
  42714. name: "Mega Macro",
  42715. height: math.unit(1500, "miles")
  42716. },
  42717. {
  42718. name: "Giga Macro",
  42719. height: math.unit(1.5e6, "miles")
  42720. },
  42721. ]
  42722. ))
  42723. characterMakers.push(() => makeCharacter(
  42724. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  42725. {
  42726. front: {
  42727. height: math.unit(6, "feet"),
  42728. weight: math.unit(200, "lb"),
  42729. name: "Front",
  42730. image: {
  42731. source: "./media/characters/wulver/front.svg",
  42732. extra: 1724/1632,
  42733. bottom: 130/1854
  42734. }
  42735. },
  42736. frontNsfw: {
  42737. height: math.unit(6, "feet"),
  42738. weight: math.unit(200, "lb"),
  42739. name: "Front (NSFW)",
  42740. image: {
  42741. source: "./media/characters/wulver/front-nsfw.svg",
  42742. extra: 1724/1632,
  42743. bottom: 130/1854
  42744. }
  42745. },
  42746. },
  42747. [
  42748. {
  42749. name: "Human-Sized",
  42750. height: math.unit(6, "feet")
  42751. },
  42752. {
  42753. name: "Normal",
  42754. height: math.unit(4, "meters"),
  42755. default: true
  42756. },
  42757. {
  42758. name: "Large",
  42759. height: math.unit(6, "m")
  42760. },
  42761. ]
  42762. ))
  42763. characterMakers.push(() => makeCharacter(
  42764. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  42765. {
  42766. front: {
  42767. height: math.unit(7, "feet"),
  42768. name: "Front",
  42769. image: {
  42770. source: "./media/characters/maru/front.svg",
  42771. extra: 1595/1570,
  42772. bottom: 0/1595
  42773. }
  42774. },
  42775. },
  42776. [
  42777. {
  42778. name: "Normal",
  42779. height: math.unit(7, "feet"),
  42780. default: true
  42781. },
  42782. {
  42783. name: "Macro",
  42784. height: math.unit(700, "feet")
  42785. },
  42786. {
  42787. name: "Mega Macro",
  42788. height: math.unit(25, "miles")
  42789. },
  42790. ]
  42791. ))
  42792. characterMakers.push(() => makeCharacter(
  42793. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  42794. {
  42795. front: {
  42796. height: math.unit(6, "feet"),
  42797. weight: math.unit(170, "lb"),
  42798. name: "Front",
  42799. image: {
  42800. source: "./media/characters/xenon/front.svg",
  42801. extra: 1376/1305,
  42802. bottom: 56/1432
  42803. }
  42804. },
  42805. back: {
  42806. height: math.unit(6, "feet"),
  42807. weight: math.unit(170, "lb"),
  42808. name: "Back",
  42809. image: {
  42810. source: "./media/characters/xenon/back.svg",
  42811. extra: 1328/1259,
  42812. bottom: 95/1423
  42813. }
  42814. },
  42815. maw: {
  42816. height: math.unit(0.52, "feet"),
  42817. name: "Maw",
  42818. image: {
  42819. source: "./media/characters/xenon/maw.svg"
  42820. }
  42821. },
  42822. handLeft: {
  42823. height: math.unit(0.82 * 169 / 153, "feet"),
  42824. name: "Hand (Left)",
  42825. image: {
  42826. source: "./media/characters/xenon/hand-left.svg"
  42827. }
  42828. },
  42829. handRight: {
  42830. height: math.unit(0.82, "feet"),
  42831. name: "Hand (Right)",
  42832. image: {
  42833. source: "./media/characters/xenon/hand-right.svg"
  42834. }
  42835. },
  42836. footLeft: {
  42837. height: math.unit(1.13, "feet"),
  42838. name: "Foot (Left)",
  42839. image: {
  42840. source: "./media/characters/xenon/foot-left.svg"
  42841. }
  42842. },
  42843. footRight: {
  42844. height: math.unit(1.13 * 194 / 196, "feet"),
  42845. name: "Foot (Right)",
  42846. image: {
  42847. source: "./media/characters/xenon/foot-right.svg"
  42848. }
  42849. },
  42850. },
  42851. [
  42852. {
  42853. name: "Micro",
  42854. height: math.unit(0.8, "inches")
  42855. },
  42856. {
  42857. name: "Normal",
  42858. height: math.unit(6, "feet")
  42859. },
  42860. {
  42861. name: "Macro",
  42862. height: math.unit(50, "feet"),
  42863. default: true
  42864. },
  42865. {
  42866. name: "Macro+",
  42867. height: math.unit(250, "feet")
  42868. },
  42869. {
  42870. name: "Megamacro",
  42871. height: math.unit(1500, "feet")
  42872. },
  42873. ]
  42874. ))
  42875. characterMakers.push(() => makeCharacter(
  42876. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42877. {
  42878. front: {
  42879. height: math.unit(7 + 5/12, "feet"),
  42880. name: "Front",
  42881. image: {
  42882. source: "./media/characters/zane/front.svg",
  42883. extra: 1260/1203,
  42884. bottom: 94/1354
  42885. }
  42886. },
  42887. back: {
  42888. height: math.unit(5.05, "feet"),
  42889. name: "Back",
  42890. image: {
  42891. source: "./media/characters/zane/back.svg",
  42892. extra: 893/829,
  42893. bottom: 30/923
  42894. }
  42895. },
  42896. werewolf: {
  42897. height: math.unit(11, "feet"),
  42898. name: "Werewolf",
  42899. image: {
  42900. source: "./media/characters/zane/werewolf.svg",
  42901. extra: 1383/1323,
  42902. bottom: 89/1472
  42903. }
  42904. },
  42905. foot: {
  42906. height: math.unit(1.46, "feet"),
  42907. name: "Foot",
  42908. image: {
  42909. source: "./media/characters/zane/foot.svg"
  42910. }
  42911. },
  42912. footFront: {
  42913. height: math.unit(0.784, "feet"),
  42914. name: "Foot (Front)",
  42915. image: {
  42916. source: "./media/characters/zane/foot-front.svg"
  42917. }
  42918. },
  42919. dick: {
  42920. height: math.unit(1.95, "feet"),
  42921. name: "Dick",
  42922. image: {
  42923. source: "./media/characters/zane/dick.svg"
  42924. }
  42925. },
  42926. dickWerewolf: {
  42927. height: math.unit(3.77, "feet"),
  42928. name: "Dick (Werewolf)",
  42929. image: {
  42930. source: "./media/characters/zane/dick.svg"
  42931. }
  42932. },
  42933. },
  42934. [
  42935. {
  42936. name: "Normal",
  42937. height: math.unit(7 + 5/12, "feet"),
  42938. default: true
  42939. },
  42940. ]
  42941. ))
  42942. characterMakers.push(() => makeCharacter(
  42943. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42944. {
  42945. front: {
  42946. height: math.unit(6 + 2/12, "feet"),
  42947. weight: math.unit(284, "lb"),
  42948. name: "Front",
  42949. image: {
  42950. source: "./media/characters/benni-desparque/front.svg",
  42951. extra: 1353/1126,
  42952. bottom: 69/1422
  42953. }
  42954. },
  42955. },
  42956. [
  42957. {
  42958. name: "Civilian",
  42959. height: math.unit(6 + 2/12, "feet")
  42960. },
  42961. {
  42962. name: "Normal",
  42963. height: math.unit(98, "feet"),
  42964. default: true
  42965. },
  42966. {
  42967. name: "Kaiju Fighter",
  42968. height: math.unit(268, "feet")
  42969. },
  42970. ]
  42971. ))
  42972. characterMakers.push(() => makeCharacter(
  42973. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42974. {
  42975. front: {
  42976. height: math.unit(5, "feet"),
  42977. weight: math.unit(105, "lb"),
  42978. name: "Front",
  42979. image: {
  42980. source: "./media/characters/maxine/front.svg",
  42981. extra: 1386/1250,
  42982. bottom: 71/1457
  42983. }
  42984. },
  42985. },
  42986. [
  42987. {
  42988. name: "Normal",
  42989. height: math.unit(5, "feet"),
  42990. default: true
  42991. },
  42992. ]
  42993. ))
  42994. characterMakers.push(() => makeCharacter(
  42995. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42996. {
  42997. front: {
  42998. height: math.unit(11 + 7/12, "feet"),
  42999. weight: math.unit(9576, "lb"),
  43000. name: "Front",
  43001. image: {
  43002. source: "./media/characters/scaly/front.svg",
  43003. extra: 888/867,
  43004. bottom: 36/924
  43005. }
  43006. },
  43007. },
  43008. [
  43009. {
  43010. name: "Normal",
  43011. height: math.unit(11 + 7/12, "feet"),
  43012. default: true
  43013. },
  43014. ]
  43015. ))
  43016. characterMakers.push(() => makeCharacter(
  43017. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  43018. {
  43019. front: {
  43020. height: math.unit(6 + 3/12, "feet"),
  43021. name: "Front",
  43022. image: {
  43023. source: "./media/characters/saelria/front.svg",
  43024. extra: 1243/1138,
  43025. bottom: 46/1289
  43026. }
  43027. },
  43028. },
  43029. [
  43030. {
  43031. name: "Micro",
  43032. height: math.unit(6, "inches"),
  43033. },
  43034. {
  43035. name: "Normal",
  43036. height: math.unit(6 + 3/12, "feet"),
  43037. default: true
  43038. },
  43039. {
  43040. name: "Macro",
  43041. height: math.unit(25, "feet")
  43042. },
  43043. ]
  43044. ))
  43045. characterMakers.push(() => makeCharacter(
  43046. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  43047. {
  43048. front: {
  43049. height: math.unit(80, "meters"),
  43050. weight: math.unit(7000, "tonnes"),
  43051. name: "Front",
  43052. image: {
  43053. source: "./media/characters/tef/front.svg",
  43054. extra: 2036/1991,
  43055. bottom: 54/2090
  43056. }
  43057. },
  43058. back: {
  43059. height: math.unit(80, "meters"),
  43060. weight: math.unit(7000, "tonnes"),
  43061. name: "Back",
  43062. image: {
  43063. source: "./media/characters/tef/back.svg",
  43064. extra: 2036/1991,
  43065. bottom: 54/2090
  43066. }
  43067. },
  43068. },
  43069. [
  43070. {
  43071. name: "Macro",
  43072. height: math.unit(80, "meters"),
  43073. default: true
  43074. },
  43075. ]
  43076. ))
  43077. characterMakers.push(() => makeCharacter(
  43078. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  43079. {
  43080. front: {
  43081. height: math.unit(13, "feet"),
  43082. weight: math.unit(6, "tons"),
  43083. name: "Front",
  43084. image: {
  43085. source: "./media/characters/rover/front.svg",
  43086. extra: 1233/1156,
  43087. bottom: 50/1283
  43088. }
  43089. },
  43090. back: {
  43091. height: math.unit(13, "feet"),
  43092. weight: math.unit(6, "tons"),
  43093. name: "Back",
  43094. image: {
  43095. source: "./media/characters/rover/back.svg",
  43096. extra: 1327/1258,
  43097. bottom: 39/1366
  43098. }
  43099. },
  43100. },
  43101. [
  43102. {
  43103. name: "Normal",
  43104. height: math.unit(13, "feet"),
  43105. default: true
  43106. },
  43107. {
  43108. name: "Macro",
  43109. height: math.unit(1300, "feet")
  43110. },
  43111. {
  43112. name: "Megamacro",
  43113. height: math.unit(1300, "miles")
  43114. },
  43115. {
  43116. name: "Gigamacro",
  43117. height: math.unit(1300000, "miles")
  43118. },
  43119. ]
  43120. ))
  43121. characterMakers.push(() => makeCharacter(
  43122. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  43123. {
  43124. front: {
  43125. height: math.unit(10, "feet"),
  43126. weight: math.unit(500, "lb"),
  43127. name: "Front",
  43128. image: {
  43129. source: "./media/characters/ariz/front.svg",
  43130. extra: 461/450,
  43131. bottom: 16/477
  43132. }
  43133. },
  43134. },
  43135. [
  43136. {
  43137. name: "MiniMacro",
  43138. height: math.unit(10, "feet"),
  43139. default: true
  43140. },
  43141. ]
  43142. ))
  43143. characterMakers.push(() => makeCharacter(
  43144. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  43145. {
  43146. front: {
  43147. height: math.unit(6, "feet"),
  43148. weight: math.unit(140, "lb"),
  43149. name: "Front",
  43150. image: {
  43151. source: "./media/characters/sigrun/front.svg",
  43152. extra: 1418/1359,
  43153. bottom: 27/1445
  43154. }
  43155. },
  43156. },
  43157. [
  43158. {
  43159. name: "Macro",
  43160. height: math.unit(35, "feet"),
  43161. default: true
  43162. },
  43163. ]
  43164. ))
  43165. characterMakers.push(() => makeCharacter(
  43166. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  43167. {
  43168. front: {
  43169. height: math.unit(6, "feet"),
  43170. weight: math.unit(150, "lb"),
  43171. name: "Front",
  43172. image: {
  43173. source: "./media/characters/numin/front.svg",
  43174. extra: 1433/1388,
  43175. bottom: 12/1445
  43176. }
  43177. },
  43178. },
  43179. [
  43180. {
  43181. name: "Macro",
  43182. height: math.unit(21.5, "km"),
  43183. default: true
  43184. },
  43185. ]
  43186. ))
  43187. characterMakers.push(() => makeCharacter(
  43188. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  43189. {
  43190. front: {
  43191. height: math.unit(6, "feet"),
  43192. weight: math.unit(463, "lb"),
  43193. name: "Front",
  43194. image: {
  43195. source: "./media/characters/melwa/front.svg",
  43196. extra: 1307/1248,
  43197. bottom: 93/1400
  43198. }
  43199. },
  43200. },
  43201. [
  43202. {
  43203. name: "Macro",
  43204. height: math.unit(50, "meters"),
  43205. default: true
  43206. },
  43207. ]
  43208. ))
  43209. characterMakers.push(() => makeCharacter(
  43210. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  43211. {
  43212. front: {
  43213. height: math.unit(325, "feet"),
  43214. name: "Front",
  43215. image: {
  43216. source: "./media/characters/zorkaiju/front.svg",
  43217. extra: 1955/1814,
  43218. bottom: 40/1995
  43219. }
  43220. },
  43221. frontExtended: {
  43222. height: math.unit(325, "feet"),
  43223. name: "Front (Extended)",
  43224. image: {
  43225. source: "./media/characters/zorkaiju/front-extended.svg",
  43226. extra: 1955/1814,
  43227. bottom: 40/1995
  43228. }
  43229. },
  43230. side: {
  43231. height: math.unit(325, "feet"),
  43232. name: "Side",
  43233. image: {
  43234. source: "./media/characters/zorkaiju/side.svg",
  43235. extra: 1495/1396,
  43236. bottom: 17/1512
  43237. }
  43238. },
  43239. sideExtended: {
  43240. height: math.unit(325, "feet"),
  43241. name: "Side (Extended)",
  43242. image: {
  43243. source: "./media/characters/zorkaiju/side-extended.svg",
  43244. extra: 1495/1396,
  43245. bottom: 17/1512
  43246. }
  43247. },
  43248. back: {
  43249. height: math.unit(325, "feet"),
  43250. name: "Back",
  43251. image: {
  43252. source: "./media/characters/zorkaiju/back.svg",
  43253. extra: 1959/1821,
  43254. bottom: 31/1990
  43255. }
  43256. },
  43257. backExtended: {
  43258. height: math.unit(325, "feet"),
  43259. name: "Back (Extended)",
  43260. image: {
  43261. source: "./media/characters/zorkaiju/back-extended.svg",
  43262. extra: 1959/1821,
  43263. bottom: 31/1990
  43264. }
  43265. },
  43266. hand: {
  43267. height: math.unit(58.4, "feet"),
  43268. name: "Hand",
  43269. image: {
  43270. source: "./media/characters/zorkaiju/hand.svg"
  43271. }
  43272. },
  43273. handExtended: {
  43274. height: math.unit(61.4, "feet"),
  43275. name: "Hand (Extended)",
  43276. image: {
  43277. source: "./media/characters/zorkaiju/hand-extended.svg"
  43278. }
  43279. },
  43280. foot: {
  43281. height: math.unit(95, "feet"),
  43282. name: "Foot",
  43283. image: {
  43284. source: "./media/characters/zorkaiju/foot.svg"
  43285. }
  43286. },
  43287. leftArm: {
  43288. height: math.unit(59, "feet"),
  43289. name: "Left Arm",
  43290. image: {
  43291. source: "./media/characters/zorkaiju/left-arm.svg"
  43292. }
  43293. },
  43294. rightArm: {
  43295. height: math.unit(59, "feet"),
  43296. name: "Right Arm",
  43297. image: {
  43298. source: "./media/characters/zorkaiju/right-arm.svg"
  43299. }
  43300. },
  43301. leftArmExtended: {
  43302. height: math.unit(59 * 1.033546, "feet"),
  43303. name: "Left Arm (Extended)",
  43304. image: {
  43305. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  43306. }
  43307. },
  43308. rightArmExtended: {
  43309. height: math.unit(59 * 1.0496, "feet"),
  43310. name: "Right Arm (Extended)",
  43311. image: {
  43312. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  43313. }
  43314. },
  43315. tail: {
  43316. height: math.unit(104, "feet"),
  43317. name: "Tail",
  43318. image: {
  43319. source: "./media/characters/zorkaiju/tail.svg"
  43320. }
  43321. },
  43322. tailExtended: {
  43323. height: math.unit(104, "feet"),
  43324. name: "Tail (Extended)",
  43325. image: {
  43326. source: "./media/characters/zorkaiju/tail-extended.svg"
  43327. }
  43328. },
  43329. tailBottom: {
  43330. height: math.unit(104, "feet"),
  43331. name: "Tail Bottom",
  43332. image: {
  43333. source: "./media/characters/zorkaiju/tail-bottom.svg"
  43334. }
  43335. },
  43336. crystal: {
  43337. height: math.unit(27.54, "feet"),
  43338. name: "Crystal",
  43339. image: {
  43340. source: "./media/characters/zorkaiju/crystal.svg"
  43341. }
  43342. },
  43343. },
  43344. [
  43345. {
  43346. name: "Kaiju",
  43347. height: math.unit(325, "feet"),
  43348. default: true
  43349. },
  43350. ]
  43351. ))
  43352. characterMakers.push(() => makeCharacter(
  43353. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  43354. {
  43355. front: {
  43356. height: math.unit(6 + 1/12, "feet"),
  43357. weight: math.unit(115, "lb"),
  43358. name: "Front",
  43359. image: {
  43360. source: "./media/characters/bailey-belfry/front.svg",
  43361. extra: 1240/1121,
  43362. bottom: 101/1341
  43363. }
  43364. },
  43365. },
  43366. [
  43367. {
  43368. name: "Normal",
  43369. height: math.unit(6 + 1/12, "feet"),
  43370. default: true
  43371. },
  43372. ]
  43373. ))
  43374. characterMakers.push(() => makeCharacter(
  43375. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  43376. {
  43377. side: {
  43378. height: math.unit(4, "meters"),
  43379. weight: math.unit(250, "kg"),
  43380. name: "Side",
  43381. image: {
  43382. source: "./media/characters/blacky/side.svg",
  43383. extra: 1027/919,
  43384. bottom: 43/1070
  43385. }
  43386. },
  43387. maw: {
  43388. height: math.unit(1, "meters"),
  43389. name: "Maw",
  43390. image: {
  43391. source: "./media/characters/blacky/maw.svg"
  43392. }
  43393. },
  43394. paw: {
  43395. height: math.unit(1, "meters"),
  43396. name: "Paw",
  43397. image: {
  43398. source: "./media/characters/blacky/paw.svg"
  43399. }
  43400. },
  43401. },
  43402. [
  43403. {
  43404. name: "Normal",
  43405. height: math.unit(4, "meters"),
  43406. default: true
  43407. },
  43408. ]
  43409. ))
  43410. characterMakers.push(() => makeCharacter(
  43411. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  43412. {
  43413. front: {
  43414. height: math.unit(170, "cm"),
  43415. weight: math.unit(66, "kg"),
  43416. name: "Front",
  43417. image: {
  43418. source: "./media/characters/thux-ei/front.svg",
  43419. extra: 1109/1011,
  43420. bottom: 8/1117
  43421. }
  43422. },
  43423. },
  43424. [
  43425. {
  43426. name: "Normal",
  43427. height: math.unit(170, "cm"),
  43428. default: true
  43429. },
  43430. ]
  43431. ))
  43432. characterMakers.push(() => makeCharacter(
  43433. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  43434. {
  43435. front: {
  43436. height: math.unit(5, "feet"),
  43437. weight: math.unit(120, "lb"),
  43438. name: "Front",
  43439. image: {
  43440. source: "./media/characters/roxanne-voltaire/front.svg",
  43441. extra: 1901/1779,
  43442. bottom: 53/1954
  43443. }
  43444. },
  43445. },
  43446. [
  43447. {
  43448. name: "Normal",
  43449. height: math.unit(5, "feet"),
  43450. default: true
  43451. },
  43452. {
  43453. name: "Giant",
  43454. height: math.unit(50, "feet")
  43455. },
  43456. {
  43457. name: "Titan",
  43458. height: math.unit(500, "feet")
  43459. },
  43460. {
  43461. name: "Macro",
  43462. height: math.unit(5000, "feet")
  43463. },
  43464. {
  43465. name: "Megamacro",
  43466. height: math.unit(50000, "feet")
  43467. },
  43468. {
  43469. name: "Gigamacro",
  43470. height: math.unit(500000, "feet")
  43471. },
  43472. {
  43473. name: "Teramacro",
  43474. height: math.unit(5e6, "feet")
  43475. },
  43476. ]
  43477. ))
  43478. characterMakers.push(() => makeCharacter(
  43479. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  43480. {
  43481. front: {
  43482. height: math.unit(6 + 2/12, "feet"),
  43483. name: "Front",
  43484. image: {
  43485. source: "./media/characters/squeaks/front.svg",
  43486. extra: 1823/1768,
  43487. bottom: 138/1961
  43488. }
  43489. },
  43490. },
  43491. [
  43492. {
  43493. name: "Micro",
  43494. height: math.unit(0.5, "inches")
  43495. },
  43496. {
  43497. name: "Normal",
  43498. height: math.unit(6 + 2/12, "feet"),
  43499. default: true
  43500. },
  43501. {
  43502. name: "Macro",
  43503. height: math.unit(600, "feet")
  43504. },
  43505. ]
  43506. ))
  43507. characterMakers.push(() => makeCharacter(
  43508. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  43509. {
  43510. front: {
  43511. height: math.unit(1.72, "meters"),
  43512. name: "Front",
  43513. image: {
  43514. source: "./media/characters/archinger/front.svg",
  43515. extra: 1861/1675,
  43516. bottom: 125/1986
  43517. }
  43518. },
  43519. back: {
  43520. height: math.unit(1.72, "meters"),
  43521. name: "Back",
  43522. image: {
  43523. source: "./media/characters/archinger/back.svg",
  43524. extra: 1844/1701,
  43525. bottom: 104/1948
  43526. }
  43527. },
  43528. cock: {
  43529. height: math.unit(0.59, "feet"),
  43530. name: "Cock",
  43531. image: {
  43532. source: "./media/characters/archinger/cock.svg"
  43533. }
  43534. },
  43535. },
  43536. [
  43537. {
  43538. name: "Normal",
  43539. height: math.unit(1.72, "meters"),
  43540. default: true
  43541. },
  43542. {
  43543. name: "Macro",
  43544. height: math.unit(84, "meters")
  43545. },
  43546. {
  43547. name: "Macro+",
  43548. height: math.unit(112, "meters")
  43549. },
  43550. {
  43551. name: "Macro++",
  43552. height: math.unit(960, "meters")
  43553. },
  43554. {
  43555. name: "Macro+++",
  43556. height: math.unit(4, "km")
  43557. },
  43558. {
  43559. name: "Macro++++",
  43560. height: math.unit(48, "km")
  43561. },
  43562. {
  43563. name: "Macro+++++",
  43564. height: math.unit(4500, "km")
  43565. },
  43566. ]
  43567. ))
  43568. characterMakers.push(() => makeCharacter(
  43569. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  43570. {
  43571. front: {
  43572. height: math.unit(5 + 5/12, "feet"),
  43573. name: "Front",
  43574. image: {
  43575. source: "./media/characters/alsnapz/front.svg",
  43576. extra: 1157/1065,
  43577. bottom: 42/1199
  43578. }
  43579. },
  43580. },
  43581. [
  43582. {
  43583. name: "Normal",
  43584. height: math.unit(5 + 5/12, "feet"),
  43585. default: true
  43586. },
  43587. ]
  43588. ))
  43589. characterMakers.push(() => makeCharacter(
  43590. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  43591. {
  43592. side: {
  43593. height: math.unit(3.2, "earths"),
  43594. name: "Side",
  43595. image: {
  43596. source: "./media/characters/mag/side.svg",
  43597. extra: 1331/1008,
  43598. bottom: 52/1383
  43599. }
  43600. },
  43601. wing: {
  43602. height: math.unit(1.94, "earths"),
  43603. name: "Wing",
  43604. image: {
  43605. source: "./media/characters/mag/wing.svg"
  43606. }
  43607. },
  43608. dick: {
  43609. height: math.unit(1.8, "earths"),
  43610. name: "Dick",
  43611. image: {
  43612. source: "./media/characters/mag/dick.svg"
  43613. }
  43614. },
  43615. ass: {
  43616. height: math.unit(1.33, "earths"),
  43617. name: "Ass",
  43618. image: {
  43619. source: "./media/characters/mag/ass.svg"
  43620. }
  43621. },
  43622. head: {
  43623. height: math.unit(1.1, "earths"),
  43624. name: "Head",
  43625. image: {
  43626. source: "./media/characters/mag/head.svg"
  43627. }
  43628. },
  43629. maw: {
  43630. height: math.unit(1.62, "earths"),
  43631. name: "Maw",
  43632. image: {
  43633. source: "./media/characters/mag/maw.svg"
  43634. }
  43635. },
  43636. },
  43637. [
  43638. {
  43639. name: "Small",
  43640. height: math.unit(162, "feet")
  43641. },
  43642. {
  43643. name: "Normal",
  43644. height: math.unit(3.2, "earths"),
  43645. default: true
  43646. },
  43647. ]
  43648. ))
  43649. characterMakers.push(() => makeCharacter(
  43650. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  43651. {
  43652. front: {
  43653. height: math.unit(512, "feet"),
  43654. weight: math.unit(63509, "tonnes"),
  43655. name: "Front",
  43656. image: {
  43657. source: "./media/characters/vorrel-harroc/front.svg",
  43658. extra: 1075/1063,
  43659. bottom: 62/1137
  43660. }
  43661. },
  43662. },
  43663. [
  43664. {
  43665. name: "Normal",
  43666. height: math.unit(10, "feet")
  43667. },
  43668. {
  43669. name: "Macro",
  43670. height: math.unit(512, "feet"),
  43671. default: true
  43672. },
  43673. {
  43674. name: "Megamacro",
  43675. height: math.unit(256, "miles")
  43676. },
  43677. {
  43678. name: "Gigamacro",
  43679. height: math.unit(4096, "miles")
  43680. },
  43681. ]
  43682. ))
  43683. characterMakers.push(() => makeCharacter(
  43684. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  43685. {
  43686. side: {
  43687. height: math.unit(50, "feet"),
  43688. name: "Side",
  43689. image: {
  43690. source: "./media/characters/froimar/side.svg",
  43691. extra: 855/638,
  43692. bottom: 99/954
  43693. }
  43694. },
  43695. },
  43696. [
  43697. {
  43698. name: "Macro",
  43699. height: math.unit(50, "feet"),
  43700. default: true
  43701. },
  43702. ]
  43703. ))
  43704. characterMakers.push(() => makeCharacter(
  43705. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  43706. {
  43707. front: {
  43708. height: math.unit(210, "miles"),
  43709. name: "Front",
  43710. image: {
  43711. source: "./media/characters/timothy/front.svg",
  43712. extra: 1007/943,
  43713. bottom: 62/1069
  43714. }
  43715. },
  43716. frontSkirt: {
  43717. height: math.unit(210, "miles"),
  43718. name: "Front (Skirt)",
  43719. image: {
  43720. source: "./media/characters/timothy/front-skirt.svg",
  43721. extra: 1007/943,
  43722. bottom: 62/1069
  43723. }
  43724. },
  43725. frontCoat: {
  43726. height: math.unit(210, "miles"),
  43727. name: "Front (Coat)",
  43728. image: {
  43729. source: "./media/characters/timothy/front-coat.svg",
  43730. extra: 1007/943,
  43731. bottom: 62/1069
  43732. }
  43733. },
  43734. },
  43735. [
  43736. {
  43737. name: "Macro",
  43738. height: math.unit(210, "miles"),
  43739. default: true
  43740. },
  43741. {
  43742. name: "Megamacro",
  43743. height: math.unit(210000, "miles")
  43744. },
  43745. ]
  43746. ))
  43747. characterMakers.push(() => makeCharacter(
  43748. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  43749. {
  43750. front: {
  43751. height: math.unit(188, "feet"),
  43752. name: "Front",
  43753. image: {
  43754. source: "./media/characters/pyotr/front.svg",
  43755. extra: 1912/1826,
  43756. bottom: 18/1930
  43757. }
  43758. },
  43759. },
  43760. [
  43761. {
  43762. name: "Macro",
  43763. height: math.unit(188, "feet"),
  43764. default: true
  43765. },
  43766. {
  43767. name: "Megamacro",
  43768. height: math.unit(8, "miles")
  43769. },
  43770. ]
  43771. ))
  43772. characterMakers.push(() => makeCharacter(
  43773. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  43774. {
  43775. side: {
  43776. height: math.unit(10, "feet"),
  43777. weight: math.unit(4500, "lb"),
  43778. name: "Side",
  43779. image: {
  43780. source: "./media/characters/ackart/side.svg",
  43781. extra: 1776/1668,
  43782. bottom: 116/1892
  43783. }
  43784. },
  43785. },
  43786. [
  43787. {
  43788. name: "Normal",
  43789. height: math.unit(10, "feet"),
  43790. default: true
  43791. },
  43792. ]
  43793. ))
  43794. characterMakers.push(() => makeCharacter(
  43795. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  43796. {
  43797. side: {
  43798. height: math.unit(21, "feet"),
  43799. name: "Side",
  43800. image: {
  43801. source: "./media/characters/nolow/side.svg",
  43802. extra: 1484/1434,
  43803. bottom: 85/1569
  43804. }
  43805. },
  43806. sideErect: {
  43807. height: math.unit(21, "feet"),
  43808. name: "Side-erect",
  43809. image: {
  43810. source: "./media/characters/nolow/side-erect.svg",
  43811. extra: 1484/1434,
  43812. bottom: 85/1569
  43813. }
  43814. },
  43815. },
  43816. [
  43817. {
  43818. name: "Regular",
  43819. height: math.unit(12, "feet")
  43820. },
  43821. {
  43822. name: "Big Chee",
  43823. height: math.unit(21, "feet"),
  43824. default: true
  43825. },
  43826. ]
  43827. ))
  43828. characterMakers.push(() => makeCharacter(
  43829. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  43830. {
  43831. front: {
  43832. height: math.unit(7, "feet"),
  43833. weight: math.unit(250, "lb"),
  43834. name: "Front",
  43835. image: {
  43836. source: "./media/characters/nines/front.svg",
  43837. extra: 1741/1607,
  43838. bottom: 41/1782
  43839. }
  43840. },
  43841. side: {
  43842. height: math.unit(7, "feet"),
  43843. weight: math.unit(250, "lb"),
  43844. name: "Side",
  43845. image: {
  43846. source: "./media/characters/nines/side.svg",
  43847. extra: 1854/1735,
  43848. bottom: 93/1947
  43849. }
  43850. },
  43851. back: {
  43852. height: math.unit(7, "feet"),
  43853. weight: math.unit(250, "lb"),
  43854. name: "Back",
  43855. image: {
  43856. source: "./media/characters/nines/back.svg",
  43857. extra: 1748/1615,
  43858. bottom: 20/1768
  43859. }
  43860. },
  43861. },
  43862. [
  43863. {
  43864. name: "Megamacro",
  43865. height: math.unit(99, "km"),
  43866. default: true
  43867. },
  43868. ]
  43869. ))
  43870. characterMakers.push(() => makeCharacter(
  43871. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43872. {
  43873. front: {
  43874. height: math.unit(5 + 10/12, "feet"),
  43875. weight: math.unit(210, "lb"),
  43876. name: "Front",
  43877. image: {
  43878. source: "./media/characters/zenith/front.svg",
  43879. extra: 1531/1452,
  43880. bottom: 198/1729
  43881. }
  43882. },
  43883. back: {
  43884. height: math.unit(5 + 10/12, "feet"),
  43885. weight: math.unit(210, "lb"),
  43886. name: "Back",
  43887. image: {
  43888. source: "./media/characters/zenith/back.svg",
  43889. extra: 1571/1487,
  43890. bottom: 75/1646
  43891. }
  43892. },
  43893. },
  43894. [
  43895. {
  43896. name: "Normal",
  43897. height: math.unit(5 + 10/12, "feet"),
  43898. default: true
  43899. }
  43900. ]
  43901. ))
  43902. characterMakers.push(() => makeCharacter(
  43903. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43904. {
  43905. front: {
  43906. height: math.unit(4, "feet"),
  43907. weight: math.unit(60, "lb"),
  43908. name: "Front",
  43909. image: {
  43910. source: "./media/characters/jasper/front.svg",
  43911. extra: 1450/1379,
  43912. bottom: 19/1469
  43913. }
  43914. },
  43915. },
  43916. [
  43917. {
  43918. name: "Normal",
  43919. height: math.unit(4, "feet"),
  43920. default: true
  43921. },
  43922. ]
  43923. ))
  43924. characterMakers.push(() => makeCharacter(
  43925. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43926. {
  43927. front: {
  43928. height: math.unit(6 + 5/12, "feet"),
  43929. weight: math.unit(290, "lb"),
  43930. name: "Front",
  43931. image: {
  43932. source: "./media/characters/tiberius-thyben/front.svg",
  43933. extra: 757/739,
  43934. bottom: 39/796
  43935. }
  43936. },
  43937. },
  43938. [
  43939. {
  43940. name: "Micro",
  43941. height: math.unit(1.5, "inches")
  43942. },
  43943. {
  43944. name: "Normal",
  43945. height: math.unit(6 + 5/12, "feet"),
  43946. default: true
  43947. },
  43948. {
  43949. name: "Macro",
  43950. height: math.unit(300, "feet")
  43951. },
  43952. ]
  43953. ))
  43954. characterMakers.push(() => makeCharacter(
  43955. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43956. {
  43957. front: {
  43958. height: math.unit(5 + 6/12, "feet"),
  43959. weight: math.unit(60, "kg"),
  43960. name: "Front",
  43961. image: {
  43962. source: "./media/characters/sabre/front.svg",
  43963. extra: 738/671,
  43964. bottom: 27/765
  43965. }
  43966. },
  43967. },
  43968. [
  43969. {
  43970. name: "Teeny",
  43971. height: math.unit(2, "inches")
  43972. },
  43973. {
  43974. name: "Smol",
  43975. height: math.unit(8, "inches")
  43976. },
  43977. {
  43978. name: "Normal",
  43979. height: math.unit(5 + 6/12, "feet"),
  43980. default: true
  43981. },
  43982. {
  43983. name: "Mini-Macro",
  43984. height: math.unit(15, "feet")
  43985. },
  43986. {
  43987. name: "Macro",
  43988. height: math.unit(50, "feet")
  43989. },
  43990. ]
  43991. ))
  43992. characterMakers.push(() => makeCharacter(
  43993. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43994. {
  43995. front: {
  43996. height: math.unit(6 + 4/12, "feet"),
  43997. weight: math.unit(170, "lb"),
  43998. name: "Front",
  43999. image: {
  44000. source: "./media/characters/charlie/front.svg",
  44001. extra: 1348/1228,
  44002. bottom: 15/1363
  44003. }
  44004. },
  44005. },
  44006. [
  44007. {
  44008. name: "Macro",
  44009. height: math.unit(1700, "meters"),
  44010. default: true
  44011. },
  44012. {
  44013. name: "MegaMacro",
  44014. height: math.unit(20400, "meters")
  44015. },
  44016. ]
  44017. ))
  44018. characterMakers.push(() => makeCharacter(
  44019. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  44020. {
  44021. front: {
  44022. height: math.unit(1.96, "meters"),
  44023. weight: math.unit(220, "lb"),
  44024. name: "Front",
  44025. image: {
  44026. source: "./media/characters/susan-grant/front.svg",
  44027. extra: 482/478,
  44028. bottom: 7/489
  44029. }
  44030. },
  44031. },
  44032. [
  44033. {
  44034. name: "Normal",
  44035. height: math.unit(1.96, "meters"),
  44036. default: true
  44037. },
  44038. {
  44039. name: "Macro",
  44040. height: math.unit(76.2, "meters")
  44041. },
  44042. {
  44043. name: "MegaMacro",
  44044. height: math.unit(305, "meters")
  44045. },
  44046. {
  44047. name: "GigaMacro",
  44048. height: math.unit(1220, "meters")
  44049. },
  44050. {
  44051. name: "SuperMacro",
  44052. height: math.unit(4878, "meters")
  44053. },
  44054. ]
  44055. ))
  44056. characterMakers.push(() => makeCharacter(
  44057. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  44058. {
  44059. front: {
  44060. height: math.unit(5 + 4/12, "feet"),
  44061. weight: math.unit(110, "lb"),
  44062. name: "Front",
  44063. image: {
  44064. source: "./media/characters/axel-isanov/front.svg",
  44065. extra: 1096/1065,
  44066. bottom: 13/1109
  44067. }
  44068. },
  44069. },
  44070. [
  44071. {
  44072. name: "Normal",
  44073. height: math.unit(5 + 4/12, "feet"),
  44074. default: true
  44075. },
  44076. ]
  44077. ))
  44078. characterMakers.push(() => makeCharacter(
  44079. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  44080. {
  44081. front: {
  44082. height: math.unit(9, "feet"),
  44083. weight: math.unit(467, "lb"),
  44084. name: "Front",
  44085. image: {
  44086. source: "./media/characters/necahual/front.svg",
  44087. extra: 920/873,
  44088. bottom: 26/946
  44089. }
  44090. },
  44091. back: {
  44092. height: math.unit(9, "feet"),
  44093. weight: math.unit(467, "lb"),
  44094. name: "Back",
  44095. image: {
  44096. source: "./media/characters/necahual/back.svg",
  44097. extra: 930/884,
  44098. bottom: 16/946
  44099. }
  44100. },
  44101. frontUnderwear: {
  44102. height: math.unit(9, "feet"),
  44103. weight: math.unit(467, "lb"),
  44104. name: "Front (Underwear)",
  44105. image: {
  44106. source: "./media/characters/necahual/front-underwear.svg",
  44107. extra: 920/873,
  44108. bottom: 26/946
  44109. }
  44110. },
  44111. frontDressed: {
  44112. height: math.unit(9, "feet"),
  44113. weight: math.unit(467, "lb"),
  44114. name: "Front (Dressed)",
  44115. image: {
  44116. source: "./media/characters/necahual/front-dressed.svg",
  44117. extra: 920/873,
  44118. bottom: 26/946
  44119. }
  44120. },
  44121. },
  44122. [
  44123. {
  44124. name: "Comprsesed",
  44125. height: math.unit(9, "feet")
  44126. },
  44127. {
  44128. name: "Natural",
  44129. height: math.unit(15, "feet"),
  44130. default: true
  44131. },
  44132. {
  44133. name: "Boosted",
  44134. height: math.unit(50, "feet")
  44135. },
  44136. {
  44137. name: "Boosted+",
  44138. height: math.unit(150, "feet")
  44139. },
  44140. {
  44141. name: "Max",
  44142. height: math.unit(500, "feet")
  44143. },
  44144. ]
  44145. ))
  44146. characterMakers.push(() => makeCharacter(
  44147. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  44148. {
  44149. front: {
  44150. height: math.unit(22 + 1/12, "feet"),
  44151. weight: math.unit(3200, "lb"),
  44152. name: "Front",
  44153. image: {
  44154. source: "./media/characters/theo-acacia/front.svg",
  44155. extra: 1796/1741,
  44156. bottom: 83/1879
  44157. }
  44158. },
  44159. frontUnderwear: {
  44160. height: math.unit(22 + 1/12, "feet"),
  44161. weight: math.unit(3200, "lb"),
  44162. name: "Front (Underwear)",
  44163. image: {
  44164. source: "./media/characters/theo-acacia/front-underwear.svg",
  44165. extra: 1796/1741,
  44166. bottom: 83/1879
  44167. }
  44168. },
  44169. frontNude: {
  44170. height: math.unit(22 + 1/12, "feet"),
  44171. weight: math.unit(3200, "lb"),
  44172. name: "Front (Nude)",
  44173. image: {
  44174. source: "./media/characters/theo-acacia/front-nude.svg",
  44175. extra: 1796/1741,
  44176. bottom: 83/1879
  44177. }
  44178. },
  44179. },
  44180. [
  44181. {
  44182. name: "Normal",
  44183. height: math.unit(22 + 1/12, "feet"),
  44184. default: true
  44185. },
  44186. ]
  44187. ))
  44188. characterMakers.push(() => makeCharacter(
  44189. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44190. {
  44191. front: {
  44192. height: math.unit(20, "feet"),
  44193. name: "Front",
  44194. image: {
  44195. source: "./media/characters/astra/front.svg",
  44196. extra: 1850/1714,
  44197. bottom: 106/1956
  44198. }
  44199. },
  44200. frontUndressed: {
  44201. height: math.unit(20, "feet"),
  44202. name: "Front (Undressed)",
  44203. image: {
  44204. source: "./media/characters/astra/front-undressed.svg",
  44205. extra: 1926/1749,
  44206. bottom: 0/1926
  44207. }
  44208. },
  44209. hand: {
  44210. height: math.unit(1.53, "feet"),
  44211. name: "Hand",
  44212. image: {
  44213. source: "./media/characters/astra/hand.svg"
  44214. }
  44215. },
  44216. paw: {
  44217. height: math.unit(1.53, "feet"),
  44218. name: "Paw",
  44219. image: {
  44220. source: "./media/characters/astra/paw.svg"
  44221. }
  44222. },
  44223. },
  44224. [
  44225. {
  44226. name: "Smallest",
  44227. height: math.unit(20, "feet")
  44228. },
  44229. {
  44230. name: "Normal",
  44231. height: math.unit(1e9, "miles"),
  44232. default: true
  44233. },
  44234. {
  44235. name: "Larger",
  44236. height: math.unit(5, "multiverses")
  44237. },
  44238. {
  44239. name: "Largest",
  44240. height: math.unit(1e9, "multiverses")
  44241. },
  44242. ]
  44243. ))
  44244. characterMakers.push(() => makeCharacter(
  44245. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44246. {
  44247. front: {
  44248. height: math.unit(8, "feet"),
  44249. name: "Front",
  44250. image: {
  44251. source: "./media/characters/breanna/front.svg",
  44252. extra: 1912/1632,
  44253. bottom: 33/1945
  44254. }
  44255. },
  44256. },
  44257. [
  44258. {
  44259. name: "Smallest",
  44260. height: math.unit(8, "feet")
  44261. },
  44262. {
  44263. name: "Normal",
  44264. height: math.unit(1, "mile"),
  44265. default: true
  44266. },
  44267. {
  44268. name: "Maximum",
  44269. height: math.unit(1500000000000, "lightyears")
  44270. },
  44271. ]
  44272. ))
  44273. characterMakers.push(() => makeCharacter(
  44274. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  44275. {
  44276. front: {
  44277. height: math.unit(5 + 11/12, "feet"),
  44278. weight: math.unit(155, "lb"),
  44279. name: "Front",
  44280. image: {
  44281. source: "./media/characters/cai/front.svg",
  44282. extra: 1823/1702,
  44283. bottom: 32/1855
  44284. }
  44285. },
  44286. back: {
  44287. height: math.unit(5 + 11/12, "feet"),
  44288. weight: math.unit(155, "lb"),
  44289. name: "Back",
  44290. image: {
  44291. source: "./media/characters/cai/back.svg",
  44292. extra: 1809/1708,
  44293. bottom: 31/1840
  44294. }
  44295. },
  44296. },
  44297. [
  44298. {
  44299. name: "Normal",
  44300. height: math.unit(5 + 11/12, "feet"),
  44301. default: true
  44302. },
  44303. {
  44304. name: "Big",
  44305. height: math.unit(15, "feet")
  44306. },
  44307. {
  44308. name: "Macro",
  44309. height: math.unit(200, "feet")
  44310. },
  44311. ]
  44312. ))
  44313. characterMakers.push(() => makeCharacter(
  44314. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  44315. {
  44316. front: {
  44317. height: math.unit(5 + 6/12, "feet"),
  44318. weight: math.unit(160, "lb"),
  44319. name: "Front",
  44320. image: {
  44321. source: "./media/characters/zanna-virtuedòttir/front.svg",
  44322. extra: 1227/1174,
  44323. bottom: 37/1264
  44324. }
  44325. },
  44326. },
  44327. [
  44328. {
  44329. name: "Macro",
  44330. height: math.unit(444, "meters"),
  44331. default: true
  44332. },
  44333. ]
  44334. ))
  44335. characterMakers.push(() => makeCharacter(
  44336. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  44337. {
  44338. front: {
  44339. height: math.unit(18 + 7/12, "feet"),
  44340. name: "Front",
  44341. image: {
  44342. source: "./media/characters/rex/front.svg",
  44343. extra: 1941/1807,
  44344. bottom: 66/2007
  44345. }
  44346. },
  44347. back: {
  44348. height: math.unit(18 + 7/12, "feet"),
  44349. name: "Back",
  44350. image: {
  44351. source: "./media/characters/rex/back.svg",
  44352. extra: 1937/1822,
  44353. bottom: 42/1979
  44354. }
  44355. },
  44356. boot: {
  44357. height: math.unit(3.45, "feet"),
  44358. name: "Boot",
  44359. image: {
  44360. source: "./media/characters/rex/boot.svg"
  44361. }
  44362. },
  44363. paw: {
  44364. height: math.unit(4.17, "feet"),
  44365. name: "Paw",
  44366. image: {
  44367. source: "./media/characters/rex/paw.svg"
  44368. }
  44369. },
  44370. head: {
  44371. height: math.unit(6.728, "feet"),
  44372. name: "Head",
  44373. image: {
  44374. source: "./media/characters/rex/head.svg"
  44375. }
  44376. },
  44377. },
  44378. [
  44379. {
  44380. name: "Nano",
  44381. height: math.unit(18 + 7/12, "feet")
  44382. },
  44383. {
  44384. name: "Micro",
  44385. height: math.unit(1.5, "megameters")
  44386. },
  44387. {
  44388. name: "Normal",
  44389. height: math.unit(440, "megameters"),
  44390. default: true
  44391. },
  44392. {
  44393. name: "Macro",
  44394. height: math.unit(2.5, "gigameters")
  44395. },
  44396. {
  44397. name: "Gigamacro",
  44398. height: math.unit(2, "galaxies")
  44399. },
  44400. ]
  44401. ))
  44402. characterMakers.push(() => makeCharacter(
  44403. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  44404. {
  44405. side: {
  44406. height: math.unit(32, "feet"),
  44407. weight: math.unit(250000, "lb"),
  44408. name: "Side",
  44409. image: {
  44410. source: "./media/characters/silverwing/side.svg",
  44411. extra: 1100/1019,
  44412. bottom: 204/1304
  44413. }
  44414. },
  44415. },
  44416. [
  44417. {
  44418. name: "Normal",
  44419. height: math.unit(32, "feet"),
  44420. default: true
  44421. },
  44422. ]
  44423. ))
  44424. characterMakers.push(() => makeCharacter(
  44425. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  44426. {
  44427. front: {
  44428. height: math.unit(6 + 6/12, "feet"),
  44429. weight: math.unit(350, "lb"),
  44430. name: "Front",
  44431. image: {
  44432. source: "./media/characters/tristan-hawthorne/front.svg",
  44433. extra: 1159/1124,
  44434. bottom: 37/1196
  44435. },
  44436. form: "labrador",
  44437. default: true
  44438. },
  44439. skunkFront: {
  44440. height: math.unit(4 + 6/12, "feet"),
  44441. weight: math.unit(120, "lb"),
  44442. name: "Front",
  44443. image: {
  44444. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  44445. extra: 1609/1551,
  44446. bottom: 169/1778
  44447. },
  44448. form: "skunk",
  44449. default: true
  44450. },
  44451. },
  44452. [
  44453. {
  44454. name: "Normal",
  44455. height: math.unit(6 + 6/12, "feet"),
  44456. form: "labrador",
  44457. default: true
  44458. },
  44459. {
  44460. name: "Normal",
  44461. height: math.unit(4 + 6/12, "feet"),
  44462. form: "skunk",
  44463. default: true
  44464. },
  44465. ],
  44466. {
  44467. "labrador": {
  44468. name: "Labrador",
  44469. default: true
  44470. },
  44471. "skunk": {
  44472. name: "Skunk"
  44473. }
  44474. }
  44475. ))
  44476. characterMakers.push(() => makeCharacter(
  44477. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  44478. {
  44479. front: {
  44480. height: math.unit(5 + 11/12, "feet"),
  44481. weight: math.unit(190, "lb"),
  44482. name: "Front",
  44483. image: {
  44484. source: "./media/characters/mizu/front.svg",
  44485. extra: 1988/1788,
  44486. bottom: 14/2002
  44487. }
  44488. },
  44489. },
  44490. [
  44491. {
  44492. name: "Normal",
  44493. height: math.unit(5 + 11/12, "feet"),
  44494. default: true
  44495. },
  44496. ]
  44497. ))
  44498. characterMakers.push(() => makeCharacter(
  44499. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  44500. {
  44501. front: {
  44502. height: math.unit(1.7, "feet"),
  44503. weight: math.unit(50, "lb"),
  44504. name: "Front",
  44505. image: {
  44506. source: "./media/characters/dechroma/front.svg",
  44507. extra: 1095/859,
  44508. bottom: 64/1159
  44509. }
  44510. },
  44511. },
  44512. [
  44513. {
  44514. name: "Normal",
  44515. height: math.unit(1.7, "feet"),
  44516. default: true
  44517. },
  44518. ]
  44519. ))
  44520. characterMakers.push(() => makeCharacter(
  44521. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  44522. {
  44523. side: {
  44524. height: math.unit(30, "feet"),
  44525. name: "Side",
  44526. image: {
  44527. source: "./media/characters/veluren-thanazel/side.svg",
  44528. extra: 1611/633,
  44529. bottom: 118/1729
  44530. }
  44531. },
  44532. front: {
  44533. height: math.unit(30, "feet"),
  44534. name: "Front",
  44535. image: {
  44536. source: "./media/characters/veluren-thanazel/front.svg",
  44537. extra: 1486/636,
  44538. bottom: 238/1724
  44539. }
  44540. },
  44541. head: {
  44542. height: math.unit(21.4, "feet"),
  44543. name: "Head",
  44544. image: {
  44545. source: "./media/characters/veluren-thanazel/head.svg"
  44546. }
  44547. },
  44548. genitals: {
  44549. height: math.unit(19.4, "feet"),
  44550. name: "Genitals",
  44551. image: {
  44552. source: "./media/characters/veluren-thanazel/genitals.svg"
  44553. }
  44554. },
  44555. },
  44556. [
  44557. {
  44558. name: "Social",
  44559. height: math.unit(6, "feet")
  44560. },
  44561. {
  44562. name: "Play",
  44563. height: math.unit(12, "feet")
  44564. },
  44565. {
  44566. name: "True",
  44567. height: math.unit(30, "feet"),
  44568. default: true
  44569. },
  44570. ]
  44571. ))
  44572. characterMakers.push(() => makeCharacter(
  44573. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  44574. {
  44575. front: {
  44576. height: math.unit(7 + 6/12, "feet"),
  44577. weight: math.unit(500, "kg"),
  44578. name: "Front",
  44579. image: {
  44580. source: "./media/characters/arcturas/front.svg",
  44581. extra: 1700/1500,
  44582. bottom: 145/1845
  44583. }
  44584. },
  44585. },
  44586. [
  44587. {
  44588. name: "Normal",
  44589. height: math.unit(7 + 6/12, "feet"),
  44590. default: true
  44591. },
  44592. ]
  44593. ))
  44594. characterMakers.push(() => makeCharacter(
  44595. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  44596. {
  44597. side: {
  44598. height: math.unit(6, "feet"),
  44599. weight: math.unit(2, "tons"),
  44600. name: "Side",
  44601. image: {
  44602. source: "./media/characters/vitaen/side.svg",
  44603. extra: 1157/617,
  44604. bottom: 122/1279
  44605. }
  44606. },
  44607. },
  44608. [
  44609. {
  44610. name: "Normal",
  44611. height: math.unit(6, "feet"),
  44612. default: true
  44613. },
  44614. ]
  44615. ))
  44616. characterMakers.push(() => makeCharacter(
  44617. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  44618. {
  44619. front: {
  44620. height: math.unit(19, "feet"),
  44621. name: "Front",
  44622. image: {
  44623. source: "./media/characters/fia-dreamweaver/front.svg",
  44624. extra: 1630/1504,
  44625. bottom: 25/1655
  44626. }
  44627. },
  44628. },
  44629. [
  44630. {
  44631. name: "Normal",
  44632. height: math.unit(19, "feet"),
  44633. default: true
  44634. },
  44635. ]
  44636. ))
  44637. characterMakers.push(() => makeCharacter(
  44638. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  44639. {
  44640. front: {
  44641. height: math.unit(5 + 4/12, "feet"),
  44642. name: "Front",
  44643. image: {
  44644. source: "./media/characters/artan/front.svg",
  44645. extra: 1618/1535,
  44646. bottom: 46/1664
  44647. }
  44648. },
  44649. back: {
  44650. height: math.unit(5 + 4/12, "feet"),
  44651. name: "Back",
  44652. image: {
  44653. source: "./media/characters/artan/back.svg",
  44654. extra: 1618/1543,
  44655. bottom: 31/1649
  44656. }
  44657. },
  44658. },
  44659. [
  44660. {
  44661. name: "Normal",
  44662. height: math.unit(5 + 4/12, "feet"),
  44663. default: true
  44664. },
  44665. ]
  44666. ))
  44667. characterMakers.push(() => makeCharacter(
  44668. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  44669. {
  44670. side: {
  44671. height: math.unit(182, "cm"),
  44672. weight: math.unit(1000, "lb"),
  44673. name: "Side",
  44674. image: {
  44675. source: "./media/characters/silver-dragon/side.svg",
  44676. extra: 710/287,
  44677. bottom: 88/798
  44678. }
  44679. },
  44680. },
  44681. [
  44682. {
  44683. name: "Normal",
  44684. height: math.unit(182, "cm"),
  44685. default: true
  44686. },
  44687. ]
  44688. ))
  44689. characterMakers.push(() => makeCharacter(
  44690. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  44691. {
  44692. side: {
  44693. height: math.unit(6 + 6/12, "feet"),
  44694. weight: math.unit(1.5, "tons"),
  44695. name: "Side",
  44696. image: {
  44697. source: "./media/characters/zephyr/side.svg",
  44698. extra: 1433/586,
  44699. bottom: 109/1542
  44700. }
  44701. },
  44702. },
  44703. [
  44704. {
  44705. name: "Normal",
  44706. height: math.unit(6 + 6/12, "feet"),
  44707. default: true
  44708. },
  44709. ]
  44710. ))
  44711. characterMakers.push(() => makeCharacter(
  44712. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  44713. {
  44714. side: {
  44715. height: math.unit(1, "feet"),
  44716. name: "Side",
  44717. image: {
  44718. source: "./media/characters/vixye/side.svg",
  44719. extra: 632/541,
  44720. bottom: 0/632
  44721. }
  44722. },
  44723. },
  44724. [
  44725. {
  44726. name: "Normal",
  44727. height: math.unit(1, "feet"),
  44728. default: true
  44729. },
  44730. {
  44731. name: "True",
  44732. height: math.unit(1e15, "multiverses")
  44733. },
  44734. ]
  44735. ))
  44736. characterMakers.push(() => makeCharacter(
  44737. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  44738. {
  44739. front: {
  44740. height: math.unit(8 + 2/12, "feet"),
  44741. weight: math.unit(650, "lb"),
  44742. name: "Front",
  44743. image: {
  44744. source: "./media/characters/darla-mac-lochlainn/front.svg",
  44745. extra: 1174/1137,
  44746. bottom: 82/1256
  44747. }
  44748. },
  44749. back: {
  44750. height: math.unit(8 + 2/12, "feet"),
  44751. weight: math.unit(650, "lb"),
  44752. name: "Back",
  44753. image: {
  44754. source: "./media/characters/darla-mac-lochlainn/back.svg",
  44755. extra: 1204/1157,
  44756. bottom: 46/1250
  44757. }
  44758. },
  44759. },
  44760. [
  44761. {
  44762. name: "Wildform",
  44763. height: math.unit(8 + 2/12, "feet"),
  44764. default: true
  44765. },
  44766. ]
  44767. ))
  44768. characterMakers.push(() => makeCharacter(
  44769. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  44770. {
  44771. front: {
  44772. height: math.unit(18, "feet"),
  44773. name: "Front",
  44774. image: {
  44775. source: "./media/characters/cyphin/front.svg",
  44776. extra: 970/886,
  44777. bottom: 42/1012
  44778. }
  44779. },
  44780. back: {
  44781. height: math.unit(18, "feet"),
  44782. name: "Back",
  44783. image: {
  44784. source: "./media/characters/cyphin/back.svg",
  44785. extra: 1009/894,
  44786. bottom: 24/1033
  44787. }
  44788. },
  44789. head: {
  44790. height: math.unit(5.05, "feet"),
  44791. name: "Head",
  44792. image: {
  44793. source: "./media/characters/cyphin/head.svg"
  44794. }
  44795. },
  44796. tailbud: {
  44797. height: math.unit(5, "feet"),
  44798. name: "Tailbud",
  44799. image: {
  44800. source: "./media/characters/cyphin/tailbud.svg"
  44801. }
  44802. },
  44803. },
  44804. [
  44805. ]
  44806. ))
  44807. characterMakers.push(() => makeCharacter(
  44808. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  44809. {
  44810. side: {
  44811. height: math.unit(10, "feet"),
  44812. weight: math.unit(6, "tons"),
  44813. name: "Side",
  44814. image: {
  44815. source: "./media/characters/raijin/side.svg",
  44816. extra: 1529/613,
  44817. bottom: 337/1866
  44818. }
  44819. },
  44820. },
  44821. [
  44822. {
  44823. name: "Normal",
  44824. height: math.unit(10, "feet"),
  44825. default: true
  44826. },
  44827. ]
  44828. ))
  44829. characterMakers.push(() => makeCharacter(
  44830. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  44831. {
  44832. side: {
  44833. height: math.unit(9, "feet"),
  44834. name: "Side",
  44835. image: {
  44836. source: "./media/characters/nilghais/side.svg",
  44837. extra: 1047/744,
  44838. bottom: 91/1138
  44839. }
  44840. },
  44841. head: {
  44842. height: math.unit(3.14, "feet"),
  44843. name: "Head",
  44844. image: {
  44845. source: "./media/characters/nilghais/head.svg"
  44846. }
  44847. },
  44848. mouth: {
  44849. height: math.unit(4.6, "feet"),
  44850. name: "Mouth",
  44851. image: {
  44852. source: "./media/characters/nilghais/mouth.svg"
  44853. }
  44854. },
  44855. wings: {
  44856. height: math.unit(24, "feet"),
  44857. name: "Wings",
  44858. image: {
  44859. source: "./media/characters/nilghais/wings.svg"
  44860. }
  44861. },
  44862. ass: {
  44863. height: math.unit(6.12, "feet"),
  44864. name: "Ass",
  44865. image: {
  44866. source: "./media/characters/nilghais/ass.svg"
  44867. }
  44868. },
  44869. },
  44870. [
  44871. {
  44872. name: "Normal",
  44873. height: math.unit(9, "feet"),
  44874. default: true
  44875. },
  44876. ]
  44877. ))
  44878. characterMakers.push(() => makeCharacter(
  44879. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44880. {
  44881. regular: {
  44882. height: math.unit(16 + 2/12, "feet"),
  44883. weight: math.unit(2300, "lb"),
  44884. name: "Regular",
  44885. image: {
  44886. source: "./media/characters/zolgar/regular.svg",
  44887. extra: 1246/1004,
  44888. bottom: 124/1370
  44889. }
  44890. },
  44891. boxers: {
  44892. height: math.unit(16 + 2/12, "feet"),
  44893. weight: math.unit(2300, "lb"),
  44894. name: "Boxers",
  44895. image: {
  44896. source: "./media/characters/zolgar/boxers.svg",
  44897. extra: 1246/1004,
  44898. bottom: 124/1370
  44899. }
  44900. },
  44901. armored: {
  44902. height: math.unit(16 + 2/12, "feet"),
  44903. weight: math.unit(2300, "lb"),
  44904. name: "Armored",
  44905. image: {
  44906. source: "./media/characters/zolgar/armored.svg",
  44907. extra: 1246/1004,
  44908. bottom: 124/1370
  44909. }
  44910. },
  44911. goth: {
  44912. height: math.unit(16 + 2/12, "feet"),
  44913. weight: math.unit(2300, "lb"),
  44914. name: "Goth",
  44915. image: {
  44916. source: "./media/characters/zolgar/goth.svg",
  44917. extra: 1246/1004,
  44918. bottom: 124/1370
  44919. }
  44920. },
  44921. },
  44922. [
  44923. {
  44924. name: "Shrunken Down",
  44925. height: math.unit(9 + 2/12, "feet")
  44926. },
  44927. {
  44928. name: "Normal",
  44929. height: math.unit(16 + 2/12, "feet"),
  44930. default: true
  44931. },
  44932. ]
  44933. ))
  44934. characterMakers.push(() => makeCharacter(
  44935. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44936. {
  44937. front: {
  44938. height: math.unit(6, "feet"),
  44939. weight: math.unit(168, "lb"),
  44940. name: "Front",
  44941. image: {
  44942. source: "./media/characters/luca/front.svg",
  44943. extra: 841/667,
  44944. bottom: 102/943
  44945. }
  44946. },
  44947. },
  44948. [
  44949. {
  44950. name: "Normal",
  44951. height: math.unit(6, "feet"),
  44952. default: true
  44953. },
  44954. ]
  44955. ))
  44956. characterMakers.push(() => makeCharacter(
  44957. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44958. {
  44959. side: {
  44960. height: math.unit(7 + 3/12, "feet"),
  44961. weight: math.unit(312, "lb"),
  44962. name: "Side",
  44963. image: {
  44964. source: "./media/characters/zezo/side.svg",
  44965. extra: 1192/1067,
  44966. bottom: 63/1255
  44967. }
  44968. },
  44969. },
  44970. [
  44971. {
  44972. name: "Normal",
  44973. height: math.unit(7 + 3/12, "feet"),
  44974. default: true
  44975. },
  44976. ]
  44977. ))
  44978. characterMakers.push(() => makeCharacter(
  44979. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44980. {
  44981. front: {
  44982. height: math.unit(5 + 5/12, "feet"),
  44983. weight: math.unit(170, "lb"),
  44984. name: "Front",
  44985. image: {
  44986. source: "./media/characters/mayso/front.svg",
  44987. extra: 1215/1108,
  44988. bottom: 16/1231
  44989. }
  44990. },
  44991. },
  44992. [
  44993. {
  44994. name: "Normal",
  44995. height: math.unit(5 + 5/12, "feet"),
  44996. default: true
  44997. },
  44998. ]
  44999. ))
  45000. characterMakers.push(() => makeCharacter(
  45001. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  45002. {
  45003. front: {
  45004. height: math.unit(4 + 3/12, "feet"),
  45005. weight: math.unit(80, "lb"),
  45006. name: "Front",
  45007. image: {
  45008. source: "./media/characters/hess/front.svg",
  45009. extra: 1200/1123,
  45010. bottom: 16/1216
  45011. }
  45012. },
  45013. },
  45014. [
  45015. {
  45016. name: "Normal",
  45017. height: math.unit(4 + 3/12, "feet"),
  45018. default: true
  45019. },
  45020. ]
  45021. ))
  45022. characterMakers.push(() => makeCharacter(
  45023. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  45024. {
  45025. front: {
  45026. height: math.unit(1.9, "meters"),
  45027. name: "Front",
  45028. image: {
  45029. source: "./media/characters/ashgar/front.svg",
  45030. extra: 1177/1146,
  45031. bottom: 99/1276
  45032. }
  45033. },
  45034. back: {
  45035. height: math.unit(1.9, "meters"),
  45036. name: "Back",
  45037. image: {
  45038. source: "./media/characters/ashgar/back.svg",
  45039. extra: 1201/1183,
  45040. bottom: 53/1254
  45041. }
  45042. },
  45043. feral: {
  45044. height: math.unit(1.4, "meters"),
  45045. name: "Feral",
  45046. image: {
  45047. source: "./media/characters/ashgar/feral.svg",
  45048. extra: 370/345,
  45049. bottom: 45/415
  45050. }
  45051. },
  45052. },
  45053. [
  45054. {
  45055. name: "Normal",
  45056. height: math.unit(1.9, "meters"),
  45057. default: true
  45058. },
  45059. ]
  45060. ))
  45061. characterMakers.push(() => makeCharacter(
  45062. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  45063. {
  45064. regular: {
  45065. height: math.unit(6, "feet"),
  45066. weight: math.unit(220, "lb"),
  45067. name: "Regular",
  45068. image: {
  45069. source: "./media/characters/phillip/regular.svg",
  45070. extra: 1373/1277,
  45071. bottom: 75/1448
  45072. }
  45073. },
  45074. dressed: {
  45075. height: math.unit(6, "feet"),
  45076. weight: math.unit(220, "lb"),
  45077. name: "Dressed",
  45078. image: {
  45079. source: "./media/characters/phillip/dressed.svg",
  45080. extra: 1373/1277,
  45081. bottom: 75/1448
  45082. }
  45083. },
  45084. paw: {
  45085. height: math.unit(1.44, "feet"),
  45086. name: "Paw",
  45087. image: {
  45088. source: "./media/characters/phillip/paw.svg"
  45089. }
  45090. },
  45091. },
  45092. [
  45093. {
  45094. name: "Normal",
  45095. height: math.unit(6, "feet"),
  45096. default: true
  45097. },
  45098. ]
  45099. ))
  45100. characterMakers.push(() => makeCharacter(
  45101. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  45102. {
  45103. side: {
  45104. height: math.unit(42, "feet"),
  45105. name: "Side",
  45106. image: {
  45107. source: "./media/characters/uvula/side.svg",
  45108. extra: 683/586,
  45109. bottom: 60/743
  45110. }
  45111. },
  45112. front: {
  45113. height: math.unit(42, "feet"),
  45114. name: "Front",
  45115. image: {
  45116. source: "./media/characters/uvula/front.svg",
  45117. extra: 705/613,
  45118. bottom: 54/759
  45119. }
  45120. },
  45121. maw: {
  45122. height: math.unit(23.5, "feet"),
  45123. name: "Maw",
  45124. image: {
  45125. source: "./media/characters/uvula/maw.svg"
  45126. }
  45127. },
  45128. },
  45129. [
  45130. {
  45131. name: "Original Size",
  45132. height: math.unit(14, "inches")
  45133. },
  45134. {
  45135. name: "Human Size",
  45136. height: math.unit(6, "feet")
  45137. },
  45138. {
  45139. name: "Big",
  45140. height: math.unit(42, "feet"),
  45141. default: true
  45142. },
  45143. {
  45144. name: "Bigger",
  45145. height: math.unit(100, "feet")
  45146. },
  45147. ]
  45148. ))
  45149. characterMakers.push(() => makeCharacter(
  45150. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  45151. {
  45152. front: {
  45153. height: math.unit(5 + 11/12, "feet"),
  45154. name: "Front",
  45155. image: {
  45156. source: "./media/characters/lannah/front.svg",
  45157. extra: 1208/1113,
  45158. bottom: 97/1305
  45159. }
  45160. },
  45161. },
  45162. [
  45163. {
  45164. name: "Normal",
  45165. height: math.unit(5 + 11/12, "feet"),
  45166. default: true
  45167. },
  45168. ]
  45169. ))
  45170. characterMakers.push(() => makeCharacter(
  45171. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  45172. {
  45173. front: {
  45174. height: math.unit(6 + 3/12, "feet"),
  45175. weight: math.unit(3.5, "tons"),
  45176. name: "Front",
  45177. image: {
  45178. source: "./media/characters/emberflame/front.svg",
  45179. extra: 1198/672,
  45180. bottom: 82/1280
  45181. }
  45182. },
  45183. side: {
  45184. height: math.unit(6 + 3/12, "feet"),
  45185. weight: math.unit(3.5, "tons"),
  45186. name: "Side",
  45187. image: {
  45188. source: "./media/characters/emberflame/side.svg",
  45189. extra: 938/527,
  45190. bottom: 56/994
  45191. }
  45192. },
  45193. },
  45194. [
  45195. {
  45196. name: "Normal",
  45197. height: math.unit(6 + 3/12, "feet"),
  45198. default: true
  45199. },
  45200. ]
  45201. ))
  45202. characterMakers.push(() => makeCharacter(
  45203. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  45204. {
  45205. side: {
  45206. height: math.unit(17.5, "feet"),
  45207. weight: math.unit(35, "tons"),
  45208. name: "Side",
  45209. image: {
  45210. source: "./media/characters/sophie-ambrose/side.svg",
  45211. extra: 1573/1242,
  45212. bottom: 71/1644
  45213. }
  45214. },
  45215. maw: {
  45216. height: math.unit(7.4, "feet"),
  45217. name: "Maw",
  45218. image: {
  45219. source: "./media/characters/sophie-ambrose/maw.svg"
  45220. }
  45221. },
  45222. },
  45223. [
  45224. {
  45225. name: "Normal",
  45226. height: math.unit(17.5, "feet"),
  45227. default: true
  45228. },
  45229. ]
  45230. ))
  45231. characterMakers.push(() => makeCharacter(
  45232. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  45233. {
  45234. front: {
  45235. height: math.unit(280, "feet"),
  45236. weight: math.unit(550, "tons"),
  45237. name: "Front",
  45238. image: {
  45239. source: "./media/characters/king-mugi/front.svg",
  45240. extra: 1102/947,
  45241. bottom: 104/1206
  45242. }
  45243. },
  45244. },
  45245. [
  45246. {
  45247. name: "King Mugi",
  45248. height: math.unit(280, "feet"),
  45249. default: true
  45250. },
  45251. ]
  45252. ))
  45253. characterMakers.push(() => makeCharacter(
  45254. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  45255. {
  45256. female: {
  45257. height: math.unit(300, "meters"),
  45258. name: "Front",
  45259. image: {
  45260. source: "./media/characters/nova-fox/female.svg",
  45261. extra: 664/632,
  45262. bottom: 51/715
  45263. },
  45264. form: "female",
  45265. default: true
  45266. },
  45267. male: {
  45268. height: math.unit(300, "meters"),
  45269. name: "Front",
  45270. image: {
  45271. source: "./media/characters/nova-fox/male.svg",
  45272. extra: 663/631,
  45273. bottom: 30/693
  45274. },
  45275. form: "male",
  45276. default: true
  45277. },
  45278. },
  45279. [
  45280. {
  45281. name: "Macro",
  45282. height: math.unit(300, "meters"),
  45283. default: true,
  45284. allForms: true
  45285. },
  45286. ],
  45287. {
  45288. "female": {
  45289. name: "Female",
  45290. default: true
  45291. },
  45292. "male": {
  45293. name: "Male",
  45294. },
  45295. }
  45296. ))
  45297. characterMakers.push(() => makeCharacter(
  45298. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  45299. {
  45300. front: {
  45301. height: math.unit(6 + 3/12, "feet"),
  45302. weight: math.unit(170, "lb"),
  45303. name: "Front",
  45304. image: {
  45305. source: "./media/characters/sam-bat/front.svg",
  45306. extra: 1601/1411,
  45307. bottom: 125/1726
  45308. }
  45309. },
  45310. back: {
  45311. height: math.unit(6 + 3/12, "feet"),
  45312. weight: math.unit(170, "lb"),
  45313. name: "Back",
  45314. image: {
  45315. source: "./media/characters/sam-bat/back.svg",
  45316. extra: 1577/1405,
  45317. bottom: 58/1635
  45318. }
  45319. },
  45320. },
  45321. [
  45322. {
  45323. name: "Normal",
  45324. height: math.unit(6 + 3/12, "feet"),
  45325. default: true
  45326. },
  45327. ]
  45328. ))
  45329. characterMakers.push(() => makeCharacter(
  45330. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  45331. {
  45332. front: {
  45333. height: math.unit(59, "feet"),
  45334. weight: math.unit(40000, "lb"),
  45335. name: "Front",
  45336. image: {
  45337. source: "./media/characters/inari/front.svg",
  45338. extra: 1884/1350,
  45339. bottom: 95/1979
  45340. }
  45341. },
  45342. },
  45343. [
  45344. {
  45345. name: "Gigantamax",
  45346. height: math.unit(59, "feet"),
  45347. default: true
  45348. },
  45349. ]
  45350. ))
  45351. characterMakers.push(() => makeCharacter(
  45352. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  45353. {
  45354. front: {
  45355. height: math.unit(5 + 8/12, "feet"),
  45356. name: "Front",
  45357. image: {
  45358. source: "./media/characters/elizabeth/front.svg",
  45359. extra: 1395/1298,
  45360. bottom: 54/1449
  45361. }
  45362. },
  45363. mouth: {
  45364. height: math.unit(1.97, "feet"),
  45365. name: "Mouth",
  45366. image: {
  45367. source: "./media/characters/elizabeth/mouth.svg"
  45368. }
  45369. },
  45370. foot: {
  45371. height: math.unit(1.17, "feet"),
  45372. name: "Foot",
  45373. image: {
  45374. source: "./media/characters/elizabeth/foot.svg"
  45375. }
  45376. },
  45377. },
  45378. [
  45379. {
  45380. name: "Normal",
  45381. height: math.unit(5 + 8/12, "feet"),
  45382. default: true
  45383. },
  45384. {
  45385. name: "Minimacro",
  45386. height: math.unit(18, "feet")
  45387. },
  45388. {
  45389. name: "Macro",
  45390. height: math.unit(180, "feet")
  45391. },
  45392. ]
  45393. ))
  45394. characterMakers.push(() => makeCharacter(
  45395. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  45396. {
  45397. front: {
  45398. height: math.unit(5 + 2/12, "feet"),
  45399. name: "Front",
  45400. image: {
  45401. source: "./media/characters/october-gossamer/front.svg",
  45402. extra: 505/454,
  45403. bottom: 7/512
  45404. }
  45405. },
  45406. back: {
  45407. height: math.unit(5 + 2/12, "feet"),
  45408. name: "Back",
  45409. image: {
  45410. source: "./media/characters/october-gossamer/back.svg",
  45411. extra: 501/454,
  45412. bottom: 11/512
  45413. }
  45414. },
  45415. },
  45416. [
  45417. {
  45418. name: "Normal",
  45419. height: math.unit(5 + 2/12, "feet"),
  45420. default: true
  45421. },
  45422. ]
  45423. ))
  45424. characterMakers.push(() => makeCharacter(
  45425. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  45426. {
  45427. front: {
  45428. height: math.unit(5, "feet"),
  45429. name: "Front",
  45430. image: {
  45431. source: "./media/characters/epiglottis/front.svg",
  45432. extra: 923/849,
  45433. bottom: 17/940
  45434. }
  45435. },
  45436. },
  45437. [
  45438. {
  45439. name: "Original Size",
  45440. height: math.unit(10, "inches")
  45441. },
  45442. {
  45443. name: "Human Size",
  45444. height: math.unit(5, "feet"),
  45445. default: true
  45446. },
  45447. {
  45448. name: "Big",
  45449. height: math.unit(25, "feet")
  45450. },
  45451. {
  45452. name: "Bigger",
  45453. height: math.unit(50, "feet")
  45454. },
  45455. {
  45456. name: "oh lawd",
  45457. height: math.unit(75, "feet")
  45458. },
  45459. ]
  45460. ))
  45461. characterMakers.push(() => makeCharacter(
  45462. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  45463. {
  45464. front: {
  45465. height: math.unit(2 + 4/12, "feet"),
  45466. weight: math.unit(60, "lb"),
  45467. name: "Front",
  45468. image: {
  45469. source: "./media/characters/lerm/front.svg",
  45470. extra: 796/790,
  45471. bottom: 79/875
  45472. }
  45473. },
  45474. },
  45475. [
  45476. {
  45477. name: "Normal",
  45478. height: math.unit(2 + 4/12, "feet"),
  45479. default: true
  45480. },
  45481. ]
  45482. ))
  45483. characterMakers.push(() => makeCharacter(
  45484. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  45485. {
  45486. front: {
  45487. height: math.unit(5.5, "feet"),
  45488. weight: math.unit(130, "lb"),
  45489. name: "Front",
  45490. image: {
  45491. source: "./media/characters/xena-nebadon/front.svg",
  45492. extra: 1828/1730,
  45493. bottom: 79/1907
  45494. }
  45495. },
  45496. },
  45497. [
  45498. {
  45499. name: "Tiny Puppy",
  45500. height: math.unit(3, "inches")
  45501. },
  45502. {
  45503. name: "Normal",
  45504. height: math.unit(5.5, "feet"),
  45505. default: true
  45506. },
  45507. {
  45508. name: "Lotta Lady",
  45509. height: math.unit(12, "feet")
  45510. },
  45511. {
  45512. name: "Pretty Big",
  45513. height: math.unit(100, "feet")
  45514. },
  45515. {
  45516. name: "Big",
  45517. height: math.unit(500, "feet")
  45518. },
  45519. {
  45520. name: "Skyscraper Toys",
  45521. height: math.unit(2500, "feet")
  45522. },
  45523. {
  45524. name: "Plane Catcher",
  45525. height: math.unit(8, "miles")
  45526. },
  45527. {
  45528. name: "Planet Toys",
  45529. height: math.unit(15, "earths")
  45530. },
  45531. {
  45532. name: "Stardust",
  45533. height: math.unit(0.25, "galaxies")
  45534. },
  45535. {
  45536. name: "Snacks",
  45537. height: math.unit(70, "universes")
  45538. },
  45539. ]
  45540. ))
  45541. characterMakers.push(() => makeCharacter(
  45542. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  45543. {
  45544. front: {
  45545. height: math.unit(1.6, "meters"),
  45546. weight: math.unit(60, "kg"),
  45547. name: "Front",
  45548. image: {
  45549. source: "./media/characters/bounty/front.svg",
  45550. extra: 1426/1308,
  45551. bottom: 15/1441
  45552. }
  45553. },
  45554. back: {
  45555. height: math.unit(1.6, "meters"),
  45556. weight: math.unit(60, "kg"),
  45557. name: "Back",
  45558. image: {
  45559. source: "./media/characters/bounty/back.svg",
  45560. extra: 1417/1307,
  45561. bottom: 8/1425
  45562. }
  45563. },
  45564. },
  45565. [
  45566. {
  45567. name: "Normal",
  45568. height: math.unit(1.6, "meters"),
  45569. default: true
  45570. },
  45571. {
  45572. name: "Macro",
  45573. height: math.unit(300, "meters")
  45574. },
  45575. ]
  45576. ))
  45577. characterMakers.push(() => makeCharacter(
  45578. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  45579. {
  45580. front: {
  45581. height: math.unit(2 + 8/12, "feet"),
  45582. weight: math.unit(15, "lb"),
  45583. name: "Front",
  45584. image: {
  45585. source: "./media/characters/mochi/front.svg",
  45586. extra: 1022/852,
  45587. bottom: 435/1457
  45588. }
  45589. },
  45590. back: {
  45591. height: math.unit(2 + 8/12, "feet"),
  45592. weight: math.unit(15, "lb"),
  45593. name: "Back",
  45594. image: {
  45595. source: "./media/characters/mochi/back.svg",
  45596. extra: 1335/1119,
  45597. bottom: 39/1374
  45598. }
  45599. },
  45600. bird: {
  45601. height: math.unit(2 + 8/12, "feet"),
  45602. weight: math.unit(15, "lb"),
  45603. name: "Bird",
  45604. image: {
  45605. source: "./media/characters/mochi/bird.svg",
  45606. extra: 1251/1113,
  45607. bottom: 178/1429
  45608. }
  45609. },
  45610. kaiju: {
  45611. height: math.unit(154, "feet"),
  45612. weight: math.unit(1e7, "lb"),
  45613. name: "Kaiju",
  45614. image: {
  45615. source: "./media/characters/mochi/kaiju.svg",
  45616. extra: 460/324,
  45617. bottom: 40/500
  45618. }
  45619. },
  45620. head: {
  45621. height: math.unit(1.21, "feet"),
  45622. name: "Head",
  45623. image: {
  45624. source: "./media/characters/mochi/head.svg"
  45625. }
  45626. },
  45627. alternateTail: {
  45628. height: math.unit(2 + 8/12, "feet"),
  45629. weight: math.unit(45, "lb"),
  45630. name: "Alternate Tail",
  45631. image: {
  45632. source: "./media/characters/mochi/alternate-tail.svg",
  45633. extra: 139/76,
  45634. bottom: 45/184
  45635. }
  45636. },
  45637. },
  45638. [
  45639. {
  45640. name: "Micro",
  45641. height: math.unit(2, "inches")
  45642. },
  45643. {
  45644. name: "Normal",
  45645. height: math.unit(2 + 8/12, "feet"),
  45646. default: true
  45647. },
  45648. {
  45649. name: "Macro",
  45650. height: math.unit(106, "feet")
  45651. },
  45652. ]
  45653. ))
  45654. characterMakers.push(() => makeCharacter(
  45655. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  45656. {
  45657. front: {
  45658. height: math.unit(5.67, "feet"),
  45659. weight: math.unit(135, "lb"),
  45660. name: "Front",
  45661. image: {
  45662. source: "./media/characters/sarel/front.svg",
  45663. extra: 865/788,
  45664. bottom: 97/962
  45665. }
  45666. },
  45667. back: {
  45668. height: math.unit(5.67, "feet"),
  45669. weight: math.unit(135, "lb"),
  45670. name: "Back",
  45671. image: {
  45672. source: "./media/characters/sarel/back.svg",
  45673. extra: 857/777,
  45674. bottom: 32/889
  45675. }
  45676. },
  45677. chozoan: {
  45678. height: math.unit(5.67, "feet"),
  45679. weight: math.unit(135, "lb"),
  45680. name: "Chozoan",
  45681. image: {
  45682. source: "./media/characters/sarel/chozoan.svg",
  45683. extra: 865/788,
  45684. bottom: 97/962
  45685. }
  45686. },
  45687. current: {
  45688. height: math.unit(5.67, "feet"),
  45689. weight: math.unit(135, "lb"),
  45690. name: "Current",
  45691. image: {
  45692. source: "./media/characters/sarel/current.svg",
  45693. extra: 865/788,
  45694. bottom: 97/962
  45695. }
  45696. },
  45697. head: {
  45698. height: math.unit(1.77, "feet"),
  45699. name: "Head",
  45700. image: {
  45701. source: "./media/characters/sarel/head.svg"
  45702. }
  45703. },
  45704. claws: {
  45705. height: math.unit(1.8, "feet"),
  45706. name: "Claws",
  45707. image: {
  45708. source: "./media/characters/sarel/claws.svg"
  45709. }
  45710. },
  45711. clawsAlt: {
  45712. height: math.unit(1.8, "feet"),
  45713. name: "Claws-alt",
  45714. image: {
  45715. source: "./media/characters/sarel/claws-alt.svg"
  45716. }
  45717. },
  45718. },
  45719. [
  45720. {
  45721. name: "Normal",
  45722. height: math.unit(5.67, "feet"),
  45723. default: true
  45724. },
  45725. ]
  45726. ))
  45727. characterMakers.push(() => makeCharacter(
  45728. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  45729. {
  45730. front: {
  45731. height: math.unit(5500, "feet"),
  45732. name: "Front",
  45733. image: {
  45734. source: "./media/characters/alyonia/front.svg",
  45735. extra: 1200/1135,
  45736. bottom: 29/1229
  45737. }
  45738. },
  45739. back: {
  45740. height: math.unit(5500, "feet"),
  45741. name: "Back",
  45742. image: {
  45743. source: "./media/characters/alyonia/back.svg",
  45744. extra: 1205/1138,
  45745. bottom: 10/1215
  45746. }
  45747. },
  45748. },
  45749. [
  45750. {
  45751. name: "Small",
  45752. height: math.unit(10, "feet")
  45753. },
  45754. {
  45755. name: "Macro",
  45756. height: math.unit(500, "feet")
  45757. },
  45758. {
  45759. name: "Mega Macro",
  45760. height: math.unit(5500, "feet"),
  45761. default: true
  45762. },
  45763. {
  45764. name: "Mega Macro+",
  45765. height: math.unit(500000, "feet")
  45766. },
  45767. {
  45768. name: "Giga Macro",
  45769. height: math.unit(3000, "miles")
  45770. },
  45771. {
  45772. name: "Tera Macro",
  45773. height: math.unit(2.8e6, "miles")
  45774. },
  45775. {
  45776. name: "Galactic",
  45777. height: math.unit(120000, "lightyears")
  45778. },
  45779. ]
  45780. ))
  45781. characterMakers.push(() => makeCharacter(
  45782. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  45783. {
  45784. werewolf: {
  45785. height: math.unit(8, "feet"),
  45786. weight: math.unit(425, "lb"),
  45787. name: "Werewolf",
  45788. image: {
  45789. source: "./media/characters/autumn/werewolf.svg",
  45790. extra: 2154/2031,
  45791. bottom: 160/2314
  45792. }
  45793. },
  45794. human: {
  45795. height: math.unit(5 + 8/12, "feet"),
  45796. weight: math.unit(150, "lb"),
  45797. name: "Human",
  45798. image: {
  45799. source: "./media/characters/autumn/human.svg",
  45800. extra: 1200/1149,
  45801. bottom: 30/1230
  45802. }
  45803. },
  45804. },
  45805. [
  45806. {
  45807. name: "Normal",
  45808. height: math.unit(8, "feet"),
  45809. default: true
  45810. },
  45811. ]
  45812. ))
  45813. characterMakers.push(() => makeCharacter(
  45814. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  45815. {
  45816. front: {
  45817. height: math.unit(8 + 5/12, "feet"),
  45818. weight: math.unit(825, "lb"),
  45819. name: "Front",
  45820. image: {
  45821. source: "./media/characters/cobalt-charizard/front.svg",
  45822. extra: 1268/1155,
  45823. bottom: 122/1390
  45824. }
  45825. },
  45826. side: {
  45827. height: math.unit(8 + 5/12, "feet"),
  45828. weight: math.unit(825, "lb"),
  45829. name: "Side",
  45830. image: {
  45831. source: "./media/characters/cobalt-charizard/side.svg",
  45832. extra: 1348/1257,
  45833. bottom: 58/1406
  45834. }
  45835. },
  45836. gMax: {
  45837. height: math.unit(134 + 11/12, "feet"),
  45838. name: "G-Max",
  45839. image: {
  45840. source: "./media/characters/cobalt-charizard/g-max.svg",
  45841. extra: 1835/1541,
  45842. bottom: 151/1986
  45843. }
  45844. },
  45845. },
  45846. [
  45847. {
  45848. name: "Normal",
  45849. height: math.unit(8 + 5/12, "feet"),
  45850. default: true
  45851. },
  45852. ]
  45853. ))
  45854. characterMakers.push(() => makeCharacter(
  45855. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  45856. {
  45857. front: {
  45858. height: math.unit(6 + 3/12, "feet"),
  45859. weight: math.unit(210, "lb"),
  45860. name: "Front",
  45861. image: {
  45862. source: "./media/characters/stella/front.svg",
  45863. extra: 3549/3335,
  45864. bottom: 51/3600
  45865. }
  45866. },
  45867. },
  45868. [
  45869. {
  45870. name: "Normal",
  45871. height: math.unit(6 + 3/12, "feet"),
  45872. default: true
  45873. },
  45874. ]
  45875. ))
  45876. characterMakers.push(() => makeCharacter(
  45877. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  45878. {
  45879. front: {
  45880. height: math.unit(5, "feet"),
  45881. weight: math.unit(90, "lb"),
  45882. name: "Front",
  45883. image: {
  45884. source: "./media/characters/riley-bishop/front.svg",
  45885. extra: 1450/1428,
  45886. bottom: 152/1602
  45887. }
  45888. },
  45889. },
  45890. [
  45891. {
  45892. name: "Normal",
  45893. height: math.unit(5, "feet"),
  45894. default: true
  45895. },
  45896. ]
  45897. ))
  45898. characterMakers.push(() => makeCharacter(
  45899. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45900. {
  45901. side: {
  45902. height: math.unit(8 + 2/12, "feet"),
  45903. weight: math.unit(500, "kg"),
  45904. name: "Side",
  45905. image: {
  45906. source: "./media/characters/theo-arcanine/side.svg",
  45907. extra: 1342/1074,
  45908. bottom: 111/1453
  45909. }
  45910. },
  45911. },
  45912. [
  45913. {
  45914. name: "Normal",
  45915. height: math.unit(8 + 2/12, "feet"),
  45916. default: true
  45917. },
  45918. ]
  45919. ))
  45920. characterMakers.push(() => makeCharacter(
  45921. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45922. {
  45923. front: {
  45924. height: math.unit(4, "feet"),
  45925. name: "Front",
  45926. image: {
  45927. source: "./media/characters/kali/front.svg",
  45928. extra: 1074/867,
  45929. bottom: 34/1108
  45930. }
  45931. },
  45932. back: {
  45933. height: math.unit(4, "feet"),
  45934. name: "Back",
  45935. image: {
  45936. source: "./media/characters/kali/back.svg",
  45937. extra: 1068/863,
  45938. bottom: 26/1094
  45939. }
  45940. },
  45941. frontAlt: {
  45942. height: math.unit(4, "feet"),
  45943. name: "Front (Alt)",
  45944. image: {
  45945. source: "./media/characters/kali/front-alt.svg",
  45946. extra: 1921/1357,
  45947. bottom: 70/1991
  45948. }
  45949. },
  45950. },
  45951. [
  45952. {
  45953. name: "Normal",
  45954. height: math.unit(4, "feet"),
  45955. default: true
  45956. },
  45957. {
  45958. name: "Big'vali",
  45959. height: math.unit(11, "feet")
  45960. },
  45961. {
  45962. name: "Macro",
  45963. height: math.unit(32, "meters")
  45964. },
  45965. {
  45966. name: "Macro+",
  45967. height: math.unit(150, "meters")
  45968. },
  45969. {
  45970. name: "Megamacro",
  45971. height: math.unit(7500, "meters")
  45972. },
  45973. {
  45974. name: "Megamacro+",
  45975. height: math.unit(80, "kilometers")
  45976. },
  45977. ]
  45978. ))
  45979. characterMakers.push(() => makeCharacter(
  45980. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45981. {
  45982. side: {
  45983. height: math.unit(5 + 11/12, "feet"),
  45984. weight: math.unit(236, "lb"),
  45985. name: "Side",
  45986. image: {
  45987. source: "./media/characters/gapp/side.svg",
  45988. extra: 775/340,
  45989. bottom: 58/833
  45990. }
  45991. },
  45992. mouth: {
  45993. height: math.unit(2.98, "feet"),
  45994. name: "Mouth",
  45995. image: {
  45996. source: "./media/characters/gapp/mouth.svg"
  45997. }
  45998. },
  45999. },
  46000. [
  46001. {
  46002. name: "Normal",
  46003. height: math.unit(5 + 1/12, "feet"),
  46004. default: true
  46005. },
  46006. ]
  46007. ))
  46008. characterMakers.push(() => makeCharacter(
  46009. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  46010. {
  46011. front: {
  46012. height: math.unit(6, "feet"),
  46013. name: "Front",
  46014. image: {
  46015. source: "./media/characters/persephone/front.svg",
  46016. extra: 1895/1717,
  46017. bottom: 96/1991
  46018. }
  46019. },
  46020. back: {
  46021. height: math.unit(6, "feet"),
  46022. name: "Back",
  46023. image: {
  46024. source: "./media/characters/persephone/back.svg",
  46025. extra: 1868/1679,
  46026. bottom: 26/1894
  46027. }
  46028. },
  46029. casual: {
  46030. height: math.unit(6, "feet"),
  46031. name: "Casual",
  46032. image: {
  46033. source: "./media/characters/persephone/casual.svg",
  46034. extra: 1713/1541,
  46035. bottom: 76/1789
  46036. }
  46037. },
  46038. gaming: {
  46039. height: math.unit(3.55, "feet"),
  46040. name: "Gaming",
  46041. image: {
  46042. source: "./media/characters/persephone/gaming.svg",
  46043. extra: 1242/1038,
  46044. bottom: 66/1308
  46045. }
  46046. },
  46047. head: {
  46048. height: math.unit(2.15, "feet"),
  46049. name: "😐",
  46050. image: {
  46051. source: "./media/characters/persephone/head.svg"
  46052. }
  46053. },
  46054. talking: {
  46055. height: math.unit(2.5, "feet"),
  46056. name: "💬",
  46057. image: {
  46058. source: "./media/characters/persephone/talking.svg"
  46059. }
  46060. },
  46061. hmm: {
  46062. height: math.unit(2.28, "feet"),
  46063. name: "🤨",
  46064. image: {
  46065. source: "./media/characters/persephone/hmm.svg"
  46066. }
  46067. },
  46068. },
  46069. [
  46070. {
  46071. name: "Human Size",
  46072. height: math.unit(6, "feet")
  46073. },
  46074. {
  46075. name: "Big Steppy",
  46076. height: math.unit(600, "meters"),
  46077. default: true
  46078. },
  46079. {
  46080. name: "Galaxy Brain",
  46081. height: math.unit(1, "zettameter")
  46082. },
  46083. ]
  46084. ))
  46085. characterMakers.push(() => makeCharacter(
  46086. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  46087. {
  46088. front: {
  46089. height: math.unit(1.85, "meters"),
  46090. name: "Front",
  46091. image: {
  46092. source: "./media/characters/riley-foxthing/front.svg",
  46093. extra: 1495/1354,
  46094. bottom: 122/1617
  46095. }
  46096. },
  46097. frontAlt: {
  46098. height: math.unit(1.85, "meters"),
  46099. name: "Front (Alt)",
  46100. image: {
  46101. source: "./media/characters/riley-foxthing/front-alt.svg",
  46102. extra: 1572/1389,
  46103. bottom: 116/1688
  46104. }
  46105. },
  46106. },
  46107. [
  46108. {
  46109. name: "Normal Sized",
  46110. height: math.unit(1.85, "meters"),
  46111. default: true
  46112. },
  46113. {
  46114. name: "Quite Sizable",
  46115. height: math.unit(5, "meters")
  46116. },
  46117. {
  46118. name: "Rather Large",
  46119. height: math.unit(20, "meters")
  46120. },
  46121. {
  46122. name: "Macro",
  46123. height: math.unit(450, "meters")
  46124. },
  46125. {
  46126. name: "Giga",
  46127. height: math.unit(5, "km")
  46128. },
  46129. ]
  46130. ))
  46131. characterMakers.push(() => makeCharacter(
  46132. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  46133. {
  46134. front: {
  46135. height: math.unit(6, "feet"),
  46136. weight: math.unit(200, "lb"),
  46137. name: "Front",
  46138. image: {
  46139. source: "./media/characters/blizzard/front.svg",
  46140. extra: 1136/990,
  46141. bottom: 136/1272
  46142. }
  46143. },
  46144. back: {
  46145. height: math.unit(6, "feet"),
  46146. weight: math.unit(200, "lb"),
  46147. name: "Back",
  46148. image: {
  46149. source: "./media/characters/blizzard/back.svg",
  46150. extra: 1175/1034,
  46151. bottom: 97/1272
  46152. }
  46153. },
  46154. sitting: {
  46155. height: math.unit(3.725, "feet"),
  46156. weight: math.unit(200, "lb"),
  46157. name: "Sitting",
  46158. image: {
  46159. source: "./media/characters/blizzard/sitting.svg",
  46160. extra: 581/485,
  46161. bottom: 90/671
  46162. }
  46163. },
  46164. frontWizard: {
  46165. height: math.unit(7.9, "feet"),
  46166. weight: math.unit(200, "lb"),
  46167. name: "Front (Wizard)",
  46168. image: {
  46169. source: "./media/characters/blizzard/front-wizard.svg"
  46170. }
  46171. },
  46172. backWizard: {
  46173. height: math.unit(7.9, "feet"),
  46174. weight: math.unit(200, "lb"),
  46175. name: "Back (Wizard)",
  46176. image: {
  46177. source: "./media/characters/blizzard/back-wizard.svg"
  46178. }
  46179. },
  46180. frontNsfw: {
  46181. height: math.unit(6, "feet"),
  46182. weight: math.unit(200, "lb"),
  46183. name: "Front (NSFW)",
  46184. image: {
  46185. source: "./media/characters/blizzard/front-nsfw.svg",
  46186. extra: 1136/990,
  46187. bottom: 136/1272
  46188. }
  46189. },
  46190. backNsfw: {
  46191. height: math.unit(6, "feet"),
  46192. weight: math.unit(200, "lb"),
  46193. name: "Back (NSFW)",
  46194. image: {
  46195. source: "./media/characters/blizzard/back-nsfw.svg",
  46196. extra: 1175/1034,
  46197. bottom: 97/1272
  46198. }
  46199. },
  46200. sittingNsfw: {
  46201. height: math.unit(3.725, "feet"),
  46202. weight: math.unit(200, "lb"),
  46203. name: "Sitting (NSFW)",
  46204. image: {
  46205. source: "./media/characters/blizzard/sitting-nsfw.svg",
  46206. extra: 581/485,
  46207. bottom: 90/671
  46208. }
  46209. },
  46210. wizardFrontNsfw: {
  46211. height: math.unit(7.9, "feet"),
  46212. weight: math.unit(200, "lb"),
  46213. name: "Wizard (Front, NSFW)",
  46214. image: {
  46215. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  46216. }
  46217. },
  46218. },
  46219. [
  46220. {
  46221. name: "Normal",
  46222. height: math.unit(6, "feet"),
  46223. default: true
  46224. },
  46225. ]
  46226. ))
  46227. characterMakers.push(() => makeCharacter(
  46228. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  46229. {
  46230. front: {
  46231. height: math.unit(5 + 2/12, "feet"),
  46232. name: "Front",
  46233. image: {
  46234. source: "./media/characters/lumi/front.svg",
  46235. extra: 1328/1268,
  46236. bottom: 103/1431
  46237. }
  46238. },
  46239. back: {
  46240. height: math.unit(5 + 2/12, "feet"),
  46241. name: "Back",
  46242. image: {
  46243. source: "./media/characters/lumi/back.svg",
  46244. extra: 1381/1327,
  46245. bottom: 43/1424
  46246. }
  46247. },
  46248. },
  46249. [
  46250. {
  46251. name: "Normal",
  46252. height: math.unit(5 + 2/12, "feet"),
  46253. default: true
  46254. },
  46255. ]
  46256. ))
  46257. characterMakers.push(() => makeCharacter(
  46258. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  46259. {
  46260. front: {
  46261. height: math.unit(5 + 9/12, "feet"),
  46262. name: "Front",
  46263. image: {
  46264. source: "./media/characters/aliya-cotton/front.svg",
  46265. extra: 577/564,
  46266. bottom: 29/606
  46267. }
  46268. },
  46269. },
  46270. [
  46271. {
  46272. name: "Normal",
  46273. height: math.unit(5 + 9/12, "feet"),
  46274. default: true
  46275. },
  46276. ]
  46277. ))
  46278. characterMakers.push(() => makeCharacter(
  46279. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  46280. {
  46281. front: {
  46282. height: math.unit(2.7, "meters"),
  46283. weight: math.unit(25000, "lb"),
  46284. name: "Front",
  46285. image: {
  46286. source: "./media/characters/noah-luxray/front.svg",
  46287. extra: 1644/825,
  46288. bottom: 339/1983
  46289. }
  46290. },
  46291. side: {
  46292. height: math.unit(2.97, "meters"),
  46293. weight: math.unit(25000, "lb"),
  46294. name: "Side",
  46295. image: {
  46296. source: "./media/characters/noah-luxray/side.svg",
  46297. extra: 1319/650,
  46298. bottom: 163/1482
  46299. }
  46300. },
  46301. dick: {
  46302. height: math.unit(7.4, "feet"),
  46303. weight: math.unit(2500, "lb"),
  46304. name: "Dick",
  46305. image: {
  46306. source: "./media/characters/noah-luxray/dick.svg"
  46307. }
  46308. },
  46309. dickAlt: {
  46310. height: math.unit(10.83, "feet"),
  46311. weight: math.unit(2500, "lb"),
  46312. name: "Dick-alt",
  46313. image: {
  46314. source: "./media/characters/noah-luxray/dick-alt.svg"
  46315. }
  46316. },
  46317. },
  46318. [
  46319. {
  46320. name: "BIG",
  46321. height: math.unit(2.7, "meters"),
  46322. default: true
  46323. },
  46324. ]
  46325. ))
  46326. characterMakers.push(() => makeCharacter(
  46327. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  46328. {
  46329. standing: {
  46330. height: math.unit(183, "cm"),
  46331. weight: math.unit(68, "kg"),
  46332. name: "Standing",
  46333. image: {
  46334. source: "./media/characters/arion/standing.svg",
  46335. extra: 1869/1807,
  46336. bottom: 93/1962
  46337. }
  46338. },
  46339. reclining: {
  46340. height: math.unit(70.5, "cm"),
  46341. weight: math.unit(68, "lb"),
  46342. name: "Reclining",
  46343. image: {
  46344. source: "./media/characters/arion/reclining.svg",
  46345. extra: 937/870,
  46346. bottom: 63/1000
  46347. }
  46348. },
  46349. },
  46350. [
  46351. {
  46352. name: "Colossus Size, Low",
  46353. height: math.unit(33, "meters"),
  46354. default: true
  46355. },
  46356. {
  46357. name: "Colossus Size, Mid",
  46358. height: math.unit(52, "meters")
  46359. },
  46360. {
  46361. name: "Colossus Size, High",
  46362. height: math.unit(60, "meters")
  46363. },
  46364. {
  46365. name: "Titan Size, Low",
  46366. height: math.unit(91, "meters"),
  46367. },
  46368. {
  46369. name: "Titan Size, Mid",
  46370. height: math.unit(122, "meters")
  46371. },
  46372. {
  46373. name: "Titan Size, High",
  46374. height: math.unit(162, "meters")
  46375. },
  46376. ]
  46377. ))
  46378. characterMakers.push(() => makeCharacter(
  46379. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  46380. {
  46381. front: {
  46382. height: math.unit(53, "meters"),
  46383. name: "Front",
  46384. image: {
  46385. source: "./media/characters/stellar-marbey/front.svg",
  46386. extra: 1913/1805,
  46387. bottom: 92/2005
  46388. }
  46389. },
  46390. back: {
  46391. height: math.unit(53, "meters"),
  46392. name: "Back",
  46393. image: {
  46394. source: "./media/characters/stellar-marbey/back.svg",
  46395. extra: 1960/1851,
  46396. bottom: 28/1988
  46397. }
  46398. },
  46399. mouth: {
  46400. height: math.unit(3.5, "meters"),
  46401. name: "Mouth",
  46402. image: {
  46403. source: "./media/characters/stellar-marbey/mouth.svg"
  46404. }
  46405. },
  46406. },
  46407. [
  46408. {
  46409. name: "Macro",
  46410. height: math.unit(53, "meters"),
  46411. default: true
  46412. },
  46413. ]
  46414. ))
  46415. characterMakers.push(() => makeCharacter(
  46416. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  46417. {
  46418. front: {
  46419. height: math.unit(8 + 1/12, "feet"),
  46420. weight: math.unit(233, "lb"),
  46421. name: "Front",
  46422. image: {
  46423. source: "./media/characters/matsu/front.svg",
  46424. extra: 832/772,
  46425. bottom: 40/872
  46426. }
  46427. },
  46428. back: {
  46429. height: math.unit(8 + 1/12, "feet"),
  46430. weight: math.unit(233, "lb"),
  46431. name: "Back",
  46432. image: {
  46433. source: "./media/characters/matsu/back.svg",
  46434. extra: 839/780,
  46435. bottom: 47/886
  46436. }
  46437. },
  46438. },
  46439. [
  46440. {
  46441. name: "Normal",
  46442. height: math.unit(8 + 1/12, "feet"),
  46443. default: true
  46444. },
  46445. ]
  46446. ))
  46447. characterMakers.push(() => makeCharacter(
  46448. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  46449. {
  46450. front: {
  46451. height: math.unit(4, "feet"),
  46452. weight: math.unit(148, "lb"),
  46453. name: "Front",
  46454. image: {
  46455. source: "./media/characters/thiz/front.svg",
  46456. extra: 1913/1748,
  46457. bottom: 62/1975
  46458. }
  46459. },
  46460. },
  46461. [
  46462. {
  46463. name: "Normal",
  46464. height: math.unit(4, "feet"),
  46465. default: true
  46466. },
  46467. ]
  46468. ))
  46469. characterMakers.push(() => makeCharacter(
  46470. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  46471. {
  46472. front: {
  46473. height: math.unit(7 + 6/12, "feet"),
  46474. weight: math.unit(267, "lb"),
  46475. name: "Front",
  46476. image: {
  46477. source: "./media/characters/marcel/front.svg",
  46478. extra: 1221/1096,
  46479. bottom: 76/1297
  46480. }
  46481. },
  46482. },
  46483. [
  46484. {
  46485. name: "Normal",
  46486. height: math.unit(7 + 6/12, "feet"),
  46487. default: true
  46488. },
  46489. ]
  46490. ))
  46491. characterMakers.push(() => makeCharacter(
  46492. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  46493. {
  46494. side: {
  46495. height: math.unit(42, "meters"),
  46496. name: "Side",
  46497. image: {
  46498. source: "./media/characters/flake/side.svg",
  46499. extra: 1525/1306,
  46500. bottom: 209/1734
  46501. }
  46502. },
  46503. },
  46504. [
  46505. {
  46506. name: "Normal",
  46507. height: math.unit(42, "meters"),
  46508. default: true
  46509. },
  46510. ]
  46511. ))
  46512. characterMakers.push(() => makeCharacter(
  46513. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  46514. {
  46515. dressed: {
  46516. height: math.unit(6 + 4/12, "feet"),
  46517. weight: math.unit(520, "lb"),
  46518. name: "Dressed",
  46519. image: {
  46520. source: "./media/characters/someonne/dressed.svg",
  46521. extra: 1020/1010,
  46522. bottom: 178/1198
  46523. }
  46524. },
  46525. undressed: {
  46526. height: math.unit(6 + 4/12, "feet"),
  46527. weight: math.unit(520, "lb"),
  46528. name: "Undressed",
  46529. image: {
  46530. source: "./media/characters/someonne/undressed.svg",
  46531. extra: 1019/1014,
  46532. bottom: 169/1188
  46533. }
  46534. },
  46535. },
  46536. [
  46537. {
  46538. name: "Normal",
  46539. height: math.unit(6 + 4/12, "feet"),
  46540. default: true
  46541. },
  46542. ]
  46543. ))
  46544. characterMakers.push(() => makeCharacter(
  46545. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  46546. {
  46547. front: {
  46548. height: math.unit(3, "feet"),
  46549. weight: math.unit(30, "lb"),
  46550. name: "Front",
  46551. image: {
  46552. source: "./media/characters/till/front.svg",
  46553. extra: 892/823,
  46554. bottom: 55/947
  46555. }
  46556. },
  46557. },
  46558. [
  46559. {
  46560. name: "Normal",
  46561. height: math.unit(3, "feet"),
  46562. default: true
  46563. },
  46564. ]
  46565. ))
  46566. characterMakers.push(() => makeCharacter(
  46567. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  46568. {
  46569. front: {
  46570. height: math.unit(9 + 8/12, "feet"),
  46571. weight: math.unit(800, "lb"),
  46572. name: "Front",
  46573. image: {
  46574. source: "./media/characters/sydney-heki/front.svg",
  46575. extra: 1360/1300,
  46576. bottom: 22/1382
  46577. }
  46578. },
  46579. back: {
  46580. height: math.unit(9 + 8/12, "feet"),
  46581. weight: math.unit(800, "lb"),
  46582. name: "Back",
  46583. image: {
  46584. source: "./media/characters/sydney-heki/back.svg",
  46585. extra: 1356/1293,
  46586. bottom: 12/1368
  46587. }
  46588. },
  46589. frontDressed: {
  46590. height: math.unit(9 + 8/12, "feet"),
  46591. weight: math.unit(800, "lb"),
  46592. name: "Front-dressed",
  46593. image: {
  46594. source: "./media/characters/sydney-heki/front-dressed.svg",
  46595. extra: 1360/1300,
  46596. bottom: 22/1382
  46597. }
  46598. },
  46599. },
  46600. [
  46601. {
  46602. name: "Normal",
  46603. height: math.unit(9 + 8/12, "feet"),
  46604. default: true
  46605. },
  46606. {
  46607. name: "Macro",
  46608. height: math.unit(500, "feet")
  46609. },
  46610. {
  46611. name: "Megamacro",
  46612. height: math.unit(3.6, "miles")
  46613. },
  46614. ]
  46615. ))
  46616. characterMakers.push(() => makeCharacter(
  46617. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  46618. {
  46619. front: {
  46620. height: math.unit(200, "cm"),
  46621. weight: math.unit(250, "lb"),
  46622. name: "Front",
  46623. image: {
  46624. source: "./media/characters/fowler-karlsson/front.svg",
  46625. extra: 897/845,
  46626. bottom: 123/1020
  46627. }
  46628. },
  46629. back: {
  46630. height: math.unit(200, "cm"),
  46631. weight: math.unit(250, "lb"),
  46632. name: "Back",
  46633. image: {
  46634. source: "./media/characters/fowler-karlsson/back.svg",
  46635. extra: 999/944,
  46636. bottom: 26/1025
  46637. }
  46638. },
  46639. dick: {
  46640. height: math.unit(1.92, "feet"),
  46641. weight: math.unit(150, "lb"),
  46642. name: "Dick",
  46643. image: {
  46644. source: "./media/characters/fowler-karlsson/dick.svg"
  46645. }
  46646. },
  46647. },
  46648. [
  46649. {
  46650. name: "Normal",
  46651. height: math.unit(200, "cm"),
  46652. default: true
  46653. },
  46654. {
  46655. name: "Smaller Macro",
  46656. height: math.unit(90, "m")
  46657. },
  46658. {
  46659. name: "Macro",
  46660. height: math.unit(150, "m")
  46661. },
  46662. {
  46663. name: "Bigger Macro",
  46664. height: math.unit(300, "m")
  46665. },
  46666. ]
  46667. ))
  46668. characterMakers.push(() => makeCharacter(
  46669. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  46670. {
  46671. side: {
  46672. height: math.unit(8 + 2/12, "feet"),
  46673. weight: math.unit(1, "tonne"),
  46674. name: "Side",
  46675. image: {
  46676. source: "./media/characters/rylide/side.svg",
  46677. extra: 1318/1034,
  46678. bottom: 106/1424
  46679. }
  46680. },
  46681. sitting: {
  46682. height: math.unit(303, "cm"),
  46683. weight: math.unit(1, "tonne"),
  46684. name: "Sitting",
  46685. image: {
  46686. source: "./media/characters/rylide/sitting.svg",
  46687. extra: 1303/1103,
  46688. bottom: 36/1339
  46689. }
  46690. },
  46691. },
  46692. [
  46693. {
  46694. name: "Normal",
  46695. height: math.unit(8 + 2/12, "feet"),
  46696. default: true
  46697. },
  46698. ]
  46699. ))
  46700. characterMakers.push(() => makeCharacter(
  46701. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  46702. {
  46703. front: {
  46704. height: math.unit(5 + 10/12, "feet"),
  46705. weight: math.unit(160, "lb"),
  46706. name: "Front",
  46707. image: {
  46708. source: "./media/characters/pudask/front.svg",
  46709. extra: 1616/1590,
  46710. bottom: 161/1777
  46711. }
  46712. },
  46713. },
  46714. [
  46715. {
  46716. name: "Ferret Height",
  46717. height: math.unit(2 + 5/12, "feet")
  46718. },
  46719. {
  46720. name: "Canon Height",
  46721. height: math.unit(5 + 10/12, "feet"),
  46722. default: true
  46723. },
  46724. ]
  46725. ))
  46726. characterMakers.push(() => makeCharacter(
  46727. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  46728. {
  46729. front: {
  46730. height: math.unit(3 + 6/12, "feet"),
  46731. weight: math.unit(60, "lb"),
  46732. name: "Front",
  46733. image: {
  46734. source: "./media/characters/ramita/front.svg",
  46735. extra: 1402/1232,
  46736. bottom: 62/1464
  46737. }
  46738. },
  46739. dressed: {
  46740. height: math.unit(3 + 6/12, "feet"),
  46741. weight: math.unit(60, "lb"),
  46742. name: "Dressed",
  46743. image: {
  46744. source: "./media/characters/ramita/dressed.svg",
  46745. extra: 1534/1249,
  46746. bottom: 50/1584
  46747. }
  46748. },
  46749. },
  46750. [
  46751. {
  46752. name: "Normal",
  46753. height: math.unit(3 + 6/12, "feet"),
  46754. default: true
  46755. },
  46756. ]
  46757. ))
  46758. characterMakers.push(() => makeCharacter(
  46759. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  46760. {
  46761. front: {
  46762. height: math.unit(8, "feet"),
  46763. name: "Front",
  46764. image: {
  46765. source: "./media/characters/ark/front.svg",
  46766. extra: 772/693,
  46767. bottom: 45/817
  46768. }
  46769. },
  46770. },
  46771. [
  46772. {
  46773. name: "Normal",
  46774. height: math.unit(8, "feet"),
  46775. default: true
  46776. },
  46777. ]
  46778. ))
  46779. characterMakers.push(() => makeCharacter(
  46780. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  46781. {
  46782. front: {
  46783. height: math.unit(6, "feet"),
  46784. weight: math.unit(250, "lb"),
  46785. volume: math.unit(5/8, "gallons"),
  46786. name: "Front",
  46787. image: {
  46788. source: "./media/characters/ludwig-horn/front.svg",
  46789. extra: 1782/1635,
  46790. bottom: 96/1878
  46791. }
  46792. },
  46793. back: {
  46794. height: math.unit(6, "feet"),
  46795. weight: math.unit(250, "lb"),
  46796. volume: math.unit(5/8, "gallons"),
  46797. name: "Back",
  46798. image: {
  46799. source: "./media/characters/ludwig-horn/back.svg",
  46800. extra: 1874/1729,
  46801. bottom: 27/1901
  46802. }
  46803. },
  46804. dick: {
  46805. height: math.unit(1.05, "feet"),
  46806. weight: math.unit(15, "lb"),
  46807. volume: math.unit(5/8, "gallons"),
  46808. name: "Dick",
  46809. image: {
  46810. source: "./media/characters/ludwig-horn/dick.svg"
  46811. }
  46812. },
  46813. },
  46814. [
  46815. {
  46816. name: "Small",
  46817. height: math.unit(6, "feet")
  46818. },
  46819. {
  46820. name: "Typical",
  46821. height: math.unit(12, "feet"),
  46822. default: true
  46823. },
  46824. {
  46825. name: "Building",
  46826. height: math.unit(80, "feet")
  46827. },
  46828. {
  46829. name: "Town",
  46830. height: math.unit(800, "feet")
  46831. },
  46832. {
  46833. name: "Kingdom",
  46834. height: math.unit(80000, "feet")
  46835. },
  46836. {
  46837. name: "Planet",
  46838. height: math.unit(8000000, "feet")
  46839. },
  46840. {
  46841. name: "Universe",
  46842. height: math.unit(8000000000, "feet")
  46843. },
  46844. {
  46845. name: "Transcended",
  46846. height: math.unit(8e27, "feet")
  46847. },
  46848. ]
  46849. ))
  46850. characterMakers.push(() => makeCharacter(
  46851. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  46852. {
  46853. front: {
  46854. height: math.unit(5, "feet"),
  46855. weight: math.unit(50, "kg"),
  46856. name: "Front",
  46857. image: {
  46858. source: "./media/characters/biot-avery/front.svg",
  46859. extra: 1295/1232,
  46860. bottom: 86/1381
  46861. }
  46862. },
  46863. },
  46864. [
  46865. {
  46866. name: "Normal",
  46867. height: math.unit(5, "feet"),
  46868. default: true
  46869. },
  46870. ]
  46871. ))
  46872. characterMakers.push(() => makeCharacter(
  46873. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  46874. {
  46875. front: {
  46876. height: math.unit(6, "feet"),
  46877. name: "Front",
  46878. image: {
  46879. source: "./media/characters/kitsune-kiro/front.svg",
  46880. extra: 1270/1158,
  46881. bottom: 42/1312
  46882. }
  46883. },
  46884. frontAlt: {
  46885. height: math.unit(6, "feet"),
  46886. name: "Front-alt",
  46887. image: {
  46888. source: "./media/characters/kitsune-kiro/front-alt.svg",
  46889. extra: 1130/1081,
  46890. bottom: 36/1166
  46891. }
  46892. },
  46893. },
  46894. [
  46895. {
  46896. name: "Smol",
  46897. height: math.unit(3, "feet")
  46898. },
  46899. {
  46900. name: "Normal",
  46901. height: math.unit(6, "feet"),
  46902. default: true
  46903. },
  46904. ]
  46905. ))
  46906. characterMakers.push(() => makeCharacter(
  46907. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  46908. {
  46909. front: {
  46910. height: math.unit(6, "feet"),
  46911. weight: math.unit(125, "lb"),
  46912. name: "Front",
  46913. image: {
  46914. source: "./media/characters/jack-thatcher/front.svg",
  46915. extra: 1474/1370,
  46916. bottom: 26/1500
  46917. }
  46918. },
  46919. back: {
  46920. height: math.unit(6, "feet"),
  46921. weight: math.unit(125, "lb"),
  46922. name: "Back",
  46923. image: {
  46924. source: "./media/characters/jack-thatcher/back.svg",
  46925. extra: 1489/1384,
  46926. bottom: 18/1507
  46927. }
  46928. },
  46929. },
  46930. [
  46931. {
  46932. name: "Normal",
  46933. height: math.unit(6, "feet"),
  46934. default: true
  46935. },
  46936. {
  46937. name: "Macro",
  46938. height: math.unit(75, "feet")
  46939. },
  46940. {
  46941. name: "Macro-er",
  46942. height: math.unit(250, "feet")
  46943. },
  46944. ]
  46945. ))
  46946. characterMakers.push(() => makeCharacter(
  46947. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46948. {
  46949. front: {
  46950. height: math.unit(7, "feet"),
  46951. weight: math.unit(110, "kg"),
  46952. name: "Front",
  46953. image: {
  46954. source: "./media/characters/max-hyper/front.svg",
  46955. extra: 1969/1881,
  46956. bottom: 49/2018
  46957. }
  46958. },
  46959. },
  46960. [
  46961. {
  46962. name: "Normal",
  46963. height: math.unit(7, "feet"),
  46964. default: true
  46965. },
  46966. ]
  46967. ))
  46968. characterMakers.push(() => makeCharacter(
  46969. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46970. {
  46971. front: {
  46972. height: math.unit(5 + 5/12, "feet"),
  46973. weight: math.unit(160, "lb"),
  46974. name: "Front",
  46975. image: {
  46976. source: "./media/characters/spook/front.svg",
  46977. extra: 794/791,
  46978. bottom: 54/848
  46979. }
  46980. },
  46981. back: {
  46982. height: math.unit(5 + 5/12, "feet"),
  46983. weight: math.unit(160, "lb"),
  46984. name: "Back",
  46985. image: {
  46986. source: "./media/characters/spook/back.svg",
  46987. extra: 812/798,
  46988. bottom: 32/844
  46989. }
  46990. },
  46991. },
  46992. [
  46993. {
  46994. name: "Normal",
  46995. height: math.unit(5 + 5/12, "feet"),
  46996. default: true
  46997. },
  46998. ]
  46999. ))
  47000. characterMakers.push(() => makeCharacter(
  47001. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  47002. {
  47003. front: {
  47004. height: math.unit(18, "feet"),
  47005. name: "Front",
  47006. image: {
  47007. source: "./media/characters/xeaduulix/front.svg",
  47008. extra: 1380/1166,
  47009. bottom: 110/1490
  47010. }
  47011. },
  47012. back: {
  47013. height: math.unit(18, "feet"),
  47014. name: "Back",
  47015. image: {
  47016. source: "./media/characters/xeaduulix/back.svg",
  47017. extra: 1592/1170,
  47018. bottom: 128/1720
  47019. }
  47020. },
  47021. frontNsfw: {
  47022. height: math.unit(18, "feet"),
  47023. name: "Front (NSFW)",
  47024. image: {
  47025. source: "./media/characters/xeaduulix/front-nsfw.svg",
  47026. extra: 1380/1166,
  47027. bottom: 110/1490
  47028. }
  47029. },
  47030. backNsfw: {
  47031. height: math.unit(18, "feet"),
  47032. name: "Back (NSFW)",
  47033. image: {
  47034. source: "./media/characters/xeaduulix/back-nsfw.svg",
  47035. extra: 1592/1170,
  47036. bottom: 128/1720
  47037. }
  47038. },
  47039. },
  47040. [
  47041. {
  47042. name: "Normal",
  47043. height: math.unit(18, "feet"),
  47044. default: true
  47045. },
  47046. ]
  47047. ))
  47048. characterMakers.push(() => makeCharacter(
  47049. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  47050. {
  47051. spreadWings: {
  47052. height: math.unit(20, "feet"),
  47053. name: "Spread Wings",
  47054. image: {
  47055. source: "./media/characters/fledge/spread-wings.svg",
  47056. extra: 693/635,
  47057. bottom: 26/719
  47058. }
  47059. },
  47060. front: {
  47061. height: math.unit(20, "feet"),
  47062. name: "Front",
  47063. image: {
  47064. source: "./media/characters/fledge/front.svg",
  47065. extra: 684/637,
  47066. bottom: 18/702
  47067. }
  47068. },
  47069. frontAlt: {
  47070. height: math.unit(20, "feet"),
  47071. name: "Front (Alt)",
  47072. image: {
  47073. source: "./media/characters/fledge/front-alt.svg",
  47074. extra: 708/664,
  47075. bottom: 13/721
  47076. }
  47077. },
  47078. back: {
  47079. height: math.unit(20, "feet"),
  47080. name: "Back",
  47081. image: {
  47082. source: "./media/characters/fledge/back.svg",
  47083. extra: 718/634,
  47084. bottom: 22/740
  47085. }
  47086. },
  47087. head: {
  47088. height: math.unit(5.55, "feet"),
  47089. name: "Head",
  47090. image: {
  47091. source: "./media/characters/fledge/head.svg"
  47092. }
  47093. },
  47094. headAlt: {
  47095. height: math.unit(5.1, "feet"),
  47096. name: "Head (Alt)",
  47097. image: {
  47098. source: "./media/characters/fledge/head-alt.svg"
  47099. }
  47100. },
  47101. },
  47102. [
  47103. {
  47104. name: "Small",
  47105. height: math.unit(6 + 2/12, "feet")
  47106. },
  47107. {
  47108. name: "Big",
  47109. height: math.unit(20, "feet"),
  47110. default: true
  47111. },
  47112. {
  47113. name: "Giant",
  47114. height: math.unit(100, "feet")
  47115. },
  47116. {
  47117. name: "Macro",
  47118. height: math.unit(200, "feet")
  47119. },
  47120. ]
  47121. ))
  47122. characterMakers.push(() => makeCharacter(
  47123. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  47124. {
  47125. front: {
  47126. height: math.unit(1, "meter"),
  47127. name: "Front",
  47128. image: {
  47129. source: "./media/characters/atlas-morenai/front.svg",
  47130. extra: 1275/1043,
  47131. bottom: 19/1294
  47132. }
  47133. },
  47134. back: {
  47135. height: math.unit(1, "meter"),
  47136. name: "Back",
  47137. image: {
  47138. source: "./media/characters/atlas-morenai/back.svg",
  47139. extra: 1141/1001,
  47140. bottom: 25/1166
  47141. }
  47142. },
  47143. },
  47144. [
  47145. {
  47146. name: "Normal",
  47147. height: math.unit(1, "meter"),
  47148. default: true
  47149. },
  47150. {
  47151. name: "Magic-Infused",
  47152. height: math.unit(5, "meters")
  47153. },
  47154. ]
  47155. ))
  47156. characterMakers.push(() => makeCharacter(
  47157. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  47158. {
  47159. front: {
  47160. height: math.unit(5, "meters"),
  47161. name: "Front",
  47162. image: {
  47163. source: "./media/characters/cintia/front.svg",
  47164. extra: 1312/1228,
  47165. bottom: 38/1350
  47166. }
  47167. },
  47168. back: {
  47169. height: math.unit(5, "meters"),
  47170. name: "Back",
  47171. image: {
  47172. source: "./media/characters/cintia/back.svg",
  47173. extra: 1260/1166,
  47174. bottom: 98/1358
  47175. }
  47176. },
  47177. frontDick: {
  47178. height: math.unit(5, "meters"),
  47179. name: "Front (Dick)",
  47180. image: {
  47181. source: "./media/characters/cintia/front-dick.svg",
  47182. extra: 1312/1228,
  47183. bottom: 38/1350
  47184. }
  47185. },
  47186. backDick: {
  47187. height: math.unit(5, "meters"),
  47188. name: "Back (Dick)",
  47189. image: {
  47190. source: "./media/characters/cintia/back-dick.svg",
  47191. extra: 1260/1166,
  47192. bottom: 98/1358
  47193. }
  47194. },
  47195. bust: {
  47196. height: math.unit(1.97, "meters"),
  47197. name: "Bust",
  47198. image: {
  47199. source: "./media/characters/cintia/bust.svg",
  47200. extra: 617/565,
  47201. bottom: 0/617
  47202. }
  47203. },
  47204. },
  47205. [
  47206. {
  47207. name: "Normal",
  47208. height: math.unit(5, "meters"),
  47209. default: true
  47210. },
  47211. ]
  47212. ))
  47213. characterMakers.push(() => makeCharacter(
  47214. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  47215. {
  47216. side: {
  47217. height: math.unit(100, "feet"),
  47218. name: "Side",
  47219. image: {
  47220. source: "./media/characters/denora/side.svg",
  47221. extra: 875/803,
  47222. bottom: 9/884
  47223. }
  47224. },
  47225. },
  47226. [
  47227. {
  47228. name: "Standard",
  47229. height: math.unit(100, "feet"),
  47230. default: true
  47231. },
  47232. {
  47233. name: "Grand",
  47234. height: math.unit(1000, "feet")
  47235. },
  47236. {
  47237. name: "Conquering",
  47238. height: math.unit(10000, "feet")
  47239. },
  47240. ]
  47241. ))
  47242. characterMakers.push(() => makeCharacter(
  47243. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  47244. {
  47245. dressed: {
  47246. height: math.unit(8 + 5/12, "feet"),
  47247. weight: math.unit(700, "lb"),
  47248. name: "Dressed",
  47249. image: {
  47250. source: "./media/characters/kiva/dressed.svg",
  47251. extra: 1102/1055,
  47252. bottom: 60/1162
  47253. }
  47254. },
  47255. nude: {
  47256. height: math.unit(8 + 5/12, "feet"),
  47257. weight: math.unit(700, "lb"),
  47258. name: "Nude",
  47259. image: {
  47260. source: "./media/characters/kiva/nude.svg",
  47261. extra: 1102/1055,
  47262. bottom: 60/1162
  47263. }
  47264. },
  47265. },
  47266. [
  47267. {
  47268. name: "Base Height",
  47269. height: math.unit(8 + 5/12, "feet"),
  47270. default: true
  47271. },
  47272. {
  47273. name: "Macro",
  47274. height: math.unit(100, "feet")
  47275. },
  47276. {
  47277. name: "Max",
  47278. height: math.unit(3280, "feet")
  47279. },
  47280. ]
  47281. ))
  47282. characterMakers.push(() => makeCharacter(
  47283. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  47284. {
  47285. front: {
  47286. height: math.unit(6 + 8/12, "feet"),
  47287. weight: math.unit(250, "lb"),
  47288. name: "Front",
  47289. image: {
  47290. source: "./media/characters/ztragon/front.svg",
  47291. extra: 1825/1684,
  47292. bottom: 98/1923
  47293. }
  47294. },
  47295. },
  47296. [
  47297. {
  47298. name: "Normal",
  47299. height: math.unit(6 + 8/12, "feet"),
  47300. default: true
  47301. },
  47302. {
  47303. name: "Macro",
  47304. height: math.unit(80, "feet")
  47305. },
  47306. ]
  47307. ))
  47308. characterMakers.push(() => makeCharacter(
  47309. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  47310. {
  47311. front: {
  47312. height: math.unit(10.4, "feet"),
  47313. weight: math.unit(2, "tons"),
  47314. name: "Front",
  47315. image: {
  47316. source: "./media/characters/yesenia/front.svg",
  47317. extra: 1479/1474,
  47318. bottom: 233/1712
  47319. }
  47320. },
  47321. },
  47322. [
  47323. {
  47324. name: "Normal",
  47325. height: math.unit(10.4, "feet"),
  47326. default: true
  47327. },
  47328. ]
  47329. ))
  47330. characterMakers.push(() => makeCharacter(
  47331. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  47332. {
  47333. normal: {
  47334. height: math.unit(6 + 1/12, "feet"),
  47335. weight: math.unit(180, "lb"),
  47336. name: "Normal",
  47337. image: {
  47338. source: "./media/characters/leanne-lycheborne/normal.svg",
  47339. extra: 1748/1660,
  47340. bottom: 98/1846
  47341. }
  47342. },
  47343. were: {
  47344. height: math.unit(12, "feet"),
  47345. weight: math.unit(1600, "lb"),
  47346. name: "Were",
  47347. image: {
  47348. source: "./media/characters/leanne-lycheborne/were.svg",
  47349. extra: 1485/1432,
  47350. bottom: 66/1551
  47351. }
  47352. },
  47353. },
  47354. [
  47355. {
  47356. name: "Normal",
  47357. height: math.unit(6 + 1/12, "feet"),
  47358. default: true
  47359. },
  47360. ]
  47361. ))
  47362. characterMakers.push(() => makeCharacter(
  47363. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  47364. {
  47365. side: {
  47366. height: math.unit(13, "feet"),
  47367. name: "Side",
  47368. image: {
  47369. source: "./media/characters/kira-tyler/side.svg",
  47370. extra: 693/393,
  47371. bottom: 58/751
  47372. }
  47373. },
  47374. },
  47375. [
  47376. {
  47377. name: "Normal",
  47378. height: math.unit(13, "feet"),
  47379. default: true
  47380. },
  47381. ]
  47382. ))
  47383. characterMakers.push(() => makeCharacter(
  47384. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  47385. {
  47386. front: {
  47387. height: math.unit(10.3, "feet"),
  47388. weight: math.unit(150, "lb"),
  47389. name: "Front",
  47390. image: {
  47391. source: "./media/characters/blaze/front.svg",
  47392. extra: 1378/1286,
  47393. bottom: 172/1550
  47394. }
  47395. },
  47396. },
  47397. [
  47398. {
  47399. name: "Normal",
  47400. height: math.unit(10.3, "feet"),
  47401. default: true
  47402. },
  47403. ]
  47404. ))
  47405. characterMakers.push(() => makeCharacter(
  47406. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  47407. {
  47408. side: {
  47409. height: math.unit(2, "meters"),
  47410. weight: math.unit(400, "kg"),
  47411. name: "Side",
  47412. image: {
  47413. source: "./media/characters/anu/side.svg",
  47414. extra: 506/394,
  47415. bottom: 18/524
  47416. }
  47417. },
  47418. },
  47419. [
  47420. {
  47421. name: "Humanoid",
  47422. height: math.unit(2, "meters")
  47423. },
  47424. {
  47425. name: "Normal",
  47426. height: math.unit(5, "meters"),
  47427. default: true
  47428. },
  47429. ]
  47430. ))
  47431. characterMakers.push(() => makeCharacter(
  47432. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  47433. {
  47434. front: {
  47435. height: math.unit(5 + 5/12, "feet"),
  47436. weight: math.unit(170, "lb"),
  47437. name: "Front",
  47438. image: {
  47439. source: "./media/characters/synx-the-lynx/front.svg",
  47440. extra: 1893/1745,
  47441. bottom: 17/1910
  47442. }
  47443. },
  47444. side: {
  47445. height: math.unit(5 + 5/12, "feet"),
  47446. weight: math.unit(170, "lb"),
  47447. name: "Side",
  47448. image: {
  47449. source: "./media/characters/synx-the-lynx/side.svg",
  47450. extra: 1884/1740,
  47451. bottom: 39/1923
  47452. }
  47453. },
  47454. back: {
  47455. height: math.unit(5 + 5/12, "feet"),
  47456. weight: math.unit(170, "lb"),
  47457. name: "Back",
  47458. image: {
  47459. source: "./media/characters/synx-the-lynx/back.svg",
  47460. extra: 1903/1755,
  47461. bottom: 14/1917
  47462. }
  47463. },
  47464. },
  47465. [
  47466. {
  47467. name: "Normal",
  47468. height: math.unit(5 + 5/12, "feet"),
  47469. default: true
  47470. },
  47471. ]
  47472. ))
  47473. characterMakers.push(() => makeCharacter(
  47474. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  47475. {
  47476. back: {
  47477. height: math.unit(15, "feet"),
  47478. name: "Back",
  47479. image: {
  47480. source: "./media/characters/nadezda-fex/back.svg",
  47481. extra: 1695/1481,
  47482. bottom: 25/1720
  47483. }
  47484. },
  47485. },
  47486. [
  47487. {
  47488. name: "Normal",
  47489. height: math.unit(15, "feet"),
  47490. default: true
  47491. },
  47492. {
  47493. name: "Macro",
  47494. height: math.unit(2.5, "miles")
  47495. },
  47496. {
  47497. name: "Goddess",
  47498. height: math.unit(2, "multiverses")
  47499. },
  47500. ]
  47501. ))
  47502. characterMakers.push(() => makeCharacter(
  47503. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  47504. {
  47505. front: {
  47506. height: math.unit(216, "cm"),
  47507. name: "Front",
  47508. image: {
  47509. source: "./media/characters/lev/front.svg",
  47510. extra: 1728/1670,
  47511. bottom: 82/1810
  47512. }
  47513. },
  47514. back: {
  47515. height: math.unit(216, "cm"),
  47516. name: "Back",
  47517. image: {
  47518. source: "./media/characters/lev/back.svg",
  47519. extra: 1738/1675,
  47520. bottom: 24/1762
  47521. }
  47522. },
  47523. dressed: {
  47524. height: math.unit(216, "cm"),
  47525. name: "Dressed",
  47526. image: {
  47527. source: "./media/characters/lev/dressed.svg",
  47528. extra: 1397/1351,
  47529. bottom: 73/1470
  47530. }
  47531. },
  47532. head: {
  47533. height: math.unit(0.51, "meter"),
  47534. name: "Head",
  47535. image: {
  47536. source: "./media/characters/lev/head.svg"
  47537. }
  47538. },
  47539. },
  47540. [
  47541. {
  47542. name: "Normal",
  47543. height: math.unit(216, "cm"),
  47544. default: true
  47545. },
  47546. {
  47547. name: "Relatively Macro",
  47548. height: math.unit(80, "meters")
  47549. },
  47550. {
  47551. name: "Megamacro",
  47552. height: math.unit(21600, "meters")
  47553. },
  47554. {
  47555. name: "Megamacro+",
  47556. height: math.unit(64800, "meters")
  47557. },
  47558. ]
  47559. ))
  47560. characterMakers.push(() => makeCharacter(
  47561. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  47562. {
  47563. front: {
  47564. height: math.unit(2, "meters"),
  47565. weight: math.unit(80, "kg"),
  47566. name: "Front",
  47567. image: {
  47568. source: "./media/characters/moka/front.svg",
  47569. extra: 1337/1255,
  47570. bottom: 58/1395
  47571. }
  47572. },
  47573. },
  47574. [
  47575. {
  47576. name: "Micro",
  47577. height: math.unit(15, "cm")
  47578. },
  47579. {
  47580. name: "Normal",
  47581. height: math.unit(2, "meters"),
  47582. default: true
  47583. },
  47584. {
  47585. name: "Macro",
  47586. height: math.unit(20, "meters"),
  47587. },
  47588. ]
  47589. ))
  47590. characterMakers.push(() => makeCharacter(
  47591. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  47592. {
  47593. front: {
  47594. height: math.unit(9, "feet"),
  47595. weight: math.unit(240, "lb"),
  47596. name: "Front",
  47597. image: {
  47598. source: "./media/characters/kuzco/front.svg",
  47599. extra: 1593/1487,
  47600. bottom: 32/1625
  47601. }
  47602. },
  47603. side: {
  47604. height: math.unit(9, "feet"),
  47605. weight: math.unit(240, "lb"),
  47606. name: "Side",
  47607. image: {
  47608. source: "./media/characters/kuzco/side.svg",
  47609. extra: 1575/1485,
  47610. bottom: 30/1605
  47611. }
  47612. },
  47613. back: {
  47614. height: math.unit(9, "feet"),
  47615. weight: math.unit(240, "lb"),
  47616. name: "Back",
  47617. image: {
  47618. source: "./media/characters/kuzco/back.svg",
  47619. extra: 1603/1514,
  47620. bottom: 14/1617
  47621. }
  47622. },
  47623. },
  47624. [
  47625. {
  47626. name: "Normal",
  47627. height: math.unit(9, "feet"),
  47628. default: true
  47629. },
  47630. ]
  47631. ))
  47632. characterMakers.push(() => makeCharacter(
  47633. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  47634. {
  47635. side: {
  47636. height: math.unit(2, "meters"),
  47637. weight: math.unit(300, "kg"),
  47638. name: "Side",
  47639. image: {
  47640. source: "./media/characters/ceruleus/side.svg",
  47641. extra: 1068/974,
  47642. bottom: 126/1194
  47643. }
  47644. },
  47645. maw: {
  47646. height: math.unit(0.8125, "meter"),
  47647. name: "Maw",
  47648. image: {
  47649. source: "./media/characters/ceruleus/maw.svg"
  47650. }
  47651. },
  47652. },
  47653. [
  47654. {
  47655. name: "Normal",
  47656. height: math.unit(16, "meters"),
  47657. default: true
  47658. },
  47659. ]
  47660. ))
  47661. characterMakers.push(() => makeCharacter(
  47662. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  47663. {
  47664. front: {
  47665. height: math.unit(9, "feet"),
  47666. weight: math.unit(500, "kg"),
  47667. name: "Front",
  47668. image: {
  47669. source: "./media/characters/acouya/front.svg",
  47670. extra: 1660/1473,
  47671. bottom: 28/1688
  47672. }
  47673. },
  47674. },
  47675. [
  47676. {
  47677. name: "Normal",
  47678. height: math.unit(9, "feet"),
  47679. default: true
  47680. },
  47681. ]
  47682. ))
  47683. characterMakers.push(() => makeCharacter(
  47684. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  47685. {
  47686. front: {
  47687. height: math.unit(5 + 6/12, "feet"),
  47688. weight: math.unit(195, "lb"),
  47689. name: "Front",
  47690. image: {
  47691. source: "./media/characters/vant/front.svg",
  47692. extra: 1396/1320,
  47693. bottom: 20/1416
  47694. }
  47695. },
  47696. back: {
  47697. height: math.unit(5 + 6/12, "feet"),
  47698. weight: math.unit(195, "lb"),
  47699. name: "Back",
  47700. image: {
  47701. source: "./media/characters/vant/back.svg",
  47702. extra: 1396/1320,
  47703. bottom: 20/1416
  47704. }
  47705. },
  47706. maw: {
  47707. height: math.unit(0.75, "feet"),
  47708. name: "Maw",
  47709. image: {
  47710. source: "./media/characters/vant/maw.svg"
  47711. }
  47712. },
  47713. paw: {
  47714. height: math.unit(1.07, "feet"),
  47715. name: "Paw",
  47716. image: {
  47717. source: "./media/characters/vant/paw.svg"
  47718. }
  47719. },
  47720. },
  47721. [
  47722. {
  47723. name: "Micro",
  47724. height: math.unit(0.25, "inches")
  47725. },
  47726. {
  47727. name: "Normal",
  47728. height: math.unit(5 + 6/12, "feet"),
  47729. default: true
  47730. },
  47731. {
  47732. name: "Macro",
  47733. height: math.unit(75, "feet")
  47734. },
  47735. ]
  47736. ))
  47737. characterMakers.push(() => makeCharacter(
  47738. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  47739. {
  47740. front: {
  47741. height: math.unit(30, "meters"),
  47742. weight: math.unit(363, "tons"),
  47743. name: "Front",
  47744. image: {
  47745. source: "./media/characters/ahra/front.svg",
  47746. extra: 1914/1814,
  47747. bottom: 46/1960
  47748. }
  47749. },
  47750. },
  47751. [
  47752. {
  47753. name: "Macro",
  47754. height: math.unit(30, "meters"),
  47755. default: true
  47756. },
  47757. ]
  47758. ))
  47759. characterMakers.push(() => makeCharacter(
  47760. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  47761. {
  47762. undressed: {
  47763. height: math.unit(2, "m"),
  47764. weight: math.unit(250, "kg"),
  47765. name: "Undressed",
  47766. image: {
  47767. source: "./media/characters/coriander/undressed.svg",
  47768. extra: 1757/1606,
  47769. bottom: 107/1864
  47770. }
  47771. },
  47772. dressed: {
  47773. height: math.unit(2, "m"),
  47774. weight: math.unit(250, "kg"),
  47775. name: "Dressed",
  47776. image: {
  47777. source: "./media/characters/coriander/dressed.svg",
  47778. extra: 1757/1606,
  47779. bottom: 107/1864
  47780. }
  47781. },
  47782. },
  47783. [
  47784. {
  47785. name: "Normal",
  47786. height: math.unit(4, "meters"),
  47787. default: true
  47788. },
  47789. {
  47790. name: "XL",
  47791. height: math.unit(6, "meters")
  47792. },
  47793. {
  47794. name: "XXL",
  47795. height: math.unit(8, "meters")
  47796. },
  47797. ]
  47798. ))
  47799. characterMakers.push(() => makeCharacter(
  47800. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  47801. {
  47802. front: {
  47803. height: math.unit(6, "feet"),
  47804. name: "Front",
  47805. image: {
  47806. source: "./media/characters/syrinx/front.svg",
  47807. extra: 1557/1259,
  47808. bottom: 171/1728
  47809. }
  47810. },
  47811. },
  47812. [
  47813. {
  47814. name: "Normal",
  47815. height: math.unit(6 + 3/12, "feet"),
  47816. default: true
  47817. },
  47818. ]
  47819. ))
  47820. characterMakers.push(() => makeCharacter(
  47821. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  47822. {
  47823. front: {
  47824. height: math.unit(11 + 6/12, "feet"),
  47825. weight: math.unit(1.5, "tons"),
  47826. name: "Front",
  47827. image: {
  47828. source: "./media/characters/bor/front.svg",
  47829. extra: 1189/1109,
  47830. bottom: 170/1359
  47831. }
  47832. },
  47833. },
  47834. [
  47835. {
  47836. name: "Normal",
  47837. height: math.unit(11 + 6/12, "feet"),
  47838. default: true
  47839. },
  47840. {
  47841. name: "Macro",
  47842. height: math.unit(32 + 9/12, "feet")
  47843. },
  47844. ]
  47845. ))
  47846. characterMakers.push(() => makeCharacter(
  47847. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  47848. {
  47849. anthro: {
  47850. height: math.unit(9, "feet"),
  47851. weight: math.unit(2076, "lb"),
  47852. name: "Anthro",
  47853. image: {
  47854. source: "./media/characters/abacus/anthro.svg",
  47855. extra: 1540/1494,
  47856. bottom: 233/1773
  47857. }
  47858. },
  47859. pigeon: {
  47860. height: math.unit(1, "feet"),
  47861. name: "Pigeon",
  47862. image: {
  47863. source: "./media/characters/abacus/pigeon.svg",
  47864. extra: 528/525,
  47865. bottom: 46/574
  47866. }
  47867. },
  47868. },
  47869. [
  47870. {
  47871. name: "Normal",
  47872. height: math.unit(9, "feet"),
  47873. default: true
  47874. },
  47875. ]
  47876. ))
  47877. characterMakers.push(() => makeCharacter(
  47878. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  47879. {
  47880. side: {
  47881. height: math.unit(6, "feet"),
  47882. name: "Side",
  47883. image: {
  47884. source: "./media/characters/delkhan/side.svg",
  47885. extra: 1884/1786,
  47886. bottom: 308/2192
  47887. }
  47888. },
  47889. head: {
  47890. height: math.unit(3.38, "feet"),
  47891. name: "Head",
  47892. image: {
  47893. source: "./media/characters/delkhan/head.svg"
  47894. }
  47895. },
  47896. },
  47897. [
  47898. {
  47899. name: "Normal",
  47900. height: math.unit(72, "feet"),
  47901. default: true
  47902. },
  47903. {
  47904. name: "Giant",
  47905. height: math.unit(172, "feet")
  47906. },
  47907. ]
  47908. ))
  47909. characterMakers.push(() => makeCharacter(
  47910. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  47911. {
  47912. standing: {
  47913. height: math.unit(6, "feet"),
  47914. name: "Standing",
  47915. image: {
  47916. source: "./media/characters/euchidat/standing.svg",
  47917. extra: 1612/1553,
  47918. bottom: 116/1728
  47919. }
  47920. },
  47921. leaning: {
  47922. height: math.unit(6, "feet"),
  47923. name: "Leaning",
  47924. image: {
  47925. source: "./media/characters/euchidat/leaning.svg",
  47926. extra: 1719/1674,
  47927. bottom: 27/1746
  47928. }
  47929. },
  47930. },
  47931. [
  47932. {
  47933. name: "Normal",
  47934. height: math.unit(175, "feet"),
  47935. default: true
  47936. },
  47937. {
  47938. name: "Megamacro",
  47939. height: math.unit(190, "miles")
  47940. },
  47941. {
  47942. name: "Gigamacro",
  47943. height: math.unit(190000, "miles")
  47944. },
  47945. ]
  47946. ))
  47947. characterMakers.push(() => makeCharacter(
  47948. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  47949. {
  47950. front: {
  47951. height: math.unit(6, "feet"),
  47952. weight: math.unit(150, "lb"),
  47953. name: "Front",
  47954. image: {
  47955. source: "./media/characters/rebecca-stack/front.svg",
  47956. extra: 1256/1201,
  47957. bottom: 18/1274
  47958. }
  47959. },
  47960. },
  47961. [
  47962. {
  47963. name: "Normal",
  47964. height: math.unit(5 + 8/12, "feet"),
  47965. default: true
  47966. },
  47967. {
  47968. name: "Demolitionist",
  47969. height: math.unit(200, "feet")
  47970. },
  47971. {
  47972. name: "Out of Control",
  47973. height: math.unit(2, "miles")
  47974. },
  47975. {
  47976. name: "Giga",
  47977. height: math.unit(7200, "miles")
  47978. },
  47979. ]
  47980. ))
  47981. characterMakers.push(() => makeCharacter(
  47982. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47983. {
  47984. front: {
  47985. height: math.unit(6, "feet"),
  47986. weight: math.unit(150, "lb"),
  47987. name: "Front",
  47988. image: {
  47989. source: "./media/characters/jenny-cartwright/front.svg",
  47990. extra: 1384/1376,
  47991. bottom: 58/1442
  47992. }
  47993. },
  47994. },
  47995. [
  47996. {
  47997. name: "Normal",
  47998. height: math.unit(6 + 7/12, "feet"),
  47999. default: true
  48000. },
  48001. {
  48002. name: "Librarian",
  48003. height: math.unit(55, "feet")
  48004. },
  48005. {
  48006. name: "Sightseer",
  48007. height: math.unit(50, "miles")
  48008. },
  48009. {
  48010. name: "Giga",
  48011. height: math.unit(30000, "miles")
  48012. },
  48013. ]
  48014. ))
  48015. characterMakers.push(() => makeCharacter(
  48016. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  48017. {
  48018. nude: {
  48019. height: math.unit(8, "feet"),
  48020. weight: math.unit(225, "lb"),
  48021. name: "Nude",
  48022. image: {
  48023. source: "./media/characters/marvy/nude.svg",
  48024. extra: 1900/1683,
  48025. bottom: 89/1989
  48026. }
  48027. },
  48028. dressed: {
  48029. height: math.unit(8, "feet"),
  48030. weight: math.unit(225, "lb"),
  48031. name: "Dressed",
  48032. image: {
  48033. source: "./media/characters/marvy/dressed.svg",
  48034. extra: 1900/1683,
  48035. bottom: 89/1989
  48036. }
  48037. },
  48038. head: {
  48039. height: math.unit(2.85, "feet"),
  48040. name: "Head",
  48041. image: {
  48042. source: "./media/characters/marvy/head.svg"
  48043. }
  48044. },
  48045. },
  48046. [
  48047. {
  48048. name: "Normal",
  48049. height: math.unit(8, "feet"),
  48050. default: true
  48051. },
  48052. ]
  48053. ))
  48054. characterMakers.push(() => makeCharacter(
  48055. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  48056. {
  48057. front: {
  48058. height: math.unit(8, "feet"),
  48059. weight: math.unit(250, "lb"),
  48060. name: "Front",
  48061. image: {
  48062. source: "./media/characters/leah/front.svg",
  48063. extra: 1257/1149,
  48064. bottom: 109/1366
  48065. }
  48066. },
  48067. },
  48068. [
  48069. {
  48070. name: "Normal",
  48071. height: math.unit(8, "feet"),
  48072. default: true
  48073. },
  48074. {
  48075. name: "Minimacro",
  48076. height: math.unit(40, "feet")
  48077. },
  48078. {
  48079. name: "Macro",
  48080. height: math.unit(124, "feet")
  48081. },
  48082. {
  48083. name: "Megamacro",
  48084. height: math.unit(850, "feet")
  48085. },
  48086. ]
  48087. ))
  48088. characterMakers.push(() => makeCharacter(
  48089. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  48090. {
  48091. side: {
  48092. height: math.unit(13 + 6/12, "feet"),
  48093. weight: math.unit(3200, "lb"),
  48094. name: "Side",
  48095. image: {
  48096. source: "./media/characters/alvir/side.svg",
  48097. extra: 896/589,
  48098. bottom: 26/922
  48099. }
  48100. },
  48101. },
  48102. [
  48103. {
  48104. name: "Normal",
  48105. height: math.unit(13 + 6/12, "feet"),
  48106. default: true
  48107. },
  48108. ]
  48109. ))
  48110. characterMakers.push(() => makeCharacter(
  48111. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  48112. {
  48113. front: {
  48114. height: math.unit(5 + 4/12, "feet"),
  48115. weight: math.unit(236, "lb"),
  48116. name: "Front",
  48117. image: {
  48118. source: "./media/characters/zaina-khalil/front.svg",
  48119. extra: 1533/1485,
  48120. bottom: 94/1627
  48121. }
  48122. },
  48123. side: {
  48124. height: math.unit(5 + 4/12, "feet"),
  48125. weight: math.unit(236, "lb"),
  48126. name: "Side",
  48127. image: {
  48128. source: "./media/characters/zaina-khalil/side.svg",
  48129. extra: 1537/1498,
  48130. bottom: 66/1603
  48131. }
  48132. },
  48133. back: {
  48134. height: math.unit(5 + 4/12, "feet"),
  48135. weight: math.unit(236, "lb"),
  48136. name: "Back",
  48137. image: {
  48138. source: "./media/characters/zaina-khalil/back.svg",
  48139. extra: 1546/1494,
  48140. bottom: 89/1635
  48141. }
  48142. },
  48143. },
  48144. [
  48145. {
  48146. name: "Normal",
  48147. height: math.unit(5 + 4/12, "feet"),
  48148. default: true
  48149. },
  48150. ]
  48151. ))
  48152. characterMakers.push(() => makeCharacter(
  48153. { name: "Terry", species: ["husky"], tags: ["taur"] },
  48154. {
  48155. side: {
  48156. height: math.unit(12, "feet"),
  48157. weight: math.unit(4000, "lb"),
  48158. name: "Side",
  48159. image: {
  48160. source: "./media/characters/terry/side.svg",
  48161. extra: 1518/1439,
  48162. bottom: 149/1667
  48163. }
  48164. },
  48165. },
  48166. [
  48167. {
  48168. name: "Normal",
  48169. height: math.unit(12, "feet"),
  48170. default: true
  48171. },
  48172. ]
  48173. ))
  48174. characterMakers.push(() => makeCharacter(
  48175. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  48176. {
  48177. front: {
  48178. height: math.unit(12, "feet"),
  48179. weight: math.unit(1500, "lb"),
  48180. name: "Front",
  48181. image: {
  48182. source: "./media/characters/kahea/front.svg",
  48183. extra: 1722/1617,
  48184. bottom: 179/1901
  48185. }
  48186. },
  48187. },
  48188. [
  48189. {
  48190. name: "Normal",
  48191. height: math.unit(12, "feet"),
  48192. default: true
  48193. },
  48194. ]
  48195. ))
  48196. characterMakers.push(() => makeCharacter(
  48197. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  48198. {
  48199. demonFront: {
  48200. height: math.unit(36, "feet"),
  48201. name: "Front",
  48202. image: {
  48203. source: "./media/characters/alex-xuria/demon-front.svg",
  48204. extra: 1705/1673,
  48205. bottom: 198/1903
  48206. },
  48207. form: "demon",
  48208. default: true
  48209. },
  48210. demonBack: {
  48211. height: math.unit(36, "feet"),
  48212. name: "Back",
  48213. image: {
  48214. source: "./media/characters/alex-xuria/demon-back.svg",
  48215. extra: 1725/1693,
  48216. bottom: 70/1795
  48217. },
  48218. form: "demon"
  48219. },
  48220. demonHead: {
  48221. height: math.unit(2.14, "meters"),
  48222. name: "Head",
  48223. image: {
  48224. source: "./media/characters/alex-xuria/demon-head.svg"
  48225. },
  48226. form: "demon"
  48227. },
  48228. demonHand: {
  48229. height: math.unit(1.61, "meters"),
  48230. name: "Hand",
  48231. image: {
  48232. source: "./media/characters/alex-xuria/demon-hand.svg"
  48233. },
  48234. form: "demon"
  48235. },
  48236. demonPaw: {
  48237. height: math.unit(1.35, "meters"),
  48238. name: "Paw",
  48239. image: {
  48240. source: "./media/characters/alex-xuria/demon-paw.svg"
  48241. },
  48242. form: "demon"
  48243. },
  48244. demonFoot: {
  48245. height: math.unit(2.2, "meters"),
  48246. name: "Foot",
  48247. image: {
  48248. source: "./media/characters/alex-xuria/demon-foot.svg"
  48249. },
  48250. form: "demon"
  48251. },
  48252. demonCock: {
  48253. height: math.unit(1.74, "meters"),
  48254. name: "Cock",
  48255. image: {
  48256. source: "./media/characters/alex-xuria/demon-cock.svg"
  48257. },
  48258. form: "demon"
  48259. },
  48260. demonTailClosed: {
  48261. height: math.unit(1.47, "meters"),
  48262. name: "Tail (Closed)",
  48263. image: {
  48264. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  48265. },
  48266. form: "demon"
  48267. },
  48268. demonTailOpen: {
  48269. height: math.unit(2.85, "meters"),
  48270. name: "Tail (Open)",
  48271. image: {
  48272. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  48273. },
  48274. form: "demon"
  48275. },
  48276. incubusFront: {
  48277. height: math.unit(12, "feet"),
  48278. name: "Front",
  48279. image: {
  48280. source: "./media/characters/alex-xuria/incubus-front.svg",
  48281. extra: 1754/1677,
  48282. bottom: 125/1879
  48283. },
  48284. form: "incubus",
  48285. default: true
  48286. },
  48287. incubusBack: {
  48288. height: math.unit(12, "feet"),
  48289. name: "Back",
  48290. image: {
  48291. source: "./media/characters/alex-xuria/incubus-back.svg",
  48292. extra: 1702/1647,
  48293. bottom: 30/1732
  48294. },
  48295. form: "incubus"
  48296. },
  48297. incubusHead: {
  48298. height: math.unit(3.45, "feet"),
  48299. name: "Head",
  48300. image: {
  48301. source: "./media/characters/alex-xuria/incubus-head.svg"
  48302. },
  48303. form: "incubus"
  48304. },
  48305. rabbitFront: {
  48306. height: math.unit(6, "feet"),
  48307. name: "Front",
  48308. image: {
  48309. source: "./media/characters/alex-xuria/rabbit-front.svg",
  48310. extra: 1369/1349,
  48311. bottom: 45/1414
  48312. },
  48313. form: "rabbit",
  48314. default: true
  48315. },
  48316. rabbitSide: {
  48317. height: math.unit(6, "feet"),
  48318. name: "Side",
  48319. image: {
  48320. source: "./media/characters/alex-xuria/rabbit-side.svg",
  48321. extra: 1370/1356,
  48322. bottom: 37/1407
  48323. },
  48324. form: "rabbit"
  48325. },
  48326. rabbitBack: {
  48327. height: math.unit(6, "feet"),
  48328. name: "Back",
  48329. image: {
  48330. source: "./media/characters/alex-xuria/rabbit-back.svg",
  48331. extra: 1375/1358,
  48332. bottom: 43/1418
  48333. },
  48334. form: "rabbit"
  48335. },
  48336. },
  48337. [
  48338. {
  48339. name: "Normal",
  48340. height: math.unit(6, "feet"),
  48341. default: true,
  48342. form: "rabbit"
  48343. },
  48344. {
  48345. name: "Incubus",
  48346. height: math.unit(12, "feet"),
  48347. default: true,
  48348. form: "incubus"
  48349. },
  48350. {
  48351. name: "Demon",
  48352. height: math.unit(36, "feet"),
  48353. default: true,
  48354. form: "demon"
  48355. }
  48356. ],
  48357. {
  48358. "demon": {
  48359. name: "Demon",
  48360. default: true
  48361. },
  48362. "incubus": {
  48363. name: "Incubus",
  48364. },
  48365. "rabbit": {
  48366. name: "Rabbit"
  48367. }
  48368. }
  48369. ))
  48370. characterMakers.push(() => makeCharacter(
  48371. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  48372. {
  48373. front: {
  48374. height: math.unit(7 + 5/12, "feet"),
  48375. weight: math.unit(510, "lb"),
  48376. name: "Front",
  48377. image: {
  48378. source: "./media/characters/syrup/front.svg",
  48379. extra: 932/916,
  48380. bottom: 26/958
  48381. }
  48382. },
  48383. },
  48384. [
  48385. {
  48386. name: "Normal",
  48387. height: math.unit(7 + 5/12, "feet"),
  48388. default: true
  48389. },
  48390. {
  48391. name: "Big",
  48392. height: math.unit(50, "feet")
  48393. },
  48394. {
  48395. name: "Macro",
  48396. height: math.unit(300, "feet")
  48397. },
  48398. {
  48399. name: "Megamacro",
  48400. height: math.unit(1, "mile")
  48401. },
  48402. ]
  48403. ))
  48404. characterMakers.push(() => makeCharacter(
  48405. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  48406. {
  48407. front: {
  48408. height: math.unit(6 + 9/12, "feet"),
  48409. name: "Front",
  48410. image: {
  48411. source: "./media/characters/zeimne/front.svg",
  48412. extra: 1969/1806,
  48413. bottom: 53/2022
  48414. }
  48415. },
  48416. },
  48417. [
  48418. {
  48419. name: "Normal",
  48420. height: math.unit(6 + 9/12, "feet"),
  48421. default: true
  48422. },
  48423. {
  48424. name: "Giant",
  48425. height: math.unit(550, "feet")
  48426. },
  48427. {
  48428. name: "Mega",
  48429. height: math.unit(3, "miles")
  48430. },
  48431. {
  48432. name: "Giga",
  48433. height: math.unit(250, "miles")
  48434. },
  48435. {
  48436. name: "Tera",
  48437. height: math.unit(1, "AU")
  48438. },
  48439. ]
  48440. ))
  48441. characterMakers.push(() => makeCharacter(
  48442. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  48443. {
  48444. front: {
  48445. height: math.unit(5 + 2/12, "feet"),
  48446. name: "Front",
  48447. image: {
  48448. source: "./media/characters/grar/front.svg",
  48449. extra: 1331/1119,
  48450. bottom: 60/1391
  48451. }
  48452. },
  48453. back: {
  48454. height: math.unit(5 + 2/12, "feet"),
  48455. name: "Back",
  48456. image: {
  48457. source: "./media/characters/grar/back.svg",
  48458. extra: 1385/1169,
  48459. bottom: 23/1408
  48460. }
  48461. },
  48462. },
  48463. [
  48464. {
  48465. name: "Normal",
  48466. height: math.unit(5 + 2/12, "feet"),
  48467. default: true
  48468. },
  48469. ]
  48470. ))
  48471. characterMakers.push(() => makeCharacter(
  48472. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  48473. {
  48474. front: {
  48475. height: math.unit(13 + 7/12, "feet"),
  48476. weight: math.unit(2200, "lb"),
  48477. name: "Front",
  48478. image: {
  48479. source: "./media/characters/endraya/front.svg",
  48480. extra: 1289/1215,
  48481. bottom: 50/1339
  48482. }
  48483. },
  48484. nude: {
  48485. height: math.unit(13 + 7/12, "feet"),
  48486. weight: math.unit(2200, "lb"),
  48487. name: "Nude",
  48488. image: {
  48489. source: "./media/characters/endraya/nude.svg",
  48490. extra: 1247/1171,
  48491. bottom: 40/1287
  48492. }
  48493. },
  48494. head: {
  48495. height: math.unit(2.6, "feet"),
  48496. name: "Head",
  48497. image: {
  48498. source: "./media/characters/endraya/head.svg"
  48499. }
  48500. },
  48501. slit: {
  48502. height: math.unit(3.4, "feet"),
  48503. name: "Slit",
  48504. image: {
  48505. source: "./media/characters/endraya/slit.svg"
  48506. }
  48507. },
  48508. },
  48509. [
  48510. {
  48511. name: "Normal",
  48512. height: math.unit(13 + 7/12, "feet"),
  48513. default: true
  48514. },
  48515. {
  48516. name: "Macro",
  48517. height: math.unit(200, "feet")
  48518. },
  48519. ]
  48520. ))
  48521. characterMakers.push(() => makeCharacter(
  48522. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  48523. {
  48524. front: {
  48525. height: math.unit(1.81, "meters"),
  48526. weight: math.unit(69, "kg"),
  48527. name: "Front",
  48528. image: {
  48529. source: "./media/characters/rodryana/front.svg",
  48530. extra: 2002/1921,
  48531. bottom: 53/2055
  48532. }
  48533. },
  48534. back: {
  48535. height: math.unit(1.81, "meters"),
  48536. weight: math.unit(69, "kg"),
  48537. name: "Back",
  48538. image: {
  48539. source: "./media/characters/rodryana/back.svg",
  48540. extra: 1993/1926,
  48541. bottom: 48/2041
  48542. }
  48543. },
  48544. maw: {
  48545. height: math.unit(0.19769417475, "meters"),
  48546. name: "Maw",
  48547. image: {
  48548. source: "./media/characters/rodryana/maw.svg"
  48549. }
  48550. },
  48551. slit: {
  48552. height: math.unit(0.31631067961, "meters"),
  48553. name: "Slit",
  48554. image: {
  48555. source: "./media/characters/rodryana/slit.svg"
  48556. }
  48557. },
  48558. },
  48559. [
  48560. {
  48561. name: "Normal",
  48562. height: math.unit(1.81, "meters")
  48563. },
  48564. {
  48565. name: "Mini Macro",
  48566. height: math.unit(181, "meters")
  48567. },
  48568. {
  48569. name: "Macro",
  48570. height: math.unit(452, "meters"),
  48571. default: true
  48572. },
  48573. {
  48574. name: "Mega Macro",
  48575. height: math.unit(1.375, "km")
  48576. },
  48577. {
  48578. name: "Giga Macro",
  48579. height: math.unit(13.575, "km")
  48580. },
  48581. ]
  48582. ))
  48583. characterMakers.push(() => makeCharacter(
  48584. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  48585. {
  48586. front: {
  48587. height: math.unit(6, "feet"),
  48588. weight: math.unit(1000, "lb"),
  48589. name: "Front",
  48590. image: {
  48591. source: "./media/characters/asaya/front.svg",
  48592. extra: 1460/1200,
  48593. bottom: 71/1531
  48594. }
  48595. },
  48596. },
  48597. [
  48598. {
  48599. name: "Normal",
  48600. height: math.unit(8, "km"),
  48601. default: true
  48602. },
  48603. ]
  48604. ))
  48605. characterMakers.push(() => makeCharacter(
  48606. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  48607. {
  48608. front: {
  48609. height: math.unit(3.5, "meters"),
  48610. name: "Front",
  48611. image: {
  48612. source: "./media/characters/sarzu-and-israz/front.svg",
  48613. extra: 1570/1558,
  48614. bottom: 150/1720
  48615. },
  48616. },
  48617. back: {
  48618. height: math.unit(3.5, "meters"),
  48619. name: "Back",
  48620. image: {
  48621. source: "./media/characters/sarzu-and-israz/back.svg",
  48622. extra: 1523/1509,
  48623. bottom: 132/1655
  48624. },
  48625. },
  48626. frontFemale: {
  48627. height: math.unit(3.5, "meters"),
  48628. name: "Front (Female)",
  48629. image: {
  48630. source: "./media/characters/sarzu-and-israz/front-female.svg",
  48631. extra: 1570/1558,
  48632. bottom: 150/1720
  48633. },
  48634. },
  48635. frontHerm: {
  48636. height: math.unit(3.5, "meters"),
  48637. name: "Front (Herm)",
  48638. image: {
  48639. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  48640. extra: 1570/1558,
  48641. bottom: 150/1720
  48642. },
  48643. },
  48644. },
  48645. [
  48646. {
  48647. name: "Normal",
  48648. height: math.unit(3.5, "meters"),
  48649. default: true,
  48650. },
  48651. {
  48652. name: "Macro",
  48653. height: math.unit(65.5, "meters"),
  48654. },
  48655. ],
  48656. ))
  48657. characterMakers.push(() => makeCharacter(
  48658. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  48659. {
  48660. front: {
  48661. height: math.unit(6, "feet"),
  48662. weight: math.unit(250, "lb"),
  48663. name: "Front",
  48664. image: {
  48665. source: "./media/characters/zenimma/front.svg",
  48666. extra: 1346/1320,
  48667. bottom: 58/1404
  48668. }
  48669. },
  48670. back: {
  48671. height: math.unit(6, "feet"),
  48672. weight: math.unit(250, "lb"),
  48673. name: "Back",
  48674. image: {
  48675. source: "./media/characters/zenimma/back.svg",
  48676. extra: 1324/1308,
  48677. bottom: 44/1368
  48678. }
  48679. },
  48680. dick: {
  48681. height: math.unit(1.44, "feet"),
  48682. name: "Dick",
  48683. image: {
  48684. source: "./media/characters/zenimma/dick.svg"
  48685. }
  48686. },
  48687. },
  48688. [
  48689. {
  48690. name: "Canon Height",
  48691. height: math.unit(66, "miles"),
  48692. default: true
  48693. },
  48694. ]
  48695. ))
  48696. characterMakers.push(() => makeCharacter(
  48697. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  48698. {
  48699. nude: {
  48700. height: math.unit(6, "feet"),
  48701. weight: math.unit(150, "lb"),
  48702. name: "Nude",
  48703. image: {
  48704. source: "./media/characters/shavon/nude.svg",
  48705. extra: 1242/1096,
  48706. bottom: 98/1340
  48707. }
  48708. },
  48709. dressed: {
  48710. height: math.unit(6, "feet"),
  48711. weight: math.unit(150, "lb"),
  48712. name: "Dressed",
  48713. image: {
  48714. source: "./media/characters/shavon/dressed.svg",
  48715. extra: 1242/1096,
  48716. bottom: 98/1340
  48717. }
  48718. },
  48719. },
  48720. [
  48721. {
  48722. name: "Macro",
  48723. height: math.unit(255, "feet"),
  48724. default: true
  48725. },
  48726. ]
  48727. ))
  48728. characterMakers.push(() => makeCharacter(
  48729. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  48730. {
  48731. front: {
  48732. height: math.unit(6, "feet"),
  48733. name: "Front",
  48734. image: {
  48735. source: "./media/characters/steph/front.svg",
  48736. extra: 1430/1330,
  48737. bottom: 54/1484
  48738. }
  48739. },
  48740. },
  48741. [
  48742. {
  48743. name: "Normal",
  48744. height: math.unit(6, "feet"),
  48745. default: true
  48746. },
  48747. ]
  48748. ))
  48749. characterMakers.push(() => makeCharacter(
  48750. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  48751. {
  48752. front: {
  48753. height: math.unit(9, "feet"),
  48754. weight: math.unit(400, "lb"),
  48755. name: "Front",
  48756. image: {
  48757. source: "./media/characters/kil'aman/front.svg",
  48758. extra: 1210/1159,
  48759. bottom: 109/1319
  48760. }
  48761. },
  48762. head: {
  48763. height: math.unit(2.14, "feet"),
  48764. name: "Head",
  48765. image: {
  48766. source: "./media/characters/kil'aman/head.svg"
  48767. }
  48768. },
  48769. maw: {
  48770. height: math.unit(1.21, "feet"),
  48771. name: "Maw",
  48772. image: {
  48773. source: "./media/characters/kil'aman/maw.svg"
  48774. }
  48775. },
  48776. foot: {
  48777. height: math.unit(1.7, "feet"),
  48778. name: "Foot",
  48779. image: {
  48780. source: "./media/characters/kil'aman/foot.svg"
  48781. }
  48782. },
  48783. dick: {
  48784. height: math.unit(2.1, "feet"),
  48785. name: "Dick",
  48786. image: {
  48787. source: "./media/characters/kil'aman/dick.svg"
  48788. }
  48789. },
  48790. },
  48791. [
  48792. {
  48793. name: "Normal",
  48794. height: math.unit(9, "feet")
  48795. },
  48796. {
  48797. name: "Canon Height",
  48798. height: math.unit(10, "miles"),
  48799. default: true
  48800. },
  48801. {
  48802. name: "Maximum",
  48803. height: math.unit(6e9, "miles")
  48804. },
  48805. ]
  48806. ))
  48807. characterMakers.push(() => makeCharacter(
  48808. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  48809. {
  48810. front: {
  48811. height: math.unit(90, "feet"),
  48812. weight: math.unit(675000, "lb"),
  48813. name: "Front",
  48814. image: {
  48815. source: "./media/characters/qadan/front.svg",
  48816. extra: 1012/1004,
  48817. bottom: 78/1090
  48818. }
  48819. },
  48820. back: {
  48821. height: math.unit(90, "feet"),
  48822. weight: math.unit(675000, "lb"),
  48823. name: "Back",
  48824. image: {
  48825. source: "./media/characters/qadan/back.svg",
  48826. extra: 1042/1031,
  48827. bottom: 55/1097
  48828. }
  48829. },
  48830. armored: {
  48831. height: math.unit(90, "feet"),
  48832. weight: math.unit(675000, "lb"),
  48833. name: "Armored",
  48834. image: {
  48835. source: "./media/characters/qadan/armored.svg",
  48836. extra: 1047/1037,
  48837. bottom: 48/1095
  48838. }
  48839. },
  48840. },
  48841. [
  48842. {
  48843. name: "Normal",
  48844. height: math.unit(90, "feet"),
  48845. default: true
  48846. },
  48847. ]
  48848. ))
  48849. characterMakers.push(() => makeCharacter(
  48850. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  48851. {
  48852. front: {
  48853. height: math.unit(6, "feet"),
  48854. weight: math.unit(225, "lb"),
  48855. name: "Front",
  48856. image: {
  48857. source: "./media/characters/brooke/front.svg",
  48858. extra: 1050/1010,
  48859. bottom: 66/1116
  48860. }
  48861. },
  48862. back: {
  48863. height: math.unit(6, "feet"),
  48864. weight: math.unit(225, "lb"),
  48865. name: "Back",
  48866. image: {
  48867. source: "./media/characters/brooke/back.svg",
  48868. extra: 1053/1013,
  48869. bottom: 41/1094
  48870. }
  48871. },
  48872. dressed: {
  48873. height: math.unit(6, "feet"),
  48874. weight: math.unit(225, "lb"),
  48875. name: "Dressed",
  48876. image: {
  48877. source: "./media/characters/brooke/dressed.svg",
  48878. extra: 1050/1010,
  48879. bottom: 66/1116
  48880. }
  48881. },
  48882. },
  48883. [
  48884. {
  48885. name: "Canon Height",
  48886. height: math.unit(500, "miles"),
  48887. default: true
  48888. },
  48889. ]
  48890. ))
  48891. characterMakers.push(() => makeCharacter(
  48892. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  48893. {
  48894. front: {
  48895. height: math.unit(6 + 2/12, "feet"),
  48896. weight: math.unit(210, "lb"),
  48897. name: "Front",
  48898. image: {
  48899. source: "./media/characters/wubs/front.svg",
  48900. extra: 1345/1325,
  48901. bottom: 70/1415
  48902. }
  48903. },
  48904. back: {
  48905. height: math.unit(6 + 2/12, "feet"),
  48906. weight: math.unit(210, "lb"),
  48907. name: "Back",
  48908. image: {
  48909. source: "./media/characters/wubs/back.svg",
  48910. extra: 1296/1275,
  48911. bottom: 58/1354
  48912. }
  48913. },
  48914. },
  48915. [
  48916. {
  48917. name: "Normal",
  48918. height: math.unit(6 + 2/12, "feet"),
  48919. default: true
  48920. },
  48921. {
  48922. name: "Macro",
  48923. height: math.unit(1000, "feet")
  48924. },
  48925. {
  48926. name: "Megamacro",
  48927. height: math.unit(1, "mile")
  48928. },
  48929. ]
  48930. ))
  48931. characterMakers.push(() => makeCharacter(
  48932. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  48933. {
  48934. front: {
  48935. height: math.unit(4, "feet"),
  48936. weight: math.unit(120, "lb"),
  48937. name: "Front",
  48938. image: {
  48939. source: "./media/characters/blue/front.svg",
  48940. extra: 1636/1525,
  48941. bottom: 43/1679
  48942. }
  48943. },
  48944. back: {
  48945. height: math.unit(4, "feet"),
  48946. weight: math.unit(120, "lb"),
  48947. name: "Back",
  48948. image: {
  48949. source: "./media/characters/blue/back.svg",
  48950. extra: 1660/1560,
  48951. bottom: 57/1717
  48952. }
  48953. },
  48954. paws: {
  48955. height: math.unit(0.826, "feet"),
  48956. name: "Paws",
  48957. image: {
  48958. source: "./media/characters/blue/paws.svg"
  48959. }
  48960. },
  48961. },
  48962. [
  48963. {
  48964. name: "Micro",
  48965. height: math.unit(3, "inches")
  48966. },
  48967. {
  48968. name: "Normal",
  48969. height: math.unit(4, "feet"),
  48970. default: true
  48971. },
  48972. {
  48973. name: "Femenine Form",
  48974. height: math.unit(14, "feet")
  48975. },
  48976. {
  48977. name: "Werebat Form",
  48978. height: math.unit(18, "feet")
  48979. },
  48980. ]
  48981. ))
  48982. characterMakers.push(() => makeCharacter(
  48983. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48984. {
  48985. female: {
  48986. height: math.unit(7 + 4/12, "feet"),
  48987. weight: math.unit(243, "lb"),
  48988. name: "Female",
  48989. image: {
  48990. source: "./media/characters/kaya/female.svg",
  48991. extra: 975/898,
  48992. bottom: 34/1009
  48993. }
  48994. },
  48995. herm: {
  48996. height: math.unit(7 + 4/12, "feet"),
  48997. weight: math.unit(243, "lb"),
  48998. name: "Herm",
  48999. image: {
  49000. source: "./media/characters/kaya/herm.svg",
  49001. extra: 975/898,
  49002. bottom: 34/1009
  49003. }
  49004. },
  49005. },
  49006. [
  49007. {
  49008. name: "Normal",
  49009. height: math.unit(7 + 4/12, "feet"),
  49010. default: true
  49011. },
  49012. ]
  49013. ))
  49014. characterMakers.push(() => makeCharacter(
  49015. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  49016. {
  49017. female: {
  49018. height: math.unit(9 + 4/12, "feet"),
  49019. weight: math.unit(398, "lb"),
  49020. name: "Female",
  49021. image: {
  49022. source: "./media/characters/kassandra/female.svg",
  49023. extra: 908/839,
  49024. bottom: 61/969
  49025. }
  49026. },
  49027. intersex: {
  49028. height: math.unit(9 + 4/12, "feet"),
  49029. weight: math.unit(398, "lb"),
  49030. name: "Intersex",
  49031. image: {
  49032. source: "./media/characters/kassandra/intersex.svg",
  49033. extra: 908/839,
  49034. bottom: 61/969
  49035. }
  49036. },
  49037. },
  49038. [
  49039. {
  49040. name: "Normal",
  49041. height: math.unit(9 + 4/12, "feet"),
  49042. default: true
  49043. },
  49044. ]
  49045. ))
  49046. characterMakers.push(() => makeCharacter(
  49047. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  49048. {
  49049. front: {
  49050. height: math.unit(3, "meters"),
  49051. name: "Front",
  49052. image: {
  49053. source: "./media/characters/amy/front.svg",
  49054. extra: 1380/1343,
  49055. bottom: 70/1450
  49056. }
  49057. },
  49058. back: {
  49059. height: math.unit(3, "meters"),
  49060. name: "Back",
  49061. image: {
  49062. source: "./media/characters/amy/back.svg",
  49063. extra: 1380/1347,
  49064. bottom: 66/1446
  49065. }
  49066. },
  49067. },
  49068. [
  49069. {
  49070. name: "Normal",
  49071. height: math.unit(3, "meters"),
  49072. default: true
  49073. },
  49074. ]
  49075. ))
  49076. characterMakers.push(() => makeCharacter(
  49077. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  49078. {
  49079. side: {
  49080. height: math.unit(47, "cm"),
  49081. weight: math.unit(10.8, "kg"),
  49082. name: "Side",
  49083. image: {
  49084. source: "./media/characters/alphaschakal/side.svg",
  49085. extra: 1058/568,
  49086. bottom: 62/1120
  49087. }
  49088. },
  49089. back: {
  49090. height: math.unit(78, "cm"),
  49091. weight: math.unit(10.8, "kg"),
  49092. name: "Back",
  49093. image: {
  49094. source: "./media/characters/alphaschakal/back.svg",
  49095. extra: 1102/942,
  49096. bottom: 185/1287
  49097. }
  49098. },
  49099. head: {
  49100. height: math.unit(28, "cm"),
  49101. name: "Head",
  49102. image: {
  49103. source: "./media/characters/alphaschakal/head.svg",
  49104. extra: 696/508,
  49105. bottom: 0/696
  49106. }
  49107. },
  49108. paw: {
  49109. height: math.unit(16, "cm"),
  49110. name: "Paw",
  49111. image: {
  49112. source: "./media/characters/alphaschakal/paw.svg"
  49113. }
  49114. },
  49115. },
  49116. [
  49117. {
  49118. name: "Normal",
  49119. height: math.unit(47, "cm"),
  49120. default: true
  49121. },
  49122. {
  49123. name: "Macro",
  49124. height: math.unit(340, "cm")
  49125. },
  49126. ]
  49127. ))
  49128. characterMakers.push(() => makeCharacter(
  49129. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  49130. {
  49131. front: {
  49132. height: math.unit(36, "earths"),
  49133. name: "Front",
  49134. image: {
  49135. source: "./media/characters/ecobyss/front.svg",
  49136. extra: 1282/1215,
  49137. bottom: 11/1293
  49138. }
  49139. },
  49140. back: {
  49141. height: math.unit(36, "earths"),
  49142. name: "Back",
  49143. image: {
  49144. source: "./media/characters/ecobyss/back.svg",
  49145. extra: 1291/1222,
  49146. bottom: 8/1299
  49147. }
  49148. },
  49149. },
  49150. [
  49151. {
  49152. name: "Normal",
  49153. height: math.unit(36, "earths"),
  49154. default: true
  49155. },
  49156. ]
  49157. ))
  49158. characterMakers.push(() => makeCharacter(
  49159. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  49160. {
  49161. front: {
  49162. height: math.unit(12, "feet"),
  49163. name: "Front",
  49164. image: {
  49165. source: "./media/characters/vasuk/front.svg",
  49166. extra: 1326/1207,
  49167. bottom: 64/1390
  49168. }
  49169. },
  49170. },
  49171. [
  49172. {
  49173. name: "Normal",
  49174. height: math.unit(12, "feet"),
  49175. default: true
  49176. },
  49177. ]
  49178. ))
  49179. characterMakers.push(() => makeCharacter(
  49180. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  49181. {
  49182. side: {
  49183. height: math.unit(100, "feet"),
  49184. name: "Side",
  49185. image: {
  49186. source: "./media/characters/linneaus/side.svg",
  49187. extra: 987/807,
  49188. bottom: 47/1034
  49189. }
  49190. },
  49191. },
  49192. [
  49193. {
  49194. name: "Macro",
  49195. height: math.unit(100, "feet"),
  49196. default: true
  49197. },
  49198. ]
  49199. ))
  49200. characterMakers.push(() => makeCharacter(
  49201. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  49202. {
  49203. front: {
  49204. height: math.unit(8, "feet"),
  49205. weight: math.unit(1200, "lb"),
  49206. name: "Front",
  49207. image: {
  49208. source: "./media/characters/nyterious-daligdig/front.svg",
  49209. extra: 1284/1094,
  49210. bottom: 84/1368
  49211. }
  49212. },
  49213. back: {
  49214. height: math.unit(8, "feet"),
  49215. weight: math.unit(1200, "lb"),
  49216. name: "Back",
  49217. image: {
  49218. source: "./media/characters/nyterious-daligdig/back.svg",
  49219. extra: 1301/1121,
  49220. bottom: 129/1430
  49221. }
  49222. },
  49223. mouth: {
  49224. height: math.unit(1.464, "feet"),
  49225. name: "Mouth",
  49226. image: {
  49227. source: "./media/characters/nyterious-daligdig/mouth.svg"
  49228. }
  49229. },
  49230. },
  49231. [
  49232. {
  49233. name: "Small",
  49234. height: math.unit(8, "feet"),
  49235. default: true
  49236. },
  49237. {
  49238. name: "Normal",
  49239. height: math.unit(15, "feet")
  49240. },
  49241. {
  49242. name: "Macro",
  49243. height: math.unit(90, "feet")
  49244. },
  49245. ]
  49246. ))
  49247. characterMakers.push(() => makeCharacter(
  49248. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  49249. {
  49250. front: {
  49251. height: math.unit(7 + 4/12, "feet"),
  49252. weight: math.unit(252, "lb"),
  49253. name: "Front",
  49254. image: {
  49255. source: "./media/characters/bandel/front.svg",
  49256. extra: 1946/1775,
  49257. bottom: 26/1972
  49258. }
  49259. },
  49260. back: {
  49261. height: math.unit(7 + 4/12, "feet"),
  49262. weight: math.unit(252, "lb"),
  49263. name: "Back",
  49264. image: {
  49265. source: "./media/characters/bandel/back.svg",
  49266. extra: 1940/1770,
  49267. bottom: 25/1965
  49268. }
  49269. },
  49270. maw: {
  49271. height: math.unit(2.15, "feet"),
  49272. name: "Maw",
  49273. image: {
  49274. source: "./media/characters/bandel/maw.svg"
  49275. }
  49276. },
  49277. stomach: {
  49278. height: math.unit(1.95, "feet"),
  49279. name: "Stomach",
  49280. image: {
  49281. source: "./media/characters/bandel/stomach.svg"
  49282. }
  49283. },
  49284. },
  49285. [
  49286. {
  49287. name: "Normal",
  49288. height: math.unit(7 + 4/12, "feet"),
  49289. default: true
  49290. },
  49291. ]
  49292. ))
  49293. characterMakers.push(() => makeCharacter(
  49294. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  49295. {
  49296. front: {
  49297. height: math.unit(10 + 5/12, "feet"),
  49298. weight: math.unit(773.5, "kg"),
  49299. name: "Front",
  49300. image: {
  49301. source: "./media/characters/zed/front.svg",
  49302. extra: 987/941,
  49303. bottom: 52/1039
  49304. }
  49305. },
  49306. },
  49307. [
  49308. {
  49309. name: "Short",
  49310. height: math.unit(5 + 4/12, "feet")
  49311. },
  49312. {
  49313. name: "Average",
  49314. height: math.unit(10 + 5/12, "feet"),
  49315. default: true
  49316. },
  49317. {
  49318. name: "Mini-Macro",
  49319. height: math.unit(24 + 9/12, "feet")
  49320. },
  49321. {
  49322. name: "Macro",
  49323. height: math.unit(249, "feet")
  49324. },
  49325. {
  49326. name: "Mega-Macro",
  49327. height: math.unit(12490, "feet")
  49328. },
  49329. {
  49330. name: "Giga-Macro",
  49331. height: math.unit(24.9, "miles")
  49332. },
  49333. {
  49334. name: "Tera-Macro",
  49335. height: math.unit(24900, "miles")
  49336. },
  49337. {
  49338. name: "Cosmic Scale",
  49339. height: math.unit(38.9, "lightyears")
  49340. },
  49341. {
  49342. name: "Universal Scale",
  49343. height: math.unit(138e12, "lightyears")
  49344. },
  49345. ]
  49346. ))
  49347. characterMakers.push(() => makeCharacter(
  49348. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  49349. {
  49350. front: {
  49351. height: math.unit(1561, "inches"),
  49352. name: "Front",
  49353. image: {
  49354. source: "./media/characters/ivan/front.svg",
  49355. extra: 1126/1071,
  49356. bottom: 26/1152
  49357. }
  49358. },
  49359. back: {
  49360. height: math.unit(1561, "inches"),
  49361. name: "Back",
  49362. image: {
  49363. source: "./media/characters/ivan/back.svg",
  49364. extra: 1134/1079,
  49365. bottom: 30/1164
  49366. }
  49367. },
  49368. },
  49369. [
  49370. {
  49371. name: "Normal",
  49372. height: math.unit(1561, "inches"),
  49373. default: true
  49374. },
  49375. ]
  49376. ))
  49377. characterMakers.push(() => makeCharacter(
  49378. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  49379. {
  49380. front: {
  49381. height: math.unit(5 + 7/12, "feet"),
  49382. weight: math.unit(150, "lb"),
  49383. name: "Front",
  49384. image: {
  49385. source: "./media/characters/robin-arctic-hare/front.svg",
  49386. extra: 1148/974,
  49387. bottom: 20/1168
  49388. }
  49389. },
  49390. },
  49391. [
  49392. {
  49393. name: "Normal",
  49394. height: math.unit(5 + 7/12, "feet"),
  49395. default: true
  49396. },
  49397. ]
  49398. ))
  49399. characterMakers.push(() => makeCharacter(
  49400. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  49401. {
  49402. side: {
  49403. height: math.unit(5, "feet"),
  49404. name: "Side",
  49405. image: {
  49406. source: "./media/characters/birch/side.svg",
  49407. extra: 985/796,
  49408. bottom: 111/1096
  49409. }
  49410. },
  49411. },
  49412. [
  49413. {
  49414. name: "Normal",
  49415. height: math.unit(5, "feet"),
  49416. default: true
  49417. },
  49418. ]
  49419. ))
  49420. characterMakers.push(() => makeCharacter(
  49421. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  49422. {
  49423. front: {
  49424. height: math.unit(4, "feet"),
  49425. name: "Front",
  49426. image: {
  49427. source: "./media/characters/rasp/front.svg",
  49428. extra: 561/478,
  49429. bottom: 74/635
  49430. }
  49431. },
  49432. },
  49433. [
  49434. {
  49435. name: "Normal",
  49436. height: math.unit(4, "feet"),
  49437. default: true
  49438. },
  49439. ]
  49440. ))
  49441. characterMakers.push(() => makeCharacter(
  49442. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  49443. {
  49444. front: {
  49445. height: math.unit(4 + 6/12, "feet"),
  49446. name: "Front",
  49447. image: {
  49448. source: "./media/characters/agatha/front.svg",
  49449. extra: 947/933,
  49450. bottom: 42/989
  49451. }
  49452. },
  49453. back: {
  49454. height: math.unit(4 + 6/12, "feet"),
  49455. name: "Back",
  49456. image: {
  49457. source: "./media/characters/agatha/back.svg",
  49458. extra: 935/922,
  49459. bottom: 48/983
  49460. }
  49461. },
  49462. },
  49463. [
  49464. {
  49465. name: "Normal",
  49466. height: math.unit(4 + 6 /12, "feet"),
  49467. default: true
  49468. },
  49469. {
  49470. name: "Max Size",
  49471. height: math.unit(500, "feet")
  49472. },
  49473. ]
  49474. ))
  49475. characterMakers.push(() => makeCharacter(
  49476. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  49477. {
  49478. side: {
  49479. height: math.unit(30, "feet"),
  49480. name: "Side",
  49481. image: {
  49482. source: "./media/characters/roggy/side.svg",
  49483. extra: 909/643,
  49484. bottom: 63/972
  49485. }
  49486. },
  49487. lounging: {
  49488. height: math.unit(20, "feet"),
  49489. name: "Lounging",
  49490. image: {
  49491. source: "./media/characters/roggy/lounging.svg",
  49492. extra: 643/479,
  49493. bottom: 145/788
  49494. }
  49495. },
  49496. handpaw: {
  49497. height: math.unit(13.1, "feet"),
  49498. name: "Handpaw",
  49499. image: {
  49500. source: "./media/characters/roggy/handpaw.svg"
  49501. }
  49502. },
  49503. footpaw: {
  49504. height: math.unit(15.8, "feet"),
  49505. name: "Footpaw",
  49506. image: {
  49507. source: "./media/characters/roggy/footpaw.svg"
  49508. }
  49509. },
  49510. },
  49511. [
  49512. {
  49513. name: "Menacing",
  49514. height: math.unit(30, "feet"),
  49515. default: true
  49516. },
  49517. ]
  49518. ))
  49519. characterMakers.push(() => makeCharacter(
  49520. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  49521. {
  49522. front: {
  49523. height: math.unit(5 + 7/12, "feet"),
  49524. weight: math.unit(135, "lb"),
  49525. name: "Front",
  49526. image: {
  49527. source: "./media/characters/naomi/front.svg",
  49528. extra: 1209/1154,
  49529. bottom: 129/1338
  49530. }
  49531. },
  49532. back: {
  49533. height: math.unit(5 + 7/12, "feet"),
  49534. weight: math.unit(135, "lb"),
  49535. name: "Back",
  49536. image: {
  49537. source: "./media/characters/naomi/back.svg",
  49538. extra: 1252/1190,
  49539. bottom: 23/1275
  49540. }
  49541. },
  49542. },
  49543. [
  49544. {
  49545. name: "Normal",
  49546. height: math.unit(5 + 7 /12, "feet"),
  49547. default: true
  49548. },
  49549. ]
  49550. ))
  49551. characterMakers.push(() => makeCharacter(
  49552. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  49553. {
  49554. side: {
  49555. height: math.unit(35, "meters"),
  49556. name: "Side",
  49557. image: {
  49558. source: "./media/characters/kimpi/side.svg",
  49559. extra: 419/382,
  49560. bottom: 63/482
  49561. }
  49562. },
  49563. hand: {
  49564. height: math.unit(8.96, "meters"),
  49565. name: "Hand",
  49566. image: {
  49567. source: "./media/characters/kimpi/hand.svg"
  49568. }
  49569. },
  49570. },
  49571. [
  49572. {
  49573. name: "Normal",
  49574. height: math.unit(35, "meters"),
  49575. default: true
  49576. },
  49577. ]
  49578. ))
  49579. characterMakers.push(() => makeCharacter(
  49580. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  49581. {
  49582. front: {
  49583. height: math.unit(4 + 4/12, "feet"),
  49584. name: "Front",
  49585. image: {
  49586. source: "./media/characters/pepper-purrloin/front.svg",
  49587. extra: 1141/1024,
  49588. bottom: 21/1162
  49589. }
  49590. },
  49591. },
  49592. [
  49593. {
  49594. name: "Normal",
  49595. height: math.unit(4 + 4/12, "feet"),
  49596. default: true
  49597. },
  49598. ]
  49599. ))
  49600. characterMakers.push(() => makeCharacter(
  49601. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  49602. {
  49603. front: {
  49604. height: math.unit(6 + 2/12, "feet"),
  49605. name: "Front",
  49606. image: {
  49607. source: "./media/characters/raphael/front.svg",
  49608. extra: 1101/962,
  49609. bottom: 59/1160
  49610. }
  49611. },
  49612. },
  49613. [
  49614. {
  49615. name: "Normal",
  49616. height: math.unit(6 + 2/12, "feet"),
  49617. default: true
  49618. },
  49619. ]
  49620. ))
  49621. characterMakers.push(() => makeCharacter(
  49622. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  49623. {
  49624. front: {
  49625. height: math.unit(6, "feet"),
  49626. weight: math.unit(150, "lb"),
  49627. name: "Front",
  49628. image: {
  49629. source: "./media/characters/victor-williams/front.svg",
  49630. extra: 1894/1825,
  49631. bottom: 67/1961
  49632. }
  49633. },
  49634. },
  49635. [
  49636. {
  49637. name: "Normal",
  49638. height: math.unit(6, "feet"),
  49639. default: true
  49640. },
  49641. ]
  49642. ))
  49643. characterMakers.push(() => makeCharacter(
  49644. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  49645. {
  49646. front: {
  49647. height: math.unit(5 + 8/12, "feet"),
  49648. weight: math.unit(150, "lb"),
  49649. name: "Front",
  49650. image: {
  49651. source: "./media/characters/rachel/front.svg",
  49652. extra: 1902/1787,
  49653. bottom: 46/1948
  49654. }
  49655. },
  49656. },
  49657. [
  49658. {
  49659. name: "Base Height",
  49660. height: math.unit(5 + 8/12, "feet"),
  49661. default: true
  49662. },
  49663. {
  49664. name: "Macro",
  49665. height: math.unit(200, "feet")
  49666. },
  49667. {
  49668. name: "Mega Macro",
  49669. height: math.unit(1, "mile")
  49670. },
  49671. {
  49672. name: "Giga Macro",
  49673. height: math.unit(1500, "miles")
  49674. },
  49675. {
  49676. name: "Tera Macro",
  49677. height: math.unit(8000, "miles")
  49678. },
  49679. {
  49680. name: "Tera Macro+",
  49681. height: math.unit(2e5, "miles")
  49682. },
  49683. ]
  49684. ))
  49685. characterMakers.push(() => makeCharacter(
  49686. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  49687. {
  49688. front: {
  49689. height: math.unit(6.5, "feet"),
  49690. name: "Front",
  49691. image: {
  49692. source: "./media/characters/svetlana-rozovskaya/front.svg",
  49693. extra: 860/819,
  49694. bottom: 307/1167
  49695. }
  49696. },
  49697. back: {
  49698. height: math.unit(6.5, "feet"),
  49699. name: "Back",
  49700. image: {
  49701. source: "./media/characters/svetlana-rozovskaya/back.svg",
  49702. extra: 880/837,
  49703. bottom: 395/1275
  49704. }
  49705. },
  49706. sleeping: {
  49707. height: math.unit(2.79, "feet"),
  49708. name: "Sleeping",
  49709. image: {
  49710. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  49711. extra: 465/383,
  49712. bottom: 263/728
  49713. }
  49714. },
  49715. maw: {
  49716. height: math.unit(2.52, "feet"),
  49717. name: "Maw",
  49718. image: {
  49719. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  49720. }
  49721. },
  49722. },
  49723. [
  49724. {
  49725. name: "Normal",
  49726. height: math.unit(6.5, "feet"),
  49727. default: true
  49728. },
  49729. ]
  49730. ))
  49731. characterMakers.push(() => makeCharacter(
  49732. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  49733. {
  49734. front: {
  49735. height: math.unit(5, "feet"),
  49736. name: "Front",
  49737. image: {
  49738. source: "./media/characters/nova-nerium/front.svg",
  49739. extra: 1548/1392,
  49740. bottom: 374/1922
  49741. }
  49742. },
  49743. back: {
  49744. height: math.unit(5, "feet"),
  49745. name: "Back",
  49746. image: {
  49747. source: "./media/characters/nova-nerium/back.svg",
  49748. extra: 1658/1468,
  49749. bottom: 257/1915
  49750. }
  49751. },
  49752. },
  49753. [
  49754. {
  49755. name: "Normal",
  49756. height: math.unit(5, "feet"),
  49757. default: true
  49758. },
  49759. ]
  49760. ))
  49761. characterMakers.push(() => makeCharacter(
  49762. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  49763. {
  49764. front: {
  49765. height: math.unit(5 + 4/12, "feet"),
  49766. name: "Front",
  49767. image: {
  49768. source: "./media/characters/ashe-pyriph/front.svg",
  49769. extra: 1935/1747,
  49770. bottom: 60/1995
  49771. }
  49772. },
  49773. },
  49774. [
  49775. {
  49776. name: "Normal",
  49777. height: math.unit(5 + 4/12, "feet"),
  49778. default: true
  49779. },
  49780. ]
  49781. ))
  49782. characterMakers.push(() => makeCharacter(
  49783. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  49784. {
  49785. front: {
  49786. height: math.unit(8.7, "feet"),
  49787. name: "Front",
  49788. image: {
  49789. source: "./media/characters/flicker-wisp/front.svg",
  49790. extra: 1835/1613,
  49791. bottom: 449/2284
  49792. }
  49793. },
  49794. side: {
  49795. height: math.unit(8.7, "feet"),
  49796. name: "Side",
  49797. image: {
  49798. source: "./media/characters/flicker-wisp/side.svg",
  49799. extra: 1841/1642,
  49800. bottom: 336/2177
  49801. },
  49802. default: true
  49803. },
  49804. maw: {
  49805. height: math.unit(3.35, "feet"),
  49806. name: "Maw",
  49807. image: {
  49808. source: "./media/characters/flicker-wisp/maw.svg",
  49809. extra: 2338/1506,
  49810. bottom: 0/2338
  49811. }
  49812. },
  49813. ovipositor: {
  49814. height: math.unit(4.95, "feet"),
  49815. name: "Ovipositor",
  49816. image: {
  49817. source: "./media/characters/flicker-wisp/ovipositor.svg"
  49818. }
  49819. },
  49820. egg: {
  49821. height: math.unit(0.385, "feet"),
  49822. weight: math.unit(2, "lb"),
  49823. name: "Egg",
  49824. image: {
  49825. source: "./media/characters/flicker-wisp/egg.svg"
  49826. }
  49827. },
  49828. },
  49829. [
  49830. {
  49831. name: "Normal",
  49832. height: math.unit(8.7, "feet"),
  49833. default: true
  49834. },
  49835. ]
  49836. ))
  49837. characterMakers.push(() => makeCharacter(
  49838. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  49839. {
  49840. side: {
  49841. height: math.unit(11, "feet"),
  49842. name: "Side",
  49843. image: {
  49844. source: "./media/characters/faefnul/side.svg",
  49845. extra: 1100/1007,
  49846. bottom: 0/1100
  49847. }
  49848. },
  49849. },
  49850. [
  49851. {
  49852. name: "Normal",
  49853. height: math.unit(11, "feet"),
  49854. default: true
  49855. },
  49856. ]
  49857. ))
  49858. characterMakers.push(() => makeCharacter(
  49859. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  49860. {
  49861. front: {
  49862. height: math.unit(6 + 2/12, "feet"),
  49863. name: "Front",
  49864. image: {
  49865. source: "./media/characters/shady/front.svg",
  49866. extra: 502/461,
  49867. bottom: 9/511
  49868. }
  49869. },
  49870. kneeling: {
  49871. height: math.unit(4.6, "feet"),
  49872. name: "Kneeling",
  49873. image: {
  49874. source: "./media/characters/shady/kneeling.svg",
  49875. extra: 1328/1219,
  49876. bottom: 117/1445
  49877. }
  49878. },
  49879. maw: {
  49880. height: math.unit(2, "feet"),
  49881. name: "Maw",
  49882. image: {
  49883. source: "./media/characters/shady/maw.svg"
  49884. }
  49885. },
  49886. },
  49887. [
  49888. {
  49889. name: "Nano",
  49890. height: math.unit(1, "mm")
  49891. },
  49892. {
  49893. name: "Micro",
  49894. height: math.unit(12, "mm")
  49895. },
  49896. {
  49897. name: "Tiny",
  49898. height: math.unit(3, "inches")
  49899. },
  49900. {
  49901. name: "Normal",
  49902. height: math.unit(6 + 2/12, "feet"),
  49903. default: true
  49904. },
  49905. {
  49906. name: "Big",
  49907. height: math.unit(15, "feet")
  49908. },
  49909. {
  49910. name: "Macro",
  49911. height: math.unit(150, "feet")
  49912. },
  49913. {
  49914. name: "Titanic",
  49915. height: math.unit(500, "feet")
  49916. },
  49917. ]
  49918. ))
  49919. characterMakers.push(() => makeCharacter(
  49920. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  49921. {
  49922. front: {
  49923. height: math.unit(12, "feet"),
  49924. name: "Front",
  49925. image: {
  49926. source: "./media/characters/fenrir/front.svg",
  49927. extra: 968/875,
  49928. bottom: 22/990
  49929. }
  49930. },
  49931. },
  49932. [
  49933. {
  49934. name: "Big",
  49935. height: math.unit(12, "feet"),
  49936. default: true
  49937. },
  49938. ]
  49939. ))
  49940. characterMakers.push(() => makeCharacter(
  49941. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  49942. {
  49943. front: {
  49944. height: math.unit(5 + 4/12, "feet"),
  49945. name: "Front",
  49946. image: {
  49947. source: "./media/characters/makar/front.svg",
  49948. extra: 1181/1112,
  49949. bottom: 78/1259
  49950. }
  49951. },
  49952. },
  49953. [
  49954. {
  49955. name: "Normal",
  49956. height: math.unit(5 + 4/12, "feet"),
  49957. default: true
  49958. },
  49959. ]
  49960. ))
  49961. characterMakers.push(() => makeCharacter(
  49962. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49963. {
  49964. front: {
  49965. height: math.unit(5 + 7/12, "feet"),
  49966. name: "Front",
  49967. image: {
  49968. source: "./media/characters/callow/front.svg",
  49969. extra: 1482/1304,
  49970. bottom: 23/1505
  49971. }
  49972. },
  49973. back: {
  49974. height: math.unit(5 + 7/12, "feet"),
  49975. name: "Back",
  49976. image: {
  49977. source: "./media/characters/callow/back.svg",
  49978. extra: 1484/1296,
  49979. bottom: 25/1509
  49980. }
  49981. },
  49982. },
  49983. [
  49984. {
  49985. name: "Micro",
  49986. height: math.unit(3, "inches"),
  49987. default: true
  49988. },
  49989. {
  49990. name: "Normal",
  49991. height: math.unit(5 + 7/12, "feet")
  49992. },
  49993. ]
  49994. ))
  49995. characterMakers.push(() => makeCharacter(
  49996. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49997. {
  49998. front: {
  49999. height: math.unit(6 + 2/12, "feet"),
  50000. name: "Front",
  50001. image: {
  50002. source: "./media/characters/natel/front.svg",
  50003. extra: 1833/1692,
  50004. bottom: 166/1999
  50005. }
  50006. },
  50007. },
  50008. [
  50009. {
  50010. name: "Normal",
  50011. height: math.unit(6 + 2/12, "feet"),
  50012. default: true
  50013. },
  50014. ]
  50015. ))
  50016. characterMakers.push(() => makeCharacter(
  50017. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  50018. {
  50019. front: {
  50020. height: math.unit(1.75, "meters"),
  50021. name: "Front",
  50022. image: {
  50023. source: "./media/characters/misu/front.svg",
  50024. extra: 1690/1558,
  50025. bottom: 234/1924
  50026. }
  50027. },
  50028. back: {
  50029. height: math.unit(1.75, "meters"),
  50030. name: "Back",
  50031. image: {
  50032. source: "./media/characters/misu/back.svg",
  50033. extra: 1762/1618,
  50034. bottom: 146/1908
  50035. }
  50036. },
  50037. frontNude: {
  50038. height: math.unit(1.75, "meters"),
  50039. name: "Front (Nude)",
  50040. image: {
  50041. source: "./media/characters/misu/front-nude.svg",
  50042. extra: 1690/1558,
  50043. bottom: 234/1924
  50044. }
  50045. },
  50046. backNude: {
  50047. height: math.unit(1.75, "meters"),
  50048. name: "Back (Nude)",
  50049. image: {
  50050. source: "./media/characters/misu/back-nude.svg",
  50051. extra: 1762/1618,
  50052. bottom: 146/1908
  50053. }
  50054. },
  50055. frontErect: {
  50056. height: math.unit(1.75, "meters"),
  50057. name: "Front (Erect)",
  50058. image: {
  50059. source: "./media/characters/misu/front-erect.svg",
  50060. extra: 1690/1558,
  50061. bottom: 234/1924
  50062. }
  50063. },
  50064. maw: {
  50065. height: math.unit(0.47, "meters"),
  50066. name: "Maw",
  50067. image: {
  50068. source: "./media/characters/misu/maw.svg"
  50069. }
  50070. },
  50071. head: {
  50072. height: math.unit(0.35, "meters"),
  50073. name: "Head",
  50074. image: {
  50075. source: "./media/characters/misu/head.svg"
  50076. }
  50077. },
  50078. rear: {
  50079. height: math.unit(0.47, "meters"),
  50080. name: "Rear",
  50081. image: {
  50082. source: "./media/characters/misu/rear.svg"
  50083. }
  50084. },
  50085. },
  50086. [
  50087. {
  50088. name: "Normal",
  50089. height: math.unit(1.75, "meters")
  50090. },
  50091. {
  50092. name: "Not good for the people",
  50093. height: math.unit(42, "meters")
  50094. },
  50095. {
  50096. name: "Not good for the neighborhood",
  50097. height: math.unit(135, "meters")
  50098. },
  50099. {
  50100. name: "Bit bigger problem",
  50101. height: math.unit(380, "meters"),
  50102. default: true
  50103. },
  50104. {
  50105. name: "Not good for the city",
  50106. height: math.unit(1.5, "km")
  50107. },
  50108. {
  50109. name: "Not good for the county",
  50110. height: math.unit(5.5, "km")
  50111. },
  50112. {
  50113. name: "Not good for the state",
  50114. height: math.unit(25, "km")
  50115. },
  50116. {
  50117. name: "Not good for the country",
  50118. height: math.unit(125, "km")
  50119. },
  50120. {
  50121. name: "Not good for the continent",
  50122. height: math.unit(2100, "km")
  50123. },
  50124. {
  50125. name: "Not good for the planet",
  50126. height: math.unit(35000, "km")
  50127. },
  50128. {
  50129. name: "Just no",
  50130. height: math.unit(8.5e18, "km")
  50131. },
  50132. ]
  50133. ))
  50134. characterMakers.push(() => makeCharacter(
  50135. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  50136. {
  50137. front: {
  50138. height: math.unit(6.5, "feet"),
  50139. name: "Front",
  50140. image: {
  50141. source: "./media/characters/poppy/front.svg",
  50142. extra: 1878/1812,
  50143. bottom: 43/1921
  50144. }
  50145. },
  50146. feet: {
  50147. height: math.unit(1.06, "feet"),
  50148. name: "Feet",
  50149. image: {
  50150. source: "./media/characters/poppy/feet.svg",
  50151. extra: 1083/1083,
  50152. bottom: 87/1170
  50153. }
  50154. },
  50155. },
  50156. [
  50157. {
  50158. name: "Human",
  50159. height: math.unit(6.5, "feet")
  50160. },
  50161. {
  50162. name: "Default",
  50163. height: math.unit(300, "feet"),
  50164. default: true
  50165. },
  50166. {
  50167. name: "Huge",
  50168. height: math.unit(850, "feet")
  50169. },
  50170. {
  50171. name: "Mega",
  50172. height: math.unit(8000, "feet")
  50173. },
  50174. {
  50175. name: "Giga",
  50176. height: math.unit(300, "miles")
  50177. },
  50178. ]
  50179. ))
  50180. characterMakers.push(() => makeCharacter(
  50181. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  50182. {
  50183. bipedal: {
  50184. height: math.unit(7, "feet"),
  50185. name: "Bipedal",
  50186. image: {
  50187. source: "./media/characters/zener/bipedal.svg",
  50188. extra: 874/805,
  50189. bottom: 109/983
  50190. }
  50191. },
  50192. quadrupedal: {
  50193. height: math.unit(4.64, "feet"),
  50194. name: "Quadrupedal",
  50195. image: {
  50196. source: "./media/characters/zener/quadrupedal.svg",
  50197. extra: 638/507,
  50198. bottom: 190/828
  50199. }
  50200. },
  50201. cock: {
  50202. height: math.unit(18, "inches"),
  50203. name: "Cock",
  50204. image: {
  50205. source: "./media/characters/zener/cock.svg"
  50206. }
  50207. },
  50208. },
  50209. [
  50210. {
  50211. name: "Normal",
  50212. height: math.unit(7, "feet"),
  50213. default: true
  50214. },
  50215. ]
  50216. ))
  50217. characterMakers.push(() => makeCharacter(
  50218. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  50219. {
  50220. nude: {
  50221. height: math.unit(5 + 6/12, "feet"),
  50222. name: "Nude",
  50223. image: {
  50224. source: "./media/characters/charlie-dog/nude.svg",
  50225. extra: 768/734,
  50226. bottom: 26/794
  50227. }
  50228. },
  50229. dressed: {
  50230. height: math.unit(5 + 6/12, "feet"),
  50231. name: "Dressed",
  50232. image: {
  50233. source: "./media/characters/charlie-dog/dressed.svg",
  50234. extra: 768/734,
  50235. bottom: 26/794
  50236. }
  50237. },
  50238. },
  50239. [
  50240. {
  50241. name: "Normal",
  50242. height: math.unit(5 + 6/12, "feet"),
  50243. default: true
  50244. },
  50245. ]
  50246. ))
  50247. characterMakers.push(() => makeCharacter(
  50248. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  50249. {
  50250. front: {
  50251. height: math.unit(6 + 4/12, "feet"),
  50252. name: "Front",
  50253. image: {
  50254. source: "./media/characters/ir'istrasz/front.svg",
  50255. extra: 1014/977,
  50256. bottom: 65/1079
  50257. }
  50258. },
  50259. back: {
  50260. height: math.unit(6 + 4/12, "feet"),
  50261. name: "Back",
  50262. image: {
  50263. source: "./media/characters/ir'istrasz/back.svg",
  50264. extra: 1024/992,
  50265. bottom: 34/1058
  50266. }
  50267. },
  50268. },
  50269. [
  50270. {
  50271. name: "Normal",
  50272. height: math.unit(6 + 4/12, "feet"),
  50273. default: true
  50274. },
  50275. ]
  50276. ))
  50277. characterMakers.push(() => makeCharacter(
  50278. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  50279. {
  50280. front: {
  50281. height: math.unit(5 + 8/12, "feet"),
  50282. name: "Front",
  50283. image: {
  50284. source: "./media/characters/dee-ditto/front.svg",
  50285. extra: 1874/1785,
  50286. bottom: 68/1942
  50287. }
  50288. },
  50289. back: {
  50290. height: math.unit(5 + 8/12, "feet"),
  50291. name: "Back",
  50292. image: {
  50293. source: "./media/characters/dee-ditto/back.svg",
  50294. extra: 1870/1783,
  50295. bottom: 77/1947
  50296. }
  50297. },
  50298. },
  50299. [
  50300. {
  50301. name: "Normal",
  50302. height: math.unit(5 + 8/12, "feet"),
  50303. default: true
  50304. },
  50305. ]
  50306. ))
  50307. characterMakers.push(() => makeCharacter(
  50308. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  50309. {
  50310. front: {
  50311. height: math.unit(7 + 6/12, "feet"),
  50312. name: "Front",
  50313. image: {
  50314. source: "./media/characters/fey/front.svg",
  50315. extra: 995/979,
  50316. bottom: 30/1025
  50317. }
  50318. },
  50319. back: {
  50320. height: math.unit(7 + 6/12, "feet"),
  50321. name: "Back",
  50322. image: {
  50323. source: "./media/characters/fey/back.svg",
  50324. extra: 1079/1008,
  50325. bottom: 5/1084
  50326. }
  50327. },
  50328. dressed: {
  50329. height: math.unit(7 + 6/12, "feet"),
  50330. name: "Dressed",
  50331. image: {
  50332. source: "./media/characters/fey/dressed.svg",
  50333. extra: 995/979,
  50334. bottom: 30/1025
  50335. }
  50336. },
  50337. },
  50338. [
  50339. {
  50340. name: "Normal",
  50341. height: math.unit(7 + 6/12, "feet"),
  50342. default: true
  50343. },
  50344. ]
  50345. ))
  50346. characterMakers.push(() => makeCharacter(
  50347. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  50348. {
  50349. standing: {
  50350. height: math.unit(17, "feet"),
  50351. name: "Standing",
  50352. image: {
  50353. source: "./media/characters/aster/standing.svg",
  50354. extra: 1798/1598,
  50355. bottom: 117/1915
  50356. }
  50357. },
  50358. },
  50359. [
  50360. {
  50361. name: "Normal",
  50362. height: math.unit(17, "feet"),
  50363. default: true
  50364. },
  50365. {
  50366. name: "Homewrecker",
  50367. height: math.unit(95, "feet")
  50368. },
  50369. {
  50370. name: "Planet Devourer",
  50371. height: math.unit(1008000, "miles")
  50372. },
  50373. ]
  50374. ))
  50375. characterMakers.push(() => makeCharacter(
  50376. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  50377. {
  50378. front: {
  50379. height: math.unit(6 + 5/12, "feet"),
  50380. weight: math.unit(265, "lb"),
  50381. name: "Front",
  50382. image: {
  50383. source: "./media/characters/devon-childs/front.svg",
  50384. extra: 1795/1721,
  50385. bottom: 41/1836
  50386. }
  50387. },
  50388. side: {
  50389. height: math.unit(6 + 5/12, "feet"),
  50390. weight: math.unit(265, "lb"),
  50391. name: "Side",
  50392. image: {
  50393. source: "./media/characters/devon-childs/side.svg",
  50394. extra: 1812/1738,
  50395. bottom: 30/1842
  50396. }
  50397. },
  50398. back: {
  50399. height: math.unit(6 + 5/12, "feet"),
  50400. weight: math.unit(265, "lb"),
  50401. name: "Back",
  50402. image: {
  50403. source: "./media/characters/devon-childs/back.svg",
  50404. extra: 1808/1735,
  50405. bottom: 23/1831
  50406. }
  50407. },
  50408. hand: {
  50409. height: math.unit(1.464, "feet"),
  50410. name: "Hand",
  50411. image: {
  50412. source: "./media/characters/devon-childs/hand.svg"
  50413. }
  50414. },
  50415. foot: {
  50416. height: math.unit(1.6, "feet"),
  50417. name: "Foot",
  50418. image: {
  50419. source: "./media/characters/devon-childs/foot.svg"
  50420. }
  50421. },
  50422. },
  50423. [
  50424. {
  50425. name: "Micro",
  50426. height: math.unit(7, "cm")
  50427. },
  50428. {
  50429. name: "Normal",
  50430. height: math.unit(6 + 5/12, "feet"),
  50431. default: true
  50432. },
  50433. {
  50434. name: "Macro",
  50435. height: math.unit(154, "feet")
  50436. },
  50437. ]
  50438. ))
  50439. characterMakers.push(() => makeCharacter(
  50440. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  50441. {
  50442. front: {
  50443. height: math.unit(6, "feet"),
  50444. weight: math.unit(180, "lb"),
  50445. name: "Front",
  50446. image: {
  50447. source: "./media/characters/lydemox-vir/front.svg",
  50448. extra: 1632/1435,
  50449. bottom: 58/1690
  50450. }
  50451. },
  50452. frontSFW: {
  50453. height: math.unit(6, "feet"),
  50454. weight: math.unit(180, "lb"),
  50455. name: "Front (SFW)",
  50456. image: {
  50457. source: "./media/characters/lydemox-vir/front-sfw.svg",
  50458. extra: 1632/1435,
  50459. bottom: 58/1690
  50460. }
  50461. },
  50462. back: {
  50463. height: math.unit(6, "feet"),
  50464. weight: math.unit(180, "lb"),
  50465. name: "Back",
  50466. image: {
  50467. source: "./media/characters/lydemox-vir/back.svg",
  50468. extra: 1593/1408,
  50469. bottom: 31/1624
  50470. }
  50471. },
  50472. paw: {
  50473. height: math.unit(1.85, "feet"),
  50474. name: "Paw",
  50475. image: {
  50476. source: "./media/characters/lydemox-vir/paw.svg"
  50477. }
  50478. },
  50479. dick: {
  50480. height: math.unit(1.8, "feet"),
  50481. name: "Dick",
  50482. image: {
  50483. source: "./media/characters/lydemox-vir/dick.svg"
  50484. }
  50485. },
  50486. },
  50487. [
  50488. {
  50489. name: "Macro",
  50490. height: math.unit(100, "feet"),
  50491. default: true
  50492. },
  50493. {
  50494. name: "Teramacro",
  50495. height: math.unit(1, "earth")
  50496. },
  50497. {
  50498. name: "Planetary",
  50499. height: math.unit(20, "earths")
  50500. },
  50501. ]
  50502. ))
  50503. characterMakers.push(() => makeCharacter(
  50504. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  50505. {
  50506. front: {
  50507. height: math.unit(15 + 8/12, "feet"),
  50508. weight: math.unit(1237, "kg"),
  50509. name: "Front",
  50510. image: {
  50511. source: "./media/characters/mia/front.svg",
  50512. extra: 1573/1446,
  50513. bottom: 58/1631
  50514. }
  50515. },
  50516. },
  50517. [
  50518. {
  50519. name: "Small",
  50520. height: math.unit(9 + 5/12, "feet")
  50521. },
  50522. {
  50523. name: "Normal",
  50524. height: math.unit(15 + 8/12, "feet"),
  50525. default: true
  50526. },
  50527. ]
  50528. ))
  50529. characterMakers.push(() => makeCharacter(
  50530. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  50531. {
  50532. front: {
  50533. height: math.unit(10 + 6/12, "feet"),
  50534. weight: math.unit(1.3, "tons"),
  50535. name: "Front",
  50536. image: {
  50537. source: "./media/characters/mr-graves/front.svg",
  50538. extra: 1779/1695,
  50539. bottom: 198/1977
  50540. }
  50541. },
  50542. },
  50543. [
  50544. {
  50545. name: "Normal",
  50546. height: math.unit(10 + 6 /12, "feet"),
  50547. default: true
  50548. },
  50549. ]
  50550. ))
  50551. characterMakers.push(() => makeCharacter(
  50552. { name: "Jess", species: ["human"], tags: ["anthro"] },
  50553. {
  50554. dressedFront: {
  50555. height: math.unit(5 + 8/12, "feet"),
  50556. weight: math.unit(125, "lb"),
  50557. name: "Dressed (Front)",
  50558. image: {
  50559. source: "./media/characters/jess/dressed-front.svg",
  50560. extra: 1176/1152,
  50561. bottom: 42/1218
  50562. }
  50563. },
  50564. dressedSide: {
  50565. height: math.unit(5 + 8/12, "feet"),
  50566. weight: math.unit(125, "lb"),
  50567. name: "Dressed (Side)",
  50568. image: {
  50569. source: "./media/characters/jess/dressed-side.svg",
  50570. extra: 1204/1190,
  50571. bottom: 6/1210
  50572. }
  50573. },
  50574. nudeFront: {
  50575. height: math.unit(5 + 8/12, "feet"),
  50576. weight: math.unit(125, "lb"),
  50577. name: "Nude (Front)",
  50578. image: {
  50579. source: "./media/characters/jess/nude-front.svg",
  50580. extra: 1176/1152,
  50581. bottom: 42/1218
  50582. }
  50583. },
  50584. nudeSide: {
  50585. height: math.unit(5 + 8/12, "feet"),
  50586. weight: math.unit(125, "lb"),
  50587. name: "Nude (Side)",
  50588. image: {
  50589. source: "./media/characters/jess/nude-side.svg",
  50590. extra: 1204/1190,
  50591. bottom: 6/1210
  50592. }
  50593. },
  50594. organsFront: {
  50595. height: math.unit(2.83799342105, "feet"),
  50596. name: "Organs (Front)",
  50597. image: {
  50598. source: "./media/characters/jess/organs-front.svg"
  50599. }
  50600. },
  50601. organsSide: {
  50602. height: math.unit(2.64225290474, "feet"),
  50603. name: "Organs (Side)",
  50604. image: {
  50605. source: "./media/characters/jess/organs-side.svg"
  50606. }
  50607. },
  50608. digestiveTractFront: {
  50609. height: math.unit(2.8106580871, "feet"),
  50610. name: "Digestive Tract (Front)",
  50611. image: {
  50612. source: "./media/characters/jess/digestive-tract-front.svg"
  50613. }
  50614. },
  50615. digestiveTractSide: {
  50616. height: math.unit(2.54365045014, "feet"),
  50617. name: "Digestive Tract (Side)",
  50618. image: {
  50619. source: "./media/characters/jess/digestive-tract-side.svg"
  50620. }
  50621. },
  50622. respiratorySystemFront: {
  50623. height: math.unit(1.11196233456, "feet"),
  50624. name: "Respiratory System (Front)",
  50625. image: {
  50626. source: "./media/characters/jess/respiratory-system-front.svg"
  50627. }
  50628. },
  50629. respiratorySystemSide: {
  50630. height: math.unit(0.89327966297, "feet"),
  50631. name: "Respiratory System (Side)",
  50632. image: {
  50633. source: "./media/characters/jess/respiratory-system-side.svg"
  50634. }
  50635. },
  50636. urinaryTractFront: {
  50637. height: math.unit(1.16126356186, "feet"),
  50638. name: "Urinary Tract (Front)",
  50639. image: {
  50640. source: "./media/characters/jess/urinary-tract-front.svg"
  50641. }
  50642. },
  50643. urinaryTractSide: {
  50644. height: math.unit(1.20910039627, "feet"),
  50645. name: "Urinary Tract (Side)",
  50646. image: {
  50647. source: "./media/characters/jess/urinary-tract-side.svg"
  50648. }
  50649. },
  50650. reproductiveOrgansFront: {
  50651. height: math.unit(0.48422591566, "feet"),
  50652. name: "Reproductive Organs (Front)",
  50653. image: {
  50654. source: "./media/characters/jess/reproductive-organs-front.svg"
  50655. }
  50656. },
  50657. reproductiveOrgansSide: {
  50658. height: math.unit(0.61553314481, "feet"),
  50659. name: "Reproductive Organs (Side)",
  50660. image: {
  50661. source: "./media/characters/jess/reproductive-organs-side.svg"
  50662. }
  50663. },
  50664. breastsFront: {
  50665. height: math.unit(0.47690395121, "feet"),
  50666. name: "Breasts (Front)",
  50667. image: {
  50668. source: "./media/characters/jess/breasts-front.svg"
  50669. }
  50670. },
  50671. breastsSide: {
  50672. height: math.unit(0.30556998307, "feet"),
  50673. name: "Breasts (Side)",
  50674. image: {
  50675. source: "./media/characters/jess/breasts-side.svg"
  50676. }
  50677. },
  50678. heartFront: {
  50679. height: math.unit(0.53011022622, "feet"),
  50680. name: "Heart (Front)",
  50681. image: {
  50682. source: "./media/characters/jess/heart-front.svg"
  50683. }
  50684. },
  50685. heartSide: {
  50686. height: math.unit(0.51790695213, "feet"),
  50687. name: "Heart (Side)",
  50688. image: {
  50689. source: "./media/characters/jess/heart-side.svg"
  50690. }
  50691. },
  50692. earsAndNoseFront: {
  50693. height: math.unit(0.29385483995, "feet"),
  50694. name: "Ears and Nose (Front)",
  50695. image: {
  50696. source: "./media/characters/jess/ears-and-nose-front.svg"
  50697. }
  50698. },
  50699. earsAndNoseSide: {
  50700. height: math.unit(0.18109658741, "feet"),
  50701. name: "Ears and Nose (Side)",
  50702. image: {
  50703. source: "./media/characters/jess/ears-and-nose-side.svg"
  50704. }
  50705. },
  50706. },
  50707. [
  50708. {
  50709. name: "Normal",
  50710. height: math.unit(5 + 8/12, "feet"),
  50711. default: true
  50712. },
  50713. ]
  50714. ))
  50715. characterMakers.push(() => makeCharacter(
  50716. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  50717. {
  50718. front: {
  50719. height: math.unit(6, "feet"),
  50720. weight: math.unit(6.64467e-7, "grams"),
  50721. name: "Front",
  50722. image: {
  50723. source: "./media/characters/wimpering/front.svg",
  50724. extra: 597/587,
  50725. bottom: 34/631
  50726. }
  50727. },
  50728. },
  50729. [
  50730. {
  50731. name: "Micro",
  50732. height: math.unit(0.4, "mm"),
  50733. default: true
  50734. },
  50735. ]
  50736. ))
  50737. characterMakers.push(() => makeCharacter(
  50738. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  50739. {
  50740. front: {
  50741. height: math.unit(5 + 2/12, "feet"),
  50742. weight: math.unit(110, "lb"),
  50743. name: "Front",
  50744. image: {
  50745. source: "./media/characters/keltre/front.svg",
  50746. extra: 1099/1057,
  50747. bottom: 22/1121
  50748. }
  50749. },
  50750. back: {
  50751. height: math.unit(5 + 2/12, "feet"),
  50752. weight: math.unit(110, "lb"),
  50753. name: "Back",
  50754. image: {
  50755. source: "./media/characters/keltre/back.svg",
  50756. extra: 1095/1053,
  50757. bottom: 17/1112
  50758. }
  50759. },
  50760. dressed: {
  50761. height: math.unit(5 + 2/12, "feet"),
  50762. weight: math.unit(110, "lb"),
  50763. name: "Dressed",
  50764. image: {
  50765. source: "./media/characters/keltre/dressed.svg",
  50766. extra: 1099/1057,
  50767. bottom: 22/1121
  50768. }
  50769. },
  50770. winter: {
  50771. height: math.unit(5 + 2/12, "feet"),
  50772. weight: math.unit(110, "lb"),
  50773. name: "Winter",
  50774. image: {
  50775. source: "./media/characters/keltre/winter.svg",
  50776. extra: 1099/1057,
  50777. bottom: 22/1121
  50778. }
  50779. },
  50780. head: {
  50781. height: math.unit(1.61 * 0.86, "feet"),
  50782. name: "Head",
  50783. image: {
  50784. source: "./media/characters/keltre/head.svg",
  50785. extra: 534/421,
  50786. bottom: 0/534
  50787. }
  50788. },
  50789. hand: {
  50790. height: math.unit(1.3 * 0.86, "feet"),
  50791. name: "Hand",
  50792. image: {
  50793. source: "./media/characters/keltre/hand.svg"
  50794. }
  50795. },
  50796. foot: {
  50797. height: math.unit(1.8 * 0.86, "feet"),
  50798. name: "Foot",
  50799. image: {
  50800. source: "./media/characters/keltre/foot.svg"
  50801. }
  50802. },
  50803. },
  50804. [
  50805. {
  50806. name: "Fine",
  50807. height: math.unit(1, "inch")
  50808. },
  50809. {
  50810. name: "Dimnutive",
  50811. height: math.unit(4, "inches")
  50812. },
  50813. {
  50814. name: "Tiny",
  50815. height: math.unit(1, "foot")
  50816. },
  50817. {
  50818. name: "Small",
  50819. height: math.unit(3, "feet")
  50820. },
  50821. {
  50822. name: "Normal",
  50823. height: math.unit(5 + 2/12, "feet"),
  50824. default: true
  50825. },
  50826. ]
  50827. ))
  50828. characterMakers.push(() => makeCharacter(
  50829. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  50830. {
  50831. front: {
  50832. height: math.unit(6 + 2/12, "feet"),
  50833. name: "Front",
  50834. image: {
  50835. source: "./media/characters/nox/front.svg",
  50836. extra: 1917/1830,
  50837. bottom: 74/1991
  50838. }
  50839. },
  50840. back: {
  50841. height: math.unit(6 + 2/12, "feet"),
  50842. name: "Back",
  50843. image: {
  50844. source: "./media/characters/nox/back.svg",
  50845. extra: 1896/1815,
  50846. bottom: 21/1917
  50847. }
  50848. },
  50849. head: {
  50850. height: math.unit(1.1, "feet"),
  50851. name: "Head",
  50852. image: {
  50853. source: "./media/characters/nox/head.svg",
  50854. extra: 874/704,
  50855. bottom: 0/874
  50856. }
  50857. },
  50858. tattoo: {
  50859. height: math.unit(0.729, "feet"),
  50860. name: "Tattoo",
  50861. image: {
  50862. source: "./media/characters/nox/tattoo.svg"
  50863. }
  50864. },
  50865. },
  50866. [
  50867. {
  50868. name: "Normal",
  50869. height: math.unit(6 + 2/12, "feet")
  50870. },
  50871. {
  50872. name: "Gigamacro",
  50873. height: math.unit(2, "earths"),
  50874. default: true
  50875. },
  50876. {
  50877. name: "Cosmic",
  50878. height: math.unit(867, "yottameters")
  50879. },
  50880. ]
  50881. ))
  50882. characterMakers.push(() => makeCharacter(
  50883. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  50884. {
  50885. front: {
  50886. height: math.unit(6, "feet"),
  50887. weight: math.unit(150, "lb"),
  50888. name: "Front",
  50889. image: {
  50890. source: "./media/characters/caspian/front.svg",
  50891. extra: 1443/1359,
  50892. bottom: 0/1443
  50893. }
  50894. },
  50895. back: {
  50896. height: math.unit(6, "feet"),
  50897. weight: math.unit(150, "lb"),
  50898. name: "Back",
  50899. image: {
  50900. source: "./media/characters/caspian/back.svg",
  50901. extra: 1379/1309,
  50902. bottom: 0/1379
  50903. }
  50904. },
  50905. head: {
  50906. height: math.unit(0.9, "feet"),
  50907. name: "Head",
  50908. image: {
  50909. source: "./media/characters/caspian/head.svg",
  50910. extra: 692/492,
  50911. bottom: 0/692
  50912. }
  50913. },
  50914. headAlt: {
  50915. height: math.unit(0.95, "feet"),
  50916. name: "Head (Alt)",
  50917. image: {
  50918. source: "./media/characters/caspian/head-alt.svg",
  50919. extra: 668/508,
  50920. bottom: 0/668
  50921. }
  50922. },
  50923. hand: {
  50924. height: math.unit(0.8, "feet"),
  50925. name: "Hand",
  50926. image: {
  50927. source: "./media/characters/caspian/hand.svg"
  50928. }
  50929. },
  50930. paw: {
  50931. height: math.unit(0.95, "feet"),
  50932. name: "Paw",
  50933. image: {
  50934. source: "./media/characters/caspian/paw.svg"
  50935. }
  50936. },
  50937. },
  50938. [
  50939. {
  50940. name: "Normal",
  50941. height: math.unit(162, "feet"),
  50942. default: true
  50943. },
  50944. ]
  50945. ))
  50946. characterMakers.push(() => makeCharacter(
  50947. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  50948. {
  50949. front: {
  50950. height: math.unit(6, "feet"),
  50951. name: "Front",
  50952. image: {
  50953. source: "./media/characters/myra-aisling/front.svg",
  50954. extra: 1268/1166,
  50955. bottom: 73/1341
  50956. }
  50957. },
  50958. back: {
  50959. height: math.unit(6, "feet"),
  50960. name: "Back",
  50961. image: {
  50962. source: "./media/characters/myra-aisling/back.svg",
  50963. extra: 1249/1149,
  50964. bottom: 79/1328
  50965. }
  50966. },
  50967. dressed: {
  50968. height: math.unit(6, "feet"),
  50969. name: "Dressed",
  50970. image: {
  50971. source: "./media/characters/myra-aisling/dressed.svg",
  50972. extra: 1290/1189,
  50973. bottom: 47/1337
  50974. }
  50975. },
  50976. hand: {
  50977. height: math.unit(1.1, "feet"),
  50978. name: "Hand",
  50979. image: {
  50980. source: "./media/characters/myra-aisling/hand.svg"
  50981. }
  50982. },
  50983. paw: {
  50984. height: math.unit(1.23, "feet"),
  50985. name: "Paw",
  50986. image: {
  50987. source: "./media/characters/myra-aisling/paw.svg"
  50988. }
  50989. },
  50990. },
  50991. [
  50992. {
  50993. name: "Normal",
  50994. height: math.unit(160, "feet"),
  50995. default: true
  50996. },
  50997. ]
  50998. ))
  50999. characterMakers.push(() => makeCharacter(
  51000. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  51001. {
  51002. front: {
  51003. height: math.unit(6, "feet"),
  51004. name: "Front",
  51005. image: {
  51006. source: "./media/characters/tenley-sidero/front.svg",
  51007. extra: 1365/1276,
  51008. bottom: 47/1412
  51009. }
  51010. },
  51011. back: {
  51012. height: math.unit(6, "feet"),
  51013. name: "Back",
  51014. image: {
  51015. source: "./media/characters/tenley-sidero/back.svg",
  51016. extra: 1383/1283,
  51017. bottom: 35/1418
  51018. }
  51019. },
  51020. dressed: {
  51021. height: math.unit(6, "feet"),
  51022. name: "Dressed",
  51023. image: {
  51024. source: "./media/characters/tenley-sidero/dressed.svg",
  51025. extra: 1364/1275,
  51026. bottom: 42/1406
  51027. }
  51028. },
  51029. head: {
  51030. height: math.unit(1.47, "feet"),
  51031. name: "Head",
  51032. image: {
  51033. source: "./media/characters/tenley-sidero/head.svg",
  51034. extra: 610/490,
  51035. bottom: 0/610
  51036. }
  51037. },
  51038. },
  51039. [
  51040. {
  51041. name: "Normal",
  51042. height: math.unit(154, "feet"),
  51043. default: true
  51044. },
  51045. ]
  51046. ))
  51047. characterMakers.push(() => makeCharacter(
  51048. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  51049. {
  51050. front: {
  51051. height: math.unit(5, "inches"),
  51052. name: "Front",
  51053. image: {
  51054. source: "./media/characters/mallory/front.svg",
  51055. extra: 1919/1678,
  51056. bottom: 29/1948
  51057. }
  51058. },
  51059. hand: {
  51060. height: math.unit(0.73, "inches"),
  51061. name: "Hand",
  51062. image: {
  51063. source: "./media/characters/mallory/hand.svg"
  51064. }
  51065. },
  51066. paw: {
  51067. height: math.unit(0.68, "inches"),
  51068. name: "Paw",
  51069. image: {
  51070. source: "./media/characters/mallory/paw.svg"
  51071. }
  51072. },
  51073. },
  51074. [
  51075. {
  51076. name: "Small",
  51077. height: math.unit(5, "inches"),
  51078. default: true
  51079. },
  51080. ]
  51081. ))
  51082. characterMakers.push(() => makeCharacter(
  51083. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  51084. {
  51085. naked: {
  51086. height: math.unit(6, "feet"),
  51087. name: "Naked",
  51088. image: {
  51089. source: "./media/characters/mab/naked.svg",
  51090. extra: 1855/1757,
  51091. bottom: 208/2063
  51092. }
  51093. },
  51094. outside: {
  51095. height: math.unit(6, "feet"),
  51096. name: "Outside",
  51097. image: {
  51098. source: "./media/characters/mab/outside.svg",
  51099. extra: 1855/1757,
  51100. bottom: 208/2063
  51101. }
  51102. },
  51103. party: {
  51104. height: math.unit(6, "feet"),
  51105. name: "Party",
  51106. image: {
  51107. source: "./media/characters/mab/party.svg",
  51108. extra: 1855/1757,
  51109. bottom: 208/2063
  51110. }
  51111. },
  51112. },
  51113. [
  51114. {
  51115. name: "Normal",
  51116. height: math.unit(165, "feet"),
  51117. default: true
  51118. },
  51119. ]
  51120. ))
  51121. characterMakers.push(() => makeCharacter(
  51122. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  51123. {
  51124. feral: {
  51125. height: math.unit(12, "feet"),
  51126. weight: math.unit(20000, "lb"),
  51127. name: "Side",
  51128. image: {
  51129. source: "./media/characters/winter/feral.svg",
  51130. extra: 1286/943,
  51131. bottom: 112/1398
  51132. },
  51133. form: "feral",
  51134. default: true
  51135. },
  51136. feralNsfw: {
  51137. height: math.unit(12, "feet"),
  51138. weight: math.unit(20000, "lb"),
  51139. name: "Side (NSFW)",
  51140. image: {
  51141. source: "./media/characters/winter/feral-nsfw.svg",
  51142. extra: 1286/943,
  51143. bottom: 112/1398
  51144. },
  51145. form: "feral"
  51146. },
  51147. dick: {
  51148. height: math.unit(3.79, "feet"),
  51149. name: "Dick",
  51150. image: {
  51151. source: "./media/characters/winter/dick.svg"
  51152. },
  51153. form: "feral"
  51154. },
  51155. anthro: {
  51156. height: math.unit(12, "feet"),
  51157. weight: math.unit(10, "tons"),
  51158. name: "Anthro",
  51159. image: {
  51160. source: "./media/characters/winter/anthro.svg",
  51161. extra: 1701/1553,
  51162. bottom: 64/1765
  51163. },
  51164. form: "anthro",
  51165. default: true
  51166. },
  51167. },
  51168. [
  51169. {
  51170. name: "Big",
  51171. height: math.unit(12, "feet"),
  51172. default: true,
  51173. form: "feral"
  51174. },
  51175. {
  51176. name: "Big",
  51177. height: math.unit(12, "feet"),
  51178. default: true,
  51179. form: "anthro"
  51180. },
  51181. ],
  51182. {
  51183. "feral": {
  51184. name: "Feral",
  51185. default: true
  51186. },
  51187. "anthro": {
  51188. name: "Anthro"
  51189. }
  51190. }
  51191. ))
  51192. characterMakers.push(() => makeCharacter(
  51193. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  51194. {
  51195. front: {
  51196. height: math.unit(4.1, "inches"),
  51197. name: "Front",
  51198. image: {
  51199. source: "./media/characters/alto/front.svg",
  51200. extra: 736/627,
  51201. bottom: 90/826
  51202. }
  51203. },
  51204. },
  51205. [
  51206. {
  51207. name: "Normal",
  51208. height: math.unit(4.1, "inches"),
  51209. default: true
  51210. },
  51211. ]
  51212. ))
  51213. characterMakers.push(() => makeCharacter(
  51214. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  51215. {
  51216. sitting: {
  51217. height: math.unit(3, "feet"),
  51218. name: "Sitting",
  51219. image: {
  51220. source: "./media/characters/ratstrid-v/sitting.svg",
  51221. extra: 355/310,
  51222. bottom: 136/491
  51223. }
  51224. },
  51225. },
  51226. [
  51227. {
  51228. name: "Normal",
  51229. height: math.unit(3, "feet"),
  51230. default: true
  51231. },
  51232. ]
  51233. ))
  51234. characterMakers.push(() => makeCharacter(
  51235. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  51236. {
  51237. back: {
  51238. height: math.unit(6, "feet"),
  51239. weight: math.unit(450, "lb"),
  51240. name: "Back",
  51241. image: {
  51242. source: "./media/characters/siz/back.svg",
  51243. extra: 1449/1274,
  51244. bottom: 13/1462
  51245. }
  51246. },
  51247. },
  51248. [
  51249. {
  51250. name: "Smallest",
  51251. height: math.unit(18 + 3/12, "feet")
  51252. },
  51253. {
  51254. name: "Modest",
  51255. height: math.unit(56 + 8/12, "feet"),
  51256. default: true
  51257. },
  51258. {
  51259. name: "Largest",
  51260. height: math.unit(3590, "feet")
  51261. },
  51262. ]
  51263. ))
  51264. characterMakers.push(() => makeCharacter(
  51265. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  51266. {
  51267. front: {
  51268. height: math.unit(5 + 9/12, "feet"),
  51269. weight: math.unit(150, "lb"),
  51270. name: "Front",
  51271. image: {
  51272. source: "./media/characters/ven/front.svg",
  51273. extra: 1372/1320,
  51274. bottom: 73/1445
  51275. }
  51276. },
  51277. side: {
  51278. height: math.unit(5 + 9/12, "feet"),
  51279. weight: math.unit(1150, "lb"),
  51280. name: "Side",
  51281. image: {
  51282. source: "./media/characters/ven/side.svg",
  51283. extra: 1119/1070,
  51284. bottom: 42/1161
  51285. },
  51286. default: true
  51287. },
  51288. },
  51289. [
  51290. {
  51291. name: "Normal",
  51292. height: math.unit(5 + 9/12, "feet"),
  51293. default: true
  51294. },
  51295. ]
  51296. ))
  51297. characterMakers.push(() => makeCharacter(
  51298. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  51299. {
  51300. front: {
  51301. height: math.unit(12, "feet"),
  51302. weight: math.unit(1000, "kg"),
  51303. name: "Front",
  51304. image: {
  51305. source: "./media/characters/maple/front.svg",
  51306. extra: 1193/1081,
  51307. bottom: 22/1215
  51308. }
  51309. },
  51310. },
  51311. [
  51312. {
  51313. name: "Compressed",
  51314. height: math.unit(7, "feet")
  51315. },
  51316. {
  51317. name: "Normal",
  51318. height: math.unit(12, "feet"),
  51319. default: true
  51320. },
  51321. ]
  51322. ))
  51323. characterMakers.push(() => makeCharacter(
  51324. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  51325. {
  51326. front: {
  51327. height: math.unit(9, "feet"),
  51328. weight: math.unit(1500, "lb"),
  51329. name: "Front",
  51330. image: {
  51331. source: "./media/characters/nora/front.svg",
  51332. extra: 1348/1286,
  51333. bottom: 218/1566
  51334. }
  51335. },
  51336. erect: {
  51337. height: math.unit(9, "feet"),
  51338. weight: math.unit(11500, "lb"),
  51339. name: "Erect",
  51340. image: {
  51341. source: "./media/characters/nora/erect.svg",
  51342. extra: 1488/1433,
  51343. bottom: 133/1621
  51344. }
  51345. },
  51346. },
  51347. [
  51348. {
  51349. name: "Normal",
  51350. height: math.unit(9, "feet"),
  51351. default: true
  51352. },
  51353. ]
  51354. ))
  51355. characterMakers.push(() => makeCharacter(
  51356. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  51357. {
  51358. front: {
  51359. height: math.unit(25, "feet"),
  51360. weight: math.unit(27500, "lb"),
  51361. name: "Front",
  51362. image: {
  51363. source: "./media/characters/north-caudin/front.svg",
  51364. extra: 1184/1082,
  51365. bottom: 23/1207
  51366. }
  51367. },
  51368. },
  51369. [
  51370. {
  51371. name: "Compressed",
  51372. height: math.unit(10, "feet")
  51373. },
  51374. {
  51375. name: "Normal",
  51376. height: math.unit(25, "feet"),
  51377. default: true
  51378. },
  51379. ]
  51380. ))
  51381. characterMakers.push(() => makeCharacter(
  51382. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  51383. {
  51384. front: {
  51385. height: math.unit(9, "feet"),
  51386. weight: math.unit(1250, "lb"),
  51387. name: "Front",
  51388. image: {
  51389. source: "./media/characters/merrian/front.svg",
  51390. extra: 2393/2304,
  51391. bottom: 40/2433
  51392. }
  51393. },
  51394. },
  51395. [
  51396. {
  51397. name: "Normal",
  51398. height: math.unit(9, "feet"),
  51399. default: true
  51400. },
  51401. ]
  51402. ))
  51403. characterMakers.push(() => makeCharacter(
  51404. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  51405. {
  51406. front: {
  51407. height: math.unit(9, "feet"),
  51408. weight: math.unit(1000, "lb"),
  51409. name: "Front",
  51410. image: {
  51411. source: "./media/characters/hazel/front.svg",
  51412. extra: 2351/2298,
  51413. bottom: 38/2389
  51414. }
  51415. },
  51416. },
  51417. [
  51418. {
  51419. name: "Normal",
  51420. height: math.unit(9, "feet"),
  51421. default: true
  51422. },
  51423. ]
  51424. ))
  51425. characterMakers.push(() => makeCharacter(
  51426. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  51427. {
  51428. front: {
  51429. height: math.unit(13, "feet"),
  51430. weight: math.unit(3200, "lb"),
  51431. name: "Front",
  51432. image: {
  51433. source: "./media/characters/emma/front.svg",
  51434. extra: 2263/2029,
  51435. bottom: 68/2331
  51436. }
  51437. },
  51438. },
  51439. [
  51440. {
  51441. name: "Normal",
  51442. height: math.unit(13, "feet"),
  51443. default: true
  51444. },
  51445. ]
  51446. ))
  51447. characterMakers.push(() => makeCharacter(
  51448. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  51449. {
  51450. front: {
  51451. height: math.unit(11 + 9/12, "feet"),
  51452. weight: math.unit(2500, "lb"),
  51453. name: "Front",
  51454. image: {
  51455. source: "./media/characters/ilumina/front.svg",
  51456. extra: 2248/2209,
  51457. bottom: 164/2412
  51458. }
  51459. },
  51460. },
  51461. [
  51462. {
  51463. name: "Normal",
  51464. height: math.unit(11 + 9/12, "feet"),
  51465. default: true
  51466. },
  51467. ]
  51468. ))
  51469. characterMakers.push(() => makeCharacter(
  51470. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  51471. {
  51472. front: {
  51473. height: math.unit(8 + 10/12, "feet"),
  51474. weight: math.unit(1350, "lb"),
  51475. name: "Front",
  51476. image: {
  51477. source: "./media/characters/moonshine/front.svg",
  51478. extra: 2395/2288,
  51479. bottom: 40/2435
  51480. }
  51481. },
  51482. },
  51483. [
  51484. {
  51485. name: "Normal",
  51486. height: math.unit(8 + 10/12, "feet"),
  51487. default: true
  51488. },
  51489. ]
  51490. ))
  51491. characterMakers.push(() => makeCharacter(
  51492. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  51493. {
  51494. front: {
  51495. height: math.unit(14, "feet"),
  51496. weight: math.unit(3400, "lb"),
  51497. name: "Front",
  51498. image: {
  51499. source: "./media/characters/aletia/front.svg",
  51500. extra: 1185/1052,
  51501. bottom: 21/1206
  51502. }
  51503. },
  51504. },
  51505. [
  51506. {
  51507. name: "Compressed",
  51508. height: math.unit(8, "feet")
  51509. },
  51510. {
  51511. name: "Normal",
  51512. height: math.unit(14, "feet"),
  51513. default: true
  51514. },
  51515. ]
  51516. ))
  51517. characterMakers.push(() => makeCharacter(
  51518. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  51519. {
  51520. front: {
  51521. height: math.unit(17, "feet"),
  51522. weight: math.unit(6500, "lb"),
  51523. name: "Front",
  51524. image: {
  51525. source: "./media/characters/deidra/front.svg",
  51526. extra: 1201/1081,
  51527. bottom: 16/1217
  51528. }
  51529. },
  51530. },
  51531. [
  51532. {
  51533. name: "Compressed",
  51534. height: math.unit(9 + 6/12, "feet")
  51535. },
  51536. {
  51537. name: "Normal",
  51538. height: math.unit(17, "feet"),
  51539. default: true
  51540. },
  51541. ]
  51542. ))
  51543. characterMakers.push(() => makeCharacter(
  51544. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  51545. {
  51546. front: {
  51547. height: math.unit(7 + 4/12, "feet"),
  51548. weight: math.unit(280, "lb"),
  51549. name: "Front",
  51550. image: {
  51551. source: "./media/characters/freki-yrmori/front.svg",
  51552. extra: 1286/1182,
  51553. bottom: 29/1315
  51554. }
  51555. },
  51556. maw: {
  51557. height: math.unit(0.9, "feet"),
  51558. name: "Maw",
  51559. image: {
  51560. source: "./media/characters/freki-yrmori/maw.svg"
  51561. }
  51562. },
  51563. },
  51564. [
  51565. {
  51566. name: "Normal",
  51567. height: math.unit(7 + 4/12, "feet"),
  51568. default: true
  51569. },
  51570. {
  51571. name: "Macro",
  51572. height: math.unit(38.5, "meters")
  51573. },
  51574. ]
  51575. ))
  51576. characterMakers.push(() => makeCharacter(
  51577. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  51578. {
  51579. side: {
  51580. height: math.unit(47.2, "meters"),
  51581. weight: math.unit(10000, "tons"),
  51582. name: "Side",
  51583. image: {
  51584. source: "./media/characters/aetherios/side.svg",
  51585. extra: 2363/642,
  51586. bottom: 221/2584
  51587. }
  51588. },
  51589. top: {
  51590. height: math.unit(240, "meters"),
  51591. weight: math.unit(10000, "tons"),
  51592. name: "Top",
  51593. image: {
  51594. source: "./media/characters/aetherios/top.svg"
  51595. }
  51596. },
  51597. bottom: {
  51598. height: math.unit(240, "meters"),
  51599. weight: math.unit(10000, "tons"),
  51600. name: "Bottom",
  51601. image: {
  51602. source: "./media/characters/aetherios/bottom.svg"
  51603. }
  51604. },
  51605. head: {
  51606. height: math.unit(38.6, "meters"),
  51607. name: "Head",
  51608. image: {
  51609. source: "./media/characters/aetherios/head.svg",
  51610. extra: 1335/1112,
  51611. bottom: 0/1335
  51612. }
  51613. },
  51614. front: {
  51615. height: math.unit(29, "meters"),
  51616. name: "Front",
  51617. image: {
  51618. source: "./media/characters/aetherios/front.svg",
  51619. extra: 1266/953,
  51620. bottom: 158/1424
  51621. }
  51622. },
  51623. maw: {
  51624. height: math.unit(16.37, "meters"),
  51625. name: "Maw",
  51626. image: {
  51627. source: "./media/characters/aetherios/maw.svg",
  51628. extra: 748/637,
  51629. bottom: 0/748
  51630. },
  51631. extraAttributes: {
  51632. preyCapacity: {
  51633. name: "Capacity",
  51634. power: 3,
  51635. type: "volume",
  51636. base: math.unit(1000, "people")
  51637. },
  51638. tongueSize: {
  51639. name: "Tongue Size",
  51640. power: 2,
  51641. type: "area",
  51642. base: math.unit(21, "m^2")
  51643. }
  51644. }
  51645. },
  51646. forepaw: {
  51647. height: math.unit(18, "meters"),
  51648. name: "Forepaw",
  51649. image: {
  51650. source: "./media/characters/aetherios/forepaw.svg"
  51651. }
  51652. },
  51653. hindpaw: {
  51654. height: math.unit(23, "meters"),
  51655. name: "Hindpaw",
  51656. image: {
  51657. source: "./media/characters/aetherios/hindpaw.svg"
  51658. }
  51659. },
  51660. genitals: {
  51661. height: math.unit(42, "meters"),
  51662. name: "Genitals",
  51663. image: {
  51664. source: "./media/characters/aetherios/genitals.svg"
  51665. }
  51666. },
  51667. },
  51668. [
  51669. {
  51670. name: "Normal",
  51671. height: math.unit(47.2, "meters"),
  51672. default: true
  51673. },
  51674. {
  51675. name: "Macro",
  51676. height: math.unit(160, "meters")
  51677. },
  51678. {
  51679. name: "Mega",
  51680. height: math.unit(1.87, "km")
  51681. },
  51682. {
  51683. name: "Giga",
  51684. height: math.unit(40000, "km")
  51685. },
  51686. {
  51687. name: "Stellar",
  51688. height: math.unit(158000000, "km")
  51689. },
  51690. {
  51691. name: "Cosmic",
  51692. height: math.unit(9.46e12, "km")
  51693. },
  51694. ]
  51695. ))
  51696. characterMakers.push(() => makeCharacter(
  51697. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  51698. {
  51699. front: {
  51700. height: math.unit(5 + 4/12, "feet"),
  51701. weight: math.unit(80, "lb"),
  51702. name: "Front",
  51703. image: {
  51704. source: "./media/characters/mizu-gieeg/front.svg",
  51705. extra: 850/709,
  51706. bottom: 52/902
  51707. }
  51708. },
  51709. back: {
  51710. height: math.unit(5 + 4/12, "feet"),
  51711. weight: math.unit(80, "lb"),
  51712. name: "Back",
  51713. image: {
  51714. source: "./media/characters/mizu-gieeg/back.svg",
  51715. extra: 882/745,
  51716. bottom: 25/907
  51717. }
  51718. },
  51719. },
  51720. [
  51721. {
  51722. name: "Normal",
  51723. height: math.unit(5 + 4/12, "feet"),
  51724. default: true
  51725. },
  51726. ]
  51727. ))
  51728. characterMakers.push(() => makeCharacter(
  51729. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  51730. {
  51731. front: {
  51732. height: math.unit(6, "feet"),
  51733. name: "Front",
  51734. image: {
  51735. source: "./media/characters/roselle-st-papier/front.svg",
  51736. extra: 1430/1280,
  51737. bottom: 37/1467
  51738. }
  51739. },
  51740. back: {
  51741. height: math.unit(6, "feet"),
  51742. name: "Back",
  51743. image: {
  51744. source: "./media/characters/roselle-st-papier/back.svg",
  51745. extra: 1491/1296,
  51746. bottom: 23/1514
  51747. }
  51748. },
  51749. ear: {
  51750. height: math.unit(1.26, "feet"),
  51751. name: "Ear",
  51752. image: {
  51753. source: "./media/characters/roselle-st-papier/ear.svg"
  51754. }
  51755. },
  51756. },
  51757. [
  51758. {
  51759. name: "Normal",
  51760. height: math.unit(150, "feet"),
  51761. default: true
  51762. },
  51763. ]
  51764. ))
  51765. characterMakers.push(() => makeCharacter(
  51766. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  51767. {
  51768. front: {
  51769. height: math.unit(1, "inches"),
  51770. name: "Front",
  51771. image: {
  51772. source: "./media/characters/valargent/front.svg",
  51773. extra: 1825/1694,
  51774. bottom: 62/1887
  51775. }
  51776. },
  51777. back: {
  51778. height: math.unit(1, "inches"),
  51779. name: "Back",
  51780. image: {
  51781. source: "./media/characters/valargent/back.svg",
  51782. extra: 1775/1682,
  51783. bottom: 88/1863
  51784. }
  51785. },
  51786. },
  51787. [
  51788. {
  51789. name: "Micro",
  51790. height: math.unit(1, "inch"),
  51791. default: true
  51792. },
  51793. ]
  51794. ))
  51795. characterMakers.push(() => makeCharacter(
  51796. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  51797. {
  51798. front: {
  51799. height: math.unit(3.4, "meters"),
  51800. name: "Front",
  51801. image: {
  51802. source: "./media/characters/zarina/front.svg",
  51803. extra: 1733/1425,
  51804. bottom: 93/1826
  51805. }
  51806. },
  51807. squatting: {
  51808. height: math.unit(2.14, "meters"),
  51809. name: "Squatting",
  51810. image: {
  51811. source: "./media/characters/zarina/squatting.svg",
  51812. extra: 1073/788,
  51813. bottom: 63/1136
  51814. }
  51815. },
  51816. back: {
  51817. height: math.unit(2.14, "meters"),
  51818. name: "Back",
  51819. image: {
  51820. source: "./media/characters/zarina/back.svg",
  51821. extra: 1128/885,
  51822. bottom: 0/1128
  51823. }
  51824. },
  51825. },
  51826. [
  51827. {
  51828. name: "Normal",
  51829. height: math.unit(3.4, "meters"),
  51830. default: true
  51831. },
  51832. {
  51833. name: "Big",
  51834. height: math.unit(5, "meters")
  51835. },
  51836. {
  51837. name: "Macro",
  51838. height: math.unit(110, "meters")
  51839. },
  51840. ]
  51841. ))
  51842. characterMakers.push(() => makeCharacter(
  51843. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  51844. {
  51845. front: {
  51846. height: math.unit(7, "feet"),
  51847. name: "Front",
  51848. image: {
  51849. source: "./media/characters/ventus-astro-fox/front.svg",
  51850. extra: 1792/1623,
  51851. bottom: 28/1820
  51852. }
  51853. },
  51854. back: {
  51855. height: math.unit(7, "feet"),
  51856. name: "Back",
  51857. image: {
  51858. source: "./media/characters/ventus-astro-fox/back.svg",
  51859. extra: 1789/1620,
  51860. bottom: 31/1820
  51861. }
  51862. },
  51863. outfit: {
  51864. height: math.unit(7, "feet"),
  51865. name: "Outfit",
  51866. image: {
  51867. source: "./media/characters/ventus-astro-fox/outfit.svg",
  51868. extra: 1054/925,
  51869. bottom: 15/1069
  51870. }
  51871. },
  51872. head: {
  51873. height: math.unit(1.12, "feet"),
  51874. name: "Head",
  51875. image: {
  51876. source: "./media/characters/ventus-astro-fox/head.svg",
  51877. extra: 866/504,
  51878. bottom: 0/866
  51879. }
  51880. },
  51881. hand: {
  51882. height: math.unit(1, "feet"),
  51883. name: "Hand",
  51884. image: {
  51885. source: "./media/characters/ventus-astro-fox/hand.svg"
  51886. }
  51887. },
  51888. paw: {
  51889. height: math.unit(1.5, "feet"),
  51890. name: "Paw",
  51891. image: {
  51892. source: "./media/characters/ventus-astro-fox/paw.svg"
  51893. }
  51894. },
  51895. },
  51896. [
  51897. {
  51898. name: "Normal",
  51899. height: math.unit(7, "feet"),
  51900. default: true
  51901. },
  51902. {
  51903. name: "Macro",
  51904. height: math.unit(200, "feet")
  51905. },
  51906. {
  51907. name: "Cosmic",
  51908. height: math.unit(3, "universes")
  51909. },
  51910. ]
  51911. ))
  51912. characterMakers.push(() => makeCharacter(
  51913. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  51914. {
  51915. front: {
  51916. height: math.unit(3, "meters"),
  51917. weight: math.unit(7000, "lb"),
  51918. name: "Front",
  51919. image: {
  51920. source: "./media/characters/core-t/front.svg",
  51921. extra: 5729/4941,
  51922. bottom: 1129/6858
  51923. }
  51924. },
  51925. },
  51926. [
  51927. {
  51928. name: "Big",
  51929. height: math.unit(3, "meters"),
  51930. default: true
  51931. },
  51932. ]
  51933. ))
  51934. characterMakers.push(() => makeCharacter(
  51935. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  51936. {
  51937. normal: {
  51938. height: math.unit(6 + 6/12, "feet"),
  51939. weight: math.unit(275, "lb"),
  51940. name: "Front",
  51941. image: {
  51942. source: "./media/characters/cadbunny/normal.svg",
  51943. extra: 1129/947,
  51944. bottom: 93/1222
  51945. },
  51946. default: true,
  51947. form: "normal"
  51948. },
  51949. gigantamax: {
  51950. height: math.unit(26, "feet"),
  51951. weight: math.unit(16000, "lb"),
  51952. name: "Front",
  51953. image: {
  51954. source: "./media/characters/cadbunny/gigantamax.svg",
  51955. extra: 1133/944,
  51956. bottom: 90/1223
  51957. },
  51958. default: true,
  51959. form: "gigantamax"
  51960. },
  51961. },
  51962. [
  51963. {
  51964. name: "Normal",
  51965. height: math.unit(6 + 6/12, "feet"),
  51966. default: true,
  51967. form: "normal"
  51968. },
  51969. {
  51970. name: "Small",
  51971. height: math.unit(26, "feet"),
  51972. default: true,
  51973. form: "gigantamax"
  51974. },
  51975. {
  51976. name: "Large",
  51977. height: math.unit(78, "feet"),
  51978. form: "gigantamax"
  51979. },
  51980. ],
  51981. {
  51982. "normal": {
  51983. name: "Normal",
  51984. default: true
  51985. },
  51986. "gigantamax": {
  51987. name: "Gigantamax"
  51988. }
  51989. }
  51990. ))
  51991. characterMakers.push(() => makeCharacter(
  51992. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51993. {
  51994. anthroFront: {
  51995. height: math.unit(8, "feet"),
  51996. weight: math.unit(300, "lb"),
  51997. name: "Front",
  51998. image: {
  51999. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  52000. extra: 1272/1176,
  52001. bottom: 53/1325
  52002. },
  52003. form: "anthro",
  52004. default: true
  52005. },
  52006. feralSide: {
  52007. height: math.unit(4, "feet"),
  52008. weight: math.unit(250, "lb"),
  52009. name: "Side",
  52010. image: {
  52011. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  52012. extra: 731/621,
  52013. bottom: 0/731
  52014. },
  52015. form: "feral",
  52016. default: true
  52017. },
  52018. },
  52019. [
  52020. {
  52021. name: "Regular",
  52022. height: math.unit(8, "feet"),
  52023. form: "anthro"
  52024. },
  52025. {
  52026. name: "Macro",
  52027. height: math.unit(250, "feet"),
  52028. form: "anthro",
  52029. default: true
  52030. },
  52031. {
  52032. name: "Regular",
  52033. height: math.unit(4, "feet"),
  52034. form: "feral"
  52035. },
  52036. {
  52037. name: "Macro",
  52038. height: math.unit(125, "feet"),
  52039. form: "feral",
  52040. default: true
  52041. },
  52042. ],
  52043. {
  52044. "anthro": {
  52045. name: "Anthro",
  52046. default: true
  52047. },
  52048. "feral": {
  52049. name: "Feral",
  52050. },
  52051. }
  52052. ))
  52053. characterMakers.push(() => makeCharacter(
  52054. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  52055. {
  52056. front: {
  52057. height: math.unit(11 + 10/12, "feet"),
  52058. weight: math.unit(1587, "kg"),
  52059. name: "Front",
  52060. image: {
  52061. source: "./media/characters/maple-javira-dragon/front.svg",
  52062. extra: 1136/744,
  52063. bottom: 73/1209
  52064. }
  52065. },
  52066. side: {
  52067. height: math.unit(11 + 10/12, "feet"),
  52068. weight: math.unit(1587, "kg"),
  52069. name: "Side",
  52070. image: {
  52071. source: "./media/characters/maple-javira-dragon/side.svg",
  52072. extra: 712/505,
  52073. bottom: 17/729
  52074. }
  52075. },
  52076. head: {
  52077. height: math.unit(8.05, "feet"),
  52078. name: "Head",
  52079. image: {
  52080. source: "./media/characters/maple-javira-dragon/head.svg",
  52081. extra: 1420/1344,
  52082. bottom: 0/1420
  52083. }
  52084. },
  52085. },
  52086. [
  52087. {
  52088. name: "Normal",
  52089. height: math.unit(11 + 10/12, "feet"),
  52090. default: true
  52091. },
  52092. ]
  52093. ))
  52094. characterMakers.push(() => makeCharacter(
  52095. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  52096. {
  52097. front: {
  52098. height: math.unit(117, "cm"),
  52099. weight: math.unit(50, "kg"),
  52100. name: "Front",
  52101. image: {
  52102. source: "./media/characters/sonia-wyverntail/front.svg",
  52103. extra: 708/592,
  52104. bottom: 25/733
  52105. }
  52106. },
  52107. },
  52108. [
  52109. {
  52110. name: "Normal",
  52111. height: math.unit(117, "cm"),
  52112. default: true
  52113. },
  52114. ]
  52115. ))
  52116. characterMakers.push(() => makeCharacter(
  52117. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  52118. {
  52119. front: {
  52120. height: math.unit(6 + 5/12, "feet"),
  52121. name: "Front",
  52122. image: {
  52123. source: "./media/characters/micah/front.svg",
  52124. extra: 1758/1546,
  52125. bottom: 214/1972
  52126. }
  52127. },
  52128. },
  52129. [
  52130. {
  52131. name: "Normal",
  52132. height: math.unit(6 + 5/12, "feet"),
  52133. default: true
  52134. },
  52135. ]
  52136. ))
  52137. characterMakers.push(() => makeCharacter(
  52138. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  52139. {
  52140. front: {
  52141. height: math.unit(1.75, "meters"),
  52142. weight: math.unit(100, "kg"),
  52143. name: "Front",
  52144. image: {
  52145. source: "./media/characters/zarya/front.svg",
  52146. extra: 741/735,
  52147. bottom: 44/785
  52148. },
  52149. extraAttributes: {
  52150. "tailLength": {
  52151. name: "Tail Length",
  52152. power: 1,
  52153. type: "length",
  52154. base: math.unit(180, "cm")
  52155. },
  52156. "pawLength": {
  52157. name: "Paw Length",
  52158. power: 1,
  52159. type: "length",
  52160. base: math.unit(31, "cm")
  52161. },
  52162. }
  52163. },
  52164. side: {
  52165. height: math.unit(1.75, "meters"),
  52166. weight: math.unit(100, "kg"),
  52167. name: "Side",
  52168. image: {
  52169. source: "./media/characters/zarya/side.svg",
  52170. extra: 776/770,
  52171. bottom: 17/793
  52172. },
  52173. extraAttributes: {
  52174. "tailLength": {
  52175. name: "Tail Length",
  52176. power: 1,
  52177. type: "length",
  52178. base: math.unit(180, "cm")
  52179. },
  52180. "pawLength": {
  52181. name: "Paw Length",
  52182. power: 1,
  52183. type: "length",
  52184. base: math.unit(31, "cm")
  52185. },
  52186. }
  52187. },
  52188. back: {
  52189. height: math.unit(1.75, "meters"),
  52190. weight: math.unit(100, "kg"),
  52191. name: "Back",
  52192. image: {
  52193. source: "./media/characters/zarya/back.svg",
  52194. extra: 741/735,
  52195. bottom: 44/785
  52196. },
  52197. extraAttributes: {
  52198. "tailLength": {
  52199. name: "Tail Length",
  52200. power: 1,
  52201. type: "length",
  52202. base: math.unit(180, "cm")
  52203. },
  52204. "pawLength": {
  52205. name: "Paw Length",
  52206. power: 1,
  52207. type: "length",
  52208. base: math.unit(31, "cm")
  52209. },
  52210. }
  52211. },
  52212. frontNoTail: {
  52213. height: math.unit(1.75, "meters"),
  52214. weight: math.unit(100, "kg"),
  52215. name: "Front (No Tail)",
  52216. image: {
  52217. source: "./media/characters/zarya/front-no-tail.svg",
  52218. extra: 741/735,
  52219. bottom: 44/785
  52220. },
  52221. extraAttributes: {
  52222. "tailLength": {
  52223. name: "Tail Length",
  52224. power: 1,
  52225. type: "length",
  52226. base: math.unit(180, "cm")
  52227. },
  52228. "pawLength": {
  52229. name: "Paw Length",
  52230. power: 1,
  52231. type: "length",
  52232. base: math.unit(31, "cm")
  52233. },
  52234. }
  52235. },
  52236. dressed: {
  52237. height: math.unit(1.75, "meters"),
  52238. weight: math.unit(100, "kg"),
  52239. name: "Dressed",
  52240. image: {
  52241. source: "./media/characters/zarya/dressed.svg",
  52242. extra: 683/672,
  52243. bottom: 79/762
  52244. },
  52245. extraAttributes: {
  52246. "tailLength": {
  52247. name: "Tail Length",
  52248. power: 1,
  52249. type: "length",
  52250. base: math.unit(180, "cm")
  52251. },
  52252. "pawLength": {
  52253. name: "Paw Length",
  52254. power: 1,
  52255. type: "length",
  52256. base: math.unit(31, "cm")
  52257. },
  52258. }
  52259. },
  52260. },
  52261. [
  52262. {
  52263. name: "Micro",
  52264. height: math.unit(5, "cm")
  52265. },
  52266. {
  52267. name: "Normal",
  52268. height: math.unit(1.75, "meters"),
  52269. default: true
  52270. },
  52271. {
  52272. name: "Macro",
  52273. height: math.unit(122, "meters")
  52274. },
  52275. ]
  52276. ))
  52277. characterMakers.push(() => makeCharacter(
  52278. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  52279. {
  52280. front: {
  52281. height: math.unit(7.5, "feet"),
  52282. name: "Front",
  52283. image: {
  52284. source: "./media/characters/sven-hatisson/front.svg",
  52285. extra: 917/857,
  52286. bottom: 42/959
  52287. }
  52288. },
  52289. back: {
  52290. height: math.unit(7.5, "feet"),
  52291. name: "Back",
  52292. image: {
  52293. source: "./media/characters/sven-hatisson/back.svg",
  52294. extra: 903/856,
  52295. bottom: 15/918
  52296. }
  52297. },
  52298. },
  52299. [
  52300. {
  52301. name: "Base Height",
  52302. height: math.unit(7.5, "feet")
  52303. },
  52304. {
  52305. name: "Usual Height",
  52306. height: math.unit(13.5, "feet"),
  52307. default: true
  52308. },
  52309. {
  52310. name: "Smaller Macro",
  52311. height: math.unit(85, "feet")
  52312. },
  52313. {
  52314. name: "Moderate Macro",
  52315. height: math.unit(320, "feet")
  52316. },
  52317. {
  52318. name: "Large Macro",
  52319. height: math.unit(1000, "feet")
  52320. },
  52321. {
  52322. name: "Largest Size",
  52323. height: math.unit(2, "miles")
  52324. },
  52325. ]
  52326. ))
  52327. characterMakers.push(() => makeCharacter(
  52328. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  52329. {
  52330. side: {
  52331. height: math.unit(1.8, "meters"),
  52332. weight: math.unit(275, "kg"),
  52333. name: "Side",
  52334. image: {
  52335. source: "./media/characters/terra/side.svg",
  52336. extra: 1273/1147,
  52337. bottom: 0/1273
  52338. }
  52339. },
  52340. },
  52341. [
  52342. {
  52343. name: "Normal",
  52344. height: math.unit(16.2, "meters"),
  52345. default: true
  52346. },
  52347. ]
  52348. ))
  52349. characterMakers.push(() => makeCharacter(
  52350. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  52351. {
  52352. borzoiFront: {
  52353. height: math.unit(6 + 9/12, "feet"),
  52354. name: "Front",
  52355. image: {
  52356. source: "./media/characters/rae/borzoi-front.svg",
  52357. extra: 1161/1098,
  52358. bottom: 31/1192
  52359. },
  52360. form: "borzoi",
  52361. default: true
  52362. },
  52363. werewolfFront: {
  52364. height: math.unit(8 + 7/12, "feet"),
  52365. name: "Front",
  52366. image: {
  52367. source: "./media/characters/rae/werewolf-front.svg",
  52368. extra: 1411/1334,
  52369. bottom: 127/1538
  52370. },
  52371. form: "werewolf",
  52372. default: true
  52373. },
  52374. },
  52375. [
  52376. {
  52377. name: "Normal",
  52378. height: math.unit(6 + 9/12, "feet"),
  52379. default: true,
  52380. form: "borzoi"
  52381. },
  52382. {
  52383. name: "Normal",
  52384. height: math.unit(8 + 7/12, "feet"),
  52385. default: true,
  52386. form: "werewolf"
  52387. },
  52388. ],
  52389. {
  52390. "borzoi": {
  52391. name: "Borzoi",
  52392. default: true
  52393. },
  52394. "werewolf": {
  52395. name: "Werewolf",
  52396. },
  52397. }
  52398. ))
  52399. characterMakers.push(() => makeCharacter(
  52400. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  52401. {
  52402. front: {
  52403. height: math.unit(8 + 7/12, "feet"),
  52404. weight: math.unit(482, "lb"),
  52405. name: "Front",
  52406. image: {
  52407. source: "./media/characters/kit/front.svg",
  52408. extra: 1247/1103,
  52409. bottom: 41/1288
  52410. }
  52411. },
  52412. back: {
  52413. height: math.unit(8 + 7/12, "feet"),
  52414. weight: math.unit(482, "lb"),
  52415. name: "Back",
  52416. image: {
  52417. source: "./media/characters/kit/back.svg",
  52418. extra: 1252/1123,
  52419. bottom: 21/1273
  52420. }
  52421. },
  52422. paw: {
  52423. height: math.unit(1.46, "feet"),
  52424. name: "Paw",
  52425. image: {
  52426. source: "./media/characters/kit/paw.svg"
  52427. }
  52428. },
  52429. },
  52430. [
  52431. {
  52432. name: "Normal",
  52433. height: math.unit(2.61, "meters"),
  52434. default: true
  52435. },
  52436. {
  52437. name: "\"Tall\"",
  52438. height: math.unit(8.21, "meters")
  52439. },
  52440. {
  52441. name: "Tall",
  52442. height: math.unit(19.6, "meters")
  52443. },
  52444. {
  52445. name: "Very Tall",
  52446. height: math.unit(57.91, "meters")
  52447. },
  52448. {
  52449. name: "Semi-Macro",
  52450. height: math.unit(138.64, "meters")
  52451. },
  52452. {
  52453. name: "Macro",
  52454. height: math.unit(831.99, "meters")
  52455. },
  52456. {
  52457. name: "EX-Macro",
  52458. height: math.unit(96451121, "meters")
  52459. },
  52460. {
  52461. name: "S1-Omnipotent",
  52462. height: math.unit(4.42074e+9, "meters")
  52463. },
  52464. {
  52465. name: "S2-Omnipotent",
  52466. height: math.unit(9.42074e+17, "meters")
  52467. },
  52468. {
  52469. name: "Omnipotent",
  52470. height: math.unit(4.23112e+24, "meters")
  52471. },
  52472. {
  52473. name: "Hypergod",
  52474. height: math.unit(5.05176e+27, "meters")
  52475. },
  52476. {
  52477. name: "Hypergod-EX",
  52478. height: math.unit(9.45532e+49, "meters")
  52479. },
  52480. {
  52481. name: "Hypergod-SP",
  52482. height: math.unit(9.45532e+195, "meters")
  52483. },
  52484. ]
  52485. ))
  52486. characterMakers.push(() => makeCharacter(
  52487. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  52488. {
  52489. side: {
  52490. height: math.unit(0.6, "meters"),
  52491. weight: math.unit(24, "kg"),
  52492. name: "Side",
  52493. image: {
  52494. source: "./media/characters/celeste/side.svg",
  52495. extra: 810/517,
  52496. bottom: 53/863
  52497. }
  52498. },
  52499. },
  52500. [
  52501. {
  52502. name: "Velociraptor",
  52503. height: math.unit(0.6, "meters"),
  52504. default: true
  52505. },
  52506. {
  52507. name: "Utahraptor",
  52508. height: math.unit(1.8, "meters")
  52509. },
  52510. {
  52511. name: "Gallimimus",
  52512. height: math.unit(4.0, "meters")
  52513. },
  52514. {
  52515. name: "Large",
  52516. height: math.unit(20, "meters")
  52517. },
  52518. {
  52519. name: "Planetary",
  52520. height: math.unit(50, "megameters")
  52521. },
  52522. {
  52523. name: "Stellar",
  52524. height: math.unit(1.5, "gigameters")
  52525. },
  52526. {
  52527. name: "Galactic",
  52528. height: math.unit(100, "exameters")
  52529. },
  52530. ]
  52531. ))
  52532. characterMakers.push(() => makeCharacter(
  52533. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  52534. {
  52535. front: {
  52536. height: math.unit(6, "feet"),
  52537. weight: math.unit(210, "lb"),
  52538. name: "Front",
  52539. image: {
  52540. source: "./media/characters/glacia/front.svg",
  52541. extra: 958/901,
  52542. bottom: 45/1003
  52543. }
  52544. },
  52545. },
  52546. [
  52547. {
  52548. name: "Macro",
  52549. height: math.unit(1000, "meters"),
  52550. default: true
  52551. },
  52552. ]
  52553. ))
  52554. characterMakers.push(() => makeCharacter(
  52555. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  52556. {
  52557. front: {
  52558. height: math.unit(4, "meters"),
  52559. name: "Front",
  52560. image: {
  52561. source: "./media/characters/giri/front.svg",
  52562. extra: 966/894,
  52563. bottom: 21/987
  52564. }
  52565. },
  52566. },
  52567. [
  52568. {
  52569. name: "Normal",
  52570. height: math.unit(4, "meters"),
  52571. default: true
  52572. },
  52573. ]
  52574. ))
  52575. characterMakers.push(() => makeCharacter(
  52576. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  52577. {
  52578. back: {
  52579. height: math.unit(4, "feet"),
  52580. weight: math.unit(37, "lb"),
  52581. name: "Back",
  52582. image: {
  52583. source: "./media/characters/tin/back.svg",
  52584. extra: 845/780,
  52585. bottom: 28/873
  52586. }
  52587. },
  52588. },
  52589. [
  52590. {
  52591. name: "Normal",
  52592. height: math.unit(4, "feet"),
  52593. default: true
  52594. },
  52595. ]
  52596. ))
  52597. characterMakers.push(() => makeCharacter(
  52598. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  52599. {
  52600. front: {
  52601. height: math.unit(25, "feet"),
  52602. name: "Front",
  52603. image: {
  52604. source: "./media/characters/cadenza-vivace/front.svg",
  52605. extra: 1842/1578,
  52606. bottom: 30/1872
  52607. }
  52608. },
  52609. },
  52610. [
  52611. {
  52612. name: "Macro",
  52613. height: math.unit(25, "feet"),
  52614. default: true
  52615. },
  52616. ]
  52617. ))
  52618. characterMakers.push(() => makeCharacter(
  52619. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  52620. {
  52621. front: {
  52622. height: math.unit(10, "feet"),
  52623. weight: math.unit(625, "kg"),
  52624. name: "Front",
  52625. image: {
  52626. source: "./media/characters/zain/front.svg",
  52627. extra: 1682/1498,
  52628. bottom: 223/1905
  52629. }
  52630. },
  52631. back: {
  52632. height: math.unit(10, "feet"),
  52633. weight: math.unit(625, "kg"),
  52634. name: "Back",
  52635. image: {
  52636. source: "./media/characters/zain/back.svg",
  52637. extra: 1814/1657,
  52638. bottom: 152/1966
  52639. }
  52640. },
  52641. head: {
  52642. height: math.unit(10, "feet"),
  52643. weight: math.unit(625, "kg"),
  52644. name: "Head",
  52645. image: {
  52646. source: "./media/characters/zain/head.svg",
  52647. extra: 1059/762,
  52648. bottom: 0/1059
  52649. }
  52650. },
  52651. },
  52652. [
  52653. {
  52654. name: "Normal",
  52655. height: math.unit(10, "feet"),
  52656. default: true
  52657. },
  52658. ]
  52659. ))
  52660. characterMakers.push(() => makeCharacter(
  52661. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  52662. {
  52663. front: {
  52664. height: math.unit(6 + 5/12, "feet"),
  52665. weight: math.unit(750, "lb"),
  52666. name: "Front",
  52667. image: {
  52668. source: "./media/characters/ruchex/front.svg",
  52669. extra: 877/820,
  52670. bottom: 17/894
  52671. },
  52672. extraAttributes: {
  52673. "width": {
  52674. name: "Width",
  52675. power: 1,
  52676. type: "length",
  52677. base: math.unit(4.757, "feet")
  52678. },
  52679. }
  52680. },
  52681. },
  52682. [
  52683. {
  52684. name: "Normal",
  52685. height: math.unit(6 + 5/12, "feet"),
  52686. default: true
  52687. },
  52688. ]
  52689. ))
  52690. characterMakers.push(() => makeCharacter(
  52691. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  52692. {
  52693. dressedFront: {
  52694. height: math.unit(191, "cm"),
  52695. weight: math.unit(80, "kg"),
  52696. name: "Front",
  52697. image: {
  52698. source: "./media/characters/buster/dressed-front.svg",
  52699. extra: 1022/973,
  52700. bottom: 69/1091
  52701. }
  52702. },
  52703. dressedBack: {
  52704. height: math.unit(191, "cm"),
  52705. weight: math.unit(80, "kg"),
  52706. name: "Back",
  52707. image: {
  52708. source: "./media/characters/buster/dressed-back.svg",
  52709. extra: 1018/970,
  52710. bottom: 55/1073
  52711. }
  52712. },
  52713. nudeFront: {
  52714. height: math.unit(191, "cm"),
  52715. weight: math.unit(80, "kg"),
  52716. name: "Front (Nude)",
  52717. image: {
  52718. source: "./media/characters/buster/nude-front.svg",
  52719. extra: 1022/973,
  52720. bottom: 69/1091
  52721. }
  52722. },
  52723. nudeBack: {
  52724. height: math.unit(191, "cm"),
  52725. weight: math.unit(80, "kg"),
  52726. name: "Back (Nude)",
  52727. image: {
  52728. source: "./media/characters/buster/nude-back.svg",
  52729. extra: 1018/970,
  52730. bottom: 55/1073
  52731. }
  52732. },
  52733. dick: {
  52734. height: math.unit(2.59, "feet"),
  52735. name: "Dick",
  52736. image: {
  52737. source: "./media/characters/buster/dick.svg"
  52738. }
  52739. },
  52740. ass: {
  52741. height: math.unit(1.2, "feet"),
  52742. name: "Ass",
  52743. image: {
  52744. source: "./media/characters/buster/ass.svg"
  52745. }
  52746. },
  52747. },
  52748. [
  52749. {
  52750. name: "Normal",
  52751. height: math.unit(191, "cm"),
  52752. default: true
  52753. },
  52754. ]
  52755. ))
  52756. characterMakers.push(() => makeCharacter(
  52757. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  52758. {
  52759. side: {
  52760. height: math.unit(8.1, "feet"),
  52761. weight: math.unit(3500, "lb"),
  52762. name: "Side",
  52763. image: {
  52764. source: "./media/characters/sonya/side.svg",
  52765. extra: 1730/1317,
  52766. bottom: 86/1816
  52767. }
  52768. },
  52769. },
  52770. [
  52771. {
  52772. name: "Normal",
  52773. height: math.unit(8.1, "feet"),
  52774. default: true
  52775. },
  52776. ]
  52777. ))
  52778. characterMakers.push(() => makeCharacter(
  52779. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  52780. {
  52781. front: {
  52782. height: math.unit(6, "feet"),
  52783. weight: math.unit(150, "lb"),
  52784. name: "Front",
  52785. image: {
  52786. source: "./media/characters/cadence-andrysiak/front.svg",
  52787. extra: 1164/1121,
  52788. bottom: 60/1224
  52789. }
  52790. },
  52791. back: {
  52792. height: math.unit(6, "feet"),
  52793. weight: math.unit(150, "lb"),
  52794. name: "Back",
  52795. image: {
  52796. source: "./media/characters/cadence-andrysiak/back.svg",
  52797. extra: 1200/1165,
  52798. bottom: 9/1209
  52799. }
  52800. },
  52801. dressed: {
  52802. height: math.unit(6, "feet"),
  52803. weight: math.unit(150, "lb"),
  52804. name: "Dressed",
  52805. image: {
  52806. source: "./media/characters/cadence-andrysiak/dressed.svg",
  52807. extra: 1164/1121,
  52808. bottom: 60/1224
  52809. }
  52810. },
  52811. },
  52812. [
  52813. {
  52814. name: "Micro",
  52815. height: math.unit(1, "mm")
  52816. },
  52817. {
  52818. name: "Normal",
  52819. height: math.unit(6, "feet"),
  52820. default: true
  52821. },
  52822. ]
  52823. ))
  52824. characterMakers.push(() => makeCharacter(
  52825. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  52826. {
  52827. front: {
  52828. height: math.unit(60, "inches"),
  52829. weight: math.unit(16, "lb"),
  52830. preyCapacity: math.unit(80, "liters"),
  52831. name: "Front",
  52832. image: {
  52833. source: "./media/characters/penny-lynx/front.svg",
  52834. extra: 1959/1769,
  52835. bottom: 49/2008
  52836. }
  52837. },
  52838. },
  52839. [
  52840. {
  52841. name: "Nokia",
  52842. height: math.unit(2, "inches")
  52843. },
  52844. {
  52845. name: "Desktop",
  52846. height: math.unit(24, "inches")
  52847. },
  52848. {
  52849. name: "TV",
  52850. height: math.unit(60, "inches")
  52851. },
  52852. {
  52853. name: "Jumbotron",
  52854. height: math.unit(12, "feet")
  52855. },
  52856. {
  52857. name: "Billboard",
  52858. height: math.unit(48, "feet"),
  52859. default: true
  52860. },
  52861. {
  52862. name: "IMAX",
  52863. height: math.unit(96, "feet")
  52864. },
  52865. {
  52866. name: "SINGULARITY",
  52867. height: math.unit(864938, "miles")
  52868. },
  52869. ]
  52870. ))
  52871. characterMakers.push(() => makeCharacter(
  52872. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  52873. {
  52874. front: {
  52875. height: math.unit(5 + 4/12, "feet"),
  52876. weight: math.unit(230, "lb"),
  52877. name: "Front",
  52878. image: {
  52879. source: "./media/characters/sukebe/front.svg",
  52880. extra: 2130/2038,
  52881. bottom: 90/2220
  52882. }
  52883. },
  52884. back: {
  52885. height: math.unit(3.48, "feet"),
  52886. weight: math.unit(230, "lb"),
  52887. name: "Back",
  52888. image: {
  52889. source: "./media/characters/sukebe/back.svg",
  52890. extra: 1670/1604,
  52891. bottom: 0/1670
  52892. }
  52893. },
  52894. },
  52895. [
  52896. {
  52897. name: "Normal",
  52898. height: math.unit(5 + 4/12, "feet"),
  52899. default: true
  52900. },
  52901. ]
  52902. ))
  52903. characterMakers.push(() => makeCharacter(
  52904. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  52905. {
  52906. front: {
  52907. height: math.unit(6, "feet"),
  52908. name: "Front",
  52909. image: {
  52910. source: "./media/characters/nylla/front.svg",
  52911. extra: 1868/1699,
  52912. bottom: 97/1965
  52913. }
  52914. },
  52915. back: {
  52916. height: math.unit(6, "feet"),
  52917. name: "Back",
  52918. image: {
  52919. source: "./media/characters/nylla/back.svg",
  52920. extra: 1889/1712,
  52921. bottom: 93/1982
  52922. }
  52923. },
  52924. frontNsfw: {
  52925. height: math.unit(6, "feet"),
  52926. name: "Front (NSFW)",
  52927. image: {
  52928. source: "./media/characters/nylla/front-nsfw.svg",
  52929. extra: 1868/1699,
  52930. bottom: 97/1965
  52931. },
  52932. extraAttributes: {
  52933. "dickLength": {
  52934. name: "Dick Length",
  52935. power: 1,
  52936. type: "length",
  52937. base: math.unit(1.4, "feet")
  52938. },
  52939. "cumVolume": {
  52940. name: "Cum Volume",
  52941. power: 3,
  52942. type: "volume",
  52943. base: math.unit(100, "mL")
  52944. },
  52945. }
  52946. },
  52947. backNsfw: {
  52948. height: math.unit(6, "feet"),
  52949. name: "Back (NSFW)",
  52950. image: {
  52951. source: "./media/characters/nylla/back-nsfw.svg",
  52952. extra: 1889/1712,
  52953. bottom: 93/1982
  52954. }
  52955. },
  52956. maw: {
  52957. height: math.unit(2.10, "feet"),
  52958. name: "Maw",
  52959. image: {
  52960. source: "./media/characters/nylla/maw.svg"
  52961. }
  52962. },
  52963. paws: {
  52964. height: math.unit(2.06, "feet"),
  52965. name: "Paws",
  52966. image: {
  52967. source: "./media/characters/nylla/paws.svg"
  52968. }
  52969. },
  52970. muzzle: {
  52971. height: math.unit(0.61, "feet"),
  52972. name: "Muzzle",
  52973. image: {
  52974. source: "./media/characters/nylla/muzzle.svg"
  52975. }
  52976. },
  52977. sheath: {
  52978. height: math.unit(1.305, "feet"),
  52979. name: "Sheath",
  52980. image: {
  52981. source: "./media/characters/nylla/sheath.svg"
  52982. }
  52983. },
  52984. },
  52985. [
  52986. {
  52987. name: "Micro",
  52988. height: math.unit(7.5, "inches")
  52989. },
  52990. {
  52991. name: "Normal",
  52992. height: math.unit(7, "feet"),
  52993. default: true
  52994. },
  52995. {
  52996. name: "Macro",
  52997. height: math.unit(60, "feet")
  52998. },
  52999. {
  53000. name: "Mega",
  53001. height: math.unit(200, "feet")
  53002. },
  53003. ]
  53004. ))
  53005. characterMakers.push(() => makeCharacter(
  53006. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  53007. {
  53008. front: {
  53009. height: math.unit(10, "feet"),
  53010. weight: math.unit(2300, "lb"),
  53011. name: "Front",
  53012. image: {
  53013. source: "./media/characters/hunt3r/front.svg",
  53014. extra: 1909/1742,
  53015. bottom: 46/1955
  53016. }
  53017. },
  53018. },
  53019. [
  53020. {
  53021. name: "Normal",
  53022. height: math.unit(10, "feet"),
  53023. default: true
  53024. },
  53025. ]
  53026. ))
  53027. characterMakers.push(() => makeCharacter(
  53028. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  53029. {
  53030. dressed: {
  53031. height: math.unit(11, "feet"),
  53032. weight: math.unit(18500, "lb"),
  53033. preyCapacity: math.unit(9, "people"),
  53034. name: "Dressed",
  53035. image: {
  53036. source: "./media/characters/cylphis/dressed.svg",
  53037. extra: 1028/1003,
  53038. bottom: 75/1103
  53039. },
  53040. },
  53041. undressed: {
  53042. height: math.unit(11, "feet"),
  53043. weight: math.unit(18500, "lb"),
  53044. preyCapacity: math.unit(9, "people"),
  53045. name: "Undressed",
  53046. image: {
  53047. source: "./media/characters/cylphis/undressed.svg",
  53048. extra: 1028/1003,
  53049. bottom: 75/1103
  53050. }
  53051. },
  53052. full: {
  53053. height: math.unit(11, "feet"),
  53054. weight: math.unit(18500 + 150*9, "lb"),
  53055. preyCapacity: math.unit(9, "people"),
  53056. name: "Full",
  53057. image: {
  53058. source: "./media/characters/cylphis/full.svg",
  53059. extra: 1028/1003,
  53060. bottom: 75/1103
  53061. }
  53062. },
  53063. },
  53064. [
  53065. {
  53066. name: "Small",
  53067. height: math.unit(8, "feet")
  53068. },
  53069. {
  53070. name: "Normal",
  53071. height: math.unit(11, "feet"),
  53072. default: true
  53073. },
  53074. ]
  53075. ))
  53076. characterMakers.push(() => makeCharacter(
  53077. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  53078. {
  53079. front: {
  53080. height: math.unit(2 + 7/12, "feet"),
  53081. name: "Front",
  53082. image: {
  53083. source: "./media/characters/orishan/front.svg",
  53084. extra: 1058/1023,
  53085. bottom: 23/1081
  53086. }
  53087. },
  53088. back: {
  53089. height: math.unit(2 + 7/12, "feet"),
  53090. name: "Back",
  53091. image: {
  53092. source: "./media/characters/orishan/back.svg",
  53093. extra: 1058/1023,
  53094. bottom: 23/1081
  53095. }
  53096. },
  53097. },
  53098. [
  53099. {
  53100. name: "Micro",
  53101. height: math.unit(2, "cm")
  53102. },
  53103. {
  53104. name: "Normal",
  53105. height: math.unit(2 + 7/12, "feet"),
  53106. default: true
  53107. },
  53108. ]
  53109. ))
  53110. characterMakers.push(() => makeCharacter(
  53111. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  53112. {
  53113. front: {
  53114. height: math.unit(3, "meters"),
  53115. weight: math.unit(508, "kg"),
  53116. name: "Front",
  53117. image: {
  53118. source: "./media/characters/seranis/front.svg",
  53119. extra: 1478/1454,
  53120. bottom: 41/1519
  53121. }
  53122. },
  53123. },
  53124. [
  53125. {
  53126. name: "Normal",
  53127. height: math.unit(3, "meters"),
  53128. default: true
  53129. },
  53130. {
  53131. name: "Macro",
  53132. height: math.unit(108, "meters")
  53133. },
  53134. {
  53135. name: "Megamacro",
  53136. height: math.unit(1250, "meters")
  53137. },
  53138. ]
  53139. ))
  53140. characterMakers.push(() => makeCharacter(
  53141. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  53142. {
  53143. undressed: {
  53144. height: math.unit(5 + 3/12, "feet"),
  53145. name: "Undressed",
  53146. image: {
  53147. source: "./media/characters/ankou/undressed.svg",
  53148. extra: 1301/1213,
  53149. bottom: 87/1388
  53150. }
  53151. },
  53152. dressed: {
  53153. height: math.unit(5 + 3/12, "feet"),
  53154. name: "Dressed",
  53155. image: {
  53156. source: "./media/characters/ankou/dressed.svg",
  53157. extra: 1301/1213,
  53158. bottom: 87/1388
  53159. }
  53160. },
  53161. head: {
  53162. height: math.unit(1.61, "feet"),
  53163. name: "Head",
  53164. image: {
  53165. source: "./media/characters/ankou/head.svg"
  53166. }
  53167. },
  53168. },
  53169. [
  53170. {
  53171. name: "Normal",
  53172. height: math.unit(5 + 3/12, "feet"),
  53173. default: true
  53174. },
  53175. ]
  53176. ))
  53177. characterMakers.push(() => makeCharacter(
  53178. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  53179. {
  53180. side: {
  53181. height: math.unit(6 + 3/12, "feet"),
  53182. weight: math.unit(200, "kg"),
  53183. name: "Side",
  53184. image: {
  53185. source: "./media/characters/juniper-skunktaur/side.svg",
  53186. extra: 1574/1229,
  53187. bottom: 38/1612
  53188. }
  53189. },
  53190. front: {
  53191. height: math.unit(6 + 3/12, "feet"),
  53192. weight: math.unit(200, "kg"),
  53193. name: "Front",
  53194. image: {
  53195. source: "./media/characters/juniper-skunktaur/front.svg",
  53196. extra: 1337/1278,
  53197. bottom: 22/1359
  53198. }
  53199. },
  53200. back: {
  53201. height: math.unit(6 + 3/12, "feet"),
  53202. weight: math.unit(200, "kg"),
  53203. name: "Back",
  53204. image: {
  53205. source: "./media/characters/juniper-skunktaur/back.svg",
  53206. extra: 1618/1273,
  53207. bottom: 13/1631
  53208. }
  53209. },
  53210. top: {
  53211. height: math.unit(2.62, "feet"),
  53212. weight: math.unit(200, "kg"),
  53213. name: "Top",
  53214. image: {
  53215. source: "./media/characters/juniper-skunktaur/top.svg"
  53216. }
  53217. },
  53218. },
  53219. [
  53220. {
  53221. name: "Normal",
  53222. height: math.unit(6 + 3/12, "feet"),
  53223. default: true
  53224. },
  53225. ]
  53226. ))
  53227. characterMakers.push(() => makeCharacter(
  53228. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  53229. {
  53230. front: {
  53231. height: math.unit(20.5, "feet"),
  53232. name: "Front",
  53233. image: {
  53234. source: "./media/characters/rei/front.svg",
  53235. extra: 1349/1195,
  53236. bottom: 31/1380
  53237. }
  53238. },
  53239. back: {
  53240. height: math.unit(20.5, "feet"),
  53241. name: "Back",
  53242. image: {
  53243. source: "./media/characters/rei/back.svg",
  53244. extra: 1358/1204,
  53245. bottom: 22/1380
  53246. }
  53247. },
  53248. pawsDigi: {
  53249. height: math.unit(3.45, "feet"),
  53250. name: "Paws (Digi)",
  53251. image: {
  53252. source: "./media/characters/rei/paws-digi.svg"
  53253. }
  53254. },
  53255. pawsPlanti: {
  53256. height: math.unit(3.45, "feet"),
  53257. name: "Paws (Planti)",
  53258. image: {
  53259. source: "./media/characters/rei/paws-planti.svg"
  53260. }
  53261. },
  53262. },
  53263. [
  53264. {
  53265. name: "Normal",
  53266. height: math.unit(20.5, "feet"),
  53267. default: true
  53268. },
  53269. ]
  53270. ))
  53271. characterMakers.push(() => makeCharacter(
  53272. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  53273. {
  53274. front: {
  53275. height: math.unit(5 + 11/12, "feet"),
  53276. name: "Front",
  53277. image: {
  53278. source: "./media/characters/carina/front.svg",
  53279. extra: 1720/1449,
  53280. bottom: 14/1734
  53281. }
  53282. },
  53283. back: {
  53284. height: math.unit(5 + 11/12, "feet"),
  53285. name: "Back",
  53286. image: {
  53287. source: "./media/characters/carina/back.svg",
  53288. extra: 1493/1445,
  53289. bottom: 17/1510
  53290. }
  53291. },
  53292. paw: {
  53293. height: math.unit(0.92, "feet"),
  53294. name: "Paw",
  53295. image: {
  53296. source: "./media/characters/carina/paw.svg"
  53297. }
  53298. },
  53299. },
  53300. [
  53301. {
  53302. name: "Normal",
  53303. height: math.unit(5 + 11/12, "feet"),
  53304. default: true
  53305. },
  53306. ]
  53307. ))
  53308. characterMakers.push(() => makeCharacter(
  53309. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  53310. {
  53311. normal_front: {
  53312. height: math.unit(4.88, "meters"),
  53313. name: "Front",
  53314. image: {
  53315. source: "./media/characters/maya/normal-front.svg",
  53316. extra: 1222/1145,
  53317. bottom: 57/1279
  53318. },
  53319. form: "normal",
  53320. default: true
  53321. },
  53322. monstrous_front: {
  53323. height: math.unit(10, "meters"),
  53324. name: "Front",
  53325. image: {
  53326. source: "./media/characters/maya/monstrous-front.svg",
  53327. extra: 1523/1109,
  53328. bottom: 113/1636
  53329. },
  53330. form: "monstrous",
  53331. extraAttributes: {
  53332. "swallowSize": {
  53333. name: "Tailmaw Bite Size",
  53334. power: 3,
  53335. type: "volume",
  53336. base: math.unit(43000, "liters")
  53337. },
  53338. }
  53339. },
  53340. taur_front: {
  53341. height: math.unit(10, "meters"),
  53342. name: "Front",
  53343. image: {
  53344. source: "./media/characters/maya/taur-front.svg",
  53345. extra: 743/506,
  53346. bottom: 101/844
  53347. },
  53348. form: "taur",
  53349. },
  53350. },
  53351. [
  53352. {
  53353. name: "Normal",
  53354. height: math.unit(4.88, "meters"),
  53355. default: true,
  53356. form: "normal"
  53357. },
  53358. {
  53359. name: "Macro",
  53360. height: math.unit(38.1, "meters"),
  53361. form: "normal"
  53362. },
  53363. {
  53364. name: "Macro+",
  53365. height: math.unit(152.4, "meters"),
  53366. form: "normal"
  53367. },
  53368. {
  53369. name: "Macro++",
  53370. height: math.unit(16.09, "km"),
  53371. form: "normal"
  53372. },
  53373. {
  53374. name: "Mega-macro",
  53375. height: math.unit(700, "megameters"),
  53376. form: "normal"
  53377. },
  53378. {
  53379. name: "Satiated",
  53380. height: math.unit(10, "meters"),
  53381. default: true,
  53382. form: "monstrous"
  53383. },
  53384. {
  53385. name: "Hungry",
  53386. height: math.unit(75, "meters"),
  53387. form: "monstrous"
  53388. },
  53389. {
  53390. name: "Ravenous",
  53391. height: math.unit(500, "meters"),
  53392. form: "monstrous"
  53393. },
  53394. {
  53395. name: "\"Normal\"",
  53396. height: math.unit(10, "meters"),
  53397. form: "taur"
  53398. },
  53399. {
  53400. name: "Macro",
  53401. height: math.unit(50, "meters"),
  53402. form: "taur"
  53403. },
  53404. ],
  53405. {
  53406. "normal": {
  53407. name: "Normal",
  53408. default: true
  53409. },
  53410. "monstrous": {
  53411. name: "Monstrous",
  53412. },
  53413. "taur": {
  53414. name: "Taur",
  53415. },
  53416. }
  53417. ))
  53418. characterMakers.push(() => makeCharacter(
  53419. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  53420. {
  53421. front: {
  53422. height: math.unit(6 + 2/12, "feet"),
  53423. weight: math.unit(500, "lb"),
  53424. preyCapacity: math.unit(4, "people"),
  53425. name: "Front",
  53426. image: {
  53427. source: "./media/characters/yepir/front.svg"
  53428. }
  53429. },
  53430. side: {
  53431. height: math.unit(6 + 2/12, "feet"),
  53432. weight: math.unit(500, "lb"),
  53433. preyCapacity: math.unit(4, "people"),
  53434. name: "Side",
  53435. image: {
  53436. source: "./media/characters/yepir/side.svg"
  53437. }
  53438. },
  53439. paw: {
  53440. height: math.unit(1.05, "feet"),
  53441. name: "Paw",
  53442. image: {
  53443. source: "./media/characters/yepir/paw.svg"
  53444. }
  53445. },
  53446. },
  53447. [
  53448. {
  53449. name: "Normal",
  53450. height: math.unit(6 + 2/12, "feet"),
  53451. default: true
  53452. },
  53453. ]
  53454. ))
  53455. characterMakers.push(() => makeCharacter(
  53456. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  53457. {
  53458. front: {
  53459. height: math.unit(5 + 4/12, "feet"),
  53460. name: "Front",
  53461. image: {
  53462. source: "./media/characters/russec/front.svg",
  53463. extra: 1926/1626,
  53464. bottom: 72/1998
  53465. }
  53466. },
  53467. back: {
  53468. height: math.unit(5 + 4/12, "feet"),
  53469. name: "Back",
  53470. image: {
  53471. source: "./media/characters/russec/back.svg",
  53472. extra: 1910/1591,
  53473. bottom: 48/1958
  53474. }
  53475. },
  53476. },
  53477. [
  53478. {
  53479. name: "Small",
  53480. height: math.unit(5 + 4/12, "feet")
  53481. },
  53482. {
  53483. name: "Normal",
  53484. height: math.unit(72, "feet"),
  53485. default: true
  53486. },
  53487. ]
  53488. ))
  53489. characterMakers.push(() => makeCharacter(
  53490. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  53491. {
  53492. side: {
  53493. height: math.unit(12, "feet"),
  53494. name: "Side",
  53495. image: {
  53496. source: "./media/characters/cianus/side.svg",
  53497. extra: 808/526,
  53498. bottom: 61/869
  53499. }
  53500. },
  53501. },
  53502. [
  53503. {
  53504. name: "Normal",
  53505. height: math.unit(12, "feet"),
  53506. default: true
  53507. },
  53508. ]
  53509. ))
  53510. characterMakers.push(() => makeCharacter(
  53511. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  53512. {
  53513. front: {
  53514. height: math.unit(9 + 6/12, "feet"),
  53515. weight: math.unit(300, "lb"),
  53516. name: "Front",
  53517. image: {
  53518. source: "./media/characters/ahab/front.svg",
  53519. extra: 1897/1868,
  53520. bottom: 121/2018
  53521. }
  53522. },
  53523. frontNsfw: {
  53524. height: math.unit(9 + 6/12, "feet"),
  53525. weight: math.unit(300, "lb"),
  53526. name: "Front-nsfw",
  53527. image: {
  53528. source: "./media/characters/ahab/front-nsfw.svg",
  53529. extra: 1897/1868,
  53530. bottom: 121/2018
  53531. }
  53532. },
  53533. },
  53534. [
  53535. {
  53536. name: "Normal",
  53537. height: math.unit(9 + 6/12, "feet")
  53538. },
  53539. {
  53540. name: "Macro",
  53541. height: math.unit(657, "feet"),
  53542. default: true
  53543. },
  53544. ]
  53545. ))
  53546. characterMakers.push(() => makeCharacter(
  53547. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  53548. {
  53549. front: {
  53550. height: math.unit(2.69, "meters"),
  53551. weight: math.unit(132, "kg"),
  53552. name: "Front",
  53553. image: {
  53554. source: "./media/characters/aarkus/front.svg",
  53555. extra: 1400/1231,
  53556. bottom: 34/1434
  53557. }
  53558. },
  53559. back: {
  53560. height: math.unit(2.69, "meters"),
  53561. weight: math.unit(132, "kg"),
  53562. name: "Back",
  53563. image: {
  53564. source: "./media/characters/aarkus/back.svg",
  53565. extra: 1381/1218,
  53566. bottom: 30/1411
  53567. }
  53568. },
  53569. frontNsfw: {
  53570. height: math.unit(2.69, "meters"),
  53571. weight: math.unit(132, "kg"),
  53572. name: "Front (NSFW)",
  53573. image: {
  53574. source: "./media/characters/aarkus/front-nsfw.svg",
  53575. extra: 1400/1231,
  53576. bottom: 34/1434
  53577. }
  53578. },
  53579. foot: {
  53580. height: math.unit(1.45, "feet"),
  53581. name: "Foot",
  53582. image: {
  53583. source: "./media/characters/aarkus/foot.svg"
  53584. }
  53585. },
  53586. head: {
  53587. height: math.unit(2.85, "feet"),
  53588. name: "Head",
  53589. image: {
  53590. source: "./media/characters/aarkus/head.svg"
  53591. }
  53592. },
  53593. headAlt: {
  53594. height: math.unit(3.07, "feet"),
  53595. name: "Head (Alt)",
  53596. image: {
  53597. source: "./media/characters/aarkus/head-alt.svg"
  53598. }
  53599. },
  53600. mouth: {
  53601. height: math.unit(1.25, "feet"),
  53602. name: "Mouth",
  53603. image: {
  53604. source: "./media/characters/aarkus/mouth.svg"
  53605. }
  53606. },
  53607. dick: {
  53608. height: math.unit(1.77, "feet"),
  53609. name: "Dick",
  53610. image: {
  53611. source: "./media/characters/aarkus/dick.svg"
  53612. }
  53613. },
  53614. },
  53615. [
  53616. {
  53617. name: "Normal",
  53618. height: math.unit(2.69, "meters"),
  53619. default: true
  53620. },
  53621. {
  53622. name: "Macro",
  53623. height: math.unit(269, "meters")
  53624. },
  53625. {
  53626. name: "Macro+",
  53627. height: math.unit(672.5, "meters")
  53628. },
  53629. {
  53630. name: "Megamacro",
  53631. height: math.unit(2.017, "km")
  53632. },
  53633. ]
  53634. ))
  53635. characterMakers.push(() => makeCharacter(
  53636. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  53637. {
  53638. front: {
  53639. height: math.unit(23.47, "cm"),
  53640. weight: math.unit(600, "grams"),
  53641. name: "Front",
  53642. image: {
  53643. source: "./media/characters/diode/front.svg",
  53644. extra: 1778/1396,
  53645. bottom: 95/1873
  53646. }
  53647. },
  53648. side: {
  53649. height: math.unit(23.47, "cm"),
  53650. weight: math.unit(600, "grams"),
  53651. name: "Side",
  53652. image: {
  53653. source: "./media/characters/diode/side.svg",
  53654. extra: 1831/1404,
  53655. bottom: 86/1917
  53656. }
  53657. },
  53658. wings: {
  53659. height: math.unit(0.683, "feet"),
  53660. name: "Wings",
  53661. image: {
  53662. source: "./media/characters/diode/wings.svg"
  53663. }
  53664. },
  53665. },
  53666. [
  53667. {
  53668. name: "Normal",
  53669. height: math.unit(23.47, "cm"),
  53670. default: true
  53671. },
  53672. ]
  53673. ))
  53674. characterMakers.push(() => makeCharacter(
  53675. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  53676. {
  53677. front: {
  53678. height: math.unit(6 + 3/12, "feet"),
  53679. weight: math.unit(250, "lb"),
  53680. name: "Front",
  53681. image: {
  53682. source: "./media/characters/reika/front.svg",
  53683. extra: 1120/1078,
  53684. bottom: 86/1206
  53685. }
  53686. },
  53687. },
  53688. [
  53689. {
  53690. name: "Normal",
  53691. height: math.unit(6 + 3/12, "feet"),
  53692. default: true
  53693. },
  53694. ]
  53695. ))
  53696. characterMakers.push(() => makeCharacter(
  53697. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  53698. {
  53699. front: {
  53700. height: math.unit(16 + 8/12, "feet"),
  53701. weight: math.unit(9000, "lb"),
  53702. name: "Front",
  53703. image: {
  53704. source: "./media/characters/lokuto-takama/front.svg",
  53705. extra: 1774/1632,
  53706. bottom: 147/1921
  53707. },
  53708. extraAttributes: {
  53709. "bustWidth": {
  53710. name: "Bust Width",
  53711. power: 1,
  53712. type: "length",
  53713. base: math.unit(2.4, "meters")
  53714. },
  53715. "breastWeight": {
  53716. name: "Breast Weight",
  53717. power: 3,
  53718. type: "mass",
  53719. base: math.unit(1000, "kg")
  53720. },
  53721. }
  53722. },
  53723. },
  53724. [
  53725. {
  53726. name: "Normal",
  53727. height: math.unit(16 + 8/12, "feet"),
  53728. default: true
  53729. },
  53730. ]
  53731. ))
  53732. characterMakers.push(() => makeCharacter(
  53733. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  53734. {
  53735. front: {
  53736. height: math.unit(10, "cm"),
  53737. weight: math.unit(850, "grams"),
  53738. name: "Front",
  53739. image: {
  53740. source: "./media/characters/owak-bone/front.svg",
  53741. extra: 1965/1801,
  53742. bottom: 31/1996
  53743. }
  53744. },
  53745. },
  53746. [
  53747. {
  53748. name: "Normal",
  53749. height: math.unit(10, "cm"),
  53750. default: true
  53751. },
  53752. ]
  53753. ))
  53754. characterMakers.push(() => makeCharacter(
  53755. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  53756. {
  53757. front: {
  53758. height: math.unit(2 + 6/12, "feet"),
  53759. weight: math.unit(9, "lb"),
  53760. name: "Front",
  53761. image: {
  53762. source: "./media/characters/muffin/front.svg",
  53763. extra: 1220/1195,
  53764. bottom: 84/1304
  53765. }
  53766. },
  53767. },
  53768. [
  53769. {
  53770. name: "Normal",
  53771. height: math.unit(2 + 6/12, "feet"),
  53772. default: true
  53773. },
  53774. ]
  53775. ))
  53776. characterMakers.push(() => makeCharacter(
  53777. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  53778. {
  53779. front: {
  53780. height: math.unit(7, "feet"),
  53781. name: "Front",
  53782. image: {
  53783. source: "./media/characters/chimera/front.svg",
  53784. extra: 1752/1614,
  53785. bottom: 68/1820
  53786. }
  53787. },
  53788. },
  53789. [
  53790. {
  53791. name: "Normal",
  53792. height: math.unit(7, "feet")
  53793. },
  53794. {
  53795. name: "Gigamacro",
  53796. height: math.unit(2.9, "gigameters"),
  53797. default: true
  53798. },
  53799. {
  53800. name: "Universal",
  53801. height: math.unit(1.56e26, "yottameters")
  53802. },
  53803. ]
  53804. ))
  53805. characterMakers.push(() => makeCharacter(
  53806. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  53807. {
  53808. front: {
  53809. height: math.unit(3, "feet"),
  53810. weight: math.unit(20, "lb"),
  53811. name: "Front",
  53812. image: {
  53813. source: "./media/characters/kit-fennec-fox/front.svg",
  53814. extra: 1027/932,
  53815. bottom: 16/1043
  53816. }
  53817. },
  53818. back: {
  53819. height: math.unit(3, "feet"),
  53820. weight: math.unit(20, "lb"),
  53821. name: "Back",
  53822. image: {
  53823. source: "./media/characters/kit-fennec-fox/back.svg",
  53824. extra: 1027/932,
  53825. bottom: 16/1043
  53826. }
  53827. },
  53828. },
  53829. [
  53830. {
  53831. name: "Normal",
  53832. height: math.unit(3, "feet"),
  53833. default: true
  53834. },
  53835. ]
  53836. ))
  53837. characterMakers.push(() => makeCharacter(
  53838. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  53839. {
  53840. front: {
  53841. height: math.unit(167, "cm"),
  53842. name: "Front",
  53843. image: {
  53844. source: "./media/characters/blue-otter/front.svg",
  53845. extra: 1951/1920,
  53846. bottom: 31/1982
  53847. }
  53848. },
  53849. },
  53850. [
  53851. {
  53852. name: "Otter-Sized",
  53853. height: math.unit(100, "cm")
  53854. },
  53855. {
  53856. name: "Normal",
  53857. height: math.unit(167, "cm"),
  53858. default: true
  53859. },
  53860. ]
  53861. ))
  53862. characterMakers.push(() => makeCharacter(
  53863. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  53864. {
  53865. front: {
  53866. height: math.unit(4 + 4/12, "feet"),
  53867. name: "Front",
  53868. image: {
  53869. source: "./media/characters/maverick-leopard-gecko/front.svg",
  53870. extra: 1072/1067,
  53871. bottom: 117/1189
  53872. }
  53873. },
  53874. back: {
  53875. height: math.unit(4 + 4/12, "feet"),
  53876. name: "Back",
  53877. image: {
  53878. source: "./media/characters/maverick-leopard-gecko/back.svg",
  53879. extra: 1135/1129,
  53880. bottom: 57/1192
  53881. }
  53882. },
  53883. head: {
  53884. height: math.unit(1.77, "feet"),
  53885. name: "Head",
  53886. image: {
  53887. source: "./media/characters/maverick-leopard-gecko/head.svg"
  53888. }
  53889. },
  53890. },
  53891. [
  53892. {
  53893. name: "Normal",
  53894. height: math.unit(4 + 4/12, "feet"),
  53895. default: true
  53896. },
  53897. ]
  53898. ))
  53899. characterMakers.push(() => makeCharacter(
  53900. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  53901. {
  53902. front: {
  53903. height: math.unit(2, "inches"),
  53904. name: "Front",
  53905. image: {
  53906. source: "./media/characters/carley-hartford/front.svg",
  53907. extra: 1035/988,
  53908. bottom: 23/1058
  53909. }
  53910. },
  53911. back: {
  53912. height: math.unit(2, "inches"),
  53913. name: "Back",
  53914. image: {
  53915. source: "./media/characters/carley-hartford/back.svg",
  53916. extra: 1035/988,
  53917. bottom: 23/1058
  53918. }
  53919. },
  53920. dressed: {
  53921. height: math.unit(2, "inches"),
  53922. name: "Dressed",
  53923. image: {
  53924. source: "./media/characters/carley-hartford/dressed.svg",
  53925. extra: 651/620,
  53926. bottom: 0/651
  53927. }
  53928. },
  53929. },
  53930. [
  53931. {
  53932. name: "Micro",
  53933. height: math.unit(2, "inches"),
  53934. default: true
  53935. },
  53936. {
  53937. name: "Macro",
  53938. height: math.unit(6 + 3/12, "feet")
  53939. },
  53940. ]
  53941. ))
  53942. characterMakers.push(() => makeCharacter(
  53943. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  53944. {
  53945. front: {
  53946. height: math.unit(2 + 3/12, "feet"),
  53947. weight: math.unit(15 + 7/16, "lb"),
  53948. name: "Front",
  53949. image: {
  53950. source: "./media/characters/duke/front.svg",
  53951. extra: 910/815,
  53952. bottom: 30/940
  53953. }
  53954. },
  53955. },
  53956. [
  53957. {
  53958. name: "Normal",
  53959. height: math.unit(2 + 3/12, "feet"),
  53960. default: true
  53961. },
  53962. ]
  53963. ))
  53964. characterMakers.push(() => makeCharacter(
  53965. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  53966. {
  53967. front: {
  53968. height: math.unit(5 + 4/12, "feet"),
  53969. weight: math.unit(156, "lb"),
  53970. name: "Front",
  53971. image: {
  53972. source: "./media/characters/dein/front.svg",
  53973. extra: 855/815,
  53974. bottom: 48/903
  53975. }
  53976. },
  53977. side: {
  53978. height: math.unit(5 + 4/12, "feet"),
  53979. weight: math.unit(156, "lb"),
  53980. name: "side",
  53981. image: {
  53982. source: "./media/characters/dein/side.svg",
  53983. extra: 846/803,
  53984. bottom: 25/871
  53985. }
  53986. },
  53987. maw: {
  53988. height: math.unit(1.45, "feet"),
  53989. name: "Maw",
  53990. image: {
  53991. source: "./media/characters/dein/maw.svg"
  53992. }
  53993. },
  53994. },
  53995. [
  53996. {
  53997. name: "Ferret Sized",
  53998. height: math.unit(2 + 5/12, "feet")
  53999. },
  54000. {
  54001. name: "Normal",
  54002. height: math.unit(5 + 4/12, "feet"),
  54003. default: true
  54004. },
  54005. ]
  54006. ))
  54007. characterMakers.push(() => makeCharacter(
  54008. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  54009. {
  54010. front: {
  54011. height: math.unit(84 + 8/12, "feet"),
  54012. weight: math.unit(942180, "lb"),
  54013. name: "Front",
  54014. image: {
  54015. source: "./media/characters/daurine-arima/front.svg",
  54016. extra: 1989/1782,
  54017. bottom: 37/2026
  54018. }
  54019. },
  54020. side: {
  54021. height: math.unit(84 + 8/12, "feet"),
  54022. weight: math.unit(942180, "lb"),
  54023. name: "Side",
  54024. image: {
  54025. source: "./media/characters/daurine-arima/side.svg",
  54026. extra: 1997/1790,
  54027. bottom: 21/2018
  54028. }
  54029. },
  54030. back: {
  54031. height: math.unit(84 + 8/12, "feet"),
  54032. weight: math.unit(942180, "lb"),
  54033. name: "Back",
  54034. image: {
  54035. source: "./media/characters/daurine-arima/back.svg",
  54036. extra: 1992/1800,
  54037. bottom: 12/2004
  54038. }
  54039. },
  54040. head: {
  54041. height: math.unit(15.5, "feet"),
  54042. name: "Head",
  54043. image: {
  54044. source: "./media/characters/daurine-arima/head.svg"
  54045. }
  54046. },
  54047. headAlt: {
  54048. height: math.unit(19.19, "feet"),
  54049. name: "Head (Alt)",
  54050. image: {
  54051. source: "./media/characters/daurine-arima/head-alt.svg"
  54052. }
  54053. },
  54054. },
  54055. [
  54056. {
  54057. name: "Minimum height",
  54058. height: math.unit(8 + 10/12, "feet")
  54059. },
  54060. {
  54061. name: "Comfort height",
  54062. height: math.unit(19 + 6 /12, "feet")
  54063. },
  54064. {
  54065. name: "\"Normal\" height",
  54066. height: math.unit(28 + 10/12, "feet")
  54067. },
  54068. {
  54069. name: "Base height",
  54070. height: math.unit(84 + 8/12, "feet"),
  54071. default: true
  54072. },
  54073. {
  54074. name: "Mini-macro",
  54075. height: math.unit(2360, "feet")
  54076. },
  54077. {
  54078. name: "Macro",
  54079. height: math.unit(10, "miles")
  54080. },
  54081. {
  54082. name: "Goddess",
  54083. height: math.unit(9.99e40, "yottameters")
  54084. },
  54085. ]
  54086. ))
  54087. characterMakers.push(() => makeCharacter(
  54088. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  54089. {
  54090. front: {
  54091. height: math.unit(2.3, "meters"),
  54092. name: "Front",
  54093. image: {
  54094. source: "./media/characters/cilenomon/front.svg",
  54095. extra: 1963/1778,
  54096. bottom: 54/2017
  54097. }
  54098. },
  54099. },
  54100. [
  54101. {
  54102. name: "Normal",
  54103. height: math.unit(2.3, "meters"),
  54104. default: true
  54105. },
  54106. {
  54107. name: "Big",
  54108. height: math.unit(5, "meters")
  54109. },
  54110. {
  54111. name: "Macro",
  54112. height: math.unit(30, "meters")
  54113. },
  54114. {
  54115. name: "True",
  54116. height: math.unit(1, "universe")
  54117. },
  54118. ]
  54119. ))
  54120. characterMakers.push(() => makeCharacter(
  54121. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  54122. {
  54123. front: {
  54124. height: math.unit(5, "feet"),
  54125. name: "Front",
  54126. image: {
  54127. source: "./media/characters/sen-mink/front.svg",
  54128. extra: 1727/1675,
  54129. bottom: 35/1762
  54130. }
  54131. },
  54132. },
  54133. [
  54134. {
  54135. name: "Normal",
  54136. height: math.unit(5, "feet"),
  54137. default: true
  54138. },
  54139. ]
  54140. ))
  54141. characterMakers.push(() => makeCharacter(
  54142. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  54143. {
  54144. front: {
  54145. height: math.unit(5.42999, "feet"),
  54146. weight: math.unit(100, "lb"),
  54147. name: "Front",
  54148. image: {
  54149. source: "./media/characters/ophois/front.svg",
  54150. extra: 1429/1286,
  54151. bottom: 60/1489
  54152. }
  54153. },
  54154. },
  54155. [
  54156. {
  54157. name: "Normal",
  54158. height: math.unit(5.42999, "feet"),
  54159. default: true
  54160. },
  54161. ]
  54162. ))
  54163. characterMakers.push(() => makeCharacter(
  54164. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  54165. {
  54166. front: {
  54167. height: math.unit(2, "meters"),
  54168. name: "Front",
  54169. image: {
  54170. source: "./media/characters/riley/front.svg",
  54171. extra: 1779/1754,
  54172. bottom: 139/1918
  54173. }
  54174. },
  54175. },
  54176. [
  54177. {
  54178. name: "Normal",
  54179. height: math.unit(2, "meters"),
  54180. default: true
  54181. },
  54182. ]
  54183. ))
  54184. characterMakers.push(() => makeCharacter(
  54185. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  54186. {
  54187. front: {
  54188. height: math.unit(6 + 2/12, "feet"),
  54189. weight: math.unit(195, "lb"),
  54190. preyCapacity: math.unit(6, "people"),
  54191. name: "Front",
  54192. image: {
  54193. source: "./media/characters/shuken-flash/front.svg",
  54194. extra: 1905/1739,
  54195. bottom: 65/1970
  54196. }
  54197. },
  54198. back: {
  54199. height: math.unit(6 + 2/12, "feet"),
  54200. weight: math.unit(195, "lb"),
  54201. preyCapacity: math.unit(6, "people"),
  54202. name: "Back",
  54203. image: {
  54204. source: "./media/characters/shuken-flash/back.svg",
  54205. extra: 1912/1751,
  54206. bottom: 13/1925
  54207. }
  54208. },
  54209. },
  54210. [
  54211. {
  54212. name: "Normal",
  54213. height: math.unit(6 + 2/12, "feet"),
  54214. default: true
  54215. },
  54216. ]
  54217. ))
  54218. characterMakers.push(() => makeCharacter(
  54219. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  54220. {
  54221. front: {
  54222. height: math.unit(5 + 9/12, "feet"),
  54223. weight: math.unit(150, "lb"),
  54224. name: "Front",
  54225. image: {
  54226. source: "./media/characters/plat/front.svg",
  54227. extra: 1816/1703,
  54228. bottom: 43/1859
  54229. }
  54230. },
  54231. side: {
  54232. height: math.unit(5 + 9/12, "feet"),
  54233. weight: math.unit(300, "lb"),
  54234. name: "Side",
  54235. image: {
  54236. source: "./media/characters/plat/side.svg",
  54237. extra: 1824/1699,
  54238. bottom: 18/1842
  54239. }
  54240. },
  54241. },
  54242. [
  54243. {
  54244. name: "Normal",
  54245. height: math.unit(5 + 9/12, "feet"),
  54246. default: true
  54247. },
  54248. ]
  54249. ))
  54250. characterMakers.push(() => makeCharacter(
  54251. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  54252. {
  54253. front: {
  54254. height: math.unit(9, "feet"),
  54255. weight: math.unit(1800, "lb"),
  54256. name: "Front",
  54257. image: {
  54258. source: "./media/characters/elaine/front.svg",
  54259. extra: 1833/1354,
  54260. bottom: 25/1858
  54261. }
  54262. },
  54263. back: {
  54264. height: math.unit(8.8, "feet"),
  54265. weight: math.unit(1800, "lb"),
  54266. name: "Back",
  54267. image: {
  54268. source: "./media/characters/elaine/back.svg",
  54269. extra: 1641/1233,
  54270. bottom: 53/1694
  54271. }
  54272. },
  54273. },
  54274. [
  54275. {
  54276. name: "Normal",
  54277. height: math.unit(9, "feet"),
  54278. default: true
  54279. },
  54280. ]
  54281. ))
  54282. characterMakers.push(() => makeCharacter(
  54283. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  54284. {
  54285. front: {
  54286. height: math.unit(17 + 9/12, "feet"),
  54287. weight: math.unit(8000, "lb"),
  54288. name: "Front",
  54289. image: {
  54290. source: "./media/characters/vera-raven/front.svg",
  54291. extra: 1457/1412,
  54292. bottom: 121/1578
  54293. }
  54294. },
  54295. side: {
  54296. height: math.unit(17 + 9/12, "feet"),
  54297. weight: math.unit(8000, "lb"),
  54298. name: "Side",
  54299. image: {
  54300. source: "./media/characters/vera-raven/side.svg",
  54301. extra: 1510/1464,
  54302. bottom: 54/1564
  54303. }
  54304. },
  54305. },
  54306. [
  54307. {
  54308. name: "Normal",
  54309. height: math.unit(17 + 9/12, "feet"),
  54310. default: true
  54311. },
  54312. ]
  54313. ))
  54314. characterMakers.push(() => makeCharacter(
  54315. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  54316. {
  54317. dressed: {
  54318. height: math.unit(6 + 9/12, "feet"),
  54319. name: "Dressed",
  54320. image: {
  54321. source: "./media/characters/nakisha/dressed.svg",
  54322. extra: 1909/1757,
  54323. bottom: 48/1957
  54324. }
  54325. },
  54326. nude: {
  54327. height: math.unit(6 + 9/12, "feet"),
  54328. name: "Nude",
  54329. image: {
  54330. source: "./media/characters/nakisha/nude.svg",
  54331. extra: 1917/1765,
  54332. bottom: 34/1951
  54333. }
  54334. },
  54335. },
  54336. [
  54337. {
  54338. name: "Normal",
  54339. height: math.unit(6 + 9/12, "feet"),
  54340. default: true
  54341. },
  54342. ]
  54343. ))
  54344. characterMakers.push(() => makeCharacter(
  54345. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  54346. {
  54347. front: {
  54348. height: math.unit(87, "meters"),
  54349. name: "Front",
  54350. image: {
  54351. source: "./media/characters/serafin/front.svg",
  54352. extra: 1919/1776,
  54353. bottom: 65/1984
  54354. }
  54355. },
  54356. },
  54357. [
  54358. {
  54359. name: "Normal",
  54360. height: math.unit(87, "meters"),
  54361. default: true
  54362. },
  54363. ]
  54364. ))
  54365. characterMakers.push(() => makeCharacter(
  54366. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  54367. {
  54368. front: {
  54369. height: math.unit(6, "feet"),
  54370. weight: math.unit(200, "lb"),
  54371. name: "Front",
  54372. image: {
  54373. source: "./media/characters/poptart/front.svg",
  54374. extra: 615/583,
  54375. bottom: 23/638
  54376. }
  54377. },
  54378. back: {
  54379. height: math.unit(6, "feet"),
  54380. weight: math.unit(200, "lb"),
  54381. name: "Back",
  54382. image: {
  54383. source: "./media/characters/poptart/back.svg",
  54384. extra: 617/584,
  54385. bottom: 22/639
  54386. }
  54387. },
  54388. frontNsfw: {
  54389. height: math.unit(6, "feet"),
  54390. weight: math.unit(200, "lb"),
  54391. name: "Front (NSFW)",
  54392. image: {
  54393. source: "./media/characters/poptart/front-nsfw.svg",
  54394. extra: 615/583,
  54395. bottom: 23/638
  54396. }
  54397. },
  54398. backNsfw: {
  54399. height: math.unit(6, "feet"),
  54400. weight: math.unit(200, "lb"),
  54401. name: "Back (NSFW)",
  54402. image: {
  54403. source: "./media/characters/poptart/back-nsfw.svg",
  54404. extra: 617/584,
  54405. bottom: 22/639
  54406. }
  54407. },
  54408. hand: {
  54409. height: math.unit(1.14, "feet"),
  54410. name: "Hand",
  54411. image: {
  54412. source: "./media/characters/poptart/hand.svg"
  54413. }
  54414. },
  54415. foot: {
  54416. height: math.unit(1.5, "feet"),
  54417. name: "Foot",
  54418. image: {
  54419. source: "./media/characters/poptart/foot.svg"
  54420. }
  54421. },
  54422. },
  54423. [
  54424. {
  54425. name: "Normal",
  54426. height: math.unit(6, "feet"),
  54427. default: true
  54428. },
  54429. {
  54430. name: "Grande",
  54431. height: math.unit(350, "feet")
  54432. },
  54433. {
  54434. name: "Massif",
  54435. height: math.unit(967, "feet")
  54436. },
  54437. ]
  54438. ))
  54439. characterMakers.push(() => makeCharacter(
  54440. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  54441. {
  54442. hyenaSide: {
  54443. height: math.unit(120, "cm"),
  54444. weight: math.unit(120, "lb"),
  54445. name: "Side",
  54446. image: {
  54447. source: "./media/characters/trance/hyena-side.svg",
  54448. extra: 998/904,
  54449. bottom: 76/1074
  54450. }
  54451. },
  54452. },
  54453. [
  54454. {
  54455. name: "Normal",
  54456. height: math.unit(120, "cm"),
  54457. default: true
  54458. },
  54459. {
  54460. name: "Dire",
  54461. height: math.unit(230, "cm")
  54462. },
  54463. {
  54464. name: "Macro",
  54465. height: math.unit(37, "feet")
  54466. },
  54467. ]
  54468. ))
  54469. characterMakers.push(() => makeCharacter(
  54470. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  54471. {
  54472. front: {
  54473. height: math.unit(6 + 3/12, "feet"),
  54474. name: "Front",
  54475. image: {
  54476. source: "./media/characters/michael-berretta/front.svg",
  54477. extra: 515/494,
  54478. bottom: 20/535
  54479. }
  54480. },
  54481. back: {
  54482. height: math.unit(6 + 3/12, "feet"),
  54483. name: "Back",
  54484. image: {
  54485. source: "./media/characters/michael-berretta/back.svg",
  54486. extra: 520/497,
  54487. bottom: 21/541
  54488. }
  54489. },
  54490. frontNsfw: {
  54491. height: math.unit(6 + 3/12, "feet"),
  54492. name: "Front (NSFW)",
  54493. image: {
  54494. source: "./media/characters/michael-berretta/front-nsfw.svg",
  54495. extra: 515/494,
  54496. bottom: 20/535
  54497. }
  54498. },
  54499. dick: {
  54500. height: math.unit(1, "feet"),
  54501. name: "Dick",
  54502. image: {
  54503. source: "./media/characters/michael-berretta/dick.svg"
  54504. }
  54505. },
  54506. },
  54507. [
  54508. {
  54509. name: "Normal",
  54510. height: math.unit(6 + 3/12, "feet"),
  54511. default: true
  54512. },
  54513. {
  54514. name: "Big",
  54515. height: math.unit(12, "feet")
  54516. },
  54517. {
  54518. name: "Macro",
  54519. height: math.unit(187.5, "feet")
  54520. },
  54521. ]
  54522. ))
  54523. characterMakers.push(() => makeCharacter(
  54524. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  54525. {
  54526. front: {
  54527. height: math.unit(9 + 9/12, "feet"),
  54528. weight: math.unit(1244, "lb"),
  54529. name: "Front",
  54530. image: {
  54531. source: "./media/characters/stella-edgecomb/front.svg",
  54532. extra: 1835/1706,
  54533. bottom: 49/1884
  54534. }
  54535. },
  54536. pen: {
  54537. height: math.unit(0.95, "feet"),
  54538. name: "Pen",
  54539. image: {
  54540. source: "./media/characters/stella-edgecomb/pen.svg"
  54541. }
  54542. },
  54543. },
  54544. [
  54545. {
  54546. name: "Cozy Bear",
  54547. height: math.unit(0.5, "inches")
  54548. },
  54549. {
  54550. name: "Normal",
  54551. height: math.unit(9 + 9/12, "feet"),
  54552. default: true
  54553. },
  54554. {
  54555. name: "Giga Bear",
  54556. height: math.unit(1, "mile")
  54557. },
  54558. {
  54559. name: "Great Bear",
  54560. height: math.unit(53, "miles")
  54561. },
  54562. {
  54563. name: "Goddess Bear",
  54564. height: math.unit(40000, "miles")
  54565. },
  54566. {
  54567. name: "Sun Bear",
  54568. height: math.unit(900000, "miles")
  54569. },
  54570. ]
  54571. ))
  54572. characterMakers.push(() => makeCharacter(
  54573. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  54574. {
  54575. anthroFront: {
  54576. height: math.unit(556, "cm"),
  54577. weight: math.unit(2650, "kg"),
  54578. preyCapacity: math.unit(3, "people"),
  54579. name: "Front",
  54580. image: {
  54581. source: "./media/characters/ash´iika/front.svg",
  54582. extra: 710/673,
  54583. bottom: 15/725
  54584. },
  54585. form: "anthro",
  54586. default: true
  54587. },
  54588. anthroSide: {
  54589. height: math.unit(556, "cm"),
  54590. weight: math.unit(2650, "kg"),
  54591. preyCapacity: math.unit(3, "people"),
  54592. name: "Side",
  54593. image: {
  54594. source: "./media/characters/ash´iika/side.svg",
  54595. extra: 696/676,
  54596. bottom: 13/709
  54597. },
  54598. form: "anthro"
  54599. },
  54600. anthroDressed: {
  54601. height: math.unit(556, "cm"),
  54602. weight: math.unit(2650, "kg"),
  54603. preyCapacity: math.unit(3, "people"),
  54604. name: "Dressed",
  54605. image: {
  54606. source: "./media/characters/ash´iika/dressed.svg",
  54607. extra: 710/673,
  54608. bottom: 15/725
  54609. },
  54610. form: "anthro"
  54611. },
  54612. anthroHead: {
  54613. height: math.unit(3.5, "feet"),
  54614. name: "Head",
  54615. image: {
  54616. source: "./media/characters/ash´iika/head.svg",
  54617. extra: 348/291,
  54618. bottom: 45/393
  54619. },
  54620. form: "anthro"
  54621. },
  54622. feralSide: {
  54623. height: math.unit(870, "cm"),
  54624. weight: math.unit(17500, "kg"),
  54625. preyCapacity: math.unit(15, "people"),
  54626. name: "Side",
  54627. image: {
  54628. source: "./media/characters/ash´iika/feral.svg",
  54629. extra: 595/199,
  54630. bottom: 7/602
  54631. },
  54632. form: "feral",
  54633. default: true,
  54634. },
  54635. },
  54636. [
  54637. {
  54638. name: "Normal",
  54639. height: math.unit(556, "cm"),
  54640. default: true,
  54641. form: "anthro"
  54642. },
  54643. {
  54644. name: "Macro",
  54645. height: math.unit(88, "meters"),
  54646. form: "anthro"
  54647. },
  54648. {
  54649. name: "Normal",
  54650. height: math.unit(870, "cm"),
  54651. default: true,
  54652. form: "feral"
  54653. },
  54654. {
  54655. name: "Large",
  54656. height: math.unit(25, "meters"),
  54657. form: "feral"
  54658. },
  54659. ],
  54660. {
  54661. "anthro": {
  54662. name: "Anthro",
  54663. default: true
  54664. },
  54665. "feral": {
  54666. name: "Feral",
  54667. },
  54668. }
  54669. ))
  54670. characterMakers.push(() => makeCharacter(
  54671. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  54672. {
  54673. front: {
  54674. height: math.unit(10, "feet"),
  54675. weight: math.unit(800, "lb"),
  54676. name: "Front",
  54677. image: {
  54678. source: "./media/characters/yen/front.svg",
  54679. extra: 443/411,
  54680. bottom: 6/449
  54681. }
  54682. },
  54683. sleeping: {
  54684. height: math.unit(10, "feet"),
  54685. weight: math.unit(800, "lb"),
  54686. name: "Sleeping",
  54687. image: {
  54688. source: "./media/characters/yen/sleeping.svg",
  54689. extra: 470/422,
  54690. bottom: 0/470
  54691. }
  54692. },
  54693. head: {
  54694. height: math.unit(2.2, "feet"),
  54695. name: "Head",
  54696. image: {
  54697. source: "./media/characters/yen/head.svg"
  54698. }
  54699. },
  54700. headAlt: {
  54701. height: math.unit(2.1, "feet"),
  54702. name: "Head (Alt)",
  54703. image: {
  54704. source: "./media/characters/yen/head-alt.svg"
  54705. }
  54706. },
  54707. },
  54708. [
  54709. {
  54710. name: "Normal",
  54711. height: math.unit(10, "feet"),
  54712. default: true
  54713. },
  54714. ]
  54715. ))
  54716. characterMakers.push(() => makeCharacter(
  54717. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  54718. {
  54719. front: {
  54720. height: math.unit(12, "feet"),
  54721. name: "Front",
  54722. image: {
  54723. source: "./media/characters/citra/front.svg",
  54724. extra: 1950/1710,
  54725. bottom: 47/1997
  54726. }
  54727. },
  54728. },
  54729. [
  54730. {
  54731. name: "Normal",
  54732. height: math.unit(12, "feet"),
  54733. default: true
  54734. },
  54735. ]
  54736. ))
  54737. characterMakers.push(() => makeCharacter(
  54738. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  54739. {
  54740. side: {
  54741. height: math.unit(7 + 10/12, "feet"),
  54742. name: "Side",
  54743. image: {
  54744. source: "./media/characters/sholstim/side.svg",
  54745. extra: 786/682,
  54746. bottom: 40/826
  54747. }
  54748. },
  54749. },
  54750. [
  54751. {
  54752. name: "Normal",
  54753. height: math.unit(7 + 10/12, "feet"),
  54754. default: true
  54755. },
  54756. ]
  54757. ))
  54758. characterMakers.push(() => makeCharacter(
  54759. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  54760. {
  54761. front: {
  54762. height: math.unit(3.10, "meters"),
  54763. name: "Front",
  54764. image: {
  54765. source: "./media/characters/aggyn/front.svg",
  54766. extra: 1188/963,
  54767. bottom: 24/1212
  54768. }
  54769. },
  54770. },
  54771. [
  54772. {
  54773. name: "Normal",
  54774. height: math.unit(3.10, "meters"),
  54775. default: true
  54776. },
  54777. ]
  54778. ))
  54779. characterMakers.push(() => makeCharacter(
  54780. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  54781. {
  54782. front: {
  54783. height: math.unit(7 + 5/12, "feet"),
  54784. weight: math.unit(687, "lb"),
  54785. name: "Front",
  54786. image: {
  54787. source: "./media/characters/alsandair-hergenroether/front.svg",
  54788. extra: 1251/1186,
  54789. bottom: 75/1326
  54790. }
  54791. },
  54792. back: {
  54793. height: math.unit(7 + 5/12, "feet"),
  54794. weight: math.unit(687, "lb"),
  54795. name: "Back",
  54796. image: {
  54797. source: "./media/characters/alsandair-hergenroether/back.svg",
  54798. extra: 1290/1229,
  54799. bottom: 17/1307
  54800. }
  54801. },
  54802. },
  54803. [
  54804. {
  54805. name: "Max Compression",
  54806. height: math.unit(7 + 5/12, "feet"),
  54807. default: true
  54808. },
  54809. {
  54810. name: "\"Normal\"",
  54811. height: math.unit(2, "universes")
  54812. },
  54813. ]
  54814. ))
  54815. characterMakers.push(() => makeCharacter(
  54816. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  54817. {
  54818. front: {
  54819. height: math.unit(4 + 1/12, "feet"),
  54820. weight: math.unit(92, "lb"),
  54821. name: "Front",
  54822. image: {
  54823. source: "./media/characters/ie/front.svg",
  54824. extra: 1585/1352,
  54825. bottom: 91/1676
  54826. }
  54827. },
  54828. },
  54829. [
  54830. {
  54831. name: "Normal",
  54832. height: math.unit(4 + 1/12, "feet"),
  54833. default: true
  54834. },
  54835. ]
  54836. ))
  54837. characterMakers.push(() => makeCharacter(
  54838. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  54839. {
  54840. anthro: {
  54841. height: math.unit(6, "feet"),
  54842. weight: math.unit(150, "lb"),
  54843. name: "Front",
  54844. image: {
  54845. source: "./media/characters/willow/anthro.svg",
  54846. extra: 1073/986,
  54847. bottom: 34/1107
  54848. },
  54849. form: "anthro",
  54850. default: true
  54851. },
  54852. taur: {
  54853. height: math.unit(6, "feet"),
  54854. weight: math.unit(150, "lb"),
  54855. name: "Side",
  54856. image: {
  54857. source: "./media/characters/willow/taur.svg",
  54858. extra: 647/512,
  54859. bottom: 136/783
  54860. },
  54861. form: "taur",
  54862. default: true
  54863. },
  54864. },
  54865. [
  54866. {
  54867. name: "Humanoid",
  54868. height: math.unit(2.7, "meters"),
  54869. form: "anthro"
  54870. },
  54871. {
  54872. name: "Normal",
  54873. height: math.unit(9, "meters"),
  54874. form: "anthro",
  54875. default: true
  54876. },
  54877. {
  54878. name: "Humanoid",
  54879. height: math.unit(2.1, "meters"),
  54880. form: "taur"
  54881. },
  54882. {
  54883. name: "Normal",
  54884. height: math.unit(7, "meters"),
  54885. form: "taur",
  54886. default: true
  54887. },
  54888. ],
  54889. {
  54890. "anthro": {
  54891. name: "Anthro",
  54892. default: true
  54893. },
  54894. "taur": {
  54895. name: "Taur",
  54896. },
  54897. }
  54898. ))
  54899. characterMakers.push(() => makeCharacter(
  54900. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  54901. {
  54902. front: {
  54903. height: math.unit(2 + 5/12, "feet"),
  54904. name: "Front",
  54905. image: {
  54906. source: "./media/characters/kyan/front.svg",
  54907. extra: 460/334,
  54908. bottom: 23/483
  54909. },
  54910. extraAttributes: {
  54911. "toeLength": {
  54912. name: "Toe Length",
  54913. power: 1,
  54914. type: "length",
  54915. base: math.unit(7, "cm")
  54916. },
  54917. "toeclawLength": {
  54918. name: "Toeclaw Length",
  54919. power: 1,
  54920. type: "length",
  54921. base: math.unit(4.7, "cm")
  54922. },
  54923. "earHeight": {
  54924. name: "Ear Height",
  54925. power: 1,
  54926. type: "length",
  54927. base: math.unit(14.1, "cm")
  54928. },
  54929. }
  54930. },
  54931. paws: {
  54932. height: math.unit(0.45, "feet"),
  54933. name: "Paws",
  54934. image: {
  54935. source: "./media/characters/kyan/paws.svg",
  54936. extra: 581/581,
  54937. bottom: 114/695
  54938. }
  54939. },
  54940. },
  54941. [
  54942. {
  54943. name: "Normal",
  54944. height: math.unit(2 + 5/12, "feet"),
  54945. default: true
  54946. },
  54947. ]
  54948. ))
  54949. characterMakers.push(() => makeCharacter(
  54950. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  54951. {
  54952. front: {
  54953. height: math.unit(2 + 2/3, "feet"),
  54954. name: "Front",
  54955. image: {
  54956. source: "./media/characters/xazzon/front.svg",
  54957. extra: 1109/984,
  54958. bottom: 42/1151
  54959. }
  54960. },
  54961. back: {
  54962. height: math.unit(2 + 2/3, "feet"),
  54963. name: "Back",
  54964. image: {
  54965. source: "./media/characters/xazzon/back.svg",
  54966. extra: 1095/971,
  54967. bottom: 23/1118
  54968. }
  54969. },
  54970. },
  54971. [
  54972. {
  54973. name: "Normal",
  54974. height: math.unit(2 + 2/3, "feet"),
  54975. default: true
  54976. },
  54977. ]
  54978. ))
  54979. characterMakers.push(() => makeCharacter(
  54980. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  54981. {
  54982. front: {
  54983. height: math.unit(8, "feet"),
  54984. weight: math.unit(300, "lb"),
  54985. name: "Front",
  54986. image: {
  54987. source: "./media/characters/khyla-shadowsong/front.svg",
  54988. extra: 861/798,
  54989. bottom: 32/893
  54990. }
  54991. },
  54992. side: {
  54993. height: math.unit(8, "feet"),
  54994. weight: math.unit(300, "lb"),
  54995. name: "Side",
  54996. image: {
  54997. source: "./media/characters/khyla-shadowsong/side.svg",
  54998. extra: 790/750,
  54999. bottom: 87/877
  55000. }
  55001. },
  55002. back: {
  55003. height: math.unit(8, "feet"),
  55004. weight: math.unit(300, "lb"),
  55005. name: "Back",
  55006. image: {
  55007. source: "./media/characters/khyla-shadowsong/back.svg",
  55008. extra: 855/808,
  55009. bottom: 14/869
  55010. }
  55011. },
  55012. head: {
  55013. height: math.unit(2.7, "feet"),
  55014. name: "Head",
  55015. image: {
  55016. source: "./media/characters/khyla-shadowsong/head.svg"
  55017. }
  55018. },
  55019. },
  55020. [
  55021. {
  55022. name: "Micro",
  55023. height: math.unit(6, "inches")
  55024. },
  55025. {
  55026. name: "Normal",
  55027. height: math.unit(8, "feet"),
  55028. default: true
  55029. },
  55030. ]
  55031. ))
  55032. characterMakers.push(() => makeCharacter(
  55033. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  55034. {
  55035. hyperFront: {
  55036. height: math.unit(9 + 4/12, "feet"),
  55037. weight: math.unit(2000, "lb"),
  55038. name: "Front",
  55039. image: {
  55040. source: "./media/characters/tiden/hyper-front.svg",
  55041. extra: 400/382,
  55042. bottom: 6/406
  55043. },
  55044. form: "hyper",
  55045. },
  55046. regularFront: {
  55047. height: math.unit(7 + 10/12, "feet"),
  55048. weight: math.unit(470, "lb"),
  55049. name: "Front",
  55050. image: {
  55051. source: "./media/characters/tiden/regular-front.svg",
  55052. extra: 468/442,
  55053. bottom: 6/474
  55054. },
  55055. form: "regular",
  55056. },
  55057. },
  55058. [
  55059. {
  55060. name: "Normal",
  55061. height: math.unit(9 + 4/12, "feet"),
  55062. default: true,
  55063. form: "hyper"
  55064. },
  55065. {
  55066. name: "Normal",
  55067. height: math.unit(7 + 10/12, "feet"),
  55068. default: true,
  55069. form: "regular"
  55070. },
  55071. ],
  55072. {
  55073. "hyper": {
  55074. name: "Hyper",
  55075. default: true
  55076. },
  55077. "regular": {
  55078. name: "Regular",
  55079. },
  55080. }
  55081. ))
  55082. characterMakers.push(() => makeCharacter(
  55083. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  55084. {
  55085. side: {
  55086. height: math.unit(6, "feet"),
  55087. weight: math.unit(150, "lb"),
  55088. name: "Side",
  55089. image: {
  55090. source: "./media/characters/jason-crowe/side.svg",
  55091. extra: 1771/766,
  55092. bottom: 219/1990
  55093. }
  55094. },
  55095. },
  55096. [
  55097. {
  55098. name: "Pocket Gryphon",
  55099. height: math.unit(6, "cm")
  55100. },
  55101. {
  55102. name: "Raven",
  55103. height: math.unit(60, "cm")
  55104. },
  55105. {
  55106. name: "Normal",
  55107. height: math.unit(1, "meter"),
  55108. default: true
  55109. },
  55110. ]
  55111. ))
  55112. characterMakers.push(() => makeCharacter(
  55113. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  55114. {
  55115. front: {
  55116. height: math.unit(9 + 6/12, "feet"),
  55117. weight: math.unit(1100, "lb"),
  55118. name: "Front",
  55119. image: {
  55120. source: "./media/characters/django/front.svg",
  55121. extra: 1231/1136,
  55122. bottom: 34/1265
  55123. }
  55124. },
  55125. side: {
  55126. height: math.unit(9 + 6/12, "feet"),
  55127. weight: math.unit(1100, "lb"),
  55128. name: "Side",
  55129. image: {
  55130. source: "./media/characters/django/side.svg",
  55131. extra: 1267/1174,
  55132. bottom: 9/1276
  55133. }
  55134. },
  55135. },
  55136. [
  55137. {
  55138. name: "Normal",
  55139. height: math.unit(9 + 6/12, "feet"),
  55140. default: true
  55141. },
  55142. {
  55143. name: "Macro 1",
  55144. height: math.unit(50, "feet")
  55145. },
  55146. {
  55147. name: "Macro 2",
  55148. height: math.unit(500, "feet")
  55149. },
  55150. {
  55151. name: "Mega Macro",
  55152. height: math.unit(5300, "feet")
  55153. },
  55154. ]
  55155. ))
  55156. characterMakers.push(() => makeCharacter(
  55157. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  55158. {
  55159. frontSfw: {
  55160. height: math.unit(120, "cm"),
  55161. weight: math.unit(15, "kg"),
  55162. name: "Front (SFW)",
  55163. image: {
  55164. source: "./media/characters/eri/front-sfw.svg",
  55165. extra: 1014/939,
  55166. bottom: 37/1051
  55167. },
  55168. form: "moth",
  55169. },
  55170. frontNsfw: {
  55171. height: math.unit(120, "cm"),
  55172. weight: math.unit(15, "kg"),
  55173. name: "Front (NSFW)",
  55174. image: {
  55175. source: "./media/characters/eri/front-nsfw.svg",
  55176. extra: 1014/939,
  55177. bottom: 37/1051
  55178. },
  55179. form: "moth",
  55180. default: true
  55181. },
  55182. egg: {
  55183. height: math.unit(10, "cm"),
  55184. name: "Egg",
  55185. image: {
  55186. source: "./media/characters/eri/egg.svg"
  55187. },
  55188. form: "egg",
  55189. default: true
  55190. },
  55191. },
  55192. [
  55193. {
  55194. name: "Normal",
  55195. height: math.unit(120, "cm"),
  55196. default: true,
  55197. form: "moth"
  55198. },
  55199. {
  55200. name: "Normal",
  55201. height: math.unit(10, "cm"),
  55202. default: true,
  55203. form: "egg"
  55204. },
  55205. ],
  55206. {
  55207. "moth": {
  55208. name: "Moth",
  55209. default: true
  55210. },
  55211. "egg": {
  55212. name: "Egg",
  55213. },
  55214. }
  55215. ))
  55216. characterMakers.push(() => makeCharacter(
  55217. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  55218. {
  55219. front: {
  55220. height: math.unit(200, "feet"),
  55221. name: "Front",
  55222. image: {
  55223. source: "./media/characters/bishop-dowser/front.svg",
  55224. extra: 933/868,
  55225. bottom: 106/1039
  55226. }
  55227. },
  55228. },
  55229. [
  55230. {
  55231. name: "Giant",
  55232. height: math.unit(200, "feet"),
  55233. default: true
  55234. },
  55235. ]
  55236. ))
  55237. characterMakers.push(() => makeCharacter(
  55238. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  55239. {
  55240. front: {
  55241. height: math.unit(2, "meters"),
  55242. preyCapacity: math.unit(3, "people"),
  55243. name: "Front",
  55244. image: {
  55245. source: "./media/characters/fryra/front.svg",
  55246. extra: 1025/948,
  55247. bottom: 30/1055
  55248. },
  55249. extraAttributes: {
  55250. "breastVolume": {
  55251. name: "Breast Volume",
  55252. power: 3,
  55253. type: "volume",
  55254. base: math.unit(8, "liters")
  55255. },
  55256. }
  55257. },
  55258. back: {
  55259. height: math.unit(2, "meters"),
  55260. preyCapacity: math.unit(3, "people"),
  55261. name: "Back",
  55262. image: {
  55263. source: "./media/characters/fryra/back.svg",
  55264. extra: 993/938,
  55265. bottom: 38/1031
  55266. },
  55267. extraAttributes: {
  55268. "breastVolume": {
  55269. name: "Breast Volume",
  55270. power: 3,
  55271. type: "volume",
  55272. base: math.unit(8, "liters")
  55273. },
  55274. }
  55275. },
  55276. head: {
  55277. height: math.unit(1.33, "feet"),
  55278. name: "Head",
  55279. image: {
  55280. source: "./media/characters/fryra/head.svg"
  55281. }
  55282. },
  55283. maw: {
  55284. height: math.unit(0.56, "feet"),
  55285. name: "Maw",
  55286. image: {
  55287. source: "./media/characters/fryra/maw.svg"
  55288. }
  55289. },
  55290. },
  55291. [
  55292. {
  55293. name: "Micro",
  55294. height: math.unit(5, "cm")
  55295. },
  55296. {
  55297. name: "Normal",
  55298. height: math.unit(2, "meters"),
  55299. default: true
  55300. },
  55301. {
  55302. name: "Small Macro",
  55303. height: math.unit(8, "meters")
  55304. },
  55305. {
  55306. name: "Macro",
  55307. height: math.unit(50, "meters")
  55308. },
  55309. {
  55310. name: "Megamacro",
  55311. height: math.unit(1, "km")
  55312. },
  55313. {
  55314. name: "Planetary",
  55315. height: math.unit(300000, "km")
  55316. },
  55317. {
  55318. name: "Universal",
  55319. height: math.unit(250, "lightyears")
  55320. },
  55321. {
  55322. name: "Fabric of Reality",
  55323. height: math.unit(1000, "multiverses")
  55324. },
  55325. ]
  55326. ))
  55327. characterMakers.push(() => makeCharacter(
  55328. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  55329. {
  55330. frontDressed: {
  55331. height: math.unit(6 + 2/12, "feet"),
  55332. name: "Front (Dressed)",
  55333. image: {
  55334. source: "./media/characters/fiera/front-dressed.svg",
  55335. extra: 1883/1793,
  55336. bottom: 70/1953
  55337. }
  55338. },
  55339. backDressed: {
  55340. height: math.unit(6 + 2/12, "feet"),
  55341. name: "Back (Dressed)",
  55342. image: {
  55343. source: "./media/characters/fiera/back-dressed.svg",
  55344. extra: 1847/1780,
  55345. bottom: 70/1917
  55346. }
  55347. },
  55348. frontNude: {
  55349. height: math.unit(6 + 2/12, "feet"),
  55350. name: "Front (Nude)",
  55351. image: {
  55352. source: "./media/characters/fiera/front-nude.svg",
  55353. extra: 1875/1785,
  55354. bottom: 66/1941
  55355. }
  55356. },
  55357. backNude: {
  55358. height: math.unit(6 + 2/12, "feet"),
  55359. name: "Back (Nude)",
  55360. image: {
  55361. source: "./media/characters/fiera/back-nude.svg",
  55362. extra: 1855/1788,
  55363. bottom: 44/1899
  55364. }
  55365. },
  55366. maw: {
  55367. height: math.unit(1.3, "feet"),
  55368. name: "Maw",
  55369. image: {
  55370. source: "./media/characters/fiera/maw.svg"
  55371. }
  55372. },
  55373. paw: {
  55374. height: math.unit(1, "feet"),
  55375. name: "Paw",
  55376. image: {
  55377. source: "./media/characters/fiera/paw.svg"
  55378. }
  55379. },
  55380. shoe: {
  55381. height: math.unit(1.05, "feet"),
  55382. name: "Shoe",
  55383. image: {
  55384. source: "./media/characters/fiera/shoe.svg"
  55385. }
  55386. },
  55387. },
  55388. [
  55389. {
  55390. name: "Normal",
  55391. height: math.unit(6 + 2/12, "feet"),
  55392. default: true
  55393. },
  55394. {
  55395. name: "Size Difference",
  55396. height: math.unit(13, "feet")
  55397. },
  55398. {
  55399. name: "Macro",
  55400. height: math.unit(60, "feet")
  55401. },
  55402. {
  55403. name: "Mega Macro",
  55404. height: math.unit(200, "feet")
  55405. },
  55406. ]
  55407. ))
  55408. characterMakers.push(() => makeCharacter(
  55409. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  55410. {
  55411. back: {
  55412. height: math.unit(6, "feet"),
  55413. name: "Back",
  55414. image: {
  55415. source: "./media/characters/flare/back.svg",
  55416. extra: 1883/1765,
  55417. bottom: 32/1915
  55418. }
  55419. },
  55420. },
  55421. [
  55422. {
  55423. name: "Normal",
  55424. height: math.unit(6 + 2/12, "feet"),
  55425. default: true
  55426. },
  55427. {
  55428. name: "Size Difference",
  55429. height: math.unit(13, "feet")
  55430. },
  55431. {
  55432. name: "Macro",
  55433. height: math.unit(60, "feet")
  55434. },
  55435. {
  55436. name: "Macro 2",
  55437. height: math.unit(100, "feet")
  55438. },
  55439. {
  55440. name: "Mega Macro",
  55441. height: math.unit(200, "feet")
  55442. },
  55443. ]
  55444. ))
  55445. characterMakers.push(() => makeCharacter(
  55446. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  55447. {
  55448. front: {
  55449. height: math.unit(2.2, "m"),
  55450. weight: math.unit(300, "kg"),
  55451. name: "Front",
  55452. image: {
  55453. source: "./media/characters/hanna/front.svg",
  55454. extra: 1696/1502,
  55455. bottom: 206/1902
  55456. }
  55457. },
  55458. },
  55459. [
  55460. {
  55461. name: "Humanoid",
  55462. height: math.unit(2.2, "meters")
  55463. },
  55464. {
  55465. name: "Normal",
  55466. height: math.unit(4.8, "meters"),
  55467. default: true
  55468. },
  55469. ]
  55470. ))
  55471. characterMakers.push(() => makeCharacter(
  55472. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  55473. {
  55474. front: {
  55475. height: math.unit(2.8, "meters"),
  55476. name: "Front",
  55477. image: {
  55478. source: "./media/characters/argo/front.svg",
  55479. extra: 731/518,
  55480. bottom: 84/815
  55481. }
  55482. },
  55483. },
  55484. [
  55485. {
  55486. name: "Normal",
  55487. height: math.unit(3, "meters"),
  55488. default: true
  55489. },
  55490. ]
  55491. ))
  55492. characterMakers.push(() => makeCharacter(
  55493. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  55494. {
  55495. side: {
  55496. height: math.unit(3.8, "meters"),
  55497. name: "Side",
  55498. image: {
  55499. source: "./media/characters/sybil/side.svg",
  55500. extra: 382/361,
  55501. bottom: 25/407
  55502. }
  55503. },
  55504. },
  55505. [
  55506. {
  55507. name: "Normal",
  55508. height: math.unit(3.8, "meters"),
  55509. default: true
  55510. },
  55511. ]
  55512. ))
  55513. characterMakers.push(() => makeCharacter(
  55514. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  55515. {
  55516. side: {
  55517. height: math.unit(6, "meters"),
  55518. name: "Side",
  55519. image: {
  55520. source: "./media/characters/plum/side.svg",
  55521. extra: 858/755,
  55522. bottom: 45/903
  55523. },
  55524. form: "taur",
  55525. default: true
  55526. },
  55527. back: {
  55528. height: math.unit(6.3, "meters"),
  55529. name: "Back",
  55530. image: {
  55531. source: "./media/characters/plum/back.svg",
  55532. extra: 887/813,
  55533. bottom: 32/919
  55534. },
  55535. form: "taur",
  55536. },
  55537. feral: {
  55538. height: math.unit(5.5, "meter"),
  55539. name: "Front",
  55540. image: {
  55541. source: "./media/characters/plum/feral.svg",
  55542. extra: 568/403,
  55543. bottom: 51/619
  55544. },
  55545. form: "feral",
  55546. default: true
  55547. },
  55548. head: {
  55549. height: math.unit(1.46, "meter"),
  55550. name: "Head",
  55551. image: {
  55552. source: "./media/characters/plum/head.svg"
  55553. },
  55554. form: "taur"
  55555. },
  55556. tailTop: {
  55557. height: math.unit(5.6, "meter"),
  55558. name: "Tail (Top)",
  55559. image: {
  55560. source: "./media/characters/plum/tail-top.svg"
  55561. },
  55562. form: "taur",
  55563. },
  55564. tailBottom: {
  55565. height: math.unit(5.6, "meter"),
  55566. name: "Tail (Bottom)",
  55567. image: {
  55568. source: "./media/characters/plum/tail-bottom.svg"
  55569. },
  55570. form: "taur",
  55571. },
  55572. feralHead: {
  55573. height: math.unit(2.56549521, "meter"),
  55574. name: "Head",
  55575. image: {
  55576. source: "./media/characters/plum/head.svg"
  55577. },
  55578. form: "feral"
  55579. },
  55580. feralTailTop: {
  55581. height: math.unit(5.44728435, "meter"),
  55582. name: "Tail (Top)",
  55583. image: {
  55584. source: "./media/characters/plum/tail-top.svg"
  55585. },
  55586. form: "feral",
  55587. },
  55588. feralTailBottom: {
  55589. height: math.unit(5.44728435, "meter"),
  55590. name: "Tail (Bottom)",
  55591. image: {
  55592. source: "./media/characters/plum/tail-bottom.svg"
  55593. },
  55594. form: "feral",
  55595. },
  55596. },
  55597. [
  55598. {
  55599. name: "Normal",
  55600. height: math.unit(6, "meters"),
  55601. default: true,
  55602. form: "taur"
  55603. },
  55604. {
  55605. name: "Normal",
  55606. height: math.unit(5.5, "meters"),
  55607. default: true,
  55608. form: "feral"
  55609. },
  55610. ],
  55611. {
  55612. "taur": {
  55613. name: "Taur",
  55614. default: true
  55615. },
  55616. "feral": {
  55617. name: "Feral",
  55618. },
  55619. }
  55620. ))
  55621. characterMakers.push(() => makeCharacter(
  55622. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  55623. {
  55624. front: {
  55625. height: math.unit(6, "feet"),
  55626. weight: math.unit(115, "lb"),
  55627. name: "Front",
  55628. image: {
  55629. source: "./media/characters/celeste-kitsune/front.svg",
  55630. extra: 393/366,
  55631. bottom: 7/400
  55632. }
  55633. },
  55634. side: {
  55635. height: math.unit(6, "feet"),
  55636. weight: math.unit(115, "lb"),
  55637. name: "Side",
  55638. image: {
  55639. source: "./media/characters/celeste-kitsune/side.svg",
  55640. extra: 818/765,
  55641. bottom: 40/858
  55642. }
  55643. },
  55644. },
  55645. [
  55646. {
  55647. name: "Megamacro",
  55648. height: math.unit(1500, "miles"),
  55649. default: true
  55650. },
  55651. ]
  55652. ))
  55653. characterMakers.push(() => makeCharacter(
  55654. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  55655. {
  55656. front: {
  55657. height: math.unit(8, "meters"),
  55658. name: "Front",
  55659. image: {
  55660. source: "./media/characters/io/front.svg",
  55661. extra: 865/722,
  55662. bottom: 58/923
  55663. }
  55664. },
  55665. back: {
  55666. height: math.unit(8, "meters"),
  55667. name: "Back",
  55668. image: {
  55669. source: "./media/characters/io/back.svg",
  55670. extra: 920/776,
  55671. bottom: 42/962
  55672. }
  55673. },
  55674. head: {
  55675. height: math.unit(5.09, "meters"),
  55676. name: "Head",
  55677. image: {
  55678. source: "./media/characters/io/head.svg"
  55679. }
  55680. },
  55681. hand: {
  55682. height: math.unit(1.6, "meters"),
  55683. name: "Hand",
  55684. image: {
  55685. source: "./media/characters/io/hand.svg"
  55686. }
  55687. },
  55688. foot: {
  55689. height: math.unit(2.4, "meters"),
  55690. name: "Foot",
  55691. image: {
  55692. source: "./media/characters/io/foot.svg"
  55693. }
  55694. },
  55695. },
  55696. [
  55697. {
  55698. name: "Normal",
  55699. height: math.unit(8, "meters"),
  55700. default: true
  55701. },
  55702. ]
  55703. ))
  55704. characterMakers.push(() => makeCharacter(
  55705. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  55706. {
  55707. side: {
  55708. height: math.unit(6 + 3/12, "feet"),
  55709. weight: math.unit(225, "lb"),
  55710. name: "Side",
  55711. image: {
  55712. source: "./media/characters/silas/side.svg",
  55713. extra: 703/653,
  55714. bottom: 23/726
  55715. },
  55716. extraAttributes: {
  55717. "pawLength": {
  55718. name: "Paw Length",
  55719. power: 1,
  55720. type: "length",
  55721. base: math.unit(12, "inches")
  55722. },
  55723. "pawWidth": {
  55724. name: "Paw Width",
  55725. power: 1,
  55726. type: "length",
  55727. base: math.unit(4.5, "inches")
  55728. },
  55729. "pawArea": {
  55730. name: "Paw Area",
  55731. power: 2,
  55732. type: "area",
  55733. base: math.unit(12 * 4.5, "inches^2")
  55734. },
  55735. }
  55736. },
  55737. },
  55738. [
  55739. {
  55740. name: "Normal",
  55741. height: math.unit(6 + 3/12, "feet"),
  55742. default: true
  55743. },
  55744. ]
  55745. ))
  55746. characterMakers.push(() => makeCharacter(
  55747. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  55748. {
  55749. back: {
  55750. height: math.unit(1.6, "meters"),
  55751. weight: math.unit(150, "lb"),
  55752. name: "Back",
  55753. image: {
  55754. source: "./media/characters/zari/back.svg",
  55755. extra: 424/411,
  55756. bottom: 32/456
  55757. },
  55758. extraAttributes: {
  55759. "bladderCapacity": {
  55760. name: "Bladder Size",
  55761. power: 3,
  55762. type: "volume",
  55763. base: math.unit(500, "mL")
  55764. },
  55765. "bladderFlow": {
  55766. name: "Flow Rate",
  55767. power: 3,
  55768. type: "volume",
  55769. base: math.unit(25, "mL")
  55770. },
  55771. }
  55772. },
  55773. },
  55774. [
  55775. {
  55776. name: "Normal",
  55777. height: math.unit(1.6, "meters"),
  55778. default: true
  55779. },
  55780. ]
  55781. ))
  55782. characterMakers.push(() => makeCharacter(
  55783. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  55784. {
  55785. front: {
  55786. height: math.unit(25, "feet"),
  55787. weight: math.unit(5, "tons"),
  55788. name: "Front",
  55789. image: {
  55790. source: "./media/characters/charlie-human/front.svg",
  55791. extra: 1870/1740,
  55792. bottom: 102/1972
  55793. },
  55794. extraAttributes: {
  55795. "dickLength": {
  55796. name: "Dick Length",
  55797. power: 1,
  55798. type: "length",
  55799. base: math.unit(9, "feet")
  55800. },
  55801. }
  55802. },
  55803. back: {
  55804. height: math.unit(25, "feet"),
  55805. weight: math.unit(5, "tons"),
  55806. name: "Back",
  55807. image: {
  55808. source: "./media/characters/charlie-human/back.svg",
  55809. extra: 1858/1733,
  55810. bottom: 105/1963
  55811. },
  55812. extraAttributes: {
  55813. "dickLength": {
  55814. name: "Dick Length",
  55815. power: 1,
  55816. type: "length",
  55817. base: math.unit(9, "feet")
  55818. },
  55819. }
  55820. },
  55821. },
  55822. [
  55823. {
  55824. name: "\"Normal\"",
  55825. height: math.unit(6 + 4/12, "feet")
  55826. },
  55827. {
  55828. name: "Big",
  55829. height: math.unit(25, "feet"),
  55830. default: true
  55831. },
  55832. ]
  55833. ))
  55834. characterMakers.push(() => makeCharacter(
  55835. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  55836. {
  55837. front: {
  55838. height: math.unit(6 + 4/12, "feet"),
  55839. weight: math.unit(320, "lb"),
  55840. name: "Front",
  55841. image: {
  55842. source: "./media/characters/ookitsu/front.svg",
  55843. extra: 1160/976,
  55844. bottom: 38/1198
  55845. }
  55846. },
  55847. frontNsfw: {
  55848. height: math.unit(6 + 4/12, "feet"),
  55849. weight: math.unit(320, "lb"),
  55850. name: "Front (NSFW)",
  55851. image: {
  55852. source: "./media/characters/ookitsu/front-nsfw.svg",
  55853. extra: 1160/976,
  55854. bottom: 38/1198
  55855. }
  55856. },
  55857. back: {
  55858. height: math.unit(6 + 4/12, "feet"),
  55859. weight: math.unit(320, "lb"),
  55860. name: "Back",
  55861. image: {
  55862. source: "./media/characters/ookitsu/back.svg",
  55863. extra: 1030/975,
  55864. bottom: 70/1100
  55865. }
  55866. },
  55867. head: {
  55868. height: math.unit(1.79, "feet"),
  55869. name: "Head",
  55870. image: {
  55871. source: "./media/characters/ookitsu/head.svg"
  55872. }
  55873. },
  55874. hand: {
  55875. height: math.unit(0.92, "feet"),
  55876. name: "Hand",
  55877. image: {
  55878. source: "./media/characters/ookitsu/hand.svg"
  55879. }
  55880. },
  55881. tails: {
  55882. height: math.unit(3.3, "feet"),
  55883. name: "Tails",
  55884. image: {
  55885. source: "./media/characters/ookitsu/tails.svg"
  55886. }
  55887. },
  55888. dick: {
  55889. height: math.unit(1.10833, "feet"),
  55890. name: "Dick",
  55891. image: {
  55892. source: "./media/characters/ookitsu/dick.svg"
  55893. }
  55894. },
  55895. },
  55896. [
  55897. {
  55898. name: "Normal",
  55899. height: math.unit(6 + 4/12, "feet"),
  55900. default: true
  55901. },
  55902. {
  55903. name: "Macro",
  55904. height: math.unit(30, "feet")
  55905. },
  55906. ]
  55907. ))
  55908. characterMakers.push(() => makeCharacter(
  55909. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  55910. {
  55911. anthroFront: {
  55912. height: math.unit(6, "feet"),
  55913. weight: math.unit(250, "lb"),
  55914. name: "Front",
  55915. image: {
  55916. source: "./media/characters/jhusky/anthro-front.svg",
  55917. extra: 474/439,
  55918. bottom: 7/481
  55919. },
  55920. form: "anthro",
  55921. default: true
  55922. },
  55923. taurSideSfw: {
  55924. height: math.unit(6 + 4/12, "feet"),
  55925. weight: math.unit(500, "lb"),
  55926. name: "Side (SFW)",
  55927. image: {
  55928. source: "./media/characters/jhusky/taur-side-sfw.svg",
  55929. extra: 1741/1629,
  55930. bottom: 196/1937
  55931. },
  55932. form: "taur",
  55933. default: true
  55934. },
  55935. taurSideNsfw: {
  55936. height: math.unit(6 + 4/12, "feet"),
  55937. weight: math.unit(500, "lb"),
  55938. name: "Taur (NSFW)",
  55939. image: {
  55940. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  55941. extra: 1741/1629,
  55942. bottom: 196/1937
  55943. },
  55944. form: "taur",
  55945. },
  55946. },
  55947. [
  55948. {
  55949. name: "Huge",
  55950. height: math.unit(500, "feet"),
  55951. form: "anthro"
  55952. },
  55953. {
  55954. name: "Macro",
  55955. height: math.unit(1000, "feet"),
  55956. default: true,
  55957. form: "anthro"
  55958. },
  55959. {
  55960. name: "Megamacro",
  55961. height: math.unit(10000, "feet"),
  55962. form: "anthro"
  55963. },
  55964. {
  55965. name: "Huge",
  55966. height: math.unit(528, "feet"),
  55967. form: "taur"
  55968. },
  55969. {
  55970. name: "Macro",
  55971. height: math.unit(1056, "feet"),
  55972. default: true,
  55973. form: "taur"
  55974. },
  55975. {
  55976. name: "Megamacro",
  55977. height: math.unit(10556, "feet"),
  55978. form: "taur"
  55979. },
  55980. ],
  55981. {
  55982. "anthro": {
  55983. name: "Anthro",
  55984. default: true
  55985. },
  55986. "taur": {
  55987. name: "Taur",
  55988. },
  55989. }
  55990. ))
  55991. characterMakers.push(() => makeCharacter(
  55992. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  55993. {
  55994. front: {
  55995. height: math.unit(8, "feet"),
  55996. weight: math.unit(500, "lb"),
  55997. name: "Front",
  55998. image: {
  55999. source: "./media/characters/armail/front.svg",
  56000. extra: 1753/1669,
  56001. bottom: 155/1908
  56002. }
  56003. },
  56004. back: {
  56005. height: math.unit(8, "feet"),
  56006. weight: math.unit(500, "lb"),
  56007. name: "Back",
  56008. image: {
  56009. source: "./media/characters/armail/back.svg",
  56010. extra: 1872/1803,
  56011. bottom: 63/1935
  56012. }
  56013. },
  56014. },
  56015. [
  56016. {
  56017. name: "Micro",
  56018. height: math.unit(0.25, "feet")
  56019. },
  56020. {
  56021. name: "Normal",
  56022. height: math.unit(8, "feet"),
  56023. default: true
  56024. },
  56025. {
  56026. name: "Mini-macro",
  56027. height: math.unit(30, "feet")
  56028. },
  56029. {
  56030. name: "Macro",
  56031. height: math.unit(400, "feet")
  56032. },
  56033. {
  56034. name: "Mega-macro",
  56035. height: math.unit(6000, "feet")
  56036. },
  56037. ]
  56038. ))
  56039. characterMakers.push(() => makeCharacter(
  56040. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  56041. {
  56042. front: {
  56043. height: math.unit(6 + 7/12, "feet"),
  56044. weight: math.unit(210, "lb"),
  56045. name: "Front",
  56046. image: {
  56047. source: "./media/characters/wilfred-t-buxton/front.svg",
  56048. extra: 1068/882,
  56049. bottom: 28/1096
  56050. }
  56051. },
  56052. },
  56053. [
  56054. {
  56055. name: "Normal",
  56056. height: math.unit(6 + 7/12, "feet"),
  56057. default: true
  56058. },
  56059. ]
  56060. ))
  56061. characterMakers.push(() => makeCharacter(
  56062. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  56063. {
  56064. front: {
  56065. height: math.unit(5 + 2/12, "feet"),
  56066. weight: math.unit(120, "lb"),
  56067. name: "Front",
  56068. image: {
  56069. source: "./media/characters/leighton-marrow/front.svg",
  56070. extra: 441/409,
  56071. bottom: 37/478
  56072. }
  56073. },
  56074. },
  56075. [
  56076. {
  56077. name: "Normal",
  56078. height: math.unit(5 + 2/12, "feet"),
  56079. default: true
  56080. },
  56081. ]
  56082. ))
  56083. characterMakers.push(() => makeCharacter(
  56084. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  56085. {
  56086. front: {
  56087. height: math.unit(4, "meters"),
  56088. weight: math.unit(1200, "kg"),
  56089. name: "Front",
  56090. image: {
  56091. source: "./media/characters/licos/front.svg",
  56092. extra: 1727/1604,
  56093. bottom: 101/1828
  56094. },
  56095. form: "anthro",
  56096. default: true
  56097. },
  56098. taur_side: {
  56099. height: math.unit(20, "meters"),
  56100. weight: math.unit(1100000, "kg"),
  56101. name: "Side",
  56102. image: {
  56103. source: "./media/characters/licos/taur.svg",
  56104. extra: 1158/1091,
  56105. bottom: 80/1238
  56106. },
  56107. form: "taur",
  56108. default: true
  56109. },
  56110. },
  56111. [
  56112. {
  56113. name: "Normal",
  56114. height: math.unit(4, "meters"),
  56115. default: true,
  56116. form: "anthro"
  56117. },
  56118. {
  56119. name: "Normal",
  56120. height: math.unit(20, "meters"),
  56121. default: true,
  56122. form: "taur"
  56123. },
  56124. ],
  56125. {
  56126. "anthro": {
  56127. name: "Anthro",
  56128. default: true
  56129. },
  56130. "taur": {
  56131. name: "Taur",
  56132. },
  56133. }
  56134. ))
  56135. characterMakers.push(() => makeCharacter(
  56136. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  56137. {
  56138. front: {
  56139. height: math.unit(10 + 3/12, "feet"),
  56140. name: "Front",
  56141. image: {
  56142. source: "./media/characters/theo-monkey/front.svg",
  56143. extra: 1735/1658,
  56144. bottom: 73/1808
  56145. }
  56146. },
  56147. back: {
  56148. height: math.unit(10 + 3/12, "feet"),
  56149. name: "Back",
  56150. image: {
  56151. source: "./media/characters/theo-monkey/back.svg",
  56152. extra: 1742/1664,
  56153. bottom: 33/1775
  56154. }
  56155. },
  56156. head: {
  56157. height: math.unit(2.29, "feet"),
  56158. name: "Head",
  56159. image: {
  56160. source: "./media/characters/theo-monkey/head.svg"
  56161. }
  56162. },
  56163. handPalm: {
  56164. height: math.unit(1.73, "feet"),
  56165. name: "Hand (Palm)",
  56166. image: {
  56167. source: "./media/characters/theo-monkey/hand-palm.svg"
  56168. }
  56169. },
  56170. handBack: {
  56171. height: math.unit(1.63, "feet"),
  56172. name: "Hand (Back)",
  56173. image: {
  56174. source: "./media/characters/theo-monkey/hand-back.svg"
  56175. }
  56176. },
  56177. footSole: {
  56178. height: math.unit(2.15, "feet"),
  56179. name: "Foot (Sole)",
  56180. image: {
  56181. source: "./media/characters/theo-monkey/foot-sole.svg"
  56182. }
  56183. },
  56184. footSide: {
  56185. height: math.unit(1.6, "feet"),
  56186. name: "Foot (Side)",
  56187. image: {
  56188. source: "./media/characters/theo-monkey/foot-side.svg"
  56189. }
  56190. },
  56191. },
  56192. [
  56193. {
  56194. name: "Normal",
  56195. height: math.unit(10 + 3/12, "feet"),
  56196. default: true
  56197. },
  56198. ]
  56199. ))
  56200. characterMakers.push(() => makeCharacter(
  56201. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  56202. {
  56203. front: {
  56204. height: math.unit(11, "feet"),
  56205. weight: math.unit(3000, "lb"),
  56206. preyCapacity: math.unit(10, "people"),
  56207. name: "Front",
  56208. image: {
  56209. source: "./media/characters/brook/front.svg",
  56210. extra: 909/835,
  56211. bottom: 108/1017
  56212. }
  56213. },
  56214. back: {
  56215. height: math.unit(11, "feet"),
  56216. weight: math.unit(3000, "lb"),
  56217. preyCapacity: math.unit(10, "people"),
  56218. name: "Back",
  56219. image: {
  56220. source: "./media/characters/brook/back.svg",
  56221. extra: 976/916,
  56222. bottom: 34/1010
  56223. }
  56224. },
  56225. backAlt: {
  56226. height: math.unit(11, "feet"),
  56227. weight: math.unit(3000, "lb"),
  56228. preyCapacity: math.unit(10, "people"),
  56229. name: "Back (Alt)",
  56230. image: {
  56231. source: "./media/characters/brook/back-alt.svg",
  56232. extra: 1283/1213,
  56233. bottom: 35/1318
  56234. }
  56235. },
  56236. bust: {
  56237. height: math.unit(9.0859030837, "feet"),
  56238. weight: math.unit(3000, "lb"),
  56239. preyCapacity: math.unit(10, "people"),
  56240. name: "Bust",
  56241. image: {
  56242. source: "./media/characters/brook/bust.svg",
  56243. extra: 2043/1923,
  56244. bottom: 0/2043
  56245. }
  56246. },
  56247. },
  56248. [
  56249. {
  56250. name: "Small",
  56251. height: math.unit(11, "feet"),
  56252. default: true
  56253. },
  56254. {
  56255. name: "Towering",
  56256. height: math.unit(5, "km")
  56257. },
  56258. {
  56259. name: "Enormous",
  56260. height: math.unit(25, "earths")
  56261. },
  56262. ]
  56263. ))
  56264. characterMakers.push(() => makeCharacter(
  56265. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  56266. {
  56267. front: {
  56268. height: math.unit(4, "feet"),
  56269. weight: math.unit(150, "lb"),
  56270. name: "Front",
  56271. image: {
  56272. source: "./media/characters/squishi/front.svg",
  56273. extra: 1428/1271,
  56274. bottom: 30/1458
  56275. },
  56276. extraAttributes: {
  56277. "pawSize": {
  56278. name: "Paw Size",
  56279. power: 1,
  56280. type: "length",
  56281. base: math.unit(14, "ShoeSizeMensUS"),
  56282. defaultUnit: "ShoeSizeMensUS"
  56283. },
  56284. }
  56285. },
  56286. side: {
  56287. height: math.unit(4, "feet"),
  56288. weight: math.unit(150, "lb"),
  56289. name: "Side",
  56290. image: {
  56291. source: "./media/characters/squishi/side.svg",
  56292. extra: 1428/1271,
  56293. bottom: 30/1458
  56294. },
  56295. extraAttributes: {
  56296. "pawSize": {
  56297. name: "Paw Size",
  56298. power: 1,
  56299. type: "length",
  56300. base: math.unit(14, "ShoeSizeMensUS"),
  56301. defaultUnit: "ShoeSizeMensUS"
  56302. },
  56303. }
  56304. },
  56305. back: {
  56306. height: math.unit(4, "feet"),
  56307. weight: math.unit(150, "lb"),
  56308. name: "Back",
  56309. image: {
  56310. source: "./media/characters/squishi/back.svg",
  56311. extra: 1428/1271,
  56312. bottom: 30/1458
  56313. },
  56314. extraAttributes: {
  56315. "pawSize": {
  56316. name: "Paw Size",
  56317. power: 1,
  56318. type: "length",
  56319. base: math.unit(14, "ShoeSizeMensUS"),
  56320. defaultUnit: "ShoeSizeMensUS"
  56321. },
  56322. }
  56323. },
  56324. },
  56325. [
  56326. {
  56327. name: "Normal",
  56328. height: math.unit(4, "feet"),
  56329. default: true
  56330. },
  56331. ]
  56332. ))
  56333. characterMakers.push(() => makeCharacter(
  56334. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  56335. {
  56336. front: {
  56337. height: math.unit(7 + 8/12, "feet"),
  56338. weight: math.unit(333, "lb"),
  56339. name: "Front",
  56340. image: {
  56341. source: "./media/characters/vincent-vasroc/front.svg",
  56342. extra: 1962/1860,
  56343. bottom: 41/2003
  56344. }
  56345. },
  56346. back: {
  56347. height: math.unit(7 + 8/12, "feet"),
  56348. weight: math.unit(333, "lb"),
  56349. name: "Back",
  56350. image: {
  56351. source: "./media/characters/vincent-vasroc/back.svg",
  56352. extra: 1952/1815,
  56353. bottom: 33/1985
  56354. }
  56355. },
  56356. paw: {
  56357. height: math.unit(1.24, "feet"),
  56358. name: "Paw",
  56359. image: {
  56360. source: "./media/characters/vincent-vasroc/paw.svg"
  56361. }
  56362. },
  56363. ear: {
  56364. height: math.unit(0.75, "feet"),
  56365. name: "Ear",
  56366. image: {
  56367. source: "./media/characters/vincent-vasroc/ear.svg"
  56368. }
  56369. },
  56370. },
  56371. [
  56372. {
  56373. name: "Nano",
  56374. height: math.unit(92, "micrometers")
  56375. },
  56376. {
  56377. name: "Normal",
  56378. height: math.unit(7 + 8/12, "feet"),
  56379. default: true
  56380. },
  56381. ]
  56382. ))
  56383. characterMakers.push(() => makeCharacter(
  56384. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  56385. {
  56386. frontNsfw: {
  56387. height: math.unit(40, "feet"),
  56388. weight: math.unit(58, "tons"),
  56389. name: "Front (NSFW)",
  56390. image: {
  56391. source: "./media/characters/ru-kahn/front-nsfw.svg",
  56392. extra: 1265/965,
  56393. bottom: 155/1420
  56394. }
  56395. },
  56396. frontSfw: {
  56397. height: math.unit(40, "feet"),
  56398. weight: math.unit(58, "tons"),
  56399. name: "Front (SFW)",
  56400. image: {
  56401. source: "./media/characters/ru-kahn/front-sfw.svg",
  56402. extra: 1265/965,
  56403. bottom: 80/1345
  56404. }
  56405. },
  56406. },
  56407. [
  56408. {
  56409. name: "Small",
  56410. height: math.unit(4, "feet")
  56411. },
  56412. {
  56413. name: "Normal",
  56414. height: math.unit(40, "feet"),
  56415. default: true
  56416. },
  56417. {
  56418. name: "Macro",
  56419. height: math.unit(400, "feet")
  56420. },
  56421. ]
  56422. ))
  56423. characterMakers.push(() => makeCharacter(
  56424. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  56425. {
  56426. frontNude: {
  56427. height: math.unit(6 + 5/12, "feet"),
  56428. name: "Front (Nude)",
  56429. image: {
  56430. source: "./media/characters/sylvie-laforge/front-nude.svg",
  56431. extra: 1369/1366,
  56432. bottom: 68/1437
  56433. }
  56434. },
  56435. frontDressed: {
  56436. height: math.unit(6 + 5/12, "feet"),
  56437. name: "Front (Dressed)",
  56438. image: {
  56439. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  56440. extra: 1369/1366,
  56441. bottom: 68/1437
  56442. }
  56443. },
  56444. },
  56445. [
  56446. {
  56447. name: "Normal",
  56448. height: math.unit(6 + 5/12, "feet"),
  56449. default: true
  56450. },
  56451. {
  56452. name: "Maximum",
  56453. height: math.unit(1930, "feet")
  56454. },
  56455. ]
  56456. ))
  56457. characterMakers.push(() => makeCharacter(
  56458. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  56459. {
  56460. front: {
  56461. height: math.unit(5 + 6/12, "feet"),
  56462. name: "Front",
  56463. image: {
  56464. source: "./media/characters/kaja/front.svg",
  56465. extra: 1874/1514,
  56466. bottom: 117/1991
  56467. }
  56468. },
  56469. },
  56470. [
  56471. {
  56472. name: "Normal",
  56473. height: math.unit(5 + 6/12, "feet"),
  56474. default: true
  56475. },
  56476. ]
  56477. ))
  56478. characterMakers.push(() => makeCharacter(
  56479. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  56480. {
  56481. front: {
  56482. height: math.unit(5 + 9/12, "feet"),
  56483. weight: math.unit(200, "lb"),
  56484. name: "Front",
  56485. image: {
  56486. source: "./media/characters/mark-smith/front.svg",
  56487. extra: 1004/943,
  56488. bottom: 58/1062
  56489. }
  56490. },
  56491. back: {
  56492. height: math.unit(5 + 9/12, "feet"),
  56493. weight: math.unit(200, "lb"),
  56494. name: "Back",
  56495. image: {
  56496. source: "./media/characters/mark-smith/back.svg",
  56497. extra: 1023/953,
  56498. bottom: 24/1047
  56499. }
  56500. },
  56501. head: {
  56502. height: math.unit(1.82, "feet"),
  56503. name: "Head",
  56504. image: {
  56505. source: "./media/characters/mark-smith/head.svg"
  56506. }
  56507. },
  56508. hand: {
  56509. height: math.unit(1.4, "feet"),
  56510. name: "Hand",
  56511. image: {
  56512. source: "./media/characters/mark-smith/hand.svg"
  56513. }
  56514. },
  56515. paw: {
  56516. height: math.unit(1.69, "feet"),
  56517. name: "Paw",
  56518. image: {
  56519. source: "./media/characters/mark-smith/paw.svg"
  56520. }
  56521. },
  56522. },
  56523. [
  56524. {
  56525. name: "Micro",
  56526. height: math.unit(0.25, "inches")
  56527. },
  56528. {
  56529. name: "Normal",
  56530. height: math.unit(5 + 9/12, "feet"),
  56531. default: true
  56532. },
  56533. {
  56534. name: "Macro",
  56535. height: math.unit(500, "feet")
  56536. },
  56537. ]
  56538. ))
  56539. characterMakers.push(() => makeCharacter(
  56540. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  56541. {
  56542. frontNude: {
  56543. height: math.unit(6, "feet"),
  56544. name: "Front (Nude)",
  56545. image: {
  56546. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  56547. extra: 1384/1321,
  56548. bottom: 57/1441
  56549. }
  56550. },
  56551. frontDressed: {
  56552. height: math.unit(6, "feet"),
  56553. name: "Front (Dressed)",
  56554. image: {
  56555. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  56556. extra: 1384/1321,
  56557. bottom: 57/1441
  56558. }
  56559. },
  56560. },
  56561. [
  56562. {
  56563. name: "Normal",
  56564. height: math.unit(6, "feet"),
  56565. default: true
  56566. },
  56567. {
  56568. name: "Maximum",
  56569. height: math.unit(1776, "feet")
  56570. },
  56571. ]
  56572. ))
  56573. characterMakers.push(() => makeCharacter(
  56574. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  56575. {
  56576. front: {
  56577. height: math.unit(2 + 4/12, "feet"),
  56578. weight: math.unit(350, "lb"),
  56579. name: "Front",
  56580. image: {
  56581. source: "./media/characters/devos/front.svg",
  56582. extra: 958/852,
  56583. bottom: 143/1101
  56584. }
  56585. },
  56586. },
  56587. [
  56588. {
  56589. name: "Base",
  56590. height: math.unit(2 + 4/12, "feet"),
  56591. default: true
  56592. },
  56593. ]
  56594. ))
  56595. characterMakers.push(() => makeCharacter(
  56596. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  56597. {
  56598. front: {
  56599. height: math.unit(9 + 2/12, "feet"),
  56600. name: "Front",
  56601. image: {
  56602. source: "./media/characters/hiveheart/front.svg",
  56603. extra: 394/364,
  56604. bottom: 65/459
  56605. }
  56606. },
  56607. back: {
  56608. height: math.unit(9 + 2/12, "feet"),
  56609. name: "Back",
  56610. image: {
  56611. source: "./media/characters/hiveheart/back.svg",
  56612. extra: 374/357,
  56613. bottom: 63/437
  56614. }
  56615. },
  56616. },
  56617. [
  56618. {
  56619. name: "Base",
  56620. height: math.unit(9 + 2/12, "feet"),
  56621. default: true
  56622. },
  56623. ]
  56624. ))
  56625. characterMakers.push(() => makeCharacter(
  56626. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  56627. {
  56628. front: {
  56629. height: math.unit(2.5, "inches"),
  56630. weight: math.unit(0.6, "oz"),
  56631. name: "Front",
  56632. image: {
  56633. source: "./media/characters/bryn/front.svg",
  56634. extra: 1480/1205,
  56635. bottom: 27/1507
  56636. }
  56637. },
  56638. back: {
  56639. height: math.unit(2.5, "inches"),
  56640. weight: math.unit(0.6, "oz"),
  56641. name: "Back",
  56642. image: {
  56643. source: "./media/characters/bryn/back.svg",
  56644. extra: 1475/1201,
  56645. bottom: 39/1514
  56646. }
  56647. },
  56648. foot: {
  56649. height: math.unit(0.4, "inches"),
  56650. name: "Foot",
  56651. image: {
  56652. source: "./media/characters/bryn/foot.svg"
  56653. }
  56654. },
  56655. },
  56656. [
  56657. {
  56658. name: "Normal",
  56659. height: math.unit(2.5, "inches"),
  56660. default: true
  56661. },
  56662. ]
  56663. ))
  56664. characterMakers.push(() => makeCharacter(
  56665. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  56666. {
  56667. side: {
  56668. height: math.unit(7, "feet"),
  56669. weight: math.unit(657, "kg"),
  56670. name: "Side",
  56671. image: {
  56672. source: "./media/characters/delta/side.svg",
  56673. extra: 781/212,
  56674. bottom: 7/788
  56675. },
  56676. extraAttributes: {
  56677. "wingspan": {
  56678. name: "Wingspan",
  56679. power: 1,
  56680. type: "length",
  56681. base: math.unit(48, "feet")
  56682. },
  56683. "length": {
  56684. name: "Length",
  56685. power: 1,
  56686. type: "length",
  56687. base: math.unit(21, "feet")
  56688. },
  56689. "pawSize": {
  56690. name: "Paw Size",
  56691. power: 2,
  56692. type: "area",
  56693. base: math.unit(1.5*1.4, "feet^2")
  56694. },
  56695. }
  56696. },
  56697. },
  56698. [
  56699. {
  56700. name: "Normal",
  56701. height: math.unit(6, "feet"),
  56702. default: true
  56703. },
  56704. ]
  56705. ))
  56706. characterMakers.push(() => makeCharacter(
  56707. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  56708. {
  56709. front: {
  56710. height: math.unit(6, "feet"),
  56711. name: "Front",
  56712. image: {
  56713. source: "./media/characters/pyrow/front.svg",
  56714. extra: 513/486,
  56715. bottom: 14/527
  56716. }
  56717. },
  56718. frontWing: {
  56719. height: math.unit(6, "feet"),
  56720. name: "Front (Wing)",
  56721. image: {
  56722. source: "./media/characters/pyrow/front-wing.svg",
  56723. extra: 539/383,
  56724. bottom: 20/559
  56725. }
  56726. },
  56727. back: {
  56728. height: math.unit(6, "feet"),
  56729. name: "Back",
  56730. image: {
  56731. source: "./media/characters/pyrow/back.svg",
  56732. extra: 500/473,
  56733. bottom: 9/509
  56734. }
  56735. },
  56736. },
  56737. [
  56738. {
  56739. name: "Normal",
  56740. height: math.unit(6, "feet"),
  56741. default: true
  56742. },
  56743. ]
  56744. ))
  56745. characterMakers.push(() => makeCharacter(
  56746. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  56747. {
  56748. front: {
  56749. height: math.unit(5, "meters"),
  56750. weight: math.unit(3, "tonnes"),
  56751. name: "Front",
  56752. image: {
  56753. source: "./media/characters/velikan/front.svg",
  56754. extra: 867/744,
  56755. bottom: 71/938
  56756. },
  56757. extraAttributes: {
  56758. "shoeSize": {
  56759. name: "Shoe Size",
  56760. power: 1,
  56761. type: "length",
  56762. base: math.unit(135, "ShoeSizeUK"),
  56763. defaultUnit: "ShoeSizeUK"
  56764. },
  56765. }
  56766. },
  56767. },
  56768. [
  56769. {
  56770. name: "Normal",
  56771. height: math.unit(5, "meters"),
  56772. default: true
  56773. },
  56774. {
  56775. name: "Macro",
  56776. height: math.unit(1, "km")
  56777. },
  56778. {
  56779. name: "Mega Macro",
  56780. height: math.unit(100, "km")
  56781. },
  56782. {
  56783. name: "Giga Macro",
  56784. height: math.unit(2, "megameters")
  56785. },
  56786. {
  56787. name: "Planetary",
  56788. height: math.unit(22, "megameters")
  56789. },
  56790. {
  56791. name: "Solar",
  56792. height: math.unit(8, "gigameters")
  56793. },
  56794. {
  56795. name: "Cosmic",
  56796. height: math.unit(10, "zettameters")
  56797. },
  56798. {
  56799. name: "Omni",
  56800. height: math.unit(9e260, "multiverses")
  56801. },
  56802. ]
  56803. ))
  56804. characterMakers.push(() => makeCharacter(
  56805. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  56806. {
  56807. front: {
  56808. height: math.unit(4 + 3/12, "feet"),
  56809. weight: math.unit(90, "lb"),
  56810. name: "Front",
  56811. image: {
  56812. source: "./media/characters/sabiki/front.svg",
  56813. extra: 1662/1423,
  56814. bottom: 65/1727
  56815. }
  56816. },
  56817. },
  56818. [
  56819. {
  56820. name: "Normal",
  56821. height: math.unit(4 + 3/12, "feet"),
  56822. default: true
  56823. },
  56824. ]
  56825. ))
  56826. characterMakers.push(() => makeCharacter(
  56827. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  56828. {
  56829. frontSfw: {
  56830. height: math.unit(2, "mm"),
  56831. name: "Front (SFW)",
  56832. image: {
  56833. source: "./media/characters/carmel/front-sfw.svg",
  56834. extra: 1131/1006,
  56835. bottom: 66/1197
  56836. }
  56837. },
  56838. frontNsfw: {
  56839. height: math.unit(2, "mm"),
  56840. name: "Front (NSFW)",
  56841. image: {
  56842. source: "./media/characters/carmel/front-nsfw.svg",
  56843. extra: 1131/1006,
  56844. bottom: 66/1197
  56845. }
  56846. },
  56847. foot: {
  56848. height: math.unit(0.3, "mm"),
  56849. name: "Foot",
  56850. image: {
  56851. source: "./media/characters/carmel/foot.svg"
  56852. }
  56853. },
  56854. tongue: {
  56855. height: math.unit(0.71, "mm"),
  56856. name: "Tongue",
  56857. image: {
  56858. source: "./media/characters/carmel/tongue.svg"
  56859. }
  56860. },
  56861. dick: {
  56862. height: math.unit(0.085, "mm"),
  56863. name: "Dick",
  56864. image: {
  56865. source: "./media/characters/carmel/dick.svg"
  56866. }
  56867. },
  56868. },
  56869. [
  56870. {
  56871. name: "Micro",
  56872. height: math.unit(2, "mm"),
  56873. default: true
  56874. },
  56875. {
  56876. name: "Normal",
  56877. height: math.unit(4 + 8/12, "feet")
  56878. },
  56879. {
  56880. name: "Mega Macro",
  56881. height: math.unit(250, "feet")
  56882. },
  56883. {
  56884. name: "BIGGER",
  56885. height: math.unit(1000, "feet")
  56886. },
  56887. {
  56888. name: "BIGGEST",
  56889. height: math.unit(2, "miles")
  56890. },
  56891. ]
  56892. ))
  56893. characterMakers.push(() => makeCharacter(
  56894. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  56895. {
  56896. front: {
  56897. height: math.unit(6.5, "feet"),
  56898. weight: math.unit(198, "lb"),
  56899. name: "Front",
  56900. image: {
  56901. source: "./media/characters/tamani/anthro.svg",
  56902. extra: 930/890,
  56903. bottom: 34/964
  56904. },
  56905. form: "anthro",
  56906. default: true
  56907. },
  56908. side: {
  56909. height: math.unit(6, "feet"),
  56910. weight: math.unit(198*2, "lb"),
  56911. name: "Side",
  56912. image: {
  56913. source: "./media/characters/tamani/feral.svg",
  56914. extra: 559/519,
  56915. bottom: 43/602
  56916. },
  56917. form: "feral"
  56918. },
  56919. },
  56920. [
  56921. {
  56922. name: "Normal",
  56923. height: math.unit(6.5, "feet"),
  56924. default: true,
  56925. form: "anthro"
  56926. },
  56927. {
  56928. name: "Normal",
  56929. height: math.unit(6, "feet"),
  56930. default: true,
  56931. form: "feral"
  56932. },
  56933. ],
  56934. {
  56935. "anthro": {
  56936. name: "Anthro",
  56937. default: true
  56938. },
  56939. "feral": {
  56940. name: "Feral",
  56941. },
  56942. }
  56943. ))
  56944. characterMakers.push(() => makeCharacter(
  56945. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  56946. {
  56947. front: {
  56948. height: math.unit(4 + 1/12, "feet"),
  56949. weight: math.unit(114, "lb"),
  56950. name: "Front",
  56951. image: {
  56952. source: "./media/characters/dex/front.svg",
  56953. extra: 787/680,
  56954. bottom: 18/805
  56955. }
  56956. },
  56957. side: {
  56958. height: math.unit(4 + 1/12, "feet"),
  56959. weight: math.unit(114, "lb"),
  56960. name: "Side",
  56961. image: {
  56962. source: "./media/characters/dex/side.svg",
  56963. extra: 785/680,
  56964. bottom: 12/797
  56965. }
  56966. },
  56967. back: {
  56968. height: math.unit(4 + 1/12, "feet"),
  56969. weight: math.unit(114, "lb"),
  56970. name: "Back",
  56971. image: {
  56972. source: "./media/characters/dex/back.svg",
  56973. extra: 785/681,
  56974. bottom: 17/802
  56975. }
  56976. },
  56977. loungewear: {
  56978. height: math.unit(4 + 1/12, "feet"),
  56979. weight: math.unit(114, "lb"),
  56980. name: "Loungewear",
  56981. image: {
  56982. source: "./media/characters/dex/loungewear.svg",
  56983. extra: 787/680,
  56984. bottom: 18/805
  56985. }
  56986. },
  56987. workout: {
  56988. height: math.unit(4 + 1/12, "feet"),
  56989. weight: math.unit(114, "lb"),
  56990. name: "Workout",
  56991. image: {
  56992. source: "./media/characters/dex/workout.svg",
  56993. extra: 787/680,
  56994. bottom: 18/805
  56995. }
  56996. },
  56997. schoolUniform: {
  56998. height: math.unit(4 + 1/12, "feet"),
  56999. weight: math.unit(114, "lb"),
  57000. name: "School-uniform",
  57001. image: {
  57002. source: "./media/characters/dex/school-uniform.svg",
  57003. extra: 787/680,
  57004. bottom: 18/805
  57005. }
  57006. },
  57007. maw: {
  57008. height: math.unit(0.55, "feet"),
  57009. name: "Maw",
  57010. image: {
  57011. source: "./media/characters/dex/maw.svg"
  57012. }
  57013. },
  57014. paw: {
  57015. height: math.unit(0.87, "feet"),
  57016. name: "Paw",
  57017. image: {
  57018. source: "./media/characters/dex/paw.svg"
  57019. }
  57020. },
  57021. bust: {
  57022. height: math.unit(1.67, "feet"),
  57023. name: "Bust",
  57024. image: {
  57025. source: "./media/characters/dex/bust.svg"
  57026. }
  57027. },
  57028. },
  57029. [
  57030. {
  57031. name: "Normal",
  57032. height: math.unit(4 + 1/12, "feet"),
  57033. default: true
  57034. },
  57035. ]
  57036. ))
  57037. characterMakers.push(() => makeCharacter(
  57038. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  57039. {
  57040. front: {
  57041. height: math.unit(4 + 3/12, "feet"),
  57042. weight: math.unit(60, "lb"),
  57043. name: "Front",
  57044. image: {
  57045. source: "./media/characters/silke/front.svg",
  57046. extra: 1334/1122,
  57047. bottom: 21/1355
  57048. }
  57049. },
  57050. back: {
  57051. height: math.unit(4 + 3/12, "feet"),
  57052. weight: math.unit(60, "lb"),
  57053. name: "Back",
  57054. image: {
  57055. source: "./media/characters/silke/back.svg",
  57056. extra: 1328/1092,
  57057. bottom: 16/1344
  57058. }
  57059. },
  57060. dressed: {
  57061. height: math.unit(4 + 3/12, "feet"),
  57062. weight: math.unit(60, "lb"),
  57063. name: "Dressed",
  57064. image: {
  57065. source: "./media/characters/silke/dressed.svg",
  57066. extra: 1334/1122,
  57067. bottom: 43/1377
  57068. }
  57069. },
  57070. },
  57071. [
  57072. {
  57073. name: "Normal",
  57074. height: math.unit(4 + 3/12, "feet"),
  57075. default: true
  57076. },
  57077. ]
  57078. ))
  57079. characterMakers.push(() => makeCharacter(
  57080. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  57081. {
  57082. front: {
  57083. height: math.unit(1.58, "meters"),
  57084. weight: math.unit(47, "kg"),
  57085. name: "Front",
  57086. image: {
  57087. source: "./media/characters/wireshark/front.svg",
  57088. extra: 883/838,
  57089. bottom: 66/949
  57090. }
  57091. },
  57092. },
  57093. [
  57094. {
  57095. name: "Normal",
  57096. height: math.unit(1.58, "meters"),
  57097. default: true
  57098. },
  57099. ]
  57100. ))
  57101. characterMakers.push(() => makeCharacter(
  57102. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  57103. {
  57104. front: {
  57105. height: math.unit(6, "meters"),
  57106. weight: math.unit(15000, "kg"),
  57107. name: "Front",
  57108. image: {
  57109. source: "./media/characters/gallagher/front.svg",
  57110. extra: 532/493,
  57111. bottom: 0/532
  57112. }
  57113. },
  57114. },
  57115. [
  57116. {
  57117. name: "Normal",
  57118. height: math.unit(6, "meters"),
  57119. default: true
  57120. },
  57121. ]
  57122. ))
  57123. characterMakers.push(() => makeCharacter(
  57124. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  57125. {
  57126. front: {
  57127. height: math.unit(2.4, "meters"),
  57128. weight: math.unit(270, "kg"),
  57129. name: "Front",
  57130. image: {
  57131. source: "./media/characters/alice/front.svg",
  57132. extra: 950/900,
  57133. bottom: 36/986
  57134. }
  57135. },
  57136. side: {
  57137. height: math.unit(2.4, "meters"),
  57138. weight: math.unit(270, "kg"),
  57139. name: "Side",
  57140. image: {
  57141. source: "./media/characters/alice/side.svg",
  57142. extra: 921/876,
  57143. bottom: 19/940
  57144. }
  57145. },
  57146. dressed: {
  57147. height: math.unit(2.4, "meters"),
  57148. weight: math.unit(270, "kg"),
  57149. name: "Dressed",
  57150. image: {
  57151. source: "./media/characters/alice/dressed.svg",
  57152. extra: 905/850,
  57153. bottom: 81/986
  57154. }
  57155. },
  57156. fishnet: {
  57157. height: math.unit(2.4, "meters"),
  57158. weight: math.unit(270, "kg"),
  57159. name: "Fishnet",
  57160. image: {
  57161. source: "./media/characters/alice/fishnet.svg",
  57162. extra: 905/850,
  57163. bottom: 81/986
  57164. }
  57165. },
  57166. },
  57167. [
  57168. {
  57169. name: "Normal",
  57170. height: math.unit(2.4, "meters"),
  57171. default: true
  57172. },
  57173. ]
  57174. ))
  57175. characterMakers.push(() => makeCharacter(
  57176. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  57177. {
  57178. front: {
  57179. height: math.unit(175.25, "feet"),
  57180. name: "Front",
  57181. image: {
  57182. source: "./media/characters/fio/front.svg",
  57183. extra: 1883/1591,
  57184. bottom: 34/1917
  57185. }
  57186. },
  57187. },
  57188. [
  57189. {
  57190. name: "Normal",
  57191. height: math.unit(175.25, "cm"),
  57192. default: true
  57193. },
  57194. ]
  57195. ))
  57196. characterMakers.push(() => makeCharacter(
  57197. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  57198. {
  57199. side: {
  57200. height: math.unit(6, "meters"),
  57201. weight: math.unit(3400, "kg"),
  57202. preyCapacity: math.unit(1700, "liters"),
  57203. name: "Side",
  57204. image: {
  57205. source: "./media/characters/hass/side.svg",
  57206. extra: 1058/997,
  57207. bottom: 177/1235
  57208. }
  57209. },
  57210. feeding: {
  57211. height: math.unit(6*0.63, "meters"),
  57212. weight: math.unit(3400, "kg"),
  57213. preyCapacity: math.unit(1700, "liters"),
  57214. name: "Feeding",
  57215. image: {
  57216. source: "./media/characters/hass/feeding.svg",
  57217. extra: 689/579,
  57218. bottom: 146/835
  57219. }
  57220. },
  57221. guts: {
  57222. height: math.unit(6, "meters"),
  57223. weight: math.unit(3400, "kg"),
  57224. name: "Guts",
  57225. image: {
  57226. source: "./media/characters/hass/guts.svg",
  57227. extra: 1223/1198,
  57228. bottom: 182/1405
  57229. }
  57230. },
  57231. dickFront: {
  57232. height: math.unit(1.4, "meters"),
  57233. name: "Dick (Front)",
  57234. image: {
  57235. source: "./media/characters/hass/dick-front.svg"
  57236. }
  57237. },
  57238. dickSide: {
  57239. height: math.unit(1.3, "meters"),
  57240. name: "Dick (Side)",
  57241. image: {
  57242. source: "./media/characters/hass/dick-side.svg"
  57243. }
  57244. },
  57245. dickBack: {
  57246. height: math.unit(1.4, "meters"),
  57247. name: "Dick (Back)",
  57248. image: {
  57249. source: "./media/characters/hass/dick-back.svg"
  57250. }
  57251. },
  57252. },
  57253. [
  57254. {
  57255. name: "Normal",
  57256. height: math.unit(6, "meters"),
  57257. default: true
  57258. },
  57259. ]
  57260. ))
  57261. characterMakers.push(() => makeCharacter(
  57262. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  57263. {
  57264. front: {
  57265. height: math.unit(4, "feet"),
  57266. weight: math.unit(60, "lb"),
  57267. name: "Front",
  57268. image: {
  57269. source: "./media/characters/hickory-finnegan/front.svg",
  57270. extra: 444/411,
  57271. bottom: 10/454
  57272. }
  57273. },
  57274. side: {
  57275. height: math.unit(4, "feet"),
  57276. weight: math.unit(60, "lb"),
  57277. name: "Side",
  57278. image: {
  57279. source: "./media/characters/hickory-finnegan/side.svg",
  57280. extra: 444/411,
  57281. bottom: 10/454
  57282. }
  57283. },
  57284. back: {
  57285. height: math.unit(4, "feet"),
  57286. weight: math.unit(60, "lb"),
  57287. name: "Back",
  57288. image: {
  57289. source: "./media/characters/hickory-finnegan/back.svg",
  57290. extra: 444/411,
  57291. bottom: 10/454
  57292. }
  57293. },
  57294. },
  57295. [
  57296. {
  57297. name: "Normal",
  57298. height: math.unit(4, "feet"),
  57299. default: true
  57300. },
  57301. ]
  57302. ))
  57303. characterMakers.push(() => makeCharacter(
  57304. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  57305. {
  57306. snivy_front: {
  57307. height: math.unit(2, "feet"),
  57308. weight: math.unit(17.9, "lb"),
  57309. name: "Front",
  57310. image: {
  57311. source: "./media/characters/robin-phox/snivy-front.svg",
  57312. extra: 569/504,
  57313. bottom: 33/602
  57314. },
  57315. form: "snivy",
  57316. default: true
  57317. },
  57318. snivy_frontNsfw: {
  57319. height: math.unit(2, "feet"),
  57320. weight: math.unit(17.9, "lb"),
  57321. name: "Front (NSFW)",
  57322. image: {
  57323. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  57324. extra: 569/504,
  57325. bottom: 33/602
  57326. },
  57327. form: "snivy",
  57328. },
  57329. snivy_back: {
  57330. height: math.unit(2, "feet"),
  57331. weight: math.unit(17.9, "lb"),
  57332. name: "Back",
  57333. image: {
  57334. source: "./media/characters/robin-phox/snivy-back.svg",
  57335. extra: 577/508,
  57336. bottom: 21/598
  57337. },
  57338. form: "snivy",
  57339. },
  57340. snivy_foot: {
  57341. height: math.unit(0.68, "feet"),
  57342. name: "Foot",
  57343. image: {
  57344. source: "./media/characters/robin-phox/snivy-foot.svg"
  57345. },
  57346. form: "snivy",
  57347. },
  57348. snivy_sole: {
  57349. height: math.unit(0.68, "feet"),
  57350. name: "Sole",
  57351. image: {
  57352. source: "./media/characters/robin-phox/snivy-sole.svg"
  57353. },
  57354. form: "snivy",
  57355. },
  57356. yoshi_front: {
  57357. height: math.unit(6, "feet"),
  57358. weight: math.unit(150, "lb"),
  57359. name: "Front",
  57360. image: {
  57361. source: "./media/characters/robin-phox/yoshi-front.svg",
  57362. extra: 890/792,
  57363. bottom: 29/919
  57364. },
  57365. form: "yoshi",
  57366. default: true
  57367. },
  57368. yoshi_frontNsfw: {
  57369. height: math.unit(6, "feet"),
  57370. weight: math.unit(150, "lb"),
  57371. name: "Front (NSFW)",
  57372. image: {
  57373. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  57374. extra: 890/792,
  57375. bottom: 29/919
  57376. },
  57377. form: "yoshi",
  57378. },
  57379. yoshi_back: {
  57380. height: math.unit(6, "feet"),
  57381. weight: math.unit(150, "lb"),
  57382. name: "Back",
  57383. image: {
  57384. source: "./media/characters/robin-phox/yoshi-back.svg",
  57385. extra: 890/792,
  57386. bottom: 29/919
  57387. },
  57388. form: "yoshi",
  57389. },
  57390. yoshi_foot: {
  57391. height: math.unit(1.5, "feet"),
  57392. name: "Foot",
  57393. image: {
  57394. source: "./media/characters/robin-phox/yoshi-foot.svg"
  57395. },
  57396. form: "yoshi",
  57397. },
  57398. delphox_front: {
  57399. height: math.unit(4 + 11/12, "feet"),
  57400. weight: math.unit(86, "lb"),
  57401. name: "Front",
  57402. image: {
  57403. source: "./media/characters/robin-phox/delphox-front.svg",
  57404. extra: 1266/1069,
  57405. bottom: 32/1298
  57406. },
  57407. form: "delphox",
  57408. default: true
  57409. },
  57410. delphox_frontNsfw: {
  57411. height: math.unit(4 + 11/12, "feet"),
  57412. weight: math.unit(86, "lb"),
  57413. name: "Front (NSFW)",
  57414. image: {
  57415. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  57416. extra: 1266/1069,
  57417. bottom: 32/1298
  57418. },
  57419. form: "delphox",
  57420. },
  57421. delphox_back: {
  57422. height: math.unit(4 + 11/12, "feet"),
  57423. weight: math.unit(86, "lb"),
  57424. name: "Back",
  57425. image: {
  57426. source: "./media/characters/robin-phox/delphox-back.svg",
  57427. extra: 1269/1083,
  57428. bottom: 15/1284
  57429. },
  57430. form: "delphox",
  57431. },
  57432. mienshao_front: {
  57433. height: math.unit(4 + 7/12, "feet"),
  57434. weight: math.unit(78.3, "lb"),
  57435. name: "Front",
  57436. image: {
  57437. source: "./media/characters/robin-phox/mienshao-front.svg",
  57438. extra: 1052/970,
  57439. bottom: 108/1160
  57440. },
  57441. form: "mienshao",
  57442. default: true
  57443. },
  57444. mienshao_frontNsfw: {
  57445. height: math.unit(4 + 7/12, "feet"),
  57446. weight: math.unit(78.3, "lb"),
  57447. name: "Front (NSFW)",
  57448. image: {
  57449. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  57450. extra: 1052/970,
  57451. bottom: 108/1160
  57452. },
  57453. form: "mienshao",
  57454. },
  57455. mienshao_back: {
  57456. height: math.unit(4 + 7/12, "feet"),
  57457. weight: math.unit(78.3, "lb"),
  57458. name: "Back",
  57459. image: {
  57460. source: "./media/characters/robin-phox/mienshao-back.svg",
  57461. extra: 1102/982,
  57462. bottom: 32/1134
  57463. },
  57464. form: "mienshao",
  57465. },
  57466. inteleon_front: {
  57467. height: math.unit(6 + 3/12, "feet"),
  57468. weight: math.unit(99.6, "lb"),
  57469. name: "Front",
  57470. image: {
  57471. source: "./media/characters/robin-phox/inteleon-front.svg",
  57472. extra: 910/799,
  57473. bottom: 76/986
  57474. },
  57475. form: "inteleon",
  57476. default: true
  57477. },
  57478. inteleon_frontNsfw: {
  57479. height: math.unit(6 + 3/12, "feet"),
  57480. weight: math.unit(99.6, "lb"),
  57481. name: "Front (NSFW)",
  57482. image: {
  57483. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  57484. extra: 910/799,
  57485. bottom: 76/986
  57486. },
  57487. form: "inteleon",
  57488. },
  57489. inteleon_back: {
  57490. height: math.unit(6 + 3/12, "feet"),
  57491. weight: math.unit(99.6, "lb"),
  57492. name: "Back",
  57493. image: {
  57494. source: "./media/characters/robin-phox/inteleon-back.svg",
  57495. extra: 907/796,
  57496. bottom: 25/932
  57497. },
  57498. form: "inteleon",
  57499. },
  57500. reshiram_front: {
  57501. height: math.unit(10 + 6/12, "feet"),
  57502. weight: math.unit(727.5, "lb"),
  57503. name: "Front",
  57504. image: {
  57505. source: "./media/characters/robin-phox/reshiram-front.svg",
  57506. extra: 1198/940,
  57507. bottom: 123/1321
  57508. },
  57509. form: "reshiram",
  57510. },
  57511. reshiram_frontNsfw: {
  57512. height: math.unit(10 + 6/12, "feet"),
  57513. weight: math.unit(727.5, "lb"),
  57514. name: "Front-nsfw",
  57515. image: {
  57516. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  57517. extra: 1198/940,
  57518. bottom: 123/1321
  57519. },
  57520. form: "reshiram",
  57521. },
  57522. reshiram_back: {
  57523. height: math.unit(10 + 6/12, "feet"),
  57524. weight: math.unit(727.5, "lb"),
  57525. name: "Back",
  57526. image: {
  57527. source: "./media/characters/robin-phox/reshiram-back.svg",
  57528. extra: 1024/904,
  57529. bottom: 85/1109
  57530. },
  57531. form: "reshiram",
  57532. },
  57533. samurott_front: {
  57534. height: math.unit(8, "feet"),
  57535. weight: math.unit(208.6, "lb"),
  57536. name: "Front",
  57537. image: {
  57538. source: "./media/characters/robin-phox/samurott-front.svg",
  57539. extra: 1048/984,
  57540. bottom: 100/1148
  57541. },
  57542. form: "samurott",
  57543. },
  57544. samurott_frontNsfw: {
  57545. height: math.unit(8, "feet"),
  57546. weight: math.unit(208.6, "lb"),
  57547. name: "Front-nsfw",
  57548. image: {
  57549. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  57550. extra: 1048/984,
  57551. bottom: 100/1148
  57552. },
  57553. form: "samurott",
  57554. },
  57555. samurott_back: {
  57556. height: math.unit(8, "feet"),
  57557. weight: math.unit(208.6, "lb"),
  57558. name: "Back",
  57559. image: {
  57560. source: "./media/characters/robin-phox/samurott-back.svg",
  57561. extra: 1110/1042,
  57562. bottom: 12/1122
  57563. },
  57564. form: "samurott",
  57565. },
  57566. samurott_feral: {
  57567. height: math.unit(4 + 11/12, "feet"),
  57568. weight: math.unit(208.6, "lb"),
  57569. name: "Feral",
  57570. image: {
  57571. source: "./media/characters/robin-phox/samurott-feral.svg",
  57572. extra: 766/681,
  57573. bottom: 108/874
  57574. },
  57575. form: "samurott",
  57576. },
  57577. },
  57578. [
  57579. {
  57580. name: "Normal",
  57581. height: math.unit(2, "feet"),
  57582. default: true,
  57583. form: "snivy"
  57584. },
  57585. {
  57586. name: "Normal",
  57587. height: math.unit(6, "feet"),
  57588. default: true,
  57589. form: "yoshi"
  57590. },
  57591. {
  57592. name: "Normal",
  57593. height: math.unit(4 + 11/12, "feet"),
  57594. default: true,
  57595. form: "delphox"
  57596. },
  57597. {
  57598. name: "Normal",
  57599. height: math.unit(4 + 7/12, "feet"),
  57600. default: true,
  57601. form: "mienshao"
  57602. },
  57603. {
  57604. name: "Normal",
  57605. height: math.unit(6 + 3/12, "feet"),
  57606. default: true,
  57607. form: "inteleon"
  57608. },
  57609. {
  57610. name: "Normal",
  57611. height: math.unit(10 + 6/12, "feet"),
  57612. default: true,
  57613. form: "reshiram"
  57614. },
  57615. {
  57616. name: "Normal",
  57617. height: math.unit(8, "feet"),
  57618. default: true,
  57619. form: "samurott"
  57620. },
  57621. {
  57622. name: "Macro",
  57623. height: math.unit(500, "feet"),
  57624. allForms: true
  57625. },
  57626. {
  57627. name: "Mega Macro",
  57628. height: math.unit(10, "earths"),
  57629. allForms: true
  57630. },
  57631. {
  57632. name: "Giga Macro",
  57633. height: math.unit(1, "galaxy"),
  57634. allForms: true
  57635. },
  57636. {
  57637. name: "Godly Macro",
  57638. height: math.unit(1e10, "multiverses"),
  57639. allForms: true
  57640. },
  57641. ],
  57642. {
  57643. "snivy": {
  57644. name: "Snivy",
  57645. default: true
  57646. },
  57647. "yoshi": {
  57648. name: "Yoshi",
  57649. },
  57650. "delphox": {
  57651. name: "Delphox",
  57652. },
  57653. "mienshao": {
  57654. name: "Mienshao",
  57655. },
  57656. "inteleon": {
  57657. name: "Inteleon",
  57658. },
  57659. "reshiram": {
  57660. name: "Reshiram",
  57661. },
  57662. "samurott": {
  57663. name: "Samurott",
  57664. },
  57665. }
  57666. ))
  57667. characterMakers.push(() => makeCharacter(
  57668. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  57669. {
  57670. front: {
  57671. height: math.unit(4, "feet"),
  57672. name: "Front",
  57673. image: {
  57674. source: "./media/characters/ash-leung/front.svg",
  57675. extra: 1916/1792,
  57676. bottom: 50/1966
  57677. }
  57678. },
  57679. },
  57680. [
  57681. {
  57682. name: "Atomic",
  57683. height: math.unit(1, "angstrom")
  57684. },
  57685. {
  57686. name: "Microscopic",
  57687. height: math.unit(4000, "angstroms")
  57688. },
  57689. {
  57690. name: "Speck",
  57691. height: math.unit(1, "mm")
  57692. },
  57693. {
  57694. name: "Small",
  57695. height: math.unit(1, "inch")
  57696. },
  57697. {
  57698. name: "Normal",
  57699. height: math.unit(4, "feet"),
  57700. default: true
  57701. },
  57702. ]
  57703. ))
  57704. characterMakers.push(() => makeCharacter(
  57705. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  57706. {
  57707. frontDressed: {
  57708. height: math.unit(2.08, "meters"),
  57709. weight: math.unit(175, "lb"),
  57710. name: "Front (Dressed)",
  57711. image: {
  57712. source: "./media/characters/carie/front-dressed.svg",
  57713. extra: 456/417,
  57714. bottom: 7/463
  57715. }
  57716. },
  57717. backDressed: {
  57718. height: math.unit(2.08, "meters"),
  57719. weight: math.unit(175, "lb"),
  57720. name: "Back (Dressed)",
  57721. image: {
  57722. source: "./media/characters/carie/back-dressed.svg",
  57723. extra: 455/414,
  57724. bottom: 11/466
  57725. }
  57726. },
  57727. front: {
  57728. height: math.unit(2, "meters"),
  57729. weight: math.unit(175, "lb"),
  57730. name: "Front",
  57731. image: {
  57732. source: "./media/characters/carie/front.svg",
  57733. extra: 438/399,
  57734. bottom: 12/450
  57735. }
  57736. },
  57737. back: {
  57738. height: math.unit(2, "meters"),
  57739. weight: math.unit(175, "lb"),
  57740. name: "Back",
  57741. image: {
  57742. source: "./media/characters/carie/back.svg",
  57743. extra: 438/397,
  57744. bottom: 7/445
  57745. }
  57746. },
  57747. },
  57748. [
  57749. {
  57750. name: "Normal",
  57751. height: math.unit(2.08, "meters"),
  57752. default: true
  57753. },
  57754. {
  57755. name: "Macro",
  57756. height: math.unit(2.08e3, "meters")
  57757. },
  57758. {
  57759. name: "Mega Macro",
  57760. height: math.unit(2.08e6, "meters")
  57761. },
  57762. {
  57763. name: "Giga Macro",
  57764. height: math.unit(2.08e9, "meters")
  57765. },
  57766. {
  57767. name: "Tera Macro",
  57768. height: math.unit(2.08e12, "meters")
  57769. },
  57770. {
  57771. name: "Peta Macro",
  57772. height: math.unit(2.08e15, "meters")
  57773. },
  57774. {
  57775. name: "Exa Macro",
  57776. height: math.unit(2.08e18, "meters")
  57777. },
  57778. {
  57779. name: "Zetta Macro",
  57780. height: math.unit(2.08e21, "meters")
  57781. },
  57782. {
  57783. name: "Yotta Macro",
  57784. height: math.unit(2.08e24, "meters")
  57785. },
  57786. ]
  57787. ))
  57788. characterMakers.push(() => makeCharacter(
  57789. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  57790. {
  57791. front: {
  57792. height: math.unit(5 + 2/12, "feet"),
  57793. weight: math.unit(120, "lb"),
  57794. name: "Front",
  57795. image: {
  57796. source: "./media/characters/sai-bree/front.svg",
  57797. extra: 1843/1702,
  57798. bottom: 91/1934
  57799. }
  57800. },
  57801. back: {
  57802. height: math.unit(5 + 2/12, "feet"),
  57803. weight: math.unit(120, "lb"),
  57804. name: "Back",
  57805. image: {
  57806. source: "./media/characters/sai-bree/back.svg",
  57807. extra: 1809/1637,
  57808. bottom: 56/1865
  57809. }
  57810. },
  57811. },
  57812. [
  57813. {
  57814. name: "Normal",
  57815. height: math.unit(5 + 2/12, "feet"),
  57816. default: true
  57817. },
  57818. {
  57819. name: "Macro",
  57820. height: math.unit(500, "feet")
  57821. },
  57822. ]
  57823. ))
  57824. characterMakers.push(() => makeCharacter(
  57825. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  57826. {
  57827. side: {
  57828. height: math.unit(0.77, "meters"),
  57829. weight: math.unit(120, "lb"),
  57830. name: "Side",
  57831. image: {
  57832. source: "./media/characters/davwyn/side.svg",
  57833. extra: 1557/1225,
  57834. bottom: 131/1688
  57835. }
  57836. },
  57837. front: {
  57838. height: math.unit(0.835410, "meters"),
  57839. weight: math.unit(120, "lb"),
  57840. name: "Front",
  57841. image: {
  57842. source: "./media/characters/davwyn/front.svg",
  57843. extra: 870/843,
  57844. bottom: 175/1045
  57845. }
  57846. },
  57847. },
  57848. [
  57849. {
  57850. name: "Minidrake",
  57851. height: math.unit(0.77/4, "meters")
  57852. },
  57853. {
  57854. name: "Normal",
  57855. height: math.unit(0.77, "meters"),
  57856. default: true
  57857. },
  57858. ]
  57859. ))
  57860. characterMakers.push(() => makeCharacter(
  57861. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  57862. {
  57863. front: {
  57864. height: math.unit(10 + 3/12, "feet"),
  57865. weight: math.unit(2857, "lb"),
  57866. name: "Front",
  57867. image: {
  57868. source: "./media/characters/balans/front.svg",
  57869. extra: 427/402,
  57870. bottom: 26/453
  57871. }
  57872. },
  57873. side: {
  57874. height: math.unit(10 + 3/12, "feet"),
  57875. weight: math.unit(2857, "lb"),
  57876. name: "Side",
  57877. image: {
  57878. source: "./media/characters/balans/side.svg",
  57879. extra: 397/371,
  57880. bottom: 17/414
  57881. }
  57882. },
  57883. back: {
  57884. height: math.unit(10 + 3/12, "feet"),
  57885. weight: math.unit(2857, "lb"),
  57886. name: "Back",
  57887. image: {
  57888. source: "./media/characters/balans/back.svg",
  57889. extra: 408/381,
  57890. bottom: 14/422
  57891. }
  57892. },
  57893. hand: {
  57894. height: math.unit(1.15, "feet"),
  57895. name: "Hand",
  57896. image: {
  57897. source: "./media/characters/balans/hand.svg"
  57898. }
  57899. },
  57900. footRest: {
  57901. height: math.unit(3.1, "feet"),
  57902. name: "Foot (Rest)",
  57903. image: {
  57904. source: "./media/characters/balans/foot-rest.svg"
  57905. }
  57906. },
  57907. footActive: {
  57908. height: math.unit(3.5, "feet"),
  57909. name: "Foot (Active)",
  57910. image: {
  57911. source: "./media/characters/balans/foot-active.svg"
  57912. }
  57913. },
  57914. },
  57915. [
  57916. {
  57917. name: "Normal",
  57918. height: math.unit(10 + 3/12, "feet"),
  57919. default: true
  57920. },
  57921. ]
  57922. ))
  57923. characterMakers.push(() => makeCharacter(
  57924. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  57925. {
  57926. side: {
  57927. height: math.unit(9, "meters"),
  57928. weight: math.unit(114, "tonnes"),
  57929. name: "Side",
  57930. image: {
  57931. source: "./media/characters/eldkveikir/side.svg",
  57932. extra: 1927/338,
  57933. bottom: 42/1969
  57934. }
  57935. },
  57936. sitting: {
  57937. height: math.unit(13.4, "meters"),
  57938. weight: math.unit(114, "tonnes"),
  57939. name: "Sitting",
  57940. image: {
  57941. source: "./media/characters/eldkveikir/sitting.svg",
  57942. extra: 1108/963,
  57943. bottom: 610/1718
  57944. }
  57945. },
  57946. maw: {
  57947. height: math.unit(8.36, "meters"),
  57948. name: "Maw",
  57949. image: {
  57950. source: "./media/characters/eldkveikir/maw.svg"
  57951. }
  57952. },
  57953. hand: {
  57954. height: math.unit(4.84, "meters"),
  57955. name: "Hand",
  57956. image: {
  57957. source: "./media/characters/eldkveikir/hand.svg"
  57958. }
  57959. },
  57960. foot: {
  57961. height: math.unit(6.9, "meters"),
  57962. name: "Foot",
  57963. image: {
  57964. source: "./media/characters/eldkveikir/foot.svg"
  57965. }
  57966. },
  57967. genitals: {
  57968. height: math.unit(9.6, "meters"),
  57969. name: "Genitals",
  57970. image: {
  57971. source: "./media/characters/eldkveikir/genitals.svg"
  57972. }
  57973. },
  57974. },
  57975. [
  57976. {
  57977. name: "Normal",
  57978. height: math.unit(9, "meters"),
  57979. default: true
  57980. },
  57981. ]
  57982. ))
  57983. characterMakers.push(() => makeCharacter(
  57984. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  57985. {
  57986. front: {
  57987. height: math.unit(14, "feet"),
  57988. weight: math.unit(4100, "lb"),
  57989. name: "Front",
  57990. image: {
  57991. source: "./media/characters/arrow/front.svg",
  57992. extra: 330/318,
  57993. bottom: 56/386
  57994. }
  57995. },
  57996. },
  57997. [
  57998. {
  57999. name: "Normal",
  58000. height: math.unit(14, "feet"),
  58001. default: true
  58002. },
  58003. {
  58004. name: "Minimacro",
  58005. height: math.unit(63, "feet")
  58006. },
  58007. {
  58008. name: "Macro",
  58009. height: math.unit(630, "feet")
  58010. },
  58011. {
  58012. name: "Megamacro",
  58013. height: math.unit(12600, "feet")
  58014. },
  58015. {
  58016. name: "Gigamacro",
  58017. height: math.unit(18000, "miles")
  58018. },
  58019. ]
  58020. ))
  58021. characterMakers.push(() => makeCharacter(
  58022. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  58023. {
  58024. front: {
  58025. height: math.unit(10, "feet"),
  58026. weight: math.unit(2.4, "tons"),
  58027. name: "Front",
  58028. image: {
  58029. source: "./media/characters/3yk-k0-unit/front.svg",
  58030. extra: 573/561,
  58031. bottom: 33/606
  58032. }
  58033. },
  58034. back: {
  58035. height: math.unit(10, "feet"),
  58036. weight: math.unit(2.4, "tons"),
  58037. name: "Back",
  58038. image: {
  58039. source: "./media/characters/3yk-k0-unit/back.svg",
  58040. extra: 614/573,
  58041. bottom: 32/646
  58042. }
  58043. },
  58044. maw: {
  58045. height: math.unit(2.15, "feet"),
  58046. name: "Maw",
  58047. image: {
  58048. source: "./media/characters/3yk-k0-unit/maw.svg"
  58049. }
  58050. },
  58051. },
  58052. [
  58053. {
  58054. name: "Normal",
  58055. height: math.unit(10, "feet"),
  58056. default: true
  58057. },
  58058. ]
  58059. ))
  58060. characterMakers.push(() => makeCharacter(
  58061. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  58062. {
  58063. front: {
  58064. height: math.unit(8 + 8/12, "feet"),
  58065. name: "Front",
  58066. image: {
  58067. source: "./media/characters/nemo/front.svg",
  58068. extra: 1308/1217,
  58069. bottom: 57/1365
  58070. }
  58071. },
  58072. },
  58073. [
  58074. {
  58075. name: "Normal",
  58076. height: math.unit(8 + 8/12, "feet"),
  58077. default: true
  58078. },
  58079. ]
  58080. ))
  58081. characterMakers.push(() => makeCharacter(
  58082. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  58083. {
  58084. front: {
  58085. height: math.unit(8, "feet"),
  58086. weight: math.unit(760, "lb"),
  58087. name: "Front",
  58088. image: {
  58089. source: "./media/characters/rexx/front.svg",
  58090. extra: 786/750,
  58091. bottom: 17/803
  58092. },
  58093. extraAttributes: {
  58094. "pawLength": {
  58095. name: "Paw Length",
  58096. power: 1,
  58097. type: "length",
  58098. base: math.unit(27, "inches")
  58099. },
  58100. }
  58101. },
  58102. },
  58103. [
  58104. {
  58105. name: "Micro",
  58106. height: math.unit(2, "inches")
  58107. },
  58108. {
  58109. name: "Normal",
  58110. height: math.unit(8, "feet"),
  58111. default: true
  58112. },
  58113. {
  58114. name: "Macro",
  58115. height: math.unit(150, "feet")
  58116. },
  58117. ]
  58118. ))
  58119. characterMakers.push(() => makeCharacter(
  58120. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  58121. {
  58122. front: {
  58123. height: math.unit(18, "feet"),
  58124. weight: math.unit(1975, "lb"),
  58125. name: "Front",
  58126. image: {
  58127. source: "./media/characters/draco/front.svg",
  58128. extra: 1325/1241,
  58129. bottom: 83/1408
  58130. }
  58131. },
  58132. back: {
  58133. height: math.unit(18, "feet"),
  58134. weight: math.unit(1975, "lb"),
  58135. name: "Back",
  58136. image: {
  58137. source: "./media/characters/draco/back.svg",
  58138. extra: 1332/1250,
  58139. bottom: 43/1375
  58140. }
  58141. },
  58142. dick: {
  58143. height: math.unit(7.5, "feet"),
  58144. name: "Dick",
  58145. image: {
  58146. source: "./media/characters/draco/dick.svg"
  58147. }
  58148. },
  58149. },
  58150. [
  58151. {
  58152. name: "Normal",
  58153. height: math.unit(18, "feet"),
  58154. default: true
  58155. },
  58156. ]
  58157. ))
  58158. characterMakers.push(() => makeCharacter(
  58159. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  58160. {
  58161. front: {
  58162. height: math.unit(3.2, "meters"),
  58163. name: "Front",
  58164. image: {
  58165. source: "./media/characters/harriett/front.svg",
  58166. extra: 1966/1915,
  58167. bottom: 9/1975
  58168. }
  58169. },
  58170. },
  58171. [
  58172. {
  58173. name: "Normal",
  58174. height: math.unit(3.2, "meters"),
  58175. default: true
  58176. },
  58177. ]
  58178. ))
  58179. characterMakers.push(() => makeCharacter(
  58180. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  58181. {
  58182. sitting: {
  58183. height: math.unit(0.8, "meter"),
  58184. name: "Sitting",
  58185. image: {
  58186. source: "./media/characters/serpentus/sitting.svg",
  58187. extra: 293/290,
  58188. bottom: 140/433
  58189. }
  58190. },
  58191. },
  58192. [
  58193. {
  58194. name: "Normal",
  58195. height: math.unit(0.8, "meter"),
  58196. default: true
  58197. },
  58198. ]
  58199. ))
  58200. characterMakers.push(() => makeCharacter(
  58201. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  58202. {
  58203. front: {
  58204. height: math.unit(5.7174385736, "feet"),
  58205. name: "Front",
  58206. image: {
  58207. source: "./media/characters/nova-polecat/front.svg",
  58208. extra: 1317/1216,
  58209. bottom: 92/1409
  58210. }
  58211. },
  58212. },
  58213. [
  58214. {
  58215. name: "Normal",
  58216. height: math.unit(5.7174385736, "feet"),
  58217. default: true
  58218. },
  58219. ]
  58220. ))
  58221. characterMakers.push(() => makeCharacter(
  58222. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  58223. {
  58224. front: {
  58225. height: math.unit(5 + 4/12, "feet"),
  58226. weight: math.unit(250, "lb"),
  58227. name: "Front",
  58228. image: {
  58229. source: "./media/characters/mook/front.svg",
  58230. extra: 1088/1037,
  58231. bottom: 132/1220
  58232. }
  58233. },
  58234. back: {
  58235. height: math.unit(5 + 1/12, "feet"),
  58236. weight: math.unit(250, "lb"),
  58237. name: "Back",
  58238. image: {
  58239. source: "./media/characters/mook/back.svg",
  58240. extra: 1184/905,
  58241. bottom: 96/1280
  58242. }
  58243. },
  58244. head: {
  58245. height: math.unit(1.85, "feet"),
  58246. name: "Head",
  58247. image: {
  58248. source: "./media/characters/mook/head.svg"
  58249. }
  58250. },
  58251. hand: {
  58252. height: math.unit(1.9, "feet"),
  58253. name: "Hand",
  58254. image: {
  58255. source: "./media/characters/mook/hand.svg"
  58256. }
  58257. },
  58258. palm: {
  58259. height: math.unit(1.84, "feet"),
  58260. name: "Palm",
  58261. image: {
  58262. source: "./media/characters/mook/palm.svg"
  58263. }
  58264. },
  58265. foot: {
  58266. height: math.unit(1.44, "feet"),
  58267. name: "Foot",
  58268. image: {
  58269. source: "./media/characters/mook/foot.svg"
  58270. }
  58271. },
  58272. sole: {
  58273. height: math.unit(1.44, "feet"),
  58274. name: "Sole",
  58275. image: {
  58276. source: "./media/characters/mook/sole.svg"
  58277. }
  58278. },
  58279. },
  58280. [
  58281. {
  58282. name: "Normal",
  58283. height: math.unit(5 + 4/12, "feet"),
  58284. default: true
  58285. },
  58286. {
  58287. name: "Big",
  58288. height: math.unit(12, "feet")
  58289. },
  58290. ]
  58291. ))
  58292. characterMakers.push(() => makeCharacter(
  58293. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  58294. {
  58295. front: {
  58296. height: math.unit(6 + 10/12, "feet"),
  58297. weight: math.unit(233, "lb"),
  58298. name: "Front",
  58299. image: {
  58300. source: "./media/characters/kayla/front.svg",
  58301. extra: 1850/1775,
  58302. bottom: 65/1915
  58303. }
  58304. },
  58305. },
  58306. [
  58307. {
  58308. name: "Normal",
  58309. height: math.unit(6 + 10/12, "feet"),
  58310. default: true
  58311. },
  58312. {
  58313. name: "Amazonian",
  58314. height: math.unit(12 + 5/12, "feet")
  58315. },
  58316. {
  58317. name: "Mini Giantess",
  58318. height: math.unit(26, "feet")
  58319. },
  58320. {
  58321. name: "Giantess",
  58322. height: math.unit(200, "feet")
  58323. },
  58324. {
  58325. name: "Mega Giantess",
  58326. height: math.unit(2500, "feet")
  58327. },
  58328. {
  58329. name: "City Sized",
  58330. height: math.unit(50, "miles")
  58331. },
  58332. {
  58333. name: "Country Sized",
  58334. height: math.unit(500, "miles")
  58335. },
  58336. {
  58337. name: "Continent Sized",
  58338. height: math.unit(2500, "miles")
  58339. },
  58340. {
  58341. name: "Planet Sized",
  58342. height: math.unit(10000, "miles")
  58343. },
  58344. {
  58345. name: "Star Sized",
  58346. height: math.unit(5e6, "miles")
  58347. },
  58348. {
  58349. name: "Solar System Sized",
  58350. height: math.unit(125, "AU")
  58351. },
  58352. {
  58353. name: "Galaxy Sized",
  58354. height: math.unit(300e3, "lightyears")
  58355. },
  58356. {
  58357. name: "Universe Sized",
  58358. height: math.unit(200e9, "lightyears")
  58359. },
  58360. {
  58361. name: "Multiverse Sized",
  58362. height: math.unit(20, "exauniverses")
  58363. },
  58364. {
  58365. name: "Mother of Existence",
  58366. height: math.unit(1e6, "yottauniverses")
  58367. },
  58368. ]
  58369. ))
  58370. characterMakers.push(() => makeCharacter(
  58371. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  58372. {
  58373. side: {
  58374. height: math.unit(9.5, "meters"),
  58375. name: "Side",
  58376. image: {
  58377. source: "./media/characters/kulve-ragnarok/side.svg",
  58378. extra: 364/326,
  58379. bottom: 50/414
  58380. }
  58381. },
  58382. },
  58383. [
  58384. {
  58385. name: "Normal",
  58386. height: math.unit(9.5, "meters"),
  58387. default: true
  58388. },
  58389. ]
  58390. ))
  58391. characterMakers.push(() => makeCharacter(
  58392. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  58393. {
  58394. front: {
  58395. height: math.unit(8 + 9/12, "feet"),
  58396. name: "Front",
  58397. image: {
  58398. source: "./media/characters/atlas-goat/front.svg",
  58399. extra: 1462/1323,
  58400. bottom: 12/1474
  58401. }
  58402. },
  58403. },
  58404. [
  58405. {
  58406. name: "Normal",
  58407. height: math.unit(8 + 9/12, "feet"),
  58408. default: true
  58409. },
  58410. {
  58411. name: "Skyline",
  58412. height: math.unit(845, "feet")
  58413. },
  58414. {
  58415. name: "Orbital",
  58416. height: math.unit(93000, "miles")
  58417. },
  58418. {
  58419. name: "Constellation",
  58420. height: math.unit(27000, "lightyears")
  58421. },
  58422. ]
  58423. ))
  58424. characterMakers.push(() => makeCharacter(
  58425. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  58426. {
  58427. side: {
  58428. height: math.unit(1.8, "meters"),
  58429. weight: math.unit(120, "kg"),
  58430. name: "Side",
  58431. image: {
  58432. source: "./media/characters/xie-ling/side.svg",
  58433. extra: 646/574,
  58434. bottom: 44/690
  58435. }
  58436. },
  58437. },
  58438. [
  58439. {
  58440. name: "Tiny",
  58441. height: math.unit(1.80, "meters")
  58442. },
  58443. {
  58444. name: "Small",
  58445. height: math.unit(6, "meters")
  58446. },
  58447. {
  58448. name: "Medium",
  58449. height: math.unit(15, "meters")
  58450. },
  58451. {
  58452. name: "Normal",
  58453. height: math.unit(30, "meters"),
  58454. default: true
  58455. },
  58456. {
  58457. name: "Above Normal",
  58458. height: math.unit(60, "meters")
  58459. },
  58460. {
  58461. name: "Big",
  58462. height: math.unit(220, "meters")
  58463. },
  58464. {
  58465. name: "Giant",
  58466. height: math.unit(2.2, "km")
  58467. },
  58468. {
  58469. name: "Macro",
  58470. height: math.unit(25, "km")
  58471. },
  58472. {
  58473. name: "Mega Macro",
  58474. height: math.unit(350, "km")
  58475. },
  58476. {
  58477. name: "Mega Macro+",
  58478. height: math.unit(5000, "km")
  58479. },
  58480. {
  58481. name: "Goddess",
  58482. height: math.unit(3, "multiverses")
  58483. },
  58484. ]
  58485. ))
  58486. characterMakers.push(() => makeCharacter(
  58487. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  58488. {
  58489. frontSfw: {
  58490. height: math.unit(5 + 11/12, "feet"),
  58491. weight: math.unit(210, "lb"),
  58492. name: "Front",
  58493. image: {
  58494. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  58495. extra: 1928/1821,
  58496. bottom: 45/1973
  58497. }
  58498. },
  58499. backSfw: {
  58500. height: math.unit(5 + 11/12, "feet"),
  58501. weight: math.unit(210, "lb"),
  58502. name: "Back",
  58503. image: {
  58504. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  58505. extra: 1920/1813,
  58506. bottom: 34/1954
  58507. }
  58508. },
  58509. frontNsfw: {
  58510. height: math.unit(5 + 11/12, "feet"),
  58511. weight: math.unit(210, "lb"),
  58512. name: "Front (NSFW)",
  58513. image: {
  58514. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  58515. extra: 1928/1821,
  58516. bottom: 45/1973
  58517. }
  58518. },
  58519. backNsfw: {
  58520. height: math.unit(5 + 11/12, "feet"),
  58521. weight: math.unit(210, "lb"),
  58522. name: "Back (NSFW)",
  58523. image: {
  58524. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  58525. extra: 1920/1813,
  58526. bottom: 34/1954
  58527. }
  58528. },
  58529. },
  58530. [
  58531. {
  58532. name: "Normal",
  58533. height: math.unit(5 + 11/12, "feet"),
  58534. default: true
  58535. },
  58536. {
  58537. name: "Goddess",
  58538. height: math.unit(20 + 3/12, "feet")
  58539. },
  58540. {
  58541. name: "Breaker of Man",
  58542. height: math.unit(329 + 9/12, "feet")
  58543. },
  58544. {
  58545. name: "Solar Justice",
  58546. height: math.unit(0.6, "solarradii")
  58547. },
  58548. {
  58549. name: "She Who Judges",
  58550. height: math.unit(1, "universe")
  58551. },
  58552. ]
  58553. ))
  58554. characterMakers.push(() => makeCharacter(
  58555. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  58556. {
  58557. casual_front: {
  58558. height: math.unit(6 + 1/12, "feet"),
  58559. weight: math.unit(190, "lb"),
  58560. preyCapacity: math.unit(1, "people"),
  58561. name: "Front",
  58562. image: {
  58563. source: "./media/characters/managarmr/casual-front.svg",
  58564. extra: 411/381,
  58565. bottom: 15/426
  58566. },
  58567. extraAttributes: {
  58568. "pawSize": {
  58569. name: "Paw Size",
  58570. power: 1,
  58571. type: "length",
  58572. base: math.unit(0.2, "meters")
  58573. },
  58574. },
  58575. form: "casual",
  58576. },
  58577. casual_back: {
  58578. height: math.unit(6 + 1/12, "feet"),
  58579. weight: math.unit(190, "lb"),
  58580. preyCapacity: math.unit(1, "people"),
  58581. name: "Back",
  58582. image: {
  58583. source: "./media/characters/managarmr/casual-back.svg",
  58584. extra: 413/383,
  58585. bottom: 13/426
  58586. },
  58587. extraAttributes: {
  58588. "pawSize": {
  58589. name: "Paw Size",
  58590. power: 1,
  58591. type: "length",
  58592. base: math.unit(0.2, "meters")
  58593. },
  58594. },
  58595. form: "casual",
  58596. },
  58597. base_front: {
  58598. height: math.unit(7, "feet"),
  58599. weight: math.unit(210, "lb"),
  58600. preyCapacity: math.unit(2, "people"),
  58601. name: "Front",
  58602. image: {
  58603. source: "./media/characters/managarmr/base-front.svg",
  58604. extra: 580/485,
  58605. bottom: 32/612
  58606. },
  58607. extraAttributes: {
  58608. "wingspan": {
  58609. name: "Wingspan",
  58610. power: 1,
  58611. type: "length",
  58612. base: math.unit(4, "meters")
  58613. },
  58614. "pawSize": {
  58615. name: "Paw Size",
  58616. power: 1,
  58617. type: "length",
  58618. base: math.unit(0.2, "meters")
  58619. },
  58620. },
  58621. form: "base",
  58622. },
  58623. "true-divine_front": {
  58624. height: math.unit(40, "feet"),
  58625. weight: math.unit(39000, "lb"),
  58626. preyCapacity: math.unit(375, "people"),
  58627. name: "Front",
  58628. image: {
  58629. source: "./media/characters/managarmr/true-divine-front.svg",
  58630. extra: 725/573,
  58631. bottom: 120/845
  58632. },
  58633. extraAttributes: {
  58634. "wingspan": {
  58635. name: "Wingspan",
  58636. power: 1,
  58637. type: "length",
  58638. base: math.unit(20, "meters")
  58639. },
  58640. "pawSize": {
  58641. name: "Paw Size",
  58642. power: 1,
  58643. type: "length",
  58644. base: math.unit(1.5, "meters")
  58645. },
  58646. },
  58647. form: "true-divine",
  58648. },
  58649. },
  58650. [
  58651. {
  58652. name: "Normal",
  58653. height: math.unit(6 + 1/12, "feet"),
  58654. form: "casual",
  58655. default: true
  58656. },
  58657. {
  58658. name: "Normal",
  58659. height: math.unit(7, "feet"),
  58660. form: "base",
  58661. default: true
  58662. },
  58663. ],
  58664. {
  58665. "casual": {
  58666. name: "Casual",
  58667. default: true
  58668. },
  58669. "base": {
  58670. name: "Base",
  58671. },
  58672. "true-divine": {
  58673. name: "True Divine",
  58674. },
  58675. }
  58676. ))
  58677. characterMakers.push(() => makeCharacter(
  58678. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  58679. {
  58680. front: {
  58681. height: math.unit(1.8, "meters"),
  58682. weight: math.unit(110, "kg"),
  58683. name: "Front",
  58684. image: {
  58685. source: "./media/characters/mystra/front.svg",
  58686. extra: 529/442,
  58687. bottom: 31/560
  58688. }
  58689. },
  58690. frontLewd: {
  58691. height: math.unit(1.8, "meters"),
  58692. weight: math.unit(110, "kg"),
  58693. name: "Front (Lewd)",
  58694. image: {
  58695. source: "./media/characters/mystra/front-lewd.svg",
  58696. extra: 529/442,
  58697. bottom: 31/560
  58698. }
  58699. },
  58700. head: {
  58701. height: math.unit(1.63, "feet"),
  58702. name: "Head",
  58703. image: {
  58704. source: "./media/characters/mystra/head.svg"
  58705. }
  58706. },
  58707. paw: {
  58708. height: math.unit(1.9, "feet"),
  58709. name: "Paw",
  58710. image: {
  58711. source: "./media/characters/mystra/paw.svg"
  58712. }
  58713. },
  58714. },
  58715. [
  58716. {
  58717. name: "Incognito",
  58718. height: math.unit(2.3, "meters")
  58719. },
  58720. {
  58721. name: "Small Macro",
  58722. height: math.unit(300, "meters")
  58723. },
  58724. {
  58725. name: "Small Mega",
  58726. height: math.unit(2, "km")
  58727. },
  58728. {
  58729. name: "Mega",
  58730. height: math.unit(30, "km")
  58731. },
  58732. {
  58733. name: "Small Giga",
  58734. height: math.unit(100, "km")
  58735. },
  58736. {
  58737. name: "Giga",
  58738. height: math.unit(1000, "km"),
  58739. default: true
  58740. },
  58741. {
  58742. name: "Continental",
  58743. height: math.unit(5000, "km")
  58744. },
  58745. {
  58746. name: "Terra",
  58747. height: math.unit(20000, "km")
  58748. },
  58749. {
  58750. name: "Solar",
  58751. height: math.unit(2e6, "km")
  58752. },
  58753. {
  58754. name: "Galactic",
  58755. height: math.unit(528502, "lightyears")
  58756. },
  58757. {
  58758. name: "Universal",
  58759. height: math.unit(20, "universes")
  58760. },
  58761. ]
  58762. ))
  58763. characterMakers.push(() => makeCharacter(
  58764. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  58765. {
  58766. front: {
  58767. height: math.unit(2, "meters"),
  58768. weight: math.unit(140, "kg"),
  58769. name: "Front",
  58770. image: {
  58771. source: "./media/characters/caleb/front.svg",
  58772. extra: 873/817,
  58773. bottom: 47/920
  58774. }
  58775. },
  58776. back: {
  58777. height: math.unit(2, "meters"),
  58778. weight: math.unit(140, "kg"),
  58779. name: "Back",
  58780. image: {
  58781. source: "./media/characters/caleb/back.svg",
  58782. extra: 877/828,
  58783. bottom: 24/901
  58784. }
  58785. },
  58786. snakeTail: {
  58787. height: math.unit(1.44, "feet"),
  58788. name: "Snake Tail",
  58789. image: {
  58790. source: "./media/characters/caleb/snake-tail.svg"
  58791. }
  58792. },
  58793. dick: {
  58794. height: math.unit(2.6, "feet"),
  58795. name: "Dick",
  58796. image: {
  58797. source: "./media/characters/caleb/dick.svg"
  58798. }
  58799. },
  58800. },
  58801. [
  58802. {
  58803. name: "Incognito",
  58804. height: math.unit(3, "meters")
  58805. },
  58806. {
  58807. name: "Home Size",
  58808. height: math.unit(200, "meters"),
  58809. default: true
  58810. },
  58811. {
  58812. name: "Macro",
  58813. height: math.unit(500, "meters")
  58814. },
  58815. {
  58816. name: "Big Macro",
  58817. height: math.unit(5, "km")
  58818. },
  58819. {
  58820. name: "Giga",
  58821. height: math.unit(250, "km")
  58822. },
  58823. {
  58824. name: "Giga+",
  58825. height: math.unit(5000, "km")
  58826. },
  58827. {
  58828. name: "Small Terra",
  58829. height: math.unit(35e3, "km")
  58830. },
  58831. {
  58832. name: "Terra",
  58833. height: math.unit(2e6, "km")
  58834. },
  58835. {
  58836. name: "Terra+",
  58837. height: math.unit(1.5e6, "km")
  58838. },
  58839. ]
  58840. ))
  58841. characterMakers.push(() => makeCharacter(
  58842. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  58843. {
  58844. front: {
  58845. height: math.unit(2, "meters"),
  58846. weight: math.unit(120, "kg"),
  58847. name: "Front",
  58848. image: {
  58849. source: "./media/characters/gilirian/front.svg",
  58850. extra: 805/737,
  58851. bottom: 13/818
  58852. }
  58853. },
  58854. side: {
  58855. height: math.unit(2, "meters"),
  58856. weight: math.unit(120, "kg"),
  58857. name: "Side",
  58858. image: {
  58859. source: "./media/characters/gilirian/side.svg",
  58860. extra: 810/746,
  58861. bottom: 6/816
  58862. }
  58863. },
  58864. back: {
  58865. height: math.unit(2, "meters"),
  58866. weight: math.unit(120, "kg"),
  58867. name: "Back",
  58868. image: {
  58869. source: "./media/characters/gilirian/back.svg",
  58870. extra: 815/745,
  58871. bottom: 15/830
  58872. }
  58873. },
  58874. frontNsfw: {
  58875. height: math.unit(2, "meters"),
  58876. weight: math.unit(120, "kg"),
  58877. name: "Front (NSFW)",
  58878. image: {
  58879. source: "./media/characters/gilirian/front-nsfw.svg",
  58880. extra: 805/737,
  58881. bottom: 13/818
  58882. }
  58883. },
  58884. sideNsfw: {
  58885. height: math.unit(2, "meters"),
  58886. weight: math.unit(120, "kg"),
  58887. name: "Side (NSFW)",
  58888. image: {
  58889. source: "./media/characters/gilirian/side-nsfw.svg",
  58890. extra: 810/746,
  58891. bottom: 6/816
  58892. }
  58893. },
  58894. },
  58895. [
  58896. {
  58897. name: "Incognito",
  58898. height: math.unit(2, "meters"),
  58899. default: true
  58900. },
  58901. {
  58902. name: "Macro",
  58903. height: math.unit(250, "meters")
  58904. },
  58905. {
  58906. name: "Big Macro",
  58907. height: math.unit(1500, "meters")
  58908. },
  58909. {
  58910. name: "Mega",
  58911. height: math.unit(40, "km")
  58912. },
  58913. {
  58914. name: "Giga",
  58915. height: math.unit(300, "km")
  58916. },
  58917. {
  58918. name: "Extra Giga",
  58919. height: math.unit(5000, "km")
  58920. },
  58921. {
  58922. name: "Small Terra",
  58923. height: math.unit(10e3, "km")
  58924. },
  58925. {
  58926. name: "Terra",
  58927. height: math.unit(3e5, "km")
  58928. },
  58929. {
  58930. name: "Galactic",
  58931. height: math.unit(369950, "lightyears")
  58932. },
  58933. ]
  58934. ))
  58935. characterMakers.push(() => makeCharacter(
  58936. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  58937. {
  58938. front: {
  58939. height: math.unit(2.5, "meters"),
  58940. weight: math.unit(230, "lb"),
  58941. name: "Front",
  58942. image: {
  58943. source: "./media/characters/tarken/front.svg",
  58944. extra: 764/720,
  58945. bottom: 49/813
  58946. }
  58947. },
  58948. back: {
  58949. height: math.unit(2.5, "meters"),
  58950. weight: math.unit(230, "lb"),
  58951. name: "Back",
  58952. image: {
  58953. source: "./media/characters/tarken/back.svg",
  58954. extra: 756/720,
  58955. bottom: 35/791
  58956. }
  58957. },
  58958. frontNsfw: {
  58959. height: math.unit(2.5, "meters"),
  58960. weight: math.unit(230, "lb"),
  58961. name: "Front (NSFW)",
  58962. image: {
  58963. source: "./media/characters/tarken/front-nsfw.svg",
  58964. extra: 764/720,
  58965. bottom: 49/813
  58966. }
  58967. },
  58968. backNsfw: {
  58969. height: math.unit(2.5, "meters"),
  58970. weight: math.unit(230, "lb"),
  58971. name: "Back (NSFW)",
  58972. image: {
  58973. source: "./media/characters/tarken/back-nsfw.svg",
  58974. extra: 756/720,
  58975. bottom: 35/791
  58976. }
  58977. },
  58978. head: {
  58979. height: math.unit(2.22, "feet"),
  58980. name: "Head",
  58981. image: {
  58982. source: "./media/characters/tarken/head.svg"
  58983. }
  58984. },
  58985. tail: {
  58986. height: math.unit(5.25, "feet"),
  58987. name: "Tail",
  58988. image: {
  58989. source: "./media/characters/tarken/tail.svg"
  58990. }
  58991. },
  58992. dick: {
  58993. height: math.unit(1.95, "feet"),
  58994. name: "Dick",
  58995. image: {
  58996. source: "./media/characters/tarken/dick.svg"
  58997. }
  58998. },
  58999. hand: {
  59000. height: math.unit(1.78, "feet"),
  59001. name: "Hand",
  59002. image: {
  59003. source: "./media/characters/tarken/hand.svg"
  59004. }
  59005. },
  59006. beam: {
  59007. height: math.unit(1.5, "feet"),
  59008. name: "Beam",
  59009. image: {
  59010. source: "./media/characters/tarken/beam.svg"
  59011. }
  59012. },
  59013. },
  59014. [
  59015. {
  59016. name: "Original Size",
  59017. height: math.unit(2.5, "meters")
  59018. },
  59019. {
  59020. name: "Macro",
  59021. height: math.unit(150, "meters"),
  59022. default: true
  59023. },
  59024. {
  59025. name: "Macro+",
  59026. height: math.unit(300, "meters")
  59027. },
  59028. {
  59029. name: "Mega",
  59030. height: math.unit(2, "km")
  59031. },
  59032. {
  59033. name: "Mega+",
  59034. height: math.unit(35, "km")
  59035. },
  59036.  {
  59037. name: "Mega++",
  59038. height: math.unit(60, "km")
  59039. },
  59040. {
  59041. name: "Giga",
  59042. height: math.unit(200, "km")
  59043. },
  59044. {
  59045. name: "Giga+",
  59046. height: math.unit(2500, "km")
  59047. },
  59048. {
  59049. name: "Giga++",
  59050. height: math.unit(6600, "km")
  59051. },
  59052. {
  59053. name: "Terra",
  59054. height: math.unit(20000, "km")
  59055. },
  59056. {
  59057. name: "Terra+",
  59058. height: math.unit(300000, "km")
  59059. },
  59060. ]
  59061. ))
  59062. characterMakers.push(() => makeCharacter(
  59063. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  59064. {
  59065. magpie_dressed: {
  59066. height: math.unit(1.7, "meters"),
  59067. weight: math.unit(70, "kg"),
  59068. name: "Dressed",
  59069. image: {
  59070. source: "./media/characters/otreus/magpie-dressed.svg",
  59071. extra: 691/672,
  59072. bottom: 116/807
  59073. },
  59074. form: "magpie",
  59075. default: true
  59076. },
  59077. magpie_nude: {
  59078. height: math.unit(1.7, "meters"),
  59079. weight: math.unit(70, "kg"),
  59080. name: "Nude",
  59081. image: {
  59082. source: "./media/characters/otreus/magpie-nude.svg",
  59083. extra: 691/672,
  59084. bottom: 116/807
  59085. },
  59086. form: "magpie",
  59087. },
  59088. magpie_dressedLewd: {
  59089. height: math.unit(1.7, "meters"),
  59090. weight: math.unit(70, "kg"),
  59091. name: "Dressed (Lewd)",
  59092. image: {
  59093. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  59094. extra: 691/672,
  59095. bottom: 116/807
  59096. },
  59097. form: "magpie",
  59098. },
  59099. magpie_nudeLewd: {
  59100. height: math.unit(1.7, "meters"),
  59101. weight: math.unit(70, "kg"),
  59102. name: "Nude (Lewd)",
  59103. image: {
  59104. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  59105. extra: 691/672,
  59106. bottom: 116/807
  59107. },
  59108. form: "magpie",
  59109. },
  59110. magpie_leftFoot: {
  59111. height: math.unit(1.58, "feet"),
  59112. name: "Left Foot",
  59113. image: {
  59114. source: "./media/characters/otreus/magpie-left-foot.svg"
  59115. },
  59116. form: "magpie",
  59117. },
  59118. magpie_rightFoot: {
  59119. height: math.unit(1.58, "feet"),
  59120. name: "Right Foot",
  59121. image: {
  59122. source: "./media/characters/otreus/magpie-right-foot.svg"
  59123. },
  59124. form: "magpie",
  59125. },
  59126. magpie_wingspan: {
  59127. height: math.unit(2, "meters"),
  59128. weight: math.unit(70, "kg"),
  59129. name: "Wingspan",
  59130. image: {
  59131. source: "./media/characters/otreus/magpie-wingspan.svg"
  59132. },
  59133. extraAttributes: {
  59134. "wingspan": {
  59135. name: "Wingspan",
  59136. power: 1,
  59137. type: "length",
  59138. base: math.unit(3.35, "meters")
  59139. },
  59140. },
  59141. form: "magpie",
  59142. },
  59143. hippogriff_dressed: {
  59144. height: math.unit(1.7, "meters"),
  59145. weight: math.unit(70, "kg"),
  59146. name: "Dressed",
  59147. image: {
  59148. source: "./media/characters/otreus/hippogriff-dressed.svg",
  59149. extra: 710/689,
  59150. bottom: 67/777
  59151. },
  59152. form: "hippogriff",
  59153. default: true
  59154. },
  59155. hippogriff_nude: {
  59156. height: math.unit(1.7, "meters"),
  59157. weight: math.unit(70, "kg"),
  59158. name: "Nude",
  59159. image: {
  59160. source: "./media/characters/otreus/hippogriff-nude.svg",
  59161. extra: 710/689,
  59162. bottom: 67/777
  59163. },
  59164. form: "hippogriff",
  59165. },
  59166. hippogriff_dressedLewd: {
  59167. height: math.unit(1.7, "meters"),
  59168. weight: math.unit(70, "kg"),
  59169. name: "Dressed (Lewd)",
  59170. image: {
  59171. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  59172. extra: 710/689,
  59173. bottom: 67/777
  59174. },
  59175. form: "hippogriff",
  59176. },
  59177. hippogriff_nudeLewd: {
  59178. height: math.unit(1.7, "meters"),
  59179. weight: math.unit(70, "kg"),
  59180. name: "Nude (Lewd)",
  59181. image: {
  59182. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  59183. extra: 710/689,
  59184. bottom: 67/777
  59185. },
  59186. form: "hippogriff",
  59187. },
  59188. },
  59189. [
  59190. {
  59191. name: "Original Size",
  59192. height: math.unit(1.7, "meters"),
  59193. allForms: true
  59194. },
  59195. {
  59196. name: "Incognito Size",
  59197. height: math.unit(2, "meters"),
  59198. allForms: true
  59199. },
  59200. {
  59201. name: "Mega",
  59202. height: math.unit(2, "km"),
  59203. allForms: true
  59204. },
  59205. {
  59206. name: "Mega+",
  59207. height: math.unit(40, "km"),
  59208. allForms: true
  59209. },
  59210. {
  59211. name: "Giga",
  59212. height: math.unit(250, "km"),
  59213. allForms: true
  59214. },
  59215. {
  59216. name: "Giga+",
  59217. height: math.unit(3000, "km"),
  59218. allForms: true
  59219. },
  59220. {
  59221. name: "Terra",
  59222. height: math.unit(20000, "km"),
  59223. allForms: true
  59224. },
  59225. {
  59226. name: "Solar (Home Size)",
  59227. height: math.unit(3e6, "km"),
  59228. allForms: true,
  59229. default: true
  59230. },
  59231. ],
  59232. {
  59233. "magpie": {
  59234. name: "Magpie",
  59235. default: true
  59236. },
  59237. "hippogriff": {
  59238. name: "Hippogriff",
  59239. },
  59240. }
  59241. ))
  59242. characterMakers.push(() => makeCharacter(
  59243. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  59244. {
  59245. frontDressed: {
  59246. height: math.unit(1.8, "meters"),
  59247. weight: math.unit(90, "kg"),
  59248. name: "Front (Dressed)",
  59249. image: {
  59250. source: "./media/characters/thalia/front-dressed.svg",
  59251. extra: 478/402,
  59252. bottom: 55/533
  59253. }
  59254. },
  59255. backDressed: {
  59256. height: math.unit(1.8, "meters"),
  59257. weight: math.unit(90, "kg"),
  59258. name: "Back (Dressed)",
  59259. image: {
  59260. source: "./media/characters/thalia/back-dressed.svg",
  59261. extra: 500/424,
  59262. bottom: 15/515
  59263. }
  59264. },
  59265. frontNude: {
  59266. height: math.unit(1.8, "meters"),
  59267. weight: math.unit(90, "kg"),
  59268. name: "Front (Nude)",
  59269. image: {
  59270. source: "./media/characters/thalia/front-nude.svg",
  59271. extra: 478/402,
  59272. bottom: 55/533
  59273. }
  59274. },
  59275. backNude: {
  59276. height: math.unit(1.8, "meters"),
  59277. weight: math.unit(90, "kg"),
  59278. name: "Back (Nude)",
  59279. image: {
  59280. source: "./media/characters/thalia/back-nude.svg",
  59281. extra: 500/424,
  59282. bottom: 15/515
  59283. }
  59284. },
  59285. },
  59286. [
  59287. {
  59288. name: "Incognito",
  59289. height: math.unit(3, "meters")
  59290. },
  59291. {
  59292. name: "Macro",
  59293. height: math.unit(500, "meters")
  59294. },
  59295. {
  59296. name: "Mega",
  59297. height: math.unit(5, "km")
  59298. },
  59299. {
  59300. name: "Mega+",
  59301. height: math.unit(30, "km")
  59302. },
  59303. {
  59304. name: "Giga",
  59305. height: math.unit(350, "km")
  59306. },
  59307. {
  59308. name: "Giga+",
  59309. height: math.unit(4000, "km")
  59310. },
  59311. {
  59312. name: "Terra",
  59313. height: math.unit(35000, "km")
  59314. },
  59315. {
  59316. name: "Original Size",
  59317. height: math.unit(130000, "km")
  59318. },
  59319. {
  59320. name: "Solar (Home Size)",
  59321. height: math.unit(4e6, "km"),
  59322. default: true
  59323. },
  59324. ]
  59325. ))
  59326. characterMakers.push(() => makeCharacter(
  59327. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  59328. {
  59329. front: {
  59330. height: math.unit(1.8, "meters"),
  59331. weight: math.unit(95, "kg"),
  59332. name: "Front",
  59333. image: {
  59334. source: "./media/characters/shango/front.svg",
  59335. extra: 1925/1774,
  59336. bottom: 67/1992
  59337. }
  59338. },
  59339. back: {
  59340. height: math.unit(1.8, "meters"),
  59341. weight: math.unit(95, "kg"),
  59342. name: "Back",
  59343. image: {
  59344. source: "./media/characters/shango/back.svg",
  59345. extra: 1915/1766,
  59346. bottom: 52/1967
  59347. }
  59348. },
  59349. frontLewd: {
  59350. height: math.unit(1.8, "meters"),
  59351. weight: math.unit(95, "kg"),
  59352. name: "Front (Lewd)",
  59353. image: {
  59354. source: "./media/characters/shango/front-lewd.svg",
  59355. extra: 1925/1774,
  59356. bottom: 67/1992
  59357. }
  59358. },
  59359. backLewd: {
  59360. height: math.unit(1.8, "meters"),
  59361. weight: math.unit(95, "kg"),
  59362. name: "Back (Lewd)",
  59363. image: {
  59364. source: "./media/characters/shango/back-lewd.svg",
  59365. extra: 1915/1766,
  59366. bottom: 52/1967
  59367. }
  59368. },
  59369. maw: {
  59370. height: math.unit(1.64, "feet"),
  59371. name: "Maw",
  59372. image: {
  59373. source: "./media/characters/shango/maw.svg"
  59374. }
  59375. },
  59376. dick: {
  59377. height: math.unit(2.14, "feet"),
  59378. name: "Dick",
  59379. image: {
  59380. source: "./media/characters/shango/dick.svg"
  59381. }
  59382. },
  59383. },
  59384. [
  59385. {
  59386. name: "Incognito",
  59387. height: math.unit(1.8, "meters")
  59388. },
  59389. {
  59390. name: "Home Size",
  59391. height: math.unit(60, "meters"),
  59392. default: true
  59393. },
  59394. {
  59395. name: "Macro",
  59396. height: math.unit(450, "meters")
  59397. },
  59398. {
  59399. name: "Mega",
  59400. height: math.unit(6, "km")
  59401. },
  59402. {
  59403. name: "Mega+",
  59404. height: math.unit(35, "km")
  59405. },
  59406. {
  59407. name: "Giga",
  59408. height: math.unit(500, "km")
  59409. },
  59410. {
  59411. name: "Giga+",
  59412. height: math.unit(5000, "km")
  59413. },
  59414. {
  59415. name: "Terra",
  59416. height: math.unit(60000, "km")
  59417. },
  59418. {
  59419. name: "Terra+",
  59420. height: math.unit(400000, "km")
  59421. },
  59422. ]
  59423. ))
  59424. characterMakers.push(() => makeCharacter(
  59425. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  59426. {
  59427. front: {
  59428. height: math.unit(2, "meters"),
  59429. weight: math.unit(95, "kg"),
  59430. name: "Front",
  59431. image: {
  59432. source: "./media/characters/osiris-gryphon/front.svg",
  59433. extra: 1508/1313,
  59434. bottom: 87/1595
  59435. }
  59436. },
  59437. back: {
  59438. height: math.unit(2, "meters"),
  59439. weight: math.unit(95, "kg"),
  59440. name: "Back",
  59441. image: {
  59442. source: "./media/characters/osiris-gryphon/back.svg",
  59443. extra: 1436/1309,
  59444. bottom: 64/1500
  59445. }
  59446. },
  59447. frontLewd: {
  59448. height: math.unit(2, "meters"),
  59449. weight: math.unit(95, "kg"),
  59450. name: "Front-lewd",
  59451. image: {
  59452. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  59453. extra: 1508/1313,
  59454. bottom: 87/1595
  59455. }
  59456. },
  59457. wing: {
  59458. height: math.unit(6.3333, "feet"),
  59459. name: "Wing",
  59460. image: {
  59461. source: "./media/characters/osiris-gryphon/wing.svg"
  59462. }
  59463. },
  59464. },
  59465. [
  59466. {
  59467. name: "Incognito",
  59468. height: math.unit(2, "meters")
  59469. },
  59470. {
  59471. name: "Home Size",
  59472. height: math.unit(30, "meters"),
  59473. default: true
  59474. },
  59475. {
  59476. name: "Macro",
  59477. height: math.unit(100, "meters")
  59478. },
  59479. {
  59480. name: "Macro+",
  59481. height: math.unit(350, "meters")
  59482. },
  59483. {
  59484. name: "Mega",
  59485. height: math.unit(40, "km")
  59486. },
  59487. {
  59488. name: "Giga",
  59489. height: math.unit(300, "km")
  59490. },
  59491. {
  59492. name: "Giga+",
  59493. height: math.unit(2000, "km")
  59494. },
  59495. {
  59496. name: "Terra",
  59497. height: math.unit(30000, "km")
  59498. },
  59499. ]
  59500. ))
  59501. characterMakers.push(() => makeCharacter(
  59502. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  59503. {
  59504. front: {
  59505. height: math.unit(2.5, "meters"),
  59506. weight: math.unit(200, "kg"),
  59507. name: "Front",
  59508. image: {
  59509. source: "./media/characters/atlas-dragon/front.svg",
  59510. extra: 745/462,
  59511. bottom: 36/781
  59512. }
  59513. },
  59514. back: {
  59515. height: math.unit(2.5, "meters"),
  59516. weight: math.unit(200, "kg"),
  59517. name: "Back",
  59518. image: {
  59519. source: "./media/characters/atlas-dragon/back.svg",
  59520. extra: 848/822,
  59521. bottom: 57/905
  59522. }
  59523. },
  59524. frontLewd: {
  59525. height: math.unit(2.5, "meters"),
  59526. weight: math.unit(200, "kg"),
  59527. name: "Front (Lewd)",
  59528. image: {
  59529. source: "./media/characters/atlas-dragon/front-lewd.svg",
  59530. extra: 745/462,
  59531. bottom: 36/781
  59532. }
  59533. },
  59534. backLewd: {
  59535. height: math.unit(2.5, "meters"),
  59536. weight: math.unit(200, "kg"),
  59537. name: "Back (Lewd)",
  59538. image: {
  59539. source: "./media/characters/atlas-dragon/back-lewd.svg",
  59540. extra: 848/822,
  59541. bottom: 57/905
  59542. }
  59543. },
  59544. },
  59545. [
  59546. {
  59547. name: "Incognito",
  59548. height: math.unit(2.5, "meters")
  59549. },
  59550. {
  59551. name: "Small Macro",
  59552. height: math.unit(50, "meters")
  59553. },
  59554. {
  59555. name: "Macro",
  59556. height: math.unit(350, "meters")
  59557. },
  59558. {
  59559. name: "Mega",
  59560. height: math.unit(5.5, "kilometers")
  59561. },
  59562. {
  59563. name: "Mega+",
  59564. height: math.unit(50, "km")
  59565. },
  59566. {
  59567. name: "Giga",
  59568. height: math.unit(350, "km")
  59569. },
  59570. {
  59571. name: "Giga+",
  59572. height: math.unit(2000, "km")
  59573. },
  59574. {
  59575. name: "Giga++",
  59576. height: math.unit(6500, "km")
  59577. },
  59578. {
  59579. name: "Terra",
  59580. height: math.unit(30000, "km")
  59581. },
  59582. {
  59583. name: "Terra+",
  59584. height: math.unit(250000, "km")
  59585. },
  59586. {
  59587. name: "True Size",
  59588. height: math.unit(100, "multiverses"),
  59589. default: true
  59590. },
  59591. ]
  59592. ))
  59593. characterMakers.push(() => makeCharacter(
  59594. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  59595. {
  59596. front: {
  59597. height: math.unit(1.8, "m"),
  59598. weight: math.unit(120, "kg"),
  59599. name: "Front",
  59600. image: {
  59601. source: "./media/characters/chey/front.svg",
  59602. extra: 1359/1270,
  59603. bottom: 18/1377
  59604. }
  59605. },
  59606. arm: {
  59607. height: math.unit(2.05, "feet"),
  59608. name: "Arm",
  59609. image: {
  59610. source: "./media/characters/chey/arm.svg"
  59611. }
  59612. },
  59613. head: {
  59614. height: math.unit(1.89, "feet"),
  59615. name: "Head",
  59616. image: {
  59617. source: "./media/characters/chey/head.svg"
  59618. }
  59619. },
  59620. },
  59621. [
  59622. {
  59623. name: "Original Size",
  59624. height: math.unit(5, "cm")
  59625. },
  59626. {
  59627. name: "Incognito Size",
  59628. height: math.unit(2.4, "m")
  59629. },
  59630. {
  59631. name: "Home Size",
  59632. height: math.unit(200, "meters"),
  59633. default: true
  59634. },
  59635. {
  59636. name: "Mega",
  59637. height: math.unit(2, "km")
  59638. },
  59639. {
  59640. name: "Giga (Preferred Size)",
  59641. height: math.unit(2000, "km")
  59642. },
  59643. {
  59644. name: "Giga+",
  59645. height: math.unit(6000, "km")
  59646. },
  59647. {
  59648. name: "Terra",
  59649. height: math.unit(17000, "km")
  59650. },
  59651. {
  59652. name: "Terra+",
  59653. height: math.unit(75000, "km")
  59654. },
  59655. {
  59656. name: "Terra++",
  59657. height: math.unit(225000, "km")
  59658. },
  59659. ]
  59660. ))
  59661. characterMakers.push(() => makeCharacter(
  59662. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  59663. {
  59664. side: {
  59665. height: math.unit(7.8, "meters"),
  59666. name: "Side",
  59667. image: {
  59668. source: "./media/characters/ragnarok/side.svg",
  59669. extra: 725/621,
  59670. bottom: 72/797
  59671. }
  59672. },
  59673. },
  59674. [
  59675. {
  59676. name: "Normal",
  59677. height: math.unit(7.8, "meters"),
  59678. default: true
  59679. },
  59680. ]
  59681. ))
  59682. characterMakers.push(() => makeCharacter(
  59683. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  59684. {
  59685. hyena_front: {
  59686. height: math.unit(2.1, "meters"),
  59687. weight: math.unit(110, "kg"),
  59688. name: "Front",
  59689. image: {
  59690. source: "./media/characters/nima/hyena-front.svg",
  59691. extra: 1904/1796,
  59692. bottom: 67/1971
  59693. },
  59694. form: "hyena",
  59695. },
  59696. hyena_back: {
  59697. height: math.unit(2.1, "meters"),
  59698. weight: math.unit(110, "kg"),
  59699. name: "Back",
  59700. image: {
  59701. source: "./media/characters/nima/hyena-back.svg",
  59702. extra: 1964/1884,
  59703. bottom: 35/1999
  59704. },
  59705. form: "hyena",
  59706. },
  59707. shark_front: {
  59708. height: math.unit(1.95, "meters"),
  59709. weight: math.unit(110, "kg"),
  59710. name: "Front",
  59711. image: {
  59712. source: "./media/characters/nima/shark-front.svg",
  59713. extra: 2238/2013,
  59714. bottom: 0/223
  59715. },
  59716. form: "shark",
  59717. },
  59718. paw: {
  59719. height: math.unit(1, "feet"),
  59720. name: "Paw",
  59721. image: {
  59722. source: "./media/characters/nima/paw.svg"
  59723. }
  59724. },
  59725. circlet: {
  59726. height: math.unit(0.3, "feet"),
  59727. name: "Circlet",
  59728. image: {
  59729. source: "./media/characters/nima/circlet.svg"
  59730. }
  59731. },
  59732. necklace: {
  59733. height: math.unit(1.2, "feet"),
  59734. name: "Necklace",
  59735. image: {
  59736. source: "./media/characters/nima/necklace.svg"
  59737. }
  59738. },
  59739. bracelet: {
  59740. height: math.unit(0.51, "feet"),
  59741. name: "Bracelet",
  59742. image: {
  59743. source: "./media/characters/nima/bracelet.svg"
  59744. }
  59745. },
  59746. armband: {
  59747. height: math.unit(1.3, "feet"),
  59748. name: "Armband",
  59749. image: {
  59750. source: "./media/characters/nima/armband.svg"
  59751. }
  59752. },
  59753. },
  59754. [
  59755. {
  59756. name: "Incognito",
  59757. height: math.unit(2.1, "meters"),
  59758. allForms: true
  59759. },
  59760. {
  59761. name: "Small Macro",
  59762. height: math.unit(50, "meters"),
  59763. allForms: true
  59764. },
  59765. {
  59766. name: "Macro",
  59767. height: math.unit(200, "meters"),
  59768. allForms: true
  59769. },
  59770. {
  59771. name: "Mega",
  59772. height: math.unit(2.5, "km"),
  59773. allForms: true
  59774. },
  59775. {
  59776. name: "Mega+",
  59777. height: math.unit(30, "km"),
  59778. allForms: true
  59779. },
  59780. {
  59781. name: "Giga (Home Size)",
  59782. height: math.unit(400, "km"),
  59783. allForms: true,
  59784. default: true
  59785. },
  59786. {
  59787. name: "Giga+",
  59788. height: math.unit(2500, "km"),
  59789. allForms: true
  59790. },
  59791. {
  59792. name: "Giga++",
  59793. height: math.unit(8000, "km"),
  59794. allForms: true
  59795. },
  59796. {
  59797. name: "Terra",
  59798. height: math.unit(20000, "km"),
  59799. allForms: true
  59800. },
  59801. {
  59802. name: "Terra+",
  59803. height: math.unit(70000, "km"),
  59804. allForms: true
  59805. },
  59806. {
  59807. name: "Terra++",
  59808. height: math.unit(600000, "km"),
  59809. allForms: true
  59810. },
  59811. {
  59812. name: "Galactic",
  59813. height: math.unit(40, "galaxies"),
  59814. allForms: true
  59815. },
  59816. {
  59817. name: "Universal",
  59818. height: math.unit(40, "universes"),
  59819. allForms: true
  59820. },
  59821. ],
  59822. {
  59823. "hyena": {
  59824. name: "Hyena",
  59825. default: true
  59826. },
  59827. "shark": {
  59828. name: "Shark",
  59829. },
  59830. }
  59831. ))
  59832. characterMakers.push(() => makeCharacter(
  59833. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  59834. {
  59835. anthro_front: {
  59836. height: math.unit(1.5, "meters"),
  59837. name: "Front",
  59838. image: {
  59839. source: "./media/characters/adelaide/anthro-front.svg",
  59840. extra: 860/783,
  59841. bottom: 60/920
  59842. },
  59843. form: "anthro",
  59844. default: true
  59845. },
  59846. hand: {
  59847. height: math.unit(0.65, "feet"),
  59848. name: "Hand",
  59849. image: {
  59850. source: "./media/characters/adelaide/hand.svg"
  59851. },
  59852. form: "anthro"
  59853. },
  59854. foot: {
  59855. height: math.unit(1.38 * 259 / 314, "feet"),
  59856. name: "Foot",
  59857. image: {
  59858. source: "./media/characters/adelaide/foot.svg",
  59859. extra: 259/259,
  59860. bottom: 55/314
  59861. },
  59862. form: "anthro"
  59863. },
  59864. feather: {
  59865. height: math.unit(0.85, "feet"),
  59866. name: "Feather",
  59867. image: {
  59868. source: "./media/characters/adelaide/feather.svg"
  59869. },
  59870. form: "anthro"
  59871. },
  59872. feral_side: {
  59873. height: math.unit(1, "meters"),
  59874. name: "Side",
  59875. image: {
  59876. source: "./media/characters/adelaide/feral-side.svg",
  59877. extra: 550/467,
  59878. bottom: 37/587
  59879. },
  59880. form: "feral",
  59881. default: true
  59882. },
  59883. feral_hand: {
  59884. height: math.unit(0.58, "feet"),
  59885. name: "Hand",
  59886. image: {
  59887. source: "./media/characters/adelaide/hand.svg"
  59888. },
  59889. form: "feral"
  59890. },
  59891. feral_foot: {
  59892. height: math.unit(1.2 * 259 / 314, "feet"),
  59893. name: "Foot",
  59894. image: {
  59895. source: "./media/characters/adelaide/foot.svg",
  59896. extra: 259/259,
  59897. bottom: 55/314
  59898. },
  59899. form: "feral"
  59900. },
  59901. feral_feather: {
  59902. height: math.unit(0.63, "feet"),
  59903. name: "Feather",
  59904. image: {
  59905. source: "./media/characters/adelaide/feather.svg"
  59906. },
  59907. form: "feral"
  59908. },
  59909. },
  59910. [
  59911. {
  59912. name: "Normal",
  59913. height: math.unit(1.5, "meters"),
  59914. form: "anthro",
  59915. default: true
  59916. },
  59917. {
  59918. name: "Normal",
  59919. height: math.unit(1, "meters"),
  59920. form: "feral",
  59921. default: true
  59922. },
  59923. ],
  59924. {
  59925. "anthro": {
  59926. name: "Anthro",
  59927. default: true
  59928. },
  59929. "feral": {
  59930. name: "Feral",
  59931. },
  59932. }
  59933. ))
  59934. characterMakers.push(() => makeCharacter(
  59935. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  59936. {
  59937. front: {
  59938. height: math.unit(2.5, "meters"),
  59939. name: "Front",
  59940. image: {
  59941. source: "./media/characters/goa/front.svg",
  59942. extra: 1109/1013,
  59943. bottom: 150/1259
  59944. }
  59945. },
  59946. },
  59947. [
  59948. {
  59949. name: "Normal",
  59950. height: math.unit(2.5, "meters"),
  59951. default: true
  59952. },
  59953. ]
  59954. ))
  59955. characterMakers.push(() => makeCharacter(
  59956. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  59957. {
  59958. front: {
  59959. height: math.unit(2, "meters"),
  59960. weight: math.unit(100, "kg"),
  59961. name: "Front",
  59962. image: {
  59963. source: "./media/characters/kiki-weavile/front.svg",
  59964. extra: 357/332,
  59965. bottom: 60/417
  59966. }
  59967. },
  59968. },
  59969. [
  59970. {
  59971. name: "Normal",
  59972. height: math.unit(2, "meters"),
  59973. default: true
  59974. },
  59975. ]
  59976. ))
  59977. characterMakers.push(() => makeCharacter(
  59978. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  59979. {
  59980. side: {
  59981. height: math.unit(1.6, "meters"),
  59982. name: "Side",
  59983. image: {
  59984. source: "./media/characters/liza/side.svg",
  59985. extra: 943/915,
  59986. bottom: 72/1015
  59987. }
  59988. },
  59989. },
  59990. [
  59991. {
  59992. name: "Normal",
  59993. height: math.unit(1.6, "meters"),
  59994. default: true
  59995. },
  59996. ]
  59997. ))
  59998. characterMakers.push(() => makeCharacter(
  59999. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  60000. {
  60001. side: {
  60002. height: math.unit(2.5, "meters"),
  60003. preyCapacity: math.unit(1, "people"),
  60004. name: "Side",
  60005. image: {
  60006. source: "./media/characters/persephone-sweetbreath/side.svg",
  60007. extra: 796/700,
  60008. bottom: 44/840
  60009. }
  60010. },
  60011. sideVore: {
  60012. height: math.unit(2.5, "meters"),
  60013. preyCapacity: math.unit(1, "people"),
  60014. name: "Side (Full)",
  60015. image: {
  60016. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  60017. extra: 796/700,
  60018. bottom: 44/840
  60019. }
  60020. },
  60021. },
  60022. [
  60023. {
  60024. name: "Normal",
  60025. height: math.unit(2.5, "meters"),
  60026. default: true
  60027. },
  60028. ]
  60029. ))
  60030. characterMakers.push(() => makeCharacter(
  60031. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  60032. {
  60033. front: {
  60034. height: math.unit(32, "meters"),
  60035. name: "Front",
  60036. image: {
  60037. source: "./media/characters/pierce/front.svg",
  60038. extra: 1695/1475,
  60039. bottom: 185/1880
  60040. }
  60041. },
  60042. side: {
  60043. height: math.unit(32, "meters"),
  60044. name: "Side",
  60045. image: {
  60046. source: "./media/characters/pierce/side.svg",
  60047. extra: 974/859,
  60048. bottom: 43/1017
  60049. }
  60050. },
  60051. frontWingless: {
  60052. height: math.unit(32, "meters"),
  60053. name: "Front (Wingless)",
  60054. image: {
  60055. source: "./media/characters/pierce/front-wingless.svg",
  60056. extra: 1695/1475,
  60057. bottom: 185/1880
  60058. }
  60059. },
  60060. sideWingless: {
  60061. height: math.unit(32, "meters"),
  60062. name: "Side (Wingless)",
  60063. image: {
  60064. source: "./media/characters/pierce/side-wingless.svg",
  60065. extra: 974/859,
  60066. bottom: 43/1017
  60067. }
  60068. },
  60069. maw: {
  60070. height: math.unit(19.3, "meters"),
  60071. name: "Maw",
  60072. image: {
  60073. source: "./media/characters/pierce/maw.svg"
  60074. }
  60075. },
  60076. },
  60077. [
  60078. {
  60079. name: "Small",
  60080. height: math.unit(8.5, "meters")
  60081. },
  60082. {
  60083. name: "Normal",
  60084. height: math.unit(32, "meters"),
  60085. default: true
  60086. },
  60087. ]
  60088. ))
  60089. characterMakers.push(() => makeCharacter(
  60090. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  60091. {
  60092. front: {
  60093. height: math.unit(2.3, "meters"),
  60094. weight: math.unit(165, "kg"),
  60095. name: "Front",
  60096. image: {
  60097. source: "./media/characters/shira/front.svg",
  60098. extra: 924/919,
  60099. bottom: 17/941
  60100. },
  60101. form: "cobra",
  60102. default: true
  60103. },
  60104. back: {
  60105. height: math.unit(2.3, "meters"),
  60106. weight: math.unit(165, "kg"),
  60107. name: "Back",
  60108. image: {
  60109. source: "./media/characters/shira/back.svg",
  60110. extra: 928/922,
  60111. bottom: 18/946
  60112. },
  60113. form: "cobra"
  60114. },
  60115. frontLewd: {
  60116. height: math.unit(2.3, "meters"),
  60117. weight: math.unit(165, "kg"),
  60118. name: "Front (Lewd)",
  60119. image: {
  60120. source: "./media/characters/shira/front-lewd.svg",
  60121. extra: 924/919,
  60122. bottom: 17/941
  60123. },
  60124. form: "cobra"
  60125. },
  60126. backLewd: {
  60127. height: math.unit(2.3, "meters"),
  60128. weight: math.unit(165, "kg"),
  60129. name: "Back (Lewd)",
  60130. image: {
  60131. source: "./media/characters/shira/back-lewd.svg",
  60132. extra: 928/922,
  60133. bottom: 18/946
  60134. },
  60135. form: "cobra"
  60136. },
  60137. maw: {
  60138. height: math.unit(1.14, "feet"),
  60139. name: "Maw",
  60140. image: {
  60141. source: "./media/characters/shira/maw.svg"
  60142. },
  60143. form: "cobra"
  60144. },
  60145. magma_front: {
  60146. height: math.unit(2.3, "meters"),
  60147. weight: math.unit(165, "kg"),
  60148. name: "Front",
  60149. image: {
  60150. source: "./media/characters/shira/magma-front.svg",
  60151. extra: 1870/1693,
  60152. bottom: 24/1894
  60153. },
  60154. form: "magma",
  60155. },
  60156. magma_back: {
  60157. height: math.unit(2.3, "meters"),
  60158. weight: math.unit(165, "kg"),
  60159. name: "Back",
  60160. image: {
  60161. source: "./media/characters/shira/magma-back.svg",
  60162. extra: 1918/1756,
  60163. bottom: 46/1964
  60164. },
  60165. form: "magma",
  60166. },
  60167. },
  60168. [
  60169. {
  60170. name: "Incognito",
  60171. height: math.unit(2.3, "meters"),
  60172. allForms: true
  60173. },
  60174. {
  60175. name: "Home Size",
  60176. height: math.unit(150, "meters"),
  60177. default: true,
  60178. allForms: true
  60179. },
  60180. {
  60181. name: "Macro",
  60182. height: math.unit(2, "km"),
  60183. allForms: true
  60184. },
  60185. {
  60186. name: "Mega",
  60187. height: math.unit(30, "km"),
  60188. allForms: true
  60189. },
  60190. {
  60191. name: "Giga",
  60192. height: math.unit(450, "km"),
  60193. allForms: true
  60194. },
  60195. {
  60196. name: "Giga+",
  60197. height: math.unit(3000, "km"),
  60198. allForms: true
  60199. },
  60200. {
  60201. name: "Giga++",
  60202. height: math.unit(6000, "km"),
  60203. allForms: true
  60204. },
  60205. {
  60206. name: "Terra",
  60207. height: math.unit(80000, "km"),
  60208. allForms: true
  60209. },
  60210. {
  60211. name: "Terra+",
  60212. height: math.unit(350000, "km"),
  60213. allForms: true
  60214. },
  60215. {
  60216. name: "Solar",
  60217. height: math.unit(1e6, "km"),
  60218. allForms: true
  60219. },
  60220. ],
  60221. {
  60222. "cobra": {
  60223. name: "Cobra",
  60224. default: true
  60225. },
  60226. "magma": {
  60227. name: "Magma Dragon",
  60228. },
  60229. }
  60230. ))
  60231. characterMakers.push(() => makeCharacter(
  60232. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  60233. {
  60234. front: {
  60235. height: math.unit(2, "meters"),
  60236. weight: math.unit(160, "kg"),
  60237. name: "Front",
  60238. image: {
  60239. source: "./media/characters/daxerios/front.svg",
  60240. extra: 1334/1277,
  60241. bottom: 45/1379
  60242. }
  60243. },
  60244. frontLewd: {
  60245. height: math.unit(2, "meters"),
  60246. weight: math.unit(160, "kg"),
  60247. name: "Front (Lewd)",
  60248. image: {
  60249. source: "./media/characters/daxerios/front-lewd.svg",
  60250. extra: 1334/1277,
  60251. bottom: 45/1379
  60252. }
  60253. },
  60254. dick: {
  60255. height: math.unit(2.35, "feet"),
  60256. name: "Dick",
  60257. image: {
  60258. source: "./media/characters/daxerios/dick.svg"
  60259. }
  60260. },
  60261. },
  60262. [
  60263. {
  60264. name: "\"Small\"",
  60265. height: math.unit(5, "meters")
  60266. },
  60267. {
  60268. name: "Original Size",
  60269. height: math.unit(500, "meters"),
  60270. default: true
  60271. },
  60272. {
  60273. name: "Mega",
  60274. height: math.unit(2, "km")
  60275. },
  60276. {
  60277. name: "Mega+",
  60278. height: math.unit(35, "km")
  60279. },
  60280. {
  60281. name: "Giga",
  60282. height: math.unit(250, "km")
  60283. },
  60284. {
  60285. name: "Giga+",
  60286. height: math.unit(3000, "km")
  60287. },
  60288. {
  60289. name: "Terra",
  60290. height: math.unit(25000, "km")
  60291. },
  60292. {
  60293. name: "Terra+",
  60294. height: math.unit(300000, "km")
  60295. },
  60296. {
  60297. name: "Solar",
  60298. height: math.unit(1e6, "km")
  60299. },
  60300. ]
  60301. ))
  60302. characterMakers.push(() => makeCharacter(
  60303. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  60304. {
  60305. front: {
  60306. height: math.unit(8 + 4/12, "feet"),
  60307. weight: math.unit(464, "lb"),
  60308. name: "Front",
  60309. image: {
  60310. source: "./media/characters/caveat/front.svg",
  60311. extra: 1861/1678,
  60312. bottom: 40/1901
  60313. }
  60314. },
  60315. },
  60316. [
  60317. {
  60318. name: "Normal",
  60319. height: math.unit(8 + 4/12, "feet"),
  60320. default: true
  60321. },
  60322. ]
  60323. ))
  60324. characterMakers.push(() => makeCharacter(
  60325. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  60326. {
  60327. front: {
  60328. height: math.unit(12, "feet"),
  60329. weight: math.unit(1800, "lb"),
  60330. name: "Front",
  60331. image: {
  60332. source: "./media/characters/centbair/front.svg",
  60333. extra: 781/663,
  60334. bottom: 25/806
  60335. }
  60336. },
  60337. frontNsfw: {
  60338. height: math.unit(12, "feet"),
  60339. weight: math.unit(1800, "lb"),
  60340. name: "Front (NSFW)",
  60341. image: {
  60342. source: "./media/characters/centbair/front-nsfw.svg",
  60343. extra: 781/663,
  60344. bottom: 25/806
  60345. }
  60346. },
  60347. back: {
  60348. height: math.unit(12, "feet"),
  60349. weight: math.unit(1800, "lb"),
  60350. name: "Back",
  60351. image: {
  60352. source: "./media/characters/centbair/back.svg",
  60353. extra: 808/761,
  60354. bottom: 19/827
  60355. }
  60356. },
  60357. dick: {
  60358. height: math.unit(6.5, "feet"),
  60359. name: "Dick",
  60360. image: {
  60361. source: "./media/characters/centbair/dick.svg"
  60362. }
  60363. },
  60364. slit: {
  60365. height: math.unit(3.25, "feet"),
  60366. name: "Slit",
  60367. image: {
  60368. source: "./media/characters/centbair/slit.svg"
  60369. }
  60370. },
  60371. },
  60372. [
  60373. {
  60374. name: "Normal",
  60375. height: math.unit(12, "feet"),
  60376. default: true
  60377. },
  60378. ]
  60379. ))
  60380. characterMakers.push(() => makeCharacter(
  60381. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  60382. {
  60383. front: {
  60384. height: math.unit(5 + 7/12, "feet"),
  60385. name: "Front",
  60386. image: {
  60387. source: "./media/characters/andy/front.svg",
  60388. extra: 634/588,
  60389. bottom: 36/670
  60390. },
  60391. extraAttributes: {
  60392. "pawLength": {
  60393. name: "Paw Length",
  60394. power: 1,
  60395. type: "length",
  60396. base: math.unit(1, "feet")
  60397. },
  60398. }
  60399. },
  60400. side: {
  60401. height: math.unit(5 + 7/12, "feet"),
  60402. name: "Side",
  60403. image: {
  60404. source: "./media/characters/andy/side.svg",
  60405. extra: 641/596,
  60406. bottom: 34/675
  60407. },
  60408. extraAttributes: {
  60409. "pawLength": {
  60410. name: "Paw Length",
  60411. power: 1,
  60412. type: "length",
  60413. base: math.unit(1, "feet")
  60414. },
  60415. }
  60416. },
  60417. back: {
  60418. height: math.unit(5 + 7/12, "feet"),
  60419. name: "Back",
  60420. image: {
  60421. source: "./media/characters/andy/back.svg",
  60422. extra: 618/583,
  60423. bottom: 39/657
  60424. },
  60425. extraAttributes: {
  60426. "pawLength": {
  60427. name: "Paw Length",
  60428. power: 1,
  60429. type: "length",
  60430. base: math.unit(1, "feet")
  60431. },
  60432. }
  60433. },
  60434. paw: {
  60435. height: math.unit(1.13, "feet"),
  60436. name: "Paw",
  60437. image: {
  60438. source: "./media/characters/andy/paw.svg"
  60439. }
  60440. },
  60441. },
  60442. [
  60443. {
  60444. name: "Micro",
  60445. height: math.unit(4, "inches")
  60446. },
  60447. {
  60448. name: "Normal",
  60449. height: math.unit(5 + 7/12, "feet"),
  60450. default: true
  60451. },
  60452. {
  60453. name: "Macro",
  60454. height: math.unit(390.42, "feet")
  60455. },
  60456. ]
  60457. ))
  60458. characterMakers.push(() => makeCharacter(
  60459. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  60460. {
  60461. front: {
  60462. height: math.unit(7, "feet"),
  60463. weight: math.unit(250, "lb"),
  60464. name: "Front",
  60465. image: {
  60466. source: "./media/characters/vix-titan/front.svg",
  60467. extra: 460/428,
  60468. bottom: 15/475
  60469. },
  60470. extraAttributes: {
  60471. "pawWidth": {
  60472. name: "Paw Width",
  60473. power: 1,
  60474. type: "length",
  60475. base: math.unit(0.75, "feet")
  60476. },
  60477. }
  60478. },
  60479. },
  60480. [
  60481. {
  60482. name: "Normal",
  60483. height: math.unit(7, "feet"),
  60484. default: true
  60485. },
  60486. {
  60487. name: "Giant",
  60488. height: math.unit(1500, "feet")
  60489. },
  60490. {
  60491. name: "Mega",
  60492. height: math.unit(10, "miles")
  60493. },
  60494. {
  60495. name: "Giga",
  60496. height: math.unit(150, "miles")
  60497. },
  60498. {
  60499. name: "Tera",
  60500. height: math.unit(144000, "miles")
  60501. },
  60502. ]
  60503. ))
  60504. characterMakers.push(() => makeCharacter(
  60505. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  60506. {
  60507. front: {
  60508. height: math.unit(6 + 2/12, "feet"),
  60509. name: "Front",
  60510. image: {
  60511. source: "./media/characters/reiku/front.svg",
  60512. extra: 1910/1757,
  60513. bottom: 103/2013
  60514. },
  60515. extraAttributes: {
  60516. "thighThickness": {
  60517. name: "Thigh Thickness",
  60518. power: 1,
  60519. type: "length",
  60520. base: math.unit(1.12, "feet")
  60521. },
  60522. "assThickness": {
  60523. name: "Ass Thickness",
  60524. power: 1,
  60525. type: "length",
  60526. base: math.unit(1.12*2, "feet")
  60527. },
  60528. }
  60529. },
  60530. side: {
  60531. height: math.unit(6 + 2/12, "feet"),
  60532. name: "Side",
  60533. image: {
  60534. source: "./media/characters/reiku/side.svg",
  60535. extra: 1846/1748,
  60536. bottom: 99/1945
  60537. },
  60538. extraAttributes: {
  60539. "thighThickness": {
  60540. name: "Thigh Thickness",
  60541. power: 1,
  60542. type: "length",
  60543. base: math.unit(1.12, "feet")
  60544. },
  60545. "assThickness": {
  60546. name: "Ass Thickness",
  60547. power: 1,
  60548. type: "length",
  60549. base: math.unit(1.12*2, "feet")
  60550. },
  60551. }
  60552. },
  60553. back: {
  60554. height: math.unit(6 + 2/12, "feet"),
  60555. name: "Back",
  60556. image: {
  60557. source: "./media/characters/reiku/back.svg",
  60558. extra: 1941/1786,
  60559. bottom: 34/1975
  60560. },
  60561. extraAttributes: {
  60562. "thighThickness": {
  60563. name: "Thigh Thickness",
  60564. power: 1,
  60565. type: "length",
  60566. base: math.unit(1.12, "feet")
  60567. },
  60568. "assThickness": {
  60569. name: "Ass Thickness",
  60570. power: 1,
  60571. type: "length",
  60572. base: math.unit(1.12*2, "feet")
  60573. },
  60574. }
  60575. },
  60576. head: {
  60577. height: math.unit(1.8, "feet"),
  60578. name: "Head",
  60579. image: {
  60580. source: "./media/characters/reiku/head.svg"
  60581. }
  60582. },
  60583. tailTop: {
  60584. height: math.unit(8.4, "feet"),
  60585. name: "Tail (Top)",
  60586. image: {
  60587. source: "./media/characters/reiku/tail-top.svg"
  60588. }
  60589. },
  60590. tailBottom: {
  60591. height: math.unit(8.4, "feet"),
  60592. name: "Tail (Bottom)",
  60593. image: {
  60594. source: "./media/characters/reiku/tail-bottom.svg"
  60595. }
  60596. },
  60597. foot: {
  60598. height: math.unit(2.6, "feet"),
  60599. name: "Foot",
  60600. image: {
  60601. source: "./media/characters/reiku/foot.svg"
  60602. }
  60603. },
  60604. footCurled: {
  60605. height: math.unit(2.3, "feet"),
  60606. name: "Foot (Curled)",
  60607. image: {
  60608. source: "./media/characters/reiku/foot-curled.svg"
  60609. }
  60610. },
  60611. footSide: {
  60612. height: math.unit(1.26, "feet"),
  60613. name: "Foot (Side)",
  60614. image: {
  60615. source: "./media/characters/reiku/foot-side.svg"
  60616. }
  60617. },
  60618. },
  60619. [
  60620. {
  60621. name: "Normal",
  60622. height: math.unit(6 + 2/12, "feet"),
  60623. default: true
  60624. },
  60625. ]
  60626. ))
  60627. characterMakers.push(() => makeCharacter(
  60628. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  60629. {
  60630. front: {
  60631. height: math.unit(7, "feet"),
  60632. weight: math.unit(500, "kg"),
  60633. name: "Front",
  60634. image: {
  60635. source: "./media/characters/cialda/front.svg",
  60636. extra: 912/745,
  60637. bottom: 55/967
  60638. }
  60639. },
  60640. },
  60641. [
  60642. {
  60643. name: "Normal",
  60644. height: math.unit(7, "feet"),
  60645. default: true
  60646. },
  60647. ]
  60648. ))
  60649. characterMakers.push(() => makeCharacter(
  60650. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  60651. {
  60652. side: {
  60653. height: math.unit(6, "feet"),
  60654. weight: math.unit(600, "lb"),
  60655. preyCapacity: math.unit(25, "liters"),
  60656. name: "Side",
  60657. image: {
  60658. source: "./media/characters/darkkin/side.svg",
  60659. extra: 1597/1447,
  60660. bottom: 101/1698
  60661. }
  60662. },
  60663. },
  60664. [
  60665. {
  60666. name: "Canon Height",
  60667. height: math.unit(568, "feet"),
  60668. default: true
  60669. },
  60670. ]
  60671. ))
  60672. characterMakers.push(() => makeCharacter(
  60673. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  60674. {
  60675. front: {
  60676. height: math.unit(6, "feet"),
  60677. weight: math.unit(1500, "lb"),
  60678. preyCapacity: math.unit(3, "people"),
  60679. name: "Front",
  60680. image: {
  60681. source: "./media/characters/livnia/front.svg",
  60682. extra: 934/932,
  60683. bottom: 83/1017
  60684. }
  60685. },
  60686. back: {
  60687. height: math.unit(6, "feet"),
  60688. weight: math.unit(1500, "lb"),
  60689. preyCapacity: math.unit(3, "people"),
  60690. name: "Back",
  60691. image: {
  60692. source: "./media/characters/livnia/back.svg",
  60693. extra: 916/915,
  60694. bottom: 58/974
  60695. }
  60696. },
  60697. head: {
  60698. height: math.unit(1.53, "feet"),
  60699. name: "Head",
  60700. image: {
  60701. source: "./media/characters/livnia/head.svg"
  60702. }
  60703. },
  60704. maw: {
  60705. height: math.unit(0.78, "feet"),
  60706. name: "Maw",
  60707. image: {
  60708. source: "./media/characters/livnia/maw.svg"
  60709. }
  60710. },
  60711. genitals: {
  60712. height: math.unit(0.35, "feet"),
  60713. name: "Genitals",
  60714. image: {
  60715. source: "./media/characters/livnia/genitals.svg"
  60716. }
  60717. },
  60718. },
  60719. [
  60720. {
  60721. name: "Normal",
  60722. height: math.unit(1000, "feet"),
  60723. default: true
  60724. },
  60725. ]
  60726. ))
  60727. characterMakers.push(() => makeCharacter(
  60728. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  60729. {
  60730. front: {
  60731. height: math.unit(4, "feet"),
  60732. weight: math.unit(73, "lb"),
  60733. name: "Front",
  60734. image: {
  60735. source: "./media/characters/hayaku/front.svg",
  60736. extra: 1011/888,
  60737. bottom: 33/1044
  60738. }
  60739. },
  60740. back: {
  60741. height: math.unit(4, "feet"),
  60742. weight: math.unit(73, "lb"),
  60743. name: "Back",
  60744. image: {
  60745. source: "./media/characters/hayaku/back.svg",
  60746. extra: 1040/930,
  60747. bottom: 20/1060
  60748. }
  60749. },
  60750. },
  60751. [
  60752. {
  60753. name: "Normal",
  60754. height: math.unit(4, "feet"),
  60755. default: true
  60756. },
  60757. ]
  60758. ))
  60759. characterMakers.push(() => makeCharacter(
  60760. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  60761. {
  60762. front: {
  60763. height: math.unit(6 + 7/12, "feet"),
  60764. weight: math.unit(300, "lb"),
  60765. name: "Front",
  60766. image: {
  60767. source: "./media/characters/athena-bryzant/front.svg",
  60768. extra: 870/835,
  60769. bottom: 33/903
  60770. }
  60771. },
  60772. back: {
  60773. height: math.unit(6 + 7/12, "feet"),
  60774. weight: math.unit(300, "lb"),
  60775. name: "Back",
  60776. image: {
  60777. source: "./media/characters/athena-bryzant/back.svg",
  60778. extra: 858/823,
  60779. bottom: 30/888
  60780. }
  60781. },
  60782. head: {
  60783. height: math.unit(2.38, "feet"),
  60784. name: "Head",
  60785. image: {
  60786. source: "./media/characters/athena-bryzant/head.svg"
  60787. }
  60788. },
  60789. wings: {
  60790. height: math.unit(2.85, "feet"),
  60791. name: "Wings",
  60792. image: {
  60793. source: "./media/characters/athena-bryzant/wings.svg"
  60794. }
  60795. },
  60796. },
  60797. [
  60798. {
  60799. name: "Normal",
  60800. height: math.unit(6 + 7/12, "feet"),
  60801. default: true
  60802. },
  60803. {
  60804. name: "Big",
  60805. height: math.unit(8, "feet")
  60806. },
  60807. {
  60808. name: "Very Big",
  60809. height: math.unit(11, "feet")
  60810. },
  60811. ]
  60812. ))
  60813. characterMakers.push(() => makeCharacter(
  60814. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  60815. {
  60816. side: {
  60817. height: math.unit(3, "meters"),
  60818. weight: math.unit(7500, "kg"),
  60819. preyCapacity: math.unit(1e12, "people"),
  60820. name: "Side",
  60821. image: {
  60822. source: "./media/characters/zel-kesh/side.svg",
  60823. extra: 910/407,
  60824. bottom: 147/1057
  60825. }
  60826. },
  60827. },
  60828. [
  60829. {
  60830. name: "Normal",
  60831. height: math.unit(3, "meters"),
  60832. default: true
  60833. },
  60834. ]
  60835. ))
  60836. characterMakers.push(() => makeCharacter(
  60837. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  60838. {
  60839. front: {
  60840. height: math.unit(2, "meters"),
  60841. weight: math.unit(95, "kg"),
  60842. name: "Front",
  60843. image: {
  60844. source: "./media/characters/kane-fox/front.svg",
  60845. extra: 945/888,
  60846. bottom: 27/972
  60847. }
  60848. },
  60849. back: {
  60850. height: math.unit(2, "meters"),
  60851. weight: math.unit(95, "kg"),
  60852. name: "Back",
  60853. image: {
  60854. source: "./media/characters/kane-fox/back.svg",
  60855. extra: 959/914,
  60856. bottom: 15/974
  60857. }
  60858. },
  60859. frontLewd: {
  60860. height: math.unit(2, "meters"),
  60861. weight: math.unit(95, "kg"),
  60862. name: "Front (Lewd)",
  60863. image: {
  60864. source: "./media/characters/kane-fox/front-lewd.svg",
  60865. extra: 945/888,
  60866. bottom: 27/972
  60867. }
  60868. },
  60869. },
  60870. [
  60871. {
  60872. name: "Home Size",
  60873. height: math.unit(2, "meters"),
  60874. default: true
  60875. },
  60876. {
  60877. name: "Macro",
  60878. height: math.unit(200, "meters")
  60879. },
  60880. {
  60881. name: "Small Mega",
  60882. height: math.unit(3, "km")
  60883. },
  60884. {
  60885. name: "Mega",
  60886. height: math.unit(50, "km")
  60887. },
  60888. {
  60889. name: "Giga",
  60890. height: math.unit(200, "km")
  60891. },
  60892. {
  60893. name: "Giga+",
  60894. height: math.unit(2500, "km")
  60895. },
  60896. {
  60897. name: "Terra",
  60898. height: math.unit(70000, "km")
  60899. },
  60900. {
  60901. name: "Terra+",
  60902. height: math.unit(150000, "km")
  60903. },
  60904. {
  60905. name: "Terra++",
  60906. height: math.unit(400000, "km")
  60907. },
  60908. ]
  60909. ))
  60910. characterMakers.push(() => makeCharacter(
  60911. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  60912. {
  60913. otter_front: {
  60914. height: math.unit(1.8, "meters"),
  60915. weight: math.unit(90, "kg"),
  60916. name: "Front",
  60917. image: {
  60918. source: "./media/characters/ayranus/otter-front.svg",
  60919. extra: 468/452,
  60920. bottom: 43/511
  60921. },
  60922. form: "otter",
  60923. },
  60924. otter_frontLewd: {
  60925. height: math.unit(1.8, "meters"),
  60926. weight: math.unit(90, "kg"),
  60927. name: "Front (Lewd)",
  60928. image: {
  60929. source: "./media/characters/ayranus/otter-front-lewd.svg",
  60930. extra: 468/452,
  60931. bottom: 43/511
  60932. },
  60933. form: "otter",
  60934. },
  60935. lionbat_front: {
  60936. height: math.unit(1.8, "meters"),
  60937. weight: math.unit(90, "kg"),
  60938. name: "Front (Lewd)",
  60939. image: {
  60940. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  60941. extra: 797/740,
  60942. bottom: 78/875
  60943. },
  60944. form: "lionbat",
  60945. },
  60946. paw: {
  60947. height: math.unit(1.5, "feet"),
  60948. name: "Paw",
  60949. image: {
  60950. source: "./media/characters/ayranus/paw.svg"
  60951. },
  60952. },
  60953. },
  60954. [
  60955. {
  60956. name: "Incognito",
  60957. height: math.unit(1.8, "meters"),
  60958. allForms: true
  60959. },
  60960. {
  60961. name: "Macro",
  60962. height: math.unit(60, "meters"),
  60963. allForms: true
  60964. },
  60965. {
  60966. name: "Macro+",
  60967. height: math.unit(200, "meters"),
  60968. allForms: true
  60969. },
  60970. {
  60971. name: "Mega",
  60972. height: math.unit(35, "km"),
  60973. allForms: true
  60974. },
  60975. {
  60976. name: "Giga",
  60977. height: math.unit(220, "km"),
  60978. allForms: true
  60979. },
  60980. {
  60981. name: "Giga+",
  60982. height: math.unit(1500, "km"),
  60983. allForms: true
  60984. },
  60985. {
  60986. name: "Terra",
  60987. height: math.unit(13000, "km"),
  60988. allForms: true
  60989. },
  60990. {
  60991. name: "Terra+",
  60992. height: math.unit(500000, "km"),
  60993. allForms: true
  60994. },
  60995. {
  60996. name: "Galactic",
  60997. height: math.unit(486080, "parsecs"),
  60998. default: true,
  60999. allForms: true
  61000. },
  61001. ],
  61002. {
  61003. "otter": {
  61004. name: "Otter",
  61005. default: true
  61006. },
  61007. "lionbat": {
  61008. name: "Lionbat",
  61009. },
  61010. }
  61011. ))
  61012. characterMakers.push(() => makeCharacter(
  61013. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  61014. {
  61015. front: {
  61016. height: math.unit(7 + 4/12, "feet"),
  61017. weight: math.unit(400, "lb"),
  61018. name: "Front",
  61019. image: {
  61020. source: "./media/characters/proxy/front.svg",
  61021. extra: 1605/1542,
  61022. bottom: 55/1660
  61023. }
  61024. },
  61025. side: {
  61026. height: math.unit(7 + 4/12, "feet"),
  61027. weight: math.unit(400, "lb"),
  61028. name: "Side",
  61029. image: {
  61030. source: "./media/characters/proxy/side.svg",
  61031. extra: 794/759,
  61032. bottom: 6/800
  61033. }
  61034. },
  61035. hand: {
  61036. height: math.unit(1.54, "feet"),
  61037. name: "Hand",
  61038. image: {
  61039. source: "./media/characters/proxy/hand.svg"
  61040. }
  61041. },
  61042. paw: {
  61043. height: math.unit(1.53, "feet"),
  61044. name: "Paw",
  61045. image: {
  61046. source: "./media/characters/proxy/paw.svg"
  61047. }
  61048. },
  61049. maw: {
  61050. height: math.unit(1.9, "feet"),
  61051. name: "Maw",
  61052. image: {
  61053. source: "./media/characters/proxy/maw.svg"
  61054. }
  61055. },
  61056. },
  61057. [
  61058. {
  61059. name: "Normal",
  61060. height: math.unit(7 + 4/12, "feet"),
  61061. default: true
  61062. },
  61063. ]
  61064. ))
  61065. characterMakers.push(() => makeCharacter(
  61066. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  61067. {
  61068. front: {
  61069. height: math.unit(4, "meters"),
  61070. name: "Front",
  61071. image: {
  61072. source: "./media/characters/crocozilla/front.svg",
  61073. extra: 1790/1742,
  61074. bottom: 78/1868
  61075. }
  61076. },
  61077. },
  61078. [
  61079. {
  61080. name: "Normal",
  61081. height: math.unit(4, "meters"),
  61082. default: true
  61083. },
  61084. ]
  61085. ))
  61086. characterMakers.push(() => makeCharacter(
  61087. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  61088. {
  61089. front: {
  61090. height: math.unit(1.8, "meters"),
  61091. weight: math.unit(120, "kg"),
  61092. name: "Front",
  61093. image: {
  61094. source: "./media/characters/kurz/front.svg",
  61095. extra: 1960/1824,
  61096. bottom: 41/2001
  61097. }
  61098. },
  61099. back: {
  61100. height: math.unit(1.8, "meters"),
  61101. weight: math.unit(120, "kg"),
  61102. name: "Back",
  61103. image: {
  61104. source: "./media/characters/kurz/back.svg",
  61105. extra: 1906/1787,
  61106. bottom: 60/1966
  61107. }
  61108. },
  61109. frontLewd: {
  61110. height: math.unit(1.8, "meters"),
  61111. weight: math.unit(120, "kg"),
  61112. name: "Front (Lewd)",
  61113. image: {
  61114. source: "./media/characters/kurz/front-lewd.svg",
  61115. extra: 1960/1824,
  61116. bottom: 41/2001
  61117. }
  61118. },
  61119. maw: {
  61120. height: math.unit(0.69, "meters"),
  61121. name: "Maw",
  61122. image: {
  61123. source: "./media/characters/kurz/maw.svg"
  61124. }
  61125. },
  61126. },
  61127. [
  61128. {
  61129. name: "Original Size",
  61130. height: math.unit(1.8, "meters")
  61131. },
  61132. {
  61133. name: "Incognito Size",
  61134. height: math.unit(2.4, "meters"),
  61135. default: true
  61136. },
  61137. {
  61138. name: "Macro",
  61139. height: math.unit(30, "meters")
  61140. },
  61141. {
  61142. name: "Macro+",
  61143. height: math.unit(250, "meters")
  61144. },
  61145. {
  61146. name: "Mega",
  61147. height: math.unit(2, "km")
  61148. },
  61149. {
  61150. name: "Mega+",
  61151. height: math.unit(35, "km")
  61152. },
  61153. {
  61154. name: "Mega++",
  61155. height: math.unit(75, "km")
  61156. },
  61157. {
  61158. name: "Giga",
  61159. height: math.unit(250, "km")
  61160. },
  61161. {
  61162. name: "Terra",
  61163. height: math.unit(15000, "km")
  61164. },
  61165. {
  61166. name: "Terra+",
  61167. height: math.unit(2250000, "km")
  61168. },
  61169. ]
  61170. ))
  61171. characterMakers.push(() => makeCharacter(
  61172. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  61173. {
  61174. front: {
  61175. height: math.unit(16 + 3/12, "feet"),
  61176. weight: math.unit(3575, "lb"),
  61177. name: "Front",
  61178. image: {
  61179. source: "./media/characters/nikita/front.svg",
  61180. extra: 1064/955,
  61181. bottom: 47/1111
  61182. }
  61183. },
  61184. },
  61185. [
  61186. {
  61187. name: "Normal",
  61188. height: math.unit(16 + 3/12, "feet"),
  61189. default: true
  61190. },
  61191. {
  61192. name: "Big",
  61193. height: math.unit(21, "feet")
  61194. },
  61195. {
  61196. name: "Biggest",
  61197. height: math.unit(50, "feet")
  61198. },
  61199. ]
  61200. ))
  61201. characterMakers.push(() => makeCharacter(
  61202. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  61203. {
  61204. front: {
  61205. height: math.unit(1.92, "m"),
  61206. weight: math.unit(76, "kg"),
  61207. name: "Front",
  61208. image: {
  61209. source: "./media/characters/kyara/front.svg",
  61210. extra: 1550/1438,
  61211. bottom: 139/1689
  61212. }
  61213. },
  61214. back: {
  61215. height: math.unit(1.92, "m"),
  61216. weight: math.unit(76, "kg"),
  61217. name: "Back",
  61218. image: {
  61219. source: "./media/characters/kyara/back.svg",
  61220. extra: 1523/1427,
  61221. bottom: 83/1606
  61222. }
  61223. },
  61224. head: {
  61225. height: math.unit(1.22, "feet"),
  61226. name: "Head",
  61227. image: {
  61228. source: "./media/characters/kyara/head.svg"
  61229. }
  61230. },
  61231. maw: {
  61232. height: math.unit(0.73, "feet"),
  61233. name: "Maw",
  61234. image: {
  61235. source: "./media/characters/kyara/maw.svg"
  61236. }
  61237. },
  61238. paws: {
  61239. height: math.unit(0.95, "feet"),
  61240. name: "Paws",
  61241. image: {
  61242. source: "./media/characters/kyara/paws.svg"
  61243. }
  61244. },
  61245. },
  61246. [
  61247. {
  61248. name: "Normal",
  61249. height: math.unit(1.92, "meters"),
  61250. default: true
  61251. },
  61252. {
  61253. name: "Mini Macro",
  61254. height: math.unit(192, "meters")
  61255. },
  61256. {
  61257. name: "Macro",
  61258. height: math.unit(480, "meters")
  61259. },
  61260. {
  61261. name: "Mega Macro",
  61262. height: math.unit(1440, "meters")
  61263. },
  61264. ]
  61265. ))
  61266. characterMakers.push(() => makeCharacter(
  61267. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  61268. {
  61269. front: {
  61270. height: math.unit(6, "feet"),
  61271. weight: math.unit(160, "lbs"),
  61272. preyCapacity: math.unit(0.05, "people"),
  61273. name: "Front",
  61274. image: {
  61275. source: "./media/characters/layla-amari/front.svg",
  61276. extra: 1922/1723,
  61277. bottom: 90/2012
  61278. }
  61279. },
  61280. back: {
  61281. height: math.unit(6, "feet"),
  61282. weight: math.unit(160, "lbs"),
  61283. preyCapacity: math.unit(0.05, "people"),
  61284. name: "Back",
  61285. image: {
  61286. source: "./media/characters/layla-amari/back.svg",
  61287. extra: 1917/1718,
  61288. bottom: 50/1967
  61289. }
  61290. },
  61291. frontDressed: {
  61292. height: math.unit(6, "feet"),
  61293. weight: math.unit(160, "lbs"),
  61294. preyCapacity: math.unit(0.05, "people"),
  61295. name: "Front (Dressed)",
  61296. image: {
  61297. source: "./media/characters/layla-amari/front-dressed.svg",
  61298. extra: 1922/1723,
  61299. bottom: 90/2012
  61300. }
  61301. },
  61302. face: {
  61303. height: math.unit(0.93, "feet"),
  61304. name: "Face",
  61305. image: {
  61306. source: "./media/characters/layla-amari/face.svg"
  61307. }
  61308. },
  61309. hand: {
  61310. height: math.unit(0.66 , "feet"),
  61311. name: "Hand",
  61312. image: {
  61313. source: "./media/characters/layla-amari/hand.svg"
  61314. }
  61315. },
  61316. foot: {
  61317. height: math.unit(1, "feet"),
  61318. name: "Foot",
  61319. image: {
  61320. source: "./media/characters/layla-amari/foot.svg"
  61321. }
  61322. },
  61323. necklace: {
  61324. height: math.unit(0.32, "feet"),
  61325. name: "Necklace",
  61326. image: {
  61327. source: "./media/characters/layla-amari/necklace.svg"
  61328. }
  61329. },
  61330. nipple: {
  61331. height: math.unit(0.2, "feet"),
  61332. name: "Nipple",
  61333. image: {
  61334. source: "./media/characters/layla-amari/nipple.svg"
  61335. }
  61336. },
  61337. slit: {
  61338. height: math.unit(0.26, "feet"),
  61339. name: "Slit",
  61340. image: {
  61341. source: "./media/characters/layla-amari/slit.svg"
  61342. }
  61343. },
  61344. },
  61345. [
  61346. {
  61347. name: "Natural",
  61348. height: math.unit(825, "feet"),
  61349. default: true
  61350. },
  61351. {
  61352. name: "Enhanced",
  61353. height: math.unit(8250, "feet")
  61354. },
  61355. {
  61356. name: "Apparent Size",
  61357. height: math.unit(9.04363e+8, "meters")
  61358. },
  61359. ]
  61360. ))
  61361. characterMakers.push(() => makeCharacter(
  61362. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  61363. {
  61364. front: {
  61365. height: math.unit(1.3, "meters"),
  61366. name: "Front",
  61367. image: {
  61368. source: "./media/characters/percy/front.svg",
  61369. extra: 1444/1289,
  61370. bottom: 54/1498
  61371. }
  61372. },
  61373. },
  61374. [
  61375. {
  61376. name: "Normal",
  61377. height: math.unit(1.3, "meters"),
  61378. default: true
  61379. },
  61380. ]
  61381. ))
  61382. characterMakers.push(() => makeCharacter(
  61383. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  61384. {
  61385. side: {
  61386. height: math.unit(10, "meters"),
  61387. name: "Side",
  61388. image: {
  61389. source: "./media/characters/grev/side.svg",
  61390. extra: 653/266,
  61391. bottom: 77/730
  61392. }
  61393. },
  61394. head: {
  61395. height: math.unit(16.2, "m"),
  61396. name: "Head",
  61397. image: {
  61398. source: "./media/characters/grev/head.svg"
  61399. }
  61400. },
  61401. dick: {
  61402. height: math.unit(2.8135932034, "m"),
  61403. name: "Dick",
  61404. image: {
  61405. source: "./media/characters/grev/dick.svg"
  61406. }
  61407. },
  61408. },
  61409. [
  61410. {
  61411. name: "Friend-Sized",
  61412. height: math.unit(80, "cm")
  61413. },
  61414. {
  61415. name: "Normal",
  61416. height: math.unit(10, "meters"),
  61417. default: true
  61418. },
  61419. {
  61420. name: "Macro",
  61421. height: math.unit(200, "meters")
  61422. },
  61423. ]
  61424. ))
  61425. characterMakers.push(() => makeCharacter(
  61426. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  61427. {
  61428. front: {
  61429. height: math.unit(19.75, "feet"),
  61430. weight: math.unit(20000, "lb"),
  61431. name: "Front",
  61432. image: {
  61433. source: "./media/characters/azuuca/front.svg",
  61434. extra: 1593/1511,
  61435. bottom: 55/1648
  61436. }
  61437. },
  61438. },
  61439. [
  61440. {
  61441. name: "Normal",
  61442. height: math.unit(19.75, "feet"),
  61443. default: true
  61444. },
  61445. ]
  61446. ))
  61447. characterMakers.push(() => makeCharacter(
  61448. { name: "Valuria", species: ["vesempress"], tags: ["anthro"] },
  61449. {
  61450. front: {
  61451. height: math.unit(15, "feet"),
  61452. weight: math.unit(1500, "lb"),
  61453. name: "Front",
  61454. image: {
  61455. source: "./media/characters/valuria/front.svg",
  61456. extra: 1588/1486,
  61457. bottom: 31/1619
  61458. }
  61459. },
  61460. },
  61461. [
  61462. {
  61463. name: "Normal",
  61464. height: math.unit(15, "feet"),
  61465. default: true
  61466. },
  61467. {
  61468. name: "Small",
  61469. height: math.unit(500, "feet")
  61470. },
  61471. {
  61472. name: "Macro",
  61473. height: math.unit(4000, "feet")
  61474. },
  61475. {
  61476. name: "Mega Macro",
  61477. height: math.unit(2000, "miles")
  61478. },
  61479. {
  61480. name: "Giga Macro",
  61481. height: math.unit(3e6, "miles")
  61482. },
  61483. ]
  61484. ))
  61485. characterMakers.push(() => makeCharacter(
  61486. { name: "Terigaia", species: ["gaelterranian"], tags: ["anthro"] },
  61487. {
  61488. front: {
  61489. height: math.unit(3500, "solarradii"),
  61490. name: "Front",
  61491. image: {
  61492. source: "./media/characters/terigaia/front.svg",
  61493. extra: 1531/1451,
  61494. bottom: 98/1629
  61495. }
  61496. },
  61497. },
  61498. [
  61499. {
  61500. name: "Normal",
  61501. height: math.unit(3500, "solarradii"),
  61502. default: true
  61503. },
  61504. ]
  61505. ))
  61506. characterMakers.push(() => makeCharacter(
  61507. { name: "Blair (Blaziken)", species: ["blaziken"], tags: ["anthro"] },
  61508. {
  61509. front: {
  61510. height: math.unit(9.34, "feet"),
  61511. weight: math.unit(600, "lb"),
  61512. name: "Front",
  61513. image: {
  61514. source: "./media/characters/blair-blaziken/front.svg",
  61515. extra: 1557/1462,
  61516. bottom: 55/1612
  61517. }
  61518. },
  61519. },
  61520. [
  61521. {
  61522. name: "Normal",
  61523. height: math.unit(9.34, "feet"),
  61524. default: true
  61525. },
  61526. ]
  61527. ))
  61528. characterMakers.push(() => makeCharacter(
  61529. { name: "Braxia", species: ["pistrogre", "human"], tags: ["anthro"] },
  61530. {
  61531. pistrogre_front: {
  61532. height: math.unit(10, "feet"),
  61533. weight: math.unit(10, "tons"),
  61534. name: "Front",
  61535. image: {
  61536. source: "./media/characters/braxia/pistrogre-front.svg",
  61537. extra: 1531/1334,
  61538. bottom: 114/1645
  61539. },
  61540. form: "pistrogre",
  61541. default: true
  61542. },
  61543. human_front: {
  61544. height: math.unit(10, "feet"),
  61545. weight: math.unit(10, "tons"),
  61546. name: "Front",
  61547. image: {
  61548. source: "./media/characters/braxia/human-front.svg",
  61549. extra: 1574/1501,
  61550. bottom: 37/1611
  61551. },
  61552. form: "human",
  61553. default: true
  61554. },
  61555. },
  61556. [
  61557. {
  61558. name: "Normal",
  61559. height: math.unit(10, "feet"),
  61560. default: true,
  61561. allForms: true
  61562. },
  61563. {
  61564. name: "Macro",
  61565. height: math.unit(1000, "feet"),
  61566. allForms: true
  61567. },
  61568. {
  61569. name: "Mega Macro",
  61570. height: math.unit(100, "miles"),
  61571. allForms: true
  61572. },
  61573. {
  61574. name: "Cosmic",
  61575. height: math.unit(1000000, "lightyears"),
  61576. allForms: true
  61577. },
  61578. {
  61579. name: "ϐѮԆԬӁꭍϞԢ",
  61580. height: math.unit(1000, "multiverses"),
  61581. allForms: true
  61582. },
  61583. ],
  61584. {
  61585. "pistrogre": {
  61586. name: "Pistrogre",
  61587. default: true
  61588. },
  61589. "human": {
  61590. name: "Human",
  61591. },
  61592. }
  61593. ))
  61594. characterMakers.push(() => makeCharacter(
  61595. { name: "Kiriga Yato", species: ["zorgoia"], tags: ["anthro"] },
  61596. {
  61597. front: {
  61598. height: math.unit(6 + 1/12, "feet"),
  61599. weight: math.unit(280, "lb"),
  61600. name: "Front",
  61601. image: {
  61602. source: "./media/characters/kiriga-yato/front.svg",
  61603. extra: 445/394,
  61604. bottom: 11/456
  61605. }
  61606. },
  61607. },
  61608. [
  61609. {
  61610. name: "Descended",
  61611. height: math.unit(3, "feet")
  61612. },
  61613. {
  61614. name: "Average",
  61615. height: math.unit(6 + 1/12, "feet"),
  61616. default: true
  61617. },
  61618. {
  61619. name: "Ascended",
  61620. height: math.unit(9 + 2/12, "feet")
  61621. },
  61622. ]
  61623. ))
  61624. characterMakers.push(() => makeCharacter(
  61625. { name: "Kylie", species: ["giraffe"], tags: ["anthro"] },
  61626. {
  61627. front: {
  61628. height: math.unit(6, "feet"),
  61629. weight: math.unit(150, "lb"),
  61630. name: "Front",
  61631. image: {
  61632. source: "./media/characters/kylie/front.svg",
  61633. extra: 1114/1046,
  61634. bottom: 65/1179
  61635. },
  61636. extraAttributes: {
  61637. "hoofSize": {
  61638. name: "Hoof Size",
  61639. power: 2,
  61640. type: "area",
  61641. base: math.unit(0.034, "m^2")
  61642. },
  61643. "footSize": {
  61644. name: "Foot Size",
  61645. power: 2,
  61646. type: "area",
  61647. base: math.unit(0.75, "m^2")
  61648. },
  61649. }
  61650. },
  61651. side: {
  61652. height: math.unit(6, "feet"),
  61653. weight: math.unit(150, "lb"),
  61654. name: "Side",
  61655. image: {
  61656. source: "./media/characters/kylie/side.svg",
  61657. extra: 1178/1110,
  61658. bottom: 21/1199
  61659. },
  61660. extraAttributes: {
  61661. "hoofSize": {
  61662. name: "Hoof Size",
  61663. power: 2,
  61664. type: "area",
  61665. base: math.unit(0.034, "m^2")
  61666. },
  61667. "footSize": {
  61668. name: "Foot Size",
  61669. power: 2,
  61670. type: "area",
  61671. base: math.unit(0.75, "m^2")
  61672. },
  61673. }
  61674. },
  61675. back: {
  61676. height: math.unit(6, "feet"),
  61677. weight: math.unit(150, "lb"),
  61678. name: "Back",
  61679. image: {
  61680. source: "./media/characters/kylie/back.svg",
  61681. extra: 1115/1047,
  61682. bottom: 66/1181
  61683. },
  61684. extraAttributes: {
  61685. "hoofSize": {
  61686. name: "Hoof Size",
  61687. power: 2,
  61688. type: "area",
  61689. base: math.unit(0.034, "m^2")
  61690. },
  61691. "footSize": {
  61692. name: "Foot Size",
  61693. power: 2,
  61694. type: "area",
  61695. base: math.unit(0.75, "m^2")
  61696. },
  61697. }
  61698. },
  61699. head: {
  61700. height: math.unit(1.85, "feet"),
  61701. name: "Head",
  61702. image: {
  61703. source: "./media/characters/kylie/head.svg"
  61704. }
  61705. },
  61706. },
  61707. [
  61708. {
  61709. name: "Normal",
  61710. height: math.unit(90, "meters"),
  61711. default: true
  61712. },
  61713. ]
  61714. ))
  61715. characterMakers.push(() => makeCharacter(
  61716. { name: "Sabado", species: ["suicune"], tags: ["anthro"] },
  61717. {
  61718. front: {
  61719. height: math.unit(245, "feet"),
  61720. weight: math.unit(400000, "lb"),
  61721. name: "Front",
  61722. image: {
  61723. source: "./media/characters/sabado/front.svg",
  61724. extra: 1309/1164,
  61725. bottom: 29/1338
  61726. }
  61727. },
  61728. },
  61729. [
  61730. {
  61731. name: "Normal",
  61732. height: math.unit(245, "feet"),
  61733. default: true
  61734. },
  61735. ]
  61736. ))
  61737. characterMakers.push(() => makeCharacter(
  61738. { name: "Zechal", species: ["shark", "dragon", "deity"], tags: ["anthro"] },
  61739. {
  61740. shark_front: {
  61741. height: math.unit(2, "meters"),
  61742. weight: math.unit(200, "kg"),
  61743. name: "Front",
  61744. image: {
  61745. source: "./media/characters/zechal/shark-front.svg",
  61746. extra: 969/925,
  61747. bottom: 74/1043
  61748. },
  61749. form: "shark",
  61750. },
  61751. shark_back: {
  61752. height: math.unit(2, "meters"),
  61753. weight: math.unit(200, "kg"),
  61754. name: "Back",
  61755. image: {
  61756. source: "./media/characters/zechal/shark-back.svg",
  61757. extra: 994/949,
  61758. bottom: 176/1170
  61759. },
  61760. form: "shark",
  61761. },
  61762. shark_frontLewd: {
  61763. height: math.unit(2, "meters"),
  61764. weight: math.unit(200, "kg"),
  61765. name: "Front (Lewd)",
  61766. image: {
  61767. source: "./media/characters/zechal/shark-front-lewd.svg",
  61768. extra: 969/925,
  61769. bottom: 74/1043
  61770. },
  61771. form: "shark",
  61772. },
  61773. shark_side: {
  61774. height: math.unit(1.56, "meters"),
  61775. weight: math.unit(200, "kg"),
  61776. name: "Side",
  61777. image: {
  61778. source: "./media/characters/zechal/shark-side.svg"
  61779. },
  61780. form: "shark",
  61781. },
  61782. dragon_front: {
  61783. height: math.unit(2, "meters"),
  61784. weight: math.unit(200, "kg"),
  61785. name: "Front",
  61786. image: {
  61787. source: "./media/characters/zechal/dragon-front.svg",
  61788. extra: 1041/925,
  61789. bottom: 74/1115
  61790. },
  61791. form: "dragon",
  61792. },
  61793. dragon_back: {
  61794. height: math.unit(2, "meters"),
  61795. weight: math.unit(200, "kg"),
  61796. name: "Back",
  61797. image: {
  61798. source: "./media/characters/zechal/dragon-back.svg",
  61799. extra: 1061/949,
  61800. bottom: 176/1237
  61801. },
  61802. form: "dragon",
  61803. },
  61804. dragon_frontLewd: {
  61805. height: math.unit(2, "meters"),
  61806. weight: math.unit(200, "kg"),
  61807. name: "Front (Lewd)",
  61808. image: {
  61809. source: "./media/characters/zechal/dragon-front-lewd.svg",
  61810. extra: 1041/925,
  61811. bottom: 74/1115
  61812. },
  61813. form: "dragon",
  61814. },
  61815. dragon_side: {
  61816. height: math.unit(1.56, "meters"),
  61817. weight: math.unit(200, "kg"),
  61818. name: "Side",
  61819. image: {
  61820. source: "./media/characters/zechal/dragon-side.svg"
  61821. },
  61822. form: "dragon",
  61823. },
  61824. foot: {
  61825. height: math.unit(0.5, "meters"),
  61826. name: "Foot",
  61827. image: {
  61828. source: "./media/characters/zechal/foot.svg"
  61829. }
  61830. },
  61831. sheathFront: {
  61832. height: math.unit(0.45, "meters"),
  61833. name: "Sheath (Front)",
  61834. image: {
  61835. source: "./media/characters/zechal/sheath-front.svg"
  61836. }
  61837. },
  61838. sheathSide: {
  61839. height: math.unit(0.45, "meters"),
  61840. name: "Sheath (Side)",
  61841. image: {
  61842. source: "./media/characters/zechal/sheath-side.svg"
  61843. }
  61844. },
  61845. },
  61846. [
  61847. {
  61848. name: "Incognito",
  61849. height: math.unit(2, "meters"),
  61850. allForms: true
  61851. },
  61852. {
  61853. name: "Small Rampage",
  61854. height: math.unit(25, "meters"),
  61855. allForms: true
  61856. },
  61857. {
  61858. name: "Home Size",
  61859. height: math.unit(250, "meters"),
  61860. allForms: true,
  61861. default: true
  61862. },
  61863. {
  61864. name: "Macro+",
  61865. height: math.unit(700, "meters"),
  61866. allForms: true
  61867. },
  61868. {
  61869. name: "Small Mega",
  61870. height: math.unit(3, "km"),
  61871. allForms: true
  61872. },
  61873. {
  61874. name: "Mega",
  61875. height: math.unit(15, "km"),
  61876. allForms: true
  61877. },
  61878. {
  61879. name: "Giga",
  61880. height: math.unit(300, "km"),
  61881. allForms: true
  61882. },
  61883. {
  61884. name: "Giga+",
  61885. height: math.unit(1750, "km"),
  61886. allForms: true
  61887. },
  61888. {
  61889. name: "Continental",
  61890. height: math.unit(5000, "km"),
  61891. allForms: true
  61892. },
  61893. {
  61894. name: "Terra",
  61895. height: math.unit(20000, "km"),
  61896. allForms: true
  61897. },
  61898. {
  61899. name: "Terra+",
  61900. height: math.unit(300000, "km"),
  61901. allForms: true
  61902. },
  61903. {
  61904. name: "Solar",
  61905. height: math.unit(40000000, "km"),
  61906. allForms: true
  61907. },
  61908. {
  61909. name: "Galactic",
  61910. height: math.unit(810133, "parsecs"),
  61911. allForms: true
  61912. },
  61913. {
  61914. name: "Universal",
  61915. height: math.unit(25, "universes"),
  61916. allForms: true
  61917. },
  61918. ],
  61919. {
  61920. "shark": {
  61921. name: "Shark",
  61922. default: true
  61923. },
  61924. "dragon": {
  61925. name: "Dragon",
  61926. },
  61927. }
  61928. ))
  61929. characterMakers.push(() => makeCharacter(
  61930. { name: "Sergis", species: ["komodo-dragon", "deity"], tags: ["anthro"] },
  61931. {
  61932. front: {
  61933. height: math.unit(2.2, "meters"),
  61934. weight: math.unit(150, "kg"),
  61935. name: "Front",
  61936. image: {
  61937. source: "./media/characters/sergis/front.svg",
  61938. extra: 1314/1312,
  61939. bottom: 112/1426
  61940. }
  61941. },
  61942. back: {
  61943. height: math.unit(2.2, "meters"),
  61944. weight: math.unit(150, "kg"),
  61945. name: "Back",
  61946. image: {
  61947. source: "./media/characters/sergis/back.svg",
  61948. extra: 1335/1333,
  61949. bottom: 19/1354
  61950. }
  61951. },
  61952. frontLewd: {
  61953. height: math.unit(2.2, "meters"),
  61954. weight: math.unit(150, "kg"),
  61955. name: "Front (Lewd)",
  61956. image: {
  61957. source: "./media/characters/sergis/front-lewd.svg",
  61958. extra: 1314/1312,
  61959. bottom: 112/1426
  61960. }
  61961. },
  61962. frontDressed: {
  61963. height: math.unit(2.2, "meters"),
  61964. weight: math.unit(150, "kg"),
  61965. name: "Front (Dressed)",
  61966. image: {
  61967. source: "./media/characters/sergis/front-dressed.svg",
  61968. extra: 1330/1328,
  61969. bottom: 95/1425
  61970. }
  61971. },
  61972. frontDressedLewd: {
  61973. height: math.unit(2.2, "meters"),
  61974. weight: math.unit(150, "kg"),
  61975. name: "Front (Dressed, Lewd)",
  61976. image: {
  61977. source: "./media/characters/sergis/front-dressed-lewd.svg",
  61978. extra: 1330/1328,
  61979. bottom: 95/1425
  61980. }
  61981. },
  61982. maw: {
  61983. height: math.unit(0.48, "meters"),
  61984. name: "Maw",
  61985. image: {
  61986. source: "./media/characters/sergis/maw.svg"
  61987. }
  61988. },
  61989. sheath: {
  61990. height: math.unit(0.38, "meters"),
  61991. name: "Sheath",
  61992. image: {
  61993. source: "./media/characters/sergis/sheath.svg"
  61994. }
  61995. },
  61996. },
  61997. [
  61998. {
  61999. name: "Incognito Size",
  62000. height: math.unit(2.2, "meters")
  62001. },
  62002. {
  62003. name: "Small Macro",
  62004. height: math.unit(40, "meters")
  62005. },
  62006. {
  62007. name: "Macro",
  62008. height: math.unit(150, "meters")
  62009. },
  62010. {
  62011. name: "Macro+",
  62012. height: math.unit(300, "meters")
  62013. },
  62014. {
  62015. name: "Mega",
  62016. height: math.unit(2.5, "km")
  62017. },
  62018. {
  62019. name: "Mega+",
  62020. height: math.unit(30, "km")
  62021. },
  62022. {
  62023. name: "Home Size",
  62024. height: math.unit(300, "km"),
  62025. default: true
  62026. },
  62027. {
  62028. name: "Giga+",
  62029. height: math.unit(1000, "km")
  62030. },
  62031. {
  62032. name: "Giga++",
  62033. height: math.unit(6000, "km")
  62034. },
  62035. {
  62036. name: "Terra",
  62037. height: math.unit(70000, "km")
  62038. },
  62039. {
  62040. name: "Terra+",
  62041. height: math.unit(200000, "km")
  62042. },
  62043. {
  62044. name: "Galactic",
  62045. height: math.unit(634200, "lightyears")
  62046. },
  62047. ]
  62048. ))
  62049. characterMakers.push(() => makeCharacter(
  62050. { name: "Spade", species: ["demon", "mouse"], tags: ["anthro"] },
  62051. {
  62052. standard: {
  62053. height: math.unit(1 + 5/12, "feet"),
  62054. name: "Standard",
  62055. image: {
  62056. source: "./media/characters/spade/standard.svg",
  62057. extra: 1794/1703,
  62058. bottom: 115/1909
  62059. }
  62060. },
  62061. disguised: {
  62062. height: math.unit(1 + 5/12, "feet"),
  62063. name: "Disguised",
  62064. image: {
  62065. source: "./media/characters/spade/disguised.svg",
  62066. extra: 1794/1700,
  62067. bottom: 98/1892
  62068. }
  62069. },
  62070. },
  62071. [
  62072. {
  62073. name: "Normal",
  62074. height: math.unit(1 + 5/12, "feet"),
  62075. default: true
  62076. },
  62077. ]
  62078. ))
  62079. characterMakers.push(() => makeCharacter(
  62080. { name: "Zeanlain", species: ["harpy-eagle"], tags: ["anthro"] },
  62081. {
  62082. frontNsfw: {
  62083. height: math.unit(5, "meters"),
  62084. weight: math.unit(2000, "kg"),
  62085. preyCapacity: math.unit(5, "people"),
  62086. name: "Front (NSFW)",
  62087. image: {
  62088. source: "./media/characters/zeanlain/front-nsfw.svg",
  62089. extra: 1087/938,
  62090. bottom: 93/1180
  62091. },
  62092. extraAttributes: {
  62093. "wingspan": {
  62094. name: "Wingspan",
  62095. power: 1,
  62096. type: "length",
  62097. base: math.unit(10, "meters")
  62098. },
  62099. "footSize": {
  62100. name: "Foot Size",
  62101. power: 1,
  62102. type: "length",
  62103. base: math.unit(0.68, "meters")
  62104. },
  62105. "cockLength": {
  62106. name: "Cock Length",
  62107. power: 1,
  62108. type: "length",
  62109. base: math.unit(1.69, "meters")
  62110. },
  62111. "ballVolume": {
  62112. name: "Ball Volume",
  62113. power: 3,
  62114. type: "volume",
  62115. base: math.unit(0.028, "m^3")
  62116. },
  62117. }
  62118. },
  62119. front: {
  62120. height: math.unit(5, "meters"),
  62121. weight: math.unit(2000, "kg"),
  62122. preyCapacity: math.unit(3, "people"),
  62123. name: "Front",
  62124. image: {
  62125. source: "./media/characters/zeanlain/front.svg",
  62126. extra: 1087/938,
  62127. bottom: 93/1180
  62128. },
  62129. extraAttributes: {
  62130. "wingspan": {
  62131. name: "Wingspan",
  62132. power: 1,
  62133. type: "length",
  62134. base: math.unit(10, "meters")
  62135. },
  62136. "footSize": {
  62137. name: "Foot Size",
  62138. power: 1,
  62139. type: "length",
  62140. base: math.unit(0.68, "meters")
  62141. },
  62142. }
  62143. },
  62144. },
  62145. [
  62146. {
  62147. name: "Normal",
  62148. height: math.unit(5, "meters"),
  62149. default: true
  62150. },
  62151. ]
  62152. ))
  62153. characterMakers.push(() => makeCharacter(
  62154. { name: "Airamis", species: ["aeromorph", "dragon"], tags: ["anthro"] },
  62155. {
  62156. front: {
  62157. height: math.unit(10, "meters"),
  62158. weight: math.unit(250000, "kg"),
  62159. name: "Front",
  62160. image: {
  62161. source: "./media/characters/airamis/front.svg",
  62162. extra: 865/835,
  62163. bottom: 13/878
  62164. }
  62165. },
  62166. },
  62167. [
  62168. {
  62169. name: "Normal",
  62170. height: math.unit(10, "meters"),
  62171. default: true
  62172. },
  62173. ]
  62174. ))
  62175. characterMakers.push(() => makeCharacter(
  62176. { name: "Corra Tourmaline", species: ["vaporeon"], tags: ["anthro"] },
  62177. {
  62178. front: {
  62179. height: math.unit(3 + 3/12, "feet"),
  62180. weight: math.unit(75, "lb"),
  62181. name: "Front",
  62182. image: {
  62183. source: "./media/characters/corra-tourmaline/front.svg",
  62184. extra: 1037/864,
  62185. bottom: 39/1076
  62186. }
  62187. },
  62188. back: {
  62189. height: math.unit(3 + 3/12, "feet"),
  62190. weight: math.unit(75, "lb"),
  62191. name: "Back",
  62192. image: {
  62193. source: "./media/characters/corra-tourmaline/back.svg",
  62194. extra: 1022/849,
  62195. bottom: 26/1048
  62196. }
  62197. },
  62198. dressed: {
  62199. height: math.unit(3 + 3/12, "feet"),
  62200. weight: math.unit(75, "lb"),
  62201. name: "Dressed",
  62202. image: {
  62203. source: "./media/characters/corra-tourmaline/dressed.svg",
  62204. extra: 1037/864,
  62205. bottom: 39/1076
  62206. }
  62207. },
  62208. beans: {
  62209. height: math.unit(0.37, "feet"),
  62210. name: "Beans",
  62211. image: {
  62212. source: "./media/characters/corra-tourmaline/beans.svg"
  62213. }
  62214. },
  62215. },
  62216. [
  62217. {
  62218. name: "Normal",
  62219. height: math.unit(3 + 3/12, "feet"),
  62220. default: true
  62221. },
  62222. {
  62223. name: "Macro",
  62224. height: math.unit(32, "feet")
  62225. },
  62226. ]
  62227. ))
  62228. characterMakers.push(() => makeCharacter(
  62229. { name: "Maki Kawa", species: ["sabertooth-tiger", "serval"], tags: ["anthro"] },
  62230. {
  62231. front: {
  62232. height: math.unit(6 + 2/12, "feet"),
  62233. weight: math.unit(203, "lb"),
  62234. name: "Front",
  62235. image: {
  62236. source: "./media/characters/maki-kawa/front.svg",
  62237. extra: 950/890,
  62238. bottom: 62/1012
  62239. }
  62240. },
  62241. back: {
  62242. height: math.unit(6 + 2/12, "feet"),
  62243. weight: math.unit(203, "lb"),
  62244. name: "Back",
  62245. image: {
  62246. source: "./media/characters/maki-kawa/back.svg",
  62247. extra: 953/878,
  62248. bottom: 49/1002
  62249. }
  62250. },
  62251. frontBarista: {
  62252. height: math.unit(6 + 2/12, "feet"),
  62253. weight: math.unit(203, "lb"),
  62254. name: "Front (Barista)",
  62255. image: {
  62256. source: "./media/characters/maki-kawa/front-barista.svg",
  62257. extra: 943/883,
  62258. bottom: 69/1012
  62259. }
  62260. },
  62261. backBarista: {
  62262. height: math.unit(6 + 2/12, "feet"),
  62263. weight: math.unit(203, "lb"),
  62264. name: "Back (Barista)",
  62265. image: {
  62266. source: "./media/characters/maki-kawa/back-barista.svg",
  62267. extra: 953/878,
  62268. bottom: 49/1002
  62269. }
  62270. },
  62271. frontWrestler: {
  62272. height: math.unit(6 + 2/12, "feet"),
  62273. weight: math.unit(203, "lb"),
  62274. name: "Front (Wrestler)",
  62275. image: {
  62276. source: "./media/characters/maki-kawa/front-wrestler.svg",
  62277. extra: 950/890,
  62278. bottom: 62/1012
  62279. }
  62280. },
  62281. backWrestler: {
  62282. height: math.unit(6 + 2/12, "feet"),
  62283. weight: math.unit(203, "lb"),
  62284. name: "Back (Wrestler)",
  62285. image: {
  62286. source: "./media/characters/maki-kawa/back-wrestler.svg",
  62287. extra: 953/878,
  62288. bottom: 49/1002
  62289. }
  62290. },
  62291. headFront: {
  62292. height: math.unit(1.64, "feet"),
  62293. name: "Head (Front)",
  62294. image: {
  62295. source: "./media/characters/maki-kawa/head-front.svg"
  62296. }
  62297. },
  62298. headSide: {
  62299. height: math.unit(1.59, "feet"),
  62300. name: "Head (Side)",
  62301. image: {
  62302. source: "./media/characters/maki-kawa/head-side.svg"
  62303. }
  62304. },
  62305. paw: {
  62306. height: math.unit(0.9, "feet"),
  62307. name: "Paw",
  62308. image: {
  62309. source: "./media/characters/maki-kawa/paw.svg"
  62310. }
  62311. },
  62312. },
  62313. [
  62314. {
  62315. name: "Normal",
  62316. height: math.unit(6 + 2/12, "feet"),
  62317. default: true
  62318. },
  62319. {
  62320. name: "Macro",
  62321. height: math.unit(617, "feet")
  62322. },
  62323. ]
  62324. ))
  62325. characterMakers.push(() => makeCharacter(
  62326. { name: "Lennox", species: ["wolf"], tags: ["anthro"] },
  62327. {
  62328. front: {
  62329. height: math.unit(10, "feet"),
  62330. weight: math.unit(1500, "lb"),
  62331. name: "Front",
  62332. image: {
  62333. source: "./media/characters/lennox/front.svg",
  62334. extra: 1623/1496,
  62335. bottom: 18/1641
  62336. }
  62337. },
  62338. back: {
  62339. height: math.unit(10, "feet"),
  62340. weight: math.unit(1500, "lb"),
  62341. name: "Back",
  62342. image: {
  62343. source: "./media/characters/lennox/back.svg",
  62344. extra: 1641/1481,
  62345. bottom: 13/1654
  62346. }
  62347. },
  62348. maw: {
  62349. height: math.unit(2.94, "feet"),
  62350. name: "Maw",
  62351. image: {
  62352. source: "./media/characters/lennox/maw.svg"
  62353. }
  62354. },
  62355. },
  62356. [
  62357. {
  62358. name: "Micro",
  62359. height: math.unit(1, "inch")
  62360. },
  62361. {
  62362. name: "Normal",
  62363. height: math.unit(10, "feet"),
  62364. default: true
  62365. },
  62366. {
  62367. name: "Macro",
  62368. height: math.unit(200, "feet")
  62369. },
  62370. ]
  62371. ))
  62372. characterMakers.push(() => makeCharacter(
  62373. { name: "Vyse Iron-Thunder", species: ["luxray", "shiny"], tags: ["anthro"] },
  62374. {
  62375. frontDressed: {
  62376. height: math.unit(15 + 7/12, "feet"),
  62377. weight: math.unit(5000, "lb"),
  62378. name: "Front (Dressed)",
  62379. image: {
  62380. source: "./media/characters/vyse-iron-thunder/front-dressed.svg",
  62381. extra: 1136/1023,
  62382. bottom: 51/1187
  62383. }
  62384. },
  62385. backDressed: {
  62386. height: math.unit(15 + 7/12, "feet"),
  62387. weight: math.unit(5000, "lb"),
  62388. name: "Back (Dressed)",
  62389. image: {
  62390. source: "./media/characters/vyse-iron-thunder/back-dressed.svg",
  62391. extra: 2359/2143,
  62392. bottom: 103/2462
  62393. }
  62394. },
  62395. front: {
  62396. height: math.unit(15 + 7/12, "feet"),
  62397. weight: math.unit(5000, "lb"),
  62398. name: "Front",
  62399. image: {
  62400. source: "./media/characters/vyse-iron-thunder/front.svg",
  62401. extra: 1136/1023,
  62402. bottom: 51/1187
  62403. }
  62404. },
  62405. hand: {
  62406. height: math.unit(2.36, "feet"),
  62407. name: "Hand",
  62408. image: {
  62409. source: "./media/characters/vyse-iron-thunder/hand.svg"
  62410. }
  62411. },
  62412. foot: {
  62413. height: math.unit(1.72, "feet"),
  62414. name: "Foot",
  62415. image: {
  62416. source: "./media/characters/vyse-iron-thunder/foot.svg"
  62417. }
  62418. },
  62419. mouth: {
  62420. height: math.unit(2, "feet"),
  62421. name: "Mouth",
  62422. image: {
  62423. source: "./media/characters/vyse-iron-thunder/mouth.svg"
  62424. }
  62425. },
  62426. eye: {
  62427. height: math.unit(0.58, "feet"),
  62428. name: "Eye",
  62429. image: {
  62430. source: "./media/characters/vyse-iron-thunder/eye.svg"
  62431. }
  62432. },
  62433. },
  62434. [
  62435. {
  62436. name: "Normal",
  62437. height: math.unit(15 + 7/12, "feet"),
  62438. default: true
  62439. },
  62440. {
  62441. name: "Macro",
  62442. height: math.unit(157, "feet")
  62443. },
  62444. {
  62445. name: "Macro+",
  62446. height: math.unit(1570, "feet")
  62447. },
  62448. {
  62449. name: "Macro++",
  62450. height: math.unit(15700, "feet")
  62451. },
  62452. {
  62453. name: "Macro+++",
  62454. height: math.unit(157000, "feet")
  62455. },
  62456. {
  62457. name: "Macro++++",
  62458. height: math.unit(1570000, "feet")
  62459. },
  62460. ]
  62461. ))
  62462. characterMakers.push(() => makeCharacter(
  62463. { name: "Moonbeam", species: ["latex", "wolf"], tags: ["feral"] },
  62464. {
  62465. side: {
  62466. height: math.unit(6, "feet"),
  62467. weight: math.unit(115, "lb"),
  62468. name: "Side",
  62469. image: {
  62470. source: "./media/characters/moonbeam/side.svg",
  62471. extra: 839/485,
  62472. bottom: 60/899
  62473. }
  62474. },
  62475. },
  62476. [
  62477. {
  62478. name: "Normal",
  62479. height: math.unit(6, "feet"),
  62480. default: true
  62481. },
  62482. ]
  62483. ))
  62484. characterMakers.push(() => makeCharacter(
  62485. { name: "Baltica", species: ["orca"], tags: ["anthro"] },
  62486. {
  62487. front: {
  62488. height: math.unit(3500, "miles"),
  62489. weight: math.unit(1659, "petatonnes"),
  62490. name: "Front",
  62491. image: {
  62492. source: "./media/characters/baltica/front.svg",
  62493. extra: 429/428,
  62494. bottom: 41/470
  62495. }
  62496. },
  62497. back: {
  62498. height: math.unit(3500, "miles"),
  62499. weight: math.unit(1659, "petatonnes"),
  62500. name: "Back",
  62501. image: {
  62502. source: "./media/characters/baltica/back.svg",
  62503. extra: 452/451,
  62504. bottom: 8/460
  62505. }
  62506. },
  62507. },
  62508. [
  62509. {
  62510. name: "Gigamacro",
  62511. height: math.unit(3500, "miles"),
  62512. default: true
  62513. },
  62514. ]
  62515. ))
  62516. characterMakers.push(() => makeCharacter(
  62517. { name: "Shadow (Wolf)", species: ["wolf", "demi"], tags: ["anthro"] },
  62518. {
  62519. front: {
  62520. height: math.unit(6 + 10/12, "feet"),
  62521. weight: math.unit(200, "lb"),
  62522. name: "Front",
  62523. image: {
  62524. source: "./media/characters/shadow-wolf/front.svg",
  62525. extra: 1931/1760,
  62526. bottom: 88/2019
  62527. }
  62528. },
  62529. },
  62530. [
  62531. {
  62532. name: "Normal",
  62533. height: math.unit(6 + 10/12, "feet"),
  62534. default: true
  62535. },
  62536. ]
  62537. ))
  62538. characterMakers.push(() => makeCharacter(
  62539. { name: "Quincy (Praying Mantis)", species: ["praying-mantis"], tags: ["anthro"] },
  62540. {
  62541. front: {
  62542. height: math.unit(5 + 10/12, "feet"),
  62543. name: "Front",
  62544. image: {
  62545. source: "./media/characters/quincy-praying-mantis/front.svg",
  62546. extra: 1055/891,
  62547. bottom: 92/1147
  62548. }
  62549. },
  62550. soles: {
  62551. height: math.unit(0.85, "feet"),
  62552. name: "Soles",
  62553. image: {
  62554. source: "./media/characters/quincy-praying-mantis/soles.svg",
  62555. extra: 429/324,
  62556. bottom: 89/518
  62557. },
  62558. extraAttributes: {
  62559. "shoeSize": {
  62560. name: "Shoe Size",
  62561. power: 1,
  62562. type: "length",
  62563. base: math.unit(23, "ShoeSizeMensUS"),
  62564. defaultUnit: "ShoeSizeMensUS"
  62565. },
  62566. }
  62567. },
  62568. foot: {
  62569. height: math.unit(0.72, "feet"),
  62570. name: "Foot",
  62571. image: {
  62572. source: "./media/characters/quincy-praying-mantis/foot.svg",
  62573. extra: 349/349,
  62574. bottom: 76/425
  62575. }
  62576. },
  62577. },
  62578. [
  62579. {
  62580. name: "Normal",
  62581. height: math.unit(5 + 10/12, "feet"),
  62582. default: true
  62583. },
  62584. ]
  62585. ))
  62586. characterMakers.push(() => makeCharacter(
  62587. { name: "Christopher Redwood", species: ["gray-wolf"], tags: ["anthro"] },
  62588. {
  62589. front: {
  62590. height: math.unit(6, "feet"),
  62591. name: "Front",
  62592. image: {
  62593. source: "./media/characters/christopher-redwood/front.svg",
  62594. extra: 1402/1341,
  62595. bottom: 23/1425
  62596. }
  62597. },
  62598. back: {
  62599. height: math.unit(6, "feet"),
  62600. name: "Back",
  62601. image: {
  62602. source: "./media/characters/christopher-redwood/back.svg",
  62603. extra: 1406/1345,
  62604. bottom: 36/1442
  62605. }
  62606. },
  62607. head: {
  62608. height: math.unit(1.685, "feet"),
  62609. name: "Head",
  62610. image: {
  62611. source: "./media/characters/christopher-redwood/head.svg"
  62612. }
  62613. },
  62614. },
  62615. [
  62616. {
  62617. name: "Normal",
  62618. height: math.unit(6, "feet"),
  62619. default: true
  62620. },
  62621. ]
  62622. ))
  62623. characterMakers.push(() => makeCharacter(
  62624. { name: "Kara (Fox)", species: ["fox"], tags: ["anthro"] },
  62625. {
  62626. front: {
  62627. height: math.unit(1.9, "meters"),
  62628. weight: math.unit(140, "lb"),
  62629. name: "Front",
  62630. image: {
  62631. source: "./media/characters/kara-fox/front.svg",
  62632. extra: 766/711,
  62633. bottom: 41/807
  62634. }
  62635. },
  62636. back: {
  62637. height: math.unit(1.9, "meters"),
  62638. weight: math.unit(140, "lb"),
  62639. name: "Back",
  62640. image: {
  62641. source: "./media/characters/kara-fox/back.svg",
  62642. extra: 766/596,
  62643. bottom: 29/795
  62644. }
  62645. },
  62646. maw: {
  62647. height: math.unit(0.78, "feet"),
  62648. name: "Maw",
  62649. image: {
  62650. source: "./media/characters/kara-fox/maw.svg"
  62651. }
  62652. },
  62653. pawpads: {
  62654. height: math.unit(0.96, "feet"),
  62655. name: "Pawpads",
  62656. image: {
  62657. source: "./media/characters/kara-fox/pawpads.svg"
  62658. }
  62659. },
  62660. },
  62661. [
  62662. {
  62663. name: "Normal",
  62664. height: math.unit(1.9, "meters"),
  62665. default: true
  62666. },
  62667. {
  62668. name: "Giantess",
  62669. height: math.unit(80, "meters")
  62670. },
  62671. ]
  62672. ))
  62673. characterMakers.push(() => makeCharacter(
  62674. { name: "Naomi (Espeon)", species: ["espeon"], tags: ["anthro"] },
  62675. {
  62676. front: {
  62677. height: math.unit(12, "feet"),
  62678. name: "Front",
  62679. image: {
  62680. source: "./media/characters/naomi-espeon/front.svg",
  62681. extra: 892/797,
  62682. bottom: 5/897
  62683. }
  62684. },
  62685. back: {
  62686. height: math.unit(12, "feet"),
  62687. name: "Back",
  62688. image: {
  62689. source: "./media/characters/naomi-espeon/back.svg",
  62690. extra: 890/785,
  62691. bottom: 12/902
  62692. }
  62693. },
  62694. },
  62695. [
  62696. {
  62697. name: "Normal",
  62698. height: math.unit(12, "feet"),
  62699. default: true
  62700. },
  62701. ]
  62702. ))
  62703. characterMakers.push(() => makeCharacter(
  62704. { name: "Asher Heulfyrn", species: ["skullwolf"], tags: ["anthro", "taur"] },
  62705. {
  62706. anthro_front: {
  62707. height: math.unit(8, "feet"),
  62708. weight: math.unit(625, "lb"),
  62709. name: "Front",
  62710. image: {
  62711. source: "./media/characters/asher-heulfyrn/anthro-front.svg",
  62712. extra: 638/574,
  62713. bottom: 73/711
  62714. },
  62715. form: "anthro",
  62716. default: true
  62717. },
  62718. anthro_back: {
  62719. height: math.unit(8, "feet"),
  62720. weight: math.unit(625, "lb"),
  62721. name: "Back",
  62722. image: {
  62723. source: "./media/characters/asher-heulfyrn/anthro-back.svg",
  62724. extra: 674/614,
  62725. bottom: 7/681
  62726. },
  62727. form: "anthro",
  62728. },
  62729. taur_side: {
  62730. height: math.unit(16, "feet"),
  62731. weight: math.unit(4.5, "tons"),
  62732. name: "Side",
  62733. image: {
  62734. source: "./media/characters/asher-heulfyrn/taur-side.svg",
  62735. extra: 704/646,
  62736. bottom: 132/836
  62737. },
  62738. form: "taur",
  62739. default: true
  62740. },
  62741. },
  62742. [
  62743. {
  62744. name: "Normal",
  62745. height: math.unit(8, "feet"),
  62746. default: true,
  62747. form: "anthro"
  62748. },
  62749. {
  62750. name: "Normal",
  62751. height: math.unit(16, "feet"),
  62752. default: true,
  62753. form: "taur"
  62754. },
  62755. ],
  62756. {
  62757. "anthro": {
  62758. name: "Anthro",
  62759. default: true
  62760. },
  62761. "taur": {
  62762. name: "Taur",
  62763. },
  62764. }
  62765. ))
  62766. characterMakers.push(() => makeCharacter(
  62767. { name: "Amelie", species: ["ferrin"], tags: ["anthro"] },
  62768. {
  62769. front: {
  62770. height: math.unit(190, "cm"),
  62771. weight: math.unit(110, "kg"),
  62772. name: "Front",
  62773. image: {
  62774. source: "./media/characters/amelie/front.svg",
  62775. extra: 530/442,
  62776. bottom: 35/565
  62777. }
  62778. },
  62779. },
  62780. [
  62781. {
  62782. name: "Normal",
  62783. height: math.unit(190, "cm"),
  62784. default: true
  62785. },
  62786. ]
  62787. ))
  62788. characterMakers.push(() => makeCharacter(
  62789. { name: "Valence", species: ["skulldragon"], tags: ["anthro"] },
  62790. {
  62791. front: {
  62792. height: math.unit(21, "feet"),
  62793. weight: math.unit(30000, "lb"),
  62794. name: "Front",
  62795. image: {
  62796. source: "./media/characters/valence/front.svg",
  62797. extra: 1430/1306,
  62798. bottom: 51/1481
  62799. }
  62800. },
  62801. },
  62802. [
  62803. {
  62804. name: "Normal",
  62805. height: math.unit(21, "feet"),
  62806. default: true
  62807. },
  62808. ]
  62809. ))
  62810. characterMakers.push(() => makeCharacter(
  62811. { name: "Aurora Adkins", species: ["rusty-spotted-cat"], tags: ["anthro"] },
  62812. {
  62813. front: {
  62814. height: math.unit(5 + 9/12, "feet"),
  62815. weight: math.unit(170, "lb"),
  62816. name: "Front",
  62817. image: {
  62818. source: "./media/characters/aurora-adkins/front.svg",
  62819. extra: 1141/1089,
  62820. bottom: 41/1182
  62821. }
  62822. },
  62823. },
  62824. [
  62825. {
  62826. name: "Tiny",
  62827. height: math.unit(7, "mm")
  62828. },
  62829. {
  62830. name: "Small",
  62831. height: math.unit(3.4, "inches")
  62832. },
  62833. {
  62834. name: "Normal",
  62835. height: math.unit(5 + 9/12, "feet"),
  62836. default: true
  62837. },
  62838. {
  62839. name: "Big",
  62840. height: math.unit(31, "feet")
  62841. },
  62842. {
  62843. name: "Giant",
  62844. height: math.unit(300, "feet")
  62845. },
  62846. ]
  62847. ))
  62848. characterMakers.push(() => makeCharacter(
  62849. { name: "Cyber", species: ["maned-wolf", "lynx", "deity"], tags: ["anthro"] },
  62850. {
  62851. front: {
  62852. height: math.unit(5 + 6/12, "feet"),
  62853. weight: math.unit(210, "lb"),
  62854. name: "Front",
  62855. image: {
  62856. source: "./media/characters/cyber/front.svg",
  62857. extra: 1968/1798,
  62858. bottom: 10/1978
  62859. },
  62860. extraAttributes: {
  62861. "shoeSize": {
  62862. name: "Shoe Size",
  62863. power: 1,
  62864. type: "length",
  62865. base: math.unit(30, "ShoeSizeMensUS")
  62866. },
  62867. }
  62868. },
  62869. },
  62870. [
  62871. {
  62872. name: "Normal",
  62873. height: math.unit(5 + 6/12, "feet"),
  62874. default: true
  62875. },
  62876. ]
  62877. ))
  62878. characterMakers.push(() => makeCharacter(
  62879. { name: "Sapphire Wairimea", species: ["elf"], tags: ["anthro"] },
  62880. {
  62881. front: {
  62882. height: math.unit(6 + 6/12, "feet"),
  62883. weight: math.unit(140, "lb"),
  62884. name: "Front",
  62885. image: {
  62886. source: "./media/characters/sapphire-wairimea/front.svg",
  62887. extra: 475/458,
  62888. bottom: 14/489
  62889. }
  62890. },
  62891. },
  62892. [
  62893. {
  62894. name: "Normal",
  62895. height: math.unit(6 + 6/12, "feet")
  62896. },
  62897. {
  62898. name: "Macro",
  62899. height: math.unit(132, "feet"),
  62900. default: true
  62901. },
  62902. ]
  62903. ))
  62904. characterMakers.push(() => makeCharacter(
  62905. { name: "Cirkazi", species: ["elf"], tags: ["anthro"] },
  62906. {
  62907. front: {
  62908. height: math.unit(1.6, "meters"),
  62909. weight: math.unit(100, "lb"),
  62910. name: "Front",
  62911. image: {
  62912. source: "./media/characters/cirkazi/front.svg",
  62913. extra: 489/477,
  62914. bottom: 0/489
  62915. }
  62916. },
  62917. },
  62918. [
  62919. {
  62920. name: "Normal",
  62921. height: math.unit(1.6, "meters")
  62922. },
  62923. {
  62924. name: "Macro",
  62925. height: math.unit(800, "feet"),
  62926. default: true
  62927. },
  62928. ]
  62929. ))
  62930. characterMakers.push(() => makeCharacter(
  62931. { name: "Corrin Cavelli", species: ["human"], tags: ["anthro"] },
  62932. {
  62933. front: {
  62934. height: math.unit(5 + 10/12, "feet"),
  62935. weight: math.unit(145, "lb"),
  62936. name: "Front",
  62937. image: {
  62938. source: "./media/characters/corrin-cavelli/front.svg",
  62939. extra: 483/464,
  62940. bottom: 6/489
  62941. }
  62942. },
  62943. },
  62944. [
  62945. {
  62946. name: "Human",
  62947. height: math.unit(5 + 10/12, "feet")
  62948. },
  62949. {
  62950. name: "Giant",
  62951. height: math.unit(210, "feet"),
  62952. default: true
  62953. },
  62954. ]
  62955. ))
  62956. characterMakers.push(() => makeCharacter(
  62957. { name: "Lori Lopez", species: ["human"], tags: ["anthro"] },
  62958. {
  62959. back: {
  62960. height: math.unit(5 + 6/12, "feet"),
  62961. weight: math.unit(115, "lb"),
  62962. name: "Back",
  62963. image: {
  62964. source: "./media/characters/lori-lopez/back.svg",
  62965. extra: 483/474,
  62966. bottom: 6/489
  62967. }
  62968. },
  62969. },
  62970. [
  62971. {
  62972. name: "Human",
  62973. height: math.unit(5 + 6/12, "feet")
  62974. },
  62975. {
  62976. name: "Macro",
  62977. height: math.unit(198, "feet"),
  62978. default: true
  62979. },
  62980. ]
  62981. ))
  62982. characterMakers.push(() => makeCharacter(
  62983. { name: "Sylvia Beauregard", species: ["human"], tags: ["anthro"] },
  62984. {
  62985. front: {
  62986. height: math.unit(6, "feet"),
  62987. weight: math.unit(220, "lb"),
  62988. name: "Front",
  62989. image: {
  62990. source: "./media/characters/sylvia-beauregard/front.svg",
  62991. extra: 483/479,
  62992. bottom: 6/489
  62993. }
  62994. },
  62995. },
  62996. [
  62997. {
  62998. name: "Macro",
  62999. height: math.unit(2071, "feet"),
  63000. default: true
  63001. },
  63002. ]
  63003. ))
  63004. characterMakers.push(() => makeCharacter(
  63005. { name: "Akiko Takahashi", species: ["human"], tags: ["anthro"] },
  63006. {
  63007. back: {
  63008. height: math.unit(5 + 6/12, "feet"),
  63009. weight: math.unit(160, "lb"),
  63010. name: "Back",
  63011. image: {
  63012. source: "./media/characters/akiko-takahashi/back.svg",
  63013. extra: 459/454,
  63014. bottom: 27/486
  63015. }
  63016. },
  63017. },
  63018. [
  63019. {
  63020. name: "Human",
  63021. height: math.unit(5 + 6/12, "feet")
  63022. },
  63023. {
  63024. name: "Macro",
  63025. height: math.unit(198, "feet"),
  63026. default: true
  63027. },
  63028. {
  63029. name: "Megamacro",
  63030. height: math.unit(7128, "feet")
  63031. },
  63032. ]
  63033. ))
  63034. characterMakers.push(() => makeCharacter(
  63035. { name: "Velvet Garza", species: ["human"], tags: ["anthro"] },
  63036. {
  63037. front: {
  63038. height: math.unit(6, "feet"),
  63039. weight: math.unit(140, "lb"),
  63040. name: "Front",
  63041. image: {
  63042. source: "./media/characters/velvet-garza/front.svg",
  63043. extra: 480/462,
  63044. bottom: 7/487
  63045. }
  63046. },
  63047. },
  63048. [
  63049. {
  63050. name: "Macro",
  63051. height: math.unit(37, "feet"),
  63052. default: true
  63053. },
  63054. ]
  63055. ))
  63056. characterMakers.push(() => makeCharacter(
  63057. { name: "Gaia", species: ["deity", "human"], tags: ["anthro"] },
  63058. {
  63059. front: {
  63060. height: math.unit(7 + 6/12, "feet"),
  63061. weight: math.unit(400, "lb"),
  63062. name: "Front",
  63063. image: {
  63064. source: "./media/characters/gaia/front.svg",
  63065. extra: 474/463,
  63066. bottom: 13/487
  63067. }
  63068. },
  63069. },
  63070. [
  63071. {
  63072. name: "MiniMacro",
  63073. height: math.unit(7 + 6/12, "feet")
  63074. },
  63075. {
  63076. name: "GigaMacro",
  63077. height: math.unit(14500, "feet"),
  63078. default: true
  63079. },
  63080. ]
  63081. ))
  63082. characterMakers.push(() => makeCharacter(
  63083. { name: "Tim", species: ["rabbit"], tags: ["anthro"] },
  63084. {
  63085. front: {
  63086. height: math.unit(6, "feet"),
  63087. weight: math.unit(150, "lb"),
  63088. name: "Front",
  63089. image: {
  63090. source: "./media/characters/tim/front.svg",
  63091. extra: 1878/1743,
  63092. bottom: 9/1887
  63093. }
  63094. },
  63095. frontDressed: {
  63096. height: math.unit(6, "feet"),
  63097. weight: math.unit(150, "lb"),
  63098. name: "Front (Dressed)",
  63099. image: {
  63100. source: "./media/characters/tim/front-dressed.svg",
  63101. extra: 1765/1485,
  63102. bottom: 48/1813
  63103. }
  63104. },
  63105. backDressed: {
  63106. height: math.unit(6, "feet"),
  63107. weight: math.unit(150, "lb"),
  63108. name: "Back (Dressed)",
  63109. image: {
  63110. source: "./media/characters/tim/back-dressed.svg",
  63111. extra: 1750/1465,
  63112. bottom: 25/1775
  63113. }
  63114. },
  63115. dick: {
  63116. height: math.unit(1.5, "feet"),
  63117. weight: math.unit(6, "lb"),
  63118. name: "Dick",
  63119. image: {
  63120. source: "./media/characters/tim/dick.svg"
  63121. }
  63122. },
  63123. hand: {
  63124. height: math.unit(0.522, "feet"),
  63125. name: "Hand",
  63126. image: {
  63127. source: "./media/characters/tim/hand.svg"
  63128. }
  63129. },
  63130. palm: {
  63131. height: math.unit(0.48, "feet"),
  63132. name: "Palm",
  63133. image: {
  63134. source: "./media/characters/tim/palm.svg"
  63135. }
  63136. },
  63137. paw: {
  63138. height: math.unit(0.9, "feet"),
  63139. name: "Paw",
  63140. image: {
  63141. source: "./media/characters/tim/paw.svg"
  63142. }
  63143. },
  63144. sole: {
  63145. height: math.unit(0.88, "feet"),
  63146. name: "Sole",
  63147. image: {
  63148. source: "./media/characters/tim/sole.svg"
  63149. }
  63150. },
  63151. },
  63152. [
  63153. {
  63154. name: "Macro",
  63155. height: math.unit(1000, "feet")
  63156. },
  63157. {
  63158. name: "Megamacro",
  63159. height: math.unit(10000, "feet"),
  63160. default: true
  63161. },
  63162. {
  63163. name: "Megamacro+",
  63164. height: math.unit(50000, "feet")
  63165. },
  63166. {
  63167. name: "Gigamacro",
  63168. height: math.unit(150000, "km")
  63169. },
  63170. ]
  63171. ))
  63172. characterMakers.push(() => makeCharacter(
  63173. { name: "Abel Delreoux", species: ["maine-coon"], tags: ["anthro"] },
  63174. {
  63175. front: {
  63176. height: math.unit(5 + 8/12, "feet"),
  63177. weight: math.unit(170, "lb"),
  63178. name: "Front",
  63179. image: {
  63180. source: "./media/characters/abel-delreoux/front.svg",
  63181. extra: 1615/1500,
  63182. bottom: 82/1697
  63183. }
  63184. },
  63185. back: {
  63186. height: math.unit(5 + 8/12, "feet"),
  63187. weight: math.unit(170, "lb"),
  63188. name: "Back",
  63189. image: {
  63190. source: "./media/characters/abel-delreoux/back.svg",
  63191. extra: 1644/1534,
  63192. bottom: 24/1668
  63193. }
  63194. },
  63195. casual: {
  63196. height: math.unit(5 + 8/12, "feet"),
  63197. weight: math.unit(170, "lb"),
  63198. name: "Casual",
  63199. image: {
  63200. source: "./media/characters/abel-delreoux/casual.svg",
  63201. extra: 1716/1598,
  63202. bottom: 29/1745
  63203. }
  63204. },
  63205. sleepy: {
  63206. height: math.unit(5 + 8/12, "feet"),
  63207. weight: math.unit(170, "lb"),
  63208. name: "Sleepy",
  63209. image: {
  63210. source: "./media/characters/abel-delreoux/sleepy.svg",
  63211. extra: 1649/1573,
  63212. bottom: 22/1671
  63213. }
  63214. },
  63215. fem: {
  63216. height: math.unit(5 + 8/12, "feet"),
  63217. weight: math.unit(170, "lb"),
  63218. name: "Fem",
  63219. image: {
  63220. source: "./media/characters/abel-delreoux/fem.svg",
  63221. extra: 1680/1564,
  63222. bottom: 17/1697
  63223. }
  63224. },
  63225. hand: {
  63226. height: math.unit(0.78, "feet"),
  63227. name: "Hand",
  63228. image: {
  63229. source: "./media/characters/abel-delreoux/hand.svg"
  63230. }
  63231. },
  63232. paw: {
  63233. height: math.unit(0.78, "feet"),
  63234. name: "Paw",
  63235. image: {
  63236. source: "./media/characters/abel-delreoux/paw.svg"
  63237. }
  63238. },
  63239. },
  63240. [
  63241. {
  63242. name: "Normal",
  63243. height: math.unit(5 + 8/12, "feet"),
  63244. default: true
  63245. },
  63246. ]
  63247. ))
  63248. characterMakers.push(() => makeCharacter(
  63249. { name: "Meus", species: ["phoenix"], tags: ["anthro"] },
  63250. {
  63251. front: {
  63252. height: math.unit(6, "feet"),
  63253. weight: math.unit(159, "lb"),
  63254. name: "Front",
  63255. image: {
  63256. source: "./media/characters/meus/front.svg",
  63257. extra: 938/843,
  63258. bottom: 37/975
  63259. }
  63260. },
  63261. back: {
  63262. height: math.unit(6, "feet"),
  63263. weight: math.unit(159, "lb"),
  63264. name: "Back",
  63265. image: {
  63266. source: "./media/characters/meus/back.svg",
  63267. extra: 967/873,
  63268. bottom: 12/979
  63269. }
  63270. },
  63271. },
  63272. [
  63273. {
  63274. name: "Micro",
  63275. height: math.unit(2, "inches")
  63276. },
  63277. {
  63278. name: "Mini",
  63279. height: math.unit(6, "inches")
  63280. },
  63281. {
  63282. name: "Normal",
  63283. height: math.unit(6, "feet"),
  63284. default: true
  63285. },
  63286. {
  63287. name: "Macro",
  63288. height: math.unit(84, "feet")
  63289. },
  63290. ]
  63291. ))
  63292. characterMakers.push(() => makeCharacter(
  63293. { name: "Yamato", species: ["kobold"], tags: ["anthro"] },
  63294. {
  63295. front: {
  63296. height: math.unit(60, "cm"),
  63297. weight: math.unit(18, "kg"),
  63298. name: "Front",
  63299. image: {
  63300. source: "./media/characters/yamato/front.svg",
  63301. extra: 733/688,
  63302. bottom: 29/762
  63303. }
  63304. },
  63305. },
  63306. [
  63307. {
  63308. name: "Micro",
  63309. height: math.unit(6, "cm")
  63310. },
  63311. {
  63312. name: "Normal",
  63313. height: math.unit(60, "cm"),
  63314. default: true
  63315. },
  63316. ]
  63317. ))
  63318. characterMakers.push(() => makeCharacter(
  63319. { name: "Barus", species: ["deity"], tags: ["anthro"] },
  63320. {
  63321. front: {
  63322. height: math.unit(9, "feet"),
  63323. weight: math.unit(518, "lb"),
  63324. name: "Front",
  63325. image: {
  63326. source: "./media/characters/barus/front.svg",
  63327. extra: 1877/1795,
  63328. bottom: 55/1932
  63329. }
  63330. },
  63331. },
  63332. [
  63333. {
  63334. name: "Base Height",
  63335. height: math.unit(9, "feet"),
  63336. default: true
  63337. },
  63338. {
  63339. name: "Large",
  63340. height: math.unit(18, "feet")
  63341. },
  63342. {
  63343. name: "Giant",
  63344. height: math.unit(100, "feet")
  63345. },
  63346. {
  63347. name: "Huge",
  63348. height: math.unit(500, "feet")
  63349. },
  63350. {
  63351. name: "Enormous",
  63352. height: math.unit(300, "meters")
  63353. },
  63354. {
  63355. name: "Deity Among Man",
  63356. height: math.unit(3000, "meters")
  63357. },
  63358. ]
  63359. ))
  63360. characterMakers.push(() => makeCharacter(
  63361. { name: "Yari", species: ["sergal"], tags: ["anthro"] },
  63362. {
  63363. front: {
  63364. height: math.unit(1.7, "meters"),
  63365. name: "Front",
  63366. image: {
  63367. source: "./media/characters/yari/front.svg",
  63368. extra: 1210/1125,
  63369. bottom: 283/1493
  63370. }
  63371. },
  63372. back: {
  63373. height: math.unit(1.7, "meters"),
  63374. name: "Back",
  63375. image: {
  63376. source: "./media/characters/yari/back.svg",
  63377. extra: 1240/1195,
  63378. bottom: 180/1420
  63379. }
  63380. },
  63381. head: {
  63382. height: math.unit(1.26, "feet"),
  63383. name: "Head",
  63384. image: {
  63385. source: "./media/characters/yari/head.svg"
  63386. }
  63387. },
  63388. },
  63389. [
  63390. {
  63391. name: "Nano",
  63392. height: math.unit(0.5, "mm")
  63393. },
  63394. {
  63395. name: "Micro",
  63396. height: math.unit(3, "inches")
  63397. },
  63398. {
  63399. name: "Short",
  63400. height: math.unit(1.5, "meters")
  63401. },
  63402. {
  63403. name: "Norm",
  63404. height: math.unit(1.7, "meters"),
  63405. default: true
  63406. },
  63407. ]
  63408. ))
  63409. characterMakers.push(() => makeCharacter(
  63410. { name: "Salem", species: ["mouse"], tags: ["anthro"] },
  63411. {
  63412. front: {
  63413. height: math.unit(5 + 2/12, "feet"),
  63414. weight: math.unit(110, "lb"),
  63415. name: "Front",
  63416. image: {
  63417. source: "./media/characters/salem/front.svg",
  63418. extra: 1895/1800,
  63419. bottom: 23/1918
  63420. }
  63421. },
  63422. back: {
  63423. height: math.unit(5 + 2/12, "feet"),
  63424. weight: math.unit(110, "lb"),
  63425. name: "Back",
  63426. image: {
  63427. source: "./media/characters/salem/back.svg",
  63428. extra: 1875/1802,
  63429. bottom: 20/1895
  63430. }
  63431. },
  63432. head: {
  63433. height: math.unit(1, "feet"),
  63434. name: "Head",
  63435. image: {
  63436. source: "./media/characters/salem/head.svg"
  63437. }
  63438. },
  63439. paw: {
  63440. height: math.unit(0.59, "feet"),
  63441. name: "Paw",
  63442. image: {
  63443. source: "./media/characters/salem/paw.svg"
  63444. }
  63445. },
  63446. beans: {
  63447. height: math.unit(0.66, "feet"),
  63448. name: "Beans",
  63449. image: {
  63450. source: "./media/characters/salem/beans.svg"
  63451. }
  63452. },
  63453. eye: {
  63454. height: math.unit(0.224, "feet"),
  63455. name: "Eye",
  63456. image: {
  63457. source: "./media/characters/salem/eye.svg"
  63458. }
  63459. },
  63460. semiferal: {
  63461. height: math.unit(2.3, "feet"),
  63462. name: "Semiferal",
  63463. image: {
  63464. source: "./media/characters/salem/semiferal.svg",
  63465. extra: 914/839,
  63466. bottom: 32/946
  63467. }
  63468. },
  63469. },
  63470. [
  63471. {
  63472. name: "Micro",
  63473. height: math.unit(4, "inches")
  63474. },
  63475. {
  63476. name: "Normal",
  63477. height: math.unit(5 + 2/12, "feet"),
  63478. default: true
  63479. },
  63480. {
  63481. name: "Macro",
  63482. height: math.unit(108, "feet")
  63483. },
  63484. {
  63485. name: "Macro+",
  63486. height: math.unit(1500, "feet")
  63487. },
  63488. ]
  63489. ))
  63490. characterMakers.push(() => makeCharacter(
  63491. { name: "Kii", species: ["dragon", "dog"], tags: ["anthro"] },
  63492. {
  63493. front: {
  63494. height: math.unit(7 + 6/12, "feet"),
  63495. weight: math.unit(600, "kg"),
  63496. preyCapacity: math.unit(10, "people"),
  63497. name: "Front",
  63498. image: {
  63499. source: "./media/characters/kii/front.svg",
  63500. extra: 3296/3087,
  63501. bottom: 130/3426
  63502. }
  63503. },
  63504. },
  63505. [
  63506. {
  63507. name: "Normal",
  63508. height: math.unit(7 + 6/12, "feet"),
  63509. default: true
  63510. },
  63511. ]
  63512. ))
  63513. characterMakers.push(() => makeCharacter(
  63514. { name: "Taffy", species: ["saltwater-crocodile"], tags: ["anthro"] },
  63515. {
  63516. front: {
  63517. height: math.unit(2, "meters"),
  63518. weight: math.unit(200, "lb"),
  63519. name: "Front",
  63520. image: {
  63521. source: "./media/characters/taffy/front.svg",
  63522. extra: 1666/1618,
  63523. bottom: 157/1823
  63524. }
  63525. },
  63526. back: {
  63527. height: math.unit(2, "meters"),
  63528. weight: math.unit(200, "lb"),
  63529. name: "Back",
  63530. image: {
  63531. source: "./media/characters/taffy/back.svg",
  63532. extra: 1635/1583,
  63533. bottom: 153/1788
  63534. }
  63535. },
  63536. },
  63537. [
  63538. {
  63539. name: "Normal",
  63540. height: math.unit(2, "meters"),
  63541. default: true
  63542. },
  63543. ]
  63544. ))
  63545. characterMakers.push(() => makeCharacter(
  63546. { name: "Barley", species: ["eastern-grey-kangaroo"], tags: ["anthro"] },
  63547. {
  63548. front: {
  63549. height: math.unit(1.55, "meters"),
  63550. weight: math.unit(60, "kg"),
  63551. name: "Front",
  63552. image: {
  63553. source: "./media/characters/barley/front.svg",
  63554. extra: 1520/1340,
  63555. bottom: 47/1567
  63556. }
  63557. },
  63558. back: {
  63559. height: math.unit(1.55, "meters"),
  63560. weight: math.unit(60, "kg"),
  63561. name: "Back",
  63562. image: {
  63563. source: "./media/characters/barley/back.svg",
  63564. extra: 1543/1341,
  63565. bottom: 12/1555
  63566. }
  63567. },
  63568. feet: {
  63569. height: math.unit(2.18, "feet"),
  63570. name: "Feet",
  63571. image: {
  63572. source: "./media/characters/barley/feet.svg"
  63573. }
  63574. },
  63575. },
  63576. [
  63577. {
  63578. name: "Normal",
  63579. height: math.unit(1.55, "meters"),
  63580. default: true
  63581. },
  63582. ]
  63583. ))
  63584. characterMakers.push(() => makeCharacter(
  63585. { name: "Lydia Lopez", species: ["shark"], tags: ["anthro"] },
  63586. {
  63587. dressed: {
  63588. height: math.unit(6, "feet"),
  63589. name: "Dressed",
  63590. image: {
  63591. source: "./media/characters/lydia-lopez/dressed.svg",
  63592. extra: 1319/1277,
  63593. bottom: 90/1409
  63594. }
  63595. },
  63596. nude: {
  63597. height: math.unit(6, "feet"),
  63598. name: "Nude",
  63599. image: {
  63600. source: "./media/characters/lydia-lopez/nude.svg",
  63601. extra: 1319/1277,
  63602. bottom: 90/1409
  63603. }
  63604. },
  63605. },
  63606. [
  63607. {
  63608. name: "Normal",
  63609. height: math.unit(6, "feet"),
  63610. default: true
  63611. },
  63612. {
  63613. name: "Maximum",
  63614. height: math.unit(2101, "feet")
  63615. },
  63616. ]
  63617. ))
  63618. characterMakers.push(() => makeCharacter(
  63619. { name: "Kira (Slime)", species: ["slime"], tags: ["goo"] },
  63620. {
  63621. front: {
  63622. height: math.unit(5 + 4/12, "feet"),
  63623. weight: math.unit(250, "lb"),
  63624. volume: math.unit(20, "gallons"),
  63625. name: "Front",
  63626. image: {
  63627. source: "./media/characters/kira-slime/front.svg",
  63628. extra: 442/403,
  63629. bottom: 18/460
  63630. }
  63631. },
  63632. frontNsfw: {
  63633. height: math.unit(5 + 4/12, "feet"),
  63634. weight: math.unit(250, "lb"),
  63635. volume: math.unit(20, "gallons"),
  63636. name: "Front (NSFW)",
  63637. image: {
  63638. source: "./media/characters/kira-slime/front-nsfw.svg",
  63639. extra: 442/403,
  63640. bottom: 18/460
  63641. }
  63642. },
  63643. },
  63644. [
  63645. {
  63646. name: "Droplet",
  63647. height: math.unit(0.0464452, "feet")
  63648. },
  63649. {
  63650. name: "Pint",
  63651. height: math.unit(0.9824, "feet")
  63652. },
  63653. {
  63654. name: "Bucket",
  63655. height: math.unit(2.83, "feet")
  63656. },
  63657. {
  63658. name: "Normal",
  63659. height: math.unit(5 + 4/12, "feet"),
  63660. default: true
  63661. },
  63662. {
  63663. name: "Tub",
  63664. height: math.unit(8.46614, "feet")
  63665. },
  63666. {
  63667. name: "Pool",
  63668. height: math.unit(31.1895, "feet")
  63669. },
  63670. {
  63671. name: "Pond",
  63672. height: math.unit(170.349, "feet")
  63673. },
  63674. {
  63675. name: "Lake",
  63676. height: math.unit(289334, "feet")
  63677. },
  63678. {
  63679. name: "Ocean",
  63680. height: math.unit(1.11940e+7, "feet")
  63681. },
  63682. ]
  63683. ))
  63684. characterMakers.push(() => makeCharacter(
  63685. { name: "Holiday", species: ["fennec-fox", "deer"], tags: ["anthro"] },
  63686. {
  63687. front: {
  63688. height: math.unit(5 + 6/12, "feet"),
  63689. weight: math.unit(120, "lb"),
  63690. name: "Front",
  63691. image: {
  63692. source: "./media/characters/holiday/front.svg",
  63693. extra: 456/403,
  63694. bottom: 4/460
  63695. }
  63696. },
  63697. back: {
  63698. height: math.unit(5 + 6/12, "feet"),
  63699. weight: math.unit(120, "lb"),
  63700. name: "Back",
  63701. image: {
  63702. source: "./media/characters/holiday/back.svg",
  63703. extra: 450/404,
  63704. bottom: 12/462
  63705. }
  63706. },
  63707. head: {
  63708. height: math.unit(2.3, "feet"),
  63709. name: "Head",
  63710. image: {
  63711. source: "./media/characters/holiday/head.svg"
  63712. }
  63713. },
  63714. },
  63715. [
  63716. {
  63717. name: "Normal",
  63718. height: math.unit(5 + 6/12, "feet"),
  63719. default: true
  63720. },
  63721. {
  63722. name: "Macro",
  63723. height: math.unit(6574.25, "feet")
  63724. },
  63725. ]
  63726. ))
  63727. characterMakers.push(() => makeCharacter(
  63728. { name: "Camina", species: ["latenivenatrix"], tags: ["anthro"] },
  63729. {
  63730. front: {
  63731. height: math.unit(6 + 2/12, "feet"),
  63732. weight: math.unit(200, "lb"),
  63733. name: "Front",
  63734. image: {
  63735. source: "./media/characters/camina/front.svg",
  63736. extra: 1048/985,
  63737. bottom: 30/1078
  63738. }
  63739. },
  63740. },
  63741. [
  63742. {
  63743. name: "Normal",
  63744. height: math.unit(6 + 2/12, "feet"),
  63745. default: true
  63746. },
  63747. ]
  63748. ))
  63749. characterMakers.push(() => makeCharacter(
  63750. { name: "Smuck", species: ["duck"], tags: ["feral"] },
  63751. {
  63752. front: {
  63753. height: math.unit(30, "cm"),
  63754. weight: math.unit(420, "grams"),
  63755. name: "Front",
  63756. image: {
  63757. source: "./media/characters/smuck/front.svg",
  63758. extra: 379/345,
  63759. bottom: 36/415
  63760. }
  63761. },
  63762. },
  63763. [
  63764. {
  63765. name: "Smuck-Sized",
  63766. height: math.unit(30, "cm"),
  63767. default: true
  63768. },
  63769. ]
  63770. ))
  63771. //characters
  63772. function makeCharacters() {
  63773. const results = [];
  63774. characterMakers.forEach(character => {
  63775. results.push(character());
  63776. });
  63777. return results;
  63778. }