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.
 
 
 

68123 lines
1.7 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity,
  51. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. parents: [
  143. "video-games"
  144. ]
  145. },
  146. tiger: {
  147. name: "Tiger",
  148. parents: [
  149. "cat"
  150. ]
  151. },
  152. cat: {
  153. name: "Cat",
  154. parents: [
  155. "feliform"
  156. ]
  157. },
  158. "blue-jay": {
  159. name: "Blue Jay",
  160. parents: [
  161. "corvid"
  162. ]
  163. },
  164. wolf: {
  165. name: "Wolf",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. coyote: {
  171. name: "Coyote",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. raccoon: {
  177. name: "Raccoon",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. weasel: {
  183. name: "Weasel",
  184. parents: [
  185. "mustelid"
  186. ]
  187. },
  188. "red-panda": {
  189. name: "Red Panda",
  190. parents: [
  191. "mammal"
  192. ]
  193. },
  194. dolphin: {
  195. name: "Dolphin",
  196. parents: [
  197. "mammal"
  198. ]
  199. },
  200. "african-wild-dog": {
  201. name: "African Wild Dog",
  202. parents: [
  203. "canine"
  204. ]
  205. },
  206. "hyena": {
  207. name: "Hyena",
  208. parents: [
  209. "feliform"
  210. ]
  211. },
  212. "carbuncle": {
  213. name: "Carbuncle",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. bat: {
  219. name: "Bat",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "leaf-nosed-bat": {
  225. name: "Leaf-Nosed Bat",
  226. parents: [
  227. "bat"
  228. ]
  229. },
  230. "fish": {
  231. name: "Fish",
  232. parents: [
  233. "animal",
  234. "aquatic"
  235. ]
  236. },
  237. "ram": {
  238. name: "Ram",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "demon": {
  244. name: "Demon",
  245. parents: [
  246. "supernatural"
  247. ]
  248. },
  249. "cougar": {
  250. name: "Cougar",
  251. parents: [
  252. "cat"
  253. ]
  254. },
  255. "goat": {
  256. name: "Goat",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "lion": {
  262. name: "Lion",
  263. parents: [
  264. "cat"
  265. ]
  266. },
  267. "harpy-eager": {
  268. name: "Harpy Eagle",
  269. parents: [
  270. "avian"
  271. ]
  272. },
  273. "deer": {
  274. name: "Deer",
  275. parents: [
  276. "mammal"
  277. ]
  278. },
  279. "phoenix": {
  280. name: "Phoenix",
  281. parents: [
  282. "avian"
  283. ]
  284. },
  285. "aeromorph": {
  286. name: "Aeromorph",
  287. parents: [
  288. "machine"
  289. ]
  290. },
  291. "machine": {
  292. name: "Machine",
  293. },
  294. "android": {
  295. name: "Android",
  296. parents: [
  297. "machine"
  298. ]
  299. },
  300. "jackal": {
  301. name: "Jackal",
  302. parents: [
  303. "canine"
  304. ]
  305. },
  306. "corvid": {
  307. name: "Corvid",
  308. parents: [
  309. "passerine"
  310. ]
  311. },
  312. "pharaoh-hound": {
  313. name: "Pharaoh Hound",
  314. parents: [
  315. "dog"
  316. ]
  317. },
  318. "skunk": {
  319. name: "Skunk",
  320. parents: [
  321. "mammal"
  322. ]
  323. },
  324. "shark": {
  325. name: "Shark",
  326. parents: [
  327. "fish"
  328. ]
  329. },
  330. "black-panther": {
  331. name: "Black Panther",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "umbra": {
  337. name: "Umbra",
  338. parents: [
  339. "animal"
  340. ]
  341. },
  342. "raven": {
  343. name: "Raven",
  344. parents: [
  345. "corvid"
  346. ]
  347. },
  348. "snow-leopard": {
  349. name: "Snow Leopard",
  350. parents: [
  351. "cat"
  352. ]
  353. },
  354. "barbary-lion": {
  355. name: "Barbary Lion",
  356. parents: [
  357. "lion"
  358. ]
  359. },
  360. "dra'gal": {
  361. name: "Dra'Gal",
  362. parents: [
  363. "mammal"
  364. ]
  365. },
  366. "german-shepherd": {
  367. name: "German Shepherd",
  368. parents: [
  369. "dog"
  370. ]
  371. },
  372. "bayleef": {
  373. name: "Bayleef",
  374. parents: [
  375. "pokemon",
  376. "plant",
  377. "animal"
  378. ]
  379. },
  380. "mouse": {
  381. name: "Mouse",
  382. parents: [
  383. "rodent"
  384. ]
  385. },
  386. "rat": {
  387. name: "Rat",
  388. parents: [
  389. "mammal"
  390. ]
  391. },
  392. "hoshiko-beast": {
  393. name: "Hoshiko Beast",
  394. parents: ["animal"]
  395. },
  396. "snow-jugani": {
  397. name: "Snow Jugani",
  398. parents: ["cat"]
  399. },
  400. "patamon": {
  401. name: "Patamon",
  402. parents: ["digimon", "guinea-pig"]
  403. },
  404. "digimon": {
  405. name: "Digimon",
  406. parents: [
  407. "video-games"
  408. ]
  409. },
  410. "jugani": {
  411. name: "Jugani",
  412. parents: ["cat"]
  413. },
  414. "luxray": {
  415. name: "Luxray",
  416. parents: ["pokemon", "lion"]
  417. },
  418. "mech": {
  419. name: "Mech",
  420. parents: ["machine"]
  421. },
  422. "zoid": {
  423. name: "Zoid",
  424. parents: ["mech"]
  425. },
  426. "monster": {
  427. name: "Monster",
  428. parents: ["animal"]
  429. },
  430. "foo-dog": {
  431. name: "Foo Dog",
  432. parents: ["mammal"]
  433. },
  434. "elephant": {
  435. name: "Elephant",
  436. parents: ["mammal"]
  437. },
  438. "eagle": {
  439. name: "Eagle",
  440. parents: ["bird-of-prey"]
  441. },
  442. "cow": {
  443. name: "Cow",
  444. parents: ["mammal"]
  445. },
  446. "crocodile": {
  447. name: "Crocodile",
  448. parents: ["reptile"]
  449. },
  450. "borzoi": {
  451. name: "Borzoi",
  452. parents: ["dog"]
  453. },
  454. "snake": {
  455. name: "Snake",
  456. parents: ["reptile"]
  457. },
  458. "horned-bush-viper": {
  459. name: "Horned Bush Viper",
  460. parents: ["viper"]
  461. },
  462. "cobra": {
  463. name: "Cobra",
  464. parents: ["snake"]
  465. },
  466. "harpy-eagle": {
  467. name: "Harpy Eagle",
  468. parents: ["eagle"]
  469. },
  470. "raptor": {
  471. name: "Raptor",
  472. parents: ["dinosaur"]
  473. },
  474. "dinosaur": {
  475. name: "Dinosaur",
  476. parents: ["saurian"]
  477. },
  478. "saurian": {
  479. name: "Saurian",
  480. parents: ["lizard"]
  481. },
  482. "veilhound": {
  483. name: "Veilhound",
  484. parents: ["hellhound"]
  485. },
  486. "hellhound": {
  487. name: "Hellhound",
  488. parents: ["canine", "demon"]
  489. },
  490. "insect": {
  491. name: "Insect",
  492. parents: ["animal"]
  493. },
  494. "beetle": {
  495. name: "Beetle",
  496. parents: ["insect"]
  497. },
  498. "moth": {
  499. name: "Moth",
  500. parents: ["insect"]
  501. },
  502. "eastern-dragon": {
  503. name: "Eastern Dragon",
  504. parents: ["dragon"]
  505. },
  506. "jaguar": {
  507. name: "Jaguar",
  508. parents: ["cat"]
  509. },
  510. "horse": {
  511. name: "Horse",
  512. parents: ["mammal"]
  513. },
  514. "sergal": {
  515. name: "Sergal",
  516. parents: ["mammal", "avian", "vilous"]
  517. },
  518. "gryphon": {
  519. name: "Gryphon",
  520. parents: ["lion", "eagle"]
  521. },
  522. "robot": {
  523. name: "Robot",
  524. parents: ["machine"]
  525. },
  526. "medihound": {
  527. name: "Medihound",
  528. parents: ["robot", "dog"]
  529. },
  530. "sylveon": {
  531. name: "Sylveon",
  532. parents: ["pokemon"]
  533. },
  534. "catgirl": {
  535. name: "Catgirl",
  536. parents: ["mammal"]
  537. },
  538. "cowgirl": {
  539. name: "Cowgirl",
  540. parents: ["mammal"]
  541. },
  542. "pony": {
  543. name: "Pony",
  544. parents: ["horse"]
  545. },
  546. "rabbit": {
  547. name: "Rabbit",
  548. parents: ["leporidae"]
  549. },
  550. "fennec-fox": {
  551. name: "Fennec Fox",
  552. parents: ["fox"]
  553. },
  554. "azodian": {
  555. name: "Azodian",
  556. parents: ["mouse"]
  557. },
  558. "shiba-inu": {
  559. name: "Shiba Inu",
  560. parents: ["dog"]
  561. },
  562. "changeling": {
  563. name: "Changeling",
  564. parents: ["insect"]
  565. },
  566. "cheetah": {
  567. name: "Cheetah",
  568. parents: ["cat"]
  569. },
  570. "golden-jackal": {
  571. name: "Golden Jackal",
  572. parents: ["jackal"]
  573. },
  574. "manectric": {
  575. name: "Manectric",
  576. parents: ["pokemon", "wolf"]
  577. },
  578. "rat": {
  579. name: "Rat",
  580. parents: ["rodent"]
  581. },
  582. "rodent": {
  583. name: "Rodent",
  584. parents: ["mammal"]
  585. },
  586. "octocoon": {
  587. name: "Octocoon",
  588. parents: ["raccoon", "octopus"]
  589. },
  590. "octopus": {
  591. name: "Octopus",
  592. parents: ["fish"]
  593. },
  594. "werewolf": {
  595. name: "Werewolf",
  596. parents: ["wolf", "werebeast"]
  597. },
  598. "werebeast": {
  599. name: "Werebeast",
  600. parents: ["monster"]
  601. },
  602. "meerkat": {
  603. name: "Meerkat",
  604. parents: ["mammal"]
  605. },
  606. "human": {
  607. name: "Human",
  608. parents: ["mammal", "humanoid"]
  609. },
  610. "geth": {
  611. name: "Geth",
  612. parents: ["android"]
  613. },
  614. "husky": {
  615. name: "Husky",
  616. parents: ["dog"]
  617. },
  618. "long-eared-bat": {
  619. name: "Long Eared Bat",
  620. parents: ["bat"]
  621. },
  622. "lizard": {
  623. name: "Lizard",
  624. parents: ["reptile"]
  625. },
  626. "salamander": {
  627. name: "Salamander",
  628. parents: ["lizard"]
  629. },
  630. "chameleon": {
  631. name: "Chameleon",
  632. parents: ["lizard"]
  633. },
  634. "gecko": {
  635. name: "Gecko",
  636. parents: ["lizard"]
  637. },
  638. "kobold": {
  639. name: "Kobold",
  640. parents: ["reptile"]
  641. },
  642. "charizard": {
  643. name: "Charizard",
  644. parents: ["pokemon", "dragon"]
  645. },
  646. "lugia": {
  647. name: "Lugia",
  648. parents: ["pokemon", "avian"]
  649. },
  650. "cerberus": {
  651. name: "Cerberus",
  652. parents: ["dog"]
  653. },
  654. "tyrantrum": {
  655. name: "Tyrantrum",
  656. parents: ["pokemon"]
  657. },
  658. "lemur": {
  659. name: "Lemur",
  660. parents: ["mammal"]
  661. },
  662. "kelpie": {
  663. name: "Kelpie",
  664. parents: ["horse", "monster"]
  665. },
  666. "labrador": {
  667. name: "Labrador",
  668. parents: ["dog"]
  669. },
  670. "sylveon": {
  671. name: "Sylveon",
  672. parents: ["eeveelution"]
  673. },
  674. "eeveelution": {
  675. name: "Eeveelution",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "polar-bear": {
  679. name: "Polar Bear",
  680. parents: ["bear"]
  681. },
  682. "bear": {
  683. name: "Bear",
  684. parents: ["mammal"]
  685. },
  686. "absol": {
  687. name: "Absol",
  688. parents: ["pokemon", "cat"]
  689. },
  690. "wolver": {
  691. name: "Wolver",
  692. parents: ["mammal"]
  693. },
  694. "rottweiler": {
  695. name: "Rottweiler",
  696. parents: ["dog"]
  697. },
  698. "zebra": {
  699. name: "Zebra",
  700. parents: ["horse"]
  701. },
  702. "yoshi": {
  703. name: "Yoshi",
  704. parents: ["dinosaur"]
  705. },
  706. "lynx": {
  707. name: "Lynx",
  708. parents: ["cat"]
  709. },
  710. "unknown": {
  711. name: "Unknown",
  712. parents: []
  713. },
  714. "thylacine": {
  715. name: "Thylacine",
  716. parents: ["mammal"]
  717. },
  718. "gabumon": {
  719. name: "Gabumon",
  720. parents: ["digimon"]
  721. },
  722. "border-collie": {
  723. name: "Border Collie",
  724. parents: ["dog"]
  725. },
  726. "imp": {
  727. name: "Imp",
  728. parents: ["demon"]
  729. },
  730. "kangaroo": {
  731. name: "Kangaroo",
  732. parents: ["marsupial"]
  733. },
  734. "renamon": {
  735. name: "Renamon",
  736. parents: ["digimon", "fox"]
  737. },
  738. "candy-orca-dragon": {
  739. name: "Candy Orca Dragon",
  740. parents: ["fish", "dragon", "candy"]
  741. },
  742. "sabertooth-tiger": {
  743. name: "Sabertooth Tiger",
  744. parents: ["cat"]
  745. },
  746. "espurr": {
  747. name: "Espurr",
  748. parents: ["pokemon", "cat"]
  749. },
  750. "otter": {
  751. name: "Otter",
  752. parents: ["mustelid"]
  753. },
  754. "elemental": {
  755. name: "Elemental",
  756. parents: ["mammal"]
  757. },
  758. "mew": {
  759. name: "Mew",
  760. parents: ["pokemon"]
  761. },
  762. "goodra": {
  763. name: "Goodra",
  764. parents: ["pokemon"]
  765. },
  766. "fairy": {
  767. name: "Fairy",
  768. parents: ["magical"]
  769. },
  770. "typhlosion": {
  771. name: "Typhlosion",
  772. parents: ["pokemon"]
  773. },
  774. "magical": {
  775. name: "Magical",
  776. parents: []
  777. },
  778. "xenomorph": {
  779. name: "Xenomorph",
  780. parents: ["monster", "alien"]
  781. },
  782. "charr": {
  783. name: "Charr",
  784. parents: ["cat"]
  785. },
  786. "siberian-husky": {
  787. name: "Siberian Husky",
  788. parents: ["husky"]
  789. },
  790. "alligator": {
  791. name: "Alligator",
  792. parents: ["reptile"]
  793. },
  794. "bernese-mountain-dog": {
  795. name: "Bernese Mountain Dog",
  796. parents: ["dog"]
  797. },
  798. "reshiram": {
  799. name: "Reshiram",
  800. parents: ["pokemon", "dragon"]
  801. },
  802. "grizzly-bear": {
  803. name: "Grizzly Bear",
  804. parents: ["bear"]
  805. },
  806. "water-monitor": {
  807. name: "Water Monitor",
  808. parents: ["lizard"]
  809. },
  810. "banchofossa": {
  811. name: "Banchofossa",
  812. parents: ["mammal"]
  813. },
  814. "kirin": {
  815. name: "Kirin",
  816. parents: ["monster"]
  817. },
  818. "quilava": {
  819. name: "Quilava",
  820. parents: ["pokemon"]
  821. },
  822. "seviper": {
  823. name: "Seviper",
  824. parents: ["pokemon", "viper"]
  825. },
  826. "flying-fox": {
  827. name: "Flying Fox",
  828. parents: ["bat"]
  829. },
  830. "keynain": {
  831. name: "Keynain",
  832. parents: ["avian"]
  833. },
  834. "lucario": {
  835. name: "Lucario",
  836. parents: ["pokemon", "jackal"]
  837. },
  838. "siamese-cat": {
  839. name: "Siamese Cat",
  840. parents: ["cat"]
  841. },
  842. "spider": {
  843. name: "Spider",
  844. parents: ["insect"]
  845. },
  846. "samurott": {
  847. name: "Samurott",
  848. parents: ["pokemon", "otter"]
  849. },
  850. "megalodon": {
  851. name: "Megalodon",
  852. parents: ["shark"]
  853. },
  854. "unicorn": {
  855. name: "Unicorn",
  856. parents: ["horse"]
  857. },
  858. "greninja": {
  859. name: "Greninja",
  860. parents: ["pokemon", "frog"]
  861. },
  862. "water-dragon": {
  863. name: "Water Dragon",
  864. parents: ["dragon"]
  865. },
  866. "cross-fox": {
  867. name: "Cross Fox",
  868. parents: ["fox"]
  869. },
  870. "synth": {
  871. name: "Synth",
  872. parents: ["machine"]
  873. },
  874. "construct": {
  875. name: "Construct",
  876. parents: []
  877. },
  878. "mexican-wolf": {
  879. name: "Mexican Wolf",
  880. parents: ["wolf"]
  881. },
  882. "leopard": {
  883. name: "Leopard",
  884. parents: ["cat"]
  885. },
  886. "pig": {
  887. name: "Pig",
  888. parents: ["mammal"]
  889. },
  890. "ampharos": {
  891. name: "Ampharos",
  892. parents: ["pokemon", "sheep"]
  893. },
  894. "orca": {
  895. name: "Orca",
  896. parents: ["fish"]
  897. },
  898. "lycanroc": {
  899. name: "Lycanroc",
  900. parents: ["pokemon", "wolf"]
  901. },
  902. "surkanu": {
  903. name: "Surkanu",
  904. parents: ["monster"]
  905. },
  906. "seal": {
  907. name: "Seal",
  908. parents: ["mammal"]
  909. },
  910. "keldeo": {
  911. name: "Keldeo",
  912. parents: ["pokemon"]
  913. },
  914. "great-dane": {
  915. name: "Great Dane",
  916. parents: ["dog"]
  917. },
  918. "black-backed-jackal": {
  919. name: "Black Backed Jackal",
  920. parents: ["jackal"]
  921. },
  922. "sheep": {
  923. name: "Sheep",
  924. parents: ["mammal"]
  925. },
  926. "leopard-seal": {
  927. name: "Leopard Seal",
  928. parents: ["seal"]
  929. },
  930. "zoroark": {
  931. name: "Zoroark",
  932. parents: ["pokemon", "fox"]
  933. },
  934. "maned-wolf": {
  935. name: "Maned Wolf",
  936. parents: ["canine"]
  937. },
  938. "dracha": {
  939. name: "Dracha",
  940. parents: ["dragon"]
  941. },
  942. "wolxi": {
  943. name: "Wolxi",
  944. parents: ["mammal", "alien"]
  945. },
  946. "dratini": {
  947. name: "Dratini",
  948. parents: ["pokemon", "dragon"]
  949. },
  950. "skaven": {
  951. name: "Skaven",
  952. parents: ["rat"]
  953. },
  954. "mongoose": {
  955. name: "Mongoose",
  956. parents: ["mammal"]
  957. },
  958. "lopunny": {
  959. name: "Lopunny",
  960. parents: ["pokemon", "rabbit"]
  961. },
  962. "feraligatr": {
  963. name: "Feraligatr",
  964. parents: ["pokemon", "alligator"]
  965. },
  966. "houndoom": {
  967. name: "Houndoom",
  968. parents: ["pokemon", "dog"]
  969. },
  970. "protogen": {
  971. name: "Protogen",
  972. parents: ["machine"]
  973. },
  974. "saint-bernard": {
  975. name: "Saint Bernard",
  976. parents: ["dog"]
  977. },
  978. "crow": {
  979. name: "Crow",
  980. parents: ["corvid"]
  981. },
  982. "delphox": {
  983. name: "Delphox",
  984. parents: ["pokemon", "fox"]
  985. },
  986. "moose": {
  987. name: "Moose",
  988. parents: ["mammal"]
  989. },
  990. "joraxian": {
  991. name: "Joraxian",
  992. parents: ["monster", "canine", "demon"]
  993. },
  994. "nimbat": {
  995. name: "Nimbat",
  996. parents: ["mammal"]
  997. },
  998. "aardwolf": {
  999. name: "Aardwolf",
  1000. parents: ["canine"]
  1001. },
  1002. "fluudrani": {
  1003. name: "Fluudrani",
  1004. parents: ["animal"]
  1005. },
  1006. "arcanine": {
  1007. name: "Arcanine",
  1008. parents: ["pokemon", "dog"]
  1009. },
  1010. "inteleon": {
  1011. name: "Inteleon",
  1012. parents: ["pokemon", "fish"]
  1013. },
  1014. "ninetales": {
  1015. name: "Ninetales",
  1016. parents: ["pokemon", "kitsune"]
  1017. },
  1018. "tigrex": {
  1019. name: "Tigrex",
  1020. parents: ["wyvern", "monster-hunter"]
  1021. },
  1022. "zorua": {
  1023. name: "Zorua",
  1024. parents: ["pokemon", "fox"]
  1025. },
  1026. "vulpix": {
  1027. name: "Vulpix",
  1028. parents: ["pokemon", "fox"]
  1029. },
  1030. "barghest": {
  1031. name: "Barghest",
  1032. parents: ["monster"]
  1033. },
  1034. "gray-wolf": {
  1035. name: "Gray Wolf",
  1036. parents: ["wolf"]
  1037. },
  1038. "ruppells-fox": {
  1039. name: "Rüppell's Fox",
  1040. parents: ["fox"]
  1041. },
  1042. "bull-terrier": {
  1043. name: "Bull Terrier",
  1044. parents: ["dog"]
  1045. },
  1046. "european-honey-buzzard": {
  1047. name: "European Honey Buzzard",
  1048. parents: ["avian"]
  1049. },
  1050. "t-rex": {
  1051. name: "Tyrannosaurus Rex",
  1052. parents: ["theropod"]
  1053. },
  1054. "mactarian": {
  1055. name: "Mactarian",
  1056. parents: ["shark", "monster"]
  1057. },
  1058. "mewtwo-y": {
  1059. name: "Mewtwo Y",
  1060. parents: ["mewtwo"]
  1061. },
  1062. "mewtwo": {
  1063. name: "Mewtwo",
  1064. parents: ["pokemon"]
  1065. },
  1066. "eevee": {
  1067. name: "Eevee",
  1068. parents: ["eeveelution"]
  1069. },
  1070. "mienshao": {
  1071. name: "Mienshao",
  1072. parents: ["pokemon"]
  1073. },
  1074. "sugar-glider": {
  1075. name: "Sugar Glider",
  1076. parents: ["opossum"]
  1077. },
  1078. "spectral-bat": {
  1079. name: "Spectral Bat",
  1080. parents: ["bat"]
  1081. },
  1082. "scolipede": {
  1083. name: "Scolipede",
  1084. parents: ["pokemon", "insect"]
  1085. },
  1086. "jackalope": {
  1087. name: "Jackalope",
  1088. parents: ["rabbit", "antelope"]
  1089. },
  1090. "caracal": {
  1091. name: "Caracal",
  1092. parents: ["cat"]
  1093. },
  1094. "stoat": {
  1095. name: "Stoat",
  1096. parents: ["mammal"]
  1097. },
  1098. "african-golden-cat": {
  1099. name: "African Golden Cat",
  1100. parents: ["cat"]
  1101. },
  1102. "gigantosaurus": {
  1103. name: "Gigantosaurus",
  1104. parents: ["dinosaur"]
  1105. },
  1106. "zorgoia": {
  1107. name: "Zorgoia",
  1108. parents: ["mammal"]
  1109. },
  1110. "monitor-lizard": {
  1111. name: "Monitor Lizard",
  1112. parents: ["lizard"]
  1113. },
  1114. "ziralkia": {
  1115. name: "Ziralkia",
  1116. parents: ["mammal"]
  1117. },
  1118. "kiiasi": {
  1119. name: "Kiiasi",
  1120. parents: ["animal"]
  1121. },
  1122. "synx": {
  1123. name: "Synx",
  1124. parents: ["monster"]
  1125. },
  1126. "panther": {
  1127. name: "Panther",
  1128. parents: ["cat"]
  1129. },
  1130. "azumarill": {
  1131. name: "Azumarill",
  1132. parents: ["pokemon"]
  1133. },
  1134. "river-snaptail": {
  1135. name: "River Snaptail",
  1136. parents: ["otter", "crocodile"]
  1137. },
  1138. "great-blue-heron": {
  1139. name: "Great Blue Heron",
  1140. parents: ["avian"]
  1141. },
  1142. "smeargle": {
  1143. name: "Smeargle",
  1144. parents: ["pokemon"]
  1145. },
  1146. "vendeilen": {
  1147. name: "Vendeilen",
  1148. parents: ["monster"]
  1149. },
  1150. "ventura": {
  1151. name: "Ventura",
  1152. parents: ["canine"]
  1153. },
  1154. "clouded-leopard": {
  1155. name: "Clouded Leopard",
  1156. parents: ["leopard"]
  1157. },
  1158. "argonian": {
  1159. name: "Argonian",
  1160. parents: ["lizard"]
  1161. },
  1162. "salazzle": {
  1163. name: "Salazzle",
  1164. parents: ["pokemon", "lizard"]
  1165. },
  1166. "je-stoff-drachen": {
  1167. name: "Je-Stoff Drachen",
  1168. parents: ["dragon"]
  1169. },
  1170. "finnish-spitz-dog": {
  1171. name: "Finnish Spitz Dog",
  1172. parents: ["dog"]
  1173. },
  1174. "gray-fox": {
  1175. name: "Gray Fox",
  1176. parents: ["fox"]
  1177. },
  1178. "opossum": {
  1179. name: "Opossum",
  1180. parents: ["mammal"]
  1181. },
  1182. "antelope": {
  1183. name: "Antelope",
  1184. parents: ["mammal"]
  1185. },
  1186. "weavile": {
  1187. name: "Weavile",
  1188. parents: ["pokemon"]
  1189. },
  1190. "pikachu": {
  1191. name: "Pikachu",
  1192. parents: ["pokemon", "mouse"]
  1193. },
  1194. "grovyle": {
  1195. name: "Grovyle",
  1196. parents: ["pokemon", "plant"]
  1197. },
  1198. "sthara": {
  1199. name: "Sthara",
  1200. parents: ["snow-leopard", "reptile"]
  1201. },
  1202. "star-warrior": {
  1203. name: "Star Warrior",
  1204. parents: ["magical"]
  1205. },
  1206. "dragonoid": {
  1207. name: "Dragonoid",
  1208. parents: ["dragon"]
  1209. },
  1210. "suicune": {
  1211. name: "Suicune",
  1212. parents: ["pokemon"]
  1213. },
  1214. "vole": {
  1215. name: "Vole",
  1216. parents: ["mammal"]
  1217. },
  1218. "blaziken": {
  1219. name: "Blaziken",
  1220. parents: ["pokemon", "avian"]
  1221. },
  1222. "buizel": {
  1223. name: "Buizel",
  1224. parents: ["pokemon", "fish"]
  1225. },
  1226. "floatzel": {
  1227. name: "Floatzel",
  1228. parents: ["pokemon", "fish"]
  1229. },
  1230. "umok": {
  1231. name: "Umok",
  1232. parents: ["avian"]
  1233. },
  1234. "sea-monster": {
  1235. name: "Sea Monster",
  1236. parents: ["monster", "fish"]
  1237. },
  1238. "egyptian-vulture": {
  1239. name: "Egyptian Vulture",
  1240. parents: ["avian"]
  1241. },
  1242. "doberman": {
  1243. name: "Doberman",
  1244. parents: ["dog"]
  1245. },
  1246. "zangoose": {
  1247. name: "Zangoose",
  1248. parents: ["pokemon", "mongoose"]
  1249. },
  1250. "mongoose": {
  1251. name: "Mongoose",
  1252. parents: ["mammal"]
  1253. },
  1254. "wickerbeast": {
  1255. name: "Wickerbeast",
  1256. parents: ["monster"]
  1257. },
  1258. "zenari": {
  1259. name: "Zenari",
  1260. parents: ["lizard"]
  1261. },
  1262. "plant": {
  1263. name: "Plant",
  1264. parents: []
  1265. },
  1266. "raskatox": {
  1267. name: "Raskatox",
  1268. parents: ["raccoon", "skunk", "cat", "fox"]
  1269. },
  1270. "mikromare": {
  1271. name: "mikromare",
  1272. parents: ["alien"]
  1273. },
  1274. "alien": {
  1275. name: "Alien",
  1276. parents: ["animal"]
  1277. },
  1278. "deity": {
  1279. name: "Deity",
  1280. parents: []
  1281. },
  1282. "skarlan": {
  1283. name: "Skarlan",
  1284. parents: ["slug", "dragon"]
  1285. },
  1286. "slug": {
  1287. name: "Slug",
  1288. parents: ["mollusk"]
  1289. },
  1290. "mollusk": {
  1291. name: "Mollusk",
  1292. parents: ["animal"]
  1293. },
  1294. "chimera": {
  1295. name: "Chimera",
  1296. parents: ["monster"]
  1297. },
  1298. "gestalt": {
  1299. name: "Gestalt",
  1300. parents: ["construct"]
  1301. },
  1302. "mimic": {
  1303. name: "Mimic",
  1304. parents: ["monster"]
  1305. },
  1306. "calico-rat": {
  1307. name: "Calico Rat",
  1308. parents: ["rat"]
  1309. },
  1310. "panda": {
  1311. name: "Panda",
  1312. parents: ["mammal"]
  1313. },
  1314. "oni": {
  1315. name: "Oni",
  1316. parents: ["monster"]
  1317. },
  1318. "pegasus": {
  1319. name: "Pegasus",
  1320. parents: ["horse"]
  1321. },
  1322. "vulpera": {
  1323. name: "Vulpera",
  1324. parents: ["fennec-fox"]
  1325. },
  1326. "ceratosaurus": {
  1327. name: "Ceratosaurus",
  1328. parents: ["dinosaur"]
  1329. },
  1330. "nykur": {
  1331. name: "Nykur",
  1332. parents: ["horse", "monster"]
  1333. },
  1334. "giraffe": {
  1335. name: "Giraffe",
  1336. parents: ["mammal"]
  1337. },
  1338. "tauren": {
  1339. name: "Tauren",
  1340. parents: ["cow"]
  1341. },
  1342. "draconi": {
  1343. name: "Draconi",
  1344. parents: ["alien", "cat", "cyborg"]
  1345. },
  1346. "dire-wolf": {
  1347. name: "Dire Wolf",
  1348. parents: ["wolf"]
  1349. },
  1350. "ferromorph": {
  1351. name: "Ferromorph",
  1352. parents: ["construct"]
  1353. },
  1354. "meowth": {
  1355. name: "Meowth",
  1356. parents: ["cat", "pokemon"]
  1357. },
  1358. "pavodragon": {
  1359. name: "Pavodragon",
  1360. parents: ["dragon"]
  1361. },
  1362. "aaltranae": {
  1363. name: "Aaltranae",
  1364. parents: ["dragon"]
  1365. },
  1366. "cyborg": {
  1367. name: "Cyborg",
  1368. parents: ["machine"]
  1369. },
  1370. "draptor": {
  1371. name: "Draptor",
  1372. parents: ["dragon"]
  1373. },
  1374. "candy": {
  1375. name: "Candy",
  1376. parents: []
  1377. },
  1378. "drenath": {
  1379. name: "Drenath",
  1380. parents: ["dragon", "snake", "rabbit"]
  1381. },
  1382. "coyju": {
  1383. name: "Coyju",
  1384. parents: ["coyote", "kaiju"]
  1385. },
  1386. "kaiju": {
  1387. name: "Kaiju",
  1388. parents: ["monster"]
  1389. },
  1390. "nickit": {
  1391. name: "Nickit",
  1392. parents: ["pokemon", "cat"]
  1393. },
  1394. "lopunny": {
  1395. name: "Lopunny",
  1396. parents: ["pokemon", "rabbit"]
  1397. },
  1398. "korean-jindo-dog": {
  1399. name: "Korean Jindo Dog",
  1400. parents: ["dog"]
  1401. },
  1402. "naga": {
  1403. name: "Naga",
  1404. parents: ["snake", "monster"]
  1405. },
  1406. "undead": {
  1407. name: "Undead",
  1408. parents: ["monster"]
  1409. },
  1410. "whale": {
  1411. name: "Whale",
  1412. parents: ["fish"]
  1413. },
  1414. "gelato-bee": {
  1415. name: "Gelato Bee",
  1416. parents: ["bee"]
  1417. },
  1418. "bee": {
  1419. name: "Bee",
  1420. parents: ["insect"]
  1421. },
  1422. "gardevoir": {
  1423. name: "Gardevoir",
  1424. parents: ["pokemon"]
  1425. },
  1426. "ant": {
  1427. name: "Ant",
  1428. parents: ["insect"]
  1429. },
  1430. "frog": {
  1431. name: "Frog",
  1432. parents: ["amphibian"]
  1433. },
  1434. "amphibian": {
  1435. name: "Amphibian",
  1436. parents: ["animal", "aquatic"]
  1437. },
  1438. "pangolin": {
  1439. name: "Pangolin",
  1440. parents: ["mammal"]
  1441. },
  1442. "uragi'viidorn": {
  1443. name: "Uragi'viidorn",
  1444. parents: ["avian", "bear"]
  1445. },
  1446. "gryphdelphais": {
  1447. name: "Gryphdelphais",
  1448. parents: ["dolphin", "gryphon"]
  1449. },
  1450. "plush": {
  1451. name: "Plush",
  1452. parents: ["construct"]
  1453. },
  1454. "draiger": {
  1455. name: "Draiger",
  1456. parents: ["dragon","tiger"]
  1457. },
  1458. "foxsky": {
  1459. name: "Foxsky",
  1460. parents: ["fox", "husky"]
  1461. },
  1462. "umbreon": {
  1463. name: "Umbreon",
  1464. parents: ["eeveelution"]
  1465. },
  1466. "slime-dragon": {
  1467. name: "Slime Dragon",
  1468. parents: ["dragon", "goo"]
  1469. },
  1470. "enderman": {
  1471. name: "Enderman",
  1472. parents: ["monster"]
  1473. },
  1474. "gremlin": {
  1475. name: "Gremlin",
  1476. parents: ["monster"]
  1477. },
  1478. "dragonsune": {
  1479. name: "Dragonsune",
  1480. parents: ["dragon", "kitsune"]
  1481. },
  1482. "ghost": {
  1483. name: "Ghost",
  1484. parents: ["supernatural"]
  1485. },
  1486. "false-vampire-bat": {
  1487. name: "False Vampire Bat",
  1488. parents: ["bat"]
  1489. },
  1490. "succubus": {
  1491. name: "Succubus",
  1492. parents: ["demon"]
  1493. },
  1494. "mia": {
  1495. name: "Mia",
  1496. parents: ["canine"]
  1497. },
  1498. "rainbow": {
  1499. name: "Rainbow",
  1500. parents: ["monster"]
  1501. },
  1502. "solgaleo": {
  1503. name: "Solgaleo",
  1504. parents: ["pokemon"]
  1505. },
  1506. "lucent-nargacuga": {
  1507. name: "Lucent Nargacuga",
  1508. parents: ["nargacuga"]
  1509. },
  1510. "monster-hunter": {
  1511. name: "Monster Hunter",
  1512. parents: ["monster", "video-games"]
  1513. },
  1514. "leviathan": {
  1515. "name": "Leviathan",
  1516. "url": "sea-monster"
  1517. },
  1518. "bull": {
  1519. name: "Bull",
  1520. parents: ["mammal"]
  1521. },
  1522. "tanuki": {
  1523. name: "Tanuki",
  1524. parents: ["monster"]
  1525. },
  1526. "chakat": {
  1527. name: "Chakat",
  1528. parents: ["cat"]
  1529. },
  1530. "hydra": {
  1531. name: "Hydra",
  1532. parents: ["monster"]
  1533. },
  1534. "zigzagoon": {
  1535. name: "Zigzagoon",
  1536. parents: ["raccoon", "pokemon"]
  1537. },
  1538. "vulture": {
  1539. name: "Vulture",
  1540. parents: ["avian"]
  1541. },
  1542. "eastern-dragon": {
  1543. name: "Eastern Dragon",
  1544. parents: ["dragon"]
  1545. },
  1546. "gryffon": {
  1547. name: "Gryffon",
  1548. parents: ["phoenix", "red-panda"]
  1549. },
  1550. "amtsvane": {
  1551. name: "Amtsvane",
  1552. parents: ["reptile"]
  1553. },
  1554. "kigavi": {
  1555. name: "Kigavi",
  1556. parents: ["avian"]
  1557. },
  1558. "turian": {
  1559. name: "Turian",
  1560. parents: ["avian"]
  1561. },
  1562. "zeraora": {
  1563. name: "Zeraora",
  1564. parents: ["pokemon", "cat"]
  1565. },
  1566. "sandshrew": {
  1567. name: "Sandshrew",
  1568. parents: ["pokemon", "pangolin"]
  1569. },
  1570. "valais-blacknose-sheep": {
  1571. name: "Valais Blacknose Sheep",
  1572. parents: ["sheep"]
  1573. },
  1574. "novaleit": {
  1575. name: "Novaleit",
  1576. parents: ["mammal"]
  1577. },
  1578. "dunnoh": {
  1579. name: "Dunnoh",
  1580. parents: ["mammal"]
  1581. },
  1582. "lunaral-dragon": {
  1583. name: "Lunaral Dragon",
  1584. parents: ["dragon"]
  1585. },
  1586. "arctic-wolf": {
  1587. name: "Arctic Wolf",
  1588. parents: ["wolf"]
  1589. },
  1590. "donkey": {
  1591. name: "Donkey",
  1592. parents: ["horse"]
  1593. },
  1594. "chinchilla": {
  1595. name: "Chinchilla",
  1596. parents: ["rodent"]
  1597. },
  1598. "felkin": {
  1599. name: "Felkin",
  1600. parents: ["dragon"]
  1601. },
  1602. "tykeriel": {
  1603. name: "Tykeriel",
  1604. parents: ["avian"]
  1605. },
  1606. "folf": {
  1607. name: "Folf",
  1608. parents: ["fox", "wolf"]
  1609. },
  1610. "pooltoy": {
  1611. name: "Pooltoy",
  1612. parents: ["construct"]
  1613. },
  1614. "demi": {
  1615. name: "Demi",
  1616. parents: ["human"]
  1617. },
  1618. "stegosaurus": {
  1619. name: "Stegosaurus",
  1620. parents: ["dinosaur"]
  1621. },
  1622. "computer-virus": {
  1623. name: "Computer Virus",
  1624. parents: ["program"]
  1625. },
  1626. "program": {
  1627. name: "Program",
  1628. parents: ["construct"]
  1629. },
  1630. "space-springhare": {
  1631. name: "Space Springhare",
  1632. parents: ["hare"]
  1633. },
  1634. "river-drake": {
  1635. name: "River Drake",
  1636. parents: ["dragon"]
  1637. },
  1638. "djinn": {
  1639. "name": "Djinn",
  1640. "url": "supernatural"
  1641. },
  1642. "supernatural": {
  1643. name: "Supernatural",
  1644. parents: ["monster"]
  1645. },
  1646. "grasshopper-mouse": {
  1647. name: "Grasshopper Mouse",
  1648. parents: ["mouse"]
  1649. },
  1650. "somali-cat": {
  1651. name: "Somali Cat",
  1652. parents: ["cat"]
  1653. },
  1654. "minccino": {
  1655. name: "Minccino",
  1656. parents: ["pokemon", "chinchilla"]
  1657. },
  1658. "pine-marten": {
  1659. name: "Pine Marten",
  1660. parents: ["marten"]
  1661. },
  1662. "marten": {
  1663. name: "Marten",
  1664. parents: ["mustelid"]
  1665. },
  1666. "mustelid": {
  1667. name: "Mustelid",
  1668. parents: ["mammal"]
  1669. },
  1670. "caribou": {
  1671. name: "Caribou",
  1672. parents: ["deer"]
  1673. },
  1674. "gnoll": {
  1675. name: "Gnoll",
  1676. parents: ["hyena", "monster"]
  1677. },
  1678. "peacekeeper": {
  1679. name: "Peacekeeper",
  1680. parents: ["human"]
  1681. },
  1682. "river-otter": {
  1683. name: "River Otter",
  1684. parents: ["otter"]
  1685. },
  1686. "dhole": {
  1687. name: "Dhole",
  1688. parents: ["canine"]
  1689. },
  1690. "springbok": {
  1691. name: "Springbok",
  1692. parents: ["antelope"]
  1693. },
  1694. "marsupial": {
  1695. name: "Marsupial",
  1696. parents: ["mammal"]
  1697. },
  1698. "townsend-big-eared-bat": {
  1699. name: "Townsend Big-eared Bat",
  1700. parents: ["bat"]
  1701. },
  1702. "squirrel": {
  1703. name: "Squirrel",
  1704. parents: ["rodent"]
  1705. },
  1706. "magpie": {
  1707. name: "Magpie",
  1708. parents: ["corvid"]
  1709. },
  1710. "civet": {
  1711. name: "Civet",
  1712. parents: ["feliform"]
  1713. },
  1714. "feliform": {
  1715. name: "Feliform",
  1716. parents: ["mammal"]
  1717. },
  1718. "tiefling": {
  1719. name: "Tiefling",
  1720. parents: ["devil"]
  1721. },
  1722. "devil": {
  1723. name: "Devil",
  1724. parents: ["supernatural"]
  1725. },
  1726. "sika-deer": {
  1727. name: "Sika Deer",
  1728. parents: ["deer"]
  1729. },
  1730. "vaporeon": {
  1731. name: "Vaporeon",
  1732. parents: ["eeveelution"]
  1733. },
  1734. "leafeon": {
  1735. name: "Leafeon",
  1736. parents: ["eeveelution"]
  1737. },
  1738. "jolteon": {
  1739. name: "Jolteon",
  1740. parents: ["eeveelution"]
  1741. },
  1742. "spireborn": {
  1743. name: "Spireborn",
  1744. parents: ["zorgoia"]
  1745. },
  1746. "vampire": {
  1747. name: "Vampire",
  1748. parents: ["monster"]
  1749. },
  1750. "extraplanar": {
  1751. name: "Extraplanar",
  1752. parents: []
  1753. },
  1754. "goo": {
  1755. name: "Goo",
  1756. parents: []
  1757. },
  1758. "skink": {
  1759. name: "Skink",
  1760. parents: ["lizard"]
  1761. },
  1762. "bat-eared-fox": {
  1763. name: "Bat-eared Fox",
  1764. parents: ["fox"]
  1765. },
  1766. "belted-kingfisher": {
  1767. name: "Belted Kingfisher",
  1768. parents: ["avian"]
  1769. },
  1770. "omnifalcon": {
  1771. name: "Omnifalcon",
  1772. parents: ["gryphon", "falcon", "harpy-eagle"]
  1773. },
  1774. "falcon": {
  1775. name: "Falcon",
  1776. parents: ["bird-of-prey"]
  1777. },
  1778. "avali": {
  1779. name: "Avali",
  1780. parents: ["avian", "alien"]
  1781. },
  1782. "arctic-fox": {
  1783. name: "Arctic Fox",
  1784. parents: ["fox"]
  1785. },
  1786. "snow-tiger": {
  1787. name: "Snow Tiger",
  1788. parents: ["tiger"]
  1789. },
  1790. "marble-fox": {
  1791. name: "Marble Fox",
  1792. parents: ["fox"]
  1793. },
  1794. "king-wickerbeast": {
  1795. name: "King Wickerbeast",
  1796. parents: ["wickerbeast"]
  1797. },
  1798. "wickerbeast": {
  1799. name: "Wickerbeast",
  1800. parents: ["mammal"]
  1801. },
  1802. "european-polecat": {
  1803. name: "European Polecat",
  1804. parents: ["polecat"]
  1805. },
  1806. "polecat": {
  1807. name: "Polecat",
  1808. parents: ["mustelid"]
  1809. },
  1810. "teshari": {
  1811. name: "Teshari",
  1812. parents: ["avian", "raptor"]
  1813. },
  1814. "alicorn": {
  1815. name: "Alicorn",
  1816. parents: ["horse"]
  1817. },
  1818. "atlas-moth": {
  1819. name: "Atlas Moth",
  1820. parents: ["moth"]
  1821. },
  1822. "owlbear": {
  1823. name: "Owlbear",
  1824. parents: ["owl", "bear", "monster"]
  1825. },
  1826. "owl": {
  1827. name: "Owl",
  1828. parents: ["avian"]
  1829. },
  1830. "silvertongue": {
  1831. name: "Silvertongue",
  1832. parents: ["reptile"]
  1833. },
  1834. "ahuizotl": {
  1835. name: "Ahuizotl",
  1836. parents: ["monster"]
  1837. },
  1838. "ender-dragon": {
  1839. name: "Ender Dragon",
  1840. parents: ["dragon"]
  1841. },
  1842. "bruhathkayosaurus": {
  1843. name: "Bruhathkayosaurus",
  1844. parents: ["sauropod"]
  1845. },
  1846. "sauropod": {
  1847. name: "Sauropod",
  1848. parents: ["dinosaur"]
  1849. },
  1850. "black-sable-antelope": {
  1851. name: "Black Sable Antelope",
  1852. parents: ["antelope"]
  1853. },
  1854. "slime": {
  1855. name: "Slime",
  1856. parents: ["goo"]
  1857. },
  1858. "utahraptor": {
  1859. name: "Utahraptor",
  1860. parents: ["raptor"]
  1861. },
  1862. "indian-giant-squirrel": {
  1863. name: "Indian Giant Squirrel",
  1864. parents: ["squirrel"]
  1865. },
  1866. "golden-retriever": {
  1867. name: "Golden Retriever",
  1868. parents: ["dog"]
  1869. },
  1870. "triceratops": {
  1871. name: "Triceratops",
  1872. parents: ["dinosaur"]
  1873. },
  1874. "drake": {
  1875. name: "Drake",
  1876. parents: ["dragon"]
  1877. },
  1878. "okapi": {
  1879. name: "Okapi",
  1880. parents: ["giraffe"]
  1881. },
  1882. "arctic-hare": {
  1883. name: "Arctic Hare",
  1884. parents: ["hare"]
  1885. },
  1886. "hare": {
  1887. name: "Hare",
  1888. parents: ["leporidae"]
  1889. },
  1890. "leporidae": {
  1891. name: "Leporidae",
  1892. parents: ["mammal"]
  1893. },
  1894. "leopard-gecko": {
  1895. name: "Leopard Gecko",
  1896. parents: ["gecko"]
  1897. },
  1898. "dreamspawn": {
  1899. name: "Dreamspawn",
  1900. parents: ["illusion"]
  1901. },
  1902. "illusion": {
  1903. name: "Illusion",
  1904. parents: []
  1905. },
  1906. "purrloin": {
  1907. name: "Purrloin",
  1908. parents: ["cat", "pokemon"]
  1909. },
  1910. "noivern": {
  1911. name: "Noivern",
  1912. parents: ["bat", "dragon", "pokemon"]
  1913. },
  1914. "hedgehog": {
  1915. name: "Hedgehog",
  1916. parents: ["mammal"]
  1917. },
  1918. "liger": {
  1919. name: "Liger",
  1920. parents: ["lion", "tiger", "hybrid"]
  1921. },
  1922. "hybrid": {
  1923. name: "Hybrid",
  1924. parents: []
  1925. },
  1926. "drider": {
  1927. name: "Drider",
  1928. parents: ["spider"]
  1929. },
  1930. "sabresune": {
  1931. name: "Sabresune",
  1932. parents: ["kitsune", "sabertooth-tiger"]
  1933. },
  1934. "ditto": {
  1935. name: "Ditto",
  1936. parents: ["pokemon", "goo"]
  1937. },
  1938. "amogus": {
  1939. name: "Amogus",
  1940. parents: ["deity"]
  1941. },
  1942. "ferret": {
  1943. name: "Ferret",
  1944. parents: ["mustelid"]
  1945. },
  1946. "guinea-pig": {
  1947. name: "Guinea Pig",
  1948. parents: ["rodent"]
  1949. },
  1950. "viper": {
  1951. name: "Viper",
  1952. parents: ["snake"]
  1953. },
  1954. "cinderace": {
  1955. name: "Cinderace",
  1956. parents: ["pokemon", "rabbit"]
  1957. },
  1958. "caudin": {
  1959. name: "Caudin",
  1960. parents: ["dragon"]
  1961. },
  1962. "red-winged-blackbird": {
  1963. name: "Red-Winged Blackbird",
  1964. parents: ["avian"]
  1965. },
  1966. "hooded-wheater": {
  1967. name: "Hooded Wheater",
  1968. parents: ["passerine"]
  1969. },
  1970. "passerine": {
  1971. name: "Passerine",
  1972. parents: ["avian"]
  1973. },
  1974. "gieeg": {
  1975. name: "Gieeg",
  1976. parents: ["alien"]
  1977. },
  1978. "ringtail": {
  1979. name: "Ringtail",
  1980. parents: ["raccoon"]
  1981. },
  1982. "hisuian-zoroark": {
  1983. name: "Hisuian Zoroark",
  1984. parents: ["zoroark", "hisuian"]
  1985. },
  1986. "hisuian": {
  1987. name: "Hisuian",
  1988. parents: ["regional-pokemon"]
  1989. },
  1990. "regional-pokemon": {
  1991. name: "Regional Pokemon",
  1992. parents: ["pokemon"]
  1993. },
  1994. "cybeast": {
  1995. name: "Cybeast",
  1996. parents: ["computer-virus"]
  1997. },
  1998. "javira-dragon": {
  1999. name: "Javira Dragon",
  2000. parents: ["dragon"]
  2001. },
  2002. "koopew": {
  2003. name: "Koopew",
  2004. parents: ["dragon", "alien"]
  2005. },
  2006. "nevrean": {
  2007. name: "Nevrean",
  2008. parents: ["avian", "vilous"]
  2009. },
  2010. "vilous": {
  2011. name: "Vilous Species",
  2012. parents: []
  2013. },
  2014. "titanoboa": {
  2015. name: "Titanoboa",
  2016. parents: ["snake"]
  2017. },
  2018. "raichu": {
  2019. name: "Raichu",
  2020. parents: ["pikachu"]
  2021. },
  2022. "taur": {
  2023. name: "Taur",
  2024. parents: []
  2025. },
  2026. "continental-giant-rabbit": {
  2027. name: "Continental Giant Rabbit",
  2028. parents: ["rabbit"]
  2029. },
  2030. "demigryph": {
  2031. name: "Demigryph",
  2032. parents: ["lion", "eagle"]
  2033. },
  2034. "bald-eagle": {
  2035. name: "Bald Eagle",
  2036. parents: ["eagle"]
  2037. },
  2038. "kestrel": {
  2039. name: "Kestrel",
  2040. parents: ["falcon"]
  2041. },
  2042. "mockingbird": {
  2043. name: "Mockingbird",
  2044. parents: ["songbird"]
  2045. },
  2046. "songbird": {
  2047. name: "Songbird",
  2048. parents: ["avian"]
  2049. },
  2050. "bird-of-prey": {
  2051. name: "Bird of Prey",
  2052. parents: ["avian"]
  2053. },
  2054. "marowak": {
  2055. name: "Marowak",
  2056. parents: ["pokemon", "reptile"]
  2057. },
  2058. "joltik": {
  2059. name: "Joltik",
  2060. parents: ["pokemon", "insect"]
  2061. },
  2062. "mink": {
  2063. name: "Mink",
  2064. parents: ["mustelid"]
  2065. },
  2066. "sandcat": {
  2067. name: "Sandcat",
  2068. parents: ["cat"]
  2069. },
  2070. "hrothgar": {
  2071. name: "Hrothgar",
  2072. parents: ["cat"]
  2073. },
  2074. "garchomp": {
  2075. name: "Garchomp",
  2076. parents: ["dragon", "pokemon"]
  2077. },
  2078. "nargacuga": {
  2079. name: "Nargacuga",
  2080. parents: ["monster-hunter"]
  2081. },
  2082. "sable": {
  2083. name: "Sable",
  2084. parents: ["marten"]
  2085. },
  2086. "deino": {
  2087. name: "Deino",
  2088. parents: ["pokemon", "dinosaur"]
  2089. },
  2090. "housecat": {
  2091. name: "Housecat",
  2092. parents: ["cat"]
  2093. },
  2094. "bombay-cat": {
  2095. name: "Bombay Cat",
  2096. parents: ["housecat"]
  2097. },
  2098. "maine-coon": {
  2099. name: "Maine Coon",
  2100. parents: ["housecat"]
  2101. },
  2102. "coelacanth": {
  2103. name: "Coelacanth",
  2104. parents: ["fish"]
  2105. },
  2106. "silvally": {
  2107. name: "Silvally",
  2108. parents: ["legendary-pokemon"]
  2109. },
  2110. "legendary-pokemon": {
  2111. name: "Legendary Pokemon",
  2112. parents: ["pokemon"]
  2113. },
  2114. "great-maccao": {
  2115. name: "Great Maccao",
  2116. parents: ["monster-hunter", "raptor"]
  2117. },
  2118. "shapeshifter": {
  2119. name: "shapeshifter",
  2120. parents: []
  2121. },
  2122. "obstagoon": {
  2123. name: "Obstagoon",
  2124. parents: ["zigzagoon"]
  2125. },
  2126. "thomsons-gazelle": {
  2127. name: "Thomsons Gazelle",
  2128. parents: ["gazelle"]
  2129. },
  2130. "gazelle": {
  2131. name: "Gazelle",
  2132. parents: ["antelope"]
  2133. },
  2134. "monkey": {
  2135. name: "Monkey",
  2136. parents: ["primate"]
  2137. },
  2138. "serval": {
  2139. name: "Serval",
  2140. parents: ["cat"]
  2141. },
  2142. "swampert": {
  2143. name: "Swampert",
  2144. parents: ["pokemon"]
  2145. },
  2146. "red-fox": {
  2147. name: "Red Fox",
  2148. parents: ["fox"]
  2149. },
  2150. "sliver": {
  2151. name: "Sliver",
  2152. parents: ["alien"]
  2153. },
  2154. "sergix": {
  2155. name: "Sergix",
  2156. parents: ["demon", "sergal", "phoenix"]
  2157. },
  2158. "behemoth": {
  2159. name: "Behemoth",
  2160. parents: ["monster", "dragon", "final-fantasy"]
  2161. },
  2162. "final-fantasy": {
  2163. name: "Final Fantasy",
  2164. parents: ["video-games"]
  2165. },
  2166. "video-games": {
  2167. name: "Video Games",
  2168. parents: []
  2169. },
  2170. "eastern-cottontail-rabbit": {
  2171. name: "Eastern Cottontail Rabbit",
  2172. parents: ["rabbit"]
  2173. },
  2174. "thresher-shark": {
  2175. name: "Thresher Shark",
  2176. parents: ["shark"]
  2177. },
  2178. "ai": {
  2179. name: "AI",
  2180. parents: []
  2181. },
  2182. "black-tip-reef-shark": {
  2183. name: "Black Tip Reef Shark",
  2184. parents: ["shark"]
  2185. },
  2186. "quetzalcoatlus-northropi": {
  2187. name: "Quetzalcoatlus Northropi",
  2188. parents: ["dinosaur"]
  2189. },
  2190. "snivy": {
  2191. name: "Snivy",
  2192. parents: ["pokemon", "snake"]
  2193. },
  2194. "nedynvor": {
  2195. name: "Nedynvor",
  2196. parents: ["avian"]
  2197. },
  2198. "marbled-polecat": {
  2199. name: "Marbled Polecat",
  2200. parents: ["polecat"]
  2201. },
  2202. "ape": {
  2203. name: "Ape",
  2204. parents: ["primate"]
  2205. },
  2206. "primate": {
  2207. name: "Primate",
  2208. parents: ["mammal"]
  2209. },
  2210. "kulve-taroth": {
  2211. name: "Kulve Taroth",
  2212. parents: ["monster-hunter", "dragon"]
  2213. },
  2214. "irthos": {
  2215. name: "Irthos",
  2216. parents: ["dragon"]
  2217. },
  2218. "furred-dragon": {
  2219. name: "Furred Dragon",
  2220. parents: ["dragon"]
  2221. },
  2222. "hippogriff": {
  2223. name: "Hippogriff",
  2224. parents: ["gryphon", "horse"]
  2225. },
  2226. "peregrine-falcon": {
  2227. name: "Peregrine Falcon",
  2228. parents: ["falcon"]
  2229. },
  2230. "deinonychus": {
  2231. name: "Deinonychus",
  2232. parents: ["theropod"]
  2233. },
  2234. "theropod": {
  2235. name: "Theropod",
  2236. parents: ["dinosaur"]
  2237. },
  2238. "chocobo": {
  2239. name: "Chocobo",
  2240. parents: ["avian"]
  2241. },
  2242. "stilio": {
  2243. name: "Stilio",
  2244. parents: ["snake"]
  2245. },
  2246. "kardox": {
  2247. name: "Kardox",
  2248. parents: ["wolf", "dragon", "horse"]
  2249. },
  2250. "food": {
  2251. name: "Food",
  2252. parents: ["object"]
  2253. },
  2254. "object": {
  2255. name: "Object",
  2256. parents: []
  2257. },
  2258. "honey-badger": {
  2259. name: "honey-badger",
  2260. parents: ["badger"]
  2261. },
  2262. "badger": {
  2263. name: "Badger",
  2264. parents: ["mustelid"]
  2265. },
  2266. "rattlesnake": {
  2267. name: "Rattlesnake",
  2268. parents: ["snake"]
  2269. },
  2270. "diamondback": {
  2271. name: "Diamondback",
  2272. parents: ["snake"]
  2273. },
  2274. "spidox": {
  2275. name: "Spidox",
  2276. parents: ["spider", "fox"]
  2277. },
  2278. "kodiak-bear": {
  2279. name: "Kodiak Bear",
  2280. parents: ["bear"]
  2281. },
  2282. "alurean": {
  2283. name: "Alurean",
  2284. parents: ["saurian", "aquatic", "alien"]
  2285. },
  2286. "aquatic": {
  2287. name: "Aquatic",
  2288. parents: []
  2289. },
  2290. "wyvern": {
  2291. name: "Wyvern",
  2292. parents: ["dragon"]
  2293. },
  2294. "catfish": {
  2295. name: "Catfish",
  2296. parents: ["fish"]
  2297. },
  2298. "vesempress": {
  2299. name: "Vesempress",
  2300. parents: ["vespiquen"]
  2301. },
  2302. "vespiquen": {
  2303. name: "Vespiquen",
  2304. parents: ["pokemon", "bee"]
  2305. },
  2306. "gaelterranian": {
  2307. name: "Gaelterranian",
  2308. parents: ["alien"]
  2309. },
  2310. "pistrogre": {
  2311. name: "Pistrogre",
  2312. parents: ["alien", "deity", "insect", "reptile"]
  2313. },
  2314. "komodo-dragon": {
  2315. name: "Komodo Dragon",
  2316. parents: ["lizard"]
  2317. },
  2318. "shiny": {
  2319. name: "Shiny",
  2320. parents: ["pokemon"]
  2321. },
  2322. "latex": {
  2323. name: "Latex",
  2324. parents: []
  2325. },
  2326. "praying-mantis": {
  2327. name: "Praying Mantis",
  2328. parents: ["insect"]
  2329. },
  2330. "espeon": {
  2331. name: "Espeon",
  2332. parents: ["eeveelution"]
  2333. },
  2334. "skullwolf": {
  2335. name: "Skullwolf",
  2336. parents: ["wolf", "skullmonster"]
  2337. },
  2338. "skulldragon": {
  2339. name: "Skulldragon",
  2340. parents: ["dragon", "skullmonster"]
  2341. },
  2342. "skullmonster": {
  2343. name: "Skullmonster",
  2344. parents: ["monster"]
  2345. },
  2346. "ferrin": {
  2347. name: "Ferrin",
  2348. parents: ["dragon"]
  2349. },
  2350. "rusty-spotted-cat": {
  2351. name: "Rusty-Spotted Cat",
  2352. parents: ["cat"]
  2353. },
  2354. "elf": {
  2355. name: "Elf",
  2356. parents: ["humanoid"]
  2357. },
  2358. "humanoid": {
  2359. name: "Humanoid",
  2360. parents: []
  2361. },
  2362. "allusus": {
  2363. name: "Allusus",
  2364. parents: ["humanoid"]
  2365. },
  2366. "saltwater-crocodile": {
  2367. name: "Saltwater Crocodile",
  2368. parents: ["crocodile"]
  2369. },
  2370. "eastern-grey-kangaroo": {
  2371. name: "Eastern Grey Kangaroo",
  2372. parents: ["kangaroo"]
  2373. },
  2374. "latenivenatrix": {
  2375. name: "Latenivenatrix",
  2376. parents: ["troodontidae"]
  2377. },
  2378. "troodontidae": {
  2379. name: "Troodontidae",
  2380. parents: ["theropod", "avian"]
  2381. },
  2382. "duck": {
  2383. name: "Duck",
  2384. parents: ["waterfowl"]
  2385. },
  2386. "waterfowl": {
  2387. name: "Waterfowl",
  2388. parents: ["avian"]
  2389. },
  2390. "earless-monitor-lizard": {
  2391. name: "Earless Monitor Lizard",
  2392. parents: ["monitor-lizard"]
  2393. },
  2394. "aerosynth": {
  2395. name: "Aerosynth",
  2396. parents: ["aeromorph", "synth"]
  2397. },
  2398. "phenx": {
  2399. name: "Phenx",
  2400. parents: ["uragi"]
  2401. },
  2402. "uragi": {
  2403. name: "Uragi",
  2404. parents: ["avian", "bear"]
  2405. },
  2406. "driger": {
  2407. name: "Driger",
  2408. parents: ["dragon", "tiger"]
  2409. },
  2410. "homestuck-troll": {
  2411. name: "Troll (Homestuck)",
  2412. parents: ["humanoid"]
  2413. },
  2414. "riolu": {
  2415. name: "Riolu",
  2416. parents: ["pokemon"]
  2417. },
  2418. "king-cheetah": {
  2419. name: "King Cheetah",
  2420. parents: ["cheetah"]
  2421. },
  2422. "secretary-bird": {
  2423. name: "Secretary Bird",
  2424. parents: ["bird-of-prey"]
  2425. },
  2426. "russian-blue": {
  2427. name: "Russian Blue",
  2428. parents: ["housecat"]
  2429. },
  2430. "wholphin": {
  2431. name: "Wholphin",
  2432. parents: ["whale", "dolphin"]
  2433. },
  2434. "sea-dragon": {
  2435. name: "Sea Dragon",
  2436. parents: ["dragon", "aquatic"]
  2437. },
  2438. "brown-bear": {
  2439. name: "Brown Bear",
  2440. parents: ["bear"]
  2441. },
  2442. "vampire-bat": {
  2443. name: "Vampire Bat",
  2444. parents: ["bat"]
  2445. },
  2446. "dilophosaurus": {
  2447. name: "Dilophosaurus",
  2448. parents: ["theropod"]
  2449. },
  2450. "nagainini": {
  2451. name: "Nagainini",
  2452. parents: ["naga"]
  2453. },
  2454. "kaizleon": {
  2455. name: "Kaizleon",
  2456. parents: ["humanoid"]
  2457. },
  2458. "dragoyle": {
  2459. name: "Dragoyle",
  2460. parents: ["dragon", "gargoyle"]
  2461. },
  2462. "gargoyle": {
  2463. name: "Gargoyle",
  2464. parents: ["construct", "monster"]
  2465. },
  2466. "sea-serpent": {
  2467. name: "Sea Serpent",
  2468. parents: ["aquatic", "monster"]
  2469. },
  2470. }
  2471. //species
  2472. function getSpeciesInfo(speciesList) {
  2473. let result = new Set();
  2474. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2475. result.add(entry)
  2476. });
  2477. return Array.from(result);
  2478. };
  2479. function getSpeciesInfoHelper(species) {
  2480. if (!speciesData[species]) {
  2481. console.warn(species + " doesn't exist");
  2482. return [];
  2483. }
  2484. if (speciesData[species].parents) {
  2485. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2486. } else {
  2487. return [species];
  2488. }
  2489. }
  2490. characterMakers.push(() => makeCharacter(
  2491. {
  2492. name: "Fen",
  2493. species: ["crux"],
  2494. description: {
  2495. title: "Bio",
  2496. text: "Very furry. Sheds on everything."
  2497. },
  2498. tags: [
  2499. "anthro",
  2500. "goo"
  2501. ]
  2502. },
  2503. {
  2504. front: {
  2505. height: math.unit(12, "feet"),
  2506. weight: math.unit(2400, "lb"),
  2507. preyCapacity: math.unit(1, "people"),
  2508. name: "Front",
  2509. image: {
  2510. source: "./media/characters/fen/front.svg",
  2511. extra: 1804/1562,
  2512. bottom: 205/2009
  2513. },
  2514. extraAttributes: {
  2515. pawSize: {
  2516. name: "Paw Size",
  2517. power: 2,
  2518. type: "area",
  2519. base: math.unit(0.35, "m^2")
  2520. }
  2521. }
  2522. },
  2523. diving: {
  2524. height: math.unit(4.9, "meters"),
  2525. weight: math.unit(2400, "lb"),
  2526. name: "Diving",
  2527. image: {
  2528. source: "./media/characters/fen/diving.svg"
  2529. }
  2530. },
  2531. sleeby: {
  2532. height: math.unit(3.45, "meters"),
  2533. weight: math.unit(2400, "lb"),
  2534. name: "Sleeby",
  2535. image: {
  2536. source: "./media/characters/fen/sleeby.svg"
  2537. }
  2538. },
  2539. goo: {
  2540. height: math.unit(12, "feet"),
  2541. weight: math.unit(3600, "lb"),
  2542. volume: math.unit(1000, "liters"),
  2543. preyCapacity: math.unit(6, "people"),
  2544. name: "Goo",
  2545. image: {
  2546. source: "./media/characters/fen/goo.svg",
  2547. extra: 1307/1071,
  2548. bottom: 134/1441
  2549. }
  2550. },
  2551. horror: {
  2552. height: math.unit(13.6, "feet"),
  2553. weight: math.unit(2400, "lb"),
  2554. preyCapacity: math.unit(1, "people"),
  2555. name: "Horror",
  2556. image: {
  2557. source: "./media/characters/fen/horror.svg",
  2558. extra: 893/797,
  2559. bottom: 0/893
  2560. }
  2561. },
  2562. gooNsfw: {
  2563. height: math.unit(12, "feet"),
  2564. weight: math.unit(3750, "lb"),
  2565. volume: math.unit(1000, "liters"),
  2566. preyCapacity: math.unit(6, "people"),
  2567. name: "Goo (NSFW)",
  2568. image: {
  2569. source: "./media/characters/fen/goo-nsfw.svg",
  2570. extra: 1875/1734,
  2571. bottom: 122/1997
  2572. }
  2573. },
  2574. maw: {
  2575. height: math.unit(5.03, "feet"),
  2576. name: "Maw",
  2577. image: {
  2578. source: "./media/characters/fen/maw.svg"
  2579. }
  2580. },
  2581. gooCeiling: {
  2582. height: math.unit(6.6, "feet"),
  2583. weight: math.unit(3000, "lb"),
  2584. volume: math.unit(1000, "liters"),
  2585. preyCapacity: math.unit(6, "people"),
  2586. name: "Maw (Goo)",
  2587. image: {
  2588. source: "./media/characters/fen/goo-maw.svg"
  2589. }
  2590. },
  2591. paw: {
  2592. height: math.unit(3.77, "feet"),
  2593. name: "Paw",
  2594. image: {
  2595. source: "./media/characters/fen/paw.svg"
  2596. },
  2597. extraAttributes: {
  2598. "toeSize": {
  2599. name: "Toe Size",
  2600. power: 2,
  2601. type: "area",
  2602. base: math.unit(0.02875, "m^2")
  2603. },
  2604. "pawSize": {
  2605. name: "Paw Size",
  2606. power: 2,
  2607. type: "area",
  2608. base: math.unit(0.378, "m^2")
  2609. },
  2610. }
  2611. },
  2612. tail: {
  2613. height: math.unit(12.1, "feet"),
  2614. name: "Tail",
  2615. image: {
  2616. source: "./media/characters/fen/tail.svg"
  2617. }
  2618. },
  2619. tailFull: {
  2620. height: math.unit(12.1, "feet"),
  2621. name: "Full Tail",
  2622. image: {
  2623. source: "./media/characters/fen/tail-full.svg"
  2624. }
  2625. },
  2626. back: {
  2627. height: math.unit(12, "feet"),
  2628. weight: math.unit(2400, "lb"),
  2629. name: "Back",
  2630. image: {
  2631. source: "./media/characters/fen/back.svg",
  2632. },
  2633. info: {
  2634. description: {
  2635. mode: "append",
  2636. text: "\n\nHe is not currently looking at you."
  2637. }
  2638. }
  2639. },
  2640. full: {
  2641. height: math.unit(1.85, "meter"),
  2642. weight: math.unit(3200, "lb"),
  2643. preyCapacity: math.unit(3, "people"),
  2644. name: "Full",
  2645. image: {
  2646. source: "./media/characters/fen/full.svg",
  2647. extra: 1133/859,
  2648. bottom: 145/1278
  2649. },
  2650. info: {
  2651. description: {
  2652. mode: "append",
  2653. text: "\n\nMunch."
  2654. }
  2655. }
  2656. },
  2657. gooLounging: {
  2658. height: math.unit(4.53, "feet"),
  2659. weight: math.unit(3000, "lb"),
  2660. preyCapacity: math.unit(6, "people"),
  2661. name: "Goo (Lounging)",
  2662. image: {
  2663. source: "./media/characters/fen/goo-lounging.svg",
  2664. bottom: 116 / 613
  2665. }
  2666. },
  2667. lounging: {
  2668. height: math.unit(10.52, "feet"),
  2669. weight: math.unit(2400, "lb"),
  2670. name: "Lounging",
  2671. image: {
  2672. source: "./media/characters/fen/lounging.svg"
  2673. }
  2674. },
  2675. },
  2676. [
  2677. {
  2678. name: "Small",
  2679. height: math.unit(2.2428, "meter")
  2680. },
  2681. {
  2682. name: "Normal",
  2683. height: math.unit(12, "feet"),
  2684. default: true,
  2685. },
  2686. {
  2687. name: "Big",
  2688. height: math.unit(20, "feet")
  2689. },
  2690. {
  2691. name: "Minimacro",
  2692. height: math.unit(40, "feet"),
  2693. info: {
  2694. description: {
  2695. mode: "append",
  2696. text: "\n\nTOO DAMN BIG"
  2697. }
  2698. }
  2699. },
  2700. {
  2701. name: "Macro",
  2702. height: math.unit(100, "feet"),
  2703. info: {
  2704. description: {
  2705. mode: "append",
  2706. text: "\n\nTOO DAMN BIG"
  2707. }
  2708. }
  2709. },
  2710. {
  2711. name: "Megamacro",
  2712. height: math.unit(2, "miles")
  2713. },
  2714. {
  2715. name: "Gigamacro",
  2716. height: math.unit(10, "earths")
  2717. },
  2718. ]
  2719. ))
  2720. characterMakers.push(() => makeCharacter(
  2721. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2722. {
  2723. front: {
  2724. height: math.unit(183, "cm"),
  2725. weight: math.unit(80, "kg"),
  2726. name: "Front",
  2727. image: {
  2728. source: "./media/characters/sofia-fluttertail/front.svg",
  2729. bottom: 0.01,
  2730. extra: 2154 / 2081
  2731. }
  2732. },
  2733. frontAlt: {
  2734. height: math.unit(183, "cm"),
  2735. weight: math.unit(80, "kg"),
  2736. name: "Front (alt)",
  2737. image: {
  2738. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2739. }
  2740. },
  2741. back: {
  2742. height: math.unit(183, "cm"),
  2743. weight: math.unit(80, "kg"),
  2744. name: "Back",
  2745. image: {
  2746. source: "./media/characters/sofia-fluttertail/back.svg"
  2747. }
  2748. },
  2749. kneeling: {
  2750. height: math.unit(125, "cm"),
  2751. weight: math.unit(80, "kg"),
  2752. name: "Kneeling",
  2753. image: {
  2754. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2755. extra: 1033 / 977,
  2756. bottom: 23.7 / 1057
  2757. }
  2758. },
  2759. maw: {
  2760. height: math.unit(183 / 5, "cm"),
  2761. name: "Maw",
  2762. image: {
  2763. source: "./media/characters/sofia-fluttertail/maw.svg"
  2764. }
  2765. },
  2766. mawcloseup: {
  2767. height: math.unit(183 / 5 * 0.41, "cm"),
  2768. name: "Maw (Closeup)",
  2769. image: {
  2770. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2771. }
  2772. },
  2773. paws: {
  2774. height: math.unit(1.17, "feet"),
  2775. name: "Paws",
  2776. image: {
  2777. source: "./media/characters/sofia-fluttertail/paws.svg",
  2778. extra: 851 / 851,
  2779. bottom: 17 / 868
  2780. }
  2781. },
  2782. },
  2783. [
  2784. {
  2785. name: "Normal",
  2786. height: math.unit(1.83, "meter")
  2787. },
  2788. {
  2789. name: "Size Thief",
  2790. height: math.unit(18, "feet")
  2791. },
  2792. {
  2793. name: "50 Foot Collie",
  2794. height: math.unit(50, "feet")
  2795. },
  2796. {
  2797. name: "Macro",
  2798. height: math.unit(96, "feet"),
  2799. default: true
  2800. },
  2801. {
  2802. name: "Megamerger",
  2803. height: math.unit(650, "feet")
  2804. },
  2805. ]
  2806. ))
  2807. characterMakers.push(() => makeCharacter(
  2808. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2809. {
  2810. front: {
  2811. height: math.unit(7, "feet"),
  2812. weight: math.unit(100, "kg"),
  2813. name: "Front",
  2814. image: {
  2815. source: "./media/characters/march/front.svg",
  2816. extra: 1992/1851,
  2817. bottom: 39/2031
  2818. }
  2819. },
  2820. foot: {
  2821. height: math.unit(0.9, "feet"),
  2822. name: "Foot",
  2823. image: {
  2824. source: "./media/characters/march/foot.svg"
  2825. }
  2826. },
  2827. },
  2828. [
  2829. {
  2830. name: "Normal",
  2831. height: math.unit(7.9, "feet")
  2832. },
  2833. {
  2834. name: "Macro",
  2835. height: math.unit(220, "meters")
  2836. },
  2837. {
  2838. name: "Megamacro",
  2839. height: math.unit(2.98, "km"),
  2840. default: true
  2841. },
  2842. {
  2843. name: "Gigamacro",
  2844. height: math.unit(15963, "km")
  2845. },
  2846. {
  2847. name: "Teramacro",
  2848. height: math.unit(2980000000, "km")
  2849. },
  2850. {
  2851. name: "Examacro",
  2852. height: math.unit(250, "parsecs")
  2853. },
  2854. ]
  2855. ))
  2856. characterMakers.push(() => makeCharacter(
  2857. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2858. {
  2859. front: {
  2860. height: math.unit(6, "feet"),
  2861. weight: math.unit(60, "kg"),
  2862. name: "Front",
  2863. image: {
  2864. source: "./media/characters/noir/front.svg",
  2865. extra: 1793/1668,
  2866. bottom: 74/1867
  2867. }
  2868. },
  2869. },
  2870. [
  2871. {
  2872. name: "Normal",
  2873. height: math.unit(6.6, "feet")
  2874. },
  2875. {
  2876. name: "Macro",
  2877. height: math.unit(500, "feet")
  2878. },
  2879. {
  2880. name: "Megamacro",
  2881. height: math.unit(2.5, "km"),
  2882. default: true
  2883. },
  2884. {
  2885. name: "Gigamacro",
  2886. height: math.unit(22500, "km")
  2887. },
  2888. {
  2889. name: "Teramacro",
  2890. height: math.unit(2500000000, "km")
  2891. },
  2892. {
  2893. name: "Examacro",
  2894. height: math.unit(200, "parsecs")
  2895. },
  2896. ]
  2897. ))
  2898. characterMakers.push(() => makeCharacter(
  2899. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2900. {
  2901. front: {
  2902. height: math.unit(7, "feet"),
  2903. weight: math.unit(100, "kg"),
  2904. name: "Front",
  2905. image: {
  2906. source: "./media/characters/okuri/front.svg",
  2907. extra: 739/665,
  2908. bottom: 39/778
  2909. }
  2910. },
  2911. back: {
  2912. height: math.unit(7, "feet"),
  2913. weight: math.unit(100, "kg"),
  2914. name: "Back",
  2915. image: {
  2916. source: "./media/characters/okuri/back.svg",
  2917. extra: 734/653,
  2918. bottom: 13/747
  2919. }
  2920. },
  2921. sitting: {
  2922. height: math.unit(2.95, "feet"),
  2923. weight: math.unit(100, "kg"),
  2924. name: "Sitting",
  2925. image: {
  2926. source: "./media/characters/okuri/sitting.svg",
  2927. extra: 370/318,
  2928. bottom: 99/469
  2929. }
  2930. },
  2931. },
  2932. [
  2933. {
  2934. name: "Smallest",
  2935. height: math.unit(5 + 2/12, "feet")
  2936. },
  2937. {
  2938. name: "Smaller",
  2939. height: math.unit(300, "feet")
  2940. },
  2941. {
  2942. name: "Small",
  2943. height: math.unit(1000, "feet")
  2944. },
  2945. {
  2946. name: "Macro",
  2947. height: math.unit(1, "mile")
  2948. },
  2949. {
  2950. name: "Mega Macro (Small)",
  2951. height: math.unit(20, "km")
  2952. },
  2953. {
  2954. name: "Mega Macro (Large)",
  2955. height: math.unit(600, "km")
  2956. },
  2957. {
  2958. name: "Giga Macro",
  2959. height: math.unit(10000, "km")
  2960. },
  2961. {
  2962. name: "Normal",
  2963. height: math.unit(577560, "km"),
  2964. default: true
  2965. },
  2966. {
  2967. name: "Large",
  2968. height: math.unit(4, "galaxies")
  2969. },
  2970. {
  2971. name: "Largest",
  2972. height: math.unit(15, "multiverses")
  2973. },
  2974. ]
  2975. ))
  2976. characterMakers.push(() => makeCharacter(
  2977. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2978. {
  2979. front: {
  2980. height: math.unit(7, "feet"),
  2981. weight: math.unit(100, "kg"),
  2982. name: "Front",
  2983. image: {
  2984. source: "./media/characters/manny/front.svg",
  2985. extra: 1,
  2986. bottom: 0.06
  2987. }
  2988. },
  2989. back: {
  2990. height: math.unit(7, "feet"),
  2991. weight: math.unit(100, "kg"),
  2992. name: "Back",
  2993. image: {
  2994. source: "./media/characters/manny/back.svg",
  2995. extra: 1,
  2996. bottom: 0.014
  2997. }
  2998. },
  2999. },
  3000. [
  3001. {
  3002. name: "Normal",
  3003. height: math.unit(7, "feet"),
  3004. },
  3005. {
  3006. name: "Macro",
  3007. height: math.unit(78, "feet"),
  3008. default: true
  3009. },
  3010. {
  3011. name: "Macro+",
  3012. height: math.unit(300, "meters")
  3013. },
  3014. {
  3015. name: "Macro++",
  3016. height: math.unit(2400, "meters")
  3017. },
  3018. {
  3019. name: "Megamacro",
  3020. height: math.unit(5167, "meters")
  3021. },
  3022. {
  3023. name: "Gigamacro",
  3024. height: math.unit(41769, "miles")
  3025. },
  3026. ]
  3027. ))
  3028. characterMakers.push(() => makeCharacter(
  3029. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  3030. {
  3031. front: {
  3032. height: math.unit(7, "feet"),
  3033. weight: math.unit(100, "kg"),
  3034. name: "Front",
  3035. image: {
  3036. source: "./media/characters/adake/front-1.svg"
  3037. }
  3038. },
  3039. frontAlt: {
  3040. height: math.unit(7, "feet"),
  3041. weight: math.unit(100, "kg"),
  3042. name: "Front (Alt)",
  3043. image: {
  3044. source: "./media/characters/adake/front-2.svg",
  3045. extra: 1,
  3046. bottom: 0.01
  3047. }
  3048. },
  3049. back: {
  3050. height: math.unit(7, "feet"),
  3051. weight: math.unit(100, "kg"),
  3052. name: "Back",
  3053. image: {
  3054. source: "./media/characters/adake/back.svg",
  3055. }
  3056. },
  3057. kneel: {
  3058. height: math.unit(5.385, "feet"),
  3059. weight: math.unit(100, "kg"),
  3060. name: "Kneeling",
  3061. image: {
  3062. source: "./media/characters/adake/kneel.svg",
  3063. bottom: 0.052
  3064. }
  3065. },
  3066. },
  3067. [
  3068. {
  3069. name: "Normal",
  3070. height: math.unit(7, "feet"),
  3071. },
  3072. {
  3073. name: "Macro",
  3074. height: math.unit(78, "feet"),
  3075. default: true
  3076. },
  3077. {
  3078. name: "Macro+",
  3079. height: math.unit(300, "meters")
  3080. },
  3081. {
  3082. name: "Macro++",
  3083. height: math.unit(2400, "meters")
  3084. },
  3085. {
  3086. name: "Megamacro",
  3087. height: math.unit(5167, "meters")
  3088. },
  3089. {
  3090. name: "Gigamacro",
  3091. height: math.unit(41769, "miles")
  3092. },
  3093. ]
  3094. ))
  3095. characterMakers.push(() => makeCharacter(
  3096. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  3097. {
  3098. front: {
  3099. height: math.unit(1.65, "meters"),
  3100. weight: math.unit(50, "kg"),
  3101. name: "Front",
  3102. image: {
  3103. source: "./media/characters/elijah/front.svg",
  3104. extra: 858 / 830,
  3105. bottom: 95.5 / 953.8559
  3106. }
  3107. },
  3108. back: {
  3109. height: math.unit(1.65, "meters"),
  3110. weight: math.unit(50, "kg"),
  3111. name: "Back",
  3112. image: {
  3113. source: "./media/characters/elijah/back.svg",
  3114. extra: 895 / 850,
  3115. bottom: 5.3 / 897.956
  3116. }
  3117. },
  3118. frontNsfw: {
  3119. height: math.unit(1.65, "meters"),
  3120. weight: math.unit(50, "kg"),
  3121. name: "Front (NSFW)",
  3122. image: {
  3123. source: "./media/characters/elijah/front-nsfw.svg",
  3124. extra: 858 / 830,
  3125. bottom: 95.5 / 953.8559
  3126. }
  3127. },
  3128. backNsfw: {
  3129. height: math.unit(1.65, "meters"),
  3130. weight: math.unit(50, "kg"),
  3131. name: "Back (NSFW)",
  3132. image: {
  3133. source: "./media/characters/elijah/back-nsfw.svg",
  3134. extra: 895 / 850,
  3135. bottom: 5.3 / 897.956
  3136. }
  3137. },
  3138. dick: {
  3139. height: math.unit(1, "feet"),
  3140. name: "Dick",
  3141. image: {
  3142. source: "./media/characters/elijah/dick.svg"
  3143. }
  3144. },
  3145. beakOpen: {
  3146. height: math.unit(1.25, "feet"),
  3147. name: "Beak (Open)",
  3148. image: {
  3149. source: "./media/characters/elijah/beak-open.svg"
  3150. }
  3151. },
  3152. beakShut: {
  3153. height: math.unit(1.25, "feet"),
  3154. name: "Beak (Shut)",
  3155. image: {
  3156. source: "./media/characters/elijah/beak-shut.svg"
  3157. }
  3158. },
  3159. footFlexing: {
  3160. height: math.unit(1.61, "feet"),
  3161. name: "Foot (Flexing)",
  3162. image: {
  3163. source: "./media/characters/elijah/foot-flexing.svg"
  3164. }
  3165. },
  3166. footStepping: {
  3167. height: math.unit(1.44, "feet"),
  3168. name: "Foot (Stepping)",
  3169. image: {
  3170. source: "./media/characters/elijah/foot-stepping.svg"
  3171. }
  3172. },
  3173. plantigradeLeg: {
  3174. height: math.unit(2.34, "feet"),
  3175. name: "Plantigrade Leg",
  3176. image: {
  3177. source: "./media/characters/elijah/plantigrade-leg.svg"
  3178. }
  3179. },
  3180. plantigradeFootLeft: {
  3181. height: math.unit(0.9, "feet"),
  3182. name: "Plantigrade Foot (Left)",
  3183. image: {
  3184. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3185. }
  3186. },
  3187. plantigradeFootRight: {
  3188. height: math.unit(0.9, "feet"),
  3189. name: "Plantigrade Foot (Right)",
  3190. image: {
  3191. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3192. }
  3193. },
  3194. },
  3195. [
  3196. {
  3197. name: "Normal",
  3198. height: math.unit(1.65, "meters")
  3199. },
  3200. {
  3201. name: "Macro",
  3202. height: math.unit(55, "meters"),
  3203. default: true
  3204. },
  3205. {
  3206. name: "Macro+",
  3207. height: math.unit(105, "meters")
  3208. },
  3209. ]
  3210. ))
  3211. characterMakers.push(() => makeCharacter(
  3212. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3213. {
  3214. front: {
  3215. height: math.unit(7 + 2/12, "feet"),
  3216. weight: math.unit(320, "kg"),
  3217. preyCapacity: math.unit(0.276549935, "people"),
  3218. name: "Front",
  3219. image: {
  3220. source: "./media/characters/rai/front.svg",
  3221. extra: 1802/1696,
  3222. bottom: 68/1870
  3223. },
  3224. form: "anthro",
  3225. default: true
  3226. },
  3227. frontDressed: {
  3228. height: math.unit(7 + 2/12, "feet"),
  3229. weight: math.unit(320, "kg"),
  3230. preyCapacity: math.unit(0.276549935, "people"),
  3231. name: "Front (Dressed)",
  3232. image: {
  3233. source: "./media/characters/rai/front-dressed.svg",
  3234. extra: 1802/1696,
  3235. bottom: 68/1870
  3236. },
  3237. form: "anthro"
  3238. },
  3239. side: {
  3240. height: math.unit(7 + 2/12, "feet"),
  3241. weight: math.unit(320, "kg"),
  3242. preyCapacity: math.unit(0.276549935, "people"),
  3243. name: "Side",
  3244. image: {
  3245. source: "./media/characters/rai/side.svg",
  3246. extra: 1789/1710,
  3247. bottom: 115/1904
  3248. },
  3249. form: "anthro"
  3250. },
  3251. back: {
  3252. height: math.unit(7 + 2/12, "feet"),
  3253. weight: math.unit(320, "kg"),
  3254. preyCapacity: math.unit(0.276549935, "people"),
  3255. name: "Back",
  3256. image: {
  3257. source: "./media/characters/rai/back.svg",
  3258. extra: 1770/1707,
  3259. bottom: 28/1798
  3260. },
  3261. form: "anthro"
  3262. },
  3263. feral: {
  3264. height: math.unit(9.5, "feet"),
  3265. weight: math.unit(640, "kg"),
  3266. preyCapacity: math.unit(4, "people"),
  3267. name: "Feral",
  3268. image: {
  3269. source: "./media/characters/rai/feral.svg",
  3270. extra: 945/553,
  3271. bottom: 176/1121
  3272. },
  3273. form: "feral",
  3274. default: true
  3275. },
  3276. dragon: {
  3277. height: math.unit(23, "feet"),
  3278. weight: math.unit(50000, "lb"),
  3279. name: "Dragon",
  3280. image: {
  3281. source: "./media/characters/rai/dragon.svg",
  3282. extra: 2498 / 2030,
  3283. bottom: 85.2 / 2584
  3284. },
  3285. form: "dragon",
  3286. default: true
  3287. },
  3288. maw: {
  3289. height: math.unit(1.69, "feet"),
  3290. name: "Maw",
  3291. image: {
  3292. source: "./media/characters/rai/maw.svg"
  3293. },
  3294. form: "anthro"
  3295. },
  3296. },
  3297. [
  3298. {
  3299. name: "Normal",
  3300. height: math.unit(7 + 2/12, "feet"),
  3301. form: "anthro"
  3302. },
  3303. {
  3304. name: "Big",
  3305. height: math.unit(11, "feet"),
  3306. form: "anthro"
  3307. },
  3308. {
  3309. name: "Minimacro",
  3310. height: math.unit(77, "feet"),
  3311. form: "anthro"
  3312. },
  3313. {
  3314. name: "Macro",
  3315. height: math.unit(302, "feet"),
  3316. default: true,
  3317. form: "anthro"
  3318. },
  3319. {
  3320. name: "Normal",
  3321. height: math.unit(9.5, "feet"),
  3322. form: "feral",
  3323. default: true
  3324. },
  3325. {
  3326. name: "Normal",
  3327. height: math.unit(23, "feet"),
  3328. form: "dragon",
  3329. default: true
  3330. }
  3331. ],
  3332. {
  3333. "anthro": {
  3334. name: "Anthro",
  3335. default: true
  3336. },
  3337. "feral": {
  3338. name: "Feral",
  3339. },
  3340. "dragon": {
  3341. name: "Dragon",
  3342. },
  3343. }
  3344. ))
  3345. characterMakers.push(() => makeCharacter(
  3346. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3347. {
  3348. frontDressed: {
  3349. height: math.unit(216, "feet"),
  3350. weight: math.unit(7000000, "lb"),
  3351. preyCapacity: math.unit(1321, "people"),
  3352. name: "Front (Dressed)",
  3353. image: {
  3354. source: "./media/characters/jazzy/front-dressed.svg",
  3355. extra: 2738 / 2651,
  3356. bottom: 41.8 / 2786
  3357. }
  3358. },
  3359. backDressed: {
  3360. height: math.unit(216, "feet"),
  3361. weight: math.unit(7000000, "lb"),
  3362. preyCapacity: math.unit(1321, "people"),
  3363. name: "Back (Dressed)",
  3364. image: {
  3365. source: "./media/characters/jazzy/back-dressed.svg",
  3366. extra: 2775 / 2673,
  3367. bottom: 36.8 / 2817
  3368. }
  3369. },
  3370. front: {
  3371. height: math.unit(216, "feet"),
  3372. weight: math.unit(7000000, "lb"),
  3373. preyCapacity: math.unit(1321, "people"),
  3374. name: "Front",
  3375. image: {
  3376. source: "./media/characters/jazzy/front.svg",
  3377. extra: 2738 / 2651,
  3378. bottom: 41.8 / 2786
  3379. }
  3380. },
  3381. back: {
  3382. height: math.unit(216, "feet"),
  3383. weight: math.unit(7000000, "lb"),
  3384. preyCapacity: math.unit(1321, "people"),
  3385. name: "Back",
  3386. image: {
  3387. source: "./media/characters/jazzy/back.svg",
  3388. extra: 2775 / 2673,
  3389. bottom: 36.8 / 2817
  3390. }
  3391. },
  3392. maw: {
  3393. height: math.unit(20, "feet"),
  3394. name: "Maw",
  3395. image: {
  3396. source: "./media/characters/jazzy/maw.svg"
  3397. }
  3398. },
  3399. paws: {
  3400. height: math.unit(27.5, "feet"),
  3401. name: "Paws",
  3402. image: {
  3403. source: "./media/characters/jazzy/paws.svg"
  3404. }
  3405. },
  3406. eye: {
  3407. height: math.unit(4.4, "feet"),
  3408. name: "Eye",
  3409. image: {
  3410. source: "./media/characters/jazzy/eye.svg"
  3411. }
  3412. },
  3413. droneOffense: {
  3414. height: math.unit(9.5, "inches"),
  3415. name: "Drone (Offense)",
  3416. image: {
  3417. source: "./media/characters/jazzy/drone-offense.svg"
  3418. }
  3419. },
  3420. droneRecon: {
  3421. height: math.unit(9.5, "inches"),
  3422. name: "Drone (Recon)",
  3423. image: {
  3424. source: "./media/characters/jazzy/drone-recon.svg"
  3425. }
  3426. },
  3427. droneDefense: {
  3428. height: math.unit(9.5, "inches"),
  3429. name: "Drone (Defense)",
  3430. image: {
  3431. source: "./media/characters/jazzy/drone-defense.svg"
  3432. }
  3433. },
  3434. },
  3435. [
  3436. {
  3437. name: "Macro",
  3438. height: math.unit(216, "feet"),
  3439. default: true
  3440. },
  3441. ]
  3442. ))
  3443. characterMakers.push(() => makeCharacter(
  3444. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3445. {
  3446. front: {
  3447. height: math.unit(9 + 6/12, "feet"),
  3448. weight: math.unit(700, "lb"),
  3449. name: "Front",
  3450. image: {
  3451. source: "./media/characters/flamm/front.svg",
  3452. extra: 1736/1596,
  3453. bottom: 93/1829
  3454. }
  3455. },
  3456. buff: {
  3457. height: math.unit(9 + 6/12, "feet"),
  3458. weight: math.unit(950, "lb"),
  3459. name: "Buff",
  3460. image: {
  3461. source: "./media/characters/flamm/buff.svg",
  3462. extra: 3018/2874,
  3463. bottom: 221/3239
  3464. }
  3465. },
  3466. },
  3467. [
  3468. {
  3469. name: "Normal",
  3470. height: math.unit(9.5, "feet")
  3471. },
  3472. {
  3473. name: "Macro",
  3474. height: math.unit(200, "feet"),
  3475. default: true
  3476. },
  3477. ]
  3478. ))
  3479. characterMakers.push(() => makeCharacter(
  3480. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3481. {
  3482. front: {
  3483. height: math.unit(5 + 3/12, "feet"),
  3484. weight: math.unit(60, "kg"),
  3485. name: "Front",
  3486. image: {
  3487. source: "./media/characters/zephiro/front.svg",
  3488. extra: 1873/1761,
  3489. bottom: 147/2020
  3490. }
  3491. },
  3492. side: {
  3493. height: math.unit(5 + 3/12, "feet"),
  3494. weight: math.unit(60, "kg"),
  3495. name: "Side",
  3496. image: {
  3497. source: "./media/characters/zephiro/side.svg",
  3498. extra: 1929/1827,
  3499. bottom: 65/1994
  3500. }
  3501. },
  3502. back: {
  3503. height: math.unit(5 + 3/12, "feet"),
  3504. weight: math.unit(60, "kg"),
  3505. name: "Back",
  3506. image: {
  3507. source: "./media/characters/zephiro/back.svg",
  3508. extra: 1926/1816,
  3509. bottom: 41/1967
  3510. }
  3511. },
  3512. hand: {
  3513. height: math.unit(0.68, "feet"),
  3514. name: "Hand",
  3515. image: {
  3516. source: "./media/characters/zephiro/hand.svg"
  3517. }
  3518. },
  3519. paw: {
  3520. height: math.unit(1, "feet"),
  3521. name: "Paw",
  3522. image: {
  3523. source: "./media/characters/zephiro/paw.svg"
  3524. }
  3525. },
  3526. beans: {
  3527. height: math.unit(0.93, "feet"),
  3528. name: "Beans",
  3529. image: {
  3530. source: "./media/characters/zephiro/beans.svg"
  3531. }
  3532. },
  3533. },
  3534. [
  3535. {
  3536. name: "Micro",
  3537. height: math.unit(3, "inches")
  3538. },
  3539. {
  3540. name: "Normal",
  3541. height: math.unit(5 + 3 / 12, "feet"),
  3542. default: true
  3543. },
  3544. {
  3545. name: "Macro",
  3546. height: math.unit(118, "feet")
  3547. },
  3548. ]
  3549. ))
  3550. characterMakers.push(() => makeCharacter(
  3551. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3552. {
  3553. front: {
  3554. height: math.unit(5, "feet"),
  3555. weight: math.unit(90, "kg"),
  3556. preyCapacity: math.unit(14, "people"),
  3557. name: "Front",
  3558. image: {
  3559. source: "./media/characters/fory/front.svg",
  3560. extra: 2862 / 2674,
  3561. bottom: 180 / 3043.8
  3562. },
  3563. form: "weaselbun",
  3564. default: true,
  3565. extraAttributes: {
  3566. "pawSize": {
  3567. name: "Paw Size",
  3568. power: 2,
  3569. type: "area",
  3570. base: math.unit(0.1596, "m^2")
  3571. },
  3572. "pawLength": {
  3573. name: "Paw Length",
  3574. power: 1,
  3575. type: "length",
  3576. base: math.unit(0.7, "m")
  3577. }
  3578. }
  3579. },
  3580. back: {
  3581. height: math.unit(5, "feet"),
  3582. weight: math.unit(90, "kg"),
  3583. preyCapacity: math.unit(14, "people"),
  3584. name: "Back",
  3585. image: {
  3586. source: "./media/characters/fory/back.svg",
  3587. extra: 1790/1672,
  3588. bottom: 84/1874
  3589. },
  3590. form: "weaselbun",
  3591. extraAttributes: {
  3592. "pawSize": {
  3593. name: "Paw Size",
  3594. power: 2,
  3595. type: "area",
  3596. base: math.unit(0.1596, "m^2")
  3597. },
  3598. "pawLength": {
  3599. name: "Paw Length",
  3600. power: 1,
  3601. type: "length",
  3602. base: math.unit(0.7, "m")
  3603. }
  3604. }
  3605. },
  3606. paw: {
  3607. height: math.unit(2.14, "feet"),
  3608. name: "Paw",
  3609. image: {
  3610. source: "./media/characters/fory/paw.svg"
  3611. },
  3612. form: "weaselbun",
  3613. extraAttributes: {
  3614. "pawSize": {
  3615. name: "Paw Size",
  3616. power: 2,
  3617. type: "area",
  3618. base: math.unit(0.1596, "m^2")
  3619. },
  3620. "pawLength": {
  3621. name: "Paw Length",
  3622. power: 1,
  3623. type: "length",
  3624. base: math.unit(0.48, "m")
  3625. }
  3626. }
  3627. },
  3628. bunBack: {
  3629. height: math.unit(3, "feet"),
  3630. weight: math.unit(20, "kg"),
  3631. preyCapacity: math.unit(3, "people"),
  3632. name: "Back",
  3633. image: {
  3634. source: "./media/characters/fory/bun-back.svg",
  3635. extra: 1749/1564,
  3636. bottom: 246/1995
  3637. },
  3638. form: "bun",
  3639. default: true,
  3640. extraAttributes: {
  3641. "pawSize": {
  3642. name: "Paw Size",
  3643. power: 2,
  3644. type: "area",
  3645. base: math.unit(0.072, "m^2")
  3646. },
  3647. "pawLength": {
  3648. name: "Paw Length",
  3649. power: 1,
  3650. type: "length",
  3651. base: math.unit(0.45, "m")
  3652. }
  3653. }
  3654. },
  3655. },
  3656. [
  3657. {
  3658. name: "Normal",
  3659. height: math.unit(5, "feet"),
  3660. form: "weaselbun"
  3661. },
  3662. {
  3663. name: "Macro",
  3664. height: math.unit(50, "feet"),
  3665. default: true,
  3666. form: "weaselbun"
  3667. },
  3668. {
  3669. name: "Megamacro",
  3670. height: math.unit(10, "miles"),
  3671. form: "weaselbun"
  3672. },
  3673. {
  3674. name: "Gigamacro",
  3675. height: math.unit(5, "earths"),
  3676. form: "weaselbun"
  3677. },
  3678. {
  3679. name: "Normal",
  3680. height: math.unit(3, "feet"),
  3681. default: true,
  3682. form: "bun"
  3683. },
  3684. {
  3685. name: "Fun-Size",
  3686. height: math.unit(12, "feet"),
  3687. form: "bun"
  3688. },
  3689. {
  3690. name: "Macro",
  3691. height: math.unit(100, "feet"),
  3692. form: "bun"
  3693. },
  3694. {
  3695. name: "Planetary",
  3696. height: math.unit(3, "earths"),
  3697. form: "bun"
  3698. },
  3699. ],
  3700. {
  3701. "weaselbun": {
  3702. name: "Weaselbun",
  3703. default: true
  3704. },
  3705. "bun": {
  3706. name: "Bun",
  3707. },
  3708. }
  3709. ))
  3710. characterMakers.push(() => makeCharacter(
  3711. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3712. {
  3713. front: {
  3714. height: math.unit(7, "feet"),
  3715. weight: math.unit(90, "kg"),
  3716. name: "Front",
  3717. image: {
  3718. source: "./media/characters/kurrikage/front.svg",
  3719. extra: 1845/1733,
  3720. bottom: 119/1964
  3721. }
  3722. },
  3723. back: {
  3724. height: math.unit(7, "feet"),
  3725. weight: math.unit(90, "kg"),
  3726. name: "Back",
  3727. image: {
  3728. source: "./media/characters/kurrikage/back.svg",
  3729. extra: 1790/1677,
  3730. bottom: 61/1851
  3731. }
  3732. },
  3733. dressed: {
  3734. height: math.unit(7, "feet"),
  3735. weight: math.unit(90, "kg"),
  3736. name: "Dressed",
  3737. image: {
  3738. source: "./media/characters/kurrikage/dressed.svg",
  3739. extra: 1845/1733,
  3740. bottom: 119/1964
  3741. }
  3742. },
  3743. foot: {
  3744. height: math.unit(1.5, "feet"),
  3745. name: "Foot",
  3746. image: {
  3747. source: "./media/characters/kurrikage/foot.svg"
  3748. }
  3749. },
  3750. staff: {
  3751. height: math.unit(6.7, "feet"),
  3752. name: "Staff",
  3753. image: {
  3754. source: "./media/characters/kurrikage/staff.svg"
  3755. }
  3756. },
  3757. peek: {
  3758. height: math.unit(1.05, "feet"),
  3759. name: "Peeking",
  3760. image: {
  3761. source: "./media/characters/kurrikage/peek.svg",
  3762. bottom: 0.08
  3763. }
  3764. },
  3765. },
  3766. [
  3767. {
  3768. name: "Normal",
  3769. height: math.unit(12, "feet"),
  3770. default: true
  3771. },
  3772. {
  3773. name: "Big",
  3774. height: math.unit(20, "feet")
  3775. },
  3776. {
  3777. name: "Macro",
  3778. height: math.unit(500, "feet")
  3779. },
  3780. {
  3781. name: "Megamacro",
  3782. height: math.unit(20, "miles")
  3783. },
  3784. ]
  3785. ))
  3786. characterMakers.push(() => makeCharacter(
  3787. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3788. {
  3789. front: {
  3790. height: math.unit(6, "feet"),
  3791. weight: math.unit(75, "kg"),
  3792. name: "Front",
  3793. image: {
  3794. source: "./media/characters/shingo/front.svg",
  3795. extra: 1900/1825,
  3796. bottom: 82/1982
  3797. }
  3798. },
  3799. side: {
  3800. height: math.unit(6, "feet"),
  3801. weight: math.unit(75, "kg"),
  3802. name: "Side",
  3803. image: {
  3804. source: "./media/characters/shingo/side.svg",
  3805. extra: 1930/1865,
  3806. bottom: 16/1946
  3807. }
  3808. },
  3809. back: {
  3810. height: math.unit(6, "feet"),
  3811. weight: math.unit(75, "kg"),
  3812. name: "Back",
  3813. image: {
  3814. source: "./media/characters/shingo/back.svg",
  3815. extra: 1922/1852,
  3816. bottom: 16/1938
  3817. }
  3818. },
  3819. frontDressed: {
  3820. height: math.unit(6, "feet"),
  3821. weight: math.unit(150, "lb"),
  3822. name: "Front (Dressed)",
  3823. image: {
  3824. source: "./media/characters/shingo/front-dressed.svg",
  3825. extra: 1900/1825,
  3826. bottom: 82/1982
  3827. }
  3828. },
  3829. paw: {
  3830. height: math.unit(1.29, "feet"),
  3831. name: "Paw",
  3832. image: {
  3833. source: "./media/characters/shingo/paw.svg"
  3834. }
  3835. },
  3836. hand: {
  3837. height: math.unit(1.07, "feet"),
  3838. name: "Hand",
  3839. image: {
  3840. source: "./media/characters/shingo/hand.svg"
  3841. }
  3842. },
  3843. frontAlt: {
  3844. height: math.unit(6, "feet"),
  3845. weight: math.unit(75, "kg"),
  3846. name: "Front (Alt)",
  3847. image: {
  3848. source: "./media/characters/shingo/front-alt.svg",
  3849. extra: 3511 / 3338,
  3850. bottom: 0.005
  3851. }
  3852. },
  3853. frontAlt2: {
  3854. height: math.unit(6, "feet"),
  3855. weight: math.unit(75, "kg"),
  3856. name: "Front (Alt 2)",
  3857. image: {
  3858. source: "./media/characters/shingo/front-alt-2.svg",
  3859. extra: 706/681,
  3860. bottom: 11/717
  3861. }
  3862. },
  3863. pawAlt: {
  3864. height: math.unit(1, "feet"),
  3865. name: "Paw (Alt)",
  3866. image: {
  3867. source: "./media/characters/shingo/paw-alt.svg"
  3868. }
  3869. },
  3870. },
  3871. [
  3872. {
  3873. name: "Micro",
  3874. height: math.unit(4, "inches")
  3875. },
  3876. {
  3877. name: "Normal",
  3878. height: math.unit(6, "feet"),
  3879. default: true
  3880. },
  3881. {
  3882. name: "Macro",
  3883. height: math.unit(108, "feet")
  3884. },
  3885. {
  3886. name: "Macro+",
  3887. height: math.unit(1500, "feet")
  3888. },
  3889. ]
  3890. ))
  3891. characterMakers.push(() => makeCharacter(
  3892. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3893. {
  3894. side: {
  3895. height: math.unit(6, "feet"),
  3896. weight: math.unit(75, "kg"),
  3897. name: "Side",
  3898. image: {
  3899. source: "./media/characters/aigey/side.svg"
  3900. }
  3901. },
  3902. },
  3903. [
  3904. {
  3905. name: "Macro",
  3906. height: math.unit(200, "feet"),
  3907. default: true
  3908. },
  3909. {
  3910. name: "Megamacro",
  3911. height: math.unit(100, "miles")
  3912. },
  3913. ]
  3914. )
  3915. )
  3916. characterMakers.push(() => makeCharacter(
  3917. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3918. {
  3919. front: {
  3920. height: math.unit(13, "feet"),
  3921. weight: math.unit(1036.80, "kg"),
  3922. name: "Front",
  3923. image: {
  3924. source: "./media/characters/natasha/front.svg",
  3925. extra: 1301/1210,
  3926. bottom: 39/1340
  3927. }
  3928. },
  3929. back: {
  3930. height: math.unit(13, "feet"),
  3931. weight: math.unit(1036.80, "kg"),
  3932. name: "Back",
  3933. image: {
  3934. source: "./media/characters/natasha/back.svg",
  3935. extra: 1342/1252,
  3936. bottom: 20/1362
  3937. }
  3938. },
  3939. head: {
  3940. height: math.unit(3.48, "feet"),
  3941. name: "Head",
  3942. image: {
  3943. source: "./media/characters/natasha/head.svg"
  3944. }
  3945. },
  3946. jaws: {
  3947. height: math.unit(3.52, "feet"),
  3948. name: "Jaws",
  3949. image: {
  3950. source: "./media/characters/natasha/jaws.svg"
  3951. }
  3952. },
  3953. paws: {
  3954. height: math.unit(2.7, "feet"),
  3955. name: "Paws",
  3956. image: {
  3957. source: "./media/characters/natasha/paws.svg"
  3958. }
  3959. },
  3960. collar: {
  3961. height: math.unit(0.89, "feet"),
  3962. name: "Collar",
  3963. image: {
  3964. source: "./media/characters/natasha/collar.svg"
  3965. }
  3966. },
  3967. gauge: {
  3968. height: math.unit(0.36, "feet"),
  3969. name: "Gauge",
  3970. image: {
  3971. source: "./media/characters/natasha/gauge.svg"
  3972. }
  3973. },
  3974. },
  3975. [
  3976. {
  3977. name: "Shortstack",
  3978. height: math.unit(3, "feet")
  3979. },
  3980. {
  3981. name: "Normal",
  3982. height: math.unit(13, "feet"),
  3983. default: true
  3984. },
  3985. {
  3986. name: "Macro",
  3987. height: math.unit(100, "feet")
  3988. },
  3989. {
  3990. name: "Macro+",
  3991. height: math.unit(260, "feet")
  3992. },
  3993. {
  3994. name: "Macro++",
  3995. height: math.unit(1, "mile")
  3996. },
  3997. ]
  3998. ))
  3999. characterMakers.push(() => makeCharacter(
  4000. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  4001. {
  4002. front: {
  4003. height: math.unit(6, "feet"),
  4004. weight: math.unit(75, "kg"),
  4005. name: "Front",
  4006. image: {
  4007. source: "./media/characters/malik/front.svg",
  4008. extra: 1750/1561,
  4009. bottom: 80/1830
  4010. },
  4011. extraAttributes: {
  4012. "toeSize": {
  4013. name: "Toe Size",
  4014. power: 2,
  4015. type: "area",
  4016. base: math.unit(0.0159, "m^2")
  4017. },
  4018. "pawSize": {
  4019. name: "Paw Size",
  4020. power: 2,
  4021. type: "area",
  4022. base: math.unit(0.09834, "m^2")
  4023. },
  4024. }
  4025. },
  4026. side: {
  4027. height: math.unit(6, "feet"),
  4028. weight: math.unit(75, "kg"),
  4029. name: "Side",
  4030. image: {
  4031. source: "./media/characters/malik/side.svg",
  4032. extra: 1802/1685,
  4033. bottom: 42/1844
  4034. },
  4035. extraAttributes: {
  4036. "toeSize": {
  4037. name: "Toe Size",
  4038. power: 2,
  4039. type: "area",
  4040. base: math.unit(0.0159, "m^2")
  4041. },
  4042. "pawSize": {
  4043. name: "Paw Size",
  4044. power: 2,
  4045. type: "area",
  4046. base: math.unit(0.09834, "m^2")
  4047. },
  4048. }
  4049. },
  4050. back: {
  4051. height: math.unit(6, "feet"),
  4052. weight: math.unit(75, "kg"),
  4053. name: "Back",
  4054. image: {
  4055. source: "./media/characters/malik/back.svg",
  4056. extra: 1803/1607,
  4057. bottom: 33/1836
  4058. },
  4059. extraAttributes: {
  4060. "toeSize": {
  4061. name: "Toe Size",
  4062. power: 2,
  4063. type: "area",
  4064. base: math.unit(0.0159, "m^2")
  4065. },
  4066. "pawSize": {
  4067. name: "Paw Size",
  4068. power: 2,
  4069. type: "area",
  4070. base: math.unit(0.09834, "m^2")
  4071. },
  4072. }
  4073. },
  4074. },
  4075. [
  4076. {
  4077. name: "Macro",
  4078. height: math.unit(156, "feet"),
  4079. default: true
  4080. },
  4081. {
  4082. name: "Macro+",
  4083. height: math.unit(1188, "feet")
  4084. },
  4085. ]
  4086. ))
  4087. characterMakers.push(() => makeCharacter(
  4088. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  4089. {
  4090. front: {
  4091. height: math.unit(6, "feet"),
  4092. weight: math.unit(75, "kg"),
  4093. name: "Front",
  4094. image: {
  4095. source: "./media/characters/sefer/front.svg",
  4096. extra: 848 / 659,
  4097. bottom: 28.3 / 876.442
  4098. }
  4099. },
  4100. back: {
  4101. height: math.unit(6, "feet"),
  4102. weight: math.unit(75, "kg"),
  4103. name: "Back",
  4104. image: {
  4105. source: "./media/characters/sefer/back.svg",
  4106. extra: 864 / 695,
  4107. bottom: 10 / 871
  4108. }
  4109. },
  4110. frontDressed: {
  4111. height: math.unit(6, "feet"),
  4112. weight: math.unit(75, "kg"),
  4113. name: "Dressed",
  4114. image: {
  4115. source: "./media/characters/sefer/dressed.svg",
  4116. extra: 839 / 653,
  4117. bottom: 37.6 / 878
  4118. }
  4119. },
  4120. },
  4121. [
  4122. {
  4123. name: "Normal",
  4124. height: math.unit(6, "feet"),
  4125. default: true
  4126. },
  4127. {
  4128. name: "Big",
  4129. height: math.unit(8, "meters")
  4130. },
  4131. ]
  4132. ))
  4133. characterMakers.push(() => makeCharacter(
  4134. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  4135. {
  4136. body: {
  4137. height: math.unit(2.2428, "meter"),
  4138. weight: math.unit(124.738, "kg"),
  4139. name: "Body",
  4140. image: {
  4141. extra: 1225 / 1050,
  4142. source: "./media/characters/north/front.svg"
  4143. }
  4144. }
  4145. },
  4146. [
  4147. {
  4148. name: "Micro",
  4149. height: math.unit(4, "inches")
  4150. },
  4151. {
  4152. name: "Macro",
  4153. height: math.unit(63, "meters")
  4154. },
  4155. {
  4156. name: "Megamacro",
  4157. height: math.unit(101, "miles"),
  4158. default: true
  4159. }
  4160. ]
  4161. ))
  4162. characterMakers.push(() => makeCharacter(
  4163. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4164. {
  4165. angled: {
  4166. height: math.unit(4, "meter"),
  4167. weight: math.unit(150, "kg"),
  4168. name: "Angled",
  4169. image: {
  4170. source: "./media/characters/talan/angled-sfw.svg",
  4171. bottom: 29 / 3734
  4172. }
  4173. },
  4174. angledNsfw: {
  4175. height: math.unit(4, "meter"),
  4176. weight: math.unit(150, "kg"),
  4177. name: "Angled (NSFW)",
  4178. image: {
  4179. source: "./media/characters/talan/angled-nsfw.svg",
  4180. bottom: 29 / 3734
  4181. }
  4182. },
  4183. frontNsfw: {
  4184. height: math.unit(4, "meter"),
  4185. weight: math.unit(150, "kg"),
  4186. name: "Front (NSFW)",
  4187. image: {
  4188. source: "./media/characters/talan/front-nsfw.svg",
  4189. bottom: 29 / 3734
  4190. }
  4191. },
  4192. sideNsfw: {
  4193. height: math.unit(4, "meter"),
  4194. weight: math.unit(150, "kg"),
  4195. name: "Side (NSFW)",
  4196. image: {
  4197. source: "./media/characters/talan/side-nsfw.svg",
  4198. bottom: 29 / 3734
  4199. }
  4200. },
  4201. back: {
  4202. height: math.unit(4, "meter"),
  4203. weight: math.unit(150, "kg"),
  4204. name: "Back",
  4205. image: {
  4206. source: "./media/characters/talan/back.svg"
  4207. }
  4208. },
  4209. dickBottom: {
  4210. height: math.unit(0.621, "meter"),
  4211. name: "Dick (Bottom)",
  4212. image: {
  4213. source: "./media/characters/talan/dick-bottom.svg"
  4214. }
  4215. },
  4216. dickTop: {
  4217. height: math.unit(0.621, "meter"),
  4218. name: "Dick (Top)",
  4219. image: {
  4220. source: "./media/characters/talan/dick-top.svg"
  4221. }
  4222. },
  4223. dickSide: {
  4224. height: math.unit(0.305, "meter"),
  4225. name: "Dick (Side)",
  4226. image: {
  4227. source: "./media/characters/talan/dick-side.svg"
  4228. }
  4229. },
  4230. dickFront: {
  4231. height: math.unit(0.305, "meter"),
  4232. name: "Dick (Front)",
  4233. image: {
  4234. source: "./media/characters/talan/dick-front.svg"
  4235. }
  4236. },
  4237. },
  4238. [
  4239. {
  4240. name: "Normal",
  4241. height: math.unit(4, "meters")
  4242. },
  4243. {
  4244. name: "Macro",
  4245. height: math.unit(100, "meters")
  4246. },
  4247. {
  4248. name: "Megamacro",
  4249. height: math.unit(2, "miles"),
  4250. default: true
  4251. },
  4252. {
  4253. name: "Gigamacro",
  4254. height: math.unit(5000, "miles")
  4255. },
  4256. {
  4257. name: "Teramacro",
  4258. height: math.unit(100, "parsecs")
  4259. }
  4260. ]
  4261. ))
  4262. characterMakers.push(() => makeCharacter(
  4263. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4264. {
  4265. front: {
  4266. height: math.unit(2, "meter"),
  4267. weight: math.unit(90, "kg"),
  4268. name: "Front",
  4269. image: {
  4270. source: "./media/characters/gael'rathus/front.svg"
  4271. }
  4272. },
  4273. frontAlt: {
  4274. height: math.unit(2, "meter"),
  4275. weight: math.unit(90, "kg"),
  4276. name: "Front (alt)",
  4277. image: {
  4278. source: "./media/characters/gael'rathus/front-alt.svg"
  4279. }
  4280. },
  4281. frontAlt2: {
  4282. height: math.unit(2, "meter"),
  4283. weight: math.unit(90, "kg"),
  4284. name: "Front (alt 2)",
  4285. image: {
  4286. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4287. }
  4288. }
  4289. },
  4290. [
  4291. {
  4292. name: "Normal",
  4293. height: math.unit(9, "feet"),
  4294. default: true
  4295. },
  4296. {
  4297. name: "Large",
  4298. height: math.unit(25, "feet")
  4299. },
  4300. {
  4301. name: "Macro",
  4302. height: math.unit(0.25, "miles")
  4303. },
  4304. {
  4305. name: "Megamacro",
  4306. height: math.unit(10, "miles")
  4307. }
  4308. ]
  4309. ))
  4310. characterMakers.push(() => makeCharacter(
  4311. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4312. {
  4313. side: {
  4314. height: math.unit(2, "meter"),
  4315. weight: math.unit(140, "kg"),
  4316. name: "Side",
  4317. image: {
  4318. source: "./media/characters/sosha/side.svg",
  4319. extra: 1170/1006,
  4320. bottom: 94/1264
  4321. }
  4322. },
  4323. maw: {
  4324. height: math.unit(2.87, "feet"),
  4325. name: "Maw",
  4326. image: {
  4327. source: "./media/characters/sosha/maw.svg",
  4328. extra: 966/865,
  4329. bottom: 0/966
  4330. }
  4331. },
  4332. cooch: {
  4333. height: math.unit(5.6, "feet"),
  4334. name: "Cooch",
  4335. image: {
  4336. source: "./media/characters/sosha/cooch.svg"
  4337. }
  4338. },
  4339. },
  4340. [
  4341. {
  4342. name: "Normal",
  4343. height: math.unit(12, "feet"),
  4344. default: true
  4345. }
  4346. ]
  4347. ))
  4348. characterMakers.push(() => makeCharacter(
  4349. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4350. {
  4351. side: {
  4352. height: math.unit(5 + 5 / 12, "feet"),
  4353. weight: math.unit(170, "kg"),
  4354. name: "Side",
  4355. image: {
  4356. source: "./media/characters/runnola/side.svg",
  4357. extra: 741 / 448,
  4358. bottom: 0.05
  4359. }
  4360. },
  4361. },
  4362. [
  4363. {
  4364. name: "Small",
  4365. height: math.unit(3, "feet")
  4366. },
  4367. {
  4368. name: "Normal",
  4369. height: math.unit(5 + 5 / 12, "feet"),
  4370. default: true
  4371. },
  4372. {
  4373. name: "Big",
  4374. height: math.unit(10, "feet")
  4375. },
  4376. ]
  4377. ))
  4378. characterMakers.push(() => makeCharacter(
  4379. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4380. {
  4381. front: {
  4382. height: math.unit(2, "meter"),
  4383. weight: math.unit(50, "kg"),
  4384. name: "Front",
  4385. image: {
  4386. source: "./media/characters/kurribird/front.svg",
  4387. bottom: 0.015
  4388. }
  4389. },
  4390. frontAlt: {
  4391. height: math.unit(1.5, "meter"),
  4392. weight: math.unit(50, "kg"),
  4393. name: "Front (Alt)",
  4394. image: {
  4395. source: "./media/characters/kurribird/front-alt.svg",
  4396. extra: 1.45
  4397. }
  4398. },
  4399. },
  4400. [
  4401. {
  4402. name: "Normal",
  4403. height: math.unit(7, "feet")
  4404. },
  4405. {
  4406. name: "Big",
  4407. height: math.unit(12, "feet"),
  4408. default: true
  4409. },
  4410. {
  4411. name: "Macro",
  4412. height: math.unit(1500, "feet")
  4413. },
  4414. {
  4415. name: "Megamacro",
  4416. height: math.unit(2, "miles")
  4417. }
  4418. ]
  4419. ))
  4420. characterMakers.push(() => makeCharacter(
  4421. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4422. {
  4423. front: {
  4424. height: math.unit(2, "meter"),
  4425. weight: math.unit(80, "kg"),
  4426. name: "Front",
  4427. image: {
  4428. source: "./media/characters/elbial/front.svg",
  4429. extra: 1643 / 1556,
  4430. bottom: 60.2 / 1696
  4431. }
  4432. },
  4433. side: {
  4434. height: math.unit(2, "meter"),
  4435. weight: math.unit(80, "kg"),
  4436. name: "Side",
  4437. image: {
  4438. source: "./media/characters/elbial/side.svg",
  4439. extra: 1601/1528,
  4440. bottom: 97/1698
  4441. }
  4442. },
  4443. back: {
  4444. height: math.unit(2, "meter"),
  4445. weight: math.unit(80, "kg"),
  4446. name: "Back",
  4447. image: {
  4448. source: "./media/characters/elbial/back.svg",
  4449. extra: 1653/1569,
  4450. bottom: 20/1673
  4451. }
  4452. },
  4453. frontDressed: {
  4454. height: math.unit(2, "meter"),
  4455. weight: math.unit(80, "kg"),
  4456. name: "Front (Dressed)",
  4457. image: {
  4458. source: "./media/characters/elbial/front-dressed.svg",
  4459. extra: 1638/1569,
  4460. bottom: 70/1708
  4461. }
  4462. },
  4463. genitals: {
  4464. height: math.unit(2 / 3.367, "meter"),
  4465. name: "Genitals",
  4466. image: {
  4467. source: "./media/characters/elbial/genitals.svg"
  4468. }
  4469. },
  4470. },
  4471. [
  4472. {
  4473. name: "Large",
  4474. height: math.unit(100, "feet")
  4475. },
  4476. {
  4477. name: "Macro",
  4478. height: math.unit(500, "feet"),
  4479. default: true
  4480. },
  4481. {
  4482. name: "Megamacro",
  4483. height: math.unit(10, "miles")
  4484. },
  4485. {
  4486. name: "Gigamacro",
  4487. height: math.unit(25000, "miles")
  4488. },
  4489. {
  4490. name: "Full-Size",
  4491. height: math.unit(8000000, "gigaparsecs")
  4492. }
  4493. ]
  4494. ))
  4495. characterMakers.push(() => makeCharacter(
  4496. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4497. {
  4498. front: {
  4499. height: math.unit(2, "meter"),
  4500. weight: math.unit(60, "kg"),
  4501. name: "Front",
  4502. image: {
  4503. source: "./media/characters/noah/front.svg",
  4504. extra: 1383/1313,
  4505. bottom: 104/1487
  4506. }
  4507. },
  4508. hand: {
  4509. height: math.unit(0.6, "feet"),
  4510. name: "Hand",
  4511. image: {
  4512. source: "./media/characters/noah/hand.svg"
  4513. }
  4514. },
  4515. talons: {
  4516. height: math.unit(1.385, "feet"),
  4517. name: "Talons",
  4518. image: {
  4519. source: "./media/characters/noah/talons.svg"
  4520. }
  4521. },
  4522. beak: {
  4523. height: math.unit(0.43, "feet"),
  4524. name: "Beak",
  4525. image: {
  4526. source: "./media/characters/noah/beak.svg"
  4527. }
  4528. },
  4529. collar: {
  4530. height: math.unit(0.88, "feet"),
  4531. name: "Collar",
  4532. image: {
  4533. source: "./media/characters/noah/collar.svg"
  4534. }
  4535. },
  4536. eyeNarrow: {
  4537. height: math.unit(0.18, "feet"),
  4538. name: "Eye (Narrow)",
  4539. image: {
  4540. source: "./media/characters/noah/eye-narrow.svg"
  4541. }
  4542. },
  4543. eyeNormal: {
  4544. height: math.unit(0.18, "feet"),
  4545. name: "Eye (Normal)",
  4546. image: {
  4547. source: "./media/characters/noah/eye-normal.svg"
  4548. }
  4549. },
  4550. eyeWide: {
  4551. height: math.unit(0.18, "feet"),
  4552. name: "Eye (Wide)",
  4553. image: {
  4554. source: "./media/characters/noah/eye-wide.svg"
  4555. }
  4556. },
  4557. ear: {
  4558. height: math.unit(0.64, "feet"),
  4559. name: "Ear",
  4560. image: {
  4561. source: "./media/characters/noah/ear.svg"
  4562. }
  4563. },
  4564. },
  4565. [
  4566. {
  4567. name: "Large",
  4568. height: math.unit(50, "feet")
  4569. },
  4570. {
  4571. name: "Macro",
  4572. height: math.unit(750, "feet"),
  4573. default: true
  4574. },
  4575. {
  4576. name: "Megamacro",
  4577. height: math.unit(50, "miles")
  4578. },
  4579. {
  4580. name: "Gigamacro",
  4581. height: math.unit(100000, "miles")
  4582. },
  4583. {
  4584. name: "Full-Size",
  4585. height: math.unit(3000000000, "miles")
  4586. }
  4587. ]
  4588. ))
  4589. characterMakers.push(() => makeCharacter(
  4590. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4591. {
  4592. front: {
  4593. height: math.unit(2, "meter"),
  4594. weight: math.unit(80, "kg"),
  4595. name: "Front",
  4596. image: {
  4597. source: "./media/characters/natalya/front.svg"
  4598. }
  4599. },
  4600. back: {
  4601. height: math.unit(2, "meter"),
  4602. weight: math.unit(80, "kg"),
  4603. name: "Back",
  4604. image: {
  4605. source: "./media/characters/natalya/back.svg"
  4606. }
  4607. }
  4608. },
  4609. [
  4610. {
  4611. name: "Normal",
  4612. height: math.unit(150, "feet"),
  4613. default: true
  4614. },
  4615. {
  4616. name: "Megamacro",
  4617. height: math.unit(5, "miles")
  4618. },
  4619. {
  4620. name: "Full-Size",
  4621. height: math.unit(600, "kiloparsecs")
  4622. }
  4623. ]
  4624. ))
  4625. characterMakers.push(() => makeCharacter(
  4626. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4627. {
  4628. front: {
  4629. height: math.unit(2, "meter"),
  4630. weight: math.unit(50, "kg"),
  4631. name: "Front",
  4632. image: {
  4633. source: "./media/characters/erestrebah/front.svg",
  4634. extra: 1262/1162,
  4635. bottom: 96/1358
  4636. }
  4637. },
  4638. back: {
  4639. height: math.unit(2, "meter"),
  4640. weight: math.unit(50, "kg"),
  4641. name: "Back",
  4642. image: {
  4643. source: "./media/characters/erestrebah/back.svg",
  4644. extra: 1257/1139,
  4645. bottom: 13/1270
  4646. }
  4647. },
  4648. wing: {
  4649. height: math.unit(2, "meter"),
  4650. weight: math.unit(50, "kg"),
  4651. name: "Wing",
  4652. image: {
  4653. source: "./media/characters/erestrebah/wing.svg",
  4654. extra: 1262/1162,
  4655. bottom: 96/1358
  4656. }
  4657. },
  4658. mouth: {
  4659. height: math.unit(0.39, "feet"),
  4660. name: "Mouth",
  4661. image: {
  4662. source: "./media/characters/erestrebah/mouth.svg"
  4663. }
  4664. }
  4665. },
  4666. [
  4667. {
  4668. name: "Normal",
  4669. height: math.unit(10, "feet")
  4670. },
  4671. {
  4672. name: "Large",
  4673. height: math.unit(50, "feet"),
  4674. default: true
  4675. },
  4676. {
  4677. name: "Macro",
  4678. height: math.unit(300, "feet")
  4679. },
  4680. {
  4681. name: "Macro+",
  4682. height: math.unit(750, "feet")
  4683. },
  4684. {
  4685. name: "Megamacro",
  4686. height: math.unit(3, "miles")
  4687. }
  4688. ]
  4689. ))
  4690. characterMakers.push(() => makeCharacter(
  4691. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4692. {
  4693. front: {
  4694. height: math.unit(2, "meter"),
  4695. weight: math.unit(80, "kg"),
  4696. name: "Front",
  4697. image: {
  4698. source: "./media/characters/jennifer/front.svg",
  4699. bottom: 0.11,
  4700. extra: 1.16
  4701. }
  4702. },
  4703. frontAlt: {
  4704. height: math.unit(2, "meter"),
  4705. weight: math.unit(80, "kg"),
  4706. name: "Front (Alt)",
  4707. image: {
  4708. source: "./media/characters/jennifer/front-alt.svg"
  4709. }
  4710. }
  4711. },
  4712. [
  4713. {
  4714. name: "Canon Height",
  4715. height: math.unit(120, "feet"),
  4716. default: true
  4717. },
  4718. {
  4719. name: "Macro+",
  4720. height: math.unit(300, "feet")
  4721. },
  4722. {
  4723. name: "Megamacro",
  4724. height: math.unit(20000, "feet")
  4725. }
  4726. ]
  4727. ))
  4728. characterMakers.push(() => makeCharacter(
  4729. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4730. {
  4731. front: {
  4732. height: math.unit(2, "meter"),
  4733. weight: math.unit(50, "kg"),
  4734. name: "Front",
  4735. image: {
  4736. source: "./media/characters/kalista/front.svg",
  4737. extra: 1314/1145,
  4738. bottom: 101/1415
  4739. }
  4740. },
  4741. back: {
  4742. height: math.unit(2, "meter"),
  4743. weight: math.unit(50, "kg"),
  4744. name: "Back",
  4745. image: {
  4746. source: "./media/characters/kalista/back.svg",
  4747. extra: 1366 / 1156,
  4748. bottom: 33.9 / 1362.78
  4749. }
  4750. }
  4751. },
  4752. [
  4753. {
  4754. name: "Uncomfortably Small",
  4755. height: math.unit(10, "feet")
  4756. },
  4757. {
  4758. name: "Small",
  4759. height: math.unit(30, "feet")
  4760. },
  4761. {
  4762. name: "Macro",
  4763. height: math.unit(100, "feet"),
  4764. default: true
  4765. },
  4766. {
  4767. name: "Macro+",
  4768. height: math.unit(2000, "feet")
  4769. },
  4770. {
  4771. name: "True Form",
  4772. height: math.unit(8924, "miles")
  4773. }
  4774. ]
  4775. ))
  4776. characterMakers.push(() => makeCharacter(
  4777. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4778. {
  4779. front: {
  4780. height: math.unit(2, "meter"),
  4781. weight: math.unit(120, "kg"),
  4782. name: "Front",
  4783. image: {
  4784. source: "./media/characters/ggv/front.svg"
  4785. }
  4786. },
  4787. side: {
  4788. height: math.unit(2, "meter"),
  4789. weight: math.unit(120, "kg"),
  4790. name: "Side",
  4791. image: {
  4792. source: "./media/characters/ggv/side.svg"
  4793. }
  4794. }
  4795. },
  4796. [
  4797. {
  4798. name: "Extremely Puny",
  4799. height: math.unit(9 + 5 / 12, "feet")
  4800. },
  4801. {
  4802. name: "Horribly Small",
  4803. height: math.unit(47.7, "miles"),
  4804. default: true
  4805. },
  4806. {
  4807. name: "Reasonably Sized",
  4808. height: math.unit(25000, "parsecs")
  4809. },
  4810. {
  4811. name: "Slightly Uncompressed",
  4812. height: math.unit(7.77e31, "parsecs")
  4813. },
  4814. {
  4815. name: "Omniversal",
  4816. height: math.unit(1e300, "meters")
  4817. },
  4818. ]
  4819. ))
  4820. characterMakers.push(() => makeCharacter(
  4821. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4822. {
  4823. front: {
  4824. height: math.unit(2, "meter"),
  4825. weight: math.unit(75, "lb"),
  4826. name: "Front",
  4827. image: {
  4828. source: "./media/characters/napalm/front.svg"
  4829. }
  4830. },
  4831. back: {
  4832. height: math.unit(2, "meter"),
  4833. weight: math.unit(75, "lb"),
  4834. name: "Back",
  4835. image: {
  4836. source: "./media/characters/napalm/back.svg"
  4837. }
  4838. }
  4839. },
  4840. [
  4841. {
  4842. name: "Standard",
  4843. height: math.unit(55, "feet"),
  4844. default: true
  4845. }
  4846. ]
  4847. ))
  4848. characterMakers.push(() => makeCharacter(
  4849. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4850. {
  4851. front: {
  4852. height: math.unit(7 + 5 / 6, "feet"),
  4853. weight: math.unit(325, "lb"),
  4854. name: "Front",
  4855. image: {
  4856. source: "./media/characters/asana/front.svg",
  4857. extra: 1133 / 1060,
  4858. bottom: 15.2 / 1148.6
  4859. }
  4860. },
  4861. back: {
  4862. height: math.unit(7 + 5 / 6, "feet"),
  4863. weight: math.unit(325, "lb"),
  4864. name: "Back",
  4865. image: {
  4866. source: "./media/characters/asana/back.svg",
  4867. extra: 1114 / 1043,
  4868. bottom: 5 / 1120
  4869. }
  4870. },
  4871. dressedDark: {
  4872. height: math.unit(7 + 5 / 6, "feet"),
  4873. weight: math.unit(325, "lb"),
  4874. name: "Dressed (Dark)",
  4875. image: {
  4876. source: "./media/characters/asana/dressed-dark.svg",
  4877. extra: 1133 / 1060,
  4878. bottom: 15.2 / 1148.6
  4879. }
  4880. },
  4881. dressedLight: {
  4882. height: math.unit(7 + 5 / 6, "feet"),
  4883. weight: math.unit(325, "lb"),
  4884. name: "Dressed (Light)",
  4885. image: {
  4886. source: "./media/characters/asana/dressed-light.svg",
  4887. extra: 1133 / 1060,
  4888. bottom: 15.2 / 1148.6
  4889. }
  4890. },
  4891. },
  4892. [
  4893. {
  4894. name: "Standard",
  4895. height: math.unit(7 + 5 / 6, "feet"),
  4896. default: true
  4897. },
  4898. {
  4899. name: "Large",
  4900. height: math.unit(10, "meters")
  4901. },
  4902. {
  4903. name: "Macro",
  4904. height: math.unit(2500, "meters")
  4905. },
  4906. {
  4907. name: "Megamacro",
  4908. height: math.unit(5e6, "meters")
  4909. },
  4910. {
  4911. name: "Examacro",
  4912. height: math.unit(5e12, "lightyears")
  4913. },
  4914. {
  4915. name: "Max Size",
  4916. height: math.unit(1e31, "lightyears")
  4917. }
  4918. ]
  4919. ))
  4920. characterMakers.push(() => makeCharacter(
  4921. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4922. {
  4923. front: {
  4924. height: math.unit(2, "meter"),
  4925. weight: math.unit(60, "kg"),
  4926. name: "Front",
  4927. image: {
  4928. source: "./media/characters/ebony/front.svg",
  4929. bottom: 0.03,
  4930. extra: 1045 / 810 + 0.03
  4931. }
  4932. },
  4933. side: {
  4934. height: math.unit(2, "meter"),
  4935. weight: math.unit(60, "kg"),
  4936. name: "Side",
  4937. image: {
  4938. source: "./media/characters/ebony/side.svg",
  4939. bottom: 0.03,
  4940. extra: 1045 / 810 + 0.03
  4941. }
  4942. },
  4943. back: {
  4944. height: math.unit(2, "meter"),
  4945. weight: math.unit(60, "kg"),
  4946. name: "Back",
  4947. image: {
  4948. source: "./media/characters/ebony/back.svg",
  4949. bottom: 0.01,
  4950. extra: 1045 / 810 + 0.01
  4951. }
  4952. },
  4953. },
  4954. [
  4955. // TODO check why I did this lol
  4956. {
  4957. name: "Standard",
  4958. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4959. default: true
  4960. },
  4961. {
  4962. name: "Macro",
  4963. height: math.unit(200, "feet")
  4964. },
  4965. {
  4966. name: "Gigamacro",
  4967. height: math.unit(13000, "km")
  4968. }
  4969. ]
  4970. ))
  4971. characterMakers.push(() => makeCharacter(
  4972. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4973. {
  4974. front: {
  4975. height: math.unit(6, "feet"),
  4976. weight: math.unit(175, "lb"),
  4977. name: "Front",
  4978. image: {
  4979. source: "./media/characters/mountain/front.svg",
  4980. extra: 972 / 955,
  4981. bottom: 64 / 1036.6
  4982. }
  4983. },
  4984. back: {
  4985. height: math.unit(6, "feet"),
  4986. weight: math.unit(175, "lb"),
  4987. name: "Back",
  4988. image: {
  4989. source: "./media/characters/mountain/back.svg",
  4990. extra: 970 / 950,
  4991. bottom: 28.25 / 999
  4992. }
  4993. },
  4994. },
  4995. [
  4996. {
  4997. name: "Large",
  4998. height: math.unit(20, "meters")
  4999. },
  5000. {
  5001. name: "Macro",
  5002. height: math.unit(300, "meters")
  5003. },
  5004. {
  5005. name: "Gigamacro",
  5006. height: math.unit(10000, "km"),
  5007. default: true
  5008. },
  5009. {
  5010. name: "Examacro",
  5011. height: math.unit(10e9, "lightyears")
  5012. }
  5013. ]
  5014. ))
  5015. characterMakers.push(() => makeCharacter(
  5016. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  5017. {
  5018. front: {
  5019. height: math.unit(8, "feet"),
  5020. weight: math.unit(500, "lb"),
  5021. name: "Front",
  5022. image: {
  5023. source: "./media/characters/rick/front.svg"
  5024. }
  5025. }
  5026. },
  5027. [
  5028. {
  5029. name: "Normal",
  5030. height: math.unit(8, "feet"),
  5031. default: true
  5032. },
  5033. {
  5034. name: "Macro",
  5035. height: math.unit(5, "km")
  5036. }
  5037. ]
  5038. ))
  5039. characterMakers.push(() => makeCharacter(
  5040. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  5041. {
  5042. front: {
  5043. height: math.unit(8, "feet"),
  5044. weight: math.unit(120, "lb"),
  5045. name: "Front",
  5046. image: {
  5047. source: "./media/characters/ona/front.svg"
  5048. }
  5049. },
  5050. frontAlt: {
  5051. height: math.unit(8, "feet"),
  5052. weight: math.unit(120, "lb"),
  5053. name: "Front (Alt)",
  5054. image: {
  5055. source: "./media/characters/ona/front-alt.svg"
  5056. }
  5057. },
  5058. back: {
  5059. height: math.unit(8, "feet"),
  5060. weight: math.unit(120, "lb"),
  5061. name: "Back",
  5062. image: {
  5063. source: "./media/characters/ona/back.svg"
  5064. }
  5065. },
  5066. foot: {
  5067. height: math.unit(1.1, "feet"),
  5068. name: "Foot",
  5069. image: {
  5070. source: "./media/characters/ona/foot.svg"
  5071. }
  5072. }
  5073. },
  5074. [
  5075. {
  5076. name: "Megamacro",
  5077. height: math.unit(70, "km"),
  5078. default: true
  5079. },
  5080. {
  5081. name: "Gigamacro",
  5082. height: math.unit(681818, "miles")
  5083. },
  5084. {
  5085. name: "Examacro",
  5086. height: math.unit(3800000, "lightyears")
  5087. },
  5088. ]
  5089. ))
  5090. characterMakers.push(() => makeCharacter(
  5091. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  5092. {
  5093. front: {
  5094. height: math.unit(12, "feet"),
  5095. weight: math.unit(3000, "lb"),
  5096. name: "Front",
  5097. image: {
  5098. source: "./media/characters/mech/front.svg",
  5099. extra: 2900 / 2770,
  5100. bottom: 110 / 3010
  5101. }
  5102. },
  5103. back: {
  5104. height: math.unit(12, "feet"),
  5105. weight: math.unit(3000, "lb"),
  5106. name: "Back",
  5107. image: {
  5108. source: "./media/characters/mech/back.svg",
  5109. extra: 3011 / 2890,
  5110. bottom: 94 / 3105
  5111. }
  5112. },
  5113. maw: {
  5114. height: math.unit(3.07, "feet"),
  5115. name: "Maw",
  5116. image: {
  5117. source: "./media/characters/mech/maw.svg"
  5118. }
  5119. },
  5120. head: {
  5121. height: math.unit(3.07, "feet"),
  5122. name: "Head",
  5123. image: {
  5124. source: "./media/characters/mech/head.svg"
  5125. }
  5126. },
  5127. dick: {
  5128. height: math.unit(1.43, "feet"),
  5129. name: "Dick",
  5130. image: {
  5131. source: "./media/characters/mech/dick.svg"
  5132. }
  5133. },
  5134. },
  5135. [
  5136. {
  5137. name: "Normal",
  5138. height: math.unit(12, "feet")
  5139. },
  5140. {
  5141. name: "Macro",
  5142. height: math.unit(300, "feet"),
  5143. default: true
  5144. },
  5145. {
  5146. name: "Macro+",
  5147. height: math.unit(1500, "feet")
  5148. },
  5149. ]
  5150. ))
  5151. characterMakers.push(() => makeCharacter(
  5152. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5153. {
  5154. front: {
  5155. height: math.unit(1.3, "meter"),
  5156. weight: math.unit(30, "kg"),
  5157. name: "Front",
  5158. image: {
  5159. source: "./media/characters/gregory/front.svg",
  5160. }
  5161. }
  5162. },
  5163. [
  5164. {
  5165. name: "Normal",
  5166. height: math.unit(1.3, "meter"),
  5167. default: true
  5168. },
  5169. {
  5170. name: "Macro",
  5171. height: math.unit(20, "meter")
  5172. }
  5173. ]
  5174. ))
  5175. characterMakers.push(() => makeCharacter(
  5176. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5177. {
  5178. front: {
  5179. height: math.unit(2.8, "meter"),
  5180. weight: math.unit(200, "kg"),
  5181. name: "Front",
  5182. image: {
  5183. source: "./media/characters/elory/front.svg",
  5184. }
  5185. }
  5186. },
  5187. [
  5188. {
  5189. name: "Normal",
  5190. height: math.unit(2.8, "meter"),
  5191. default: true
  5192. },
  5193. {
  5194. name: "Macro",
  5195. height: math.unit(38, "meter")
  5196. }
  5197. ]
  5198. ))
  5199. characterMakers.push(() => makeCharacter(
  5200. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5201. {
  5202. front: {
  5203. height: math.unit(470, "feet"),
  5204. weight: math.unit(924, "tons"),
  5205. name: "Front",
  5206. image: {
  5207. source: "./media/characters/angelpatamon/front.svg",
  5208. }
  5209. }
  5210. },
  5211. [
  5212. {
  5213. name: "Normal",
  5214. height: math.unit(470, "feet"),
  5215. default: true
  5216. },
  5217. {
  5218. name: "Deity Size I",
  5219. height: math.unit(28651.2, "km")
  5220. },
  5221. {
  5222. name: "Deity Size II",
  5223. height: math.unit(171907.2, "km")
  5224. }
  5225. ]
  5226. ))
  5227. characterMakers.push(() => makeCharacter(
  5228. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5229. {
  5230. side: {
  5231. height: math.unit(7.2, "meter"),
  5232. weight: math.unit(8.2, "tons"),
  5233. name: "Side",
  5234. image: {
  5235. source: "./media/characters/cryae/side.svg",
  5236. extra: 3500 / 1500
  5237. }
  5238. }
  5239. },
  5240. [
  5241. {
  5242. name: "Normal",
  5243. height: math.unit(7.2, "meter"),
  5244. default: true
  5245. }
  5246. ]
  5247. ))
  5248. characterMakers.push(() => makeCharacter(
  5249. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5250. {
  5251. front: {
  5252. height: math.unit(6, "feet"),
  5253. weight: math.unit(175, "lb"),
  5254. name: "Front",
  5255. image: {
  5256. source: "./media/characters/xera/front.svg",
  5257. extra: 2377 / 1972,
  5258. bottom: 75.5 / 2452
  5259. }
  5260. },
  5261. side: {
  5262. height: math.unit(6, "feet"),
  5263. weight: math.unit(175, "lb"),
  5264. name: "Side",
  5265. image: {
  5266. source: "./media/characters/xera/side.svg",
  5267. extra: 2345 / 2019,
  5268. bottom: 39.7 / 2384
  5269. }
  5270. },
  5271. back: {
  5272. height: math.unit(6, "feet"),
  5273. weight: math.unit(175, "lb"),
  5274. name: "Back",
  5275. image: {
  5276. source: "./media/characters/xera/back.svg",
  5277. extra: 2095 / 1984,
  5278. bottom: 67 / 2166
  5279. }
  5280. },
  5281. },
  5282. [
  5283. {
  5284. name: "Small",
  5285. height: math.unit(10, "feet")
  5286. },
  5287. {
  5288. name: "Macro",
  5289. height: math.unit(500, "meters"),
  5290. default: true
  5291. },
  5292. {
  5293. name: "Macro+",
  5294. height: math.unit(10, "km")
  5295. },
  5296. {
  5297. name: "Gigamacro",
  5298. height: math.unit(25000, "km")
  5299. },
  5300. {
  5301. name: "Teramacro",
  5302. height: math.unit(3e6, "km")
  5303. }
  5304. ]
  5305. ))
  5306. characterMakers.push(() => makeCharacter(
  5307. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5308. {
  5309. front: {
  5310. height: math.unit(6, "feet"),
  5311. weight: math.unit(175, "lb"),
  5312. name: "Front",
  5313. image: {
  5314. source: "./media/characters/nebula/front.svg",
  5315. extra: 2566 / 2362,
  5316. bottom: 81 / 2644
  5317. }
  5318. }
  5319. },
  5320. [
  5321. {
  5322. name: "Small",
  5323. height: math.unit(4.5, "meters")
  5324. },
  5325. {
  5326. name: "Macro",
  5327. height: math.unit(1500, "meters"),
  5328. default: true
  5329. },
  5330. {
  5331. name: "Megamacro",
  5332. height: math.unit(150, "km")
  5333. },
  5334. {
  5335. name: "Gigamacro",
  5336. height: math.unit(27000, "km")
  5337. }
  5338. ]
  5339. ))
  5340. characterMakers.push(() => makeCharacter(
  5341. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5342. {
  5343. front: {
  5344. height: math.unit(6, "feet"),
  5345. weight: math.unit(225, "lb"),
  5346. name: "Front",
  5347. image: {
  5348. source: "./media/characters/abysgar/front.svg",
  5349. extra: 1739/1614,
  5350. bottom: 71/1810
  5351. }
  5352. },
  5353. frontNsfw: {
  5354. height: math.unit(6, "feet"),
  5355. weight: math.unit(225, "lb"),
  5356. name: "Front (NSFW)",
  5357. image: {
  5358. source: "./media/characters/abysgar/front-nsfw.svg",
  5359. extra: 1739/1614,
  5360. bottom: 71/1810
  5361. }
  5362. },
  5363. back: {
  5364. height: math.unit(4.6, "feet"),
  5365. weight: math.unit(225, "lb"),
  5366. name: "Back",
  5367. image: {
  5368. source: "./media/characters/abysgar/back.svg",
  5369. extra: 1384/1327,
  5370. bottom: 0/1384
  5371. }
  5372. },
  5373. head: {
  5374. height: math.unit(1.25, "feet"),
  5375. name: "Head",
  5376. image: {
  5377. source: "./media/characters/abysgar/head.svg",
  5378. extra: 669/569,
  5379. bottom: 0/669
  5380. }
  5381. },
  5382. },
  5383. [
  5384. {
  5385. name: "Small",
  5386. height: math.unit(4.5, "meters")
  5387. },
  5388. {
  5389. name: "Macro",
  5390. height: math.unit(1250, "meters"),
  5391. default: true
  5392. },
  5393. {
  5394. name: "Megamacro",
  5395. height: math.unit(125, "km")
  5396. },
  5397. {
  5398. name: "Gigamacro",
  5399. height: math.unit(26000, "km")
  5400. }
  5401. ]
  5402. ))
  5403. characterMakers.push(() => makeCharacter(
  5404. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5405. {
  5406. front: {
  5407. height: math.unit(6, "feet"),
  5408. weight: math.unit(180, "lb"),
  5409. name: "Front",
  5410. image: {
  5411. source: "./media/characters/yakuz/front.svg"
  5412. }
  5413. }
  5414. },
  5415. [
  5416. {
  5417. name: "Small",
  5418. height: math.unit(5, "meters")
  5419. },
  5420. {
  5421. name: "Macro",
  5422. height: math.unit(1500, "meters"),
  5423. default: true
  5424. },
  5425. {
  5426. name: "Megamacro",
  5427. height: math.unit(200, "km")
  5428. },
  5429. {
  5430. name: "Gigamacro",
  5431. height: math.unit(100000, "km")
  5432. }
  5433. ]
  5434. ))
  5435. characterMakers.push(() => makeCharacter(
  5436. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5437. {
  5438. front: {
  5439. height: math.unit(6, "feet"),
  5440. weight: math.unit(175, "lb"),
  5441. name: "Front",
  5442. image: {
  5443. source: "./media/characters/mirova/front.svg",
  5444. extra: 3334 / 3071,
  5445. bottom: 42 / 3375.6
  5446. }
  5447. }
  5448. },
  5449. [
  5450. {
  5451. name: "Small",
  5452. height: math.unit(5, "meters")
  5453. },
  5454. {
  5455. name: "Macro",
  5456. height: math.unit(900, "meters"),
  5457. default: true
  5458. },
  5459. {
  5460. name: "Megamacro",
  5461. height: math.unit(135, "km")
  5462. },
  5463. {
  5464. name: "Gigamacro",
  5465. height: math.unit(20000, "km")
  5466. }
  5467. ]
  5468. ))
  5469. characterMakers.push(() => makeCharacter(
  5470. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5471. {
  5472. side: {
  5473. height: math.unit(28.35, "feet"),
  5474. weight: math.unit(99.75, "tons"),
  5475. name: "Side",
  5476. image: {
  5477. source: "./media/characters/asana-mech/side.svg",
  5478. extra: 923 / 699,
  5479. bottom: 50 / 975
  5480. }
  5481. },
  5482. chaingun: {
  5483. height: math.unit(7, "feet"),
  5484. weight: math.unit(2400, "lb"),
  5485. name: "Chaingun",
  5486. image: {
  5487. source: "./media/characters/asana-mech/chaingun.svg"
  5488. }
  5489. },
  5490. laser: {
  5491. height: math.unit(7.12, "feet"),
  5492. weight: math.unit(2000, "lb"),
  5493. name: "Laser",
  5494. image: {
  5495. source: "./media/characters/asana-mech/laser.svg"
  5496. }
  5497. },
  5498. },
  5499. [
  5500. {
  5501. name: "Normal",
  5502. height: math.unit(28.35, "feet"),
  5503. default: true
  5504. },
  5505. {
  5506. name: "Macro",
  5507. height: math.unit(2500, "feet")
  5508. },
  5509. {
  5510. name: "Megamacro",
  5511. height: math.unit(25, "miles")
  5512. },
  5513. {
  5514. name: "Examacro",
  5515. height: math.unit(6e8, "lightyears")
  5516. },
  5517. ]
  5518. ))
  5519. characterMakers.push(() => makeCharacter(
  5520. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5521. {
  5522. front: {
  5523. height: math.unit(5, "meters"),
  5524. weight: math.unit(1000, "kg"),
  5525. name: "Front",
  5526. image: {
  5527. source: "./media/characters/asche/front.svg",
  5528. extra: 1258 / 1190,
  5529. bottom: 47 / 1305
  5530. }
  5531. },
  5532. frontUnderwear: {
  5533. height: math.unit(5, "meters"),
  5534. weight: math.unit(1000, "kg"),
  5535. name: "Front (Underwear)",
  5536. image: {
  5537. source: "./media/characters/asche/front-underwear.svg",
  5538. extra: 1258 / 1190,
  5539. bottom: 47 / 1305
  5540. }
  5541. },
  5542. frontDressed: {
  5543. height: math.unit(5, "meters"),
  5544. weight: math.unit(1000, "kg"),
  5545. name: "Front (Dressed)",
  5546. image: {
  5547. source: "./media/characters/asche/front-dressed.svg",
  5548. extra: 1258 / 1190,
  5549. bottom: 47 / 1305
  5550. }
  5551. },
  5552. frontArmor: {
  5553. height: math.unit(5, "meters"),
  5554. weight: math.unit(1000, "kg"),
  5555. name: "Front (Armored)",
  5556. image: {
  5557. source: "./media/characters/asche/front-armored.svg",
  5558. extra: 1374 / 1308,
  5559. bottom: 23 / 1397
  5560. }
  5561. },
  5562. mp724: {
  5563. height: math.unit(0.96, "meters"),
  5564. weight: math.unit(38, "kg"),
  5565. name: "H&K MP724",
  5566. image: {
  5567. source: "./media/characters/asche/h&k-mp724.svg"
  5568. }
  5569. },
  5570. side: {
  5571. height: math.unit(5, "meters"),
  5572. weight: math.unit(1000, "kg"),
  5573. name: "Side",
  5574. image: {
  5575. source: "./media/characters/asche/side.svg",
  5576. extra: 1717 / 1609,
  5577. bottom: 0.005
  5578. }
  5579. },
  5580. back: {
  5581. height: math.unit(5, "meters"),
  5582. weight: math.unit(1000, "kg"),
  5583. name: "Back",
  5584. image: {
  5585. source: "./media/characters/asche/back.svg",
  5586. extra: 1570 / 1501
  5587. }
  5588. },
  5589. },
  5590. [
  5591. {
  5592. name: "DEFCON 5",
  5593. height: math.unit(5, "meters")
  5594. },
  5595. {
  5596. name: "DEFCON 4",
  5597. height: math.unit(500, "meters"),
  5598. default: true
  5599. },
  5600. {
  5601. name: "DEFCON 3",
  5602. height: math.unit(5, "km")
  5603. },
  5604. {
  5605. name: "DEFCON 2",
  5606. height: math.unit(500, "km")
  5607. },
  5608. {
  5609. name: "DEFCON 1",
  5610. height: math.unit(500000, "km")
  5611. },
  5612. {
  5613. name: "DEFCON 0",
  5614. height: math.unit(3, "gigaparsecs")
  5615. },
  5616. ]
  5617. ))
  5618. characterMakers.push(() => makeCharacter(
  5619. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5620. {
  5621. front: {
  5622. height: math.unit(7, "feet"),
  5623. weight: math.unit(92.7, "kg"),
  5624. name: "Front",
  5625. image: {
  5626. source: "./media/characters/gale/front.svg",
  5627. extra: 977/919,
  5628. bottom: 105/1082
  5629. }
  5630. },
  5631. side: {
  5632. height: math.unit(6.7, "feet"),
  5633. weight: math.unit(92.7, "kg"),
  5634. name: "Side",
  5635. image: {
  5636. source: "./media/characters/gale/side.svg",
  5637. extra: 978/922,
  5638. bottom: 140/1118
  5639. }
  5640. },
  5641. back: {
  5642. height: math.unit(7, "feet"),
  5643. weight: math.unit(92.7, "kg"),
  5644. name: "Back",
  5645. image: {
  5646. source: "./media/characters/gale/back.svg",
  5647. extra: 966/920,
  5648. bottom: 61/1027
  5649. }
  5650. },
  5651. maw: {
  5652. height: math.unit(2.23, "feet"),
  5653. name: "Maw",
  5654. image: {
  5655. source: "./media/characters/gale/maw.svg"
  5656. }
  5657. },
  5658. foot: {
  5659. height: math.unit(2.1, "feet"),
  5660. name: "Foot",
  5661. image: {
  5662. source: "./media/characters/gale/foot.svg"
  5663. }
  5664. },
  5665. },
  5666. [
  5667. {
  5668. name: "Normal",
  5669. height: math.unit(7, "feet")
  5670. },
  5671. {
  5672. name: "Macro",
  5673. height: math.unit(150, "feet"),
  5674. default: true
  5675. },
  5676. {
  5677. name: "Macro+",
  5678. height: math.unit(300, "feet")
  5679. },
  5680. ]
  5681. ))
  5682. characterMakers.push(() => makeCharacter(
  5683. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5684. {
  5685. front: {
  5686. height: math.unit(5 + 10/12, "feet"),
  5687. weight: math.unit(67, "kg"),
  5688. name: "Front",
  5689. image: {
  5690. source: "./media/characters/draylen/front.svg",
  5691. extra: 832/777,
  5692. bottom: 85/917
  5693. }
  5694. }
  5695. },
  5696. [
  5697. {
  5698. name: "Normal",
  5699. height: math.unit(5 + 10/12, "feet")
  5700. },
  5701. {
  5702. name: "Macro",
  5703. height: math.unit(150, "feet"),
  5704. default: true
  5705. }
  5706. ]
  5707. ))
  5708. characterMakers.push(() => makeCharacter(
  5709. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5710. {
  5711. front: {
  5712. height: math.unit(7 + 9 / 12, "feet"),
  5713. weight: math.unit(379, "lbs"),
  5714. name: "Front",
  5715. image: {
  5716. source: "./media/characters/chez/front.svg"
  5717. }
  5718. },
  5719. side: {
  5720. height: math.unit(7 + 9 / 12, "feet"),
  5721. weight: math.unit(379, "lbs"),
  5722. name: "Side",
  5723. image: {
  5724. source: "./media/characters/chez/side.svg"
  5725. }
  5726. }
  5727. },
  5728. [
  5729. {
  5730. name: "Normal",
  5731. height: math.unit(7 + 9 / 12, "feet"),
  5732. default: true
  5733. },
  5734. {
  5735. name: "God King",
  5736. height: math.unit(9750000, "meters")
  5737. }
  5738. ]
  5739. ))
  5740. characterMakers.push(() => makeCharacter(
  5741. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5742. {
  5743. front: {
  5744. height: math.unit(6, "feet"),
  5745. weight: math.unit(275, "lbs"),
  5746. name: "Front",
  5747. image: {
  5748. source: "./media/characters/kaylum/front.svg",
  5749. bottom: 0.01,
  5750. extra: 1166 / 1031
  5751. }
  5752. },
  5753. frontWingless: {
  5754. height: math.unit(6, "feet"),
  5755. weight: math.unit(275, "lbs"),
  5756. name: "Front (Wingless)",
  5757. image: {
  5758. source: "./media/characters/kaylum/front-wingless.svg",
  5759. bottom: 0.01,
  5760. extra: 1117 / 1031
  5761. }
  5762. }
  5763. },
  5764. [
  5765. {
  5766. name: "Normal",
  5767. height: math.unit(3.05, "meters")
  5768. },
  5769. {
  5770. name: "Master",
  5771. height: math.unit(5.5, "meters")
  5772. },
  5773. {
  5774. name: "Rampage",
  5775. height: math.unit(19, "meters")
  5776. },
  5777. {
  5778. name: "Macro Lite",
  5779. height: math.unit(37, "meters")
  5780. },
  5781. {
  5782. name: "Hyper Predator",
  5783. height: math.unit(61, "meters")
  5784. },
  5785. {
  5786. name: "Macro",
  5787. height: math.unit(138, "meters"),
  5788. default: true
  5789. }
  5790. ]
  5791. ))
  5792. characterMakers.push(() => makeCharacter(
  5793. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5794. {
  5795. front: {
  5796. height: math.unit(5 + 5 / 12, "feet"),
  5797. weight: math.unit(120, "lbs"),
  5798. name: "Front",
  5799. image: {
  5800. source: "./media/characters/geta/front.svg",
  5801. extra: 1003/933,
  5802. bottom: 21/1024
  5803. }
  5804. },
  5805. paw: {
  5806. height: math.unit(0.35, "feet"),
  5807. name: "Paw",
  5808. image: {
  5809. source: "./media/characters/geta/paw.svg"
  5810. }
  5811. },
  5812. },
  5813. [
  5814. {
  5815. name: "Micro",
  5816. height: math.unit(3, "inches"),
  5817. default: true
  5818. },
  5819. {
  5820. name: "Normal",
  5821. height: math.unit(5 + 5 / 12, "feet")
  5822. }
  5823. ]
  5824. ))
  5825. characterMakers.push(() => makeCharacter(
  5826. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5827. {
  5828. front: {
  5829. height: math.unit(6, "feet"),
  5830. weight: math.unit(300, "lbs"),
  5831. name: "Front",
  5832. image: {
  5833. source: "./media/characters/tyrnn/front.svg"
  5834. }
  5835. }
  5836. },
  5837. [
  5838. {
  5839. name: "Main Height",
  5840. height: math.unit(355, "feet"),
  5841. default: true
  5842. },
  5843. {
  5844. name: "Fave. Height",
  5845. height: math.unit(2400, "feet")
  5846. }
  5847. ]
  5848. ))
  5849. characterMakers.push(() => makeCharacter(
  5850. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5851. {
  5852. front: {
  5853. height: math.unit(6, "feet"),
  5854. weight: math.unit(300, "lbs"),
  5855. name: "Front",
  5856. image: {
  5857. source: "./media/characters/appledectomy/front.svg"
  5858. }
  5859. }
  5860. },
  5861. [
  5862. {
  5863. name: "Macro",
  5864. height: math.unit(2500, "feet")
  5865. },
  5866. {
  5867. name: "Megamacro",
  5868. height: math.unit(50, "miles"),
  5869. default: true
  5870. },
  5871. {
  5872. name: "Gigamacro",
  5873. height: math.unit(5000, "miles")
  5874. },
  5875. {
  5876. name: "Teramacro",
  5877. height: math.unit(250000, "miles")
  5878. },
  5879. ]
  5880. ))
  5881. characterMakers.push(() => makeCharacter(
  5882. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5883. {
  5884. front: {
  5885. height: math.unit(6, "feet"),
  5886. weight: math.unit(200, "lbs"),
  5887. name: "Front",
  5888. image: {
  5889. source: "./media/characters/vulpes/front.svg",
  5890. extra: 573 / 543,
  5891. bottom: 0.033
  5892. }
  5893. },
  5894. side: {
  5895. height: math.unit(6, "feet"),
  5896. weight: math.unit(200, "lbs"),
  5897. name: "Side",
  5898. image: {
  5899. source: "./media/characters/vulpes/side.svg",
  5900. extra: 577 / 549,
  5901. bottom: 11 / 588
  5902. }
  5903. },
  5904. back: {
  5905. height: math.unit(6, "feet"),
  5906. weight: math.unit(200, "lbs"),
  5907. name: "Back",
  5908. image: {
  5909. source: "./media/characters/vulpes/back.svg",
  5910. extra: 573 / 549,
  5911. bottom: 20 / 593
  5912. }
  5913. },
  5914. feet: {
  5915. height: math.unit(1.276, "feet"),
  5916. name: "Feet",
  5917. image: {
  5918. source: "./media/characters/vulpes/feet.svg"
  5919. }
  5920. },
  5921. maw: {
  5922. height: math.unit(1.18, "feet"),
  5923. name: "Maw",
  5924. image: {
  5925. source: "./media/characters/vulpes/maw.svg"
  5926. }
  5927. },
  5928. },
  5929. [
  5930. {
  5931. name: "Micro",
  5932. height: math.unit(2, "inches")
  5933. },
  5934. {
  5935. name: "Normal",
  5936. height: math.unit(6.3, "feet")
  5937. },
  5938. {
  5939. name: "Macro",
  5940. height: math.unit(850, "feet")
  5941. },
  5942. {
  5943. name: "Megamacro",
  5944. height: math.unit(7500, "feet"),
  5945. default: true
  5946. },
  5947. {
  5948. name: "Gigamacro",
  5949. height: math.unit(570000, "miles")
  5950. }
  5951. ]
  5952. ))
  5953. characterMakers.push(() => makeCharacter(
  5954. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5955. {
  5956. front: {
  5957. height: math.unit(6, "feet"),
  5958. weight: math.unit(210, "lbs"),
  5959. name: "Front",
  5960. image: {
  5961. source: "./media/characters/rain-fallen/front.svg"
  5962. }
  5963. },
  5964. side: {
  5965. height: math.unit(6, "feet"),
  5966. weight: math.unit(210, "lbs"),
  5967. name: "Side",
  5968. image: {
  5969. source: "./media/characters/rain-fallen/side.svg"
  5970. }
  5971. },
  5972. back: {
  5973. height: math.unit(6, "feet"),
  5974. weight: math.unit(210, "lbs"),
  5975. name: "Back",
  5976. image: {
  5977. source: "./media/characters/rain-fallen/back.svg"
  5978. }
  5979. },
  5980. feral: {
  5981. height: math.unit(9, "feet"),
  5982. weight: math.unit(700, "lbs"),
  5983. name: "Feral",
  5984. image: {
  5985. source: "./media/characters/rain-fallen/feral.svg"
  5986. }
  5987. },
  5988. },
  5989. [
  5990. {
  5991. name: "Meddling with Mortals",
  5992. height: math.unit(8 + 8/12, "feet")
  5993. },
  5994. {
  5995. name: "Normal",
  5996. height: math.unit(5, "meter")
  5997. },
  5998. {
  5999. name: "Macro",
  6000. height: math.unit(150, "meter"),
  6001. default: true
  6002. },
  6003. {
  6004. name: "Megamacro",
  6005. height: math.unit(278e6, "meter")
  6006. },
  6007. {
  6008. name: "Gigamacro",
  6009. height: math.unit(2e9, "meter")
  6010. },
  6011. {
  6012. name: "Teramacro",
  6013. height: math.unit(8e12, "meter")
  6014. },
  6015. {
  6016. name: "Devourer",
  6017. height: math.unit(14, "zettameters")
  6018. },
  6019. {
  6020. name: "Scarlet King",
  6021. height: math.unit(18, "yottameters")
  6022. },
  6023. {
  6024. name: "Void",
  6025. height: math.unit(1e88, "yottameters")
  6026. }
  6027. ]
  6028. ))
  6029. characterMakers.push(() => makeCharacter(
  6030. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  6031. {
  6032. standing: {
  6033. height: math.unit(6, "feet"),
  6034. weight: math.unit(180, "lbs"),
  6035. name: "Standing",
  6036. image: {
  6037. source: "./media/characters/zaakira/standing.svg",
  6038. extra: 1599/1504,
  6039. bottom: 39/1638
  6040. }
  6041. },
  6042. laying: {
  6043. height: math.unit(3.3, "feet"),
  6044. weight: math.unit(180, "lbs"),
  6045. name: "Laying",
  6046. image: {
  6047. source: "./media/characters/zaakira/laying.svg"
  6048. }
  6049. },
  6050. },
  6051. [
  6052. {
  6053. name: "Normal",
  6054. height: math.unit(12, "feet")
  6055. },
  6056. {
  6057. name: "Macro",
  6058. height: math.unit(279, "feet"),
  6059. default: true
  6060. }
  6061. ]
  6062. ))
  6063. characterMakers.push(() => makeCharacter(
  6064. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  6065. {
  6066. femSfw: {
  6067. height: math.unit(8, "feet"),
  6068. weight: math.unit(350, "lb"),
  6069. name: "Fem",
  6070. image: {
  6071. source: "./media/characters/sigvald/fem-sfw.svg",
  6072. extra: 182 / 164,
  6073. bottom: 8.7 / 190.5
  6074. }
  6075. },
  6076. femNsfw: {
  6077. height: math.unit(8, "feet"),
  6078. weight: math.unit(350, "lb"),
  6079. name: "Fem (NSFW)",
  6080. image: {
  6081. source: "./media/characters/sigvald/fem-nsfw.svg",
  6082. extra: 182 / 164,
  6083. bottom: 8.7 / 190.5
  6084. }
  6085. },
  6086. maleNsfw: {
  6087. height: math.unit(8, "feet"),
  6088. weight: math.unit(350, "lb"),
  6089. name: "Male (NSFW)",
  6090. image: {
  6091. source: "./media/characters/sigvald/male-nsfw.svg",
  6092. extra: 182 / 164,
  6093. bottom: 8.7 / 190.5
  6094. }
  6095. },
  6096. hermNsfw: {
  6097. height: math.unit(8, "feet"),
  6098. weight: math.unit(350, "lb"),
  6099. name: "Herm (NSFW)",
  6100. image: {
  6101. source: "./media/characters/sigvald/herm-nsfw.svg",
  6102. extra: 182 / 164,
  6103. bottom: 8.7 / 190.5
  6104. }
  6105. },
  6106. dick: {
  6107. height: math.unit(2.36, "feet"),
  6108. name: "Dick",
  6109. image: {
  6110. source: "./media/characters/sigvald/dick.svg"
  6111. }
  6112. },
  6113. eye: {
  6114. height: math.unit(0.31, "feet"),
  6115. name: "Eye",
  6116. image: {
  6117. source: "./media/characters/sigvald/eye.svg"
  6118. }
  6119. },
  6120. mouth: {
  6121. height: math.unit(0.92, "feet"),
  6122. name: "Mouth",
  6123. image: {
  6124. source: "./media/characters/sigvald/mouth.svg"
  6125. }
  6126. },
  6127. paws: {
  6128. height: math.unit(2.2, "feet"),
  6129. name: "Paws",
  6130. image: {
  6131. source: "./media/characters/sigvald/paws.svg"
  6132. }
  6133. }
  6134. },
  6135. [
  6136. {
  6137. name: "Normal",
  6138. height: math.unit(8, "feet")
  6139. },
  6140. {
  6141. name: "Large",
  6142. height: math.unit(12, "feet")
  6143. },
  6144. {
  6145. name: "Larger",
  6146. height: math.unit(20, "feet")
  6147. },
  6148. {
  6149. name: "Macro",
  6150. height: math.unit(150, "feet")
  6151. },
  6152. {
  6153. name: "Macro+",
  6154. height: math.unit(200, "feet"),
  6155. default: true
  6156. },
  6157. ]
  6158. ))
  6159. characterMakers.push(() => makeCharacter(
  6160. { name: "Scott", species: ["fox"], tags: ["anthro", "taur"] },
  6161. {
  6162. anthro_front: {
  6163. height: math.unit(5 + 11/12, "feet"),
  6164. weight: math.unit(250, "lb"),
  6165. name: "Front",
  6166. image: {
  6167. source: "./media/characters/scott/anthro-front.svg",
  6168. extra: 851/781,
  6169. bottom: 54/905
  6170. },
  6171. form: "anthro",
  6172. default: true
  6173. },
  6174. anthro_side: {
  6175. height: math.unit(5.1, "feet"),
  6176. weight: math.unit(250, "lb"),
  6177. name: "Side",
  6178. image: {
  6179. source: "./media/characters/scott/anthro-side.svg"
  6180. },
  6181. form: "anthro",
  6182. },
  6183. anthro_dick: {
  6184. height: math.unit(1.33, "feet"),
  6185. name: "Dick",
  6186. image: {
  6187. source: "./media/characters/scott/anthro-dick.svg"
  6188. },
  6189. form: "anthro",
  6190. },
  6191. side: {
  6192. height: math.unit(12, "feet"),
  6193. weight: math.unit(2000, "kg"),
  6194. name: "Side",
  6195. image: {
  6196. source: "./media/characters/scott/side.svg",
  6197. extra: 754 / 724,
  6198. bottom: 0.069
  6199. },
  6200. form: "taur",
  6201. default: true
  6202. },
  6203. upright: {
  6204. height: math.unit(12, "feet"),
  6205. weight: math.unit(2000, "kg"),
  6206. name: "Upright",
  6207. image: {
  6208. source: "./media/characters/scott/upright.svg",
  6209. extra: 3881 / 3722,
  6210. bottom: 0.05
  6211. },
  6212. form: "taur",
  6213. },
  6214. },
  6215. [
  6216. {
  6217. name: "Normal",
  6218. height: math.unit(5 + 11/12, "feet"),
  6219. default: true,
  6220. form: "anthro"
  6221. },
  6222. {
  6223. name: "Normal",
  6224. height: math.unit(12, "feet"),
  6225. default: true,
  6226. form: "taur"
  6227. },
  6228. ],
  6229. {
  6230. "anthro": {
  6231. name: "Anthro",
  6232. default: true
  6233. },
  6234. "taur": {
  6235. name: "Taur",
  6236. },
  6237. }
  6238. ))
  6239. characterMakers.push(() => makeCharacter(
  6240. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6241. {
  6242. side: {
  6243. height: math.unit(8, "meters"),
  6244. weight: math.unit(84755, "lbs"),
  6245. name: "Side",
  6246. image: {
  6247. source: "./media/characters/tobias/side.svg",
  6248. extra: 1474 / 1096,
  6249. bottom: 38.9 / 1513.1235
  6250. }
  6251. },
  6252. maw: {
  6253. height: math.unit(2.3, "meters"),
  6254. name: "Maw",
  6255. image: {
  6256. source: "./media/characters/tobias/maw.svg"
  6257. }
  6258. },
  6259. burp: {
  6260. height: math.unit(2.85, "meters"),
  6261. name: "Burp",
  6262. image: {
  6263. source: "./media/characters/tobias/burp.svg"
  6264. }
  6265. },
  6266. },
  6267. [
  6268. {
  6269. name: "Normal",
  6270. height: math.unit(8, "meters"),
  6271. default: true
  6272. },
  6273. ]
  6274. ))
  6275. characterMakers.push(() => makeCharacter(
  6276. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6277. {
  6278. front: {
  6279. height: math.unit(5.5, "feet"),
  6280. weight: math.unit(400, "lbs"),
  6281. name: "Front",
  6282. image: {
  6283. source: "./media/characters/kieran/front.svg",
  6284. extra: 2694 / 2364,
  6285. bottom: 217 / 2908
  6286. }
  6287. },
  6288. side: {
  6289. height: math.unit(5.5, "feet"),
  6290. weight: math.unit(400, "lbs"),
  6291. name: "Side",
  6292. image: {
  6293. source: "./media/characters/kieran/side.svg",
  6294. extra: 875 / 777,
  6295. bottom: 84.6 / 959
  6296. }
  6297. },
  6298. },
  6299. [
  6300. {
  6301. name: "Normal",
  6302. height: math.unit(5.5, "feet"),
  6303. default: true
  6304. },
  6305. ]
  6306. ))
  6307. characterMakers.push(() => makeCharacter(
  6308. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6309. {
  6310. side: {
  6311. height: math.unit(2, "meters"),
  6312. weight: math.unit(70, "kg"),
  6313. name: "Side",
  6314. image: {
  6315. source: "./media/characters/sanya/side.svg",
  6316. bottom: 0.02,
  6317. extra: 1.02
  6318. }
  6319. },
  6320. },
  6321. [
  6322. {
  6323. name: "Small",
  6324. height: math.unit(2, "meters")
  6325. },
  6326. {
  6327. name: "Normal",
  6328. height: math.unit(3, "meters")
  6329. },
  6330. {
  6331. name: "Macro",
  6332. height: math.unit(16, "meters"),
  6333. default: true
  6334. },
  6335. ]
  6336. ))
  6337. characterMakers.push(() => makeCharacter(
  6338. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6339. {
  6340. front: {
  6341. height: math.unit(2, "meters"),
  6342. weight: math.unit(120, "kg"),
  6343. name: "Front",
  6344. image: {
  6345. source: "./media/characters/miranda/front.svg",
  6346. extra: 195 / 185,
  6347. bottom: 10.9 / 206.5
  6348. }
  6349. },
  6350. back: {
  6351. height: math.unit(2, "meters"),
  6352. weight: math.unit(120, "kg"),
  6353. name: "Back",
  6354. image: {
  6355. source: "./media/characters/miranda/back.svg",
  6356. extra: 201 / 193,
  6357. bottom: 2.3 / 203.7
  6358. }
  6359. },
  6360. },
  6361. [
  6362. {
  6363. name: "Normal",
  6364. height: math.unit(10, "feet"),
  6365. default: true
  6366. }
  6367. ]
  6368. ))
  6369. characterMakers.push(() => makeCharacter(
  6370. { name: "James", species: ["deer"], tags: ["anthro"] },
  6371. {
  6372. side: {
  6373. height: math.unit(2, "meters"),
  6374. weight: math.unit(100, "kg"),
  6375. name: "Front",
  6376. image: {
  6377. source: "./media/characters/james/front.svg",
  6378. extra: 10 / 8.5
  6379. }
  6380. },
  6381. },
  6382. [
  6383. {
  6384. name: "Normal",
  6385. height: math.unit(8.5, "feet"),
  6386. default: true
  6387. }
  6388. ]
  6389. ))
  6390. characterMakers.push(() => makeCharacter(
  6391. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6392. {
  6393. side: {
  6394. height: math.unit(9.5, "feet"),
  6395. weight: math.unit(2500, "lbs"),
  6396. name: "Side",
  6397. image: {
  6398. source: "./media/characters/heather/side.svg"
  6399. }
  6400. },
  6401. },
  6402. [
  6403. {
  6404. name: "Normal",
  6405. height: math.unit(9.5, "feet"),
  6406. default: true
  6407. }
  6408. ]
  6409. ))
  6410. characterMakers.push(() => makeCharacter(
  6411. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6412. {
  6413. side: {
  6414. height: math.unit(6.5, "feet"),
  6415. weight: math.unit(400, "lbs"),
  6416. name: "Side",
  6417. image: {
  6418. source: "./media/characters/lukas/side.svg",
  6419. extra: 7.25 / 6.5
  6420. }
  6421. },
  6422. },
  6423. [
  6424. {
  6425. name: "Normal",
  6426. height: math.unit(6.5, "feet"),
  6427. default: true
  6428. }
  6429. ]
  6430. ))
  6431. characterMakers.push(() => makeCharacter(
  6432. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6433. {
  6434. side: {
  6435. height: math.unit(5, "feet"),
  6436. weight: math.unit(3000, "lbs"),
  6437. name: "Side",
  6438. image: {
  6439. source: "./media/characters/louise/side.svg"
  6440. }
  6441. },
  6442. },
  6443. [
  6444. {
  6445. name: "Normal",
  6446. height: math.unit(5, "feet"),
  6447. default: true
  6448. }
  6449. ]
  6450. ))
  6451. characterMakers.push(() => makeCharacter(
  6452. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6453. {
  6454. side: {
  6455. height: math.unit(6, "feet"),
  6456. weight: math.unit(150, "lbs"),
  6457. name: "Side",
  6458. image: {
  6459. source: "./media/characters/ramona/side.svg",
  6460. extra: 871/854,
  6461. bottom: 41/912
  6462. }
  6463. },
  6464. },
  6465. [
  6466. {
  6467. name: "Normal",
  6468. height: math.unit(6 + 4/12, "feet")
  6469. },
  6470. {
  6471. name: "Minimacro",
  6472. height: math.unit(5.3, "meters"),
  6473. default: true
  6474. },
  6475. {
  6476. name: "Macro",
  6477. height: math.unit(20, "stories")
  6478. },
  6479. {
  6480. name: "Macro+",
  6481. height: math.unit(50, "stories")
  6482. },
  6483. ]
  6484. ))
  6485. characterMakers.push(() => makeCharacter(
  6486. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6487. {
  6488. standing: {
  6489. height: math.unit(5.75, "feet"),
  6490. weight: math.unit(160, "lbs"),
  6491. name: "Standing",
  6492. image: {
  6493. source: "./media/characters/deerpuff/standing.svg",
  6494. extra: 682 / 624
  6495. }
  6496. },
  6497. sitting: {
  6498. height: math.unit(5.75 / 1.79, "feet"),
  6499. weight: math.unit(160, "lbs"),
  6500. name: "Sitting",
  6501. image: {
  6502. source: "./media/characters/deerpuff/sitting.svg",
  6503. bottom: 44 / 400,
  6504. extra: 1
  6505. }
  6506. },
  6507. taurLaying: {
  6508. height: math.unit(6, "feet"),
  6509. weight: math.unit(400, "lbs"),
  6510. name: "Taur (Laying)",
  6511. image: {
  6512. source: "./media/characters/deerpuff/taur-laying.svg"
  6513. }
  6514. },
  6515. },
  6516. [
  6517. {
  6518. name: "Puffball",
  6519. height: math.unit(6, "inches")
  6520. },
  6521. {
  6522. name: "Normalpuff",
  6523. height: math.unit(5.75, "feet")
  6524. },
  6525. {
  6526. name: "Macropuff",
  6527. height: math.unit(1500, "feet"),
  6528. default: true
  6529. },
  6530. {
  6531. name: "Megapuff",
  6532. height: math.unit(500, "miles")
  6533. },
  6534. {
  6535. name: "Gigapuff",
  6536. height: math.unit(250000, "miles")
  6537. },
  6538. {
  6539. name: "Omegapuff",
  6540. height: math.unit(1000, "lightyears")
  6541. },
  6542. ]
  6543. ))
  6544. characterMakers.push(() => makeCharacter(
  6545. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6546. {
  6547. stomping: {
  6548. height: math.unit(6, "feet"),
  6549. weight: math.unit(170, "lbs"),
  6550. name: "Stomping",
  6551. image: {
  6552. source: "./media/characters/vivian/stomping.svg"
  6553. }
  6554. },
  6555. sitting: {
  6556. height: math.unit(6 / 1.75, "feet"),
  6557. weight: math.unit(170, "lbs"),
  6558. name: "Sitting",
  6559. image: {
  6560. source: "./media/characters/vivian/sitting.svg",
  6561. bottom: 1 / 6.4,
  6562. extra: 1,
  6563. }
  6564. },
  6565. },
  6566. [
  6567. {
  6568. name: "Normal",
  6569. height: math.unit(7, "feet"),
  6570. default: true
  6571. },
  6572. {
  6573. name: "Macro",
  6574. height: math.unit(10, "stories")
  6575. },
  6576. {
  6577. name: "Macro+",
  6578. height: math.unit(30, "stories")
  6579. },
  6580. {
  6581. name: "Megamacro",
  6582. height: math.unit(10, "miles")
  6583. },
  6584. {
  6585. name: "Megamacro+",
  6586. height: math.unit(2750000, "meters")
  6587. },
  6588. ]
  6589. ))
  6590. characterMakers.push(() => makeCharacter(
  6591. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6592. {
  6593. front: {
  6594. height: math.unit(6, "feet"),
  6595. weight: math.unit(160, "lbs"),
  6596. name: "Front",
  6597. image: {
  6598. source: "./media/characters/prince/front.svg",
  6599. extra: 1938/1682,
  6600. bottom: 45/1983
  6601. }
  6602. },
  6603. back: {
  6604. height: math.unit(6, "feet"),
  6605. weight: math.unit(160, "lbs"),
  6606. name: "Back",
  6607. image: {
  6608. source: "./media/characters/prince/back.svg",
  6609. extra: 1955/1726,
  6610. bottom: 6/1961
  6611. }
  6612. },
  6613. },
  6614. [
  6615. {
  6616. name: "Normal",
  6617. height: math.unit(7.75, "feet"),
  6618. default: true
  6619. },
  6620. {
  6621. name: "Not cute",
  6622. height: math.unit(17, "feet")
  6623. },
  6624. {
  6625. name: "I said NOT",
  6626. height: math.unit(91, "feet")
  6627. },
  6628. {
  6629. name: "Please stop",
  6630. height: math.unit(560, "feet")
  6631. },
  6632. {
  6633. name: "What have you done",
  6634. height: math.unit(2200, "feet")
  6635. },
  6636. {
  6637. name: "Deer God",
  6638. height: math.unit(3.6, "miles")
  6639. },
  6640. ]
  6641. ))
  6642. characterMakers.push(() => makeCharacter(
  6643. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6644. {
  6645. standing: {
  6646. height: math.unit(6, "feet"),
  6647. weight: math.unit(300, "lbs"),
  6648. name: "Standing",
  6649. image: {
  6650. source: "./media/characters/psymon/standing.svg",
  6651. extra: 1888 / 1810,
  6652. bottom: 0.05
  6653. }
  6654. },
  6655. slithering: {
  6656. height: math.unit(6, "feet"),
  6657. weight: math.unit(300, "lbs"),
  6658. name: "Slithering",
  6659. image: {
  6660. source: "./media/characters/psymon/slithering.svg",
  6661. extra: 1330 / 1224
  6662. }
  6663. },
  6664. slitheringAlt: {
  6665. height: math.unit(6, "feet"),
  6666. weight: math.unit(300, "lbs"),
  6667. name: "Slithering (Alt)",
  6668. image: {
  6669. source: "./media/characters/psymon/slithering-alt.svg",
  6670. extra: 1330 / 1224
  6671. }
  6672. },
  6673. },
  6674. [
  6675. {
  6676. name: "Normal",
  6677. height: math.unit(11.25, "feet"),
  6678. default: true
  6679. },
  6680. {
  6681. name: "Large",
  6682. height: math.unit(27, "feet")
  6683. },
  6684. {
  6685. name: "Giant",
  6686. height: math.unit(87, "feet")
  6687. },
  6688. {
  6689. name: "Macro",
  6690. height: math.unit(365, "feet")
  6691. },
  6692. {
  6693. name: "Megamacro",
  6694. height: math.unit(3, "miles")
  6695. },
  6696. {
  6697. name: "World Serpent",
  6698. height: math.unit(8000, "miles")
  6699. },
  6700. ]
  6701. ))
  6702. characterMakers.push(() => makeCharacter(
  6703. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6704. {
  6705. front: {
  6706. height: math.unit(6, "feet"),
  6707. weight: math.unit(180, "lbs"),
  6708. name: "Front",
  6709. image: {
  6710. source: "./media/characters/daimos/front.svg",
  6711. extra: 4160 / 3897,
  6712. bottom: 0.021
  6713. }
  6714. }
  6715. },
  6716. [
  6717. {
  6718. name: "Normal",
  6719. height: math.unit(8, "feet"),
  6720. default: true
  6721. },
  6722. {
  6723. name: "Big Dog",
  6724. height: math.unit(22, "feet")
  6725. },
  6726. {
  6727. name: "Macro",
  6728. height: math.unit(127, "feet")
  6729. },
  6730. {
  6731. name: "Megamacro",
  6732. height: math.unit(3600, "feet")
  6733. },
  6734. ]
  6735. ))
  6736. characterMakers.push(() => makeCharacter(
  6737. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6738. {
  6739. side: {
  6740. height: math.unit(6, "feet"),
  6741. weight: math.unit(180, "lbs"),
  6742. name: "Side",
  6743. image: {
  6744. source: "./media/characters/blake/side.svg",
  6745. extra: 1212 / 1120,
  6746. bottom: 0.05
  6747. }
  6748. },
  6749. crouched: {
  6750. height: math.unit(6 * 0.57, "feet"),
  6751. weight: math.unit(180, "lbs"),
  6752. name: "Crouched",
  6753. image: {
  6754. source: "./media/characters/blake/crouched.svg",
  6755. extra: 840 / 587,
  6756. bottom: 0.04
  6757. }
  6758. },
  6759. bent: {
  6760. height: math.unit(6 * 0.75, "feet"),
  6761. weight: math.unit(180, "lbs"),
  6762. name: "Bent",
  6763. image: {
  6764. source: "./media/characters/blake/bent.svg",
  6765. extra: 592 / 544,
  6766. bottom: 0.035
  6767. }
  6768. },
  6769. },
  6770. [
  6771. {
  6772. name: "Normal",
  6773. height: math.unit(8 + 1 / 6, "feet"),
  6774. default: true
  6775. },
  6776. {
  6777. name: "Big Backside",
  6778. height: math.unit(37, "feet")
  6779. },
  6780. {
  6781. name: "Subway Shredder",
  6782. height: math.unit(72, "feet")
  6783. },
  6784. {
  6785. name: "City Carver",
  6786. height: math.unit(1675, "feet")
  6787. },
  6788. {
  6789. name: "Tectonic Tweaker",
  6790. height: math.unit(2300, "miles")
  6791. },
  6792. ]
  6793. ))
  6794. characterMakers.push(() => makeCharacter(
  6795. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6796. {
  6797. front: {
  6798. height: math.unit(6, "feet"),
  6799. weight: math.unit(180, "lbs"),
  6800. name: "Front",
  6801. image: {
  6802. source: "./media/characters/guisetto/front.svg",
  6803. extra: 856 / 817,
  6804. bottom: 0.06
  6805. }
  6806. },
  6807. airborne: {
  6808. height: math.unit(6, "feet"),
  6809. weight: math.unit(180, "lbs"),
  6810. name: "Airborne",
  6811. image: {
  6812. source: "./media/characters/guisetto/airborne.svg",
  6813. extra: 584 / 525
  6814. }
  6815. },
  6816. },
  6817. [
  6818. {
  6819. name: "Normal",
  6820. height: math.unit(10 + 11 / 12, "feet"),
  6821. default: true
  6822. },
  6823. {
  6824. name: "Large",
  6825. height: math.unit(35, "feet")
  6826. },
  6827. {
  6828. name: "Macro",
  6829. height: math.unit(475, "feet")
  6830. },
  6831. ]
  6832. ))
  6833. characterMakers.push(() => makeCharacter(
  6834. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6835. {
  6836. front: {
  6837. height: math.unit(6, "feet"),
  6838. weight: math.unit(180, "lbs"),
  6839. name: "Front",
  6840. image: {
  6841. source: "./media/characters/luxor/front.svg",
  6842. extra: 2940 / 2152
  6843. }
  6844. },
  6845. back: {
  6846. height: math.unit(6, "feet"),
  6847. weight: math.unit(180, "lbs"),
  6848. name: "Back",
  6849. image: {
  6850. source: "./media/characters/luxor/back.svg",
  6851. extra: 1083 / 960
  6852. }
  6853. },
  6854. },
  6855. [
  6856. {
  6857. name: "Normal",
  6858. height: math.unit(5 + 5 / 6, "feet"),
  6859. default: true
  6860. },
  6861. {
  6862. name: "Lamp",
  6863. height: math.unit(50, "feet")
  6864. },
  6865. {
  6866. name: "Lämp",
  6867. height: math.unit(300, "feet")
  6868. },
  6869. {
  6870. name: "The sun is a lamp",
  6871. height: math.unit(250000, "miles")
  6872. },
  6873. ]
  6874. ))
  6875. characterMakers.push(() => makeCharacter(
  6876. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6877. {
  6878. front: {
  6879. height: math.unit(6, "feet"),
  6880. weight: math.unit(50, "lbs"),
  6881. name: "Front",
  6882. image: {
  6883. source: "./media/characters/huoyan/front.svg"
  6884. }
  6885. },
  6886. side: {
  6887. height: math.unit(6, "feet"),
  6888. weight: math.unit(180, "lbs"),
  6889. name: "Side",
  6890. image: {
  6891. source: "./media/characters/huoyan/side.svg"
  6892. }
  6893. },
  6894. },
  6895. [
  6896. {
  6897. name: "Chef",
  6898. height: math.unit(9, "feet")
  6899. },
  6900. {
  6901. name: "Normal",
  6902. height: math.unit(65, "feet"),
  6903. default: true
  6904. },
  6905. {
  6906. name: "Macro",
  6907. height: math.unit(780, "feet")
  6908. },
  6909. {
  6910. name: "Flaming Mountain",
  6911. height: math.unit(4.8, "miles")
  6912. },
  6913. {
  6914. name: "Celestial",
  6915. height: math.unit(765000, "miles")
  6916. },
  6917. ]
  6918. ))
  6919. characterMakers.push(() => makeCharacter(
  6920. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6921. {
  6922. front: {
  6923. height: math.unit(5 + 3 / 4, "feet"),
  6924. weight: math.unit(120, "lbs"),
  6925. name: "Front",
  6926. image: {
  6927. source: "./media/characters/tails/front.svg"
  6928. }
  6929. }
  6930. },
  6931. [
  6932. {
  6933. name: "Normal",
  6934. height: math.unit(5 + 3 / 4, "feet"),
  6935. default: true
  6936. }
  6937. ]
  6938. ))
  6939. characterMakers.push(() => makeCharacter(
  6940. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6941. {
  6942. front: {
  6943. height: math.unit(4, "feet"),
  6944. weight: math.unit(50, "lbs"),
  6945. name: "Front",
  6946. image: {
  6947. source: "./media/characters/rainy/front.svg"
  6948. }
  6949. }
  6950. },
  6951. [
  6952. {
  6953. name: "Macro",
  6954. height: math.unit(800, "feet"),
  6955. default: true
  6956. }
  6957. ]
  6958. ))
  6959. characterMakers.push(() => makeCharacter(
  6960. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6961. {
  6962. front: {
  6963. height: math.unit(6, "feet"),
  6964. weight: math.unit(150, "lbs"),
  6965. name: "Front",
  6966. image: {
  6967. source: "./media/characters/rainier/front.svg"
  6968. }
  6969. }
  6970. },
  6971. [
  6972. {
  6973. name: "Micro",
  6974. height: math.unit(2, "mm"),
  6975. default: true
  6976. }
  6977. ]
  6978. ))
  6979. characterMakers.push(() => makeCharacter(
  6980. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6981. {
  6982. front: {
  6983. height: math.unit(8 + 4/12, "feet"),
  6984. weight: math.unit(450, "kilograms"),
  6985. name: "Front",
  6986. image: {
  6987. source: "./media/characters/andy-renard/front.svg",
  6988. extra: 862/809,
  6989. bottom: 85/947
  6990. },
  6991. extraAttributes: {
  6992. "pawSize": {
  6993. name: "Paw Size",
  6994. power: 2,
  6995. type: "area",
  6996. base: math.unit(0.45*0.3, "meters^2")
  6997. },
  6998. "handSize": {
  6999. name: "Hand Size",
  7000. power: 2,
  7001. type: "area",
  7002. base: math.unit(0.4 * 0.3, "meters^2")
  7003. },
  7004. "cockSize": {
  7005. name: "Cock Length",
  7006. power: 1,
  7007. type: "length",
  7008. base: math.unit(0.75, "meters")
  7009. },
  7010. "ballDiameter": {
  7011. name: "Ball Diameter",
  7012. power: 1,
  7013. type: "length",
  7014. base: math.unit(0.3, "meters")
  7015. },
  7016. "ballVolume": {
  7017. name: "Ball Volume",
  7018. power: 3,
  7019. type: "volume",
  7020. base: math.unit(0.01413716694, "meters^3")
  7021. },
  7022. }
  7023. },
  7024. back: {
  7025. height: math.unit(8 + 4/12, "feet"),
  7026. weight: math.unit(450, "kilograms"),
  7027. name: "Back",
  7028. image: {
  7029. source: "./media/characters/andy-renard/back.svg",
  7030. extra: 1112/1033,
  7031. bottom: 64/1176
  7032. },
  7033. extraAttributes: {
  7034. "pawSize": {
  7035. name: "Paw Size",
  7036. power: 2,
  7037. type: "area",
  7038. base: math.unit(0.45*0.3, "meters^2")
  7039. },
  7040. "handSize": {
  7041. name: "Hand Size",
  7042. power: 2,
  7043. type: "area",
  7044. base: math.unit(0.4 * 0.3, "meters^2")
  7045. },
  7046. "cockSize": {
  7047. name: "Cock Length",
  7048. power: 1,
  7049. type: "length",
  7050. base: math.unit(0.75, "meters")
  7051. },
  7052. "ballDiameter": {
  7053. name: "Ball Diameter",
  7054. power: 1,
  7055. type: "length",
  7056. base: math.unit(0.3, "meters")
  7057. },
  7058. "ballVolume": {
  7059. name: "Ball Volume",
  7060. power: 3,
  7061. type: "volume",
  7062. base: math.unit(0.01413716694, "meters^3")
  7063. },
  7064. }
  7065. },
  7066. },
  7067. [
  7068. {
  7069. name: "Tall",
  7070. height: math.unit(6 + 8/12, "feet")
  7071. },
  7072. {
  7073. name: "Very Tall",
  7074. height: math.unit(8 + 4/12, "feet")
  7075. },
  7076. {
  7077. name: "Mini Macro",
  7078. height: math.unit(15, "feet"),
  7079. default: true
  7080. },
  7081. {
  7082. name: "Giant",
  7083. height: math.unit(50, "feet")
  7084. },
  7085. {
  7086. name: "Nice",
  7087. height: math.unit(69, "feet")
  7088. },
  7089. {
  7090. name: "Macro",
  7091. height: math.unit(100, "feet")
  7092. },
  7093. {
  7094. name: "Enormous",
  7095. height: math.unit(500, "feet")
  7096. },
  7097. {
  7098. name: "Gargantuan",
  7099. height: math.unit(1000, "feet")
  7100. },
  7101. {
  7102. name: "Mega",
  7103. height: math.unit(1, "mile")
  7104. },
  7105. {
  7106. name: "Giga",
  7107. height: math.unit(50, "miles")
  7108. },
  7109. {
  7110. name: "Tera",
  7111. height: math.unit(1000, "miles")
  7112. },
  7113. {
  7114. name: "Cosmic",
  7115. height: math.unit(1.5, "galaxies")
  7116. },
  7117. {
  7118. name: "God",
  7119. height: math.unit(1.5, "universes")
  7120. },
  7121. {
  7122. name: "Chief Execute God",
  7123. height: math.unit(1.5, "multiverses")
  7124. },
  7125. ]
  7126. ))
  7127. characterMakers.push(() => makeCharacter(
  7128. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  7129. {
  7130. front: {
  7131. height: math.unit(6, "feet"),
  7132. weight: math.unit(210, "lbs"),
  7133. name: "Front",
  7134. image: {
  7135. source: "./media/characters/cimmaron/front-sfw.svg",
  7136. extra: 701 / 676,
  7137. bottom: 0.046
  7138. }
  7139. },
  7140. back: {
  7141. height: math.unit(6, "feet"),
  7142. weight: math.unit(210, "lbs"),
  7143. name: "Back",
  7144. image: {
  7145. source: "./media/characters/cimmaron/back-sfw.svg",
  7146. extra: 701 / 676,
  7147. bottom: 0.046
  7148. }
  7149. },
  7150. frontNsfw: {
  7151. height: math.unit(6, "feet"),
  7152. weight: math.unit(210, "lbs"),
  7153. name: "Front (NSFW)",
  7154. image: {
  7155. source: "./media/characters/cimmaron/front-nsfw.svg",
  7156. extra: 701 / 676,
  7157. bottom: 0.046
  7158. }
  7159. },
  7160. backNsfw: {
  7161. height: math.unit(6, "feet"),
  7162. weight: math.unit(210, "lbs"),
  7163. name: "Back (NSFW)",
  7164. image: {
  7165. source: "./media/characters/cimmaron/back-nsfw.svg",
  7166. extra: 701 / 676,
  7167. bottom: 0.046
  7168. }
  7169. },
  7170. dick: {
  7171. height: math.unit(1.714, "feet"),
  7172. name: "Dick",
  7173. image: {
  7174. source: "./media/characters/cimmaron/dick.svg"
  7175. }
  7176. },
  7177. },
  7178. [
  7179. {
  7180. name: "Normal",
  7181. height: math.unit(6, "feet"),
  7182. default: true
  7183. },
  7184. {
  7185. name: "Macro Mayor",
  7186. height: math.unit(350, "meters")
  7187. },
  7188. ]
  7189. ))
  7190. characterMakers.push(() => makeCharacter(
  7191. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  7192. {
  7193. front: {
  7194. height: math.unit(6, "feet"),
  7195. weight: math.unit(200, "lbs"),
  7196. name: "Front",
  7197. image: {
  7198. source: "./media/characters/akari/front.svg",
  7199. extra: 962 / 901,
  7200. bottom: 0.04
  7201. }
  7202. }
  7203. },
  7204. [
  7205. {
  7206. name: "Micro",
  7207. height: math.unit(5, "inches"),
  7208. default: true
  7209. },
  7210. {
  7211. name: "Normal",
  7212. height: math.unit(7, "feet")
  7213. },
  7214. ]
  7215. ))
  7216. characterMakers.push(() => makeCharacter(
  7217. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  7218. {
  7219. front: {
  7220. height: math.unit(6, "feet"),
  7221. weight: math.unit(140, "lbs"),
  7222. name: "Front",
  7223. image: {
  7224. source: "./media/characters/cynosura/front.svg",
  7225. extra: 437/410,
  7226. bottom: 9/446
  7227. }
  7228. },
  7229. back: {
  7230. height: math.unit(6, "feet"),
  7231. weight: math.unit(140, "lbs"),
  7232. name: "Back",
  7233. image: {
  7234. source: "./media/characters/cynosura/back.svg",
  7235. extra: 1304/1160,
  7236. bottom: 71/1375
  7237. }
  7238. },
  7239. },
  7240. [
  7241. {
  7242. name: "Micro",
  7243. height: math.unit(4, "inches")
  7244. },
  7245. {
  7246. name: "Normal",
  7247. height: math.unit(5.75, "feet"),
  7248. default: true
  7249. },
  7250. {
  7251. name: "Tall",
  7252. height: math.unit(10, "feet")
  7253. },
  7254. {
  7255. name: "Big",
  7256. height: math.unit(20, "feet")
  7257. },
  7258. {
  7259. name: "Macro",
  7260. height: math.unit(50, "feet")
  7261. },
  7262. ]
  7263. ))
  7264. characterMakers.push(() => makeCharacter(
  7265. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  7266. {
  7267. front: {
  7268. height: math.unit(13 + 2/12, "feet"),
  7269. weight: math.unit(800, "kg"),
  7270. name: "Front",
  7271. image: {
  7272. source: "./media/characters/gin/front.svg",
  7273. extra: 1312/1191,
  7274. bottom: 45/1357
  7275. }
  7276. },
  7277. mouth: {
  7278. height: math.unit(2.39 * 1.8, "feet"),
  7279. name: "Mouth",
  7280. image: {
  7281. source: "./media/characters/gin/mouth.svg"
  7282. }
  7283. },
  7284. hand: {
  7285. height: math.unit(1.57 * 2.19, "feet"),
  7286. name: "Hand",
  7287. image: {
  7288. source: "./media/characters/gin/hand.svg"
  7289. }
  7290. },
  7291. foot: {
  7292. height: math.unit(6 / 4.25 * 2.19, "feet"),
  7293. name: "Foot",
  7294. image: {
  7295. source: "./media/characters/gin/foot.svg"
  7296. }
  7297. },
  7298. sole: {
  7299. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7300. name: "Sole",
  7301. image: {
  7302. source: "./media/characters/gin/sole.svg"
  7303. }
  7304. },
  7305. },
  7306. [
  7307. {
  7308. name: "Very Small",
  7309. height: math.unit(13 + 2 / 12, "feet")
  7310. },
  7311. {
  7312. name: "Micro",
  7313. height: math.unit(600, "miles")
  7314. },
  7315. {
  7316. name: "Regular",
  7317. height: math.unit(20, "earths"),
  7318. default: true
  7319. },
  7320. {
  7321. name: "Macro",
  7322. height: math.unit(2.2, "solarradii")
  7323. },
  7324. {
  7325. name: "Teramacro",
  7326. height: math.unit(1.2, "galaxies")
  7327. },
  7328. {
  7329. name: "Omegamacro",
  7330. height: math.unit(200, "universes")
  7331. },
  7332. ]
  7333. ))
  7334. characterMakers.push(() => makeCharacter(
  7335. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7336. {
  7337. front: {
  7338. height: math.unit(6 + 1 / 6, "feet"),
  7339. weight: math.unit(178, "lbs"),
  7340. name: "Front",
  7341. image: {
  7342. source: "./media/characters/guy/front.svg"
  7343. }
  7344. }
  7345. },
  7346. [
  7347. {
  7348. name: "Normal",
  7349. height: math.unit(6 + 1 / 6, "feet"),
  7350. default: true
  7351. },
  7352. {
  7353. name: "Large",
  7354. height: math.unit(25 + 7 / 12, "feet")
  7355. },
  7356. {
  7357. name: "Macro",
  7358. height: math.unit(60 + 9 / 12, "feet")
  7359. },
  7360. {
  7361. name: "Macro+",
  7362. height: math.unit(246, "feet")
  7363. },
  7364. {
  7365. name: "Macro++",
  7366. height: math.unit(878, "feet")
  7367. }
  7368. ]
  7369. ))
  7370. characterMakers.push(() => makeCharacter(
  7371. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7372. {
  7373. front: {
  7374. height: math.unit(9, "feet"),
  7375. weight: math.unit(800, "lbs"),
  7376. name: "Front",
  7377. image: {
  7378. source: "./media/characters/tiberius/front.svg",
  7379. extra: 2295 / 2071
  7380. }
  7381. },
  7382. back: {
  7383. height: math.unit(9, "feet"),
  7384. weight: math.unit(800, "lbs"),
  7385. name: "Back",
  7386. image: {
  7387. source: "./media/characters/tiberius/back.svg",
  7388. extra: 2373 / 2160
  7389. }
  7390. },
  7391. },
  7392. [
  7393. {
  7394. name: "Normal",
  7395. height: math.unit(9, "feet"),
  7396. default: true
  7397. }
  7398. ]
  7399. ))
  7400. characterMakers.push(() => makeCharacter(
  7401. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7402. {
  7403. front: {
  7404. height: math.unit(6, "feet"),
  7405. weight: math.unit(600, "lbs"),
  7406. name: "Front",
  7407. image: {
  7408. source: "./media/characters/surgo/front.svg",
  7409. extra: 3591 / 2227
  7410. }
  7411. },
  7412. back: {
  7413. height: math.unit(6, "feet"),
  7414. weight: math.unit(600, "lbs"),
  7415. name: "Back",
  7416. image: {
  7417. source: "./media/characters/surgo/back.svg",
  7418. extra: 3557 / 2228
  7419. }
  7420. },
  7421. laying: {
  7422. height: math.unit(6 * 0.85, "feet"),
  7423. weight: math.unit(600, "lbs"),
  7424. name: "Laying",
  7425. image: {
  7426. source: "./media/characters/surgo/laying.svg"
  7427. }
  7428. },
  7429. },
  7430. [
  7431. {
  7432. name: "Normal",
  7433. height: math.unit(6, "feet"),
  7434. default: true
  7435. }
  7436. ]
  7437. ))
  7438. characterMakers.push(() => makeCharacter(
  7439. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7440. {
  7441. side: {
  7442. height: math.unit(6, "feet"),
  7443. weight: math.unit(150, "lbs"),
  7444. name: "Side",
  7445. image: {
  7446. source: "./media/characters/cibus/side.svg",
  7447. extra: 800 / 400
  7448. }
  7449. },
  7450. },
  7451. [
  7452. {
  7453. name: "Normal",
  7454. height: math.unit(6, "feet"),
  7455. default: true
  7456. }
  7457. ]
  7458. ))
  7459. characterMakers.push(() => makeCharacter(
  7460. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7461. {
  7462. front: {
  7463. height: math.unit(6, "feet"),
  7464. weight: math.unit(240, "lbs"),
  7465. name: "Front",
  7466. image: {
  7467. source: "./media/characters/nibbles/front.svg"
  7468. }
  7469. },
  7470. side: {
  7471. height: math.unit(6, "feet"),
  7472. weight: math.unit(240, "lbs"),
  7473. name: "Side",
  7474. image: {
  7475. source: "./media/characters/nibbles/side.svg"
  7476. }
  7477. },
  7478. },
  7479. [
  7480. {
  7481. name: "Normal",
  7482. height: math.unit(9, "feet"),
  7483. default: true
  7484. }
  7485. ]
  7486. ))
  7487. characterMakers.push(() => makeCharacter(
  7488. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7489. {
  7490. side: {
  7491. height: math.unit(5 + 1 / 6, "feet"),
  7492. weight: math.unit(130, "lbs"),
  7493. name: "Side",
  7494. image: {
  7495. source: "./media/characters/rikky/side.svg",
  7496. extra: 851 / 801
  7497. }
  7498. },
  7499. },
  7500. [
  7501. {
  7502. name: "Normal",
  7503. height: math.unit(5 + 1 / 6, "feet")
  7504. },
  7505. {
  7506. name: "Macro",
  7507. height: math.unit(152, "feet"),
  7508. default: true
  7509. },
  7510. {
  7511. name: "Megamacro",
  7512. height: math.unit(7, "miles")
  7513. }
  7514. ]
  7515. ))
  7516. characterMakers.push(() => makeCharacter(
  7517. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7518. {
  7519. side: {
  7520. height: math.unit(370, "cm"),
  7521. weight: math.unit(350, "lbs"),
  7522. name: "Side",
  7523. image: {
  7524. source: "./media/characters/malfressa/side.svg"
  7525. }
  7526. },
  7527. walking: {
  7528. height: math.unit(370, "cm"),
  7529. weight: math.unit(350, "lbs"),
  7530. name: "Walking",
  7531. image: {
  7532. source: "./media/characters/malfressa/walking.svg"
  7533. }
  7534. },
  7535. feral: {
  7536. height: math.unit(2500, "cm"),
  7537. weight: math.unit(100000, "lbs"),
  7538. name: "Feral",
  7539. image: {
  7540. source: "./media/characters/malfressa/feral.svg",
  7541. extra: 2108 / 837,
  7542. bottom: 0.02
  7543. }
  7544. },
  7545. },
  7546. [
  7547. {
  7548. name: "Normal",
  7549. height: math.unit(370, "cm")
  7550. },
  7551. {
  7552. name: "Macro",
  7553. height: math.unit(300, "meters"),
  7554. default: true
  7555. }
  7556. ]
  7557. ))
  7558. characterMakers.push(() => makeCharacter(
  7559. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7560. {
  7561. front: {
  7562. height: math.unit(6, "feet"),
  7563. weight: math.unit(60, "kg"),
  7564. name: "Front",
  7565. image: {
  7566. source: "./media/characters/jaro/front.svg",
  7567. extra: 845/817,
  7568. bottom: 45/890
  7569. }
  7570. },
  7571. back: {
  7572. height: math.unit(6, "feet"),
  7573. weight: math.unit(60, "kg"),
  7574. name: "Back",
  7575. image: {
  7576. source: "./media/characters/jaro/back.svg",
  7577. extra: 847/817,
  7578. bottom: 34/881
  7579. }
  7580. },
  7581. },
  7582. [
  7583. {
  7584. name: "Micro",
  7585. height: math.unit(7, "inches")
  7586. },
  7587. {
  7588. name: "Normal",
  7589. height: math.unit(5.5, "feet"),
  7590. default: true
  7591. },
  7592. {
  7593. name: "Minimacro",
  7594. height: math.unit(20, "feet")
  7595. },
  7596. {
  7597. name: "Macro",
  7598. height: math.unit(200, "meters")
  7599. }
  7600. ]
  7601. ))
  7602. characterMakers.push(() => makeCharacter(
  7603. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7604. {
  7605. front: {
  7606. height: math.unit(6, "feet"),
  7607. weight: math.unit(195, "lb"),
  7608. name: "Front",
  7609. image: {
  7610. source: "./media/characters/rogue/front.svg"
  7611. }
  7612. },
  7613. },
  7614. [
  7615. {
  7616. name: "Macro",
  7617. height: math.unit(90, "feet"),
  7618. default: true
  7619. },
  7620. ]
  7621. ))
  7622. characterMakers.push(() => makeCharacter(
  7623. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7624. {
  7625. standing: {
  7626. height: math.unit(5 + 8 / 12, "feet"),
  7627. weight: math.unit(140, "lb"),
  7628. name: "Standing",
  7629. image: {
  7630. source: "./media/characters/piper/standing.svg",
  7631. extra: 1440/1284,
  7632. bottom: 66/1506
  7633. }
  7634. },
  7635. running: {
  7636. height: math.unit(5 + 8 / 12, "feet"),
  7637. weight: math.unit(140, "lb"),
  7638. name: "Running",
  7639. image: {
  7640. source: "./media/characters/piper/running.svg",
  7641. extra: 3948/3655,
  7642. bottom: 0/3948
  7643. }
  7644. },
  7645. sole: {
  7646. height: math.unit(0.81, "feet"),
  7647. weight: math.unit(2, "kg"),
  7648. name: "Sole",
  7649. image: {
  7650. source: "./media/characters/piper/sole.svg"
  7651. }
  7652. },
  7653. nipple: {
  7654. height: math.unit(0.25, "feet"),
  7655. weight: math.unit(1.5, "lb"),
  7656. name: "Nipple",
  7657. image: {
  7658. source: "./media/characters/piper/nipple.svg"
  7659. }
  7660. },
  7661. head: {
  7662. height: math.unit(1.1, "feet"),
  7663. name: "Head",
  7664. image: {
  7665. source: "./media/characters/piper/head.svg"
  7666. }
  7667. },
  7668. },
  7669. [
  7670. {
  7671. name: "Micro",
  7672. height: math.unit(2, "inches")
  7673. },
  7674. {
  7675. name: "Normal",
  7676. height: math.unit(5 + 8 / 12, "feet")
  7677. },
  7678. {
  7679. name: "Macro",
  7680. height: math.unit(250, "feet"),
  7681. default: true
  7682. },
  7683. {
  7684. name: "Megamacro",
  7685. height: math.unit(7, "miles")
  7686. },
  7687. ]
  7688. ))
  7689. characterMakers.push(() => makeCharacter(
  7690. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7691. {
  7692. front: {
  7693. height: math.unit(6, "feet"),
  7694. weight: math.unit(220, "lb"),
  7695. name: "Front",
  7696. image: {
  7697. source: "./media/characters/gemini/front.svg"
  7698. }
  7699. },
  7700. back: {
  7701. height: math.unit(6, "feet"),
  7702. weight: math.unit(220, "lb"),
  7703. name: "Back",
  7704. image: {
  7705. source: "./media/characters/gemini/back.svg"
  7706. }
  7707. },
  7708. kneeling: {
  7709. height: math.unit(6 / 1.5, "feet"),
  7710. weight: math.unit(220, "lb"),
  7711. name: "Kneeling",
  7712. image: {
  7713. source: "./media/characters/gemini/kneeling.svg",
  7714. bottom: 0.02
  7715. }
  7716. },
  7717. },
  7718. [
  7719. {
  7720. name: "Macro",
  7721. height: math.unit(300, "meters"),
  7722. default: true
  7723. },
  7724. {
  7725. name: "Megamacro",
  7726. height: math.unit(6900, "meters")
  7727. },
  7728. ]
  7729. ))
  7730. characterMakers.push(() => makeCharacter(
  7731. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7732. {
  7733. anthro: {
  7734. height: math.unit(2.35, "meters"),
  7735. weight: math.unit(73, "kg"),
  7736. name: "Anthro",
  7737. image: {
  7738. source: "./media/characters/alicia/anthro.svg",
  7739. extra: 2571 / 2385,
  7740. bottom: 75 / 2648
  7741. }
  7742. },
  7743. paw: {
  7744. height: math.unit(1.32, "feet"),
  7745. name: "Paw",
  7746. image: {
  7747. source: "./media/characters/alicia/paw.svg"
  7748. }
  7749. },
  7750. feral: {
  7751. height: math.unit(1.69, "meters"),
  7752. weight: math.unit(73, "kg"),
  7753. name: "Feral",
  7754. image: {
  7755. source: "./media/characters/alicia/feral.svg",
  7756. extra: 2123 / 1715,
  7757. bottom: 222 / 2349
  7758. }
  7759. },
  7760. },
  7761. [
  7762. {
  7763. name: "Normal",
  7764. height: math.unit(2.35, "meters")
  7765. },
  7766. {
  7767. name: "Macro",
  7768. height: math.unit(60, "meters"),
  7769. default: true
  7770. },
  7771. {
  7772. name: "Megamacro",
  7773. height: math.unit(10000, "kilometers")
  7774. },
  7775. ]
  7776. ))
  7777. characterMakers.push(() => makeCharacter(
  7778. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7779. {
  7780. front: {
  7781. height: math.unit(7, "feet"),
  7782. weight: math.unit(250, "lbs"),
  7783. name: "Front",
  7784. image: {
  7785. source: "./media/characters/archy/front.svg"
  7786. }
  7787. }
  7788. },
  7789. [
  7790. {
  7791. name: "Micro",
  7792. height: math.unit(1, "inch")
  7793. },
  7794. {
  7795. name: "Shorty",
  7796. height: math.unit(5, "feet")
  7797. },
  7798. {
  7799. name: "Normal",
  7800. height: math.unit(7, "feet")
  7801. },
  7802. {
  7803. name: "Macro",
  7804. height: math.unit(600, "meters"),
  7805. default: true
  7806. },
  7807. {
  7808. name: "Megamacro",
  7809. height: math.unit(1, "mile")
  7810. },
  7811. ]
  7812. ))
  7813. characterMakers.push(() => makeCharacter(
  7814. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7815. {
  7816. front: {
  7817. height: math.unit(1.65, "meters"),
  7818. weight: math.unit(74, "kg"),
  7819. name: "Front",
  7820. image: {
  7821. source: "./media/characters/berri/front.svg",
  7822. extra: 857 / 837,
  7823. bottom: 18 / 877
  7824. }
  7825. },
  7826. bum: {
  7827. height: math.unit(1.46, "feet"),
  7828. name: "Bum",
  7829. image: {
  7830. source: "./media/characters/berri/bum.svg"
  7831. }
  7832. },
  7833. mouth: {
  7834. height: math.unit(0.44, "feet"),
  7835. name: "Mouth",
  7836. image: {
  7837. source: "./media/characters/berri/mouth.svg"
  7838. }
  7839. },
  7840. paw: {
  7841. height: math.unit(0.826, "feet"),
  7842. name: "Paw",
  7843. image: {
  7844. source: "./media/characters/berri/paw.svg"
  7845. }
  7846. },
  7847. },
  7848. [
  7849. {
  7850. name: "Normal",
  7851. height: math.unit(1.65, "meters")
  7852. },
  7853. {
  7854. name: "Macro",
  7855. height: math.unit(60, "m"),
  7856. default: true
  7857. },
  7858. {
  7859. name: "Megamacro",
  7860. height: math.unit(9.213, "km")
  7861. },
  7862. {
  7863. name: "Planet Eater",
  7864. height: math.unit(489, "megameters")
  7865. },
  7866. {
  7867. name: "Teramacro",
  7868. height: math.unit(2471635000000, "meters")
  7869. },
  7870. {
  7871. name: "Examacro",
  7872. height: math.unit(8.0624e+26, "meters")
  7873. }
  7874. ]
  7875. ))
  7876. characterMakers.push(() => makeCharacter(
  7877. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7878. {
  7879. front: {
  7880. height: math.unit(1.72, "meters"),
  7881. weight: math.unit(68, "kg"),
  7882. name: "Front",
  7883. image: {
  7884. source: "./media/characters/lexi/front.svg"
  7885. }
  7886. }
  7887. },
  7888. [
  7889. {
  7890. name: "Very Smol",
  7891. height: math.unit(10, "mm")
  7892. },
  7893. {
  7894. name: "Micro",
  7895. height: math.unit(6.8, "cm"),
  7896. default: true
  7897. },
  7898. {
  7899. name: "Normal",
  7900. height: math.unit(1.72, "m")
  7901. }
  7902. ]
  7903. ))
  7904. characterMakers.push(() => makeCharacter(
  7905. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7906. {
  7907. front: {
  7908. height: math.unit(1.69, "meters"),
  7909. weight: math.unit(68, "kg"),
  7910. name: "Front",
  7911. image: {
  7912. source: "./media/characters/martin/front.svg",
  7913. extra: 596 / 581
  7914. }
  7915. }
  7916. },
  7917. [
  7918. {
  7919. name: "Micro",
  7920. height: math.unit(6.85, "cm"),
  7921. default: true
  7922. },
  7923. {
  7924. name: "Normal",
  7925. height: math.unit(1.69, "m")
  7926. }
  7927. ]
  7928. ))
  7929. characterMakers.push(() => makeCharacter(
  7930. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7931. {
  7932. front: {
  7933. height: math.unit(1.69, "meters"),
  7934. weight: math.unit(68, "kg"),
  7935. name: "Front",
  7936. image: {
  7937. source: "./media/characters/juno/front.svg"
  7938. }
  7939. }
  7940. },
  7941. [
  7942. {
  7943. name: "Micro",
  7944. height: math.unit(7, "cm")
  7945. },
  7946. {
  7947. name: "Normal",
  7948. height: math.unit(1.89, "m")
  7949. },
  7950. {
  7951. name: "Macro",
  7952. height: math.unit(353, "meters"),
  7953. default: true
  7954. }
  7955. ]
  7956. ))
  7957. characterMakers.push(() => makeCharacter(
  7958. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7959. {
  7960. front: {
  7961. height: math.unit(1.93, "meters"),
  7962. weight: math.unit(83, "kg"),
  7963. name: "Front",
  7964. image: {
  7965. source: "./media/characters/samantha/front.svg"
  7966. }
  7967. },
  7968. frontClothed: {
  7969. height: math.unit(1.93, "meters"),
  7970. weight: math.unit(83, "kg"),
  7971. name: "Front (Clothed)",
  7972. image: {
  7973. source: "./media/characters/samantha/front-clothed.svg"
  7974. }
  7975. },
  7976. back: {
  7977. height: math.unit(1.93, "meters"),
  7978. weight: math.unit(83, "kg"),
  7979. name: "Back",
  7980. image: {
  7981. source: "./media/characters/samantha/back.svg"
  7982. }
  7983. },
  7984. },
  7985. [
  7986. {
  7987. name: "Normal",
  7988. height: math.unit(1.93, "m")
  7989. },
  7990. {
  7991. name: "Macro",
  7992. height: math.unit(74, "meters"),
  7993. default: true
  7994. },
  7995. {
  7996. name: "Macro+",
  7997. height: math.unit(223, "meters"),
  7998. },
  7999. {
  8000. name: "Megamacro",
  8001. height: math.unit(8381, "meters"),
  8002. },
  8003. {
  8004. name: "Megamacro+",
  8005. height: math.unit(12000, "kilometers")
  8006. },
  8007. ]
  8008. ))
  8009. characterMakers.push(() => makeCharacter(
  8010. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  8011. {
  8012. front: {
  8013. height: math.unit(1.92, "meters"),
  8014. weight: math.unit(80, "kg"),
  8015. name: "Front",
  8016. image: {
  8017. source: "./media/characters/dr-clay/front.svg"
  8018. }
  8019. },
  8020. frontClothed: {
  8021. height: math.unit(1.92, "meters"),
  8022. weight: math.unit(80, "kg"),
  8023. name: "Front (Clothed)",
  8024. image: {
  8025. source: "./media/characters/dr-clay/front-clothed.svg"
  8026. }
  8027. }
  8028. },
  8029. [
  8030. {
  8031. name: "Normal",
  8032. height: math.unit(1.92, "m")
  8033. },
  8034. {
  8035. name: "Macro",
  8036. height: math.unit(214, "meters"),
  8037. default: true
  8038. },
  8039. {
  8040. name: "Macro+",
  8041. height: math.unit(12.237, "meters"),
  8042. },
  8043. {
  8044. name: "Megamacro",
  8045. height: math.unit(557, "megameters"),
  8046. },
  8047. {
  8048. name: "Unimaginable",
  8049. height: math.unit(120e9, "lightyears")
  8050. },
  8051. ]
  8052. ))
  8053. characterMakers.push(() => makeCharacter(
  8054. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  8055. {
  8056. front: {
  8057. height: math.unit(2, "meters"),
  8058. weight: math.unit(80, "kg"),
  8059. name: "Front",
  8060. image: {
  8061. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  8062. }
  8063. }
  8064. },
  8065. [
  8066. {
  8067. name: "Teramacro",
  8068. height: math.unit(500000, "lightyears"),
  8069. default: true
  8070. },
  8071. ]
  8072. ))
  8073. characterMakers.push(() => makeCharacter(
  8074. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  8075. {
  8076. crux: {
  8077. height: math.unit(2, "meters"),
  8078. weight: math.unit(150, "kg"),
  8079. name: "Crux",
  8080. image: {
  8081. source: "./media/characters/vemus/crux.svg",
  8082. extra: 1074/936,
  8083. bottom: 23/1097
  8084. }
  8085. },
  8086. skunkTanuki: {
  8087. height: math.unit(2, "meters"),
  8088. weight: math.unit(150, "kg"),
  8089. name: "Skunk-Tanuki",
  8090. image: {
  8091. source: "./media/characters/vemus/skunk-tanuki.svg",
  8092. extra: 926/893,
  8093. bottom: 20/946
  8094. }
  8095. },
  8096. },
  8097. [
  8098. {
  8099. name: "Normal",
  8100. height: math.unit(4, "meters"),
  8101. default: true
  8102. },
  8103. {
  8104. name: "Big",
  8105. height: math.unit(8, "meters")
  8106. },
  8107. {
  8108. name: "Macro",
  8109. height: math.unit(100, "meters")
  8110. },
  8111. {
  8112. name: "Macro+",
  8113. height: math.unit(1500, "meters")
  8114. },
  8115. {
  8116. name: "Stellar",
  8117. height: math.unit(14e8, "meters")
  8118. },
  8119. ]
  8120. ))
  8121. characterMakers.push(() => makeCharacter(
  8122. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  8123. {
  8124. front: {
  8125. height: math.unit(2, "meters"),
  8126. weight: math.unit(70, "kg"),
  8127. name: "Front",
  8128. image: {
  8129. source: "./media/characters/beherit/front.svg",
  8130. extra: 1234/1109,
  8131. bottom: 55/1289
  8132. }
  8133. }
  8134. },
  8135. [
  8136. {
  8137. name: "Normal",
  8138. height: math.unit(6, "feet")
  8139. },
  8140. {
  8141. name: "Lorg",
  8142. height: math.unit(25, "feet"),
  8143. default: true
  8144. },
  8145. {
  8146. name: "Lorger",
  8147. height: math.unit(75, "feet")
  8148. },
  8149. {
  8150. name: "Macro",
  8151. height: math.unit(200, "meters")
  8152. },
  8153. ]
  8154. ))
  8155. characterMakers.push(() => makeCharacter(
  8156. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  8157. {
  8158. front: {
  8159. height: math.unit(2, "meters"),
  8160. weight: math.unit(150, "kg"),
  8161. name: "Front",
  8162. image: {
  8163. source: "./media/characters/everett/front.svg",
  8164. extra: 1017/866,
  8165. bottom: 86/1103
  8166. }
  8167. },
  8168. paw: {
  8169. height: math.unit(2 / 3.6, "meters"),
  8170. name: "Paw",
  8171. image: {
  8172. source: "./media/characters/everett/paw.svg"
  8173. }
  8174. },
  8175. },
  8176. [
  8177. {
  8178. name: "Normal",
  8179. height: math.unit(15, "feet"),
  8180. default: true
  8181. },
  8182. {
  8183. name: "Lorg",
  8184. height: math.unit(70, "feet"),
  8185. default: true
  8186. },
  8187. {
  8188. name: "Lorger",
  8189. height: math.unit(250, "feet")
  8190. },
  8191. {
  8192. name: "Macro",
  8193. height: math.unit(500, "meters")
  8194. },
  8195. ]
  8196. ))
  8197. characterMakers.push(() => makeCharacter(
  8198. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  8199. {
  8200. front: {
  8201. height: math.unit(2, "meters"),
  8202. weight: math.unit(86, "kg"),
  8203. name: "Front",
  8204. image: {
  8205. source: "./media/characters/rose/front.svg",
  8206. extra: 1785/1636,
  8207. bottom: 30/1815
  8208. },
  8209. form: "liom",
  8210. default: true
  8211. },
  8212. frontSporty: {
  8213. height: math.unit(2, "meters"),
  8214. weight: math.unit(86, "kg"),
  8215. name: "Front (Sporty)",
  8216. image: {
  8217. source: "./media/characters/rose/front-sporty.svg",
  8218. extra: 350/335,
  8219. bottom: 10/360
  8220. },
  8221. form: "liom"
  8222. },
  8223. frontAlt: {
  8224. height: math.unit(1.6, "meters"),
  8225. weight: math.unit(86, "kg"),
  8226. name: "Front (Alt)",
  8227. image: {
  8228. source: "./media/characters/rose/front-alt.svg",
  8229. extra: 299/283,
  8230. bottom: 3/302
  8231. },
  8232. form: "liom"
  8233. },
  8234. plush: {
  8235. height: math.unit(2, "meters"),
  8236. weight: math.unit(86/3, "kg"),
  8237. name: "Plush",
  8238. image: {
  8239. source: "./media/characters/rose/plush.svg",
  8240. extra: 361/337,
  8241. bottom: 11/372
  8242. },
  8243. form: "plush",
  8244. default: true
  8245. },
  8246. faeStanding: {
  8247. height: math.unit(10, "cm"),
  8248. weight: math.unit(10, "grams"),
  8249. name: "Standing",
  8250. image: {
  8251. source: "./media/characters/rose/fae-standing.svg",
  8252. extra: 1189/1060,
  8253. bottom: 27/1216
  8254. },
  8255. form: "fae",
  8256. default: true
  8257. },
  8258. faeSitting: {
  8259. height: math.unit(5, "cm"),
  8260. weight: math.unit(10, "grams"),
  8261. name: "Sitting",
  8262. image: {
  8263. source: "./media/characters/rose/fae-sitting.svg",
  8264. extra: 737/577,
  8265. bottom: 356/1093
  8266. },
  8267. form: "fae"
  8268. },
  8269. faePaw: {
  8270. height: math.unit(1.35, "cm"),
  8271. name: "Paw",
  8272. image: {
  8273. source: "./media/characters/rose/fae-paw.svg"
  8274. },
  8275. form: "fae"
  8276. },
  8277. },
  8278. [
  8279. {
  8280. name: "True Micro",
  8281. height: math.unit(9, "cm"),
  8282. form: "liom"
  8283. },
  8284. {
  8285. name: "Micro",
  8286. height: math.unit(16, "cm"),
  8287. form: "liom"
  8288. },
  8289. {
  8290. name: "Normal",
  8291. height: math.unit(1.85, "meters"),
  8292. default: true,
  8293. form: "liom"
  8294. },
  8295. {
  8296. name: "Mini-Macro",
  8297. height: math.unit(5, "meters"),
  8298. form: "liom"
  8299. },
  8300. {
  8301. name: "Macro",
  8302. height: math.unit(15, "meters"),
  8303. form: "liom"
  8304. },
  8305. {
  8306. name: "True Macro",
  8307. height: math.unit(40, "meters"),
  8308. form: "liom"
  8309. },
  8310. {
  8311. name: "City Scale",
  8312. height: math.unit(1, "km"),
  8313. form: "liom"
  8314. },
  8315. {
  8316. name: "Plushie",
  8317. height: math.unit(9, "cm"),
  8318. form: "plush",
  8319. default: true
  8320. },
  8321. {
  8322. name: "Fae",
  8323. height: math.unit(10, "cm"),
  8324. form: "fae",
  8325. default: true
  8326. },
  8327. ],
  8328. {
  8329. "liom": {
  8330. name: "Liom"
  8331. },
  8332. "plush": {
  8333. name: "Plush"
  8334. },
  8335. "fae": {
  8336. name: "Fae Fox",
  8337. default: true
  8338. }
  8339. }
  8340. ))
  8341. characterMakers.push(() => makeCharacter(
  8342. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8343. {
  8344. front: {
  8345. height: math.unit(2, "meters"),
  8346. weight: math.unit(350, "lbs"),
  8347. name: "Front",
  8348. image: {
  8349. source: "./media/characters/regal/front.svg"
  8350. }
  8351. },
  8352. back: {
  8353. height: math.unit(2, "meters"),
  8354. weight: math.unit(350, "lbs"),
  8355. name: "Back",
  8356. image: {
  8357. source: "./media/characters/regal/back.svg"
  8358. }
  8359. },
  8360. },
  8361. [
  8362. {
  8363. name: "Macro",
  8364. height: math.unit(350, "feet"),
  8365. default: true
  8366. }
  8367. ]
  8368. ))
  8369. characterMakers.push(() => makeCharacter(
  8370. { name: "Opal", species: ["rabbit", "deity"], tags: ["anthro"] },
  8371. {
  8372. standing: {
  8373. height: math.unit(4 + 11/12, "feet"),
  8374. weight: math.unit(100, "lb"),
  8375. name: "Standing",
  8376. image: {
  8377. source: "./media/characters/opal/standing.svg",
  8378. extra: 1588/1513,
  8379. bottom: 23/1611
  8380. }
  8381. },
  8382. sitting: {
  8383. height: math.unit(2.3, "feet"),
  8384. weight: math.unit(100, "lb"),
  8385. name: "Sitting",
  8386. image: {
  8387. source: "./media/characters/opal/sitting.svg",
  8388. extra: 1031/892,
  8389. bottom: 142/1173
  8390. }
  8391. },
  8392. hand: {
  8393. height: math.unit(0.59, "feet"),
  8394. name: "Hand",
  8395. image: {
  8396. source: "./media/characters/opal/hand.svg"
  8397. }
  8398. },
  8399. foot: {
  8400. height: math.unit(0.61, "feet"),
  8401. name: "Foot",
  8402. image: {
  8403. source: "./media/characters/opal/foot.svg"
  8404. }
  8405. },
  8406. },
  8407. [
  8408. {
  8409. name: "Small",
  8410. height: math.unit(4 + 11 / 12, "feet")
  8411. },
  8412. {
  8413. name: "Normal",
  8414. height: math.unit(20, "feet"),
  8415. default: true
  8416. },
  8417. {
  8418. name: "Macro",
  8419. height: math.unit(120, "feet")
  8420. },
  8421. {
  8422. name: "Megamacro",
  8423. height: math.unit(80, "miles")
  8424. },
  8425. {
  8426. name: "True Size",
  8427. height: math.unit(100000, "lightyears")
  8428. },
  8429. ]
  8430. ))
  8431. characterMakers.push(() => makeCharacter(
  8432. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8433. {
  8434. front: {
  8435. height: math.unit(6, "feet"),
  8436. weight: math.unit(200, "lbs"),
  8437. name: "Front",
  8438. image: {
  8439. source: "./media/characters/vector-wuff/front.svg"
  8440. }
  8441. }
  8442. },
  8443. [
  8444. {
  8445. name: "Normal",
  8446. height: math.unit(2.8, "meters")
  8447. },
  8448. {
  8449. name: "Macro",
  8450. height: math.unit(450, "meters"),
  8451. default: true
  8452. },
  8453. {
  8454. name: "Megamacro",
  8455. height: math.unit(15, "kilometers")
  8456. }
  8457. ]
  8458. ))
  8459. characterMakers.push(() => makeCharacter(
  8460. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8461. {
  8462. front: {
  8463. height: math.unit(6, "feet"),
  8464. weight: math.unit(256, "lbs"),
  8465. name: "Front",
  8466. image: {
  8467. source: "./media/characters/dannik/front.svg"
  8468. }
  8469. }
  8470. },
  8471. [
  8472. {
  8473. name: "Macro",
  8474. height: math.unit(69.57, "meters"),
  8475. default: true
  8476. },
  8477. ]
  8478. ))
  8479. characterMakers.push(() => makeCharacter(
  8480. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8481. {
  8482. front: {
  8483. height: math.unit(6, "feet"),
  8484. weight: math.unit(120, "lbs"),
  8485. name: "Front",
  8486. image: {
  8487. source: "./media/characters/azura-saharah/front.svg"
  8488. }
  8489. },
  8490. back: {
  8491. height: math.unit(6, "feet"),
  8492. weight: math.unit(120, "lbs"),
  8493. name: "Back",
  8494. image: {
  8495. source: "./media/characters/azura-saharah/back.svg"
  8496. }
  8497. },
  8498. },
  8499. [
  8500. {
  8501. name: "Macro",
  8502. height: math.unit(100, "feet"),
  8503. default: true
  8504. },
  8505. ]
  8506. ))
  8507. characterMakers.push(() => makeCharacter(
  8508. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8509. {
  8510. side: {
  8511. height: math.unit(5 + 4 / 12, "feet"),
  8512. weight: math.unit(163, "lbs"),
  8513. name: "Side",
  8514. image: {
  8515. source: "./media/characters/kennedy/side.svg"
  8516. }
  8517. }
  8518. },
  8519. [
  8520. {
  8521. name: "Standard Doggo",
  8522. height: math.unit(5 + 4 / 12, "feet")
  8523. },
  8524. {
  8525. name: "Big Doggo",
  8526. height: math.unit(25 + 3 / 12, "feet"),
  8527. default: true
  8528. },
  8529. ]
  8530. ))
  8531. characterMakers.push(() => makeCharacter(
  8532. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8533. {
  8534. front: {
  8535. height: math.unit(5 + 5/12, "feet"),
  8536. weight: math.unit(100, "lbs"),
  8537. name: "Front",
  8538. image: {
  8539. source: "./media/characters/odios-de-lunar/front.svg",
  8540. extra: 1468/1323,
  8541. bottom: 22/1490
  8542. }
  8543. }
  8544. },
  8545. [
  8546. {
  8547. name: "Micro",
  8548. height: math.unit(3, "inches")
  8549. },
  8550. {
  8551. name: "Normal",
  8552. height: math.unit(5.5, "feet"),
  8553. default: true
  8554. },
  8555. {
  8556. name: "Macro",
  8557. height: math.unit(100, "feet")
  8558. },
  8559. ]
  8560. ))
  8561. characterMakers.push(() => makeCharacter(
  8562. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8563. {
  8564. back: {
  8565. height: math.unit(6, "feet"),
  8566. weight: math.unit(220, "lbs"),
  8567. name: "Back",
  8568. image: {
  8569. source: "./media/characters/mandake/back.svg"
  8570. }
  8571. }
  8572. },
  8573. [
  8574. {
  8575. name: "Normal",
  8576. height: math.unit(7, "feet"),
  8577. default: true
  8578. },
  8579. {
  8580. name: "Macro",
  8581. height: math.unit(78, "feet")
  8582. },
  8583. {
  8584. name: "Macro+",
  8585. height: math.unit(300, "meters")
  8586. },
  8587. {
  8588. name: "Macro++",
  8589. height: math.unit(2400, "feet")
  8590. },
  8591. {
  8592. name: "Megamacro",
  8593. height: math.unit(5167, "meters")
  8594. },
  8595. {
  8596. name: "Gigamacro",
  8597. height: math.unit(41769, "miles")
  8598. },
  8599. ]
  8600. ))
  8601. characterMakers.push(() => makeCharacter(
  8602. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8603. {
  8604. front: {
  8605. height: math.unit(6, "feet"),
  8606. weight: math.unit(120, "lbs"),
  8607. name: "Front",
  8608. image: {
  8609. source: "./media/characters/yozey/front.svg"
  8610. }
  8611. },
  8612. frontAlt: {
  8613. height: math.unit(6, "feet"),
  8614. weight: math.unit(120, "lbs"),
  8615. name: "Front (Alt)",
  8616. image: {
  8617. source: "./media/characters/yozey/front-alt.svg"
  8618. }
  8619. },
  8620. side: {
  8621. height: math.unit(6, "feet"),
  8622. weight: math.unit(120, "lbs"),
  8623. name: "Side",
  8624. image: {
  8625. source: "./media/characters/yozey/side.svg"
  8626. }
  8627. },
  8628. },
  8629. [
  8630. {
  8631. name: "Micro",
  8632. height: math.unit(3, "inches"),
  8633. default: true
  8634. },
  8635. {
  8636. name: "Normal",
  8637. height: math.unit(6, "feet")
  8638. }
  8639. ]
  8640. ))
  8641. characterMakers.push(() => makeCharacter(
  8642. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8643. {
  8644. front: {
  8645. height: math.unit(6, "feet"),
  8646. weight: math.unit(103, "lbs"),
  8647. name: "Front",
  8648. image: {
  8649. source: "./media/characters/valeska-voss/front.svg"
  8650. }
  8651. }
  8652. },
  8653. [
  8654. {
  8655. name: "Mini-Sized Sub",
  8656. height: math.unit(3.1, "inches")
  8657. },
  8658. {
  8659. name: "Mid-Sized Sub",
  8660. height: math.unit(6.2, "inches")
  8661. },
  8662. {
  8663. name: "Full-Sized Sub",
  8664. height: math.unit(9.3, "inches")
  8665. },
  8666. {
  8667. name: "Normal",
  8668. height: math.unit(5 + 2 / 12, "foot"),
  8669. default: true
  8670. },
  8671. ]
  8672. ))
  8673. characterMakers.push(() => makeCharacter(
  8674. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8675. {
  8676. front: {
  8677. height: math.unit(6, "feet"),
  8678. weight: math.unit(160, "lbs"),
  8679. name: "Front",
  8680. image: {
  8681. source: "./media/characters/gene-zeta/front.svg",
  8682. extra: 3006 / 2826,
  8683. bottom: 182 / 3188
  8684. }
  8685. }
  8686. },
  8687. [
  8688. {
  8689. name: "Micro",
  8690. height: math.unit(6, "inches")
  8691. },
  8692. {
  8693. name: "Normal",
  8694. height: math.unit(5 + 11 / 12, "foot"),
  8695. default: true
  8696. },
  8697. {
  8698. name: "Macro",
  8699. height: math.unit(140, "feet")
  8700. },
  8701. {
  8702. name: "Supercharged",
  8703. height: math.unit(2500, "feet")
  8704. },
  8705. ]
  8706. ))
  8707. characterMakers.push(() => makeCharacter(
  8708. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8709. {
  8710. front: {
  8711. height: math.unit(6, "feet"),
  8712. weight: math.unit(350, "lbs"),
  8713. name: "Front",
  8714. image: {
  8715. source: "./media/characters/razinox/front.svg",
  8716. extra: 1686 / 1548,
  8717. bottom: 28.2 / 1868
  8718. }
  8719. },
  8720. back: {
  8721. height: math.unit(6, "feet"),
  8722. weight: math.unit(350, "lbs"),
  8723. name: "Back",
  8724. image: {
  8725. source: "./media/characters/razinox/back.svg",
  8726. extra: 1660 / 1590,
  8727. bottom: 15 / 1665
  8728. }
  8729. },
  8730. },
  8731. [
  8732. {
  8733. name: "Normal",
  8734. height: math.unit(10 + 8 / 12, "foot")
  8735. },
  8736. {
  8737. name: "Minimacro",
  8738. height: math.unit(15, "foot")
  8739. },
  8740. {
  8741. name: "Macro",
  8742. height: math.unit(60, "foot"),
  8743. default: true
  8744. },
  8745. {
  8746. name: "Megamacro",
  8747. height: math.unit(5, "miles")
  8748. },
  8749. {
  8750. name: "Gigamacro",
  8751. height: math.unit(6000, "miles")
  8752. },
  8753. ]
  8754. ))
  8755. characterMakers.push(() => makeCharacter(
  8756. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8757. {
  8758. front: {
  8759. height: math.unit(6, "feet"),
  8760. weight: math.unit(150, "lbs"),
  8761. name: "Front",
  8762. image: {
  8763. source: "./media/characters/cobalt/front.svg"
  8764. }
  8765. }
  8766. },
  8767. [
  8768. {
  8769. name: "Normal",
  8770. height: math.unit(8 + 1 / 12, "foot")
  8771. },
  8772. {
  8773. name: "Macro",
  8774. height: math.unit(111, "foot"),
  8775. default: true
  8776. },
  8777. {
  8778. name: "Supracosmic",
  8779. height: math.unit(1e42, "feet")
  8780. },
  8781. ]
  8782. ))
  8783. characterMakers.push(() => makeCharacter(
  8784. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8785. {
  8786. front: {
  8787. height: math.unit(5, "inches"),
  8788. name: "Front",
  8789. image: {
  8790. source: "./media/characters/amanda/front.svg",
  8791. extra: 926/791,
  8792. bottom: 38/964
  8793. }
  8794. },
  8795. back: {
  8796. height: math.unit(5, "inches"),
  8797. name: "Back",
  8798. image: {
  8799. source: "./media/characters/amanda/back.svg",
  8800. extra: 909/805,
  8801. bottom: 43/952
  8802. }
  8803. },
  8804. },
  8805. [
  8806. {
  8807. name: "Micro",
  8808. height: math.unit(5, "inches"),
  8809. default: true
  8810. },
  8811. ]
  8812. ))
  8813. characterMakers.push(() => makeCharacter(
  8814. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8815. {
  8816. front: {
  8817. height: math.unit(2.75, "meters"),
  8818. weight: math.unit(1200, "lb"),
  8819. name: "Front",
  8820. image: {
  8821. source: "./media/characters/teal/front.svg",
  8822. extra: 2463 / 2320,
  8823. bottom: 166 / 2629
  8824. }
  8825. },
  8826. back: {
  8827. height: math.unit(2.75, "meters"),
  8828. weight: math.unit(1200, "lb"),
  8829. name: "Back",
  8830. image: {
  8831. source: "./media/characters/teal/back.svg",
  8832. extra: 2580 / 2489,
  8833. bottom: 151 / 2731
  8834. }
  8835. },
  8836. sitting: {
  8837. height: math.unit(1.9, "meters"),
  8838. weight: math.unit(1200, "lb"),
  8839. name: "Sitting",
  8840. image: {
  8841. source: "./media/characters/teal/sitting.svg",
  8842. extra: 623 / 590,
  8843. bottom: 121 / 744
  8844. }
  8845. },
  8846. standing: {
  8847. height: math.unit(2.75, "meters"),
  8848. weight: math.unit(1200, "lb"),
  8849. name: "Standing",
  8850. image: {
  8851. source: "./media/characters/teal/standing.svg",
  8852. extra: 923 / 893,
  8853. bottom: 60 / 983
  8854. }
  8855. },
  8856. stretching: {
  8857. height: math.unit(3.65, "meters"),
  8858. weight: math.unit(1200, "lb"),
  8859. name: "Stretching",
  8860. image: {
  8861. source: "./media/characters/teal/stretching.svg",
  8862. extra: 1276 / 1244,
  8863. bottom: 0 / 1276
  8864. }
  8865. },
  8866. legged: {
  8867. height: math.unit(1.3, "meters"),
  8868. weight: math.unit(100, "lb"),
  8869. name: "Legged",
  8870. image: {
  8871. source: "./media/characters/teal/legged.svg",
  8872. extra: 462 / 437,
  8873. bottom: 24 / 486
  8874. }
  8875. },
  8876. naga: {
  8877. height: math.unit(5.4, "meters"),
  8878. weight: math.unit(4000, "lb"),
  8879. name: "Naga",
  8880. image: {
  8881. source: "./media/characters/teal/naga.svg",
  8882. extra: 1902 / 1858,
  8883. bottom: 0 / 1902
  8884. }
  8885. },
  8886. hand: {
  8887. height: math.unit(0.52, "meters"),
  8888. name: "Hand",
  8889. image: {
  8890. source: "./media/characters/teal/hand.svg"
  8891. }
  8892. },
  8893. maw: {
  8894. height: math.unit(0.43, "meters"),
  8895. name: "Maw",
  8896. image: {
  8897. source: "./media/characters/teal/maw.svg"
  8898. }
  8899. },
  8900. slit: {
  8901. height: math.unit(0.25, "meters"),
  8902. name: "Slit",
  8903. image: {
  8904. source: "./media/characters/teal/slit.svg"
  8905. }
  8906. },
  8907. },
  8908. [
  8909. {
  8910. name: "Normal",
  8911. height: math.unit(2.75, "meters"),
  8912. default: true
  8913. },
  8914. {
  8915. name: "Macro",
  8916. height: math.unit(300, "feet")
  8917. },
  8918. {
  8919. name: "Macro+",
  8920. height: math.unit(2000, "feet")
  8921. },
  8922. ]
  8923. ))
  8924. characterMakers.push(() => makeCharacter(
  8925. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8926. {
  8927. frontCat: {
  8928. height: math.unit(6, "feet"),
  8929. weight: math.unit(180, "lbs"),
  8930. name: "Front (Cat)",
  8931. image: {
  8932. source: "./media/characters/ravin-amulet/front-cat.svg"
  8933. }
  8934. },
  8935. frontCatAlt: {
  8936. height: math.unit(6, "feet"),
  8937. weight: math.unit(180, "lbs"),
  8938. name: "Front (Alt, Cat)",
  8939. image: {
  8940. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8941. }
  8942. },
  8943. frontWerewolf: {
  8944. height: math.unit(6 * 1.2, "feet"),
  8945. weight: math.unit(225, "lbs"),
  8946. name: "Front (Werewolf)",
  8947. image: {
  8948. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8949. }
  8950. },
  8951. backWerewolf: {
  8952. height: math.unit(6 * 1.2, "feet"),
  8953. weight: math.unit(225, "lbs"),
  8954. name: "Back (Werewolf)",
  8955. image: {
  8956. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8957. }
  8958. },
  8959. },
  8960. [
  8961. {
  8962. name: "Nano",
  8963. height: math.unit(1, "micrometer")
  8964. },
  8965. {
  8966. name: "Micro",
  8967. height: math.unit(1, "inch")
  8968. },
  8969. {
  8970. name: "Normal",
  8971. height: math.unit(6, "feet"),
  8972. default: true
  8973. },
  8974. {
  8975. name: "Macro",
  8976. height: math.unit(60, "feet")
  8977. }
  8978. ]
  8979. ))
  8980. characterMakers.push(() => makeCharacter(
  8981. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8982. {
  8983. front: {
  8984. height: math.unit(6, "feet"),
  8985. weight: math.unit(165, "lbs"),
  8986. name: "Front",
  8987. image: {
  8988. source: "./media/characters/fluoresce/front.svg"
  8989. }
  8990. }
  8991. },
  8992. [
  8993. {
  8994. name: "Micro",
  8995. height: math.unit(6, "cm")
  8996. },
  8997. {
  8998. name: "Normal",
  8999. height: math.unit(5 + 7 / 12, "feet"),
  9000. default: true
  9001. },
  9002. {
  9003. name: "Macro",
  9004. height: math.unit(56, "feet")
  9005. },
  9006. {
  9007. name: "Megamacro",
  9008. height: math.unit(1.9, "miles")
  9009. },
  9010. ]
  9011. ))
  9012. characterMakers.push(() => makeCharacter(
  9013. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  9014. {
  9015. front: {
  9016. height: math.unit(9 + 6 / 12, "feet"),
  9017. weight: math.unit(523, "lbs"),
  9018. name: "Side",
  9019. image: {
  9020. source: "./media/characters/aurora/side.svg",
  9021. extra: 474/393,
  9022. bottom: 5/479
  9023. }
  9024. }
  9025. },
  9026. [
  9027. {
  9028. name: "Normal",
  9029. height: math.unit(9 + 6 / 12, "feet")
  9030. },
  9031. {
  9032. name: "Macro",
  9033. height: math.unit(96, "feet"),
  9034. default: true
  9035. },
  9036. {
  9037. name: "Macro+",
  9038. height: math.unit(243, "feet")
  9039. },
  9040. ]
  9041. ))
  9042. characterMakers.push(() => makeCharacter(
  9043. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  9044. {
  9045. front: {
  9046. height: math.unit(194, "cm"),
  9047. weight: math.unit(90, "kg"),
  9048. name: "Front",
  9049. image: {
  9050. source: "./media/characters/ranek/front.svg",
  9051. extra: 1862/1791,
  9052. bottom: 80/1942
  9053. }
  9054. },
  9055. back: {
  9056. height: math.unit(194, "cm"),
  9057. weight: math.unit(90, "kg"),
  9058. name: "Back",
  9059. image: {
  9060. source: "./media/characters/ranek/back.svg",
  9061. extra: 1853/1787,
  9062. bottom: 74/1927
  9063. }
  9064. },
  9065. feral: {
  9066. height: math.unit(30, "cm"),
  9067. weight: math.unit(1.6, "lbs"),
  9068. name: "Feral",
  9069. image: {
  9070. source: "./media/characters/ranek/feral.svg",
  9071. extra: 990/631,
  9072. bottom: 29/1019
  9073. }
  9074. },
  9075. },
  9076. [
  9077. {
  9078. name: "Normal",
  9079. height: math.unit(194, "cm"),
  9080. default: true
  9081. },
  9082. {
  9083. name: "Macro",
  9084. height: math.unit(100, "meters")
  9085. },
  9086. ]
  9087. ))
  9088. characterMakers.push(() => makeCharacter(
  9089. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  9090. {
  9091. front: {
  9092. height: math.unit(5 + 6 / 12, "feet"),
  9093. weight: math.unit(153, "lbs"),
  9094. name: "Front",
  9095. image: {
  9096. source: "./media/characters/andrew-cooper/front.svg"
  9097. }
  9098. },
  9099. },
  9100. [
  9101. {
  9102. name: "Nano",
  9103. height: math.unit(1, "mm")
  9104. },
  9105. {
  9106. name: "Micro",
  9107. height: math.unit(2, "inches")
  9108. },
  9109. {
  9110. name: "Normal",
  9111. height: math.unit(5 + 6 / 12, "feet"),
  9112. default: true
  9113. }
  9114. ]
  9115. ))
  9116. characterMakers.push(() => makeCharacter(
  9117. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  9118. {
  9119. front: {
  9120. height: math.unit(6, "feet"),
  9121. weight: math.unit(180, "lbs"),
  9122. name: "Front",
  9123. image: {
  9124. source: "./media/characters/akane-sato/front.svg",
  9125. extra: 1219 / 1140
  9126. }
  9127. },
  9128. back: {
  9129. height: math.unit(6, "feet"),
  9130. weight: math.unit(180, "lbs"),
  9131. name: "Back",
  9132. image: {
  9133. source: "./media/characters/akane-sato/back.svg",
  9134. extra: 1219 / 1170
  9135. }
  9136. },
  9137. },
  9138. [
  9139. {
  9140. name: "Normal",
  9141. height: math.unit(2.5, "meters")
  9142. },
  9143. {
  9144. name: "Macro",
  9145. height: math.unit(250, "meters"),
  9146. default: true
  9147. },
  9148. {
  9149. name: "Megamacro",
  9150. height: math.unit(25, "km")
  9151. },
  9152. ]
  9153. ))
  9154. characterMakers.push(() => makeCharacter(
  9155. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  9156. {
  9157. front: {
  9158. height: math.unit(6, "feet"),
  9159. weight: math.unit(65, "kg"),
  9160. name: "Front",
  9161. image: {
  9162. source: "./media/characters/rook/front.svg",
  9163. extra: 960 / 950
  9164. }
  9165. }
  9166. },
  9167. [
  9168. {
  9169. name: "Normal",
  9170. height: math.unit(8.8, "feet")
  9171. },
  9172. {
  9173. name: "Macro",
  9174. height: math.unit(88, "feet"),
  9175. default: true
  9176. },
  9177. {
  9178. name: "Megamacro",
  9179. height: math.unit(8, "miles")
  9180. },
  9181. ]
  9182. ))
  9183. characterMakers.push(() => makeCharacter(
  9184. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  9185. {
  9186. front: {
  9187. height: math.unit(12 + 2 / 12, "feet"),
  9188. weight: math.unit(808, "lbs"),
  9189. name: "Front",
  9190. image: {
  9191. source: "./media/characters/prodigy/front.svg"
  9192. }
  9193. }
  9194. },
  9195. [
  9196. {
  9197. name: "Normal",
  9198. height: math.unit(12 + 2 / 12, "feet"),
  9199. default: true
  9200. },
  9201. {
  9202. name: "Macro",
  9203. height: math.unit(143, "feet")
  9204. },
  9205. {
  9206. name: "Macro+",
  9207. height: math.unit(400, "feet")
  9208. },
  9209. ]
  9210. ))
  9211. characterMakers.push(() => makeCharacter(
  9212. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  9213. {
  9214. front: {
  9215. height: math.unit(6, "feet"),
  9216. weight: math.unit(225, "lbs"),
  9217. name: "Front",
  9218. image: {
  9219. source: "./media/characters/daniel/front.svg"
  9220. }
  9221. },
  9222. leaning: {
  9223. height: math.unit(6, "feet"),
  9224. weight: math.unit(225, "lbs"),
  9225. name: "Leaning",
  9226. image: {
  9227. source: "./media/characters/daniel/leaning.svg"
  9228. }
  9229. },
  9230. },
  9231. [
  9232. {
  9233. name: "Macro",
  9234. height: math.unit(1000, "feet"),
  9235. default: true
  9236. },
  9237. ]
  9238. ))
  9239. characterMakers.push(() => makeCharacter(
  9240. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  9241. {
  9242. front: {
  9243. height: math.unit(6, "feet"),
  9244. weight: math.unit(88, "lbs"),
  9245. name: "Front",
  9246. image: {
  9247. source: "./media/characters/chiros/front.svg",
  9248. extra: 306 / 226
  9249. }
  9250. },
  9251. side: {
  9252. height: math.unit(6, "feet"),
  9253. weight: math.unit(88, "lbs"),
  9254. name: "Side",
  9255. image: {
  9256. source: "./media/characters/chiros/side.svg",
  9257. extra: 306 / 226
  9258. }
  9259. },
  9260. },
  9261. [
  9262. {
  9263. name: "Normal",
  9264. height: math.unit(6, "cm"),
  9265. default: true
  9266. },
  9267. ]
  9268. ))
  9269. characterMakers.push(() => makeCharacter(
  9270. { name: "Selka", species: ["snake"], tags: ["naga"] },
  9271. {
  9272. front: {
  9273. height: math.unit(6, "feet"),
  9274. weight: math.unit(100, "lbs"),
  9275. name: "Front",
  9276. image: {
  9277. source: "./media/characters/selka/front.svg",
  9278. extra: 947 / 887
  9279. }
  9280. }
  9281. },
  9282. [
  9283. {
  9284. name: "Normal",
  9285. height: math.unit(5, "cm"),
  9286. default: true
  9287. },
  9288. ]
  9289. ))
  9290. characterMakers.push(() => makeCharacter(
  9291. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  9292. {
  9293. front: {
  9294. height: math.unit(8 + 3 / 12, "feet"),
  9295. weight: math.unit(424, "lbs"),
  9296. name: "Front",
  9297. image: {
  9298. source: "./media/characters/verin/front.svg",
  9299. extra: 1845 / 1550
  9300. }
  9301. },
  9302. frontArmored: {
  9303. height: math.unit(8 + 3 / 12, "feet"),
  9304. weight: math.unit(424, "lbs"),
  9305. name: "Front (Armored)",
  9306. image: {
  9307. source: "./media/characters/verin/front-armor.svg",
  9308. extra: 1845 / 1550,
  9309. bottom: 0.01
  9310. }
  9311. },
  9312. back: {
  9313. height: math.unit(8 + 3 / 12, "feet"),
  9314. weight: math.unit(424, "lbs"),
  9315. name: "Back",
  9316. image: {
  9317. source: "./media/characters/verin/back.svg",
  9318. bottom: 0.1,
  9319. extra: 1
  9320. }
  9321. },
  9322. foot: {
  9323. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9324. name: "Foot",
  9325. image: {
  9326. source: "./media/characters/verin/foot.svg"
  9327. }
  9328. },
  9329. },
  9330. [
  9331. {
  9332. name: "Normal",
  9333. height: math.unit(8 + 3 / 12, "feet")
  9334. },
  9335. {
  9336. name: "Minimacro",
  9337. height: math.unit(21, "feet"),
  9338. default: true
  9339. },
  9340. {
  9341. name: "Macro",
  9342. height: math.unit(626, "feet")
  9343. },
  9344. ]
  9345. ))
  9346. characterMakers.push(() => makeCharacter(
  9347. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9348. {
  9349. front: {
  9350. height: math.unit(2.718, "meters"),
  9351. weight: math.unit(150, "lbs"),
  9352. name: "Front",
  9353. image: {
  9354. source: "./media/characters/sovrim-terraquian/front.svg",
  9355. extra: 1752/1689,
  9356. bottom: 36/1788
  9357. }
  9358. },
  9359. back: {
  9360. height: math.unit(2.718, "meters"),
  9361. weight: math.unit(150, "lbs"),
  9362. name: "Back",
  9363. image: {
  9364. source: "./media/characters/sovrim-terraquian/back.svg",
  9365. extra: 1698/1657,
  9366. bottom: 58/1756
  9367. }
  9368. },
  9369. tongue: {
  9370. height: math.unit(2.865, "feet"),
  9371. name: "Tongue",
  9372. image: {
  9373. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9374. }
  9375. },
  9376. hand: {
  9377. height: math.unit(1.61, "feet"),
  9378. name: "Hand",
  9379. image: {
  9380. source: "./media/characters/sovrim-terraquian/hand.svg"
  9381. }
  9382. },
  9383. foot: {
  9384. height: math.unit(1.05, "feet"),
  9385. name: "Foot",
  9386. image: {
  9387. source: "./media/characters/sovrim-terraquian/foot.svg"
  9388. }
  9389. },
  9390. footAlt: {
  9391. height: math.unit(0.88, "feet"),
  9392. name: "Foot (Alt)",
  9393. image: {
  9394. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9395. }
  9396. },
  9397. },
  9398. [
  9399. {
  9400. name: "Micro",
  9401. height: math.unit(2, "inches")
  9402. },
  9403. {
  9404. name: "Small",
  9405. height: math.unit(1, "meter")
  9406. },
  9407. {
  9408. name: "Normal",
  9409. height: math.unit(Math.E, "meters"),
  9410. default: true
  9411. },
  9412. {
  9413. name: "Macro",
  9414. height: math.unit(20, "meters")
  9415. },
  9416. {
  9417. name: "Macro+",
  9418. height: math.unit(400, "meters")
  9419. },
  9420. ]
  9421. ))
  9422. characterMakers.push(() => makeCharacter(
  9423. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9424. {
  9425. front: {
  9426. height: math.unit(7, "feet"),
  9427. weight: math.unit(489, "lbs"),
  9428. name: "Front",
  9429. image: {
  9430. source: "./media/characters/reece-silvermane/front.svg",
  9431. bottom: 0.02,
  9432. extra: 1
  9433. }
  9434. },
  9435. },
  9436. [
  9437. {
  9438. name: "Macro",
  9439. height: math.unit(1.5, "miles"),
  9440. default: true
  9441. },
  9442. ]
  9443. ))
  9444. characterMakers.push(() => makeCharacter(
  9445. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9446. {
  9447. front: {
  9448. height: math.unit(6, "feet"),
  9449. weight: math.unit(78, "kg"),
  9450. name: "Front",
  9451. image: {
  9452. source: "./media/characters/kane/front.svg",
  9453. extra: 978 / 899
  9454. }
  9455. },
  9456. back: {
  9457. height: math.unit(6, "feet"),
  9458. weight: math.unit(78, "kg"),
  9459. name: "Back",
  9460. image: {
  9461. source: "./media/characters/kane/back.svg",
  9462. extra: 1966/1800,
  9463. bottom: 0/1966
  9464. }
  9465. },
  9466. head: {
  9467. height: math.unit(1.4, "feet"),
  9468. name: "Head",
  9469. image: {
  9470. source: "./media/characters/kane/head.svg"
  9471. }
  9472. },
  9473. },
  9474. [
  9475. {
  9476. name: "Normal",
  9477. height: math.unit(2.1, "m"),
  9478. },
  9479. {
  9480. name: "Macro",
  9481. height: math.unit(1, "km"),
  9482. default: true
  9483. },
  9484. ]
  9485. ))
  9486. characterMakers.push(() => makeCharacter(
  9487. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9488. {
  9489. frontSfw: {
  9490. name: "Front (SFW)",
  9491. height: math.unit(6 + 3/12, "feet"),
  9492. weight: math.unit(200, "kg"),
  9493. image: {
  9494. source: "./media/characters/tegon/front-sfw.svg",
  9495. extra: 1105/1087,
  9496. bottom: 86/1191
  9497. }
  9498. },
  9499. backSfw: {
  9500. name: "Back (SFW)",
  9501. height: math.unit(6 + 3/12, "feet"),
  9502. weight: math.unit(200, "kg"),
  9503. image: {
  9504. source: "./media/characters/tegon/back-sfw.svg",
  9505. extra: 1107/1087,
  9506. bottom: 21/1128
  9507. }
  9508. },
  9509. frontNsfw: {
  9510. name: "Front (NSFW)",
  9511. height: math.unit(6 + 3/12, "feet"),
  9512. weight: math.unit(200, "kg"),
  9513. image: {
  9514. source: "./media/characters/tegon/front-nsfw.svg",
  9515. extra: 1105/1087,
  9516. bottom: 86/1191
  9517. }
  9518. },
  9519. maw: {
  9520. height: math.unit(1.23, "feet"),
  9521. name: "Maw",
  9522. image: {
  9523. source: "./media/characters/tegon/maw.svg"
  9524. }
  9525. },
  9526. dick: {
  9527. height: math.unit(1.18, "feet"),
  9528. name: "Dick",
  9529. image: {
  9530. source: "./media/characters/tegon/dick.svg"
  9531. }
  9532. },
  9533. },
  9534. [
  9535. {
  9536. name: "Micro",
  9537. height: math.unit(1, "inch")
  9538. },
  9539. {
  9540. name: "Normal",
  9541. height: math.unit(6 + 3 / 12, "feet"),
  9542. default: true
  9543. },
  9544. {
  9545. name: "Macro",
  9546. height: math.unit(300, "feet")
  9547. },
  9548. {
  9549. name: "Megamacro",
  9550. height: math.unit(69, "miles")
  9551. },
  9552. ]
  9553. ))
  9554. characterMakers.push(() => makeCharacter(
  9555. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9556. {
  9557. side: {
  9558. height: math.unit(6, "feet"),
  9559. weight: math.unit(2304, "lbs"),
  9560. name: "Side",
  9561. image: {
  9562. source: "./media/characters/arcturax/side.svg",
  9563. extra: 790 / 376,
  9564. bottom: 0.01
  9565. }
  9566. },
  9567. },
  9568. [
  9569. {
  9570. name: "Micro",
  9571. height: math.unit(2, "inch")
  9572. },
  9573. {
  9574. name: "Normal",
  9575. height: math.unit(6, "feet")
  9576. },
  9577. {
  9578. name: "Macro",
  9579. height: math.unit(39, "feet"),
  9580. default: true
  9581. },
  9582. {
  9583. name: "Megamacro",
  9584. height: math.unit(7, "miles")
  9585. },
  9586. ]
  9587. ))
  9588. characterMakers.push(() => makeCharacter(
  9589. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9590. {
  9591. front: {
  9592. height: math.unit(6, "feet"),
  9593. weight: math.unit(50, "lbs"),
  9594. name: "Front",
  9595. image: {
  9596. source: "./media/characters/sentri/front.svg",
  9597. extra: 1750 / 1570,
  9598. bottom: 0.025
  9599. }
  9600. },
  9601. frontAlt: {
  9602. height: math.unit(6, "feet"),
  9603. weight: math.unit(50, "lbs"),
  9604. name: "Front (Alt)",
  9605. image: {
  9606. source: "./media/characters/sentri/front-alt.svg",
  9607. extra: 1750 / 1570,
  9608. bottom: 0.025
  9609. }
  9610. },
  9611. },
  9612. [
  9613. {
  9614. name: "Normal",
  9615. height: math.unit(15, "feet"),
  9616. default: true
  9617. },
  9618. {
  9619. name: "Macro",
  9620. height: math.unit(2500, "feet")
  9621. }
  9622. ]
  9623. ))
  9624. characterMakers.push(() => makeCharacter(
  9625. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9626. {
  9627. front: {
  9628. height: math.unit(5 + 8 / 12, "feet"),
  9629. weight: math.unit(130, "lbs"),
  9630. name: "Front",
  9631. image: {
  9632. source: "./media/characters/corvin/front.svg",
  9633. extra: 1803 / 1629
  9634. }
  9635. },
  9636. frontShirt: {
  9637. height: math.unit(5 + 8 / 12, "feet"),
  9638. weight: math.unit(130, "lbs"),
  9639. name: "Front (Shirt)",
  9640. image: {
  9641. source: "./media/characters/corvin/front-shirt.svg",
  9642. extra: 1803 / 1629
  9643. }
  9644. },
  9645. frontPoncho: {
  9646. height: math.unit(5 + 8 / 12, "feet"),
  9647. weight: math.unit(130, "lbs"),
  9648. name: "Front (Poncho)",
  9649. image: {
  9650. source: "./media/characters/corvin/front-poncho.svg",
  9651. extra: 1803 / 1629
  9652. }
  9653. },
  9654. side: {
  9655. height: math.unit(5 + 8 / 12, "feet"),
  9656. weight: math.unit(130, "lbs"),
  9657. name: "Side",
  9658. image: {
  9659. source: "./media/characters/corvin/side.svg",
  9660. extra: 1012 / 945
  9661. }
  9662. },
  9663. back: {
  9664. height: math.unit(5 + 8 / 12, "feet"),
  9665. weight: math.unit(130, "lbs"),
  9666. name: "Back",
  9667. image: {
  9668. source: "./media/characters/corvin/back.svg",
  9669. extra: 1803 / 1629
  9670. }
  9671. },
  9672. },
  9673. [
  9674. {
  9675. name: "Micro",
  9676. height: math.unit(3, "inches")
  9677. },
  9678. {
  9679. name: "Normal",
  9680. height: math.unit(5 + 8 / 12, "feet")
  9681. },
  9682. {
  9683. name: "Macro",
  9684. height: math.unit(300, "feet"),
  9685. default: true
  9686. },
  9687. {
  9688. name: "Megamacro",
  9689. height: math.unit(500, "miles")
  9690. }
  9691. ]
  9692. ))
  9693. characterMakers.push(() => makeCharacter(
  9694. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9695. {
  9696. front: {
  9697. height: math.unit(6, "feet"),
  9698. weight: math.unit(135, "lbs"),
  9699. name: "Front",
  9700. image: {
  9701. source: "./media/characters/q/front.svg",
  9702. extra: 854 / 752,
  9703. bottom: 0.005
  9704. }
  9705. },
  9706. back: {
  9707. height: math.unit(6, "feet"),
  9708. weight: math.unit(130, "lbs"),
  9709. name: "Back",
  9710. image: {
  9711. source: "./media/characters/q/back.svg",
  9712. extra: 854 / 752
  9713. }
  9714. },
  9715. },
  9716. [
  9717. {
  9718. name: "Macro",
  9719. height: math.unit(90, "feet"),
  9720. default: true
  9721. },
  9722. {
  9723. name: "Extra Macro",
  9724. height: math.unit(300, "feet"),
  9725. },
  9726. {
  9727. name: "BIG WALF",
  9728. height: math.unit(750, "feet"),
  9729. },
  9730. ]
  9731. ))
  9732. characterMakers.push(() => makeCharacter(
  9733. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9734. {
  9735. front: {
  9736. height: math.unit(3, "feet"),
  9737. weight: math.unit(28, "lbs"),
  9738. name: "Front",
  9739. image: {
  9740. source: "./media/characters/citrine/front.svg"
  9741. }
  9742. }
  9743. },
  9744. [
  9745. {
  9746. name: "Normal",
  9747. height: math.unit(3, "feet"),
  9748. default: true
  9749. }
  9750. ]
  9751. ))
  9752. characterMakers.push(() => makeCharacter(
  9753. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9754. {
  9755. front: {
  9756. height: math.unit(14, "feet"),
  9757. weight: math.unit(1450, "kg"),
  9758. preyCapacity: math.unit(15, "people"),
  9759. name: "Front",
  9760. image: {
  9761. source: "./media/characters/aura-starwind/front.svg",
  9762. extra: 1440/1327,
  9763. bottom: 11/1451
  9764. }
  9765. },
  9766. side: {
  9767. height: math.unit(14, "feet"),
  9768. weight: math.unit(1450, "kg"),
  9769. preyCapacity: math.unit(15, "people"),
  9770. name: "Side",
  9771. image: {
  9772. source: "./media/characters/aura-starwind/side.svg",
  9773. extra: 1654 / 1497
  9774. }
  9775. },
  9776. taur: {
  9777. height: math.unit(18, "feet"),
  9778. weight: math.unit(5500, "kg"),
  9779. preyCapacity: math.unit(50, "people"),
  9780. name: "Taur",
  9781. image: {
  9782. source: "./media/characters/aura-starwind/taur.svg",
  9783. extra: 1760 / 1650
  9784. }
  9785. },
  9786. feral: {
  9787. height: math.unit(46, "feet"),
  9788. weight: math.unit(25000, "kg"),
  9789. preyCapacity: math.unit(120, "people"),
  9790. name: "Feral",
  9791. image: {
  9792. source: "./media/characters/aura-starwind/feral.svg"
  9793. }
  9794. },
  9795. },
  9796. [
  9797. {
  9798. name: "Normal",
  9799. height: math.unit(14, "feet"),
  9800. default: true
  9801. },
  9802. {
  9803. name: "Macro",
  9804. height: math.unit(50, "meters")
  9805. },
  9806. {
  9807. name: "Megamacro",
  9808. height: math.unit(5000, "meters")
  9809. },
  9810. {
  9811. name: "Gigamacro",
  9812. height: math.unit(100000, "kilometers")
  9813. },
  9814. ]
  9815. ))
  9816. characterMakers.push(() => makeCharacter(
  9817. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9818. {
  9819. front: {
  9820. height: math.unit(2 + 7 / 12, "feet"),
  9821. weight: math.unit(32, "lbs"),
  9822. name: "Front",
  9823. image: {
  9824. source: "./media/characters/rivet/front.svg",
  9825. extra: 1716 / 1658,
  9826. bottom: 0.03
  9827. }
  9828. },
  9829. foot: {
  9830. height: math.unit(0.551, "feet"),
  9831. name: "Rivet's Foot",
  9832. image: {
  9833. source: "./media/characters/rivet/foot.svg"
  9834. },
  9835. rename: true
  9836. }
  9837. },
  9838. [
  9839. {
  9840. name: "Micro",
  9841. height: math.unit(1.5, "inches"),
  9842. },
  9843. {
  9844. name: "Normal",
  9845. height: math.unit(2 + 7 / 12, "feet"),
  9846. default: true
  9847. },
  9848. {
  9849. name: "Macro",
  9850. height: math.unit(85, "feet")
  9851. },
  9852. {
  9853. name: "Megamacro",
  9854. height: math.unit(2.2, "km")
  9855. }
  9856. ]
  9857. ))
  9858. characterMakers.push(() => makeCharacter(
  9859. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9860. {
  9861. front: {
  9862. height: math.unit(5 + 9 / 12, "feet"),
  9863. weight: math.unit(150, "lbs"),
  9864. name: "Front",
  9865. image: {
  9866. source: "./media/characters/coffee/front.svg",
  9867. extra: 946/880,
  9868. bottom: 66/1012
  9869. }
  9870. },
  9871. foot: {
  9872. height: math.unit(1.29, "feet"),
  9873. name: "Foot",
  9874. image: {
  9875. source: "./media/characters/coffee/foot.svg"
  9876. }
  9877. },
  9878. },
  9879. [
  9880. {
  9881. name: "Micro",
  9882. height: math.unit(2, "inches"),
  9883. },
  9884. {
  9885. name: "Normal",
  9886. height: math.unit(5 + 9 / 12, "feet"),
  9887. default: true
  9888. },
  9889. {
  9890. name: "Macro",
  9891. height: math.unit(800, "feet")
  9892. },
  9893. {
  9894. name: "Megamacro",
  9895. height: math.unit(25, "miles")
  9896. }
  9897. ]
  9898. ))
  9899. characterMakers.push(() => makeCharacter(
  9900. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9901. {
  9902. front: {
  9903. height: math.unit(6, "feet"),
  9904. weight: math.unit(200, "lbs"),
  9905. name: "Front",
  9906. image: {
  9907. source: "./media/characters/chari-gal/front.svg",
  9908. extra: 735/649,
  9909. bottom: 55/790
  9910. },
  9911. form: "normal",
  9912. default: true
  9913. },
  9914. back: {
  9915. height: math.unit(6, "feet"),
  9916. weight: math.unit(200, "lb"),
  9917. name: "Back",
  9918. image: {
  9919. source: "./media/characters/chari-gal/back.svg",
  9920. extra: 762/666,
  9921. bottom: 31/793
  9922. },
  9923. form: "normal"
  9924. },
  9925. mouth: {
  9926. height: math.unit(1.35, "feet"),
  9927. name: "Mouth",
  9928. image: {
  9929. source: "./media/characters/chari-gal/mouth.svg"
  9930. },
  9931. form: "normal"
  9932. },
  9933. gigantamax: {
  9934. height: math.unit(6 * 16, "feet"),
  9935. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9936. name: "Gigantamax",
  9937. image: {
  9938. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9939. extra: 1507/1149,
  9940. bottom: 254/1761
  9941. },
  9942. form: "gigantamax",
  9943. default: true
  9944. },
  9945. },
  9946. [
  9947. {
  9948. name: "Normal",
  9949. height: math.unit(5 + 7 / 12, "feet"),
  9950. form: "normal",
  9951. },
  9952. {
  9953. name: "Macro",
  9954. height: math.unit(200, "feet"),
  9955. default: true,
  9956. form: "normal"
  9957. },
  9958. {
  9959. name: "Normal",
  9960. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9961. form: "gigantamax",
  9962. },
  9963. {
  9964. name: "Macro",
  9965. height: math.unit(16 * 200, "feet"),
  9966. default: true,
  9967. form: "gigantamax"
  9968. },
  9969. ],
  9970. {
  9971. "normal": {
  9972. name: "Normal",
  9973. default: true
  9974. },
  9975. "gigantamax": {
  9976. name: "Gigantamax",
  9977. },
  9978. }
  9979. ))
  9980. characterMakers.push(() => makeCharacter(
  9981. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9982. {
  9983. front: {
  9984. height: math.unit(6, "feet"),
  9985. weight: math.unit(150, "lbs"),
  9986. name: "Front",
  9987. image: {
  9988. source: "./media/characters/nova/front.svg",
  9989. extra: 5000 / 4722,
  9990. bottom: 0.02
  9991. }
  9992. }
  9993. },
  9994. [
  9995. {
  9996. name: "Micro-",
  9997. height: math.unit(0.8, "inches")
  9998. },
  9999. {
  10000. name: "Micro",
  10001. height: math.unit(2, "inches"),
  10002. default: true
  10003. },
  10004. ]
  10005. ))
  10006. characterMakers.push(() => makeCharacter(
  10007. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  10008. {
  10009. koboldFront: {
  10010. height: math.unit(3 + 1 / 12, "feet"),
  10011. weight: math.unit(21.7, "lbs"),
  10012. name: "Front",
  10013. image: {
  10014. source: "./media/characters/argent/kobold-front.svg",
  10015. extra: 1471 / 1331,
  10016. bottom: 100.8 / 1575.5
  10017. },
  10018. form: "kobold",
  10019. default: true
  10020. },
  10021. dragonFront: {
  10022. height: math.unit(75, "inches"),
  10023. name: "Front",
  10024. image: {
  10025. source: "./media/characters/argent/dragon-front.svg",
  10026. extra: 1389/1248,
  10027. bottom: 54/1443
  10028. },
  10029. form: "dragon",
  10030. },
  10031. dragonBack: {
  10032. height: math.unit(75, "inches"),
  10033. name: "Back",
  10034. image: {
  10035. source: "./media/characters/argent/dragon-back.svg",
  10036. extra: 1399/1271,
  10037. bottom: 23/1422
  10038. },
  10039. form: "dragon",
  10040. },
  10041. dragonDressed: {
  10042. height: math.unit(75, "inches"),
  10043. name: "Dressed",
  10044. image: {
  10045. source: "./media/characters/argent/dragon-dressed.svg",
  10046. extra: 1350/1215,
  10047. bottom: 26/1376
  10048. },
  10049. form: "dragon"
  10050. },
  10051. dragonHead: {
  10052. height: math.unit(23.5, "inches"),
  10053. name: "Head",
  10054. image: {
  10055. source: "./media/characters/argent/dragon-head.svg"
  10056. },
  10057. form: "dragon",
  10058. },
  10059. },
  10060. [
  10061. {
  10062. name: "Micro",
  10063. height: math.unit(2, "inches"),
  10064. form: "kobold",
  10065. },
  10066. {
  10067. name: "Normal",
  10068. height: math.unit(3 + 1 / 12, "feet"),
  10069. form: "kobold",
  10070. default: true
  10071. },
  10072. {
  10073. name: "Macro",
  10074. height: math.unit(120, "feet"),
  10075. form: "kobold",
  10076. },
  10077. {
  10078. name: "Speck",
  10079. height: math.unit(1, "mm"),
  10080. form: "dragon",
  10081. },
  10082. {
  10083. name: "Tiny",
  10084. height: math.unit(1, "cm"),
  10085. form: "dragon",
  10086. },
  10087. {
  10088. name: "Micro",
  10089. height: math.unit(5, "cm"),
  10090. form: "dragon",
  10091. },
  10092. {
  10093. name: "Normal",
  10094. height: math.unit(75, "inches"),
  10095. form: "dragon",
  10096. default: true
  10097. },
  10098. {
  10099. name: "Extra Tall",
  10100. height: math.unit(9, "feet"),
  10101. form: "dragon",
  10102. },
  10103. {
  10104. name: "Inconvenient",
  10105. height: math.unit(5, "meters"),
  10106. form: "dragon",
  10107. },
  10108. {
  10109. name: "Macro",
  10110. height: math.unit(70, "meters"),
  10111. form: "dragon",
  10112. },
  10113. {
  10114. name: "Macro+",
  10115. height: math.unit(250, "meters"),
  10116. form: "dragon",
  10117. },
  10118. {
  10119. name: "Megamacro",
  10120. height: math.unit(20, "km"),
  10121. form: "dragon",
  10122. },
  10123. {
  10124. name: "Mountainous",
  10125. height: math.unit(100, "km"),
  10126. form: "dragon",
  10127. },
  10128. {
  10129. name: "Continental",
  10130. height: math.unit(2, "megameters"),
  10131. form: "dragon",
  10132. },
  10133. {
  10134. name: "Too Big",
  10135. height: math.unit(900, "megameters"),
  10136. form: "dragon",
  10137. },
  10138. ],
  10139. {
  10140. "kobold": {
  10141. name: "Kobold",
  10142. default: true
  10143. },
  10144. "dragon": {
  10145. name: "Dragon",
  10146. },
  10147. }
  10148. ))
  10149. characterMakers.push(() => makeCharacter(
  10150. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  10151. {
  10152. lamp: {
  10153. height: math.unit(7 * 1559 / 989, "feet"),
  10154. name: "Magic Lamp",
  10155. image: {
  10156. source: "./media/characters/mira-al-cul/lamp.svg",
  10157. extra: 1617 / 1559
  10158. }
  10159. },
  10160. front: {
  10161. height: math.unit(7, "feet"),
  10162. name: "Front",
  10163. image: {
  10164. source: "./media/characters/mira-al-cul/front.svg",
  10165. extra: 1044 / 990
  10166. }
  10167. },
  10168. },
  10169. [
  10170. {
  10171. name: "Heavily Restricted",
  10172. height: math.unit(7 * 1559 / 989, "feet")
  10173. },
  10174. {
  10175. name: "Freshly Freed",
  10176. height: math.unit(50 * 1559 / 989, "feet")
  10177. },
  10178. {
  10179. name: "World Encompassing",
  10180. height: math.unit(10000 * 1559 / 989, "miles")
  10181. },
  10182. {
  10183. name: "Galactic",
  10184. height: math.unit(1.433 * 1559 / 989, "zettameters")
  10185. },
  10186. {
  10187. name: "Palmed Universe",
  10188. height: math.unit(6000 * 1559 / 989, "yottameters"),
  10189. default: true
  10190. },
  10191. {
  10192. name: "Multiversal Matriarch",
  10193. height: math.unit(8.87e10, "yottameters")
  10194. },
  10195. {
  10196. name: "Void Mother",
  10197. height: math.unit(3.14e110, "yottaparsecs")
  10198. },
  10199. {
  10200. name: "Toying with Transcendence",
  10201. height: math.unit(1e307, "meters")
  10202. },
  10203. ]
  10204. ))
  10205. characterMakers.push(() => makeCharacter(
  10206. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  10207. {
  10208. front: {
  10209. height: math.unit(17 + 1 / 12, "feet"),
  10210. weight: math.unit(476.2 * 5, "lbs"),
  10211. name: "Front",
  10212. image: {
  10213. source: "./media/characters/kuro-shi-uchū/front.svg",
  10214. extra: 2329 / 1835,
  10215. bottom: 0.02
  10216. }
  10217. },
  10218. },
  10219. [
  10220. {
  10221. name: "Micro",
  10222. height: math.unit(2, "inches")
  10223. },
  10224. {
  10225. name: "Normal",
  10226. height: math.unit(12, "meters")
  10227. },
  10228. {
  10229. name: "Planetary",
  10230. height: math.unit(0.00929, "AU"),
  10231. default: true
  10232. },
  10233. {
  10234. name: "Universal",
  10235. height: math.unit(20, "gigaparsecs")
  10236. },
  10237. ]
  10238. ))
  10239. characterMakers.push(() => makeCharacter(
  10240. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  10241. {
  10242. front: {
  10243. height: math.unit(5 + 2 / 12, "feet"),
  10244. weight: math.unit(120, "lbs"),
  10245. name: "Front",
  10246. image: {
  10247. source: "./media/characters/katherine/front.svg",
  10248. extra: 2075 / 1969
  10249. }
  10250. },
  10251. dress: {
  10252. height: math.unit(5 + 2 / 12, "feet"),
  10253. weight: math.unit(120, "lbs"),
  10254. name: "Dress",
  10255. image: {
  10256. source: "./media/characters/katherine/dress.svg",
  10257. extra: 2258 / 2064
  10258. }
  10259. },
  10260. },
  10261. [
  10262. {
  10263. name: "Micro",
  10264. height: math.unit(1, "inches"),
  10265. default: true
  10266. },
  10267. {
  10268. name: "Normal",
  10269. height: math.unit(5 + 2 / 12, "feet")
  10270. },
  10271. {
  10272. name: "Macro",
  10273. height: math.unit(100, "meters")
  10274. },
  10275. {
  10276. name: "Megamacro",
  10277. height: math.unit(80, "miles")
  10278. },
  10279. ]
  10280. ))
  10281. characterMakers.push(() => makeCharacter(
  10282. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  10283. {
  10284. front: {
  10285. height: math.unit(7 + 8 / 12, "feet"),
  10286. weight: math.unit(250, "lbs"),
  10287. name: "Front",
  10288. image: {
  10289. source: "./media/characters/yevis/front.svg",
  10290. extra: 1938 / 1755
  10291. }
  10292. }
  10293. },
  10294. [
  10295. {
  10296. name: "Mortal",
  10297. height: math.unit(7 + 8 / 12, "feet")
  10298. },
  10299. {
  10300. name: "Battle",
  10301. height: math.unit(25 + 11 / 12, "feet")
  10302. },
  10303. {
  10304. name: "Wrath",
  10305. height: math.unit(1654 + 11 / 12, "feet")
  10306. },
  10307. {
  10308. name: "Planet Destroyer",
  10309. height: math.unit(12000, "miles")
  10310. },
  10311. {
  10312. name: "Galaxy Conqueror",
  10313. height: math.unit(1.45, "zettameters"),
  10314. default: true
  10315. },
  10316. {
  10317. name: "Universal War",
  10318. height: math.unit(184, "gigaparsecs")
  10319. },
  10320. {
  10321. name: "Eternity War",
  10322. height: math.unit(1.98e55, "yottaparsecs")
  10323. },
  10324. ]
  10325. ))
  10326. characterMakers.push(() => makeCharacter(
  10327. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  10328. {
  10329. front: {
  10330. height: math.unit(5 + 8 / 12, "feet"),
  10331. weight: math.unit(63, "kg"),
  10332. name: "Front",
  10333. image: {
  10334. source: "./media/characters/xavier/front.svg",
  10335. extra: 944 / 883
  10336. }
  10337. },
  10338. frontStretch: {
  10339. height: math.unit(5 + 8 / 12, "feet"),
  10340. weight: math.unit(63, "kg"),
  10341. name: "Stretching",
  10342. image: {
  10343. source: "./media/characters/xavier/front-stretch.svg",
  10344. extra: 962 / 820
  10345. }
  10346. },
  10347. },
  10348. [
  10349. {
  10350. name: "Normal",
  10351. height: math.unit(5 + 8 / 12, "feet")
  10352. },
  10353. {
  10354. name: "Macro",
  10355. height: math.unit(100, "meters"),
  10356. default: true
  10357. },
  10358. {
  10359. name: "McLargeHuge",
  10360. height: math.unit(10, "miles")
  10361. },
  10362. ]
  10363. ))
  10364. characterMakers.push(() => makeCharacter(
  10365. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10366. {
  10367. front: {
  10368. height: math.unit(5 + 5 / 12, "feet"),
  10369. weight: math.unit(150, "lb"),
  10370. name: "Front",
  10371. image: {
  10372. source: "./media/characters/joshii/front.svg",
  10373. extra: 765 / 653,
  10374. bottom: 51 / 816
  10375. }
  10376. },
  10377. foot: {
  10378. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10379. name: "Foot",
  10380. image: {
  10381. source: "./media/characters/joshii/foot.svg"
  10382. }
  10383. },
  10384. },
  10385. [
  10386. {
  10387. name: "Micro",
  10388. height: math.unit(2, "inches")
  10389. },
  10390. {
  10391. name: "Normal",
  10392. height: math.unit(5 + 5 / 12, "feet")
  10393. },
  10394. {
  10395. name: "Macro",
  10396. height: math.unit(785, "feet"),
  10397. default: true
  10398. },
  10399. {
  10400. name: "Megamacro",
  10401. height: math.unit(24.5, "miles")
  10402. },
  10403. ]
  10404. ))
  10405. characterMakers.push(() => makeCharacter(
  10406. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10407. {
  10408. front: {
  10409. height: math.unit(6, "feet"),
  10410. weight: math.unit(150, "lb"),
  10411. name: "Front",
  10412. image: {
  10413. source: "./media/characters/goddess-elizabeth/front.svg",
  10414. extra: 1800 / 1525,
  10415. bottom: 0.005
  10416. }
  10417. },
  10418. foot: {
  10419. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10420. name: "Foot",
  10421. image: {
  10422. source: "./media/characters/goddess-elizabeth/foot.svg"
  10423. }
  10424. },
  10425. mouth: {
  10426. height: math.unit(6, "feet"),
  10427. name: "Mouth",
  10428. image: {
  10429. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10430. }
  10431. },
  10432. },
  10433. [
  10434. {
  10435. name: "Micro",
  10436. height: math.unit(12, "feet")
  10437. },
  10438. {
  10439. name: "Normal",
  10440. height: math.unit(80, "miles"),
  10441. default: true
  10442. },
  10443. {
  10444. name: "Macro",
  10445. height: math.unit(15000, "parsecs")
  10446. },
  10447. ]
  10448. ))
  10449. characterMakers.push(() => makeCharacter(
  10450. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10451. {
  10452. front: {
  10453. height: math.unit(5 + 9 / 12, "feet"),
  10454. weight: math.unit(144, "lb"),
  10455. name: "Front",
  10456. image: {
  10457. source: "./media/characters/kara/front.svg"
  10458. }
  10459. },
  10460. feet: {
  10461. height: math.unit(6 / 6.765, "feet"),
  10462. name: "Kara's Feet",
  10463. rename: true,
  10464. image: {
  10465. source: "./media/characters/kara/feet.svg"
  10466. }
  10467. },
  10468. },
  10469. [
  10470. {
  10471. name: "Normal",
  10472. height: math.unit(5 + 9 / 12, "feet")
  10473. },
  10474. {
  10475. name: "Macro",
  10476. height: math.unit(174, "feet"),
  10477. default: true
  10478. },
  10479. ]
  10480. ))
  10481. characterMakers.push(() => makeCharacter(
  10482. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10483. {
  10484. front: {
  10485. height: math.unit(18, "feet"),
  10486. weight: math.unit(4050, "lb"),
  10487. name: "Front",
  10488. image: {
  10489. source: "./media/characters/tyrone/front.svg",
  10490. extra: 2405 / 2270,
  10491. bottom: 182 / 2587
  10492. }
  10493. },
  10494. },
  10495. [
  10496. {
  10497. name: "Normal",
  10498. height: math.unit(18, "feet"),
  10499. default: true
  10500. },
  10501. {
  10502. name: "Macro",
  10503. height: math.unit(300, "feet")
  10504. },
  10505. {
  10506. name: "Megamacro",
  10507. height: math.unit(15, "km")
  10508. },
  10509. {
  10510. name: "Gigamacro",
  10511. height: math.unit(500, "km")
  10512. },
  10513. {
  10514. name: "Teramacro",
  10515. height: math.unit(0.5, "gigameters")
  10516. },
  10517. {
  10518. name: "Omnimacro",
  10519. height: math.unit(1e252, "yottauniverse")
  10520. },
  10521. ]
  10522. ))
  10523. characterMakers.push(() => makeCharacter(
  10524. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10525. {
  10526. front: {
  10527. height: math.unit(7 + 8 / 12, "feet"),
  10528. weight: math.unit(120, "lb"),
  10529. name: "Front",
  10530. image: {
  10531. source: "./media/characters/danny/front.svg",
  10532. extra: 1490 / 1350
  10533. }
  10534. },
  10535. back: {
  10536. height: math.unit(7 + 8 / 12, "feet"),
  10537. weight: math.unit(120, "lb"),
  10538. name: "Back",
  10539. image: {
  10540. source: "./media/characters/danny/back.svg",
  10541. extra: 1490 / 1350
  10542. }
  10543. },
  10544. },
  10545. [
  10546. {
  10547. name: "Normal",
  10548. height: math.unit(7 + 8 / 12, "feet"),
  10549. default: true
  10550. },
  10551. ]
  10552. ))
  10553. characterMakers.push(() => makeCharacter(
  10554. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10555. {
  10556. front: {
  10557. height: math.unit(3.5, "inches"),
  10558. weight: math.unit(19, "grams"),
  10559. name: "Front",
  10560. image: {
  10561. source: "./media/characters/mallow/front.svg",
  10562. extra: 471 / 431
  10563. }
  10564. },
  10565. back: {
  10566. height: math.unit(3.5, "inches"),
  10567. weight: math.unit(19, "grams"),
  10568. name: "Back",
  10569. image: {
  10570. source: "./media/characters/mallow/back.svg",
  10571. extra: 471 / 431
  10572. }
  10573. },
  10574. },
  10575. [
  10576. {
  10577. name: "Normal",
  10578. height: math.unit(3.5, "inches"),
  10579. default: true
  10580. },
  10581. ]
  10582. ))
  10583. characterMakers.push(() => makeCharacter(
  10584. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10585. {
  10586. front: {
  10587. height: math.unit(9, "feet"),
  10588. weight: math.unit(230, "kg"),
  10589. name: "Front",
  10590. image: {
  10591. source: "./media/characters/starry-aqua/front.svg"
  10592. }
  10593. },
  10594. back: {
  10595. height: math.unit(9, "feet"),
  10596. weight: math.unit(230, "kg"),
  10597. name: "Back",
  10598. image: {
  10599. source: "./media/characters/starry-aqua/back.svg"
  10600. }
  10601. },
  10602. hand: {
  10603. height: math.unit(9 * 0.1168, "feet"),
  10604. name: "Hand",
  10605. image: {
  10606. source: "./media/characters/starry-aqua/hand.svg"
  10607. }
  10608. },
  10609. foot: {
  10610. height: math.unit(9 * 0.18, "feet"),
  10611. name: "Foot",
  10612. image: {
  10613. source: "./media/characters/starry-aqua/foot.svg"
  10614. }
  10615. }
  10616. },
  10617. [
  10618. {
  10619. name: "Micro",
  10620. height: math.unit(3, "inches")
  10621. },
  10622. {
  10623. name: "Normal",
  10624. height: math.unit(9, "feet")
  10625. },
  10626. {
  10627. name: "Macro",
  10628. height: math.unit(300, "feet"),
  10629. default: true
  10630. },
  10631. {
  10632. name: "Megamacro",
  10633. height: math.unit(3200, "feet")
  10634. }
  10635. ]
  10636. ))
  10637. characterMakers.push(() => makeCharacter(
  10638. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10639. {
  10640. front: {
  10641. height: math.unit(15, "feet"),
  10642. weight: math.unit(5026, "lb"),
  10643. name: "Front",
  10644. image: {
  10645. source: "./media/characters/luka-towers/front.svg",
  10646. extra: 1269/1133,
  10647. bottom: 51/1320
  10648. }
  10649. },
  10650. },
  10651. [
  10652. {
  10653. name: "Normal",
  10654. height: math.unit(15, "feet"),
  10655. default: true
  10656. },
  10657. {
  10658. name: "Minimacro",
  10659. height: math.unit(25, "feet")
  10660. },
  10661. {
  10662. name: "Macro",
  10663. height: math.unit(320, "feet")
  10664. },
  10665. {
  10666. name: "Megamacro",
  10667. height: math.unit(35000, "feet")
  10668. },
  10669. {
  10670. name: "Gigamacro",
  10671. height: math.unit(4000, "miles")
  10672. },
  10673. {
  10674. name: "Teramacro",
  10675. height: math.unit(15000, "miles")
  10676. },
  10677. ]
  10678. ))
  10679. characterMakers.push(() => makeCharacter(
  10680. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10681. {
  10682. front: {
  10683. height: math.unit(6, "feet"),
  10684. weight: math.unit(150, "lb"),
  10685. name: "Front",
  10686. image: {
  10687. source: "./media/characters/natalie-nightring/front.svg",
  10688. extra: 1,
  10689. bottom: 0.06
  10690. }
  10691. },
  10692. },
  10693. [
  10694. {
  10695. name: "Uh Oh",
  10696. height: math.unit(0.1, "mm")
  10697. },
  10698. {
  10699. name: "Small",
  10700. height: math.unit(3, "inches")
  10701. },
  10702. {
  10703. name: "Human Scale",
  10704. height: math.unit(6, "feet")
  10705. },
  10706. {
  10707. name: "Librarian",
  10708. height: math.unit(50, "feet"),
  10709. default: true
  10710. },
  10711. {
  10712. name: "Immense",
  10713. height: math.unit(200, "miles")
  10714. },
  10715. ]
  10716. ))
  10717. characterMakers.push(() => makeCharacter(
  10718. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10719. {
  10720. front: {
  10721. height: math.unit(6, "feet"),
  10722. weight: math.unit(180, "lbs"),
  10723. name: "Front",
  10724. image: {
  10725. source: "./media/characters/danni-rosie/front.svg",
  10726. extra: 1260 / 1128,
  10727. bottom: 0.022
  10728. }
  10729. },
  10730. },
  10731. [
  10732. {
  10733. name: "Micro",
  10734. height: math.unit(2, "inches"),
  10735. default: true
  10736. },
  10737. ]
  10738. ))
  10739. characterMakers.push(() => makeCharacter(
  10740. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10741. {
  10742. front: {
  10743. height: math.unit(5 + 9 / 12, "feet"),
  10744. weight: math.unit(220, "lb"),
  10745. name: "Front",
  10746. image: {
  10747. source: "./media/characters/samantha-kruse/front.svg",
  10748. extra: (985 / 935),
  10749. bottom: 0.03
  10750. }
  10751. },
  10752. frontUndressed: {
  10753. height: math.unit(5 + 9 / 12, "feet"),
  10754. weight: math.unit(220, "lb"),
  10755. name: "Front (Undressed)",
  10756. image: {
  10757. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10758. extra: (973 / 923),
  10759. bottom: 0.025
  10760. }
  10761. },
  10762. fat: {
  10763. height: math.unit(5 + 9 / 12, "feet"),
  10764. weight: math.unit(900, "lb"),
  10765. name: "Front (Fat)",
  10766. image: {
  10767. source: "./media/characters/samantha-kruse/fat.svg",
  10768. extra: 2688 / 2561
  10769. }
  10770. },
  10771. },
  10772. [
  10773. {
  10774. name: "Normal",
  10775. height: math.unit(5 + 9 / 12, "feet"),
  10776. default: true
  10777. }
  10778. ]
  10779. ))
  10780. characterMakers.push(() => makeCharacter(
  10781. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10782. {
  10783. back: {
  10784. height: math.unit(5 + 4 / 12, "feet"),
  10785. weight: math.unit(4963, "lb"),
  10786. name: "Back",
  10787. image: {
  10788. source: "./media/characters/amelia-rosie/back.svg",
  10789. extra: 1113 / 963,
  10790. bottom: 0.01
  10791. }
  10792. },
  10793. },
  10794. [
  10795. {
  10796. name: "Level 0",
  10797. height: math.unit(5 + 4 / 12, "feet")
  10798. },
  10799. {
  10800. name: "Level 1",
  10801. height: math.unit(164597, "feet"),
  10802. default: true
  10803. },
  10804. {
  10805. name: "Level 2",
  10806. height: math.unit(956243, "miles")
  10807. },
  10808. {
  10809. name: "Level 3",
  10810. height: math.unit(29421709423, "miles")
  10811. },
  10812. {
  10813. name: "Level 4",
  10814. height: math.unit(154, "lightyears")
  10815. },
  10816. {
  10817. name: "Level 5",
  10818. height: math.unit(4738272, "lightyears")
  10819. },
  10820. {
  10821. name: "Level 6",
  10822. height: math.unit(145787152896, "lightyears")
  10823. },
  10824. ]
  10825. ))
  10826. characterMakers.push(() => makeCharacter(
  10827. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10828. {
  10829. front: {
  10830. height: math.unit(5 + 11 / 12, "feet"),
  10831. weight: math.unit(65, "kg"),
  10832. name: "Front",
  10833. image: {
  10834. source: "./media/characters/rook-kitara/front.svg",
  10835. extra: 1347 / 1274,
  10836. bottom: 0.005
  10837. }
  10838. },
  10839. },
  10840. [
  10841. {
  10842. name: "Totally Unfair",
  10843. height: math.unit(1.8, "mm")
  10844. },
  10845. {
  10846. name: "Lap Rookie",
  10847. height: math.unit(1.4, "feet")
  10848. },
  10849. {
  10850. name: "Normal",
  10851. height: math.unit(5 + 11 / 12, "feet"),
  10852. default: true
  10853. },
  10854. {
  10855. name: "How Did This Happen",
  10856. height: math.unit(80, "miles")
  10857. }
  10858. ]
  10859. ))
  10860. characterMakers.push(() => makeCharacter(
  10861. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10862. {
  10863. front: {
  10864. height: math.unit(7, "feet"),
  10865. weight: math.unit(300, "lb"),
  10866. name: "Front",
  10867. image: {
  10868. source: "./media/characters/pisces/front.svg",
  10869. extra: 2255 / 2115,
  10870. bottom: 0.03
  10871. }
  10872. },
  10873. back: {
  10874. height: math.unit(7, "feet"),
  10875. weight: math.unit(300, "lb"),
  10876. name: "Back",
  10877. image: {
  10878. source: "./media/characters/pisces/back.svg",
  10879. extra: 2146 / 2055,
  10880. bottom: 0.04
  10881. }
  10882. },
  10883. },
  10884. [
  10885. {
  10886. name: "Normal",
  10887. height: math.unit(7, "feet"),
  10888. default: true
  10889. },
  10890. {
  10891. name: "Swimming Pool",
  10892. height: math.unit(12.2, "meters")
  10893. },
  10894. {
  10895. name: "Olympic Swimming Pool",
  10896. height: math.unit(56.3, "meters")
  10897. },
  10898. {
  10899. name: "Lake Superior",
  10900. height: math.unit(93900, "meters")
  10901. },
  10902. {
  10903. name: "Mediterranean Sea",
  10904. height: math.unit(644457, "meters")
  10905. },
  10906. {
  10907. name: "World's Oceans",
  10908. height: math.unit(4567491, "meters")
  10909. },
  10910. ]
  10911. ))
  10912. characterMakers.push(() => makeCharacter(
  10913. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10914. {
  10915. front: {
  10916. height: math.unit(2.3, "meters"),
  10917. weight: math.unit(120, "kg"),
  10918. name: "Front",
  10919. image: {
  10920. source: "./media/characters/zelas/front.svg"
  10921. }
  10922. },
  10923. side: {
  10924. height: math.unit(2.3, "meters"),
  10925. weight: math.unit(120, "kg"),
  10926. name: "Side",
  10927. image: {
  10928. source: "./media/characters/zelas/side.svg"
  10929. }
  10930. },
  10931. back: {
  10932. height: math.unit(2.3, "meters"),
  10933. weight: math.unit(120, "kg"),
  10934. name: "Back",
  10935. image: {
  10936. source: "./media/characters/zelas/back.svg"
  10937. }
  10938. },
  10939. foot: {
  10940. height: math.unit(1.116, "feet"),
  10941. name: "Foot",
  10942. image: {
  10943. source: "./media/characters/zelas/foot.svg"
  10944. }
  10945. },
  10946. },
  10947. [
  10948. {
  10949. name: "Normal",
  10950. height: math.unit(2.3, "meters")
  10951. },
  10952. {
  10953. name: "Macro",
  10954. height: math.unit(30, "meters"),
  10955. default: true
  10956. },
  10957. ]
  10958. ))
  10959. characterMakers.push(() => makeCharacter(
  10960. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10961. {
  10962. front: {
  10963. height: math.unit(1, "inch"),
  10964. weight: math.unit(0.21, "grams"),
  10965. name: "Front",
  10966. image: {
  10967. source: "./media/characters/talbot/front.svg",
  10968. extra: 594 / 544
  10969. }
  10970. },
  10971. },
  10972. [
  10973. {
  10974. name: "Micro",
  10975. height: math.unit(1, "inch"),
  10976. default: true
  10977. },
  10978. ]
  10979. ))
  10980. characterMakers.push(() => makeCharacter(
  10981. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10982. {
  10983. front: {
  10984. height: math.unit(3 + 3 / 12, "feet"),
  10985. weight: math.unit(51.8, "lb"),
  10986. name: "Front",
  10987. image: {
  10988. source: "./media/characters/fliss/front.svg",
  10989. extra: 840 / 640
  10990. }
  10991. },
  10992. },
  10993. [
  10994. {
  10995. name: "Teeny Tiny",
  10996. height: math.unit(1, "mm")
  10997. },
  10998. {
  10999. name: "Small",
  11000. height: math.unit(1, "inch"),
  11001. default: true
  11002. },
  11003. {
  11004. name: "Standard Sylveon",
  11005. height: math.unit(3 + 3 / 12, "feet")
  11006. },
  11007. {
  11008. name: "Large Nuisance",
  11009. height: math.unit(33, "feet")
  11010. },
  11011. {
  11012. name: "City Filler",
  11013. height: math.unit(3000, "feet")
  11014. },
  11015. {
  11016. name: "New Horizon",
  11017. height: math.unit(6000, "miles")
  11018. },
  11019. ]
  11020. ))
  11021. characterMakers.push(() => makeCharacter(
  11022. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  11023. {
  11024. front: {
  11025. height: math.unit(5, "cm"),
  11026. weight: math.unit(1.94, "g"),
  11027. name: "Front",
  11028. image: {
  11029. source: "./media/characters/fleta/front.svg",
  11030. extra: 835 / 803
  11031. }
  11032. },
  11033. back: {
  11034. height: math.unit(5, "cm"),
  11035. weight: math.unit(1.94, "g"),
  11036. name: "Back",
  11037. image: {
  11038. source: "./media/characters/fleta/back.svg",
  11039. extra: 835 / 803
  11040. }
  11041. },
  11042. },
  11043. [
  11044. {
  11045. name: "Micro",
  11046. height: math.unit(5, "cm"),
  11047. default: true
  11048. },
  11049. ]
  11050. ))
  11051. characterMakers.push(() => makeCharacter(
  11052. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  11053. {
  11054. front: {
  11055. height: math.unit(6, "feet"),
  11056. weight: math.unit(225, "lb"),
  11057. name: "Front",
  11058. image: {
  11059. source: "./media/characters/dominic/front.svg",
  11060. extra: 1770 / 1620,
  11061. bottom: 0.025
  11062. }
  11063. },
  11064. back: {
  11065. height: math.unit(6, "feet"),
  11066. weight: math.unit(225, "lb"),
  11067. name: "Back",
  11068. image: {
  11069. source: "./media/characters/dominic/back.svg",
  11070. extra: 1745 / 1620,
  11071. bottom: 0.065
  11072. }
  11073. },
  11074. },
  11075. [
  11076. {
  11077. name: "Nano",
  11078. height: math.unit(0.1, "mm")
  11079. },
  11080. {
  11081. name: "Micro-",
  11082. height: math.unit(1, "mm")
  11083. },
  11084. {
  11085. name: "Micro",
  11086. height: math.unit(4, "inches")
  11087. },
  11088. {
  11089. name: "Normal",
  11090. height: math.unit(6 + 4 / 12, "feet"),
  11091. default: true
  11092. },
  11093. {
  11094. name: "Macro",
  11095. height: math.unit(115, "feet")
  11096. },
  11097. {
  11098. name: "Macro+",
  11099. height: math.unit(955, "feet")
  11100. },
  11101. {
  11102. name: "Megamacro",
  11103. height: math.unit(8990, "feet")
  11104. },
  11105. {
  11106. name: "Gigmacro",
  11107. height: math.unit(9310, "miles")
  11108. },
  11109. {
  11110. name: "Teramacro",
  11111. height: math.unit(1567005010, "miles")
  11112. },
  11113. {
  11114. name: "Examacro",
  11115. height: math.unit(1425, "parsecs")
  11116. },
  11117. ]
  11118. ))
  11119. characterMakers.push(() => makeCharacter(
  11120. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  11121. {
  11122. front: {
  11123. height: math.unit(400, "feet"),
  11124. weight: math.unit(44444444, "lb"),
  11125. name: "Front",
  11126. image: {
  11127. source: "./media/characters/major-colonel/front.svg"
  11128. }
  11129. },
  11130. back: {
  11131. height: math.unit(400, "feet"),
  11132. weight: math.unit(44444444, "lb"),
  11133. name: "Back",
  11134. image: {
  11135. source: "./media/characters/major-colonel/back.svg"
  11136. }
  11137. },
  11138. },
  11139. [
  11140. {
  11141. name: "Macro",
  11142. height: math.unit(400, "feet"),
  11143. default: true
  11144. },
  11145. ]
  11146. ))
  11147. characterMakers.push(() => makeCharacter(
  11148. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  11149. {
  11150. catFront: {
  11151. height: math.unit(6, "feet"),
  11152. weight: math.unit(120, "lb"),
  11153. name: "Front (Cat Side)",
  11154. image: {
  11155. source: "./media/characters/axel-lycan/cat-front.svg",
  11156. extra: 430 / 402,
  11157. bottom: 43 / 472.35
  11158. }
  11159. },
  11160. catBack: {
  11161. height: math.unit(6, "feet"),
  11162. weight: math.unit(120, "lb"),
  11163. name: "Back (Cat Side)",
  11164. image: {
  11165. source: "./media/characters/axel-lycan/cat-back.svg",
  11166. extra: 447 / 419,
  11167. bottom: 23.3 / 469
  11168. }
  11169. },
  11170. wolfFront: {
  11171. height: math.unit(6, "feet"),
  11172. weight: math.unit(120, "lb"),
  11173. name: "Front (Wolf Side)",
  11174. image: {
  11175. source: "./media/characters/axel-lycan/wolf-front.svg",
  11176. extra: 485 / 456,
  11177. bottom: 19 / 504
  11178. }
  11179. },
  11180. wolfBack: {
  11181. height: math.unit(6, "feet"),
  11182. weight: math.unit(120, "lb"),
  11183. name: "Back (Wolf Side)",
  11184. image: {
  11185. source: "./media/characters/axel-lycan/wolf-back.svg",
  11186. extra: 475 / 438,
  11187. bottom: 39.2 / 514
  11188. }
  11189. },
  11190. },
  11191. [
  11192. {
  11193. name: "Macro",
  11194. height: math.unit(1, "km"),
  11195. default: true
  11196. },
  11197. ]
  11198. ))
  11199. characterMakers.push(() => makeCharacter(
  11200. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  11201. {
  11202. front: {
  11203. height: math.unit(5 + 9 / 12, "feet"),
  11204. weight: math.unit(175, "lb"),
  11205. name: "Front",
  11206. image: {
  11207. source: "./media/characters/vanrel-hyena/front.svg",
  11208. extra: 1086 / 1010,
  11209. bottom: 0.04
  11210. }
  11211. },
  11212. },
  11213. [
  11214. {
  11215. name: "Normal",
  11216. height: math.unit(5 + 9 / 12, "feet"),
  11217. default: true
  11218. },
  11219. ]
  11220. ))
  11221. characterMakers.push(() => makeCharacter(
  11222. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  11223. {
  11224. front: {
  11225. height: math.unit(6, "feet"),
  11226. weight: math.unit(103, "lb"),
  11227. name: "Front",
  11228. image: {
  11229. source: "./media/characters/abbott-absol/front.svg",
  11230. extra: 765/694,
  11231. bottom: 47/812
  11232. }
  11233. },
  11234. },
  11235. [
  11236. {
  11237. name: "Megamicro",
  11238. height: math.unit(0.1, "mm")
  11239. },
  11240. {
  11241. name: "Micro",
  11242. height: math.unit(1, "inch")
  11243. },
  11244. {
  11245. name: "Normal",
  11246. height: math.unit(6, "feet"),
  11247. default: true
  11248. },
  11249. ]
  11250. ))
  11251. characterMakers.push(() => makeCharacter(
  11252. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  11253. {
  11254. front: {
  11255. height: math.unit(6, "feet"),
  11256. weight: math.unit(264, "lb"),
  11257. name: "Front",
  11258. image: {
  11259. source: "./media/characters/hector/front.svg",
  11260. extra: 2280 / 2130,
  11261. bottom: 0.07
  11262. }
  11263. },
  11264. },
  11265. [
  11266. {
  11267. name: "Normal",
  11268. height: math.unit(12.25, "foot"),
  11269. default: true
  11270. },
  11271. {
  11272. name: "Macro",
  11273. height: math.unit(160, "feet")
  11274. },
  11275. ]
  11276. ))
  11277. characterMakers.push(() => makeCharacter(
  11278. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  11279. {
  11280. front: {
  11281. height: math.unit(6, "feet"),
  11282. weight: math.unit(150, "lb"),
  11283. name: "Front",
  11284. image: {
  11285. source: "./media/characters/sal/front.svg",
  11286. extra: 1846 / 1699,
  11287. bottom: 0.04
  11288. }
  11289. },
  11290. },
  11291. [
  11292. {
  11293. name: "Megamacro",
  11294. height: math.unit(10, "miles"),
  11295. default: true
  11296. },
  11297. ]
  11298. ))
  11299. characterMakers.push(() => makeCharacter(
  11300. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  11301. {
  11302. front: {
  11303. height: math.unit(3, "meters"),
  11304. weight: math.unit(450, "kg"),
  11305. name: "front",
  11306. image: {
  11307. source: "./media/characters/ranger/front.svg",
  11308. extra: 2401 / 2243,
  11309. bottom: 0.05
  11310. }
  11311. },
  11312. },
  11313. [
  11314. {
  11315. name: "Normal",
  11316. height: math.unit(3, "meters"),
  11317. default: true
  11318. },
  11319. ]
  11320. ))
  11321. characterMakers.push(() => makeCharacter(
  11322. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  11323. {
  11324. front: {
  11325. height: math.unit(14, "feet"),
  11326. weight: math.unit(800, "kg"),
  11327. name: "Front",
  11328. image: {
  11329. source: "./media/characters/theresa/front.svg",
  11330. extra: 3575 / 3346,
  11331. bottom: 0.03
  11332. }
  11333. },
  11334. },
  11335. [
  11336. {
  11337. name: "Normal",
  11338. height: math.unit(14, "feet"),
  11339. default: true
  11340. },
  11341. ]
  11342. ))
  11343. characterMakers.push(() => makeCharacter(
  11344. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  11345. {
  11346. front: {
  11347. height: math.unit(6, "feet"),
  11348. weight: math.unit(3, "kg"),
  11349. name: "Front",
  11350. image: {
  11351. source: "./media/characters/ine/front.svg",
  11352. extra: 678 / 539,
  11353. bottom: 0.023
  11354. }
  11355. },
  11356. },
  11357. [
  11358. {
  11359. name: "Normal",
  11360. height: math.unit(2.265, "feet"),
  11361. default: true
  11362. },
  11363. ]
  11364. ))
  11365. characterMakers.push(() => makeCharacter(
  11366. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11367. {
  11368. front: {
  11369. height: math.unit(5, "feet"),
  11370. weight: math.unit(30, "kg"),
  11371. name: "Front",
  11372. image: {
  11373. source: "./media/characters/vial/front.svg",
  11374. extra: 1365 / 1277,
  11375. bottom: 0.04
  11376. }
  11377. },
  11378. },
  11379. [
  11380. {
  11381. name: "Normal",
  11382. height: math.unit(5, "feet"),
  11383. default: true
  11384. },
  11385. ]
  11386. ))
  11387. characterMakers.push(() => makeCharacter(
  11388. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11389. {
  11390. side: {
  11391. height: math.unit(3.4, "meters"),
  11392. weight: math.unit(1000, "lb"),
  11393. name: "Side",
  11394. image: {
  11395. source: "./media/characters/rovoska/side.svg",
  11396. extra: 4403 / 1515
  11397. }
  11398. },
  11399. },
  11400. [
  11401. {
  11402. name: "Normal",
  11403. height: math.unit(3.4, "meters"),
  11404. default: true
  11405. },
  11406. ]
  11407. ))
  11408. characterMakers.push(() => makeCharacter(
  11409. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11410. {
  11411. front: {
  11412. height: math.unit(8, "feet"),
  11413. weight: math.unit(315, "lb"),
  11414. name: "Front",
  11415. image: {
  11416. source: "./media/characters/gunner-rotthbauer/front.svg"
  11417. }
  11418. },
  11419. back: {
  11420. height: math.unit(8, "feet"),
  11421. weight: math.unit(315, "lb"),
  11422. name: "Back",
  11423. image: {
  11424. source: "./media/characters/gunner-rotthbauer/back.svg"
  11425. }
  11426. },
  11427. },
  11428. [
  11429. {
  11430. name: "Micro",
  11431. height: math.unit(3.5, "inches")
  11432. },
  11433. {
  11434. name: "Normal",
  11435. height: math.unit(8, "feet"),
  11436. default: true
  11437. },
  11438. {
  11439. name: "Macro",
  11440. height: math.unit(250, "feet")
  11441. },
  11442. {
  11443. name: "Megamacro",
  11444. height: math.unit(1, "AU")
  11445. },
  11446. ]
  11447. ))
  11448. characterMakers.push(() => makeCharacter(
  11449. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11450. {
  11451. front: {
  11452. height: math.unit(5 + 5 / 12, "feet"),
  11453. weight: math.unit(140, "lb"),
  11454. name: "Front",
  11455. image: {
  11456. source: "./media/characters/allatia/front.svg",
  11457. extra: 1227 / 1180,
  11458. bottom: 0.027
  11459. }
  11460. },
  11461. },
  11462. [
  11463. {
  11464. name: "Normal",
  11465. height: math.unit(5 + 5 / 12, "feet")
  11466. },
  11467. {
  11468. name: "Macro",
  11469. height: math.unit(250, "feet"),
  11470. default: true
  11471. },
  11472. {
  11473. name: "Megamacro",
  11474. height: math.unit(8, "miles")
  11475. }
  11476. ]
  11477. ))
  11478. characterMakers.push(() => makeCharacter(
  11479. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11480. {
  11481. front: {
  11482. height: math.unit(6, "feet"),
  11483. weight: math.unit(120, "lb"),
  11484. name: "Front",
  11485. image: {
  11486. source: "./media/characters/tene/front.svg",
  11487. extra: 814/750,
  11488. bottom: 36/850
  11489. }
  11490. },
  11491. stomping: {
  11492. height: math.unit(2.025, "meters"),
  11493. weight: math.unit(120, "lb"),
  11494. name: "Stomping",
  11495. image: {
  11496. source: "./media/characters/tene/stomping.svg",
  11497. extra: 885/821,
  11498. bottom: 15/900
  11499. }
  11500. },
  11501. sitting: {
  11502. height: math.unit(1, "meter"),
  11503. weight: math.unit(120, "lb"),
  11504. name: "Sitting",
  11505. image: {
  11506. source: "./media/characters/tene/sitting.svg",
  11507. extra: 396/366,
  11508. bottom: 79/475
  11509. }
  11510. },
  11511. smiling: {
  11512. height: math.unit(1.2, "feet"),
  11513. name: "Smiling",
  11514. image: {
  11515. source: "./media/characters/tene/smiling.svg",
  11516. extra: 1364/1071,
  11517. bottom: 0/1364
  11518. }
  11519. },
  11520. smug: {
  11521. height: math.unit(1.3, "feet"),
  11522. name: "Smug",
  11523. image: {
  11524. source: "./media/characters/tene/smug.svg",
  11525. extra: 1323/1082,
  11526. bottom: 0/1323
  11527. }
  11528. },
  11529. feral: {
  11530. height: math.unit(3.9, "feet"),
  11531. weight: math.unit(250, "lb"),
  11532. name: "Feral",
  11533. image: {
  11534. source: "./media/characters/tene/feral.svg",
  11535. extra: 717 / 458,
  11536. bottom: 0.179
  11537. }
  11538. },
  11539. },
  11540. [
  11541. {
  11542. name: "Normal",
  11543. height: math.unit(6, "feet")
  11544. },
  11545. {
  11546. name: "Macro",
  11547. height: math.unit(300, "feet"),
  11548. default: true
  11549. },
  11550. {
  11551. name: "Megamacro",
  11552. height: math.unit(5, "miles")
  11553. },
  11554. ]
  11555. ))
  11556. characterMakers.push(() => makeCharacter(
  11557. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11558. {
  11559. side: {
  11560. height: math.unit(6, "feet"),
  11561. name: "Side",
  11562. image: {
  11563. source: "./media/characters/evander/side.svg",
  11564. extra: 877 / 477
  11565. }
  11566. },
  11567. },
  11568. [
  11569. {
  11570. name: "Normal",
  11571. height: math.unit(0.83, "meters"),
  11572. default: true
  11573. },
  11574. ]
  11575. ))
  11576. characterMakers.push(() => makeCharacter(
  11577. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11578. {
  11579. front: {
  11580. height: math.unit(12, "feet"),
  11581. weight: math.unit(1000, "lb"),
  11582. name: "Front",
  11583. image: {
  11584. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11585. extra: 1762 / 1611
  11586. }
  11587. },
  11588. back: {
  11589. height: math.unit(12, "feet"),
  11590. weight: math.unit(1000, "lb"),
  11591. name: "Back",
  11592. image: {
  11593. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11594. extra: 1762 / 1611
  11595. }
  11596. },
  11597. },
  11598. [
  11599. {
  11600. name: "Normal",
  11601. height: math.unit(12, "feet"),
  11602. default: true
  11603. },
  11604. {
  11605. name: "Kaiju",
  11606. height: math.unit(150, "feet")
  11607. },
  11608. ]
  11609. ))
  11610. characterMakers.push(() => makeCharacter(
  11611. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11612. {
  11613. front: {
  11614. height: math.unit(5 + 11/12, "feet"),
  11615. weight: math.unit(180, "lb"),
  11616. name: "Front",
  11617. image: {
  11618. source: "./media/characters/zero-alurus/front.svg",
  11619. extra: 1032/957,
  11620. bottom: 10/1042
  11621. }
  11622. },
  11623. back: {
  11624. height: math.unit(5 + 11/12, "feet"),
  11625. weight: math.unit(180, "lb"),
  11626. name: "Back",
  11627. image: {
  11628. source: "./media/characters/zero-alurus/back.svg",
  11629. extra: 1027/950,
  11630. bottom: 12/1039
  11631. }
  11632. },
  11633. },
  11634. [
  11635. {
  11636. name: "Normal",
  11637. height: math.unit(5 + 11 / 12, "feet")
  11638. },
  11639. {
  11640. name: "Mini-Macro",
  11641. height: math.unit(25, "feet")
  11642. },
  11643. {
  11644. name: "Macro",
  11645. height: math.unit(90, "feet"),
  11646. default: true
  11647. },
  11648. {
  11649. name: "Macro+",
  11650. height: math.unit(500, "feet")
  11651. },
  11652. {
  11653. name: "Megamacro",
  11654. height: math.unit(1200, "feet")
  11655. },
  11656. ]
  11657. ))
  11658. characterMakers.push(() => makeCharacter(
  11659. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11660. {
  11661. front: {
  11662. height: math.unit(6, "feet"),
  11663. weight: math.unit(200, "lb"),
  11664. name: "Front",
  11665. image: {
  11666. source: "./media/characters/mega-shi/front.svg",
  11667. extra: 1279 / 1250,
  11668. bottom: 0.02
  11669. }
  11670. },
  11671. back: {
  11672. height: math.unit(6, "feet"),
  11673. weight: math.unit(200, "lb"),
  11674. name: "Back",
  11675. image: {
  11676. source: "./media/characters/mega-shi/back.svg",
  11677. extra: 1279 / 1250,
  11678. bottom: 0.02
  11679. }
  11680. },
  11681. },
  11682. [
  11683. {
  11684. name: "Micro",
  11685. height: math.unit(16 + 6 / 12, "feet")
  11686. },
  11687. {
  11688. name: "Third Dimension",
  11689. height: math.unit(40, "meters")
  11690. },
  11691. {
  11692. name: "Normal",
  11693. height: math.unit(660, "feet"),
  11694. default: true
  11695. },
  11696. {
  11697. name: "Megamacro",
  11698. height: math.unit(10, "miles")
  11699. },
  11700. {
  11701. name: "Planetary Launch",
  11702. height: math.unit(500, "miles")
  11703. },
  11704. {
  11705. name: "Interstellar",
  11706. height: math.unit(1e9, "miles")
  11707. },
  11708. {
  11709. name: "Leaving the Universe",
  11710. height: math.unit(1, "gigaparsec")
  11711. },
  11712. {
  11713. name: "Travelling Universes",
  11714. height: math.unit(30e15, "parsecs")
  11715. },
  11716. ]
  11717. ))
  11718. characterMakers.push(() => makeCharacter(
  11719. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11720. {
  11721. front: {
  11722. height: math.unit(5 + 4/12, "feet"),
  11723. weight: math.unit(120, "lb"),
  11724. name: "Front",
  11725. image: {
  11726. source: "./media/characters/odyssey/front.svg",
  11727. extra: 1747/1571,
  11728. bottom: 47/1794
  11729. }
  11730. },
  11731. side: {
  11732. height: math.unit(5.1, "feet"),
  11733. weight: math.unit(120, "lb"),
  11734. name: "Side",
  11735. image: {
  11736. source: "./media/characters/odyssey/side.svg",
  11737. extra: 1847/1619,
  11738. bottom: 47/1894
  11739. }
  11740. },
  11741. lounging: {
  11742. height: math.unit(1.464, "feet"),
  11743. weight: math.unit(120, "lb"),
  11744. name: "Lounging",
  11745. image: {
  11746. source: "./media/characters/odyssey/lounging.svg",
  11747. extra: 1235/837,
  11748. bottom: 551/1786
  11749. }
  11750. },
  11751. },
  11752. [
  11753. {
  11754. name: "Normal",
  11755. height: math.unit(5 + 4 / 12, "feet")
  11756. },
  11757. {
  11758. name: "Macro",
  11759. height: math.unit(1, "km")
  11760. },
  11761. {
  11762. name: "Megamacro",
  11763. height: math.unit(3000, "km")
  11764. },
  11765. {
  11766. name: "Gigamacro",
  11767. height: math.unit(1, "AU"),
  11768. default: true
  11769. },
  11770. {
  11771. name: "Omniversal",
  11772. height: math.unit(100e14, "lightyears")
  11773. },
  11774. ]
  11775. ))
  11776. characterMakers.push(() => makeCharacter(
  11777. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11778. {
  11779. front: {
  11780. height: math.unit(5 + 10/12, "feet"),
  11781. name: "Front",
  11782. image: {
  11783. source: "./media/characters/mekuto/front.svg",
  11784. extra: 875/835,
  11785. bottom: 46/921
  11786. }
  11787. },
  11788. },
  11789. [
  11790. {
  11791. name: "Minimicro",
  11792. height: math.unit(0.2, "inches")
  11793. },
  11794. {
  11795. name: "Micro",
  11796. height: math.unit(1.5, "inches")
  11797. },
  11798. {
  11799. name: "Normal",
  11800. height: math.unit(5 + 10 / 12, "feet"),
  11801. default: true
  11802. },
  11803. {
  11804. name: "Minimacro",
  11805. height: math.unit(17 + 9 / 12, "feet")
  11806. },
  11807. {
  11808. name: "Macro",
  11809. height: math.unit(177.5, "feet")
  11810. },
  11811. {
  11812. name: "Megamacro",
  11813. height: math.unit(152, "miles")
  11814. },
  11815. ]
  11816. ))
  11817. characterMakers.push(() => makeCharacter(
  11818. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11819. {
  11820. front: {
  11821. height: math.unit(6.5, "inches"),
  11822. weight: math.unit(13, "oz"),
  11823. name: "Front",
  11824. image: {
  11825. source: "./media/characters/dafydd-tomos/front.svg",
  11826. extra: 2990 / 2603,
  11827. bottom: 0.03
  11828. }
  11829. },
  11830. },
  11831. [
  11832. {
  11833. name: "Micro",
  11834. height: math.unit(6.5, "inches"),
  11835. default: true
  11836. },
  11837. ]
  11838. ))
  11839. characterMakers.push(() => makeCharacter(
  11840. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11841. {
  11842. front: {
  11843. height: math.unit(6, "feet"),
  11844. weight: math.unit(150, "lb"),
  11845. name: "Front",
  11846. image: {
  11847. source: "./media/characters/splinter/front.svg",
  11848. extra: 2990 / 2882,
  11849. bottom: 0.04
  11850. }
  11851. },
  11852. back: {
  11853. height: math.unit(6, "feet"),
  11854. weight: math.unit(150, "lb"),
  11855. name: "Back",
  11856. image: {
  11857. source: "./media/characters/splinter/back.svg",
  11858. extra: 2990 / 2882,
  11859. bottom: 0.04
  11860. }
  11861. },
  11862. },
  11863. [
  11864. {
  11865. name: "Normal",
  11866. height: math.unit(6, "feet")
  11867. },
  11868. {
  11869. name: "Macro",
  11870. height: math.unit(230, "meters"),
  11871. default: true
  11872. },
  11873. ]
  11874. ))
  11875. characterMakers.push(() => makeCharacter(
  11876. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11877. {
  11878. front: {
  11879. height: math.unit(4 + 10 / 12, "feet"),
  11880. weight: math.unit(480, "lb"),
  11881. name: "Front",
  11882. image: {
  11883. source: "./media/characters/snow-gabumon/front.svg",
  11884. extra: 1140 / 963,
  11885. bottom: 0.058
  11886. }
  11887. },
  11888. back: {
  11889. height: math.unit(4 + 10 / 12, "feet"),
  11890. weight: math.unit(480, "lb"),
  11891. name: "Back",
  11892. image: {
  11893. source: "./media/characters/snow-gabumon/back.svg",
  11894. extra: 1115 / 962,
  11895. bottom: 0.041
  11896. }
  11897. },
  11898. frontUndresed: {
  11899. height: math.unit(4 + 10 / 12, "feet"),
  11900. weight: math.unit(480, "lb"),
  11901. name: "Front (Undressed)",
  11902. image: {
  11903. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11904. extra: 1061 / 960,
  11905. bottom: 0.045
  11906. }
  11907. },
  11908. },
  11909. [
  11910. {
  11911. name: "Micro",
  11912. height: math.unit(1, "inch")
  11913. },
  11914. {
  11915. name: "Normal",
  11916. height: math.unit(4 + 10 / 12, "feet"),
  11917. default: true
  11918. },
  11919. {
  11920. name: "Macro",
  11921. height: math.unit(200, "feet")
  11922. },
  11923. {
  11924. name: "Megamacro",
  11925. height: math.unit(120, "miles")
  11926. },
  11927. {
  11928. name: "Gigamacro",
  11929. height: math.unit(9800, "miles")
  11930. },
  11931. ]
  11932. ))
  11933. characterMakers.push(() => makeCharacter(
  11934. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11935. {
  11936. front: {
  11937. height: math.unit(1.7, "meters"),
  11938. weight: math.unit(140, "lb"),
  11939. name: "Front",
  11940. image: {
  11941. source: "./media/characters/moody/front.svg",
  11942. extra: 3226 / 3007,
  11943. bottom: 0.087
  11944. }
  11945. },
  11946. },
  11947. [
  11948. {
  11949. name: "Micro",
  11950. height: math.unit(1, "mm")
  11951. },
  11952. {
  11953. name: "Normal",
  11954. height: math.unit(1.7, "meters"),
  11955. default: true
  11956. },
  11957. {
  11958. name: "Macro",
  11959. height: math.unit(80, "meters")
  11960. },
  11961. {
  11962. name: "Macro+",
  11963. height: math.unit(500, "meters")
  11964. },
  11965. ]
  11966. ))
  11967. characterMakers.push(() => makeCharacter(
  11968. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11969. {
  11970. front: {
  11971. height: math.unit(6, "feet"),
  11972. weight: math.unit(150, "lb"),
  11973. name: "Front",
  11974. image: {
  11975. source: "./media/characters/zyas/front.svg",
  11976. extra: 1180 / 1120,
  11977. bottom: 0.045
  11978. }
  11979. },
  11980. },
  11981. [
  11982. {
  11983. name: "Normal",
  11984. height: math.unit(10, "feet"),
  11985. default: true
  11986. },
  11987. {
  11988. name: "Macro",
  11989. height: math.unit(500, "feet")
  11990. },
  11991. {
  11992. name: "Megamacro",
  11993. height: math.unit(5, "miles")
  11994. },
  11995. {
  11996. name: "Teramacro",
  11997. height: math.unit(150000, "miles")
  11998. },
  11999. ]
  12000. ))
  12001. characterMakers.push(() => makeCharacter(
  12002. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  12003. {
  12004. front: {
  12005. height: math.unit(6, "feet"),
  12006. weight: math.unit(150, "lb"),
  12007. name: "Front",
  12008. image: {
  12009. source: "./media/characters/cuon/front.svg",
  12010. extra: 1390 / 1320,
  12011. bottom: 0.008
  12012. }
  12013. },
  12014. },
  12015. [
  12016. {
  12017. name: "Micro",
  12018. height: math.unit(3, "inches")
  12019. },
  12020. {
  12021. name: "Normal",
  12022. height: math.unit(18 + 9 / 12, "feet"),
  12023. default: true
  12024. },
  12025. {
  12026. name: "Macro",
  12027. height: math.unit(360, "feet")
  12028. },
  12029. {
  12030. name: "Megamacro",
  12031. height: math.unit(360, "miles")
  12032. },
  12033. ]
  12034. ))
  12035. characterMakers.push(() => makeCharacter(
  12036. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  12037. {
  12038. front: {
  12039. height: math.unit(2.4, "meters"),
  12040. weight: math.unit(70, "kg"),
  12041. name: "Front",
  12042. image: {
  12043. source: "./media/characters/nyanuxk/front.svg",
  12044. extra: 1172 / 1084,
  12045. bottom: 0.065
  12046. }
  12047. },
  12048. side: {
  12049. height: math.unit(2.4, "meters"),
  12050. weight: math.unit(70, "kg"),
  12051. name: "Side",
  12052. image: {
  12053. source: "./media/characters/nyanuxk/side.svg",
  12054. extra: 1190 / 1132,
  12055. bottom: 0.007
  12056. }
  12057. },
  12058. back: {
  12059. height: math.unit(2.4, "meters"),
  12060. weight: math.unit(70, "kg"),
  12061. name: "Back",
  12062. image: {
  12063. source: "./media/characters/nyanuxk/back.svg",
  12064. extra: 1200 / 1141,
  12065. bottom: 0.015
  12066. }
  12067. },
  12068. foot: {
  12069. height: math.unit(0.52, "meters"),
  12070. name: "Foot",
  12071. image: {
  12072. source: "./media/characters/nyanuxk/foot.svg"
  12073. }
  12074. },
  12075. },
  12076. [
  12077. {
  12078. name: "Micro",
  12079. height: math.unit(2, "cm")
  12080. },
  12081. {
  12082. name: "Normal",
  12083. height: math.unit(2.4, "meters"),
  12084. default: true
  12085. },
  12086. {
  12087. name: "Smaller Macro",
  12088. height: math.unit(120, "meters")
  12089. },
  12090. {
  12091. name: "Bigger Macro",
  12092. height: math.unit(1.2, "km")
  12093. },
  12094. {
  12095. name: "Megamacro",
  12096. height: math.unit(15, "kilometers")
  12097. },
  12098. {
  12099. name: "Gigamacro",
  12100. height: math.unit(2000, "km")
  12101. },
  12102. {
  12103. name: "Teramacro",
  12104. height: math.unit(500000, "km")
  12105. },
  12106. ]
  12107. ))
  12108. characterMakers.push(() => makeCharacter(
  12109. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  12110. {
  12111. side: {
  12112. height: math.unit(6, "feet"),
  12113. name: "Side",
  12114. image: {
  12115. source: "./media/characters/ailbhe/side.svg",
  12116. extra: 757 / 464,
  12117. bottom: 0.041
  12118. }
  12119. },
  12120. },
  12121. [
  12122. {
  12123. name: "Normal",
  12124. height: math.unit(1.07, "meters"),
  12125. default: true
  12126. },
  12127. ]
  12128. ))
  12129. characterMakers.push(() => makeCharacter(
  12130. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  12131. {
  12132. front: {
  12133. height: math.unit(6, "feet"),
  12134. weight: math.unit(120, "kg"),
  12135. name: "Front",
  12136. image: {
  12137. source: "./media/characters/zevulfius/front.svg",
  12138. extra: 965 / 903
  12139. }
  12140. },
  12141. side: {
  12142. height: math.unit(6, "feet"),
  12143. weight: math.unit(120, "kg"),
  12144. name: "Side",
  12145. image: {
  12146. source: "./media/characters/zevulfius/side.svg",
  12147. extra: 939 / 900
  12148. }
  12149. },
  12150. back: {
  12151. height: math.unit(6, "feet"),
  12152. weight: math.unit(120, "kg"),
  12153. name: "Back",
  12154. image: {
  12155. source: "./media/characters/zevulfius/back.svg",
  12156. extra: 918 / 854,
  12157. bottom: 0.005
  12158. }
  12159. },
  12160. foot: {
  12161. height: math.unit(6 / 3.72, "feet"),
  12162. name: "Foot",
  12163. image: {
  12164. source: "./media/characters/zevulfius/foot.svg"
  12165. }
  12166. },
  12167. },
  12168. [
  12169. {
  12170. name: "Macro",
  12171. height: math.unit(750, "meters")
  12172. },
  12173. {
  12174. name: "Megamacro",
  12175. height: math.unit(20, "km"),
  12176. default: true
  12177. },
  12178. {
  12179. name: "Gigamacro",
  12180. height: math.unit(2000, "km")
  12181. },
  12182. {
  12183. name: "Teramacro",
  12184. height: math.unit(250000, "km")
  12185. },
  12186. ]
  12187. ))
  12188. characterMakers.push(() => makeCharacter(
  12189. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  12190. {
  12191. front: {
  12192. height: math.unit(100, "feet"),
  12193. weight: math.unit(350, "kg"),
  12194. name: "Front",
  12195. image: {
  12196. source: "./media/characters/rikes/front.svg",
  12197. extra: 1565 / 1483,
  12198. bottom: 0.017
  12199. }
  12200. },
  12201. },
  12202. [
  12203. {
  12204. name: "Macro",
  12205. height: math.unit(100, "feet"),
  12206. default: true
  12207. },
  12208. ]
  12209. ))
  12210. characterMakers.push(() => makeCharacter(
  12211. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  12212. {
  12213. front: {
  12214. height: math.unit(8, "feet"),
  12215. weight: math.unit(356, "lb"),
  12216. name: "Front",
  12217. image: {
  12218. source: "./media/characters/adam-silver-mane/front.svg",
  12219. extra: 1036/937,
  12220. bottom: 63/1099
  12221. }
  12222. },
  12223. side: {
  12224. height: math.unit(8, "feet"),
  12225. weight: math.unit(356, "lb"),
  12226. name: "Side",
  12227. image: {
  12228. source: "./media/characters/adam-silver-mane/side.svg",
  12229. extra: 997/901,
  12230. bottom: 59/1056
  12231. }
  12232. },
  12233. frontNsfw: {
  12234. height: math.unit(8, "feet"),
  12235. weight: math.unit(356, "lb"),
  12236. name: "Front (NSFW)",
  12237. image: {
  12238. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  12239. extra: 1036/937,
  12240. bottom: 63/1099
  12241. }
  12242. },
  12243. sideNsfw: {
  12244. height: math.unit(8, "feet"),
  12245. weight: math.unit(356, "lb"),
  12246. name: "Side (NSFW)",
  12247. image: {
  12248. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  12249. extra: 997/901,
  12250. bottom: 59/1056
  12251. }
  12252. },
  12253. dick: {
  12254. height: math.unit(2.1, "feet"),
  12255. name: "Dick",
  12256. image: {
  12257. source: "./media/characters/adam-silver-mane/dick.svg"
  12258. }
  12259. },
  12260. taur: {
  12261. height: math.unit(16, "feet"),
  12262. weight: math.unit(1500, "kg"),
  12263. name: "Taur",
  12264. image: {
  12265. source: "./media/characters/adam-silver-mane/taur.svg",
  12266. extra: 1713 / 1571,
  12267. bottom: 0.01
  12268. }
  12269. },
  12270. },
  12271. [
  12272. {
  12273. name: "Normal",
  12274. height: math.unit(8, "feet")
  12275. },
  12276. {
  12277. name: "Minimacro",
  12278. height: math.unit(80, "feet")
  12279. },
  12280. {
  12281. name: "MDA",
  12282. height: math.unit(80, "meters")
  12283. },
  12284. {
  12285. name: "Macro",
  12286. height: math.unit(800, "feet"),
  12287. default: true
  12288. },
  12289. {
  12290. name: "Megamacro",
  12291. height: math.unit(8000, "feet")
  12292. },
  12293. {
  12294. name: "Gigamacro",
  12295. height: math.unit(800, "miles")
  12296. },
  12297. {
  12298. name: "Teramacro",
  12299. height: math.unit(80000, "miles")
  12300. },
  12301. {
  12302. name: "Celestial",
  12303. height: math.unit(8e6, "miles")
  12304. },
  12305. {
  12306. name: "Star Dragon",
  12307. height: math.unit(800000, "parsecs")
  12308. },
  12309. {
  12310. name: "Godly",
  12311. height: math.unit(800, "teraparsecs")
  12312. },
  12313. ]
  12314. ))
  12315. characterMakers.push(() => makeCharacter(
  12316. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  12317. {
  12318. front: {
  12319. height: math.unit(6, "feet"),
  12320. weight: math.unit(150, "lb"),
  12321. name: "Front",
  12322. image: {
  12323. source: "./media/characters/ky'owin/front.svg",
  12324. extra: 3862/3053,
  12325. bottom: 74/3936
  12326. }
  12327. },
  12328. },
  12329. [
  12330. {
  12331. name: "Normal",
  12332. height: math.unit(6 + 8 / 12, "feet")
  12333. },
  12334. {
  12335. name: "Large",
  12336. height: math.unit(68, "feet")
  12337. },
  12338. {
  12339. name: "Macro",
  12340. height: math.unit(132, "feet")
  12341. },
  12342. {
  12343. name: "Macro+",
  12344. height: math.unit(340, "feet")
  12345. },
  12346. {
  12347. name: "Macro++",
  12348. height: math.unit(680, "feet"),
  12349. default: true
  12350. },
  12351. {
  12352. name: "Megamacro",
  12353. height: math.unit(1, "mile")
  12354. },
  12355. {
  12356. name: "Megamacro+",
  12357. height: math.unit(10, "miles")
  12358. },
  12359. ]
  12360. ))
  12361. characterMakers.push(() => makeCharacter(
  12362. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12363. {
  12364. front: {
  12365. height: math.unit(4, "feet"),
  12366. weight: math.unit(50, "lb"),
  12367. name: "Front",
  12368. image: {
  12369. source: "./media/characters/mal/front.svg",
  12370. extra: 785 / 724,
  12371. bottom: 0.07
  12372. }
  12373. },
  12374. },
  12375. [
  12376. {
  12377. name: "Micro",
  12378. height: math.unit(4, "inches")
  12379. },
  12380. {
  12381. name: "Normal",
  12382. height: math.unit(4, "feet"),
  12383. default: true
  12384. },
  12385. {
  12386. name: "Macro",
  12387. height: math.unit(200, "feet")
  12388. },
  12389. ]
  12390. ))
  12391. characterMakers.push(() => makeCharacter(
  12392. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12393. {
  12394. front: {
  12395. height: math.unit(6, "feet"),
  12396. weight: math.unit(150, "lb"),
  12397. name: "Front",
  12398. image: {
  12399. source: "./media/characters/jordan-deware/front.svg",
  12400. extra: 1191 / 1012
  12401. }
  12402. },
  12403. },
  12404. [
  12405. {
  12406. name: "Nano",
  12407. height: math.unit(0.01, "mm")
  12408. },
  12409. {
  12410. name: "Minimicro",
  12411. height: math.unit(1, "mm")
  12412. },
  12413. {
  12414. name: "Micro",
  12415. height: math.unit(0.5, "inches")
  12416. },
  12417. {
  12418. name: "Normal",
  12419. height: math.unit(4, "feet"),
  12420. default: true
  12421. },
  12422. {
  12423. name: "Minimacro",
  12424. height: math.unit(40, "meters")
  12425. },
  12426. {
  12427. name: "Small Macro",
  12428. height: math.unit(400, "meters")
  12429. },
  12430. {
  12431. name: "Macro",
  12432. height: math.unit(4, "miles")
  12433. },
  12434. {
  12435. name: "Megamacro",
  12436. height: math.unit(40, "miles")
  12437. },
  12438. {
  12439. name: "Megamacro+",
  12440. height: math.unit(400, "miles")
  12441. },
  12442. {
  12443. name: "Gigamacro",
  12444. height: math.unit(400000, "miles")
  12445. },
  12446. ]
  12447. ))
  12448. characterMakers.push(() => makeCharacter(
  12449. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12450. {
  12451. front: {
  12452. height: math.unit(15, "feet"),
  12453. weight: math.unit(3000, "kg"),
  12454. preyCapacity: math.unit(450, "people"),
  12455. name: "Front",
  12456. image: {
  12457. source: "./media/characters/kimiko/front.svg",
  12458. extra: 875/832,
  12459. bottom: 36/911
  12460. },
  12461. extraAttributes: {
  12462. "pawSize": {
  12463. name: "Paw Size",
  12464. power: 1,
  12465. type: "length",
  12466. base: math.unit(0.9, "meters")
  12467. },
  12468. }
  12469. },
  12470. side: {
  12471. height: math.unit(15, "feet"),
  12472. weight: math.unit(3000, "kg"),
  12473. preyCapacity: math.unit(400, "people"),
  12474. name: "Side",
  12475. image: {
  12476. source: "./media/characters/kimiko/side.svg",
  12477. extra: 448/270,
  12478. bottom: 7/455
  12479. },
  12480. extraAttributes: {
  12481. "pawSize": {
  12482. name: "Paw Size",
  12483. power: 1,
  12484. type: "length",
  12485. base: math.unit(0.9, "meters")
  12486. },
  12487. }
  12488. },
  12489. maw: {
  12490. height: math.unit(0.81, "feet"),
  12491. name: "Maw",
  12492. image: {
  12493. source: "./media/characters/kimiko/maw.svg"
  12494. }
  12495. },
  12496. },
  12497. [
  12498. {
  12499. name: "Normal",
  12500. height: math.unit(15, "feet"),
  12501. default: true
  12502. },
  12503. {
  12504. name: "Macro",
  12505. height: math.unit(220, "feet")
  12506. },
  12507. {
  12508. name: "Macro+",
  12509. height: math.unit(1450, "feet")
  12510. },
  12511. {
  12512. name: "Megamacro",
  12513. height: math.unit(11500, "feet")
  12514. },
  12515. {
  12516. name: "Gigamacro",
  12517. height: math.unit(9500, "miles")
  12518. },
  12519. {
  12520. name: "Teramacro",
  12521. height: math.unit(2208005005, "miles")
  12522. },
  12523. {
  12524. name: "Examacro",
  12525. height: math.unit(2750, "parsecs")
  12526. },
  12527. {
  12528. name: "Zettamacro",
  12529. height: math.unit(101500, "parsecs")
  12530. },
  12531. ]
  12532. ))
  12533. characterMakers.push(() => makeCharacter(
  12534. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12535. {
  12536. front: {
  12537. height: math.unit(6, "feet"),
  12538. weight: math.unit(70, "kg"),
  12539. name: "Front",
  12540. image: {
  12541. source: "./media/characters/andrew-sleepy/front.svg"
  12542. }
  12543. },
  12544. side: {
  12545. height: math.unit(6, "feet"),
  12546. weight: math.unit(70, "kg"),
  12547. name: "Side",
  12548. image: {
  12549. source: "./media/characters/andrew-sleepy/side.svg"
  12550. }
  12551. },
  12552. },
  12553. [
  12554. {
  12555. name: "Micro",
  12556. height: math.unit(1, "mm"),
  12557. default: true
  12558. },
  12559. ]
  12560. ))
  12561. characterMakers.push(() => makeCharacter(
  12562. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12563. {
  12564. front: {
  12565. height: math.unit(6, "feet"),
  12566. weight: math.unit(150, "lb"),
  12567. name: "Front",
  12568. image: {
  12569. source: "./media/characters/judio/front.svg",
  12570. extra: 1258 / 1110
  12571. }
  12572. },
  12573. },
  12574. [
  12575. {
  12576. name: "Normal",
  12577. height: math.unit(5 + 6 / 12, "feet")
  12578. },
  12579. {
  12580. name: "Macro",
  12581. height: math.unit(1000, "feet"),
  12582. default: true
  12583. },
  12584. {
  12585. name: "Megamacro",
  12586. height: math.unit(10, "miles")
  12587. },
  12588. ]
  12589. ))
  12590. characterMakers.push(() => makeCharacter(
  12591. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12592. {
  12593. frontDressed: {
  12594. height: math.unit(6, "feet"),
  12595. weight: math.unit(68, "kg"),
  12596. name: "Front (Dressed)",
  12597. image: {
  12598. source: "./media/characters/nomaxice/front-dressed.svg",
  12599. extra: 1137/824,
  12600. bottom: 74/1211
  12601. }
  12602. },
  12603. frontShorts: {
  12604. height: math.unit(6, "feet"),
  12605. weight: math.unit(68, "kg"),
  12606. name: "Front (Shorts)",
  12607. image: {
  12608. source: "./media/characters/nomaxice/front-shorts.svg",
  12609. extra: 1137/824,
  12610. bottom: 74/1211
  12611. }
  12612. },
  12613. back: {
  12614. height: math.unit(6, "feet"),
  12615. weight: math.unit(68, "kg"),
  12616. name: "Back",
  12617. image: {
  12618. source: "./media/characters/nomaxice/back.svg",
  12619. extra: 822/786,
  12620. bottom: 39/861
  12621. }
  12622. },
  12623. hand: {
  12624. height: math.unit(0.565, "feet"),
  12625. name: "Hand",
  12626. image: {
  12627. source: "./media/characters/nomaxice/hand.svg"
  12628. }
  12629. },
  12630. foot: {
  12631. height: math.unit(1, "feet"),
  12632. name: "Foot",
  12633. image: {
  12634. source: "./media/characters/nomaxice/foot.svg"
  12635. }
  12636. },
  12637. },
  12638. [
  12639. {
  12640. name: "Micro",
  12641. height: math.unit(8, "cm")
  12642. },
  12643. {
  12644. name: "Norm",
  12645. height: math.unit(1.82, "m")
  12646. },
  12647. {
  12648. name: "Norm+",
  12649. height: math.unit(8.8, "feet"),
  12650. default: true
  12651. },
  12652. {
  12653. name: "Big",
  12654. height: math.unit(8, "meters")
  12655. },
  12656. {
  12657. name: "Macro",
  12658. height: math.unit(18, "meters")
  12659. },
  12660. {
  12661. name: "Macro+",
  12662. height: math.unit(88, "meters")
  12663. },
  12664. ]
  12665. ))
  12666. characterMakers.push(() => makeCharacter(
  12667. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12668. {
  12669. front: {
  12670. height: math.unit(12, "feet"),
  12671. weight: math.unit(1.5, "tons"),
  12672. name: "Front",
  12673. image: {
  12674. source: "./media/characters/dydros/front.svg",
  12675. extra: 863 / 800,
  12676. bottom: 0.015
  12677. }
  12678. },
  12679. back: {
  12680. height: math.unit(12, "feet"),
  12681. weight: math.unit(1.5, "tons"),
  12682. name: "Back",
  12683. image: {
  12684. source: "./media/characters/dydros/back.svg",
  12685. extra: 900 / 843,
  12686. bottom: 0.005
  12687. }
  12688. },
  12689. },
  12690. [
  12691. {
  12692. name: "Normal",
  12693. height: math.unit(12, "feet"),
  12694. default: true
  12695. },
  12696. ]
  12697. ))
  12698. characterMakers.push(() => makeCharacter(
  12699. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12700. {
  12701. front: {
  12702. height: math.unit(6, "feet"),
  12703. weight: math.unit(100, "kg"),
  12704. name: "Front",
  12705. image: {
  12706. source: "./media/characters/riggi/front.svg",
  12707. extra: 5787 / 5303
  12708. }
  12709. },
  12710. hyper: {
  12711. height: math.unit(6 * 5 / 3, "feet"),
  12712. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12713. name: "Hyper",
  12714. image: {
  12715. source: "./media/characters/riggi/hyper.svg",
  12716. extra: 3595 / 3485
  12717. }
  12718. },
  12719. },
  12720. [
  12721. {
  12722. name: "Small Macro",
  12723. height: math.unit(50, "feet")
  12724. },
  12725. {
  12726. name: "Default",
  12727. height: math.unit(200, "feet"),
  12728. default: true
  12729. },
  12730. {
  12731. name: "Loom",
  12732. height: math.unit(10000, "feet")
  12733. },
  12734. {
  12735. name: "Cruising Altitude",
  12736. height: math.unit(30000, "feet")
  12737. },
  12738. {
  12739. name: "Megamacro",
  12740. height: math.unit(100, "miles")
  12741. },
  12742. {
  12743. name: "Continent Sized",
  12744. height: math.unit(2800, "miles")
  12745. },
  12746. {
  12747. name: "Earth Sized",
  12748. height: math.unit(8000, "miles")
  12749. },
  12750. ]
  12751. ))
  12752. characterMakers.push(() => makeCharacter(
  12753. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12754. {
  12755. front: {
  12756. height: math.unit(6, "feet"),
  12757. weight: math.unit(250, "lb"),
  12758. name: "Front",
  12759. image: {
  12760. source: "./media/characters/alexi/front.svg",
  12761. extra: 3483 / 3291,
  12762. bottom: 0.04
  12763. }
  12764. },
  12765. back: {
  12766. height: math.unit(6, "feet"),
  12767. weight: math.unit(250, "lb"),
  12768. name: "Back",
  12769. image: {
  12770. source: "./media/characters/alexi/back.svg",
  12771. extra: 3533 / 3356,
  12772. bottom: 0.021
  12773. }
  12774. },
  12775. frontTransforming: {
  12776. height: math.unit(8.58, "feet"),
  12777. weight: math.unit(1300, "lb"),
  12778. name: "Transforming",
  12779. image: {
  12780. source: "./media/characters/alexi/front-transforming.svg",
  12781. extra: 437 / 409,
  12782. bottom: 19 / 458.66
  12783. }
  12784. },
  12785. frontTransformed: {
  12786. height: math.unit(12.5, "feet"),
  12787. weight: math.unit(4000, "lb"),
  12788. name: "Transformed",
  12789. image: {
  12790. source: "./media/characters/alexi/front-transformed.svg",
  12791. extra: 639 / 614,
  12792. bottom: 30.55 / 671
  12793. }
  12794. },
  12795. },
  12796. [
  12797. {
  12798. name: "Normal",
  12799. height: math.unit(14, "feet"),
  12800. default: true
  12801. },
  12802. {
  12803. name: "Minimacro",
  12804. height: math.unit(30, "meters")
  12805. },
  12806. {
  12807. name: "Macro",
  12808. height: math.unit(500, "meters")
  12809. },
  12810. {
  12811. name: "Megamacro",
  12812. height: math.unit(9000, "km")
  12813. },
  12814. {
  12815. name: "Teramacro",
  12816. height: math.unit(384000, "km")
  12817. },
  12818. ]
  12819. ))
  12820. characterMakers.push(() => makeCharacter(
  12821. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12822. {
  12823. front: {
  12824. height: math.unit(6, "feet"),
  12825. weight: math.unit(150, "lb"),
  12826. name: "Front",
  12827. image: {
  12828. source: "./media/characters/kayroo/front.svg",
  12829. extra: 1153 / 1038,
  12830. bottom: 0.06
  12831. }
  12832. },
  12833. foot: {
  12834. height: math.unit(6, "feet"),
  12835. weight: math.unit(150, "lb"),
  12836. name: "Foot",
  12837. image: {
  12838. source: "./media/characters/kayroo/foot.svg"
  12839. }
  12840. },
  12841. },
  12842. [
  12843. {
  12844. name: "Normal",
  12845. height: math.unit(8, "feet"),
  12846. default: true
  12847. },
  12848. {
  12849. name: "Minimacro",
  12850. height: math.unit(250, "feet")
  12851. },
  12852. {
  12853. name: "Macro",
  12854. height: math.unit(2800, "feet")
  12855. },
  12856. {
  12857. name: "Megamacro",
  12858. height: math.unit(5200, "feet")
  12859. },
  12860. {
  12861. name: "Gigamacro",
  12862. height: math.unit(27000, "feet")
  12863. },
  12864. {
  12865. name: "Omega",
  12866. height: math.unit(45000, "feet")
  12867. },
  12868. ]
  12869. ))
  12870. characterMakers.push(() => makeCharacter(
  12871. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12872. {
  12873. front: {
  12874. height: math.unit(18, "feet"),
  12875. weight: math.unit(5800, "lb"),
  12876. name: "Front",
  12877. image: {
  12878. source: "./media/characters/rhys/front.svg",
  12879. extra: 3386 / 3090,
  12880. bottom: 0.07
  12881. }
  12882. },
  12883. },
  12884. [
  12885. {
  12886. name: "Normal",
  12887. height: math.unit(18, "feet"),
  12888. default: true
  12889. },
  12890. {
  12891. name: "Working Size",
  12892. height: math.unit(200, "feet")
  12893. },
  12894. {
  12895. name: "Demolition Size",
  12896. height: math.unit(2000, "feet")
  12897. },
  12898. {
  12899. name: "Maximum Licensed Size",
  12900. height: math.unit(5, "miles")
  12901. },
  12902. {
  12903. name: "Maximum Observed Size",
  12904. height: math.unit(10, "yottameters")
  12905. },
  12906. ]
  12907. ))
  12908. characterMakers.push(() => makeCharacter(
  12909. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12910. {
  12911. front: {
  12912. height: math.unit(6, "feet"),
  12913. weight: math.unit(250, "lb"),
  12914. name: "Front",
  12915. image: {
  12916. source: "./media/characters/toto/front.svg",
  12917. extra: 527 / 479,
  12918. bottom: 0.05
  12919. }
  12920. },
  12921. },
  12922. [
  12923. {
  12924. name: "Micro",
  12925. height: math.unit(3, "feet")
  12926. },
  12927. {
  12928. name: "Normal",
  12929. height: math.unit(10, "feet")
  12930. },
  12931. {
  12932. name: "Macro",
  12933. height: math.unit(150, "feet"),
  12934. default: true
  12935. },
  12936. {
  12937. name: "Megamacro",
  12938. height: math.unit(1200, "feet")
  12939. },
  12940. ]
  12941. ))
  12942. characterMakers.push(() => makeCharacter(
  12943. { name: "King", species: ["lion"], tags: ["anthro"] },
  12944. {
  12945. back: {
  12946. height: math.unit(6, "feet"),
  12947. weight: math.unit(150, "lb"),
  12948. name: "Back",
  12949. image: {
  12950. source: "./media/characters/king/back.svg"
  12951. }
  12952. },
  12953. },
  12954. [
  12955. {
  12956. name: "Micro",
  12957. height: math.unit(2, "inches")
  12958. },
  12959. {
  12960. name: "Normal",
  12961. height: math.unit(8, "feet")
  12962. },
  12963. {
  12964. name: "Macro",
  12965. height: math.unit(200, "feet"),
  12966. default: true
  12967. },
  12968. {
  12969. name: "Megamacro",
  12970. height: math.unit(50, "miles")
  12971. },
  12972. ]
  12973. ))
  12974. characterMakers.push(() => makeCharacter(
  12975. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12976. {
  12977. front: {
  12978. height: math.unit(11, "feet"),
  12979. weight: math.unit(1400, "lb"),
  12980. name: "Front",
  12981. image: {
  12982. source: "./media/characters/cordite/front.svg",
  12983. extra: 1919/1827,
  12984. bottom: 40/1959
  12985. }
  12986. },
  12987. side: {
  12988. height: math.unit(11, "feet"),
  12989. weight: math.unit(1400, "lb"),
  12990. name: "Side",
  12991. image: {
  12992. source: "./media/characters/cordite/side.svg",
  12993. extra: 1908/1793,
  12994. bottom: 38/1946
  12995. }
  12996. },
  12997. back: {
  12998. height: math.unit(11, "feet"),
  12999. weight: math.unit(1400, "lb"),
  13000. name: "Back",
  13001. image: {
  13002. source: "./media/characters/cordite/back.svg",
  13003. extra: 1938/1837,
  13004. bottom: 10/1948
  13005. }
  13006. },
  13007. feral: {
  13008. height: math.unit(2, "feet"),
  13009. weight: math.unit(90, "lb"),
  13010. name: "Feral",
  13011. image: {
  13012. source: "./media/characters/cordite/feral.svg",
  13013. extra: 1260 / 755,
  13014. bottom: 0.05
  13015. }
  13016. },
  13017. },
  13018. [
  13019. {
  13020. name: "Normal",
  13021. height: math.unit(11, "feet"),
  13022. default: true
  13023. },
  13024. ]
  13025. ))
  13026. characterMakers.push(() => makeCharacter(
  13027. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  13028. {
  13029. front: {
  13030. height: math.unit(6, "feet"),
  13031. weight: math.unit(150, "lb"),
  13032. name: "Front",
  13033. image: {
  13034. source: "./media/characters/pianostrong/front.svg",
  13035. extra: 6577 / 6254,
  13036. bottom: 0.02
  13037. }
  13038. },
  13039. side: {
  13040. height: math.unit(6, "feet"),
  13041. weight: math.unit(150, "lb"),
  13042. name: "Side",
  13043. image: {
  13044. source: "./media/characters/pianostrong/side.svg",
  13045. extra: 6106 / 5730
  13046. }
  13047. },
  13048. back: {
  13049. height: math.unit(6, "feet"),
  13050. weight: math.unit(150, "lb"),
  13051. name: "Back",
  13052. image: {
  13053. source: "./media/characters/pianostrong/back.svg",
  13054. extra: 6085 / 5733,
  13055. bottom: 0.01
  13056. }
  13057. },
  13058. },
  13059. [
  13060. {
  13061. name: "Macro",
  13062. height: math.unit(100, "feet")
  13063. },
  13064. {
  13065. name: "Macro+",
  13066. height: math.unit(300, "feet"),
  13067. default: true
  13068. },
  13069. {
  13070. name: "Macro++",
  13071. height: math.unit(1000, "feet")
  13072. },
  13073. ]
  13074. ))
  13075. characterMakers.push(() => makeCharacter(
  13076. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  13077. {
  13078. front: {
  13079. height: math.unit(6, "feet"),
  13080. weight: math.unit(150, "lb"),
  13081. name: "Front",
  13082. image: {
  13083. source: "./media/characters/kona/front.svg",
  13084. extra: 2960 / 2629,
  13085. bottom: 0.005
  13086. }
  13087. },
  13088. },
  13089. [
  13090. {
  13091. name: "Normal",
  13092. height: math.unit(11 + 8 / 12, "feet")
  13093. },
  13094. {
  13095. name: "Macro",
  13096. height: math.unit(850, "feet"),
  13097. default: true
  13098. },
  13099. {
  13100. name: "Macro+",
  13101. height: math.unit(1.5, "km"),
  13102. default: true
  13103. },
  13104. {
  13105. name: "Megamacro",
  13106. height: math.unit(80, "miles")
  13107. },
  13108. {
  13109. name: "Gigamacro",
  13110. height: math.unit(3500, "miles")
  13111. },
  13112. ]
  13113. ))
  13114. characterMakers.push(() => makeCharacter(
  13115. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  13116. {
  13117. side: {
  13118. height: math.unit(1.9, "meters"),
  13119. weight: math.unit(326, "kg"),
  13120. name: "Side",
  13121. image: {
  13122. source: "./media/characters/levi/side.svg",
  13123. extra: 1704 / 1334,
  13124. bottom: 0.02
  13125. }
  13126. },
  13127. },
  13128. [
  13129. {
  13130. name: "Normal",
  13131. height: math.unit(1.9, "meters"),
  13132. default: true
  13133. },
  13134. {
  13135. name: "Macro",
  13136. height: math.unit(20, "meters")
  13137. },
  13138. {
  13139. name: "Macro+",
  13140. height: math.unit(200, "meters")
  13141. },
  13142. {
  13143. name: "Megamacro",
  13144. height: math.unit(2, "km")
  13145. },
  13146. {
  13147. name: "Megamacro+",
  13148. height: math.unit(20, "km")
  13149. },
  13150. {
  13151. name: "Gigamacro",
  13152. height: math.unit(2500, "km")
  13153. },
  13154. {
  13155. name: "Gigamacro+",
  13156. height: math.unit(120000, "km")
  13157. },
  13158. {
  13159. name: "Teramacro",
  13160. height: math.unit(7.77e6, "km")
  13161. },
  13162. ]
  13163. ))
  13164. characterMakers.push(() => makeCharacter(
  13165. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  13166. {
  13167. front: {
  13168. height: math.unit(6 + 4/12, "feet"),
  13169. weight: math.unit(190, "lb"),
  13170. name: "Front",
  13171. image: {
  13172. source: "./media/characters/bmc/front.svg",
  13173. extra: 1626/1472,
  13174. bottom: 79/1705
  13175. }
  13176. },
  13177. back: {
  13178. height: math.unit(6 + 4/12, "feet"),
  13179. weight: math.unit(190, "lb"),
  13180. name: "Back",
  13181. image: {
  13182. source: "./media/characters/bmc/back.svg",
  13183. extra: 1640/1479,
  13184. bottom: 45/1685
  13185. }
  13186. },
  13187. frontArmor: {
  13188. height: math.unit(6 + 4/12, "feet"),
  13189. weight: math.unit(190, "lb"),
  13190. name: "Front (Armor)",
  13191. image: {
  13192. source: "./media/characters/bmc/front-armor.svg",
  13193. extra: 1538/1468,
  13194. bottom: 79/1617
  13195. }
  13196. },
  13197. },
  13198. [
  13199. {
  13200. name: "Human-sized",
  13201. height: math.unit(6 + 4 / 12, "feet")
  13202. },
  13203. {
  13204. name: "Interactive Size",
  13205. height: math.unit(25, "feet")
  13206. },
  13207. {
  13208. name: "Small",
  13209. height: math.unit(250, "feet")
  13210. },
  13211. {
  13212. name: "Normal",
  13213. height: math.unit(1250, "feet"),
  13214. default: true
  13215. },
  13216. {
  13217. name: "Good Day",
  13218. height: math.unit(88, "miles")
  13219. },
  13220. {
  13221. name: "Largest Measured Size",
  13222. height: math.unit(105.960, "galaxies")
  13223. },
  13224. ]
  13225. ))
  13226. characterMakers.push(() => makeCharacter(
  13227. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  13228. {
  13229. front: {
  13230. height: math.unit(20, "feet"),
  13231. weight: math.unit(2016, "kg"),
  13232. name: "Front",
  13233. image: {
  13234. source: "./media/characters/sven-the-kaiju/front.svg",
  13235. extra: 1277/1250,
  13236. bottom: 35/1312
  13237. }
  13238. },
  13239. mouth: {
  13240. height: math.unit(1.85, "feet"),
  13241. name: "Mouth",
  13242. image: {
  13243. source: "./media/characters/sven-the-kaiju/mouth.svg"
  13244. }
  13245. },
  13246. },
  13247. [
  13248. {
  13249. name: "Fairy",
  13250. height: math.unit(6, "inches")
  13251. },
  13252. {
  13253. name: "Normal",
  13254. height: math.unit(20, "feet"),
  13255. default: true
  13256. },
  13257. {
  13258. name: "Rampage",
  13259. height: math.unit(200, "feet")
  13260. },
  13261. {
  13262. name: "Archfey Forest Guardian",
  13263. height: math.unit(1, "mile")
  13264. },
  13265. ]
  13266. ))
  13267. characterMakers.push(() => makeCharacter(
  13268. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  13269. {
  13270. front: {
  13271. height: math.unit(4, "meters"),
  13272. weight: math.unit(2, "tons"),
  13273. name: "Front",
  13274. image: {
  13275. source: "./media/characters/marik/front.svg",
  13276. extra: 1057 / 1003,
  13277. bottom: 0.08
  13278. }
  13279. },
  13280. },
  13281. [
  13282. {
  13283. name: "Normal",
  13284. height: math.unit(4, "meters"),
  13285. default: true
  13286. },
  13287. {
  13288. name: "Macro",
  13289. height: math.unit(20, "meters")
  13290. },
  13291. {
  13292. name: "Megamacro",
  13293. height: math.unit(50, "km")
  13294. },
  13295. {
  13296. name: "Gigamacro",
  13297. height: math.unit(100, "km")
  13298. },
  13299. {
  13300. name: "Alpha Macro",
  13301. height: math.unit(7.88e7, "yottameters")
  13302. },
  13303. ]
  13304. ))
  13305. characterMakers.push(() => makeCharacter(
  13306. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  13307. {
  13308. front: {
  13309. height: math.unit(6, "feet"),
  13310. weight: math.unit(110, "lb"),
  13311. name: "Front",
  13312. image: {
  13313. source: "./media/characters/mel/front.svg",
  13314. extra: 736 / 617,
  13315. bottom: 0.017
  13316. }
  13317. },
  13318. },
  13319. [
  13320. {
  13321. name: "Pico",
  13322. height: math.unit(3, "pm")
  13323. },
  13324. {
  13325. name: "Nano",
  13326. height: math.unit(3, "nm")
  13327. },
  13328. {
  13329. name: "Micro",
  13330. height: math.unit(0.3, "mm"),
  13331. default: true
  13332. },
  13333. {
  13334. name: "Micro+",
  13335. height: math.unit(3, "mm")
  13336. },
  13337. {
  13338. name: "Normal",
  13339. height: math.unit(5 + 10.5 / 12, "feet")
  13340. },
  13341. ]
  13342. ))
  13343. characterMakers.push(() => makeCharacter(
  13344. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  13345. {
  13346. kaiju: {
  13347. height: math.unit(1.75, "meters"),
  13348. weight: math.unit(55, "kg"),
  13349. name: "Kaiju",
  13350. image: {
  13351. source: "./media/characters/lykonous/kaiju.svg",
  13352. extra: 1055 / 946,
  13353. bottom: 0.135
  13354. }
  13355. },
  13356. },
  13357. [
  13358. {
  13359. name: "Normal",
  13360. height: math.unit(2.5, "meters"),
  13361. default: true
  13362. },
  13363. {
  13364. name: "Kaiju Dragon",
  13365. height: math.unit(60, "meters")
  13366. },
  13367. {
  13368. name: "Mega Kaiju",
  13369. height: math.unit(120, "km")
  13370. },
  13371. {
  13372. name: "Giga Kaiju",
  13373. height: math.unit(200, "megameters")
  13374. },
  13375. {
  13376. name: "Terra Kaiju",
  13377. height: math.unit(400, "gigameters")
  13378. },
  13379. {
  13380. name: "Kaiju Dragon God",
  13381. height: math.unit(13000, "exaparsecs")
  13382. },
  13383. ]
  13384. ))
  13385. characterMakers.push(() => makeCharacter(
  13386. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  13387. {
  13388. front: {
  13389. height: math.unit(6, "feet"),
  13390. weight: math.unit(150, "lb"),
  13391. name: "Front",
  13392. image: {
  13393. source: "./media/characters/blü/front.svg",
  13394. extra: 1883 / 1564,
  13395. bottom: 0.031
  13396. }
  13397. },
  13398. },
  13399. [
  13400. {
  13401. name: "Normal",
  13402. height: math.unit(13, "feet"),
  13403. default: true
  13404. },
  13405. {
  13406. name: "Big Boi",
  13407. height: math.unit(150, "meters")
  13408. },
  13409. {
  13410. name: "Mini Stomper",
  13411. height: math.unit(300, "meters")
  13412. },
  13413. {
  13414. name: "Macro",
  13415. height: math.unit(1000, "meters")
  13416. },
  13417. {
  13418. name: "Megamacro",
  13419. height: math.unit(11000, "meters")
  13420. },
  13421. {
  13422. name: "Gigamacro",
  13423. height: math.unit(11000, "km")
  13424. },
  13425. {
  13426. name: "Teramacro",
  13427. height: math.unit(420000, "km")
  13428. },
  13429. {
  13430. name: "Examacro",
  13431. height: math.unit(120, "parsecs")
  13432. },
  13433. {
  13434. name: "God Tho",
  13435. height: math.unit(98000000000, "parsecs")
  13436. },
  13437. ]
  13438. ))
  13439. characterMakers.push(() => makeCharacter(
  13440. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13441. {
  13442. taurFront: {
  13443. height: math.unit(6, "feet"),
  13444. weight: math.unit(200, "lb"),
  13445. name: "Taur (Front)",
  13446. image: {
  13447. source: "./media/characters/scales/taur-front.svg",
  13448. extra: 1,
  13449. bottom: 0.05
  13450. }
  13451. },
  13452. taurBack: {
  13453. height: math.unit(6, "feet"),
  13454. weight: math.unit(200, "lb"),
  13455. name: "Taur (Back)",
  13456. image: {
  13457. source: "./media/characters/scales/taur-back.svg",
  13458. extra: 1,
  13459. bottom: 0.08
  13460. }
  13461. },
  13462. anthro: {
  13463. height: math.unit(6 * 7 / 12, "feet"),
  13464. weight: math.unit(100, "lb"),
  13465. name: "Anthro",
  13466. image: {
  13467. source: "./media/characters/scales/anthro.svg",
  13468. extra: 1,
  13469. bottom: 0.06
  13470. }
  13471. },
  13472. },
  13473. [
  13474. {
  13475. name: "Normal",
  13476. height: math.unit(12, "feet"),
  13477. default: true
  13478. },
  13479. ]
  13480. ))
  13481. characterMakers.push(() => makeCharacter(
  13482. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13483. {
  13484. front: {
  13485. height: math.unit(6, "feet"),
  13486. weight: math.unit(150, "lb"),
  13487. name: "Front",
  13488. image: {
  13489. source: "./media/characters/koragos/front.svg",
  13490. extra: 841 / 794,
  13491. bottom: 0.035
  13492. }
  13493. },
  13494. back: {
  13495. height: math.unit(6, "feet"),
  13496. weight: math.unit(150, "lb"),
  13497. name: "Back",
  13498. image: {
  13499. source: "./media/characters/koragos/back.svg",
  13500. extra: 841 / 810,
  13501. bottom: 0.022
  13502. }
  13503. },
  13504. },
  13505. [
  13506. {
  13507. name: "Normal",
  13508. height: math.unit(6 + 11 / 12, "feet"),
  13509. default: true
  13510. },
  13511. {
  13512. name: "Macro",
  13513. height: math.unit(490, "feet")
  13514. },
  13515. {
  13516. name: "Megamacro",
  13517. height: math.unit(10, "miles")
  13518. },
  13519. {
  13520. name: "Gigamacro",
  13521. height: math.unit(50, "miles")
  13522. },
  13523. ]
  13524. ))
  13525. characterMakers.push(() => makeCharacter(
  13526. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13527. {
  13528. front: {
  13529. height: math.unit(6, "feet"),
  13530. weight: math.unit(250, "lb"),
  13531. name: "Front",
  13532. image: {
  13533. source: "./media/characters/xylrem/front.svg",
  13534. extra: 3323 / 3050,
  13535. bottom: 0.065
  13536. }
  13537. },
  13538. },
  13539. [
  13540. {
  13541. name: "Micro",
  13542. height: math.unit(4, "feet")
  13543. },
  13544. {
  13545. name: "Normal",
  13546. height: math.unit(16, "feet"),
  13547. default: true
  13548. },
  13549. {
  13550. name: "Macro",
  13551. height: math.unit(2720, "feet")
  13552. },
  13553. {
  13554. name: "Megamacro",
  13555. height: math.unit(25000, "miles")
  13556. },
  13557. ]
  13558. ))
  13559. characterMakers.push(() => makeCharacter(
  13560. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13561. {
  13562. front: {
  13563. height: math.unit(8, "feet"),
  13564. weight: math.unit(250, "kg"),
  13565. name: "Front",
  13566. image: {
  13567. source: "./media/characters/ikideru/front.svg",
  13568. extra: 930 / 870,
  13569. bottom: 0.087
  13570. }
  13571. },
  13572. back: {
  13573. height: math.unit(8, "feet"),
  13574. weight: math.unit(250, "kg"),
  13575. name: "Back",
  13576. image: {
  13577. source: "./media/characters/ikideru/back.svg",
  13578. extra: 919 / 852,
  13579. bottom: 0.055
  13580. }
  13581. },
  13582. },
  13583. [
  13584. {
  13585. name: "Rare",
  13586. height: math.unit(8, "feet"),
  13587. default: true
  13588. },
  13589. {
  13590. name: "Playful Loom",
  13591. height: math.unit(80, "feet")
  13592. },
  13593. {
  13594. name: "City Leaner",
  13595. height: math.unit(230, "feet")
  13596. },
  13597. {
  13598. name: "Megamacro",
  13599. height: math.unit(2500, "feet")
  13600. },
  13601. {
  13602. name: "Gigamacro",
  13603. height: math.unit(26400, "feet")
  13604. },
  13605. {
  13606. name: "Tectonic Shifter",
  13607. height: math.unit(1.7, "megameters")
  13608. },
  13609. {
  13610. name: "Planet Carer",
  13611. height: math.unit(21, "megameters")
  13612. },
  13613. {
  13614. name: "God",
  13615. height: math.unit(11157.22, "parsecs")
  13616. },
  13617. ]
  13618. ))
  13619. characterMakers.push(() => makeCharacter(
  13620. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13621. {
  13622. front: {
  13623. height: math.unit(6, "feet"),
  13624. weight: math.unit(120, "lb"),
  13625. name: "Front",
  13626. image: {
  13627. source: "./media/characters/neo/front.svg"
  13628. }
  13629. },
  13630. },
  13631. [
  13632. {
  13633. name: "Micro",
  13634. height: math.unit(2, "inches"),
  13635. default: true
  13636. },
  13637. {
  13638. name: "Human Size",
  13639. height: math.unit(5 + 8 / 12, "feet")
  13640. },
  13641. ]
  13642. ))
  13643. characterMakers.push(() => makeCharacter(
  13644. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13645. {
  13646. front: {
  13647. height: math.unit(13 + 10 / 12, "feet"),
  13648. weight: math.unit(5320, "lb"),
  13649. name: "Front",
  13650. image: {
  13651. source: "./media/characters/chauncey-chantz/front.svg",
  13652. extra: 1587 / 1435,
  13653. bottom: 0.02
  13654. }
  13655. },
  13656. },
  13657. [
  13658. {
  13659. name: "Normal",
  13660. height: math.unit(13 + 10 / 12, "feet"),
  13661. default: true
  13662. },
  13663. {
  13664. name: "Macro",
  13665. height: math.unit(45, "feet")
  13666. },
  13667. {
  13668. name: "Megamacro",
  13669. height: math.unit(250, "miles")
  13670. },
  13671. {
  13672. name: "Planetary",
  13673. height: math.unit(10000, "miles")
  13674. },
  13675. {
  13676. name: "Galactic",
  13677. height: math.unit(40000, "parsecs")
  13678. },
  13679. {
  13680. name: "Universal",
  13681. height: math.unit(1, "yottameter")
  13682. },
  13683. ]
  13684. ))
  13685. characterMakers.push(() => makeCharacter(
  13686. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13687. {
  13688. front: {
  13689. height: math.unit(6, "feet"),
  13690. weight: math.unit(150, "lb"),
  13691. name: "Front",
  13692. image: {
  13693. source: "./media/characters/epifox/front.svg",
  13694. extra: 1,
  13695. bottom: 0.075
  13696. }
  13697. },
  13698. },
  13699. [
  13700. {
  13701. name: "Micro",
  13702. height: math.unit(6, "inches")
  13703. },
  13704. {
  13705. name: "Normal",
  13706. height: math.unit(12, "feet"),
  13707. default: true
  13708. },
  13709. {
  13710. name: "Macro",
  13711. height: math.unit(3810, "feet")
  13712. },
  13713. {
  13714. name: "Megamacro",
  13715. height: math.unit(500, "miles")
  13716. },
  13717. ]
  13718. ))
  13719. characterMakers.push(() => makeCharacter(
  13720. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13721. {
  13722. front: {
  13723. height: math.unit(1.8796, "m"),
  13724. weight: math.unit(230, "lb"),
  13725. name: "Front",
  13726. image: {
  13727. source: "./media/characters/colin-t/front.svg",
  13728. extra: 1272 / 1193,
  13729. bottom: 0.07
  13730. }
  13731. },
  13732. },
  13733. [
  13734. {
  13735. name: "Micro",
  13736. height: math.unit(0.571, "meters")
  13737. },
  13738. {
  13739. name: "Normal",
  13740. height: math.unit(1.8796, "meters"),
  13741. default: true
  13742. },
  13743. {
  13744. name: "Tall",
  13745. height: math.unit(4, "meters")
  13746. },
  13747. {
  13748. name: "Macro",
  13749. height: math.unit(67.241, "meters")
  13750. },
  13751. {
  13752. name: "Megamacro",
  13753. height: math.unit(371.856, "meters")
  13754. },
  13755. {
  13756. name: "Planetary",
  13757. height: math.unit(12631.5689, "km")
  13758. },
  13759. ]
  13760. ))
  13761. characterMakers.push(() => makeCharacter(
  13762. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13763. {
  13764. front: {
  13765. height: math.unit(1.85, "meters"),
  13766. weight: math.unit(80, "kg"),
  13767. name: "Front",
  13768. image: {
  13769. source: "./media/characters/matvei/front.svg",
  13770. extra: 456/447,
  13771. bottom: 8/464
  13772. }
  13773. },
  13774. back: {
  13775. height: math.unit(1.85, "meters"),
  13776. weight: math.unit(80, "kg"),
  13777. name: "Back",
  13778. image: {
  13779. source: "./media/characters/matvei/back.svg",
  13780. extra: 434/427,
  13781. bottom: 11/445
  13782. }
  13783. },
  13784. },
  13785. [
  13786. {
  13787. name: "Normal",
  13788. height: math.unit(1.85, "meters"),
  13789. default: true
  13790. },
  13791. ]
  13792. ))
  13793. characterMakers.push(() => makeCharacter(
  13794. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13795. {
  13796. front: {
  13797. height: math.unit(5 + 9 / 12, "feet"),
  13798. weight: math.unit(70, "lb"),
  13799. name: "Front",
  13800. image: {
  13801. source: "./media/characters/quincy/front.svg",
  13802. extra: 3041 / 2751
  13803. }
  13804. },
  13805. back: {
  13806. height: math.unit(5 + 9 / 12, "feet"),
  13807. weight: math.unit(70, "lb"),
  13808. name: "Back",
  13809. image: {
  13810. source: "./media/characters/quincy/back.svg",
  13811. extra: 3041 / 2751
  13812. }
  13813. },
  13814. flying: {
  13815. height: math.unit(5 + 4 / 12, "feet"),
  13816. weight: math.unit(70, "lb"),
  13817. name: "Flying",
  13818. image: {
  13819. source: "./media/characters/quincy/flying.svg",
  13820. extra: 1044 / 930
  13821. }
  13822. },
  13823. },
  13824. [
  13825. {
  13826. name: "Micro",
  13827. height: math.unit(3, "cm")
  13828. },
  13829. {
  13830. name: "Normal",
  13831. height: math.unit(5 + 9 / 12, "feet")
  13832. },
  13833. {
  13834. name: "Macro",
  13835. height: math.unit(200, "meters"),
  13836. default: true
  13837. },
  13838. {
  13839. name: "Megamacro",
  13840. height: math.unit(1000, "meters")
  13841. },
  13842. ]
  13843. ))
  13844. characterMakers.push(() => makeCharacter(
  13845. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13846. {
  13847. front: {
  13848. height: math.unit(3 + 11/12, "feet"),
  13849. weight: math.unit(50, "lb"),
  13850. name: "Front",
  13851. image: {
  13852. source: "./media/characters/vanrel/front.svg",
  13853. extra: 1104/949,
  13854. bottom: 52/1156
  13855. }
  13856. },
  13857. back: {
  13858. height: math.unit(3 + 11/12, "feet"),
  13859. weight: math.unit(50, "lb"),
  13860. name: "Back",
  13861. image: {
  13862. source: "./media/characters/vanrel/back.svg",
  13863. extra: 1119/976,
  13864. bottom: 37/1156
  13865. }
  13866. },
  13867. tome: {
  13868. height: math.unit(1.35, "feet"),
  13869. weight: math.unit(10, "lb"),
  13870. name: "Vanrel's Tome",
  13871. rename: true,
  13872. image: {
  13873. source: "./media/characters/vanrel/tome.svg"
  13874. }
  13875. },
  13876. beans: {
  13877. height: math.unit(0.89, "feet"),
  13878. name: "Beans",
  13879. image: {
  13880. source: "./media/characters/vanrel/beans.svg"
  13881. }
  13882. },
  13883. },
  13884. [
  13885. {
  13886. name: "Normal",
  13887. height: math.unit(3 + 11/12, "feet"),
  13888. default: true
  13889. },
  13890. ]
  13891. ))
  13892. characterMakers.push(() => makeCharacter(
  13893. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13894. {
  13895. front: {
  13896. height: math.unit(7 + 5 / 12, "feet"),
  13897. name: "Front",
  13898. image: {
  13899. source: "./media/characters/kuiper-vanrel/front.svg",
  13900. extra: 1219/1169,
  13901. bottom: 69/1288
  13902. }
  13903. },
  13904. back: {
  13905. height: math.unit(7 + 5 / 12, "feet"),
  13906. name: "Back",
  13907. image: {
  13908. source: "./media/characters/kuiper-vanrel/back.svg",
  13909. extra: 1236/1193,
  13910. bottom: 27/1263
  13911. }
  13912. },
  13913. foot: {
  13914. height: math.unit(0.55, "meters"),
  13915. name: "Foot",
  13916. image: {
  13917. source: "./media/characters/kuiper-vanrel/foot.svg",
  13918. }
  13919. },
  13920. battle: {
  13921. height: math.unit(6.824, "feet"),
  13922. name: "Battle",
  13923. image: {
  13924. source: "./media/characters/kuiper-vanrel/battle.svg",
  13925. extra: 1466 / 1327,
  13926. bottom: 29 / 1492.5
  13927. }
  13928. },
  13929. meerkui: {
  13930. height: math.unit(18, "inches"),
  13931. name: "Meerkui",
  13932. image: {
  13933. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13934. extra: 1354/1289,
  13935. bottom: 69/1423
  13936. }
  13937. },
  13938. },
  13939. [
  13940. {
  13941. name: "Normal",
  13942. height: math.unit(7 + 5 / 12, "feet"),
  13943. default: true
  13944. },
  13945. ]
  13946. ))
  13947. characterMakers.push(() => makeCharacter(
  13948. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13949. {
  13950. front: {
  13951. height: math.unit(8 + 5 / 12, "feet"),
  13952. name: "Front",
  13953. image: {
  13954. source: "./media/characters/keset-vanrel/front.svg",
  13955. extra: 1231/1148,
  13956. bottom: 82/1313
  13957. }
  13958. },
  13959. back: {
  13960. height: math.unit(8 + 5 / 12, "feet"),
  13961. name: "Back",
  13962. image: {
  13963. source: "./media/characters/keset-vanrel/back.svg",
  13964. extra: 1240/1174,
  13965. bottom: 33/1273
  13966. }
  13967. },
  13968. hand: {
  13969. height: math.unit(0.6, "meters"),
  13970. name: "Hand",
  13971. image: {
  13972. source: "./media/characters/keset-vanrel/hand.svg"
  13973. }
  13974. },
  13975. foot: {
  13976. height: math.unit(0.94978, "meters"),
  13977. name: "Foot",
  13978. image: {
  13979. source: "./media/characters/keset-vanrel/foot.svg"
  13980. }
  13981. },
  13982. battle: {
  13983. height: math.unit(7.408, "feet"),
  13984. name: "Battle",
  13985. image: {
  13986. source: "./media/characters/keset-vanrel/battle.svg",
  13987. extra: 1890 / 1386,
  13988. bottom: 73.28 / 1970
  13989. }
  13990. },
  13991. },
  13992. [
  13993. {
  13994. name: "Normal",
  13995. height: math.unit(8 + 5 / 12, "feet"),
  13996. default: true
  13997. },
  13998. ]
  13999. ))
  14000. characterMakers.push(() => makeCharacter(
  14001. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  14002. {
  14003. front: {
  14004. height: math.unit(6, "feet"),
  14005. weight: math.unit(150, "lb"),
  14006. name: "Front",
  14007. image: {
  14008. source: "./media/characters/neos/front.svg",
  14009. extra: 1696 / 992,
  14010. bottom: 0.14
  14011. }
  14012. },
  14013. },
  14014. [
  14015. {
  14016. name: "Normal",
  14017. height: math.unit(54, "cm"),
  14018. default: true
  14019. },
  14020. {
  14021. name: "Macro",
  14022. height: math.unit(100, "m")
  14023. },
  14024. {
  14025. name: "Megamacro",
  14026. height: math.unit(10, "km")
  14027. },
  14028. {
  14029. name: "Megamacro+",
  14030. height: math.unit(100, "km")
  14031. },
  14032. {
  14033. name: "Gigamacro",
  14034. height: math.unit(100, "Mm")
  14035. },
  14036. {
  14037. name: "Teramacro",
  14038. height: math.unit(100, "Gm")
  14039. },
  14040. {
  14041. name: "Examacro",
  14042. height: math.unit(100, "Em")
  14043. },
  14044. {
  14045. name: "Godly",
  14046. height: math.unit(10000, "Ym")
  14047. },
  14048. {
  14049. name: "Beyond Godly",
  14050. height: math.unit(25, "multiverses")
  14051. },
  14052. ]
  14053. ))
  14054. characterMakers.push(() => makeCharacter(
  14055. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  14056. {
  14057. fluide_tame: {
  14058. height: math.unit(5, "feet"),
  14059. name: "Tame",
  14060. image: {
  14061. source: "./media/characters/sammy-mouse/fluide-tame.svg",
  14062. extra: 1655/1574,
  14063. bottom: 231/1886
  14064. },
  14065. form: "fluide",
  14066. default: true
  14067. },
  14068. fluide_nude: {
  14069. height: math.unit(5, "feet"),
  14070. name: "Nude",
  14071. image: {
  14072. source: "./media/characters/sammy-mouse/fluide-nude.svg",
  14073. extra: 1655/1574,
  14074. bottom: 231/1886
  14075. },
  14076. form: "fluide",
  14077. },
  14078. male_tame: {
  14079. height: math.unit(5, "feet"),
  14080. name: "Tame",
  14081. image: {
  14082. source: "./media/characters/sammy-mouse/male-tame.svg",
  14083. extra: 1655/1574,
  14084. bottom: 231/1886
  14085. },
  14086. form: "male",
  14087. default: true
  14088. },
  14089. male_nude: {
  14090. height: math.unit(5, "feet"),
  14091. name: "Nude",
  14092. image: {
  14093. source: "./media/characters/sammy-mouse/male-nude.svg",
  14094. extra: 1655/1574,
  14095. bottom: 231/1886
  14096. },
  14097. form: "male",
  14098. },
  14099. female_nude: {
  14100. height: math.unit(5, "feet"),
  14101. name: "Nude",
  14102. image: {
  14103. source: "./media/characters/sammy-mouse/female-nude.svg",
  14104. extra: 1655/1574,
  14105. bottom: 231/1886
  14106. },
  14107. form: "female",
  14108. default: true
  14109. },
  14110. mouth: {
  14111. height: math.unit(0.32, "feet"),
  14112. name: "Mouth",
  14113. image: {
  14114. source: "./media/characters/sammy-mouse/mouth.svg"
  14115. },
  14116. allForms: true
  14117. },
  14118. paw: {
  14119. height: math.unit(0.42, "feet"),
  14120. name: "Paw",
  14121. image: {
  14122. source: "./media/characters/sammy-mouse/paw.svg"
  14123. },
  14124. allForms: true
  14125. },
  14126. },
  14127. [
  14128. {
  14129. name: "Micro",
  14130. height: math.unit(5, "inches"),
  14131. allForms: true
  14132. },
  14133. {
  14134. name: "Normal",
  14135. height: math.unit(5, "feet"),
  14136. default: true,
  14137. allForms: true
  14138. },
  14139. {
  14140. name: "Macro",
  14141. height: math.unit(60, "feet"),
  14142. allForms: true
  14143. },
  14144. ],
  14145. {
  14146. "fluide": {
  14147. name: "Fluide",
  14148. default: true
  14149. },
  14150. "male": {
  14151. name: "Male",
  14152. },
  14153. "female": {
  14154. name: "Female",
  14155. },
  14156. }
  14157. ))
  14158. characterMakers.push(() => makeCharacter(
  14159. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  14160. {
  14161. front: {
  14162. height: math.unit(4, "feet"),
  14163. weight: math.unit(50, "lb"),
  14164. name: "Front",
  14165. image: {
  14166. source: "./media/characters/kole/front.svg",
  14167. extra: 1423 / 1303,
  14168. bottom: 0.025
  14169. }
  14170. },
  14171. back: {
  14172. height: math.unit(4, "feet"),
  14173. weight: math.unit(50, "lb"),
  14174. name: "Back",
  14175. image: {
  14176. source: "./media/characters/kole/back.svg",
  14177. extra: 1426 / 1280,
  14178. bottom: 0.02
  14179. }
  14180. },
  14181. },
  14182. [
  14183. {
  14184. name: "Normal",
  14185. height: math.unit(4, "feet"),
  14186. default: true
  14187. },
  14188. ]
  14189. ))
  14190. characterMakers.push(() => makeCharacter(
  14191. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  14192. {
  14193. front: {
  14194. height: math.unit(2.5, "feet"),
  14195. weight: math.unit(32, "lb"),
  14196. name: "Front",
  14197. image: {
  14198. source: "./media/characters/rufran/front.svg",
  14199. extra: 1313/885,
  14200. bottom: 94/1407
  14201. }
  14202. },
  14203. side: {
  14204. height: math.unit(2.5, "feet"),
  14205. weight: math.unit(32, "lb"),
  14206. name: "Side",
  14207. image: {
  14208. source: "./media/characters/rufran/side.svg",
  14209. extra: 1109/852,
  14210. bottom: 118/1227
  14211. }
  14212. },
  14213. back: {
  14214. height: math.unit(2.5, "feet"),
  14215. weight: math.unit(32, "lb"),
  14216. name: "Back",
  14217. image: {
  14218. source: "./media/characters/rufran/back.svg",
  14219. extra: 1280/878,
  14220. bottom: 131/1411
  14221. }
  14222. },
  14223. mouth: {
  14224. height: math.unit(1.13, "feet"),
  14225. name: "Mouth",
  14226. image: {
  14227. source: "./media/characters/rufran/mouth.svg"
  14228. }
  14229. },
  14230. foot: {
  14231. height: math.unit(1.33, "feet"),
  14232. name: "Foot",
  14233. image: {
  14234. source: "./media/characters/rufran/foot.svg"
  14235. }
  14236. },
  14237. koboldFront: {
  14238. height: math.unit(2 + 6 / 12, "feet"),
  14239. weight: math.unit(20, "lb"),
  14240. name: "Front (Kobold)",
  14241. image: {
  14242. source: "./media/characters/rufran/kobold-front.svg",
  14243. extra: 2041 / 1839,
  14244. bottom: 0.055
  14245. }
  14246. },
  14247. koboldBack: {
  14248. height: math.unit(2 + 6 / 12, "feet"),
  14249. weight: math.unit(20, "lb"),
  14250. name: "Back (Kobold)",
  14251. image: {
  14252. source: "./media/characters/rufran/kobold-back.svg",
  14253. extra: 2054 / 1839,
  14254. bottom: 0.01
  14255. }
  14256. },
  14257. koboldHand: {
  14258. height: math.unit(0.2166, "meters"),
  14259. name: "Hand (Kobold)",
  14260. image: {
  14261. source: "./media/characters/rufran/kobold-hand.svg"
  14262. }
  14263. },
  14264. koboldFoot: {
  14265. height: math.unit(0.185, "meters"),
  14266. name: "Foot (Kobold)",
  14267. image: {
  14268. source: "./media/characters/rufran/kobold-foot.svg"
  14269. }
  14270. },
  14271. },
  14272. [
  14273. {
  14274. name: "Micro",
  14275. height: math.unit(1, "inch")
  14276. },
  14277. {
  14278. name: "Normal",
  14279. height: math.unit(2 + 6 / 12, "feet"),
  14280. default: true
  14281. },
  14282. {
  14283. name: "Big",
  14284. height: math.unit(60, "feet")
  14285. },
  14286. {
  14287. name: "Macro",
  14288. height: math.unit(325, "feet")
  14289. },
  14290. ]
  14291. ))
  14292. characterMakers.push(() => makeCharacter(
  14293. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  14294. {
  14295. front: {
  14296. height: math.unit(0.3, "meters"),
  14297. weight: math.unit(3.5, "kg"),
  14298. name: "Front",
  14299. image: {
  14300. source: "./media/characters/chip/front.svg",
  14301. extra: 748 / 674
  14302. }
  14303. },
  14304. },
  14305. [
  14306. {
  14307. name: "Micro",
  14308. height: math.unit(1, "inch"),
  14309. default: true
  14310. },
  14311. ]
  14312. ))
  14313. characterMakers.push(() => makeCharacter(
  14314. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  14315. {
  14316. side: {
  14317. height: math.unit(2.3, "meters"),
  14318. weight: math.unit(3500, "lb"),
  14319. name: "Side",
  14320. image: {
  14321. source: "./media/characters/torvid/side.svg",
  14322. extra: 1972 / 722,
  14323. bottom: 0.035
  14324. }
  14325. },
  14326. },
  14327. [
  14328. {
  14329. name: "Normal",
  14330. height: math.unit(2.3, "meters"),
  14331. default: true
  14332. },
  14333. ]
  14334. ))
  14335. characterMakers.push(() => makeCharacter(
  14336. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  14337. {
  14338. front: {
  14339. height: math.unit(2, "meters"),
  14340. weight: math.unit(150.5, "kg"),
  14341. name: "Front",
  14342. image: {
  14343. source: "./media/characters/susan/front.svg",
  14344. extra: 693 / 635,
  14345. bottom: 0.05
  14346. }
  14347. },
  14348. },
  14349. [
  14350. {
  14351. name: "Megamacro",
  14352. height: math.unit(505, "miles"),
  14353. default: true
  14354. },
  14355. ]
  14356. ))
  14357. characterMakers.push(() => makeCharacter(
  14358. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  14359. {
  14360. front: {
  14361. height: math.unit(6, "feet"),
  14362. weight: math.unit(150, "lb"),
  14363. name: "Front",
  14364. image: {
  14365. source: "./media/characters/raindrops/front.svg",
  14366. extra: 2655 / 2461,
  14367. bottom: 49 / 2705
  14368. }
  14369. },
  14370. back: {
  14371. height: math.unit(6, "feet"),
  14372. weight: math.unit(150, "lb"),
  14373. name: "Back",
  14374. image: {
  14375. source: "./media/characters/raindrops/back.svg",
  14376. extra: 2574 / 2400,
  14377. bottom: 65 / 2634
  14378. }
  14379. },
  14380. },
  14381. [
  14382. {
  14383. name: "Micro",
  14384. height: math.unit(6, "inches")
  14385. },
  14386. {
  14387. name: "Normal",
  14388. height: math.unit(6 + 2 / 12, "feet")
  14389. },
  14390. {
  14391. name: "Macro",
  14392. height: math.unit(131, "feet"),
  14393. default: true
  14394. },
  14395. {
  14396. name: "Megamacro",
  14397. height: math.unit(15, "miles")
  14398. },
  14399. {
  14400. name: "Gigamacro",
  14401. height: math.unit(4000, "miles")
  14402. },
  14403. {
  14404. name: "Teramacro",
  14405. height: math.unit(315000, "miles")
  14406. },
  14407. ]
  14408. ))
  14409. characterMakers.push(() => makeCharacter(
  14410. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  14411. {
  14412. normal_front: {
  14413. height: math.unit(9 + 2/12, "feet"),
  14414. weight: math.unit(325, "kg"),
  14415. name: "Front",
  14416. image: {
  14417. source: "./media/characters/tezwa/normal-front.svg",
  14418. extra: 770/714,
  14419. bottom: 32/802
  14420. },
  14421. form: "normal",
  14422. },
  14423. normal_paw: {
  14424. height: math.unit(2.2, "feet"),
  14425. name: "Paw",
  14426. image: {
  14427. source: "./media/characters/tezwa/paw.svg"
  14428. },
  14429. form: "normal",
  14430. },
  14431. muscled_front: {
  14432. height: math.unit(916 + 8/12, "feet"),
  14433. weight: math.unit(500000, "tons"),
  14434. name: "Front",
  14435. image: {
  14436. source: "./media/characters/tezwa/muscled-front.svg",
  14437. extra: 1840/1697,
  14438. bottom: 29/1869
  14439. },
  14440. form: "muscled",
  14441. },
  14442. muscled_paw: {
  14443. height: math.unit(200, "feet"),
  14444. name: "Paw",
  14445. image: {
  14446. source: "./media/characters/tezwa/paw.svg"
  14447. },
  14448. form: "muscled",
  14449. },
  14450. },
  14451. [
  14452. {
  14453. name: "Normal",
  14454. height: math.unit(9 + 2 / 12, "feet"),
  14455. default: true,
  14456. form: "normal"
  14457. },
  14458. {
  14459. name: "Normal",
  14460. height: math.unit(916 + 8/12, "feet"),
  14461. default: true,
  14462. form: "muscled"
  14463. },
  14464. ],
  14465. {
  14466. "normal": {
  14467. name: "Normal",
  14468. default: true
  14469. },
  14470. "muscled": {
  14471. name: "Muscled",
  14472. },
  14473. }
  14474. ))
  14475. characterMakers.push(() => makeCharacter(
  14476. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  14477. {
  14478. front: {
  14479. height: math.unit(58, "feet"),
  14480. weight: math.unit(89000, "lb"),
  14481. name: "Front",
  14482. image: {
  14483. source: "./media/characters/typhus/front.svg",
  14484. extra: 816 / 800,
  14485. bottom: 0.065
  14486. }
  14487. },
  14488. },
  14489. [
  14490. {
  14491. name: "Macro",
  14492. height: math.unit(58, "feet"),
  14493. default: true
  14494. },
  14495. ]
  14496. ))
  14497. characterMakers.push(() => makeCharacter(
  14498. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14499. {
  14500. front: {
  14501. height: math.unit(12, "feet"),
  14502. weight: math.unit(6, "tonnes"),
  14503. name: "Front",
  14504. image: {
  14505. source: "./media/characters/lyra-von-wulf/front.svg",
  14506. extra: 1,
  14507. bottom: 0.10
  14508. }
  14509. },
  14510. frontMecha: {
  14511. height: math.unit(12, "feet"),
  14512. weight: math.unit(12, "tonnes"),
  14513. name: "Front (Mecha)",
  14514. image: {
  14515. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14516. extra: 1,
  14517. bottom: 0.042
  14518. }
  14519. },
  14520. maw: {
  14521. height: math.unit(2.2, "feet"),
  14522. name: "Maw",
  14523. image: {
  14524. source: "./media/characters/lyra-von-wulf/maw.svg"
  14525. }
  14526. },
  14527. },
  14528. [
  14529. {
  14530. name: "Normal",
  14531. height: math.unit(12, "feet"),
  14532. default: true
  14533. },
  14534. {
  14535. name: "Classic",
  14536. height: math.unit(50, "feet")
  14537. },
  14538. {
  14539. name: "Macro",
  14540. height: math.unit(500, "feet")
  14541. },
  14542. {
  14543. name: "Megamacro",
  14544. height: math.unit(1, "mile")
  14545. },
  14546. {
  14547. name: "Gigamacro",
  14548. height: math.unit(400, "miles")
  14549. },
  14550. {
  14551. name: "Teramacro",
  14552. height: math.unit(22000, "miles")
  14553. },
  14554. {
  14555. name: "Solarmacro",
  14556. height: math.unit(8600000, "miles")
  14557. },
  14558. {
  14559. name: "Galactic",
  14560. height: math.unit(1057000, "lightyears")
  14561. },
  14562. ]
  14563. ))
  14564. characterMakers.push(() => makeCharacter(
  14565. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14566. {
  14567. front: {
  14568. height: math.unit(6 + 10 / 12, "feet"),
  14569. weight: math.unit(150, "lb"),
  14570. name: "Front",
  14571. image: {
  14572. source: "./media/characters/dixon/front.svg",
  14573. extra: 3361 / 3209,
  14574. bottom: 0.01
  14575. }
  14576. },
  14577. },
  14578. [
  14579. {
  14580. name: "Normal",
  14581. height: math.unit(6 + 10 / 12, "feet"),
  14582. default: true
  14583. },
  14584. {
  14585. name: "Big",
  14586. height: math.unit(12, "meters")
  14587. },
  14588. {
  14589. name: "Macro",
  14590. height: math.unit(500, "meters")
  14591. },
  14592. {
  14593. name: "Megamacro",
  14594. height: math.unit(2, "km")
  14595. },
  14596. ]
  14597. ))
  14598. characterMakers.push(() => makeCharacter(
  14599. { name: "Kauko", species: ["wolf", "king-cheetah"], tags: ["anthro"] },
  14600. {
  14601. kingCheetah_front: {
  14602. height: math.unit(1.85, "meters"),
  14603. weight: math.unit(68, "kg"),
  14604. name: "Front",
  14605. image: {
  14606. source: "./media/characters/kauko/king-cheetah-front.svg",
  14607. extra: 1007/972,
  14608. bottom: 35/1042
  14609. },
  14610. form: "king-cheetah",
  14611. default: true
  14612. },
  14613. kingCheetah_back: {
  14614. height: math.unit(1.85, "meters"),
  14615. weight: math.unit(68, "kg"),
  14616. name: "Back",
  14617. image: {
  14618. source: "./media/characters/kauko/king-cheetah-back.svg",
  14619. extra: 1015/980,
  14620. bottom: 11/1026
  14621. },
  14622. form: "king-cheetah",
  14623. },
  14624. kingCheetah_hand: {
  14625. height: math.unit(0.23, "meters"),
  14626. name: "Hand",
  14627. image: {
  14628. source: "./media/characters/kauko/king-cheetah-hand.svg"
  14629. },
  14630. form: "king-cheetah",
  14631. },
  14632. kingCheetah_paw: {
  14633. height: math.unit(0.38, "meters"),
  14634. name: "Paw",
  14635. image: {
  14636. source: "./media/characters/kauko/king-cheetah-paw.svg"
  14637. },
  14638. form: "king-cheetah",
  14639. },
  14640. kingCheetah_nape: {
  14641. height: math.unit(0.23, "meters"),
  14642. name: "Nape",
  14643. image: {
  14644. source: "./media/characters/kauko/king-cheetah-nape.svg"
  14645. },
  14646. form: "king-cheetah",
  14647. },
  14648. wolf_front: {
  14649. height: math.unit(1.88, "meters"),
  14650. weight: math.unit(74, "kg"),
  14651. name: "Front",
  14652. image: {
  14653. source: "./media/characters/kauko/wolf-front.svg",
  14654. extra: 952/908,
  14655. bottom: 64/1016
  14656. },
  14657. form: "wolf",
  14658. default: true
  14659. },
  14660. wolf_dressed: {
  14661. height: math.unit(1.88, "meters"),
  14662. weight: math.unit(74, "kg"),
  14663. name: "Dressed",
  14664. image: {
  14665. source: "./media/characters/kauko/wolf-dressed.svg",
  14666. extra: 963/916,
  14667. bottom: 101/1064
  14668. },
  14669. form: "wolf",
  14670. },
  14671. wolf_hand: {
  14672. height: math.unit(0.3, "meters"),
  14673. name: "Hand",
  14674. image: {
  14675. source: "./media/characters/kauko/wolf-hand.svg"
  14676. },
  14677. form: "wolf",
  14678. },
  14679. wolf_paw: {
  14680. height: math.unit(0.407, "meters"),
  14681. name: "Paw",
  14682. image: {
  14683. source: "./media/characters/kauko/wolf-paw.svg"
  14684. },
  14685. form: "wolf",
  14686. },
  14687. wolf_nape: {
  14688. height: math.unit(0.25, "meters"),
  14689. name: "Nape",
  14690. image: {
  14691. source: "./media/characters/kauko/wolf-nape.svg"
  14692. },
  14693. form: "wolf",
  14694. },
  14695. },
  14696. [
  14697. {
  14698. name: "Normal",
  14699. height: math.unit(1.85, "m"),
  14700. default: true,
  14701. form: "king-cheetah"
  14702. },
  14703. {
  14704. name: "Normal",
  14705. height: math.unit(1.88, "m"),
  14706. default: true,
  14707. form: "wolf"
  14708. },
  14709. ],
  14710. {
  14711. "king-cheetah": {
  14712. name: "King Cheetah",
  14713. default: true
  14714. },
  14715. "wolf": {
  14716. name: "Wolf",
  14717. },
  14718. }
  14719. ))
  14720. characterMakers.push(() => makeCharacter(
  14721. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14722. {
  14723. frontSfw: {
  14724. height: math.unit(5, "meters"),
  14725. weight: math.unit(4250, "lb"),
  14726. name: "Front",
  14727. image: {
  14728. source: "./media/characters/varg/front-sfw.svg",
  14729. extra: 1103/1010,
  14730. bottom: 50/1153
  14731. },
  14732. form: "anthro",
  14733. default: true
  14734. },
  14735. backSfw: {
  14736. height: math.unit(5, "meters"),
  14737. weight: math.unit(4250, "lb"),
  14738. name: "Back",
  14739. image: {
  14740. source: "./media/characters/varg/back-sfw.svg",
  14741. extra: 1038/1022,
  14742. bottom: 36/1074
  14743. },
  14744. form: "anthro"
  14745. },
  14746. frontNsfw: {
  14747. height: math.unit(5, "meters"),
  14748. weight: math.unit(4250, "lb"),
  14749. name: "Front (NSFW)",
  14750. image: {
  14751. source: "./media/characters/varg/front-nsfw.svg",
  14752. extra: 1103/1010,
  14753. bottom: 50/1153
  14754. },
  14755. form: "anthro"
  14756. },
  14757. sheath: {
  14758. height: math.unit(3.8, "feet"),
  14759. weight: math.unit(90, "kilograms"),
  14760. name: "Sheath",
  14761. image: {
  14762. source: "./media/characters/varg/sheath.svg"
  14763. },
  14764. form: "anthro"
  14765. },
  14766. dick: {
  14767. height: math.unit(4.6, "feet"),
  14768. weight: math.unit(451, "kilograms"),
  14769. name: "Dick",
  14770. image: {
  14771. source: "./media/characters/varg/dick.svg"
  14772. },
  14773. form: "anthro"
  14774. },
  14775. feralSfw: {
  14776. height: math.unit(5, "meters"),
  14777. weight: math.unit(100000, "lb"),
  14778. name: "Side",
  14779. image: {
  14780. source: "./media/characters/varg/feral-sfw.svg",
  14781. extra: 1065/511,
  14782. bottom: 211/1276
  14783. },
  14784. form: "feral",
  14785. default: true
  14786. },
  14787. feralNsfw: {
  14788. height: math.unit(5, "meters"),
  14789. weight: math.unit(100000, "lb"),
  14790. name: "Side (NSFW)",
  14791. image: {
  14792. source: "./media/characters/varg/feral-nsfw.svg",
  14793. extra: 1065/511,
  14794. bottom: 211/1276
  14795. },
  14796. form: "feral",
  14797. },
  14798. feralSheath: {
  14799. height: math.unit(9.8, "feet"),
  14800. weight: math.unit(2000, "kilograms"),
  14801. name: "Sheath",
  14802. image: {
  14803. source: "./media/characters/varg/sheath.svg"
  14804. },
  14805. form: "feral"
  14806. },
  14807. feralDick: {
  14808. height: math.unit(13.11, "feet"),
  14809. weight: math.unit(10440, "kilograms"),
  14810. name: "Dick",
  14811. image: {
  14812. source: "./media/characters/varg/dick.svg"
  14813. },
  14814. form: "feral"
  14815. },
  14816. },
  14817. [
  14818. {
  14819. name: "Normal",
  14820. height: math.unit(5, "meters"),
  14821. form: "anthro"
  14822. },
  14823. {
  14824. name: "Macro",
  14825. height: math.unit(200, "meters"),
  14826. form: "anthro"
  14827. },
  14828. {
  14829. name: "Megamacro",
  14830. height: math.unit(20, "kilometers"),
  14831. form: "anthro"
  14832. },
  14833. {
  14834. name: "True Size",
  14835. height: math.unit(211, "km"),
  14836. form: "anthro",
  14837. default: true
  14838. },
  14839. {
  14840. name: "Gigamacro",
  14841. height: math.unit(1000, "km"),
  14842. form: "anthro"
  14843. },
  14844. {
  14845. name: "Gigamacro+",
  14846. height: math.unit(8000, "km"),
  14847. form: "anthro"
  14848. },
  14849. {
  14850. name: "Teramacro",
  14851. height: math.unit(1000000, "km"),
  14852. form: "anthro"
  14853. },
  14854. {
  14855. name: "Normal",
  14856. height: math.unit(5, "meters"),
  14857. form: "feral"
  14858. },
  14859. {
  14860. name: "Macro",
  14861. height: math.unit(200, "meters"),
  14862. form: "feral"
  14863. },
  14864. {
  14865. name: "Megamacro",
  14866. height: math.unit(20, "kilometers"),
  14867. form: "feral"
  14868. },
  14869. {
  14870. name: "True Size",
  14871. height: math.unit(211, "km"),
  14872. form: "feral",
  14873. default: true
  14874. },
  14875. {
  14876. name: "Gigamacro",
  14877. height: math.unit(1000, "km"),
  14878. form: "feral"
  14879. },
  14880. {
  14881. name: "Gigamacro+",
  14882. height: math.unit(8000, "km"),
  14883. form: "feral"
  14884. },
  14885. {
  14886. name: "Teramacro",
  14887. height: math.unit(1000000, "km"),
  14888. form: "feral"
  14889. },
  14890. ],
  14891. {
  14892. "anthro": {
  14893. name: "Anthro",
  14894. default: true
  14895. },
  14896. "feral": {
  14897. name: "Feral",
  14898. },
  14899. }
  14900. ))
  14901. characterMakers.push(() => makeCharacter(
  14902. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14903. {
  14904. front: {
  14905. height: math.unit(7 + 7 / 12, "feet"),
  14906. weight: math.unit(267, "lb"),
  14907. name: "Front",
  14908. image: {
  14909. source: "./media/characters/dayza/front.svg",
  14910. extra: 1262 / 1200,
  14911. bottom: 0.035
  14912. }
  14913. },
  14914. side: {
  14915. height: math.unit(7 + 7 / 12, "feet"),
  14916. weight: math.unit(267, "lb"),
  14917. name: "Side",
  14918. image: {
  14919. source: "./media/characters/dayza/side.svg",
  14920. extra: 1295 / 1245,
  14921. bottom: 0.05
  14922. }
  14923. },
  14924. back: {
  14925. height: math.unit(7 + 7 / 12, "feet"),
  14926. weight: math.unit(267, "lb"),
  14927. name: "Back",
  14928. image: {
  14929. source: "./media/characters/dayza/back.svg",
  14930. extra: 1241 / 1170
  14931. }
  14932. },
  14933. },
  14934. [
  14935. {
  14936. name: "Normal",
  14937. height: math.unit(7 + 7 / 12, "feet"),
  14938. default: true
  14939. },
  14940. {
  14941. name: "Macro",
  14942. height: math.unit(155, "feet")
  14943. },
  14944. ]
  14945. ))
  14946. characterMakers.push(() => makeCharacter(
  14947. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14948. {
  14949. front: {
  14950. height: math.unit(6 + 5 / 12, "feet"),
  14951. weight: math.unit(160, "lb"),
  14952. name: "Front",
  14953. image: {
  14954. source: "./media/characters/xanthos/front.svg",
  14955. extra: 1,
  14956. bottom: 0.04
  14957. }
  14958. },
  14959. back: {
  14960. height: math.unit(6 + 5 / 12, "feet"),
  14961. weight: math.unit(160, "lb"),
  14962. name: "Back",
  14963. image: {
  14964. source: "./media/characters/xanthos/back.svg",
  14965. extra: 1,
  14966. bottom: 0.03
  14967. }
  14968. },
  14969. hand: {
  14970. height: math.unit(0.928, "feet"),
  14971. name: "Hand",
  14972. image: {
  14973. source: "./media/characters/xanthos/hand.svg"
  14974. }
  14975. },
  14976. foot: {
  14977. height: math.unit(1.286, "feet"),
  14978. name: "Foot",
  14979. image: {
  14980. source: "./media/characters/xanthos/foot.svg"
  14981. }
  14982. },
  14983. },
  14984. [
  14985. {
  14986. name: "Normal",
  14987. height: math.unit(6 + 5 / 12, "feet"),
  14988. default: true
  14989. },
  14990. {
  14991. name: "Normal+",
  14992. height: math.unit(6, "meters")
  14993. },
  14994. {
  14995. name: "Macro",
  14996. height: math.unit(40, "feet")
  14997. },
  14998. {
  14999. name: "Macro+",
  15000. height: math.unit(200, "meters")
  15001. },
  15002. {
  15003. name: "Megamacro",
  15004. height: math.unit(20, "km")
  15005. },
  15006. {
  15007. name: "Megamacro+",
  15008. height: math.unit(100, "km")
  15009. },
  15010. {
  15011. name: "Gigamacro",
  15012. height: math.unit(200, "megameters")
  15013. },
  15014. {
  15015. name: "Gigamacro+",
  15016. height: math.unit(1.5, "gigameters")
  15017. },
  15018. ]
  15019. ))
  15020. characterMakers.push(() => makeCharacter(
  15021. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  15022. {
  15023. front: {
  15024. height: math.unit(6 + 3 / 12, "feet"),
  15025. weight: math.unit(215, "lb"),
  15026. name: "Front",
  15027. image: {
  15028. source: "./media/characters/grynn/front.svg",
  15029. extra: 4627 / 4209,
  15030. bottom: 0.047
  15031. }
  15032. },
  15033. },
  15034. [
  15035. {
  15036. name: "Micro",
  15037. height: math.unit(6, "inches")
  15038. },
  15039. {
  15040. name: "Normal",
  15041. height: math.unit(6 + 3 / 12, "feet"),
  15042. default: true
  15043. },
  15044. {
  15045. name: "Big",
  15046. height: math.unit(104, "feet")
  15047. },
  15048. {
  15049. name: "Macro",
  15050. height: math.unit(944, "feet")
  15051. },
  15052. {
  15053. name: "Macro+",
  15054. height: math.unit(9480, "feet")
  15055. },
  15056. {
  15057. name: "Megamacro",
  15058. height: math.unit(78752, "feet")
  15059. },
  15060. {
  15061. name: "Megamacro+",
  15062. height: math.unit(630128, "feet")
  15063. },
  15064. {
  15065. name: "Megamacro++",
  15066. height: math.unit(3150695, "feet")
  15067. },
  15068. ]
  15069. ))
  15070. characterMakers.push(() => makeCharacter(
  15071. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  15072. {
  15073. front: {
  15074. height: math.unit(7 + 5 / 12, "feet"),
  15075. weight: math.unit(450, "lb"),
  15076. name: "Front",
  15077. image: {
  15078. source: "./media/characters/mocha-aura/front.svg",
  15079. extra: 1907 / 1817,
  15080. bottom: 0.04
  15081. }
  15082. },
  15083. back: {
  15084. height: math.unit(7 + 5 / 12, "feet"),
  15085. weight: math.unit(450, "lb"),
  15086. name: "Back",
  15087. image: {
  15088. source: "./media/characters/mocha-aura/back.svg",
  15089. extra: 1900 / 1825,
  15090. bottom: 0.045
  15091. }
  15092. },
  15093. },
  15094. [
  15095. {
  15096. name: "Nano",
  15097. height: math.unit(1, "nm")
  15098. },
  15099. {
  15100. name: "Megamicro",
  15101. height: math.unit(1, "mm")
  15102. },
  15103. {
  15104. name: "Micro",
  15105. height: math.unit(3, "inches")
  15106. },
  15107. {
  15108. name: "Normal",
  15109. height: math.unit(7 + 5 / 12, "feet"),
  15110. default: true
  15111. },
  15112. {
  15113. name: "Macro",
  15114. height: math.unit(30, "feet")
  15115. },
  15116. {
  15117. name: "Megamacro",
  15118. height: math.unit(3500, "feet")
  15119. },
  15120. {
  15121. name: "Teramacro",
  15122. height: math.unit(500000, "miles")
  15123. },
  15124. {
  15125. name: "Petamacro",
  15126. height: math.unit(50000000000000000, "parsecs")
  15127. },
  15128. ]
  15129. ))
  15130. characterMakers.push(() => makeCharacter(
  15131. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  15132. {
  15133. front: {
  15134. height: math.unit(6, "feet"),
  15135. weight: math.unit(150, "lb"),
  15136. name: "Front",
  15137. image: {
  15138. source: "./media/characters/ilisha-devya/front.svg",
  15139. extra: 1053/1049,
  15140. bottom: 270/1323
  15141. }
  15142. },
  15143. back: {
  15144. height: math.unit(6, "feet"),
  15145. weight: math.unit(150, "lb"),
  15146. name: "Back",
  15147. image: {
  15148. source: "./media/characters/ilisha-devya/back.svg",
  15149. extra: 1131/1128,
  15150. bottom: 39/1170
  15151. }
  15152. },
  15153. },
  15154. [
  15155. {
  15156. name: "Macro",
  15157. height: math.unit(500, "feet"),
  15158. default: true
  15159. },
  15160. {
  15161. name: "Megamacro",
  15162. height: math.unit(10, "miles")
  15163. },
  15164. {
  15165. name: "Gigamacro",
  15166. height: math.unit(100000, "miles")
  15167. },
  15168. {
  15169. name: "Examacro",
  15170. height: math.unit(1e9, "lightyears")
  15171. },
  15172. {
  15173. name: "Omniversal",
  15174. height: math.unit(1e33, "lightyears")
  15175. },
  15176. {
  15177. name: "Beyond Infinite",
  15178. height: math.unit(1e100, "lightyears")
  15179. },
  15180. ]
  15181. ))
  15182. characterMakers.push(() => makeCharacter(
  15183. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  15184. {
  15185. Side: {
  15186. height: math.unit(6, "feet"),
  15187. weight: math.unit(150, "lb"),
  15188. name: "Side",
  15189. image: {
  15190. source: "./media/characters/mira/side.svg",
  15191. extra: 900 / 799,
  15192. bottom: 0.02
  15193. }
  15194. },
  15195. },
  15196. [
  15197. {
  15198. name: "Human Size",
  15199. height: math.unit(6, "feet")
  15200. },
  15201. {
  15202. name: "Macro",
  15203. height: math.unit(100, "feet"),
  15204. default: true
  15205. },
  15206. {
  15207. name: "Megamacro",
  15208. height: math.unit(10, "miles")
  15209. },
  15210. {
  15211. name: "Gigamacro",
  15212. height: math.unit(25000, "miles")
  15213. },
  15214. {
  15215. name: "Teramacro",
  15216. height: math.unit(300, "AU")
  15217. },
  15218. {
  15219. name: "Full Size",
  15220. height: math.unit(4.5e10, "lightyears")
  15221. },
  15222. ]
  15223. ))
  15224. characterMakers.push(() => makeCharacter(
  15225. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  15226. {
  15227. front: {
  15228. height: math.unit(6, "feet"),
  15229. weight: math.unit(150, "lb"),
  15230. name: "Front",
  15231. image: {
  15232. source: "./media/characters/holly/front.svg",
  15233. extra: 639 / 606
  15234. }
  15235. },
  15236. back: {
  15237. height: math.unit(6, "feet"),
  15238. weight: math.unit(150, "lb"),
  15239. name: "Back",
  15240. image: {
  15241. source: "./media/characters/holly/back.svg",
  15242. extra: 623 / 598
  15243. }
  15244. },
  15245. frontWorking: {
  15246. height: math.unit(6, "feet"),
  15247. weight: math.unit(150, "lb"),
  15248. name: "Front (Working)",
  15249. image: {
  15250. source: "./media/characters/holly/front-working.svg",
  15251. extra: 607 / 577,
  15252. bottom: 0.048
  15253. }
  15254. },
  15255. },
  15256. [
  15257. {
  15258. name: "Normal",
  15259. height: math.unit(12 + 3 / 12, "feet"),
  15260. default: true
  15261. },
  15262. ]
  15263. ))
  15264. characterMakers.push(() => makeCharacter(
  15265. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  15266. {
  15267. front: {
  15268. height: math.unit(6, "feet"),
  15269. weight: math.unit(150, "lb"),
  15270. name: "Front",
  15271. image: {
  15272. source: "./media/characters/porter/front.svg",
  15273. extra: 1,
  15274. bottom: 0.01
  15275. }
  15276. },
  15277. frontRobes: {
  15278. height: math.unit(6, "feet"),
  15279. weight: math.unit(150, "lb"),
  15280. name: "Front (Robes)",
  15281. image: {
  15282. source: "./media/characters/porter/front-robes.svg",
  15283. extra: 1.01,
  15284. bottom: 0.01
  15285. }
  15286. },
  15287. },
  15288. [
  15289. {
  15290. name: "Normal",
  15291. height: math.unit(11 + 9 / 12, "feet"),
  15292. default: true
  15293. },
  15294. ]
  15295. ))
  15296. characterMakers.push(() => makeCharacter(
  15297. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  15298. {
  15299. legendary: {
  15300. height: math.unit(6, "feet"),
  15301. weight: math.unit(150, "lb"),
  15302. name: "Legendary",
  15303. image: {
  15304. source: "./media/characters/lucy/legendary.svg",
  15305. extra: 1355 / 1100,
  15306. bottom: 0.045
  15307. }
  15308. },
  15309. },
  15310. [
  15311. {
  15312. name: "Legendary",
  15313. height: math.unit(86882 * 2, "miles"),
  15314. default: true
  15315. },
  15316. ]
  15317. ))
  15318. characterMakers.push(() => makeCharacter(
  15319. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  15320. {
  15321. front: {
  15322. height: math.unit(6, "feet"),
  15323. weight: math.unit(150, "lb"),
  15324. name: "Front",
  15325. image: {
  15326. source: "./media/characters/drusilla/front.svg",
  15327. extra: 678 / 635,
  15328. bottom: 0.03
  15329. }
  15330. },
  15331. back: {
  15332. height: math.unit(6, "feet"),
  15333. weight: math.unit(150, "lb"),
  15334. name: "Back",
  15335. image: {
  15336. source: "./media/characters/drusilla/back.svg",
  15337. extra: 678 / 635,
  15338. bottom: 0.005
  15339. }
  15340. },
  15341. },
  15342. [
  15343. {
  15344. name: "Macro",
  15345. height: math.unit(100, "feet")
  15346. },
  15347. {
  15348. name: "Canon Height",
  15349. height: math.unit(2000, "feet"),
  15350. default: true
  15351. },
  15352. ]
  15353. ))
  15354. characterMakers.push(() => makeCharacter(
  15355. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  15356. {
  15357. front: {
  15358. height: math.unit(6, "feet"),
  15359. weight: math.unit(180, "lb"),
  15360. name: "Front",
  15361. image: {
  15362. source: "./media/characters/renard-thatch/front.svg",
  15363. extra: 2411 / 2275,
  15364. bottom: 0.01
  15365. }
  15366. },
  15367. frontPosing: {
  15368. height: math.unit(6, "feet"),
  15369. weight: math.unit(180, "lb"),
  15370. name: "Front (Posing)",
  15371. image: {
  15372. source: "./media/characters/renard-thatch/front-posing.svg",
  15373. extra: 2381 / 2261,
  15374. bottom: 0.01
  15375. }
  15376. },
  15377. back: {
  15378. height: math.unit(6, "feet"),
  15379. weight: math.unit(180, "lb"),
  15380. name: "Back",
  15381. image: {
  15382. source: "./media/characters/renard-thatch/back.svg",
  15383. extra: 2428 / 2288
  15384. }
  15385. },
  15386. },
  15387. [
  15388. {
  15389. name: "Micro",
  15390. height: math.unit(3, "inches")
  15391. },
  15392. {
  15393. name: "Default",
  15394. height: math.unit(6, "feet"),
  15395. default: true
  15396. },
  15397. {
  15398. name: "Macro",
  15399. height: math.unit(75, "feet")
  15400. },
  15401. ]
  15402. ))
  15403. characterMakers.push(() => makeCharacter(
  15404. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  15405. {
  15406. front: {
  15407. height: math.unit(1450, "feet"),
  15408. weight: math.unit(1.21e6, "tons"),
  15409. name: "Front",
  15410. image: {
  15411. source: "./media/characters/sekvra/front.svg",
  15412. extra: 1193/1190,
  15413. bottom: 78/1271
  15414. }
  15415. },
  15416. side: {
  15417. height: math.unit(1450, "feet"),
  15418. weight: math.unit(1.21e6, "tons"),
  15419. name: "Side",
  15420. image: {
  15421. source: "./media/characters/sekvra/side.svg",
  15422. extra: 1193/1190,
  15423. bottom: 52/1245
  15424. }
  15425. },
  15426. back: {
  15427. height: math.unit(1450, "feet"),
  15428. weight: math.unit(1.21e6, "tons"),
  15429. name: "Back",
  15430. image: {
  15431. source: "./media/characters/sekvra/back.svg",
  15432. extra: 1219/1216,
  15433. bottom: 21/1240
  15434. }
  15435. },
  15436. frontClothed: {
  15437. height: math.unit(1450, "feet"),
  15438. weight: math.unit(1.21e6, "tons"),
  15439. name: "Front (Clothed)",
  15440. image: {
  15441. source: "./media/characters/sekvra/front-clothed.svg",
  15442. extra: 1192/1189,
  15443. bottom: 79/1271
  15444. }
  15445. },
  15446. },
  15447. [
  15448. {
  15449. name: "Macro",
  15450. height: math.unit(1450, "feet"),
  15451. default: true
  15452. },
  15453. {
  15454. name: "Megamacro",
  15455. height: math.unit(15000, "feet")
  15456. },
  15457. ]
  15458. ))
  15459. characterMakers.push(() => makeCharacter(
  15460. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  15461. {
  15462. front: {
  15463. height: math.unit(6, "feet"),
  15464. weight: math.unit(150, "lb"),
  15465. name: "Front",
  15466. image: {
  15467. source: "./media/characters/carmine/front.svg",
  15468. extra: 1557/1538,
  15469. bottom: 68/1625
  15470. }
  15471. },
  15472. frontArmor: {
  15473. height: math.unit(6, "feet"),
  15474. weight: math.unit(150, "lb"),
  15475. name: "Front (Armor)",
  15476. image: {
  15477. source: "./media/characters/carmine/front-armor.svg",
  15478. extra: 1549/1530,
  15479. bottom: 82/1631
  15480. }
  15481. },
  15482. mouth: {
  15483. height: math.unit(0.55, "feet"),
  15484. name: "Mouth",
  15485. image: {
  15486. source: "./media/characters/carmine/mouth.svg"
  15487. }
  15488. },
  15489. hand: {
  15490. height: math.unit(1.05, "feet"),
  15491. name: "Hand",
  15492. image: {
  15493. source: "./media/characters/carmine/hand.svg"
  15494. }
  15495. },
  15496. foot: {
  15497. height: math.unit(0.6, "feet"),
  15498. name: "Foot",
  15499. image: {
  15500. source: "./media/characters/carmine/foot.svg"
  15501. }
  15502. },
  15503. },
  15504. [
  15505. {
  15506. name: "Large",
  15507. height: math.unit(1, "mile")
  15508. },
  15509. {
  15510. name: "Huge",
  15511. height: math.unit(40, "miles"),
  15512. default: true
  15513. },
  15514. {
  15515. name: "Colossal",
  15516. height: math.unit(2500, "miles")
  15517. },
  15518. ]
  15519. ))
  15520. characterMakers.push(() => makeCharacter(
  15521. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  15522. {
  15523. front: {
  15524. height: math.unit(6, "feet"),
  15525. weight: math.unit(150, "lb"),
  15526. name: "Front",
  15527. image: {
  15528. source: "./media/characters/elyssia/front.svg",
  15529. extra: 2201 / 2035,
  15530. bottom: 0.05
  15531. }
  15532. },
  15533. frontClothed: {
  15534. height: math.unit(6, "feet"),
  15535. weight: math.unit(150, "lb"),
  15536. name: "Front (Clothed)",
  15537. image: {
  15538. source: "./media/characters/elyssia/front-clothed.svg",
  15539. extra: 2201 / 2035,
  15540. bottom: 0.05
  15541. }
  15542. },
  15543. back: {
  15544. height: math.unit(6, "feet"),
  15545. weight: math.unit(150, "lb"),
  15546. name: "Back",
  15547. image: {
  15548. source: "./media/characters/elyssia/back.svg",
  15549. extra: 2201 / 2035,
  15550. bottom: 0.013
  15551. }
  15552. },
  15553. },
  15554. [
  15555. {
  15556. name: "Smaller",
  15557. height: math.unit(150, "feet")
  15558. },
  15559. {
  15560. name: "Standard",
  15561. height: math.unit(1400, "feet"),
  15562. default: true
  15563. },
  15564. {
  15565. name: "Distracted",
  15566. height: math.unit(15000, "feet")
  15567. },
  15568. ]
  15569. ))
  15570. characterMakers.push(() => makeCharacter(
  15571. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  15572. {
  15573. front: {
  15574. height: math.unit(7 + 4/12, "feet"),
  15575. weight: math.unit(690, "lb"),
  15576. name: "Front",
  15577. image: {
  15578. source: "./media/characters/geno-maxwell/front.svg",
  15579. extra: 984/856,
  15580. bottom: 87/1071
  15581. }
  15582. },
  15583. back: {
  15584. height: math.unit(7 + 4/12, "feet"),
  15585. weight: math.unit(690, "lb"),
  15586. name: "Back",
  15587. image: {
  15588. source: "./media/characters/geno-maxwell/back.svg",
  15589. extra: 981/854,
  15590. bottom: 57/1038
  15591. }
  15592. },
  15593. frontCostume: {
  15594. height: math.unit(7 + 4/12, "feet"),
  15595. weight: math.unit(690, "lb"),
  15596. name: "Front (Costume)",
  15597. image: {
  15598. source: "./media/characters/geno-maxwell/front-costume.svg",
  15599. extra: 984/856,
  15600. bottom: 87/1071
  15601. }
  15602. },
  15603. backcostume: {
  15604. height: math.unit(7 + 4/12, "feet"),
  15605. weight: math.unit(690, "lb"),
  15606. name: "Back (Costume)",
  15607. image: {
  15608. source: "./media/characters/geno-maxwell/back-costume.svg",
  15609. extra: 981/854,
  15610. bottom: 57/1038
  15611. }
  15612. },
  15613. },
  15614. [
  15615. {
  15616. name: "Micro",
  15617. height: math.unit(3, "inches")
  15618. },
  15619. {
  15620. name: "Normal",
  15621. height: math.unit(7 + 4 / 12, "feet"),
  15622. default: true
  15623. },
  15624. {
  15625. name: "Macro",
  15626. height: math.unit(220, "feet")
  15627. },
  15628. {
  15629. name: "Megamacro",
  15630. height: math.unit(11, "miles")
  15631. },
  15632. ]
  15633. ))
  15634. characterMakers.push(() => makeCharacter(
  15635. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15636. {
  15637. front: {
  15638. height: math.unit(7 + 4/12, "feet"),
  15639. weight: math.unit(750, "lb"),
  15640. name: "Front",
  15641. image: {
  15642. source: "./media/characters/regena-maxwell/front.svg",
  15643. extra: 984/856,
  15644. bottom: 87/1071
  15645. }
  15646. },
  15647. back: {
  15648. height: math.unit(7 + 4/12, "feet"),
  15649. weight: math.unit(750, "lb"),
  15650. name: "Back",
  15651. image: {
  15652. source: "./media/characters/regena-maxwell/back.svg",
  15653. extra: 981/854,
  15654. bottom: 57/1038
  15655. }
  15656. },
  15657. frontCostume: {
  15658. height: math.unit(7 + 4/12, "feet"),
  15659. weight: math.unit(750, "lb"),
  15660. name: "Front (Costume)",
  15661. image: {
  15662. source: "./media/characters/regena-maxwell/front-costume.svg",
  15663. extra: 984/856,
  15664. bottom: 87/1071
  15665. }
  15666. },
  15667. backcostume: {
  15668. height: math.unit(7 + 4/12, "feet"),
  15669. weight: math.unit(750, "lb"),
  15670. name: "Back (Costume)",
  15671. image: {
  15672. source: "./media/characters/regena-maxwell/back-costume.svg",
  15673. extra: 981/854,
  15674. bottom: 57/1038
  15675. }
  15676. },
  15677. },
  15678. [
  15679. {
  15680. name: "Normal",
  15681. height: math.unit(7 + 4 / 12, "feet"),
  15682. default: true
  15683. },
  15684. {
  15685. name: "Macro",
  15686. height: math.unit(220, "feet")
  15687. },
  15688. {
  15689. name: "Megamacro",
  15690. height: math.unit(11, "miles")
  15691. },
  15692. ]
  15693. ))
  15694. characterMakers.push(() => makeCharacter(
  15695. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15696. {
  15697. front: {
  15698. height: math.unit(6, "feet"),
  15699. weight: math.unit(150, "lb"),
  15700. name: "Front",
  15701. image: {
  15702. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15703. extra: 860 / 690,
  15704. bottom: 0.03
  15705. }
  15706. },
  15707. },
  15708. [
  15709. {
  15710. name: "Normal",
  15711. height: math.unit(1.7, "meters"),
  15712. default: true
  15713. },
  15714. ]
  15715. ))
  15716. characterMakers.push(() => makeCharacter(
  15717. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15718. {
  15719. front: {
  15720. height: math.unit(6, "feet"),
  15721. weight: math.unit(150, "lb"),
  15722. name: "Front",
  15723. image: {
  15724. source: "./media/characters/quilly/front.svg",
  15725. extra: 890 / 776
  15726. }
  15727. },
  15728. },
  15729. [
  15730. {
  15731. name: "Gigamacro",
  15732. height: math.unit(404090, "miles"),
  15733. default: true
  15734. },
  15735. ]
  15736. ))
  15737. characterMakers.push(() => makeCharacter(
  15738. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15739. {
  15740. front: {
  15741. height: math.unit(7 + 8 / 12, "feet"),
  15742. weight: math.unit(350, "lb"),
  15743. name: "Front",
  15744. image: {
  15745. source: "./media/characters/tempest/front.svg",
  15746. extra: 1175 / 1086,
  15747. bottom: 0.02
  15748. }
  15749. },
  15750. },
  15751. [
  15752. {
  15753. name: "Normal",
  15754. height: math.unit(7 + 8 / 12, "feet"),
  15755. default: true
  15756. },
  15757. ]
  15758. ))
  15759. characterMakers.push(() => makeCharacter(
  15760. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15761. {
  15762. side: {
  15763. height: math.unit(4 + 5 / 12, "feet"),
  15764. weight: math.unit(80, "lb"),
  15765. name: "Side",
  15766. image: {
  15767. source: "./media/characters/rodger/side.svg",
  15768. extra: 1235 / 1118
  15769. }
  15770. },
  15771. },
  15772. [
  15773. {
  15774. name: "Micro",
  15775. height: math.unit(1, "inch")
  15776. },
  15777. {
  15778. name: "Normal",
  15779. height: math.unit(4 + 5 / 12, "feet"),
  15780. default: true
  15781. },
  15782. {
  15783. name: "Macro",
  15784. height: math.unit(120, "feet")
  15785. },
  15786. ]
  15787. ))
  15788. characterMakers.push(() => makeCharacter(
  15789. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15790. {
  15791. front: {
  15792. height: math.unit(6, "feet"),
  15793. weight: math.unit(150, "lb"),
  15794. name: "Front",
  15795. image: {
  15796. source: "./media/characters/danyel/front.svg",
  15797. extra: 1185 / 1123,
  15798. bottom: 0.05
  15799. }
  15800. },
  15801. },
  15802. [
  15803. {
  15804. name: "Shrunken",
  15805. height: math.unit(0.5, "mm")
  15806. },
  15807. {
  15808. name: "Micro",
  15809. height: math.unit(1, "mm"),
  15810. default: true
  15811. },
  15812. {
  15813. name: "Upsized",
  15814. height: math.unit(5 + 5 / 12, "feet")
  15815. },
  15816. ]
  15817. ))
  15818. characterMakers.push(() => makeCharacter(
  15819. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15820. {
  15821. front: {
  15822. height: math.unit(5 + 6 / 12, "feet"),
  15823. weight: math.unit(200, "lb"),
  15824. name: "Front",
  15825. image: {
  15826. source: "./media/characters/vivian-bijoux/front.svg",
  15827. extra: 1217/1209,
  15828. bottom: 76/1293
  15829. }
  15830. },
  15831. back: {
  15832. height: math.unit(5 + 6 / 12, "feet"),
  15833. weight: math.unit(200, "lb"),
  15834. name: "Back",
  15835. image: {
  15836. source: "./media/characters/vivian-bijoux/back.svg",
  15837. extra: 1214/1208,
  15838. bottom: 51/1265
  15839. }
  15840. },
  15841. dressed: {
  15842. height: math.unit(5 + 6 / 12, "feet"),
  15843. weight: math.unit(200, "lb"),
  15844. name: "Dressed",
  15845. image: {
  15846. source: "./media/characters/vivian-bijoux/dressed.svg",
  15847. extra: 1217/1209,
  15848. bottom: 76/1293
  15849. }
  15850. },
  15851. },
  15852. [
  15853. {
  15854. name: "Normal",
  15855. height: math.unit(5 + 6 / 12, "feet"),
  15856. default: true
  15857. },
  15858. {
  15859. name: "Bad Dream",
  15860. height: math.unit(500, "feet")
  15861. },
  15862. {
  15863. name: "Nightmare",
  15864. height: math.unit(500, "miles")
  15865. },
  15866. ]
  15867. ))
  15868. characterMakers.push(() => makeCharacter(
  15869. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15870. {
  15871. front: {
  15872. height: math.unit(6 + 1 / 12, "feet"),
  15873. weight: math.unit(260, "lb"),
  15874. name: "Front",
  15875. image: {
  15876. source: "./media/characters/zeta/front.svg",
  15877. extra: 1968 / 1889,
  15878. bottom: 0.06
  15879. }
  15880. },
  15881. back: {
  15882. height: math.unit(6 + 1 / 12, "feet"),
  15883. weight: math.unit(260, "lb"),
  15884. name: "Back",
  15885. image: {
  15886. source: "./media/characters/zeta/back.svg",
  15887. extra: 1944 / 1858,
  15888. bottom: 0.03
  15889. }
  15890. },
  15891. hand: {
  15892. height: math.unit(1.112, "feet"),
  15893. name: "Hand",
  15894. image: {
  15895. source: "./media/characters/zeta/hand.svg"
  15896. }
  15897. },
  15898. foot: {
  15899. height: math.unit(1.48, "feet"),
  15900. name: "Foot",
  15901. image: {
  15902. source: "./media/characters/zeta/foot.svg"
  15903. }
  15904. },
  15905. },
  15906. [
  15907. {
  15908. name: "Micro",
  15909. height: math.unit(6, "inches")
  15910. },
  15911. {
  15912. name: "Normal",
  15913. height: math.unit(6 + 1 / 12, "feet"),
  15914. default: true
  15915. },
  15916. {
  15917. name: "Macro",
  15918. height: math.unit(20, "feet")
  15919. },
  15920. ]
  15921. ))
  15922. characterMakers.push(() => makeCharacter(
  15923. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15924. {
  15925. front: {
  15926. height: math.unit(6, "feet"),
  15927. weight: math.unit(150, "lb"),
  15928. name: "Front",
  15929. image: {
  15930. source: "./media/characters/jamie-larsen/front.svg",
  15931. extra: 962 / 933,
  15932. bottom: 0.02
  15933. }
  15934. },
  15935. back: {
  15936. height: math.unit(6, "feet"),
  15937. weight: math.unit(150, "lb"),
  15938. name: "Back",
  15939. image: {
  15940. source: "./media/characters/jamie-larsen/back.svg",
  15941. extra: 997 / 946
  15942. }
  15943. },
  15944. },
  15945. [
  15946. {
  15947. name: "Macro",
  15948. height: math.unit(28 + 7 / 12, "feet"),
  15949. default: true
  15950. },
  15951. {
  15952. name: "Macro+",
  15953. height: math.unit(180, "feet")
  15954. },
  15955. {
  15956. name: "Megamacro",
  15957. height: math.unit(10, "miles")
  15958. },
  15959. {
  15960. name: "Gigamacro",
  15961. height: math.unit(200000, "miles")
  15962. },
  15963. ]
  15964. ))
  15965. characterMakers.push(() => makeCharacter(
  15966. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15967. {
  15968. front: {
  15969. height: math.unit(6, "feet"),
  15970. weight: math.unit(120, "lb"),
  15971. name: "Front",
  15972. image: {
  15973. source: "./media/characters/vance/front.svg",
  15974. extra: 1980 / 1890,
  15975. bottom: 0.09
  15976. }
  15977. },
  15978. back: {
  15979. height: math.unit(6, "feet"),
  15980. weight: math.unit(120, "lb"),
  15981. name: "Back",
  15982. image: {
  15983. source: "./media/characters/vance/back.svg",
  15984. extra: 2081 / 1994,
  15985. bottom: 0.014
  15986. }
  15987. },
  15988. hand: {
  15989. height: math.unit(0.88, "feet"),
  15990. name: "Hand",
  15991. image: {
  15992. source: "./media/characters/vance/hand.svg"
  15993. }
  15994. },
  15995. foot: {
  15996. height: math.unit(0.64, "feet"),
  15997. name: "Foot",
  15998. image: {
  15999. source: "./media/characters/vance/foot.svg"
  16000. }
  16001. },
  16002. },
  16003. [
  16004. {
  16005. name: "Small",
  16006. height: math.unit(90, "feet"),
  16007. default: true
  16008. },
  16009. {
  16010. name: "Macro",
  16011. height: math.unit(100, "meters")
  16012. },
  16013. {
  16014. name: "Megamacro",
  16015. height: math.unit(15, "miles")
  16016. },
  16017. ]
  16018. ))
  16019. characterMakers.push(() => makeCharacter(
  16020. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  16021. {
  16022. front: {
  16023. height: math.unit(6, "feet"),
  16024. weight: math.unit(180, "lb"),
  16025. name: "Front",
  16026. image: {
  16027. source: "./media/characters/xochitl/front.svg",
  16028. extra: 2297 / 2261,
  16029. bottom: 0.065
  16030. }
  16031. },
  16032. back: {
  16033. height: math.unit(6, "feet"),
  16034. weight: math.unit(180, "lb"),
  16035. name: "Back",
  16036. image: {
  16037. source: "./media/characters/xochitl/back.svg",
  16038. extra: 2386 / 2354,
  16039. bottom: 0.01
  16040. }
  16041. },
  16042. foot: {
  16043. height: math.unit(6 / 5 * 1.15, "feet"),
  16044. weight: math.unit(150, "lb"),
  16045. name: "Foot",
  16046. image: {
  16047. source: "./media/characters/xochitl/foot.svg"
  16048. }
  16049. },
  16050. },
  16051. [
  16052. {
  16053. name: "Macro",
  16054. height: math.unit(80, "feet")
  16055. },
  16056. {
  16057. name: "Macro+",
  16058. height: math.unit(400, "feet"),
  16059. default: true
  16060. },
  16061. {
  16062. name: "Gigamacro",
  16063. height: math.unit(80000, "miles")
  16064. },
  16065. {
  16066. name: "Gigamacro+",
  16067. height: math.unit(400000, "miles")
  16068. },
  16069. {
  16070. name: "Teramacro",
  16071. height: math.unit(300, "AU")
  16072. },
  16073. ]
  16074. ))
  16075. characterMakers.push(() => makeCharacter(
  16076. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  16077. {
  16078. front: {
  16079. height: math.unit(6, "feet"),
  16080. weight: math.unit(150, "lb"),
  16081. name: "Front",
  16082. image: {
  16083. source: "./media/characters/vincent/front.svg",
  16084. extra: 1130 / 1080,
  16085. bottom: 0.055
  16086. }
  16087. },
  16088. beak: {
  16089. height: math.unit(6 * 0.1, "feet"),
  16090. name: "Beak",
  16091. image: {
  16092. source: "./media/characters/vincent/beak.svg"
  16093. }
  16094. },
  16095. hand: {
  16096. height: math.unit(6 * 0.85, "feet"),
  16097. weight: math.unit(150, "lb"),
  16098. name: "Hand",
  16099. image: {
  16100. source: "./media/characters/vincent/hand.svg"
  16101. }
  16102. },
  16103. foot: {
  16104. height: math.unit(6 * 0.19, "feet"),
  16105. weight: math.unit(150, "lb"),
  16106. name: "Foot",
  16107. image: {
  16108. source: "./media/characters/vincent/foot.svg"
  16109. }
  16110. },
  16111. },
  16112. [
  16113. {
  16114. name: "Base",
  16115. height: math.unit(6 + 5 / 12, "feet"),
  16116. default: true
  16117. },
  16118. {
  16119. name: "Macro",
  16120. height: math.unit(300, "feet")
  16121. },
  16122. {
  16123. name: "Megamacro",
  16124. height: math.unit(2, "miles")
  16125. },
  16126. {
  16127. name: "Gigamacro",
  16128. height: math.unit(1000, "miles")
  16129. },
  16130. ]
  16131. ))
  16132. characterMakers.push(() => makeCharacter(
  16133. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  16134. {
  16135. front: {
  16136. height: math.unit(2, "meters"),
  16137. weight: math.unit(500, "kg"),
  16138. name: "Front",
  16139. image: {
  16140. source: "./media/characters/coatl/front.svg",
  16141. extra: 3948 / 3500,
  16142. bottom: 0.082
  16143. }
  16144. },
  16145. },
  16146. [
  16147. {
  16148. name: "Normal",
  16149. height: math.unit(4, "meters")
  16150. },
  16151. {
  16152. name: "Macro",
  16153. height: math.unit(100, "meters"),
  16154. default: true
  16155. },
  16156. {
  16157. name: "Macro+",
  16158. height: math.unit(300, "meters")
  16159. },
  16160. {
  16161. name: "Megamacro",
  16162. height: math.unit(3, "gigameters")
  16163. },
  16164. {
  16165. name: "Megamacro+",
  16166. height: math.unit(300, "terameters")
  16167. },
  16168. {
  16169. name: "Megamacro++",
  16170. height: math.unit(3, "lightyears")
  16171. },
  16172. ]
  16173. ))
  16174. characterMakers.push(() => makeCharacter(
  16175. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  16176. {
  16177. front: {
  16178. height: math.unit(6, "feet"),
  16179. weight: math.unit(50, "kg"),
  16180. name: "front",
  16181. image: {
  16182. source: "./media/characters/shiroryu/front.svg",
  16183. extra: 1990 / 1935
  16184. }
  16185. },
  16186. },
  16187. [
  16188. {
  16189. name: "Mortal Mingling",
  16190. height: math.unit(3, "meters")
  16191. },
  16192. {
  16193. name: "Kaiju-ish",
  16194. height: math.unit(250, "meters")
  16195. },
  16196. {
  16197. name: "Somewhat Godly",
  16198. height: math.unit(400, "km"),
  16199. default: true
  16200. },
  16201. {
  16202. name: "Planetary",
  16203. height: math.unit(300, "megameters")
  16204. },
  16205. {
  16206. name: "Galaxy-dwarfing",
  16207. height: math.unit(450, "kiloparsecs")
  16208. },
  16209. {
  16210. name: "Universe Eater",
  16211. height: math.unit(150, "gigaparsecs")
  16212. },
  16213. {
  16214. name: "Almost Immeasurable",
  16215. height: math.unit(1.3e266, "yottaparsecs")
  16216. },
  16217. ]
  16218. ))
  16219. characterMakers.push(() => makeCharacter(
  16220. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  16221. {
  16222. front: {
  16223. height: math.unit(6, "feet"),
  16224. weight: math.unit(150, "lb"),
  16225. name: "Front",
  16226. image: {
  16227. source: "./media/characters/umeko/front.svg",
  16228. extra: 1,
  16229. bottom: 0.019
  16230. }
  16231. },
  16232. frontArmored: {
  16233. height: math.unit(6, "feet"),
  16234. weight: math.unit(150, "lb"),
  16235. name: "Front (Armored)",
  16236. image: {
  16237. source: "./media/characters/umeko/front-armored.svg",
  16238. extra: 1,
  16239. bottom: 0.021
  16240. }
  16241. },
  16242. },
  16243. [
  16244. {
  16245. name: "Macro",
  16246. height: math.unit(220, "feet"),
  16247. default: true
  16248. },
  16249. {
  16250. name: "Guardian Dragon",
  16251. height: math.unit(50, "miles")
  16252. },
  16253. {
  16254. name: "Cosmic",
  16255. height: math.unit(800000, "miles")
  16256. },
  16257. ]
  16258. ))
  16259. characterMakers.push(() => makeCharacter(
  16260. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  16261. {
  16262. front: {
  16263. height: math.unit(6, "feet"),
  16264. weight: math.unit(150, "lb"),
  16265. name: "Front",
  16266. image: {
  16267. source: "./media/characters/cassidy/front.svg",
  16268. extra: 810/808,
  16269. bottom: 41/851
  16270. }
  16271. },
  16272. },
  16273. [
  16274. {
  16275. name: "Canon Height",
  16276. height: math.unit(120, "feet"),
  16277. default: true
  16278. },
  16279. {
  16280. name: "Macro+",
  16281. height: math.unit(400, "feet")
  16282. },
  16283. {
  16284. name: "Macro++",
  16285. height: math.unit(4000, "feet")
  16286. },
  16287. {
  16288. name: "Megamacro",
  16289. height: math.unit(3, "miles")
  16290. },
  16291. ]
  16292. ))
  16293. characterMakers.push(() => makeCharacter(
  16294. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  16295. {
  16296. front: {
  16297. height: math.unit(6, "feet"),
  16298. weight: math.unit(150, "lb"),
  16299. name: "Front",
  16300. image: {
  16301. source: "./media/characters/isaac/front.svg",
  16302. extra: 896 / 815,
  16303. bottom: 0.11
  16304. }
  16305. },
  16306. },
  16307. [
  16308. {
  16309. name: "Human Size",
  16310. height: math.unit(8, "feet"),
  16311. default: true
  16312. },
  16313. {
  16314. name: "Macro",
  16315. height: math.unit(400, "feet")
  16316. },
  16317. {
  16318. name: "Megamacro",
  16319. height: math.unit(50, "miles")
  16320. },
  16321. {
  16322. name: "Canon Height",
  16323. height: math.unit(200, "AU")
  16324. },
  16325. ]
  16326. ))
  16327. characterMakers.push(() => makeCharacter(
  16328. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  16329. {
  16330. front: {
  16331. height: math.unit(6, "feet"),
  16332. weight: math.unit(72, "kg"),
  16333. name: "Front",
  16334. image: {
  16335. source: "./media/characters/sleekit/front.svg",
  16336. extra: 4693 / 4487,
  16337. bottom: 0.012
  16338. }
  16339. },
  16340. },
  16341. [
  16342. {
  16343. name: "Minimum Height",
  16344. height: math.unit(10, "meters")
  16345. },
  16346. {
  16347. name: "Smaller",
  16348. height: math.unit(25, "meters")
  16349. },
  16350. {
  16351. name: "Larger",
  16352. height: math.unit(38, "meters"),
  16353. default: true
  16354. },
  16355. {
  16356. name: "Maximum height",
  16357. height: math.unit(100, "meters")
  16358. },
  16359. ]
  16360. ))
  16361. characterMakers.push(() => makeCharacter(
  16362. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  16363. {
  16364. front: {
  16365. height: math.unit(6, "feet"),
  16366. weight: math.unit(150, "lb"),
  16367. name: "Front",
  16368. image: {
  16369. source: "./media/characters/nillia/front.svg",
  16370. extra: 719/665,
  16371. bottom: 6/725
  16372. }
  16373. },
  16374. back: {
  16375. height: math.unit(6, "feet"),
  16376. weight: math.unit(150, "lb"),
  16377. name: "Back",
  16378. image: {
  16379. source: "./media/characters/nillia/back.svg",
  16380. extra: 705/651,
  16381. bottom: 5/710
  16382. }
  16383. },
  16384. },
  16385. [
  16386. {
  16387. name: "Canon Height",
  16388. height: math.unit(489, "feet"),
  16389. default: true
  16390. }
  16391. ]
  16392. ))
  16393. characterMakers.push(() => makeCharacter(
  16394. { name: "Mesmyriza", species: ["shark", "dragon", "robot", "deity"], tags: ["anthro"] },
  16395. {
  16396. front: {
  16397. height: math.unit(6, "feet"),
  16398. weight: math.unit(150, "lb"),
  16399. name: "Front",
  16400. image: {
  16401. source: "./media/characters/mesmyriza/front.svg",
  16402. extra: 1541/1291,
  16403. bottom: 87/1628
  16404. }
  16405. },
  16406. foot: {
  16407. height: math.unit(6 / (250 / 35), "feet"),
  16408. name: "Foot",
  16409. image: {
  16410. source: "./media/characters/mesmyriza/foot.svg"
  16411. }
  16412. },
  16413. },
  16414. [
  16415. {
  16416. name: "Macro",
  16417. height: math.unit(457, "meters"),
  16418. default: true
  16419. },
  16420. {
  16421. name: "Megamacro",
  16422. height: math.unit(8, "megameters")
  16423. },
  16424. ]
  16425. ))
  16426. characterMakers.push(() => makeCharacter(
  16427. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  16428. {
  16429. front: {
  16430. height: math.unit(6, "feet"),
  16431. weight: math.unit(250, "lb"),
  16432. name: "Front",
  16433. image: {
  16434. source: "./media/characters/saudade/front.svg",
  16435. extra: 1172 / 1139,
  16436. bottom: 0.035
  16437. }
  16438. },
  16439. },
  16440. [
  16441. {
  16442. name: "Micro",
  16443. height: math.unit(3, "inches")
  16444. },
  16445. {
  16446. name: "Normal",
  16447. height: math.unit(6, "feet"),
  16448. default: true
  16449. },
  16450. {
  16451. name: "Macro",
  16452. height: math.unit(50, "feet")
  16453. },
  16454. {
  16455. name: "Megamacro",
  16456. height: math.unit(2800, "feet")
  16457. },
  16458. ]
  16459. ))
  16460. characterMakers.push(() => makeCharacter(
  16461. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  16462. {
  16463. front: {
  16464. height: math.unit(5 + 4 / 12, "feet"),
  16465. weight: math.unit(100, "lb"),
  16466. name: "Front",
  16467. image: {
  16468. source: "./media/characters/keireer/front.svg",
  16469. extra: 716 / 666,
  16470. bottom: 0.05
  16471. }
  16472. },
  16473. },
  16474. [
  16475. {
  16476. name: "Normal",
  16477. height: math.unit(5 + 4 / 12, "feet"),
  16478. default: true
  16479. },
  16480. ]
  16481. ))
  16482. characterMakers.push(() => makeCharacter(
  16483. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  16484. {
  16485. front: {
  16486. height: math.unit(5.5, "feet"),
  16487. weight: math.unit(90, "kg"),
  16488. name: "Front",
  16489. image: {
  16490. source: "./media/characters/mirja/front.svg",
  16491. extra: 1452/1262,
  16492. bottom: 67/1519
  16493. }
  16494. },
  16495. frontDressed: {
  16496. height: math.unit(5.5, "feet"),
  16497. weight: math.unit(90, "lb"),
  16498. name: "Front (Dressed)",
  16499. image: {
  16500. source: "./media/characters/mirja/dressed.svg",
  16501. extra: 1452/1262,
  16502. bottom: 67/1519
  16503. }
  16504. },
  16505. back: {
  16506. height: math.unit(6, "feet"),
  16507. weight: math.unit(90, "lb"),
  16508. name: "Back",
  16509. image: {
  16510. source: "./media/characters/mirja/back.svg",
  16511. extra: 1892/1795,
  16512. bottom: 48/1940
  16513. }
  16514. },
  16515. maw: {
  16516. height: math.unit(1.312, "feet"),
  16517. name: "Maw",
  16518. image: {
  16519. source: "./media/characters/mirja/maw.svg"
  16520. }
  16521. },
  16522. paw: {
  16523. height: math.unit(1.15, "feet"),
  16524. name: "Paw",
  16525. image: {
  16526. source: "./media/characters/mirja/paw.svg"
  16527. }
  16528. },
  16529. },
  16530. [
  16531. {
  16532. name: "\"Incognito\"",
  16533. height: math.unit(3, "meters")
  16534. },
  16535. {
  16536. name: "Strolling Size",
  16537. height: math.unit(15, "km")
  16538. },
  16539. {
  16540. name: "Larger Strolling Size",
  16541. height: math.unit(400, "km")
  16542. },
  16543. {
  16544. name: "Preferred Size",
  16545. height: math.unit(5000, "km"),
  16546. default: true
  16547. },
  16548. {
  16549. name: "True Size",
  16550. height: math.unit(30657809462086840000000000000000, "parsecs"),
  16551. },
  16552. ]
  16553. ))
  16554. characterMakers.push(() => makeCharacter(
  16555. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  16556. {
  16557. front: {
  16558. height: math.unit(15, "feet"),
  16559. weight: math.unit(880, "kg"),
  16560. name: "Front",
  16561. image: {
  16562. source: "./media/characters/nightraver/front.svg",
  16563. extra: 2444 / 2160,
  16564. bottom: 0.027
  16565. }
  16566. },
  16567. back: {
  16568. height: math.unit(15, "feet"),
  16569. weight: math.unit(880, "kg"),
  16570. name: "Back",
  16571. image: {
  16572. source: "./media/characters/nightraver/back.svg",
  16573. extra: 2309 / 2180,
  16574. bottom: 0.005
  16575. }
  16576. },
  16577. sole: {
  16578. height: math.unit(2.878, "feet"),
  16579. name: "Sole",
  16580. image: {
  16581. source: "./media/characters/nightraver/sole.svg"
  16582. }
  16583. },
  16584. foot: {
  16585. height: math.unit(2.285, "feet"),
  16586. name: "Foot",
  16587. image: {
  16588. source: "./media/characters/nightraver/foot.svg"
  16589. }
  16590. },
  16591. maw: {
  16592. height: math.unit(2.67, "feet"),
  16593. name: "Maw",
  16594. image: {
  16595. source: "./media/characters/nightraver/maw.svg"
  16596. }
  16597. },
  16598. },
  16599. [
  16600. {
  16601. name: "Micro",
  16602. height: math.unit(1, "cm")
  16603. },
  16604. {
  16605. name: "Normal",
  16606. height: math.unit(15, "feet"),
  16607. default: true
  16608. },
  16609. {
  16610. name: "Macro",
  16611. height: math.unit(300, "feet")
  16612. },
  16613. {
  16614. name: "Megamacro",
  16615. height: math.unit(300, "miles")
  16616. },
  16617. {
  16618. name: "Gigamacro",
  16619. height: math.unit(10000, "miles")
  16620. },
  16621. ]
  16622. ))
  16623. characterMakers.push(() => makeCharacter(
  16624. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16625. {
  16626. side: {
  16627. height: math.unit(2, "inches"),
  16628. weight: math.unit(5, "grams"),
  16629. name: "Side",
  16630. image: {
  16631. source: "./media/characters/arc/side.svg"
  16632. }
  16633. },
  16634. },
  16635. [
  16636. {
  16637. name: "Micro",
  16638. height: math.unit(2, "inches"),
  16639. default: true
  16640. },
  16641. ]
  16642. ))
  16643. characterMakers.push(() => makeCharacter(
  16644. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16645. {
  16646. front: {
  16647. height: math.unit(1.1938, "meters"),
  16648. weight: math.unit(54, "kg"),
  16649. name: "Front",
  16650. image: {
  16651. source: "./media/characters/nebula-shahar/front.svg",
  16652. extra: 1642 / 1436,
  16653. bottom: 0.06
  16654. }
  16655. },
  16656. },
  16657. [
  16658. {
  16659. name: "Megamicro",
  16660. height: math.unit(0.3, "mm")
  16661. },
  16662. {
  16663. name: "Micro",
  16664. height: math.unit(3, "cm")
  16665. },
  16666. {
  16667. name: "Normal",
  16668. height: math.unit(138, "cm"),
  16669. default: true
  16670. },
  16671. {
  16672. name: "Macro",
  16673. height: math.unit(30, "m")
  16674. },
  16675. ]
  16676. ))
  16677. characterMakers.push(() => makeCharacter(
  16678. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16679. {
  16680. front: {
  16681. height: math.unit(5.24, "feet"),
  16682. weight: math.unit(150, "lb"),
  16683. name: "Front",
  16684. image: {
  16685. source: "./media/characters/shayla/front.svg",
  16686. extra: 1512 / 1414,
  16687. bottom: 0.01
  16688. }
  16689. },
  16690. back: {
  16691. height: math.unit(5.24, "feet"),
  16692. weight: math.unit(150, "lb"),
  16693. name: "Back",
  16694. image: {
  16695. source: "./media/characters/shayla/back.svg",
  16696. extra: 1512 / 1414
  16697. }
  16698. },
  16699. hand: {
  16700. height: math.unit(0.7781496062992126, "feet"),
  16701. name: "Hand",
  16702. image: {
  16703. source: "./media/characters/shayla/hand.svg"
  16704. }
  16705. },
  16706. foot: {
  16707. height: math.unit(1.4206036745406823, "feet"),
  16708. name: "Foot",
  16709. image: {
  16710. source: "./media/characters/shayla/foot.svg"
  16711. }
  16712. },
  16713. },
  16714. [
  16715. {
  16716. name: "Micro",
  16717. height: math.unit(0.32, "feet")
  16718. },
  16719. {
  16720. name: "Normal",
  16721. height: math.unit(5.24, "feet"),
  16722. default: true
  16723. },
  16724. {
  16725. name: "Macro",
  16726. height: math.unit(492.12, "feet")
  16727. },
  16728. {
  16729. name: "Megamacro",
  16730. height: math.unit(186.41, "miles")
  16731. },
  16732. ]
  16733. ))
  16734. characterMakers.push(() => makeCharacter(
  16735. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16736. {
  16737. front: {
  16738. height: math.unit(2.2, "m"),
  16739. weight: math.unit(120, "kg"),
  16740. name: "Front",
  16741. image: {
  16742. source: "./media/characters/pia-jr/front.svg",
  16743. extra: 1000 / 970,
  16744. bottom: 0.035
  16745. }
  16746. },
  16747. hand: {
  16748. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16749. name: "Hand",
  16750. image: {
  16751. source: "./media/characters/pia-jr/hand.svg"
  16752. }
  16753. },
  16754. paw: {
  16755. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16756. name: "Paw",
  16757. image: {
  16758. source: "./media/characters/pia-jr/paw.svg"
  16759. }
  16760. },
  16761. },
  16762. [
  16763. {
  16764. name: "Micro",
  16765. height: math.unit(1.2, "cm")
  16766. },
  16767. {
  16768. name: "Normal",
  16769. height: math.unit(2.2, "m"),
  16770. default: true
  16771. },
  16772. {
  16773. name: "Macro",
  16774. height: math.unit(180, "m")
  16775. },
  16776. {
  16777. name: "Megamacro",
  16778. height: math.unit(420, "km")
  16779. },
  16780. ]
  16781. ))
  16782. characterMakers.push(() => makeCharacter(
  16783. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16784. {
  16785. front: {
  16786. height: math.unit(2, "m"),
  16787. weight: math.unit(115, "kg"),
  16788. name: "Front",
  16789. image: {
  16790. source: "./media/characters/pia-sr/front.svg",
  16791. extra: 760 / 730,
  16792. bottom: 0.015
  16793. }
  16794. },
  16795. back: {
  16796. height: math.unit(2, "m"),
  16797. weight: math.unit(115, "kg"),
  16798. name: "Back",
  16799. image: {
  16800. source: "./media/characters/pia-sr/back.svg",
  16801. extra: 760 / 730,
  16802. bottom: 0.01
  16803. }
  16804. },
  16805. hand: {
  16806. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16807. name: "Hand",
  16808. image: {
  16809. source: "./media/characters/pia-sr/hand.svg"
  16810. }
  16811. },
  16812. foot: {
  16813. height: math.unit(1.83, "feet"),
  16814. name: "Foot",
  16815. image: {
  16816. source: "./media/characters/pia-sr/foot.svg"
  16817. }
  16818. },
  16819. },
  16820. [
  16821. {
  16822. name: "Micro",
  16823. height: math.unit(88, "mm")
  16824. },
  16825. {
  16826. name: "Normal",
  16827. height: math.unit(2, "m"),
  16828. default: true
  16829. },
  16830. {
  16831. name: "Macro",
  16832. height: math.unit(200, "m")
  16833. },
  16834. {
  16835. name: "Megamacro",
  16836. height: math.unit(420, "km")
  16837. },
  16838. ]
  16839. ))
  16840. characterMakers.push(() => makeCharacter(
  16841. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16842. {
  16843. front: {
  16844. height: math.unit(8 + 2 / 12, "feet"),
  16845. weight: math.unit(300, "lb"),
  16846. name: "Front",
  16847. image: {
  16848. source: "./media/characters/kibibyte/front.svg",
  16849. extra: 2221 / 2098,
  16850. bottom: 0.04
  16851. }
  16852. },
  16853. },
  16854. [
  16855. {
  16856. name: "Normal",
  16857. height: math.unit(8 + 2 / 12, "feet"),
  16858. default: true
  16859. },
  16860. {
  16861. name: "Socialable Macro",
  16862. height: math.unit(50, "feet")
  16863. },
  16864. {
  16865. name: "Macro",
  16866. height: math.unit(300, "feet")
  16867. },
  16868. {
  16869. name: "Megamacro",
  16870. height: math.unit(500, "miles")
  16871. },
  16872. ]
  16873. ))
  16874. characterMakers.push(() => makeCharacter(
  16875. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16876. {
  16877. front: {
  16878. height: math.unit(6, "feet"),
  16879. weight: math.unit(150, "lb"),
  16880. name: "Front",
  16881. image: {
  16882. source: "./media/characters/felix/front.svg",
  16883. extra: 762 / 722,
  16884. bottom: 0.02
  16885. }
  16886. },
  16887. frontClothed: {
  16888. height: math.unit(6, "feet"),
  16889. weight: math.unit(150, "lb"),
  16890. name: "Front (Clothed)",
  16891. image: {
  16892. source: "./media/characters/felix/front-clothed.svg",
  16893. extra: 762 / 722,
  16894. bottom: 0.02
  16895. }
  16896. },
  16897. },
  16898. [
  16899. {
  16900. name: "Normal",
  16901. height: math.unit(6 + 8 / 12, "feet"),
  16902. default: true
  16903. },
  16904. {
  16905. name: "Macro",
  16906. height: math.unit(2600, "feet")
  16907. },
  16908. {
  16909. name: "Megamacro",
  16910. height: math.unit(450, "miles")
  16911. },
  16912. ]
  16913. ))
  16914. characterMakers.push(() => makeCharacter(
  16915. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16916. {
  16917. front: {
  16918. height: math.unit(6 + 1 / 12, "feet"),
  16919. weight: math.unit(250, "lb"),
  16920. name: "Front",
  16921. image: {
  16922. source: "./media/characters/tobo/front.svg",
  16923. extra: 608 / 586,
  16924. bottom: 0.023
  16925. }
  16926. },
  16927. back: {
  16928. height: math.unit(6 + 1 / 12, "feet"),
  16929. weight: math.unit(250, "lb"),
  16930. name: "Back",
  16931. image: {
  16932. source: "./media/characters/tobo/back.svg",
  16933. extra: 608 / 586
  16934. }
  16935. },
  16936. },
  16937. [
  16938. {
  16939. name: "Nano",
  16940. height: math.unit(2, "nm")
  16941. },
  16942. {
  16943. name: "Megamicro",
  16944. height: math.unit(0.1, "mm")
  16945. },
  16946. {
  16947. name: "Micro",
  16948. height: math.unit(1, "inch"),
  16949. default: true
  16950. },
  16951. {
  16952. name: "Human-sized",
  16953. height: math.unit(6 + 1 / 12, "feet")
  16954. },
  16955. {
  16956. name: "Macro",
  16957. height: math.unit(250, "feet")
  16958. },
  16959. {
  16960. name: "Megamacro",
  16961. height: math.unit(75, "miles")
  16962. },
  16963. {
  16964. name: "Texas-sized",
  16965. height: math.unit(750, "miles")
  16966. },
  16967. {
  16968. name: "Teramacro",
  16969. height: math.unit(50000, "miles")
  16970. },
  16971. ]
  16972. ))
  16973. characterMakers.push(() => makeCharacter(
  16974. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16975. {
  16976. front: {
  16977. height: math.unit(6, "feet"),
  16978. weight: math.unit(269, "lb"),
  16979. name: "Front",
  16980. image: {
  16981. source: "./media/characters/danny-kapowsky/front.svg",
  16982. extra: 766 / 736,
  16983. bottom: 0.044
  16984. }
  16985. },
  16986. back: {
  16987. height: math.unit(6, "feet"),
  16988. weight: math.unit(269, "lb"),
  16989. name: "Back",
  16990. image: {
  16991. source: "./media/characters/danny-kapowsky/back.svg",
  16992. extra: 797 / 760,
  16993. bottom: 0.025
  16994. }
  16995. },
  16996. },
  16997. [
  16998. {
  16999. name: "Macro",
  17000. height: math.unit(150, "feet"),
  17001. default: true
  17002. },
  17003. {
  17004. name: "Macro+",
  17005. height: math.unit(200, "feet")
  17006. },
  17007. {
  17008. name: "Macro++",
  17009. height: math.unit(300, "feet")
  17010. },
  17011. {
  17012. name: "Macro+++",
  17013. height: math.unit(400, "feet")
  17014. },
  17015. ]
  17016. ))
  17017. characterMakers.push(() => makeCharacter(
  17018. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  17019. {
  17020. side: {
  17021. height: math.unit(6, "feet"),
  17022. weight: math.unit(170, "lb"),
  17023. name: "Side",
  17024. image: {
  17025. source: "./media/characters/finn/side.svg",
  17026. extra: 1953 / 1807,
  17027. bottom: 0.057
  17028. }
  17029. },
  17030. },
  17031. [
  17032. {
  17033. name: "Megamacro",
  17034. height: math.unit(14445, "feet"),
  17035. default: true
  17036. },
  17037. ]
  17038. ))
  17039. characterMakers.push(() => makeCharacter(
  17040. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  17041. {
  17042. front: {
  17043. height: math.unit(5 + 6 / 12, "feet"),
  17044. weight: math.unit(125, "lb"),
  17045. name: "Front",
  17046. image: {
  17047. source: "./media/characters/roy/front.svg",
  17048. extra: 1,
  17049. bottom: 0.11
  17050. }
  17051. },
  17052. },
  17053. [
  17054. {
  17055. name: "Micro",
  17056. height: math.unit(3, "inches"),
  17057. default: true
  17058. },
  17059. {
  17060. name: "Normal",
  17061. height: math.unit(5 + 6 / 12, "feet")
  17062. },
  17063. {
  17064. name: "Lesser Macro",
  17065. height: math.unit(60, "feet")
  17066. },
  17067. {
  17068. name: "Greater Macro",
  17069. height: math.unit(120, "feet")
  17070. },
  17071. ]
  17072. ))
  17073. characterMakers.push(() => makeCharacter(
  17074. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  17075. {
  17076. front: {
  17077. height: math.unit(6, "feet"),
  17078. weight: math.unit(100, "lb"),
  17079. name: "Front",
  17080. image: {
  17081. source: "./media/characters/aevsivs/front.svg",
  17082. extra: 1,
  17083. bottom: 0.03
  17084. }
  17085. },
  17086. back: {
  17087. height: math.unit(6, "feet"),
  17088. weight: math.unit(100, "lb"),
  17089. name: "Back",
  17090. image: {
  17091. source: "./media/characters/aevsivs/back.svg"
  17092. }
  17093. },
  17094. },
  17095. [
  17096. {
  17097. name: "Micro",
  17098. height: math.unit(2, "inches"),
  17099. default: true
  17100. },
  17101. {
  17102. name: "Normal",
  17103. height: math.unit(5, "feet")
  17104. },
  17105. ]
  17106. ))
  17107. characterMakers.push(() => makeCharacter(
  17108. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  17109. {
  17110. front: {
  17111. height: math.unit(5 + 7 / 12, "feet"),
  17112. weight: math.unit(159, "lb"),
  17113. name: "Front",
  17114. image: {
  17115. source: "./media/characters/hildegard/front.svg",
  17116. extra: 289 / 269,
  17117. bottom: 7.63 / 297.8
  17118. }
  17119. },
  17120. back: {
  17121. height: math.unit(5 + 7 / 12, "feet"),
  17122. weight: math.unit(159, "lb"),
  17123. name: "Back",
  17124. image: {
  17125. source: "./media/characters/hildegard/back.svg",
  17126. extra: 280 / 260,
  17127. bottom: 2.3 / 282
  17128. }
  17129. },
  17130. },
  17131. [
  17132. {
  17133. name: "Normal",
  17134. height: math.unit(5 + 7 / 12, "feet"),
  17135. default: true
  17136. },
  17137. ]
  17138. ))
  17139. characterMakers.push(() => makeCharacter(
  17140. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  17141. {
  17142. bernard: {
  17143. height: math.unit(2 + 7 / 12, "feet"),
  17144. weight: math.unit(66, "lb"),
  17145. name: "Bernard",
  17146. rename: true,
  17147. image: {
  17148. source: "./media/characters/bernard-wilder/bernard.svg",
  17149. extra: 192 / 128,
  17150. bottom: 0.05
  17151. }
  17152. },
  17153. wilder: {
  17154. height: math.unit(5 + 8 / 12, "feet"),
  17155. weight: math.unit(143, "lb"),
  17156. name: "Wilder",
  17157. rename: true,
  17158. image: {
  17159. source: "./media/characters/bernard-wilder/wilder.svg",
  17160. extra: 361 / 312,
  17161. bottom: 0.02
  17162. }
  17163. },
  17164. },
  17165. [
  17166. {
  17167. name: "Normal",
  17168. height: math.unit(2 + 7 / 12, "feet"),
  17169. default: true
  17170. },
  17171. ]
  17172. ))
  17173. characterMakers.push(() => makeCharacter(
  17174. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  17175. {
  17176. anthro: {
  17177. height: math.unit(6 + 1 / 12, "feet"),
  17178. weight: math.unit(155, "lb"),
  17179. name: "Anthro",
  17180. image: {
  17181. source: "./media/characters/hearth/anthro.svg",
  17182. extra: 1178/1136,
  17183. bottom: 28/1206
  17184. }
  17185. },
  17186. feral: {
  17187. height: math.unit(3.78, "feet"),
  17188. weight: math.unit(35, "kg"),
  17189. name: "Feral",
  17190. image: {
  17191. source: "./media/characters/hearth/feral.svg",
  17192. extra: 153 / 135,
  17193. bottom: 0.03
  17194. }
  17195. },
  17196. },
  17197. [
  17198. {
  17199. name: "Normal",
  17200. height: math.unit(6 + 1 / 12, "feet"),
  17201. default: true
  17202. },
  17203. ]
  17204. ))
  17205. characterMakers.push(() => makeCharacter(
  17206. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  17207. {
  17208. front: {
  17209. height: math.unit(6, "feet"),
  17210. weight: math.unit(182, "lb"),
  17211. name: "Front",
  17212. image: {
  17213. source: "./media/characters/ingrid/front.svg",
  17214. extra: 294 / 268,
  17215. bottom: 0.027
  17216. }
  17217. },
  17218. },
  17219. [
  17220. {
  17221. name: "Normal",
  17222. height: math.unit(6, "feet"),
  17223. default: true
  17224. },
  17225. ]
  17226. ))
  17227. characterMakers.push(() => makeCharacter(
  17228. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  17229. {
  17230. eevee: {
  17231. height: math.unit(2 + 10 / 12, "feet"),
  17232. weight: math.unit(86, "lb"),
  17233. name: "Malgam",
  17234. image: {
  17235. source: "./media/characters/malgam/eevee.svg",
  17236. extra: 952/784,
  17237. bottom: 38/990
  17238. }
  17239. },
  17240. sylveon: {
  17241. height: math.unit(4, "feet"),
  17242. weight: math.unit(101, "lb"),
  17243. name: "Future Malgam",
  17244. rename: true,
  17245. image: {
  17246. source: "./media/characters/malgam/sylveon.svg",
  17247. extra: 371 / 325,
  17248. bottom: 0.015
  17249. }
  17250. },
  17251. gigantamax: {
  17252. height: math.unit(50, "feet"),
  17253. name: "Gigantamax Malgam",
  17254. rename: true,
  17255. image: {
  17256. source: "./media/characters/malgam/gigantamax.svg"
  17257. }
  17258. },
  17259. },
  17260. [
  17261. {
  17262. name: "Normal",
  17263. height: math.unit(2 + 10 / 12, "feet"),
  17264. default: true
  17265. },
  17266. ]
  17267. ))
  17268. characterMakers.push(() => makeCharacter(
  17269. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  17270. {
  17271. front: {
  17272. height: math.unit(5 + 11 / 12, "feet"),
  17273. weight: math.unit(188, "lb"),
  17274. name: "Front",
  17275. image: {
  17276. source: "./media/characters/fleur/front.svg",
  17277. extra: 309 / 283,
  17278. bottom: 0.007
  17279. }
  17280. },
  17281. },
  17282. [
  17283. {
  17284. name: "Normal",
  17285. height: math.unit(5 + 11 / 12, "feet"),
  17286. default: true
  17287. },
  17288. ]
  17289. ))
  17290. characterMakers.push(() => makeCharacter(
  17291. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  17292. {
  17293. front: {
  17294. height: math.unit(5 + 4 / 12, "feet"),
  17295. weight: math.unit(122, "lb"),
  17296. name: "Front",
  17297. image: {
  17298. source: "./media/characters/jude/front.svg",
  17299. extra: 288 / 273,
  17300. bottom: 0.03
  17301. }
  17302. },
  17303. },
  17304. [
  17305. {
  17306. name: "Normal",
  17307. height: math.unit(5 + 4 / 12, "feet"),
  17308. default: true
  17309. },
  17310. ]
  17311. ))
  17312. characterMakers.push(() => makeCharacter(
  17313. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  17314. {
  17315. front: {
  17316. height: math.unit(5 + 11 / 12, "feet"),
  17317. weight: math.unit(190, "lb"),
  17318. name: "Front",
  17319. image: {
  17320. source: "./media/characters/seara/front.svg",
  17321. extra: 1,
  17322. bottom: 0.05
  17323. }
  17324. },
  17325. },
  17326. [
  17327. {
  17328. name: "Normal",
  17329. height: math.unit(5 + 11 / 12, "feet"),
  17330. default: true
  17331. },
  17332. ]
  17333. ))
  17334. characterMakers.push(() => makeCharacter(
  17335. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  17336. {
  17337. front: {
  17338. height: math.unit(16 + 5 / 12, "feet"),
  17339. weight: math.unit(524, "lb"),
  17340. name: "Front",
  17341. image: {
  17342. source: "./media/characters/caspian-lugia/front.svg",
  17343. extra: 1,
  17344. bottom: 0.04
  17345. }
  17346. },
  17347. },
  17348. [
  17349. {
  17350. name: "Normal",
  17351. height: math.unit(16 + 5 / 12, "feet"),
  17352. default: true
  17353. },
  17354. ]
  17355. ))
  17356. characterMakers.push(() => makeCharacter(
  17357. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  17358. {
  17359. front: {
  17360. height: math.unit(5 + 7 / 12, "feet"),
  17361. weight: math.unit(170, "lb"),
  17362. name: "Front",
  17363. image: {
  17364. source: "./media/characters/mika/front.svg",
  17365. extra: 1,
  17366. bottom: 0.016
  17367. }
  17368. },
  17369. },
  17370. [
  17371. {
  17372. name: "Normal",
  17373. height: math.unit(5 + 7 / 12, "feet"),
  17374. default: true
  17375. },
  17376. ]
  17377. ))
  17378. characterMakers.push(() => makeCharacter(
  17379. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  17380. {
  17381. front: {
  17382. height: math.unit(6 + 2 / 12, "feet"),
  17383. weight: math.unit(268, "lb"),
  17384. name: "Front",
  17385. image: {
  17386. source: "./media/characters/sol/front.svg",
  17387. extra: 247 / 231,
  17388. bottom: 0.05
  17389. }
  17390. },
  17391. },
  17392. [
  17393. {
  17394. name: "Normal",
  17395. height: math.unit(6 + 2 / 12, "feet"),
  17396. default: true
  17397. },
  17398. ]
  17399. ))
  17400. characterMakers.push(() => makeCharacter(
  17401. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  17402. {
  17403. buizel: {
  17404. height: math.unit(2 + 5 / 12, "feet"),
  17405. weight: math.unit(87, "lb"),
  17406. name: "Front",
  17407. image: {
  17408. source: "./media/characters/umiko/buizel.svg",
  17409. extra: 172 / 157,
  17410. bottom: 0.01
  17411. },
  17412. form: "buizel",
  17413. default: true
  17414. },
  17415. floatzel: {
  17416. height: math.unit(5 + 9 / 12, "feet"),
  17417. weight: math.unit(250, "lb"),
  17418. name: "Front",
  17419. image: {
  17420. source: "./media/characters/umiko/floatzel.svg",
  17421. extra: 1076/1006,
  17422. bottom: 15/1091
  17423. },
  17424. form: "floatzel",
  17425. default: true
  17426. },
  17427. },
  17428. [
  17429. {
  17430. name: "Normal",
  17431. height: math.unit(2 + 5 / 12, "feet"),
  17432. form: "buizel",
  17433. default: true
  17434. },
  17435. {
  17436. name: "Normal",
  17437. height: math.unit(5 + 9 / 12, "feet"),
  17438. form: "floatzel",
  17439. default: true
  17440. },
  17441. ],
  17442. {
  17443. "buizel": {
  17444. name: "Buizel"
  17445. },
  17446. "floatzel": {
  17447. name: "Floatzel",
  17448. default: true
  17449. }
  17450. }
  17451. ))
  17452. characterMakers.push(() => makeCharacter(
  17453. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  17454. {
  17455. front: {
  17456. height: math.unit(6 + 2 / 12, "feet"),
  17457. weight: math.unit(146, "lb"),
  17458. name: "Front",
  17459. image: {
  17460. source: "./media/characters/iliac/front.svg",
  17461. extra: 389 / 365,
  17462. bottom: 0.035
  17463. }
  17464. },
  17465. },
  17466. [
  17467. {
  17468. name: "Normal",
  17469. height: math.unit(6 + 2 / 12, "feet"),
  17470. default: true
  17471. },
  17472. ]
  17473. ))
  17474. characterMakers.push(() => makeCharacter(
  17475. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  17476. {
  17477. front: {
  17478. height: math.unit(6, "feet"),
  17479. weight: math.unit(170, "lb"),
  17480. name: "Front",
  17481. image: {
  17482. source: "./media/characters/topaz/front.svg",
  17483. extra: 317 / 303,
  17484. bottom: 0.055
  17485. }
  17486. },
  17487. },
  17488. [
  17489. {
  17490. name: "Normal",
  17491. height: math.unit(6, "feet"),
  17492. default: true
  17493. },
  17494. ]
  17495. ))
  17496. characterMakers.push(() => makeCharacter(
  17497. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  17498. {
  17499. front: {
  17500. height: math.unit(5 + 11 / 12, "feet"),
  17501. weight: math.unit(144, "lb"),
  17502. name: "Front",
  17503. image: {
  17504. source: "./media/characters/gabriel/front.svg",
  17505. extra: 285 / 262,
  17506. bottom: 0.004
  17507. }
  17508. },
  17509. },
  17510. [
  17511. {
  17512. name: "Normal",
  17513. height: math.unit(5 + 11 / 12, "feet"),
  17514. default: true
  17515. },
  17516. ]
  17517. ))
  17518. characterMakers.push(() => makeCharacter(
  17519. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  17520. {
  17521. side: {
  17522. height: math.unit(6 + 5 / 12, "feet"),
  17523. weight: math.unit(300, "lb"),
  17524. name: "Side",
  17525. image: {
  17526. source: "./media/characters/tempest-suicune/side.svg",
  17527. extra: 195 / 154,
  17528. bottom: 0.04
  17529. }
  17530. },
  17531. },
  17532. [
  17533. {
  17534. name: "Normal",
  17535. height: math.unit(6 + 5 / 12, "feet"),
  17536. default: true
  17537. },
  17538. ]
  17539. ))
  17540. characterMakers.push(() => makeCharacter(
  17541. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  17542. {
  17543. front: {
  17544. height: math.unit(7 + 2 / 12, "feet"),
  17545. weight: math.unit(322, "lb"),
  17546. name: "Front",
  17547. image: {
  17548. source: "./media/characters/vulcan/front.svg",
  17549. extra: 154 / 147,
  17550. bottom: 0.04
  17551. }
  17552. },
  17553. },
  17554. [
  17555. {
  17556. name: "Normal",
  17557. height: math.unit(7 + 2 / 12, "feet"),
  17558. default: true
  17559. },
  17560. ]
  17561. ))
  17562. characterMakers.push(() => makeCharacter(
  17563. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  17564. {
  17565. front: {
  17566. height: math.unit(5 + 10 / 12, "feet"),
  17567. weight: math.unit(264, "lb"),
  17568. name: "Front",
  17569. image: {
  17570. source: "./media/characters/gault/front.svg",
  17571. extra: 161 / 140,
  17572. bottom: 0.028
  17573. }
  17574. },
  17575. },
  17576. [
  17577. {
  17578. name: "Normal",
  17579. height: math.unit(5 + 10 / 12, "feet"),
  17580. default: true
  17581. },
  17582. ]
  17583. ))
  17584. characterMakers.push(() => makeCharacter(
  17585. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  17586. {
  17587. front: {
  17588. height: math.unit(6, "feet"),
  17589. weight: math.unit(150, "lb"),
  17590. name: "Front",
  17591. image: {
  17592. source: "./media/characters/shard/front.svg",
  17593. extra: 273 / 238,
  17594. bottom: 0.02
  17595. }
  17596. },
  17597. },
  17598. [
  17599. {
  17600. name: "Normal",
  17601. height: math.unit(3 + 6 / 12, "feet"),
  17602. default: true
  17603. },
  17604. ]
  17605. ))
  17606. characterMakers.push(() => makeCharacter(
  17607. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17608. {
  17609. front: {
  17610. height: math.unit(5 + 11 / 12, "feet"),
  17611. weight: math.unit(146, "lb"),
  17612. name: "Front",
  17613. image: {
  17614. source: "./media/characters/ashe/front.svg",
  17615. extra: 400 / 373,
  17616. bottom: 0.01
  17617. }
  17618. },
  17619. },
  17620. [
  17621. {
  17622. name: "Normal",
  17623. height: math.unit(5 + 11 / 12, "feet"),
  17624. default: true
  17625. },
  17626. ]
  17627. ))
  17628. characterMakers.push(() => makeCharacter(
  17629. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17630. {
  17631. front: {
  17632. height: math.unit(5 + 5 / 12, "feet"),
  17633. weight: math.unit(135, "lb"),
  17634. name: "Front",
  17635. image: {
  17636. source: "./media/characters/beatrix/front.svg",
  17637. extra: 392 / 379,
  17638. bottom: 0.01
  17639. }
  17640. },
  17641. },
  17642. [
  17643. {
  17644. name: "Normal",
  17645. height: math.unit(6, "feet"),
  17646. default: true
  17647. },
  17648. ]
  17649. ))
  17650. characterMakers.push(() => makeCharacter(
  17651. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17652. {
  17653. front: {
  17654. height: math.unit(6 + 2/12, "feet"),
  17655. weight: math.unit(135, "lb"),
  17656. name: "Front",
  17657. image: {
  17658. source: "./media/characters/ignatius/front.svg",
  17659. extra: 1380/1259,
  17660. bottom: 27/1407
  17661. }
  17662. },
  17663. },
  17664. [
  17665. {
  17666. name: "Normal",
  17667. height: math.unit(6 + 2/12, "feet"),
  17668. default: true
  17669. },
  17670. ]
  17671. ))
  17672. characterMakers.push(() => makeCharacter(
  17673. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17674. {
  17675. front: {
  17676. height: math.unit(6 + 2 / 12, "feet"),
  17677. weight: math.unit(138, "lb"),
  17678. name: "Front",
  17679. image: {
  17680. source: "./media/characters/mei-li/front.svg",
  17681. extra: 237 / 229,
  17682. bottom: 0.03
  17683. }
  17684. },
  17685. },
  17686. [
  17687. {
  17688. name: "Normal",
  17689. height: math.unit(6 + 2 / 12, "feet"),
  17690. default: true
  17691. },
  17692. ]
  17693. ))
  17694. characterMakers.push(() => makeCharacter(
  17695. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17696. {
  17697. front: {
  17698. height: math.unit(2 + 4 / 12, "feet"),
  17699. weight: math.unit(62, "lb"),
  17700. name: "Front",
  17701. image: {
  17702. source: "./media/characters/puru/front.svg",
  17703. extra: 206 / 149,
  17704. bottom: 0.06
  17705. }
  17706. },
  17707. },
  17708. [
  17709. {
  17710. name: "Normal",
  17711. height: math.unit(2 + 4 / 12, "feet"),
  17712. default: true
  17713. },
  17714. ]
  17715. ))
  17716. characterMakers.push(() => makeCharacter(
  17717. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17718. {
  17719. anthro: {
  17720. height: math.unit(5 + 8/12, "feet"),
  17721. weight: math.unit(200, "lb"),
  17722. energyNeed: math.unit(2000, "kcal"),
  17723. name: "Anthro",
  17724. image: {
  17725. source: "./media/characters/kee/anthro.svg",
  17726. extra: 3251/3184,
  17727. bottom: 250/3501
  17728. }
  17729. },
  17730. taur: {
  17731. height: math.unit(11, "feet"),
  17732. weight: math.unit(500, "lb"),
  17733. energyNeed: math.unit(5000, "kcal"),
  17734. name: "Taur",
  17735. image: {
  17736. source: "./media/characters/kee/taur.svg",
  17737. extra: 1362/1320,
  17738. bottom: 83/1445
  17739. }
  17740. },
  17741. },
  17742. [
  17743. {
  17744. name: "Normal",
  17745. height: math.unit(5 + 8/12, "feet"),
  17746. default: true
  17747. },
  17748. {
  17749. name: "Macro",
  17750. height: math.unit(35, "feet")
  17751. },
  17752. ]
  17753. ))
  17754. characterMakers.push(() => makeCharacter(
  17755. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17756. {
  17757. anthro: {
  17758. height: math.unit(7, "feet"),
  17759. weight: math.unit(190, "lb"),
  17760. name: "Anthro",
  17761. image: {
  17762. source: "./media/characters/cobalt-dracha/anthro.svg",
  17763. extra: 231 / 225,
  17764. bottom: 0.04
  17765. }
  17766. },
  17767. feral: {
  17768. height: math.unit(9 + 7 / 12, "feet"),
  17769. weight: math.unit(294, "lb"),
  17770. name: "Feral",
  17771. image: {
  17772. source: "./media/characters/cobalt-dracha/feral.svg",
  17773. extra: 692 / 633,
  17774. bottom: 0.05
  17775. }
  17776. },
  17777. },
  17778. [
  17779. {
  17780. name: "Normal",
  17781. height: math.unit(7, "feet"),
  17782. default: true
  17783. },
  17784. ]
  17785. ))
  17786. characterMakers.push(() => makeCharacter(
  17787. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17788. {
  17789. fallen: {
  17790. height: math.unit(11 + 8 / 12, "feet"),
  17791. weight: math.unit(485, "lb"),
  17792. name: "Java (Fallen)",
  17793. rename: true,
  17794. image: {
  17795. source: "./media/characters/java/fallen.svg",
  17796. extra: 226 / 208,
  17797. bottom: 0.005
  17798. }
  17799. },
  17800. godkin: {
  17801. height: math.unit(10 + 6 / 12, "feet"),
  17802. weight: math.unit(328, "lb"),
  17803. name: "Java (Godkin)",
  17804. rename: true,
  17805. image: {
  17806. source: "./media/characters/java/godkin.svg",
  17807. extra: 1104/1068,
  17808. bottom: 36/1140
  17809. }
  17810. },
  17811. },
  17812. [
  17813. {
  17814. name: "Normal",
  17815. height: math.unit(11 + 8 / 12, "feet"),
  17816. default: true
  17817. },
  17818. ]
  17819. ))
  17820. characterMakers.push(() => makeCharacter(
  17821. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17822. {
  17823. front: {
  17824. height: math.unit(5 + 9 / 12, "feet"),
  17825. weight: math.unit(170, "lb"),
  17826. name: "Front",
  17827. image: {
  17828. source: "./media/characters/purna/front.svg",
  17829. extra: 239 / 229,
  17830. bottom: 0.01
  17831. }
  17832. },
  17833. },
  17834. [
  17835. {
  17836. name: "Normal",
  17837. height: math.unit(5 + 9 / 12, "feet"),
  17838. default: true
  17839. },
  17840. ]
  17841. ))
  17842. characterMakers.push(() => makeCharacter(
  17843. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17844. {
  17845. front: {
  17846. height: math.unit(5 + 9 / 12, "feet"),
  17847. weight: math.unit(142, "lb"),
  17848. name: "Front",
  17849. image: {
  17850. source: "./media/characters/kuva/front.svg",
  17851. extra: 281 / 271,
  17852. bottom: 0.006
  17853. }
  17854. },
  17855. },
  17856. [
  17857. {
  17858. name: "Normal",
  17859. height: math.unit(5 + 9 / 12, "feet"),
  17860. default: true
  17861. },
  17862. ]
  17863. ))
  17864. characterMakers.push(() => makeCharacter(
  17865. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17866. {
  17867. anthro: {
  17868. height: math.unit(9 + 2 / 12, "feet"),
  17869. weight: math.unit(270, "lb"),
  17870. name: "Anthro",
  17871. image: {
  17872. source: "./media/characters/embra/anthro.svg",
  17873. extra: 200 / 187,
  17874. bottom: 0.02
  17875. }
  17876. },
  17877. feral: {
  17878. height: math.unit(18 + 8 / 12, "feet"),
  17879. weight: math.unit(576, "lb"),
  17880. name: "Feral",
  17881. image: {
  17882. source: "./media/characters/embra/feral.svg",
  17883. extra: 152 / 137,
  17884. bottom: 0.037
  17885. }
  17886. },
  17887. },
  17888. [
  17889. {
  17890. name: "Normal",
  17891. height: math.unit(9 + 2 / 12, "feet"),
  17892. default: true
  17893. },
  17894. ]
  17895. ))
  17896. characterMakers.push(() => makeCharacter(
  17897. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17898. {
  17899. anthro: {
  17900. height: math.unit(10 + 9 / 12, "feet"),
  17901. weight: math.unit(224, "lb"),
  17902. name: "Anthro",
  17903. image: {
  17904. source: "./media/characters/grottos/anthro.svg",
  17905. extra: 350 / 332,
  17906. bottom: 0.045
  17907. }
  17908. },
  17909. feral: {
  17910. height: math.unit(20 + 7 / 12, "feet"),
  17911. weight: math.unit(629, "lb"),
  17912. name: "Feral",
  17913. image: {
  17914. source: "./media/characters/grottos/feral.svg",
  17915. extra: 207 / 190,
  17916. bottom: 0.05
  17917. }
  17918. },
  17919. },
  17920. [
  17921. {
  17922. name: "Normal",
  17923. height: math.unit(10 + 9 / 12, "feet"),
  17924. default: true
  17925. },
  17926. ]
  17927. ))
  17928. characterMakers.push(() => makeCharacter(
  17929. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17930. {
  17931. anthro: {
  17932. height: math.unit(9 + 6 / 12, "feet"),
  17933. weight: math.unit(298, "lb"),
  17934. name: "Anthro",
  17935. image: {
  17936. source: "./media/characters/frifna/anthro.svg",
  17937. extra: 282 / 269,
  17938. bottom: 0.015
  17939. }
  17940. },
  17941. feral: {
  17942. height: math.unit(16 + 2 / 12, "feet"),
  17943. weight: math.unit(624, "lb"),
  17944. name: "Feral",
  17945. image: {
  17946. source: "./media/characters/frifna/feral.svg"
  17947. }
  17948. },
  17949. },
  17950. [
  17951. {
  17952. name: "Normal",
  17953. height: math.unit(9 + 6 / 12, "feet"),
  17954. default: true
  17955. },
  17956. ]
  17957. ))
  17958. characterMakers.push(() => makeCharacter(
  17959. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17960. {
  17961. front: {
  17962. height: math.unit(6 + 2 / 12, "feet"),
  17963. weight: math.unit(168, "lb"),
  17964. name: "Front",
  17965. image: {
  17966. source: "./media/characters/elise/front.svg",
  17967. extra: 276 / 271
  17968. }
  17969. },
  17970. },
  17971. [
  17972. {
  17973. name: "Normal",
  17974. height: math.unit(6 + 2 / 12, "feet"),
  17975. default: true
  17976. },
  17977. ]
  17978. ))
  17979. characterMakers.push(() => makeCharacter(
  17980. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17981. {
  17982. front: {
  17983. height: math.unit(5 + 10 / 12, "feet"),
  17984. weight: math.unit(210, "lb"),
  17985. name: "Front",
  17986. image: {
  17987. source: "./media/characters/glade/front.svg",
  17988. extra: 258 / 247,
  17989. bottom: 0.008
  17990. }
  17991. },
  17992. },
  17993. [
  17994. {
  17995. name: "Normal",
  17996. height: math.unit(5 + 10 / 12, "feet"),
  17997. default: true
  17998. },
  17999. ]
  18000. ))
  18001. characterMakers.push(() => makeCharacter(
  18002. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  18003. {
  18004. front: {
  18005. height: math.unit(5 + 10 / 12, "feet"),
  18006. weight: math.unit(129, "lb"),
  18007. name: "Front",
  18008. image: {
  18009. source: "./media/characters/rina/front.svg",
  18010. extra: 266 / 255,
  18011. bottom: 0.005
  18012. }
  18013. },
  18014. },
  18015. [
  18016. {
  18017. name: "Normal",
  18018. height: math.unit(5 + 10 / 12, "feet"),
  18019. default: true
  18020. },
  18021. ]
  18022. ))
  18023. characterMakers.push(() => makeCharacter(
  18024. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  18025. {
  18026. front: {
  18027. height: math.unit(6 + 1 / 12, "feet"),
  18028. weight: math.unit(192, "lb"),
  18029. name: "Front",
  18030. image: {
  18031. source: "./media/characters/veronica/front.svg",
  18032. extra: 319 / 309,
  18033. bottom: 0.005
  18034. }
  18035. },
  18036. },
  18037. [
  18038. {
  18039. name: "Normal",
  18040. height: math.unit(6 + 1 / 12, "feet"),
  18041. default: true
  18042. },
  18043. ]
  18044. ))
  18045. characterMakers.push(() => makeCharacter(
  18046. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  18047. {
  18048. front: {
  18049. height: math.unit(9 + 3 / 12, "feet"),
  18050. weight: math.unit(1100, "lb"),
  18051. name: "Front",
  18052. image: {
  18053. source: "./media/characters/braxton/front.svg",
  18054. extra: 1057 / 984,
  18055. bottom: 0.05
  18056. }
  18057. },
  18058. },
  18059. [
  18060. {
  18061. name: "Normal",
  18062. height: math.unit(9 + 3 / 12, "feet")
  18063. },
  18064. {
  18065. name: "Giant",
  18066. height: math.unit(300, "feet"),
  18067. default: true
  18068. },
  18069. {
  18070. name: "Macro",
  18071. height: math.unit(700, "feet")
  18072. },
  18073. {
  18074. name: "Megamacro",
  18075. height: math.unit(6000, "feet")
  18076. },
  18077. ]
  18078. ))
  18079. characterMakers.push(() => makeCharacter(
  18080. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  18081. {
  18082. front: {
  18083. height: math.unit(6 + 7 / 12, "feet"),
  18084. weight: math.unit(150, "lb"),
  18085. name: "Front",
  18086. image: {
  18087. source: "./media/characters/blue-feyonics/front.svg",
  18088. extra: 1403 / 1306,
  18089. bottom: 0.047
  18090. }
  18091. },
  18092. },
  18093. [
  18094. {
  18095. name: "Normal",
  18096. height: math.unit(6 + 7 / 12, "feet"),
  18097. default: true
  18098. },
  18099. ]
  18100. ))
  18101. characterMakers.push(() => makeCharacter(
  18102. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  18103. {
  18104. front: {
  18105. height: math.unit(1.8, "meters"),
  18106. weight: math.unit(60, "kg"),
  18107. name: "Front",
  18108. image: {
  18109. source: "./media/characters/maxwell/front.svg",
  18110. extra: 2060 / 1873
  18111. }
  18112. },
  18113. },
  18114. [
  18115. {
  18116. name: "Micro",
  18117. height: math.unit(1, "mm")
  18118. },
  18119. {
  18120. name: "Normal",
  18121. height: math.unit(1.8, "meter"),
  18122. default: true
  18123. },
  18124. {
  18125. name: "Macro",
  18126. height: math.unit(30, "meters")
  18127. },
  18128. {
  18129. name: "Megamacro",
  18130. height: math.unit(10, "km")
  18131. },
  18132. ]
  18133. ))
  18134. characterMakers.push(() => makeCharacter(
  18135. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  18136. {
  18137. front: {
  18138. height: math.unit(6, "feet"),
  18139. weight: math.unit(150, "lb"),
  18140. name: "Front",
  18141. image: {
  18142. source: "./media/characters/jack/front.svg",
  18143. extra: 1754 / 1640,
  18144. bottom: 0.01
  18145. }
  18146. },
  18147. },
  18148. [
  18149. {
  18150. name: "Normal",
  18151. height: math.unit(80000, "feet"),
  18152. default: true
  18153. },
  18154. {
  18155. name: "Max size",
  18156. height: math.unit(10, "lightyears")
  18157. },
  18158. ]
  18159. ))
  18160. characterMakers.push(() => makeCharacter(
  18161. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  18162. {
  18163. urban: {
  18164. height: math.unit(5, "feet"),
  18165. weight: math.unit(240, "lb"),
  18166. name: "Urban",
  18167. image: {
  18168. source: "./media/characters/cafat/urban.svg",
  18169. extra: 1223/1126,
  18170. bottom: 205/1428
  18171. }
  18172. },
  18173. summer: {
  18174. height: math.unit(5, "feet"),
  18175. weight: math.unit(240, "lb"),
  18176. name: "Summer",
  18177. image: {
  18178. source: "./media/characters/cafat/summer.svg",
  18179. extra: 1223/1126,
  18180. bottom: 205/1428
  18181. }
  18182. },
  18183. winter: {
  18184. height: math.unit(5, "feet"),
  18185. weight: math.unit(240, "lb"),
  18186. name: "Winter",
  18187. image: {
  18188. source: "./media/characters/cafat/winter.svg",
  18189. extra: 1223/1126,
  18190. bottom: 205/1428
  18191. }
  18192. },
  18193. lingerie: {
  18194. height: math.unit(5, "feet"),
  18195. weight: math.unit(240, "lb"),
  18196. name: "Lingerie",
  18197. image: {
  18198. source: "./media/characters/cafat/lingerie.svg",
  18199. extra: 1223/1126,
  18200. bottom: 205/1428
  18201. }
  18202. },
  18203. upright: {
  18204. height: math.unit(6.3, "feet"),
  18205. weight: math.unit(240, "lb"),
  18206. name: "Upright",
  18207. image: {
  18208. source: "./media/characters/cafat/upright.svg",
  18209. bottom: 0.01
  18210. }
  18211. },
  18212. uprightFull: {
  18213. height: math.unit(6.3, "feet"),
  18214. weight: math.unit(240, "lb"),
  18215. name: "Upright (Full)",
  18216. image: {
  18217. source: "./media/characters/cafat/upright-full.svg",
  18218. bottom: 0.01
  18219. }
  18220. },
  18221. },
  18222. [
  18223. {
  18224. name: "Small",
  18225. height: math.unit(5, "feet"),
  18226. default: true
  18227. },
  18228. {
  18229. name: "Large",
  18230. height: math.unit(13, "feet")
  18231. },
  18232. ]
  18233. ))
  18234. characterMakers.push(() => makeCharacter(
  18235. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  18236. {
  18237. front: {
  18238. height: math.unit(6, "feet"),
  18239. weight: math.unit(150, "lb"),
  18240. name: "Front",
  18241. image: {
  18242. source: "./media/characters/verin-raharra/front.svg",
  18243. extra: 5019 / 4835,
  18244. bottom: 0.023
  18245. }
  18246. },
  18247. },
  18248. [
  18249. {
  18250. name: "Normal",
  18251. height: math.unit(7 + 5 / 12, "feet"),
  18252. default: true
  18253. },
  18254. {
  18255. name: "Upsized",
  18256. height: math.unit(20, "feet")
  18257. },
  18258. ]
  18259. ))
  18260. characterMakers.push(() => makeCharacter(
  18261. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  18262. {
  18263. front: {
  18264. height: math.unit(7, "feet"),
  18265. weight: math.unit(230, "lb"),
  18266. name: "Front",
  18267. image: {
  18268. source: "./media/characters/nakata/front.svg",
  18269. extra: 1.005,
  18270. bottom: 0.01
  18271. }
  18272. },
  18273. },
  18274. [
  18275. {
  18276. name: "Normal",
  18277. height: math.unit(7, "feet"),
  18278. default: true
  18279. },
  18280. {
  18281. name: "Big",
  18282. height: math.unit(14, "feet")
  18283. },
  18284. {
  18285. name: "Macro",
  18286. height: math.unit(400, "feet")
  18287. },
  18288. ]
  18289. ))
  18290. characterMakers.push(() => makeCharacter(
  18291. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  18292. {
  18293. front: {
  18294. height: math.unit(4.91, "feet"),
  18295. weight: math.unit(100, "lb"),
  18296. name: "Front",
  18297. image: {
  18298. source: "./media/characters/lily/front.svg",
  18299. extra: 1585 / 1415,
  18300. bottom: 0.02
  18301. }
  18302. },
  18303. },
  18304. [
  18305. {
  18306. name: "Normal",
  18307. height: math.unit(4.91, "feet"),
  18308. default: true
  18309. },
  18310. ]
  18311. ))
  18312. characterMakers.push(() => makeCharacter(
  18313. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  18314. {
  18315. laying: {
  18316. height: math.unit(4 + 4 / 12, "feet"),
  18317. weight: math.unit(600, "lb"),
  18318. name: "Laying",
  18319. image: {
  18320. source: "./media/characters/sheila/laying.svg",
  18321. extra: 1333 / 1265,
  18322. bottom: 0.16
  18323. }
  18324. },
  18325. },
  18326. [
  18327. {
  18328. name: "Normal",
  18329. height: math.unit(4 + 4 / 12, "feet"),
  18330. default: true
  18331. },
  18332. ]
  18333. ))
  18334. characterMakers.push(() => makeCharacter(
  18335. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  18336. {
  18337. front: {
  18338. height: math.unit(6, "feet"),
  18339. weight: math.unit(190, "lb"),
  18340. name: "Front",
  18341. image: {
  18342. source: "./media/characters/sax/front.svg",
  18343. extra: 1187 / 973,
  18344. bottom: 0.042
  18345. }
  18346. },
  18347. },
  18348. [
  18349. {
  18350. name: "Micro",
  18351. height: math.unit(4, "inches"),
  18352. default: true
  18353. },
  18354. ]
  18355. ))
  18356. characterMakers.push(() => makeCharacter(
  18357. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  18358. {
  18359. front: {
  18360. height: math.unit(6, "feet"),
  18361. weight: math.unit(150, "lb"),
  18362. name: "Front",
  18363. image: {
  18364. source: "./media/characters/pandora/front.svg",
  18365. extra: 2720 / 2556,
  18366. bottom: 0.015
  18367. }
  18368. },
  18369. back: {
  18370. height: math.unit(6, "feet"),
  18371. weight: math.unit(150, "lb"),
  18372. name: "Back",
  18373. image: {
  18374. source: "./media/characters/pandora/back.svg",
  18375. extra: 2720 / 2556,
  18376. bottom: 0.01
  18377. }
  18378. },
  18379. beans: {
  18380. height: math.unit(6 / 8, "feet"),
  18381. name: "Beans",
  18382. image: {
  18383. source: "./media/characters/pandora/beans.svg"
  18384. }
  18385. },
  18386. collar: {
  18387. height: math.unit(0.31, "feet"),
  18388. name: "Collar",
  18389. image: {
  18390. source: "./media/characters/pandora/collar.svg"
  18391. }
  18392. },
  18393. skirt: {
  18394. height: math.unit(6, "feet"),
  18395. weight: math.unit(150, "lb"),
  18396. name: "Skirt",
  18397. image: {
  18398. source: "./media/characters/pandora/skirt.svg",
  18399. extra: 1622 / 1525,
  18400. bottom: 0.015
  18401. }
  18402. },
  18403. hoodie: {
  18404. height: math.unit(6, "feet"),
  18405. weight: math.unit(150, "lb"),
  18406. name: "Hoodie",
  18407. image: {
  18408. source: "./media/characters/pandora/hoodie.svg",
  18409. extra: 1622 / 1525,
  18410. bottom: 0.015
  18411. }
  18412. },
  18413. casual: {
  18414. height: math.unit(6, "feet"),
  18415. weight: math.unit(150, "lb"),
  18416. name: "Casual",
  18417. image: {
  18418. source: "./media/characters/pandora/casual.svg",
  18419. extra: 1622 / 1525,
  18420. bottom: 0.015
  18421. }
  18422. },
  18423. },
  18424. [
  18425. {
  18426. name: "Normal",
  18427. height: math.unit(6, "feet")
  18428. },
  18429. {
  18430. name: "Big Steppy",
  18431. height: math.unit(1, "km"),
  18432. default: true
  18433. },
  18434. {
  18435. name: "Galactic Steppy",
  18436. height: math.unit(2, "gigameters")
  18437. },
  18438. ]
  18439. ))
  18440. characterMakers.push(() => makeCharacter(
  18441. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  18442. {
  18443. side: {
  18444. height: math.unit(10, "feet"),
  18445. weight: math.unit(800, "kg"),
  18446. name: "Side",
  18447. image: {
  18448. source: "./media/characters/venio-darcony/side.svg",
  18449. extra: 1373 / 1003,
  18450. bottom: 0.037
  18451. }
  18452. },
  18453. front: {
  18454. height: math.unit(19, "feet"),
  18455. weight: math.unit(800, "kg"),
  18456. name: "Front",
  18457. image: {
  18458. source: "./media/characters/venio-darcony/front.svg"
  18459. }
  18460. },
  18461. back: {
  18462. height: math.unit(19, "feet"),
  18463. weight: math.unit(800, "kg"),
  18464. name: "Back",
  18465. image: {
  18466. source: "./media/characters/venio-darcony/back.svg"
  18467. }
  18468. },
  18469. sideNsfw: {
  18470. height: math.unit(10, "feet"),
  18471. weight: math.unit(800, "kg"),
  18472. name: "Side (NSFW)",
  18473. image: {
  18474. source: "./media/characters/venio-darcony/side-nsfw.svg",
  18475. extra: 1373 / 1003,
  18476. bottom: 0.037
  18477. }
  18478. },
  18479. frontNsfw: {
  18480. height: math.unit(19, "feet"),
  18481. weight: math.unit(800, "kg"),
  18482. name: "Front (NSFW)",
  18483. image: {
  18484. source: "./media/characters/venio-darcony/front-nsfw.svg"
  18485. }
  18486. },
  18487. backNsfw: {
  18488. height: math.unit(19, "feet"),
  18489. weight: math.unit(800, "kg"),
  18490. name: "Back (NSFW)",
  18491. image: {
  18492. source: "./media/characters/venio-darcony/back-nsfw.svg"
  18493. }
  18494. },
  18495. sideArmored: {
  18496. height: math.unit(10, "feet"),
  18497. weight: math.unit(800, "kg"),
  18498. name: "Side (Armored)",
  18499. image: {
  18500. source: "./media/characters/venio-darcony/side-armored.svg",
  18501. extra: 1373 / 1003,
  18502. bottom: 0.037
  18503. }
  18504. },
  18505. frontArmored: {
  18506. height: math.unit(19, "feet"),
  18507. weight: math.unit(900, "kg"),
  18508. name: "Front (Armored)",
  18509. image: {
  18510. source: "./media/characters/venio-darcony/front-armored.svg"
  18511. }
  18512. },
  18513. backArmored: {
  18514. height: math.unit(19, "feet"),
  18515. weight: math.unit(900, "kg"),
  18516. name: "Back (Armored)",
  18517. image: {
  18518. source: "./media/characters/venio-darcony/back-armored.svg"
  18519. }
  18520. },
  18521. sword: {
  18522. height: math.unit(10, "feet"),
  18523. weight: math.unit(50, "lb"),
  18524. name: "Sword",
  18525. image: {
  18526. source: "./media/characters/venio-darcony/sword.svg"
  18527. }
  18528. },
  18529. },
  18530. [
  18531. {
  18532. name: "Normal",
  18533. height: math.unit(10, "feet")
  18534. },
  18535. {
  18536. name: "Macro",
  18537. height: math.unit(130, "feet"),
  18538. default: true
  18539. },
  18540. {
  18541. name: "Macro+",
  18542. height: math.unit(240, "feet")
  18543. },
  18544. ]
  18545. ))
  18546. characterMakers.push(() => makeCharacter(
  18547. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  18548. {
  18549. front: {
  18550. height: math.unit(6, "feet"),
  18551. weight: math.unit(150, "lb"),
  18552. name: "Front",
  18553. image: {
  18554. source: "./media/characters/veski/front.svg",
  18555. extra: 1299 / 1225,
  18556. bottom: 0.04
  18557. }
  18558. },
  18559. back: {
  18560. height: math.unit(6, "feet"),
  18561. weight: math.unit(150, "lb"),
  18562. name: "Back",
  18563. image: {
  18564. source: "./media/characters/veski/back.svg",
  18565. extra: 1299 / 1225,
  18566. bottom: 0.008
  18567. }
  18568. },
  18569. maw: {
  18570. height: math.unit(1.5 * 1.21, "feet"),
  18571. name: "Maw",
  18572. image: {
  18573. source: "./media/characters/veski/maw.svg"
  18574. }
  18575. },
  18576. },
  18577. [
  18578. {
  18579. name: "Macro",
  18580. height: math.unit(2, "km"),
  18581. default: true
  18582. },
  18583. ]
  18584. ))
  18585. characterMakers.push(() => makeCharacter(
  18586. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18587. {
  18588. front: {
  18589. height: math.unit(5 + 7 / 12, "feet"),
  18590. name: "Front",
  18591. image: {
  18592. source: "./media/characters/isabelle/front.svg",
  18593. extra: 2130 / 1976,
  18594. bottom: 0.05
  18595. }
  18596. },
  18597. },
  18598. [
  18599. {
  18600. name: "Supermicro",
  18601. height: math.unit(10, "micrometers")
  18602. },
  18603. {
  18604. name: "Micro",
  18605. height: math.unit(1, "inch")
  18606. },
  18607. {
  18608. name: "Tiny",
  18609. height: math.unit(5, "inches")
  18610. },
  18611. {
  18612. name: "Standard",
  18613. height: math.unit(5 + 7 / 12, "inches")
  18614. },
  18615. {
  18616. name: "Macro",
  18617. height: math.unit(80, "meters"),
  18618. default: true
  18619. },
  18620. {
  18621. name: "Megamacro",
  18622. height: math.unit(250, "meters")
  18623. },
  18624. {
  18625. name: "Gigamacro",
  18626. height: math.unit(5, "km")
  18627. },
  18628. {
  18629. name: "Cosmic",
  18630. height: math.unit(2.5e6, "miles")
  18631. },
  18632. ]
  18633. ))
  18634. characterMakers.push(() => makeCharacter(
  18635. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18636. {
  18637. front: {
  18638. height: math.unit(6, "feet"),
  18639. weight: math.unit(150, "lb"),
  18640. name: "Front",
  18641. image: {
  18642. source: "./media/characters/hanzo/front.svg",
  18643. extra: 374 / 344,
  18644. bottom: 0.02
  18645. }
  18646. },
  18647. },
  18648. [
  18649. {
  18650. name: "Normal",
  18651. height: math.unit(8, "feet"),
  18652. default: true
  18653. },
  18654. ]
  18655. ))
  18656. characterMakers.push(() => makeCharacter(
  18657. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18658. {
  18659. front: {
  18660. height: math.unit(7, "feet"),
  18661. weight: math.unit(130, "lb"),
  18662. name: "Front",
  18663. image: {
  18664. source: "./media/characters/anna/front.svg",
  18665. extra: 169 / 145,
  18666. bottom: 0.06
  18667. }
  18668. },
  18669. full: {
  18670. height: math.unit(4.96, "feet"),
  18671. weight: math.unit(220, "lb"),
  18672. name: "Full",
  18673. image: {
  18674. source: "./media/characters/anna/full.svg",
  18675. extra: 138 / 114,
  18676. bottom: 0.15
  18677. }
  18678. },
  18679. tongue: {
  18680. height: math.unit(2.53, "feet"),
  18681. name: "Tongue",
  18682. image: {
  18683. source: "./media/characters/anna/tongue.svg"
  18684. }
  18685. },
  18686. },
  18687. [
  18688. {
  18689. name: "Normal",
  18690. height: math.unit(7, "feet"),
  18691. default: true
  18692. },
  18693. ]
  18694. ))
  18695. characterMakers.push(() => makeCharacter(
  18696. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18697. {
  18698. front: {
  18699. height: math.unit(7 + 1/12, "feet"),
  18700. weight: math.unit(150, "lb"),
  18701. name: "Front",
  18702. image: {
  18703. source: "./media/characters/ian-corvid/front.svg",
  18704. extra: 621/591,
  18705. bottom: 14/635
  18706. }
  18707. },
  18708. back: {
  18709. height: math.unit(7 + 1/12, "feet"),
  18710. weight: math.unit(150, "lb"),
  18711. name: "Back",
  18712. image: {
  18713. source: "./media/characters/ian-corvid/back.svg",
  18714. extra: 621/600,
  18715. bottom: 10/631
  18716. }
  18717. },
  18718. stomping: {
  18719. height: math.unit(7 + 1/12, "feet"),
  18720. weight: math.unit(150, "lb"),
  18721. name: "Stomping",
  18722. image: {
  18723. source: "./media/characters/ian-corvid/stomping.svg",
  18724. extra: 309/291,
  18725. bottom: 7/316
  18726. }
  18727. },
  18728. tongue: {
  18729. height: math.unit(3.9, "feet"),
  18730. name: "Tongue",
  18731. image: {
  18732. source: "./media/characters/ian-corvid/tongue.svg"
  18733. }
  18734. },
  18735. beak: {
  18736. height: math.unit(0.9, "feet"),
  18737. name: "Beak",
  18738. image: {
  18739. source: "./media/characters/ian-corvid/beak.svg"
  18740. }
  18741. },
  18742. sitting: {
  18743. height: math.unit(7 / 1.8, "feet"),
  18744. weight: math.unit(150, "lb"),
  18745. name: "Sitting",
  18746. image: {
  18747. source: "./media/characters/ian-corvid/sitting.svg",
  18748. extra: 1400 / 1269,
  18749. bottom: 0.15
  18750. }
  18751. },
  18752. },
  18753. [
  18754. {
  18755. name: "Tiny Microw",
  18756. height: math.unit(1, "inch")
  18757. },
  18758. {
  18759. name: "Microw",
  18760. height: math.unit(6, "inches")
  18761. },
  18762. {
  18763. name: "Crow",
  18764. height: math.unit(7 + 1 / 12, "feet"),
  18765. default: true
  18766. },
  18767. {
  18768. name: "Macrow",
  18769. height: math.unit(176, "feet")
  18770. },
  18771. ]
  18772. ))
  18773. characterMakers.push(() => makeCharacter(
  18774. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18775. {
  18776. front: {
  18777. height: math.unit(5 + 7 / 12, "feet"),
  18778. weight: math.unit(147, "lb"),
  18779. name: "Front",
  18780. image: {
  18781. source: "./media/characters/natalie-kellon/front.svg",
  18782. extra: 1214 / 1141,
  18783. bottom: 0.02
  18784. }
  18785. },
  18786. },
  18787. [
  18788. {
  18789. name: "Micro",
  18790. height: math.unit(1 / 16, "inch")
  18791. },
  18792. {
  18793. name: "Tiny",
  18794. height: math.unit(4, "inches")
  18795. },
  18796. {
  18797. name: "Normal",
  18798. height: math.unit(5 + 7 / 12, "feet"),
  18799. default: true
  18800. },
  18801. {
  18802. name: "Amazon",
  18803. height: math.unit(12, "feet")
  18804. },
  18805. {
  18806. name: "Giantess",
  18807. height: math.unit(160, "meters")
  18808. },
  18809. {
  18810. name: "Titaness",
  18811. height: math.unit(800, "meters")
  18812. },
  18813. ]
  18814. ))
  18815. characterMakers.push(() => makeCharacter(
  18816. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18817. {
  18818. front: {
  18819. height: math.unit(6, "feet"),
  18820. weight: math.unit(150, "lb"),
  18821. name: "Front",
  18822. image: {
  18823. source: "./media/characters/alluria/front.svg",
  18824. extra: 806 / 738,
  18825. bottom: 0.01
  18826. }
  18827. },
  18828. side: {
  18829. height: math.unit(6, "feet"),
  18830. weight: math.unit(150, "lb"),
  18831. name: "Side",
  18832. image: {
  18833. source: "./media/characters/alluria/side.svg",
  18834. extra: 800 / 750,
  18835. }
  18836. },
  18837. back: {
  18838. height: math.unit(6, "feet"),
  18839. weight: math.unit(150, "lb"),
  18840. name: "Back",
  18841. image: {
  18842. source: "./media/characters/alluria/back.svg",
  18843. extra: 806 / 738,
  18844. }
  18845. },
  18846. frontMaid: {
  18847. height: math.unit(6, "feet"),
  18848. weight: math.unit(150, "lb"),
  18849. name: "Front (Maid)",
  18850. image: {
  18851. source: "./media/characters/alluria/front-maid.svg",
  18852. extra: 806 / 738,
  18853. bottom: 0.01
  18854. }
  18855. },
  18856. sideMaid: {
  18857. height: math.unit(6, "feet"),
  18858. weight: math.unit(150, "lb"),
  18859. name: "Side (Maid)",
  18860. image: {
  18861. source: "./media/characters/alluria/side-maid.svg",
  18862. extra: 800 / 750,
  18863. bottom: 0.005
  18864. }
  18865. },
  18866. backMaid: {
  18867. height: math.unit(6, "feet"),
  18868. weight: math.unit(150, "lb"),
  18869. name: "Back (Maid)",
  18870. image: {
  18871. source: "./media/characters/alluria/back-maid.svg",
  18872. extra: 806 / 738,
  18873. }
  18874. },
  18875. },
  18876. [
  18877. {
  18878. name: "Micro",
  18879. height: math.unit(6, "inches"),
  18880. default: true
  18881. },
  18882. ]
  18883. ))
  18884. characterMakers.push(() => makeCharacter(
  18885. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18886. {
  18887. front: {
  18888. height: math.unit(6, "feet"),
  18889. weight: math.unit(150, "lb"),
  18890. name: "Front",
  18891. image: {
  18892. source: "./media/characters/kyle/front.svg",
  18893. extra: 1069 / 962,
  18894. bottom: 77.228 / 1727.45
  18895. }
  18896. },
  18897. },
  18898. [
  18899. {
  18900. name: "Macro",
  18901. height: math.unit(150, "feet"),
  18902. default: true
  18903. },
  18904. ]
  18905. ))
  18906. characterMakers.push(() => makeCharacter(
  18907. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18908. {
  18909. front: {
  18910. height: math.unit(6, "feet"),
  18911. weight: math.unit(300, "lb"),
  18912. name: "Front",
  18913. image: {
  18914. source: "./media/characters/duncan/front.svg",
  18915. extra: 1650 / 1482,
  18916. bottom: 0.05
  18917. }
  18918. },
  18919. },
  18920. [
  18921. {
  18922. name: "Macro",
  18923. height: math.unit(100, "feet"),
  18924. default: true
  18925. },
  18926. ]
  18927. ))
  18928. characterMakers.push(() => makeCharacter(
  18929. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18930. {
  18931. front: {
  18932. height: math.unit(5 + 4 / 12, "feet"),
  18933. weight: math.unit(220, "lb"),
  18934. name: "Front",
  18935. image: {
  18936. source: "./media/characters/memory/front.svg",
  18937. extra: 3641 / 3545,
  18938. bottom: 0.03
  18939. }
  18940. },
  18941. back: {
  18942. height: math.unit(5 + 4 / 12, "feet"),
  18943. weight: math.unit(220, "lb"),
  18944. name: "Back",
  18945. image: {
  18946. source: "./media/characters/memory/back.svg",
  18947. extra: 3641 / 3545,
  18948. bottom: 0.025
  18949. }
  18950. },
  18951. frontSkirt: {
  18952. height: math.unit(5 + 4 / 12, "feet"),
  18953. weight: math.unit(220, "lb"),
  18954. name: "Front (Skirt)",
  18955. image: {
  18956. source: "./media/characters/memory/front-skirt.svg",
  18957. extra: 3641 / 3545,
  18958. bottom: 0.03
  18959. }
  18960. },
  18961. frontDress: {
  18962. height: math.unit(5 + 4 / 12, "feet"),
  18963. weight: math.unit(220, "lb"),
  18964. name: "Front (Dress)",
  18965. image: {
  18966. source: "./media/characters/memory/front-dress.svg",
  18967. extra: 3641 / 3545,
  18968. bottom: 0.03
  18969. }
  18970. },
  18971. },
  18972. [
  18973. {
  18974. name: "Micro",
  18975. height: math.unit(6, "inches"),
  18976. default: true
  18977. },
  18978. {
  18979. name: "Normal",
  18980. height: math.unit(5 + 4 / 12, "feet")
  18981. },
  18982. ]
  18983. ))
  18984. characterMakers.push(() => makeCharacter(
  18985. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18986. {
  18987. front: {
  18988. height: math.unit(4 + 11 / 12, "feet"),
  18989. weight: math.unit(100, "lb"),
  18990. name: "Front",
  18991. image: {
  18992. source: "./media/characters/luno/front.svg",
  18993. extra: 1535 / 1487,
  18994. bottom: 0.03
  18995. }
  18996. },
  18997. },
  18998. [
  18999. {
  19000. name: "Micro",
  19001. height: math.unit(3, "inches")
  19002. },
  19003. {
  19004. name: "Normal",
  19005. height: math.unit(4 + 11 / 12, "feet"),
  19006. default: true
  19007. },
  19008. {
  19009. name: "Macro",
  19010. height: math.unit(300, "feet")
  19011. },
  19012. {
  19013. name: "Megamacro",
  19014. height: math.unit(700, "miles")
  19015. },
  19016. ]
  19017. ))
  19018. characterMakers.push(() => makeCharacter(
  19019. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  19020. {
  19021. front: {
  19022. height: math.unit(6 + 2 / 12, "feet"),
  19023. weight: math.unit(170, "lb"),
  19024. name: "Front",
  19025. image: {
  19026. source: "./media/characters/jamesy/front.svg",
  19027. extra: 440 / 382,
  19028. bottom: 0.005
  19029. }
  19030. },
  19031. },
  19032. [
  19033. {
  19034. name: "Micro",
  19035. height: math.unit(3, "inches")
  19036. },
  19037. {
  19038. name: "Normal",
  19039. height: math.unit(6 + 2 / 12, "feet"),
  19040. default: true
  19041. },
  19042. {
  19043. name: "Macro",
  19044. height: math.unit(300, "feet")
  19045. },
  19046. {
  19047. name: "Megamacro",
  19048. height: math.unit(700, "miles")
  19049. },
  19050. ]
  19051. ))
  19052. characterMakers.push(() => makeCharacter(
  19053. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  19054. {
  19055. front: {
  19056. height: math.unit(6, "feet"),
  19057. weight: math.unit(160, "lb"),
  19058. name: "Front",
  19059. image: {
  19060. source: "./media/characters/mark/front.svg",
  19061. extra: 3300 / 3100,
  19062. bottom: 136.42 / 3440.47
  19063. }
  19064. },
  19065. },
  19066. [
  19067. {
  19068. name: "Macro",
  19069. height: math.unit(120, "meters")
  19070. },
  19071. {
  19072. name: "Bigger Macro",
  19073. height: math.unit(350, "meters")
  19074. },
  19075. {
  19076. name: "Megamacro",
  19077. height: math.unit(8, "km"),
  19078. default: true
  19079. },
  19080. {
  19081. name: "Continental",
  19082. height: math.unit(4550, "km")
  19083. },
  19084. {
  19085. name: "Planetary",
  19086. height: math.unit(65000, "km")
  19087. },
  19088. ]
  19089. ))
  19090. characterMakers.push(() => makeCharacter(
  19091. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  19092. {
  19093. front: {
  19094. height: math.unit(6, "feet"),
  19095. weight: math.unit(400, "lb"),
  19096. name: "Front",
  19097. image: {
  19098. source: "./media/characters/mac/front.svg",
  19099. extra: 1048 / 987.7,
  19100. bottom: 60 / 1107.6,
  19101. }
  19102. },
  19103. },
  19104. [
  19105. {
  19106. name: "Macro",
  19107. height: math.unit(500, "feet"),
  19108. default: true
  19109. },
  19110. ]
  19111. ))
  19112. characterMakers.push(() => makeCharacter(
  19113. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  19114. {
  19115. front: {
  19116. height: math.unit(5 + 2 / 12, "feet"),
  19117. weight: math.unit(190, "lb"),
  19118. name: "Front",
  19119. image: {
  19120. source: "./media/characters/bari/front.svg",
  19121. extra: 3156 / 2880,
  19122. bottom: 0.03
  19123. }
  19124. },
  19125. back: {
  19126. height: math.unit(5 + 2 / 12, "feet"),
  19127. weight: math.unit(190, "lb"),
  19128. name: "Back",
  19129. image: {
  19130. source: "./media/characters/bari/back.svg",
  19131. extra: 3260 / 2834,
  19132. bottom: 0.025
  19133. }
  19134. },
  19135. frontPlush: {
  19136. height: math.unit(5 + 2 / 12, "feet"),
  19137. weight: math.unit(190, "lb"),
  19138. name: "Front (Plush)",
  19139. image: {
  19140. source: "./media/characters/bari/front-plush.svg",
  19141. extra: 1112 / 1061,
  19142. bottom: 0.002
  19143. }
  19144. },
  19145. },
  19146. [
  19147. {
  19148. name: "Micro",
  19149. height: math.unit(3, "inches")
  19150. },
  19151. {
  19152. name: "Normal",
  19153. height: math.unit(5 + 2 / 12, "feet"),
  19154. default: true
  19155. },
  19156. {
  19157. name: "Macro",
  19158. height: math.unit(20, "feet")
  19159. },
  19160. ]
  19161. ))
  19162. characterMakers.push(() => makeCharacter(
  19163. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  19164. {
  19165. front: {
  19166. height: math.unit(6 + 1 / 12, "feet"),
  19167. weight: math.unit(275, "lb"),
  19168. name: "Front",
  19169. image: {
  19170. source: "./media/characters/hunter-misha-raven/front.svg"
  19171. }
  19172. },
  19173. },
  19174. [
  19175. {
  19176. name: "Mortal",
  19177. height: math.unit(6 + 1 / 12, "feet")
  19178. },
  19179. {
  19180. name: "Divine",
  19181. height: math.unit(1.12134e34, "parsecs"),
  19182. default: true
  19183. },
  19184. ]
  19185. ))
  19186. characterMakers.push(() => makeCharacter(
  19187. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  19188. {
  19189. front: {
  19190. height: math.unit(6 + 3 / 12, "feet"),
  19191. weight: math.unit(220, "lb"),
  19192. name: "Front",
  19193. image: {
  19194. source: "./media/characters/max-calore/front.svg",
  19195. extra: 1700 / 1648,
  19196. bottom: 0.01
  19197. }
  19198. },
  19199. back: {
  19200. height: math.unit(6 + 3 / 12, "feet"),
  19201. weight: math.unit(220, "lb"),
  19202. name: "Back",
  19203. image: {
  19204. source: "./media/characters/max-calore/back.svg",
  19205. extra: 1700 / 1648,
  19206. bottom: 0.01
  19207. }
  19208. },
  19209. },
  19210. [
  19211. {
  19212. name: "Normal",
  19213. height: math.unit(6 + 3 / 12, "feet"),
  19214. default: true
  19215. },
  19216. ]
  19217. ))
  19218. characterMakers.push(() => makeCharacter(
  19219. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  19220. {
  19221. side: {
  19222. height: math.unit(2 + 8 / 12, "feet"),
  19223. weight: math.unit(99, "lb"),
  19224. name: "Side",
  19225. image: {
  19226. source: "./media/characters/aspen/side.svg",
  19227. extra: 152 / 138,
  19228. bottom: 0.032
  19229. }
  19230. },
  19231. },
  19232. [
  19233. {
  19234. name: "Normal",
  19235. height: math.unit(2 + 8 / 12, "feet"),
  19236. default: true
  19237. },
  19238. ]
  19239. ))
  19240. characterMakers.push(() => makeCharacter(
  19241. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  19242. {
  19243. side: {
  19244. height: math.unit(3 + 2 / 12, "feet"),
  19245. weight: math.unit(224, "lb"),
  19246. name: "Side",
  19247. image: {
  19248. source: "./media/characters/sheila-feral-wolf/side.svg",
  19249. extra: 179 / 166,
  19250. bottom: 0.03
  19251. }
  19252. },
  19253. },
  19254. [
  19255. {
  19256. name: "Normal",
  19257. height: math.unit(3 + 2 / 12, "feet"),
  19258. default: true
  19259. },
  19260. ]
  19261. ))
  19262. characterMakers.push(() => makeCharacter(
  19263. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  19264. {
  19265. side: {
  19266. height: math.unit(1 + 9 / 12, "feet"),
  19267. weight: math.unit(38, "lb"),
  19268. name: "Side",
  19269. image: {
  19270. source: "./media/characters/michelle/side.svg",
  19271. extra: 147 / 136.7,
  19272. bottom: 0.03
  19273. }
  19274. },
  19275. },
  19276. [
  19277. {
  19278. name: "Normal",
  19279. height: math.unit(1 + 9 / 12, "feet"),
  19280. default: true
  19281. },
  19282. ]
  19283. ))
  19284. characterMakers.push(() => makeCharacter(
  19285. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  19286. {
  19287. front: {
  19288. height: math.unit(1.54, "feet"),
  19289. weight: math.unit(50, "lb"),
  19290. name: "Front",
  19291. image: {
  19292. source: "./media/characters/nino/front.svg"
  19293. }
  19294. },
  19295. },
  19296. [
  19297. {
  19298. name: "Normal",
  19299. height: math.unit(1.54, "feet"),
  19300. default: true
  19301. },
  19302. ]
  19303. ))
  19304. characterMakers.push(() => makeCharacter(
  19305. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  19306. {
  19307. front: {
  19308. height: math.unit(1.49, "feet"),
  19309. weight: math.unit(45, "lb"),
  19310. name: "Front",
  19311. image: {
  19312. source: "./media/characters/viola/front.svg"
  19313. }
  19314. },
  19315. },
  19316. [
  19317. {
  19318. name: "Normal",
  19319. height: math.unit(1.49, "feet"),
  19320. default: true
  19321. },
  19322. ]
  19323. ))
  19324. characterMakers.push(() => makeCharacter(
  19325. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  19326. {
  19327. front: {
  19328. height: math.unit(6 + 5 / 12, "feet"),
  19329. weight: math.unit(580, "lb"),
  19330. name: "Front",
  19331. image: {
  19332. source: "./media/characters/atlas/front.svg",
  19333. extra: 298.5 / 290,
  19334. bottom: 0.015
  19335. }
  19336. },
  19337. },
  19338. [
  19339. {
  19340. name: "Normal",
  19341. height: math.unit(6 + 5 / 12, "feet"),
  19342. default: true
  19343. },
  19344. ]
  19345. ))
  19346. characterMakers.push(() => makeCharacter(
  19347. { name: "Davy", species: ["cat"], tags: ["feral"] },
  19348. {
  19349. side: {
  19350. height: math.unit(15.6, "inches"),
  19351. weight: math.unit(10, "lb"),
  19352. name: "Side",
  19353. image: {
  19354. source: "./media/characters/davy/side.svg",
  19355. extra: 200 / 170,
  19356. bottom: 0.01
  19357. }
  19358. },
  19359. },
  19360. [
  19361. {
  19362. name: "Normal",
  19363. height: math.unit(15.6, "inches"),
  19364. default: true
  19365. },
  19366. ]
  19367. ))
  19368. characterMakers.push(() => makeCharacter(
  19369. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  19370. {
  19371. side: {
  19372. height: math.unit(4 + 8 / 12, "feet"),
  19373. weight: math.unit(166, "lb"),
  19374. name: "Side",
  19375. image: {
  19376. source: "./media/characters/fiona/side.svg",
  19377. extra: 232 / 220,
  19378. bottom: 0.03
  19379. }
  19380. },
  19381. },
  19382. [
  19383. {
  19384. name: "Normal",
  19385. height: math.unit(4 + 8 / 12, "feet"),
  19386. default: true
  19387. },
  19388. ]
  19389. ))
  19390. characterMakers.push(() => makeCharacter(
  19391. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  19392. {
  19393. front: {
  19394. height: math.unit(26, "inches"),
  19395. weight: math.unit(35, "lb"),
  19396. name: "Front",
  19397. image: {
  19398. source: "./media/characters/lyla/front.svg",
  19399. bottom: 0.1
  19400. }
  19401. },
  19402. },
  19403. [
  19404. {
  19405. name: "Normal",
  19406. height: math.unit(3, "feet"),
  19407. default: true
  19408. },
  19409. ]
  19410. ))
  19411. characterMakers.push(() => makeCharacter(
  19412. { name: "Perseus", species: ["monitor-lizard", "deity"], tags: ["feral"] },
  19413. {
  19414. side: {
  19415. height: math.unit(1.8, "feet"),
  19416. weight: math.unit(44, "lb"),
  19417. name: "Side",
  19418. image: {
  19419. source: "./media/characters/perseus/side.svg",
  19420. bottom: 0.21
  19421. }
  19422. },
  19423. },
  19424. [
  19425. {
  19426. name: "Normal",
  19427. height: math.unit(1.8, "feet"),
  19428. default: true
  19429. },
  19430. ]
  19431. ))
  19432. characterMakers.push(() => makeCharacter(
  19433. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  19434. {
  19435. side: {
  19436. height: math.unit(4 + 2 / 12, "feet"),
  19437. weight: math.unit(20, "lb"),
  19438. name: "Side",
  19439. image: {
  19440. source: "./media/characters/remus/side.svg"
  19441. }
  19442. },
  19443. },
  19444. [
  19445. {
  19446. name: "Normal",
  19447. height: math.unit(4 + 2 / 12, "feet"),
  19448. default: true
  19449. },
  19450. ]
  19451. ))
  19452. characterMakers.push(() => makeCharacter(
  19453. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  19454. {
  19455. front: {
  19456. height: math.unit(4 + 11 / 12, "feet"),
  19457. weight: math.unit(114, "lb"),
  19458. name: "Front",
  19459. image: {
  19460. source: "./media/characters/raf/front.svg",
  19461. extra: 1504/1339,
  19462. bottom: 26/1530
  19463. }
  19464. },
  19465. side: {
  19466. height: math.unit(4 + 11 / 12, "feet"),
  19467. weight: math.unit(114, "lb"),
  19468. name: "Side",
  19469. image: {
  19470. source: "./media/characters/raf/side.svg",
  19471. extra: 1466/1316,
  19472. bottom: 29/1495
  19473. }
  19474. },
  19475. paw: {
  19476. height: math.unit(1.45, "feet"),
  19477. name: "Paw",
  19478. image: {
  19479. source: "./media/characters/raf/paw.svg"
  19480. },
  19481. extraAttributes: {
  19482. "toeSize": {
  19483. name: "Toe Size",
  19484. power: 2,
  19485. type: "area",
  19486. base: math.unit(0.004, "m^2")
  19487. },
  19488. "padSize": {
  19489. name: "Pad Size",
  19490. power: 2,
  19491. type: "area",
  19492. base: math.unit(0.04, "m^2")
  19493. },
  19494. "footSize": {
  19495. name: "Foot Size",
  19496. power: 2,
  19497. type: "area",
  19498. base: math.unit(0.08, "m^2")
  19499. },
  19500. }
  19501. },
  19502. },
  19503. [
  19504. {
  19505. name: "Micro",
  19506. height: math.unit(2, "inches")
  19507. },
  19508. {
  19509. name: "Normal",
  19510. height: math.unit(4 + 11 / 12, "feet"),
  19511. default: true
  19512. },
  19513. {
  19514. name: "Macro",
  19515. height: math.unit(70, "feet")
  19516. },
  19517. ]
  19518. ))
  19519. characterMakers.push(() => makeCharacter(
  19520. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  19521. {
  19522. front: {
  19523. height: math.unit(1.5, "meters"),
  19524. weight: math.unit(68, "kg"),
  19525. name: "Front",
  19526. image: {
  19527. source: "./media/characters/liam-einarr/front.svg",
  19528. extra: 2822 / 2666
  19529. }
  19530. },
  19531. back: {
  19532. height: math.unit(1.5, "meters"),
  19533. weight: math.unit(68, "kg"),
  19534. name: "Back",
  19535. image: {
  19536. source: "./media/characters/liam-einarr/back.svg",
  19537. extra: 2822 / 2666,
  19538. bottom: 0.015
  19539. }
  19540. },
  19541. },
  19542. [
  19543. {
  19544. name: "Normal",
  19545. height: math.unit(1.5, "meters"),
  19546. default: true
  19547. },
  19548. {
  19549. name: "Macro",
  19550. height: math.unit(150, "meters")
  19551. },
  19552. {
  19553. name: "Megamacro",
  19554. height: math.unit(35, "km")
  19555. },
  19556. ]
  19557. ))
  19558. characterMakers.push(() => makeCharacter(
  19559. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  19560. {
  19561. front: {
  19562. height: math.unit(6, "feet"),
  19563. weight: math.unit(75, "kg"),
  19564. name: "Front",
  19565. image: {
  19566. source: "./media/characters/linda/front.svg",
  19567. extra: 930 / 874,
  19568. bottom: 0.004
  19569. }
  19570. },
  19571. },
  19572. [
  19573. {
  19574. name: "Normal",
  19575. height: math.unit(6, "feet"),
  19576. default: true
  19577. },
  19578. ]
  19579. ))
  19580. characterMakers.push(() => makeCharacter(
  19581. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  19582. {
  19583. front: {
  19584. height: math.unit(6 + 8 / 12, "feet"),
  19585. weight: math.unit(220, "lb"),
  19586. name: "Front",
  19587. image: {
  19588. source: "./media/characters/caylex/front.svg",
  19589. extra: 821 / 772,
  19590. bottom: 0.07
  19591. }
  19592. },
  19593. back: {
  19594. height: math.unit(6 + 8 / 12, "feet"),
  19595. weight: math.unit(220, "lb"),
  19596. name: "Back",
  19597. image: {
  19598. source: "./media/characters/caylex/back.svg",
  19599. extra: 821 / 772,
  19600. bottom: 0.022
  19601. }
  19602. },
  19603. hand: {
  19604. height: math.unit(1.25, "feet"),
  19605. name: "Hand",
  19606. image: {
  19607. source: "./media/characters/caylex/hand.svg"
  19608. }
  19609. },
  19610. foot: {
  19611. height: math.unit(1.6, "feet"),
  19612. name: "Foot",
  19613. image: {
  19614. source: "./media/characters/caylex/foot.svg"
  19615. }
  19616. },
  19617. armored: {
  19618. height: math.unit(6 + 8 / 12, "feet"),
  19619. weight: math.unit(250, "lb"),
  19620. name: "Armored",
  19621. image: {
  19622. source: "./media/characters/caylex/armored.svg",
  19623. extra: 1420 / 1310,
  19624. bottom: 0.045
  19625. }
  19626. },
  19627. },
  19628. [
  19629. {
  19630. name: "Normal",
  19631. height: math.unit(6 + 8 / 12, "feet"),
  19632. default: true
  19633. },
  19634. {
  19635. name: "Normal+",
  19636. height: math.unit(12, "feet")
  19637. },
  19638. ]
  19639. ))
  19640. characterMakers.push(() => makeCharacter(
  19641. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19642. {
  19643. front: {
  19644. height: math.unit(7 + 6 / 12, "feet"),
  19645. weight: math.unit(288, "lb"),
  19646. name: "Front",
  19647. image: {
  19648. source: "./media/characters/alana/front.svg",
  19649. extra: 679 / 653,
  19650. bottom: 22.5 / 701
  19651. }
  19652. },
  19653. },
  19654. [
  19655. {
  19656. name: "Normal",
  19657. height: math.unit(7 + 6 / 12, "feet")
  19658. },
  19659. {
  19660. name: "Large",
  19661. height: math.unit(50, "feet")
  19662. },
  19663. {
  19664. name: "Macro",
  19665. height: math.unit(100, "feet"),
  19666. default: true
  19667. },
  19668. {
  19669. name: "Macro+",
  19670. height: math.unit(200, "feet")
  19671. },
  19672. ]
  19673. ))
  19674. characterMakers.push(() => makeCharacter(
  19675. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19676. {
  19677. front: {
  19678. height: math.unit(6 + 1 / 12, "feet"),
  19679. weight: math.unit(210, "lb"),
  19680. name: "Front",
  19681. image: {
  19682. source: "./media/characters/hasani/front.svg",
  19683. extra: 244 / 232,
  19684. bottom: 0.01
  19685. }
  19686. },
  19687. back: {
  19688. height: math.unit(6 + 1 / 12, "feet"),
  19689. weight: math.unit(210, "lb"),
  19690. name: "Back",
  19691. image: {
  19692. source: "./media/characters/hasani/back.svg",
  19693. extra: 244 / 232,
  19694. bottom: 0.01
  19695. }
  19696. },
  19697. },
  19698. [
  19699. {
  19700. name: "Normal",
  19701. height: math.unit(6 + 1 / 12, "feet")
  19702. },
  19703. {
  19704. name: "Macro",
  19705. height: math.unit(175, "feet"),
  19706. default: true
  19707. },
  19708. ]
  19709. ))
  19710. characterMakers.push(() => makeCharacter(
  19711. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19712. {
  19713. front: {
  19714. height: math.unit(1.82, "meters"),
  19715. weight: math.unit(140, "lb"),
  19716. name: "Front",
  19717. image: {
  19718. source: "./media/characters/nita/front.svg",
  19719. extra: 2473 / 2363,
  19720. bottom: 0.01
  19721. }
  19722. },
  19723. },
  19724. [
  19725. {
  19726. name: "Normal",
  19727. height: math.unit(1.82, "m")
  19728. },
  19729. {
  19730. name: "Macro",
  19731. height: math.unit(300, "m")
  19732. },
  19733. {
  19734. name: "Mistake Canon",
  19735. height: math.unit(0.5, "miles"),
  19736. default: true
  19737. },
  19738. {
  19739. name: "Big Mistake",
  19740. height: math.unit(13, "miles")
  19741. },
  19742. {
  19743. name: "Playing God",
  19744. height: math.unit(2450, "miles")
  19745. },
  19746. ]
  19747. ))
  19748. characterMakers.push(() => makeCharacter(
  19749. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19750. {
  19751. front: {
  19752. height: math.unit(4, "feet"),
  19753. weight: math.unit(120, "lb"),
  19754. name: "Front",
  19755. image: {
  19756. source: "./media/characters/shiriko/front.svg",
  19757. extra: 970/934,
  19758. bottom: 5/975
  19759. }
  19760. },
  19761. },
  19762. [
  19763. {
  19764. name: "Normal",
  19765. height: math.unit(4, "feet"),
  19766. default: true
  19767. },
  19768. ]
  19769. ))
  19770. characterMakers.push(() => makeCharacter(
  19771. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19772. {
  19773. front: {
  19774. height: math.unit(6, "feet"),
  19775. name: "front",
  19776. image: {
  19777. source: "./media/characters/deja/front.svg",
  19778. extra: 926 / 840,
  19779. bottom: 0.07
  19780. }
  19781. },
  19782. },
  19783. [
  19784. {
  19785. name: "Planck Length",
  19786. height: math.unit(1.6e-35, "meters")
  19787. },
  19788. {
  19789. name: "Normal",
  19790. height: math.unit(30.48, "meters"),
  19791. default: true
  19792. },
  19793. {
  19794. name: "Universal",
  19795. height: math.unit(8.8e26, "meters")
  19796. },
  19797. ]
  19798. ))
  19799. characterMakers.push(() => makeCharacter(
  19800. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19801. {
  19802. side: {
  19803. height: math.unit(8, "feet"),
  19804. weight: math.unit(6300, "lb"),
  19805. name: "Side",
  19806. image: {
  19807. source: "./media/characters/anima/side.svg",
  19808. bottom: 0.035
  19809. }
  19810. },
  19811. },
  19812. [
  19813. {
  19814. name: "Normal",
  19815. height: math.unit(8, "feet"),
  19816. default: true
  19817. },
  19818. ]
  19819. ))
  19820. characterMakers.push(() => makeCharacter(
  19821. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19822. {
  19823. front: {
  19824. height: math.unit(8, "feet"),
  19825. weight: math.unit(350, "lb"),
  19826. name: "Front",
  19827. image: {
  19828. source: "./media/characters/bianca/front.svg",
  19829. extra: 234 / 225,
  19830. bottom: 0.03
  19831. }
  19832. },
  19833. },
  19834. [
  19835. {
  19836. name: "Normal",
  19837. height: math.unit(8, "feet"),
  19838. default: true
  19839. },
  19840. ]
  19841. ))
  19842. characterMakers.push(() => makeCharacter(
  19843. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19844. {
  19845. front: {
  19846. height: math.unit(11 + 5/12, "feet"),
  19847. weight: math.unit(1200, "lb"),
  19848. name: "Front",
  19849. image: {
  19850. source: "./media/characters/adinia/front.svg",
  19851. extra: 1767/1641,
  19852. bottom: 44/1811
  19853. },
  19854. extraAttributes: {
  19855. "energyIntake": {
  19856. name: "Energy Intake",
  19857. power: 3,
  19858. type: "energy",
  19859. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19860. },
  19861. }
  19862. },
  19863. back: {
  19864. height: math.unit(11 + 5/12, "feet"),
  19865. weight: math.unit(1200, "lb"),
  19866. name: "Back",
  19867. image: {
  19868. source: "./media/characters/adinia/back.svg",
  19869. extra: 1834/1684,
  19870. bottom: 14/1848
  19871. },
  19872. extraAttributes: {
  19873. "energyIntake": {
  19874. name: "Energy Intake",
  19875. power: 3,
  19876. type: "energy",
  19877. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19878. },
  19879. }
  19880. },
  19881. maw: {
  19882. height: math.unit(3.79, "feet"),
  19883. name: "Maw",
  19884. image: {
  19885. source: "./media/characters/adinia/maw.svg"
  19886. }
  19887. },
  19888. rump: {
  19889. height: math.unit(4.6, "feet"),
  19890. name: "Rump",
  19891. image: {
  19892. source: "./media/characters/adinia/rump.svg"
  19893. }
  19894. },
  19895. },
  19896. [
  19897. {
  19898. name: "Normal",
  19899. height: math.unit(11 + 5 / 12, "feet"),
  19900. default: true
  19901. },
  19902. ]
  19903. ))
  19904. characterMakers.push(() => makeCharacter(
  19905. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19906. {
  19907. front: {
  19908. height: math.unit(3, "meters"),
  19909. weight: math.unit(200, "kg"),
  19910. name: "Front",
  19911. image: {
  19912. source: "./media/characters/lykasa/front.svg",
  19913. extra: 1076 / 976,
  19914. bottom: 0.06
  19915. }
  19916. },
  19917. },
  19918. [
  19919. {
  19920. name: "Normal",
  19921. height: math.unit(3, "meters")
  19922. },
  19923. {
  19924. name: "Kaiju",
  19925. height: math.unit(120, "meters"),
  19926. default: true
  19927. },
  19928. {
  19929. name: "Mega Kaiju",
  19930. height: math.unit(240, "km")
  19931. },
  19932. {
  19933. name: "Giga Kaiju",
  19934. height: math.unit(400, "megameters")
  19935. },
  19936. {
  19937. name: "Tera Kaiju",
  19938. height: math.unit(800, "gigameters")
  19939. },
  19940. {
  19941. name: "Kaiju Dragon Goddess",
  19942. height: math.unit(26, "zettaparsecs")
  19943. },
  19944. ]
  19945. ))
  19946. characterMakers.push(() => makeCharacter(
  19947. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19948. {
  19949. side: {
  19950. height: math.unit(283 / 124 * 6, "feet"),
  19951. weight: math.unit(35000, "lb"),
  19952. name: "Side",
  19953. image: {
  19954. source: "./media/characters/malfaren/side.svg",
  19955. extra: 1310/529,
  19956. bottom: 24/1334
  19957. }
  19958. },
  19959. front: {
  19960. height: math.unit(22.36, "feet"),
  19961. weight: math.unit(35000, "lb"),
  19962. name: "Front",
  19963. image: {
  19964. source: "./media/characters/malfaren/front.svg",
  19965. extra: 1237/1115,
  19966. bottom: 32/1269
  19967. }
  19968. },
  19969. maw: {
  19970. height: math.unit(6.9, "feet"),
  19971. name: "Maw",
  19972. image: {
  19973. source: "./media/characters/malfaren/maw.svg"
  19974. }
  19975. },
  19976. dick: {
  19977. height: math.unit(6.19, "feet"),
  19978. name: "Dick",
  19979. image: {
  19980. source: "./media/characters/malfaren/dick.svg"
  19981. }
  19982. },
  19983. eye: {
  19984. height: math.unit(0.69, "feet"),
  19985. name: "Eye",
  19986. image: {
  19987. source: "./media/characters/malfaren/eye.svg"
  19988. }
  19989. },
  19990. },
  19991. [
  19992. {
  19993. name: "Big",
  19994. height: math.unit(283 / 162 * 6, "feet"),
  19995. },
  19996. {
  19997. name: "Bigger",
  19998. height: math.unit(283 / 124 * 6, "feet")
  19999. },
  20000. {
  20001. name: "Massive",
  20002. height: math.unit(283 / 92 * 6, "feet"),
  20003. default: true
  20004. },
  20005. {
  20006. name: "👀💦",
  20007. height: math.unit(283 / 73 * 6, "feet"),
  20008. },
  20009. ]
  20010. ))
  20011. characterMakers.push(() => makeCharacter(
  20012. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  20013. {
  20014. front: {
  20015. height: math.unit(1.7, "m"),
  20016. weight: math.unit(70, "kg"),
  20017. name: "Front",
  20018. image: {
  20019. source: "./media/characters/kernel/front.svg",
  20020. extra: 1960/1821,
  20021. bottom: 17/1977
  20022. }
  20023. },
  20024. },
  20025. [
  20026. {
  20027. name: "Nano",
  20028. height: math.unit(17, "micrometers")
  20029. },
  20030. {
  20031. name: "Micro",
  20032. height: math.unit(1.7, "mm")
  20033. },
  20034. {
  20035. name: "Small",
  20036. height: math.unit(1.7, "cm")
  20037. },
  20038. {
  20039. name: "Normal",
  20040. height: math.unit(1.7, "m"),
  20041. default: true
  20042. },
  20043. ]
  20044. ))
  20045. characterMakers.push(() => makeCharacter(
  20046. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  20047. {
  20048. front: {
  20049. height: math.unit(1.75, "meters"),
  20050. weight: math.unit(65, "kg"),
  20051. name: "Front",
  20052. image: {
  20053. source: "./media/characters/jayne-folest/front.svg",
  20054. extra: 2115 / 2007,
  20055. bottom: 0.02
  20056. }
  20057. },
  20058. back: {
  20059. height: math.unit(1.75, "meters"),
  20060. weight: math.unit(65, "kg"),
  20061. name: "Back",
  20062. image: {
  20063. source: "./media/characters/jayne-folest/back.svg",
  20064. extra: 2115 / 2007,
  20065. bottom: 0.005
  20066. }
  20067. },
  20068. frontClothed: {
  20069. height: math.unit(1.75, "meters"),
  20070. weight: math.unit(65, "kg"),
  20071. name: "Front (Clothed)",
  20072. image: {
  20073. source: "./media/characters/jayne-folest/front-clothed.svg",
  20074. extra: 2115 / 2007,
  20075. bottom: 0.035
  20076. }
  20077. },
  20078. hand: {
  20079. height: math.unit(1 / 1.260, "feet"),
  20080. name: "Hand",
  20081. image: {
  20082. source: "./media/characters/jayne-folest/hand.svg"
  20083. }
  20084. },
  20085. foot: {
  20086. height: math.unit(1 / 0.918, "feet"),
  20087. name: "Foot",
  20088. image: {
  20089. source: "./media/characters/jayne-folest/foot.svg"
  20090. }
  20091. },
  20092. },
  20093. [
  20094. {
  20095. name: "Micro",
  20096. height: math.unit(4, "cm")
  20097. },
  20098. {
  20099. name: "Normal",
  20100. height: math.unit(1.75, "meters")
  20101. },
  20102. {
  20103. name: "Macro",
  20104. height: math.unit(47.5, "meters"),
  20105. default: true
  20106. },
  20107. ]
  20108. ))
  20109. characterMakers.push(() => makeCharacter(
  20110. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  20111. {
  20112. front: {
  20113. height: math.unit(180, "cm"),
  20114. weight: math.unit(70, "kg"),
  20115. name: "Front",
  20116. image: {
  20117. source: "./media/characters/algier/front.svg",
  20118. extra: 596 / 572,
  20119. bottom: 0.04
  20120. }
  20121. },
  20122. back: {
  20123. height: math.unit(180, "cm"),
  20124. weight: math.unit(70, "kg"),
  20125. name: "Back",
  20126. image: {
  20127. source: "./media/characters/algier/back.svg",
  20128. extra: 596 / 572,
  20129. bottom: 0.025
  20130. }
  20131. },
  20132. frontdressed: {
  20133. height: math.unit(180, "cm"),
  20134. weight: math.unit(150, "kg"),
  20135. name: "Front (Dressed)",
  20136. image: {
  20137. source: "./media/characters/algier/front-dressed.svg",
  20138. extra: 596 / 572,
  20139. bottom: 0.038
  20140. }
  20141. },
  20142. },
  20143. [
  20144. {
  20145. name: "Micro",
  20146. height: math.unit(5, "cm")
  20147. },
  20148. {
  20149. name: "Normal",
  20150. height: math.unit(180, "cm"),
  20151. default: true
  20152. },
  20153. {
  20154. name: "Macro",
  20155. height: math.unit(64, "m")
  20156. },
  20157. ]
  20158. ))
  20159. characterMakers.push(() => makeCharacter(
  20160. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  20161. {
  20162. upright: {
  20163. height: math.unit(7, "feet"),
  20164. weight: math.unit(300, "lb"),
  20165. name: "Upright",
  20166. image: {
  20167. source: "./media/characters/pretzel/upright.svg",
  20168. extra: 534 / 522,
  20169. bottom: 0.065
  20170. }
  20171. },
  20172. sprawling: {
  20173. height: math.unit(3.75, "feet"),
  20174. weight: math.unit(300, "lb"),
  20175. name: "Sprawling",
  20176. image: {
  20177. source: "./media/characters/pretzel/sprawling.svg",
  20178. extra: 314 / 281,
  20179. bottom: 0.1
  20180. }
  20181. },
  20182. tongue: {
  20183. height: math.unit(2, "feet"),
  20184. name: "Tongue",
  20185. image: {
  20186. source: "./media/characters/pretzel/tongue.svg"
  20187. }
  20188. },
  20189. },
  20190. [
  20191. {
  20192. name: "Normal",
  20193. height: math.unit(7, "feet"),
  20194. default: true
  20195. },
  20196. {
  20197. name: "Oversized",
  20198. height: math.unit(15, "feet")
  20199. },
  20200. {
  20201. name: "Huge",
  20202. height: math.unit(30, "feet")
  20203. },
  20204. {
  20205. name: "Macro",
  20206. height: math.unit(250, "feet")
  20207. },
  20208. ]
  20209. ))
  20210. characterMakers.push(() => makeCharacter(
  20211. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  20212. {
  20213. sideFront: {
  20214. height: math.unit(5 + 2 / 12, "feet"),
  20215. weight: math.unit(120, "lb"),
  20216. name: "Front Side",
  20217. image: {
  20218. source: "./media/characters/roxi/side-front.svg",
  20219. extra: 2924 / 2717,
  20220. bottom: 0.08
  20221. }
  20222. },
  20223. sideBack: {
  20224. height: math.unit(5 + 2 / 12, "feet"),
  20225. weight: math.unit(120, "lb"),
  20226. name: "Back Side",
  20227. image: {
  20228. source: "./media/characters/roxi/side-back.svg",
  20229. extra: 2904 / 2693,
  20230. bottom: 0.06
  20231. }
  20232. },
  20233. front: {
  20234. height: math.unit(5 + 2 / 12, "feet"),
  20235. weight: math.unit(120, "lb"),
  20236. name: "Front",
  20237. image: {
  20238. source: "./media/characters/roxi/front.svg",
  20239. extra: 2028 / 1907,
  20240. bottom: 0.01
  20241. }
  20242. },
  20243. frontAlt: {
  20244. height: math.unit(5 + 2 / 12, "feet"),
  20245. weight: math.unit(120, "lb"),
  20246. name: "Front (Alt)",
  20247. image: {
  20248. source: "./media/characters/roxi/front-alt.svg",
  20249. extra: 1828 / 1798,
  20250. bottom: 0.01
  20251. }
  20252. },
  20253. sitting: {
  20254. height: math.unit(2.8, "feet"),
  20255. weight: math.unit(120, "lb"),
  20256. name: "Sitting",
  20257. image: {
  20258. source: "./media/characters/roxi/sitting.svg",
  20259. extra: 2660 / 2462,
  20260. bottom: 0.1
  20261. }
  20262. },
  20263. },
  20264. [
  20265. {
  20266. name: "Normal",
  20267. height: math.unit(5 + 2 / 12, "feet"),
  20268. default: true
  20269. },
  20270. ]
  20271. ))
  20272. characterMakers.push(() => makeCharacter(
  20273. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  20274. {
  20275. side: {
  20276. height: math.unit(55, "feet"),
  20277. weight: math.unit(153, "tons"),
  20278. name: "Side",
  20279. image: {
  20280. source: "./media/characters/shadow/side.svg",
  20281. extra: 701 / 628,
  20282. bottom: 0.02
  20283. }
  20284. },
  20285. flying: {
  20286. height: math.unit(145, "feet"),
  20287. weight: math.unit(153, "tons"),
  20288. name: "Flying",
  20289. image: {
  20290. source: "./media/characters/shadow/flying.svg"
  20291. }
  20292. },
  20293. },
  20294. [
  20295. {
  20296. name: "Normal",
  20297. height: math.unit(55, "feet"),
  20298. default: true
  20299. },
  20300. ]
  20301. ))
  20302. characterMakers.push(() => makeCharacter(
  20303. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  20304. {
  20305. front: {
  20306. height: math.unit(6, "feet"),
  20307. weight: math.unit(200, "lb"),
  20308. name: "Front",
  20309. image: {
  20310. source: "./media/characters/marcie/front.svg",
  20311. extra: 960 / 876,
  20312. bottom: 58 / 1017.87
  20313. }
  20314. },
  20315. },
  20316. [
  20317. {
  20318. name: "Macro",
  20319. height: math.unit(1, "mile"),
  20320. default: true
  20321. },
  20322. ]
  20323. ))
  20324. characterMakers.push(() => makeCharacter(
  20325. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  20326. {
  20327. front: {
  20328. height: math.unit(7, "feet"),
  20329. weight: math.unit(200, "lb"),
  20330. name: "Front",
  20331. image: {
  20332. source: "./media/characters/kachina/front.svg",
  20333. extra: 3206/2764,
  20334. bottom: 140/3346
  20335. }
  20336. },
  20337. },
  20338. [
  20339. {
  20340. name: "Normal",
  20341. height: math.unit(7, "feet"),
  20342. default: true
  20343. },
  20344. ]
  20345. ))
  20346. characterMakers.push(() => makeCharacter(
  20347. { name: "Kash", species: ["canine"], tags: ["feral"] },
  20348. {
  20349. looking: {
  20350. height: math.unit(2, "meters"),
  20351. weight: math.unit(300, "kg"),
  20352. name: "Looking",
  20353. image: {
  20354. source: "./media/characters/kash/looking.svg",
  20355. extra: 474 / 344,
  20356. bottom: 0.03
  20357. }
  20358. },
  20359. side: {
  20360. height: math.unit(2, "meters"),
  20361. weight: math.unit(300, "kg"),
  20362. name: "Side",
  20363. image: {
  20364. source: "./media/characters/kash/side.svg",
  20365. extra: 302 / 251,
  20366. bottom: 0.03
  20367. }
  20368. },
  20369. front: {
  20370. height: math.unit(2, "meters"),
  20371. weight: math.unit(300, "kg"),
  20372. name: "Front",
  20373. image: {
  20374. source: "./media/characters/kash/front.svg",
  20375. extra: 495 / 360,
  20376. bottom: 0.015
  20377. }
  20378. },
  20379. },
  20380. [
  20381. {
  20382. name: "Normal",
  20383. height: math.unit(2, "meters"),
  20384. default: true
  20385. },
  20386. {
  20387. name: "Big",
  20388. height: math.unit(3, "meters")
  20389. },
  20390. {
  20391. name: "Large",
  20392. height: math.unit(5, "meters")
  20393. },
  20394. ]
  20395. ))
  20396. characterMakers.push(() => makeCharacter(
  20397. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  20398. {
  20399. feeding: {
  20400. height: math.unit(6.7, "feet"),
  20401. weight: math.unit(350, "lb"),
  20402. name: "Feeding",
  20403. image: {
  20404. source: "./media/characters/lalim/feeding.svg",
  20405. }
  20406. },
  20407. },
  20408. [
  20409. {
  20410. name: "Normal",
  20411. height: math.unit(6.7, "feet"),
  20412. default: true
  20413. },
  20414. ]
  20415. ))
  20416. characterMakers.push(() => makeCharacter(
  20417. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  20418. {
  20419. front: {
  20420. height: math.unit(9.5, "feet"),
  20421. weight: math.unit(600, "lb"),
  20422. name: "Front",
  20423. image: {
  20424. source: "./media/characters/de'vout/front.svg",
  20425. extra: 1443 / 1328,
  20426. bottom: 0.025
  20427. }
  20428. },
  20429. back: {
  20430. height: math.unit(9.5, "feet"),
  20431. weight: math.unit(600, "lb"),
  20432. name: "Back",
  20433. image: {
  20434. source: "./media/characters/de'vout/back.svg",
  20435. extra: 1443 / 1328
  20436. }
  20437. },
  20438. frontDressed: {
  20439. height: math.unit(9.5, "feet"),
  20440. weight: math.unit(600, "lb"),
  20441. name: "Front (Dressed",
  20442. image: {
  20443. source: "./media/characters/de'vout/front-dressed.svg",
  20444. extra: 1443 / 1328,
  20445. bottom: 0.025
  20446. }
  20447. },
  20448. backDressed: {
  20449. height: math.unit(9.5, "feet"),
  20450. weight: math.unit(600, "lb"),
  20451. name: "Back (Dressed",
  20452. image: {
  20453. source: "./media/characters/de'vout/back-dressed.svg",
  20454. extra: 1443 / 1328
  20455. }
  20456. },
  20457. },
  20458. [
  20459. {
  20460. name: "Normal",
  20461. height: math.unit(9.5, "feet"),
  20462. default: true
  20463. },
  20464. ]
  20465. ))
  20466. characterMakers.push(() => makeCharacter(
  20467. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  20468. {
  20469. front: {
  20470. height: math.unit(8, "feet"),
  20471. weight: math.unit(225, "lb"),
  20472. name: "Front",
  20473. image: {
  20474. source: "./media/characters/talana/front.svg",
  20475. extra: 1410 / 1300,
  20476. bottom: 0.015
  20477. }
  20478. },
  20479. frontDressed: {
  20480. height: math.unit(8, "feet"),
  20481. weight: math.unit(225, "lb"),
  20482. name: "Front (Dressed",
  20483. image: {
  20484. source: "./media/characters/talana/front-dressed.svg",
  20485. extra: 1410 / 1300,
  20486. bottom: 0.015
  20487. }
  20488. },
  20489. },
  20490. [
  20491. {
  20492. name: "Normal",
  20493. height: math.unit(8, "feet"),
  20494. default: true
  20495. },
  20496. ]
  20497. ))
  20498. characterMakers.push(() => makeCharacter(
  20499. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  20500. {
  20501. side: {
  20502. height: math.unit(7.2, "feet"),
  20503. weight: math.unit(150, "lb"),
  20504. name: "Side",
  20505. image: {
  20506. source: "./media/characters/xeauvok/side.svg",
  20507. extra: 1975 / 1523,
  20508. bottom: 0.07
  20509. }
  20510. },
  20511. },
  20512. [
  20513. {
  20514. name: "Normal",
  20515. height: math.unit(7.2, "feet"),
  20516. default: true
  20517. },
  20518. ]
  20519. ))
  20520. characterMakers.push(() => makeCharacter(
  20521. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  20522. {
  20523. side: {
  20524. height: math.unit(4, "meters"),
  20525. weight: math.unit(2200, "kg"),
  20526. name: "Side",
  20527. image: {
  20528. source: "./media/characters/zara/side.svg",
  20529. extra: 765/744,
  20530. bottom: 156/921
  20531. }
  20532. },
  20533. },
  20534. [
  20535. {
  20536. name: "Normal",
  20537. height: math.unit(4, "meters"),
  20538. default: true
  20539. },
  20540. ]
  20541. ))
  20542. characterMakers.push(() => makeCharacter(
  20543. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  20544. {
  20545. side: {
  20546. height: math.unit(6, "feet"),
  20547. weight: math.unit(150, "lb"),
  20548. name: "Side",
  20549. image: {
  20550. source: "./media/characters/richard-dragon/side.svg",
  20551. extra: 845 / 340,
  20552. bottom: 0.017
  20553. }
  20554. },
  20555. maw: {
  20556. height: math.unit(2.97, "feet"),
  20557. name: "Maw",
  20558. image: {
  20559. source: "./media/characters/richard-dragon/maw.svg"
  20560. }
  20561. },
  20562. },
  20563. [
  20564. ]
  20565. ))
  20566. characterMakers.push(() => makeCharacter(
  20567. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  20568. {
  20569. front: {
  20570. height: math.unit(4, "feet"),
  20571. weight: math.unit(100, "lb"),
  20572. name: "Front",
  20573. image: {
  20574. source: "./media/characters/richard-smeargle/front.svg",
  20575. extra: 2952 / 2820,
  20576. bottom: 0.028
  20577. }
  20578. },
  20579. },
  20580. [
  20581. {
  20582. name: "Normal",
  20583. height: math.unit(4, "feet"),
  20584. default: true
  20585. },
  20586. {
  20587. name: "Dynamax",
  20588. height: math.unit(20, "meters")
  20589. },
  20590. ]
  20591. ))
  20592. characterMakers.push(() => makeCharacter(
  20593. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  20594. {
  20595. front: {
  20596. height: math.unit(6, "feet"),
  20597. weight: math.unit(110, "lb"),
  20598. name: "Front",
  20599. image: {
  20600. source: "./media/characters/klay/front.svg",
  20601. extra: 962 / 883,
  20602. bottom: 0.04
  20603. }
  20604. },
  20605. back: {
  20606. height: math.unit(6, "feet"),
  20607. weight: math.unit(110, "lb"),
  20608. name: "Back",
  20609. image: {
  20610. source: "./media/characters/klay/back.svg",
  20611. extra: 962 / 883
  20612. }
  20613. },
  20614. beans: {
  20615. height: math.unit(1.15, "feet"),
  20616. name: "Beans",
  20617. image: {
  20618. source: "./media/characters/klay/beans.svg"
  20619. }
  20620. },
  20621. },
  20622. [
  20623. {
  20624. name: "Micro",
  20625. height: math.unit(6, "inches")
  20626. },
  20627. {
  20628. name: "Mini",
  20629. height: math.unit(3, "feet")
  20630. },
  20631. {
  20632. name: "Normal",
  20633. height: math.unit(6, "feet"),
  20634. default: true
  20635. },
  20636. {
  20637. name: "Big",
  20638. height: math.unit(25, "feet")
  20639. },
  20640. {
  20641. name: "Macro",
  20642. height: math.unit(100, "feet")
  20643. },
  20644. {
  20645. name: "Megamacro",
  20646. height: math.unit(400, "feet")
  20647. },
  20648. ]
  20649. ))
  20650. characterMakers.push(() => makeCharacter(
  20651. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20652. {
  20653. front: {
  20654. height: math.unit(6, "feet"),
  20655. weight: math.unit(160, "lb"),
  20656. name: "Front",
  20657. image: {
  20658. source: "./media/characters/marcus/front.svg",
  20659. extra: 734 / 676,
  20660. bottom: 0.03
  20661. }
  20662. },
  20663. },
  20664. [
  20665. {
  20666. name: "Little",
  20667. height: math.unit(6, "feet")
  20668. },
  20669. {
  20670. name: "Normal",
  20671. height: math.unit(110, "feet"),
  20672. default: true
  20673. },
  20674. {
  20675. name: "Macro",
  20676. height: math.unit(250, "feet")
  20677. },
  20678. {
  20679. name: "Megamacro",
  20680. height: math.unit(1000, "feet")
  20681. },
  20682. ]
  20683. ))
  20684. characterMakers.push(() => makeCharacter(
  20685. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20686. {
  20687. front: {
  20688. height: math.unit(7, "feet"),
  20689. weight: math.unit(275, "lb"),
  20690. name: "Front",
  20691. image: {
  20692. source: "./media/characters/claude-delroute/front.svg",
  20693. extra: 902/827,
  20694. bottom: 26/928
  20695. }
  20696. },
  20697. side: {
  20698. height: math.unit(7, "feet"),
  20699. weight: math.unit(275, "lb"),
  20700. name: "Side",
  20701. image: {
  20702. source: "./media/characters/claude-delroute/side.svg",
  20703. extra: 908/853,
  20704. bottom: 16/924
  20705. }
  20706. },
  20707. back: {
  20708. height: math.unit(7, "feet"),
  20709. weight: math.unit(275, "lb"),
  20710. name: "Back",
  20711. image: {
  20712. source: "./media/characters/claude-delroute/back.svg",
  20713. extra: 911/829,
  20714. bottom: 18/929
  20715. }
  20716. },
  20717. maw: {
  20718. height: math.unit(0.6407, "meters"),
  20719. name: "Maw",
  20720. image: {
  20721. source: "./media/characters/claude-delroute/maw.svg"
  20722. }
  20723. },
  20724. },
  20725. [
  20726. {
  20727. name: "Normal",
  20728. height: math.unit(7, "feet"),
  20729. default: true
  20730. },
  20731. {
  20732. name: "Lorge",
  20733. height: math.unit(20, "feet")
  20734. },
  20735. ]
  20736. ))
  20737. characterMakers.push(() => makeCharacter(
  20738. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20739. {
  20740. front: {
  20741. height: math.unit(8 + 4 / 12, "feet"),
  20742. weight: math.unit(600, "lb"),
  20743. name: "Front",
  20744. image: {
  20745. source: "./media/characters/dragonien/front.svg",
  20746. extra: 100 / 94,
  20747. bottom: 3.3 / 103.3445
  20748. }
  20749. },
  20750. back: {
  20751. height: math.unit(8 + 4 / 12, "feet"),
  20752. weight: math.unit(600, "lb"),
  20753. name: "Back",
  20754. image: {
  20755. source: "./media/characters/dragonien/back.svg",
  20756. extra: 776 / 746,
  20757. bottom: 6.4 / 782.0616
  20758. }
  20759. },
  20760. foot: {
  20761. height: math.unit(1.54, "feet"),
  20762. name: "Foot",
  20763. image: {
  20764. source: "./media/characters/dragonien/foot.svg",
  20765. }
  20766. },
  20767. },
  20768. [
  20769. {
  20770. name: "Normal",
  20771. height: math.unit(8 + 4 / 12, "feet"),
  20772. default: true
  20773. },
  20774. {
  20775. name: "Macro",
  20776. height: math.unit(200, "feet")
  20777. },
  20778. {
  20779. name: "Megamacro",
  20780. height: math.unit(1, "mile")
  20781. },
  20782. {
  20783. name: "Gigamacro",
  20784. height: math.unit(1000, "miles")
  20785. },
  20786. ]
  20787. ))
  20788. characterMakers.push(() => makeCharacter(
  20789. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20790. {
  20791. front: {
  20792. height: math.unit(5 + 2 / 12, "feet"),
  20793. weight: math.unit(110, "lb"),
  20794. name: "Front",
  20795. image: {
  20796. source: "./media/characters/desta/front.svg",
  20797. extra: 767 / 726,
  20798. bottom: 11.7 / 779
  20799. }
  20800. },
  20801. back: {
  20802. height: math.unit(5 + 2 / 12, "feet"),
  20803. weight: math.unit(110, "lb"),
  20804. name: "Back",
  20805. image: {
  20806. source: "./media/characters/desta/back.svg",
  20807. extra: 777 / 728,
  20808. bottom: 6 / 784
  20809. }
  20810. },
  20811. frontAlt: {
  20812. height: math.unit(5 + 2 / 12, "feet"),
  20813. weight: math.unit(110, "lb"),
  20814. name: "Front",
  20815. image: {
  20816. source: "./media/characters/desta/front-alt.svg",
  20817. extra: 1482 / 1417
  20818. }
  20819. },
  20820. side: {
  20821. height: math.unit(5 + 2 / 12, "feet"),
  20822. weight: math.unit(110, "lb"),
  20823. name: "Side",
  20824. image: {
  20825. source: "./media/characters/desta/side.svg",
  20826. extra: 2579 / 2491,
  20827. bottom: 0.053
  20828. }
  20829. },
  20830. },
  20831. [
  20832. {
  20833. name: "Micro",
  20834. height: math.unit(6, "inches")
  20835. },
  20836. {
  20837. name: "Normal",
  20838. height: math.unit(5 + 2 / 12, "feet"),
  20839. default: true
  20840. },
  20841. {
  20842. name: "Macro",
  20843. height: math.unit(62, "feet")
  20844. },
  20845. {
  20846. name: "Megamacro",
  20847. height: math.unit(1800, "feet")
  20848. },
  20849. ]
  20850. ))
  20851. characterMakers.push(() => makeCharacter(
  20852. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20853. {
  20854. front: {
  20855. height: math.unit(10, "feet"),
  20856. weight: math.unit(700, "lb"),
  20857. name: "Front",
  20858. image: {
  20859. source: "./media/characters/storm-alystar/front.svg",
  20860. extra: 2112 / 1898,
  20861. bottom: 0.034
  20862. }
  20863. },
  20864. },
  20865. [
  20866. {
  20867. name: "Micro",
  20868. height: math.unit(3.5, "inches")
  20869. },
  20870. {
  20871. name: "Normal",
  20872. height: math.unit(10, "feet"),
  20873. default: true
  20874. },
  20875. {
  20876. name: "Macro",
  20877. height: math.unit(400, "feet")
  20878. },
  20879. {
  20880. name: "Deific",
  20881. height: math.unit(60, "miles")
  20882. },
  20883. ]
  20884. ))
  20885. characterMakers.push(() => makeCharacter(
  20886. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20887. {
  20888. front: {
  20889. height: math.unit(2.35, "meters"),
  20890. weight: math.unit(119, "kg"),
  20891. name: "Front",
  20892. image: {
  20893. source: "./media/characters/ilia/front.svg",
  20894. extra: 1285 / 1255,
  20895. bottom: 0.06
  20896. }
  20897. },
  20898. },
  20899. [
  20900. {
  20901. name: "Normal",
  20902. height: math.unit(2.35, "meters")
  20903. },
  20904. {
  20905. name: "Macro",
  20906. height: math.unit(140, "meters"),
  20907. default: true
  20908. },
  20909. {
  20910. name: "Megamacro",
  20911. height: math.unit(100, "miles")
  20912. },
  20913. ]
  20914. ))
  20915. characterMakers.push(() => makeCharacter(
  20916. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20917. {
  20918. front: {
  20919. height: math.unit(6 + 5 / 12, "feet"),
  20920. weight: math.unit(190, "lb"),
  20921. name: "Front",
  20922. image: {
  20923. source: "./media/characters/kingdead/front.svg",
  20924. extra: 1228 / 1177
  20925. }
  20926. },
  20927. },
  20928. [
  20929. {
  20930. name: "Micro",
  20931. height: math.unit(7, "inches")
  20932. },
  20933. {
  20934. name: "Normal",
  20935. height: math.unit(6 + 5 / 12, "feet")
  20936. },
  20937. {
  20938. name: "Macro",
  20939. height: math.unit(150, "feet"),
  20940. default: true
  20941. },
  20942. {
  20943. name: "Megamacro",
  20944. height: math.unit(200, "miles")
  20945. },
  20946. ]
  20947. ))
  20948. characterMakers.push(() => makeCharacter(
  20949. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20950. {
  20951. front: {
  20952. height: math.unit(8, "feet"),
  20953. weight: math.unit(600, "lb"),
  20954. name: "Front",
  20955. image: {
  20956. source: "./media/characters/kyrehx/front.svg",
  20957. extra: 1195 / 1095,
  20958. bottom: 0.034
  20959. }
  20960. },
  20961. },
  20962. [
  20963. {
  20964. name: "Micro",
  20965. height: math.unit(2, "inches")
  20966. },
  20967. {
  20968. name: "Normal",
  20969. height: math.unit(8, "feet"),
  20970. default: true
  20971. },
  20972. {
  20973. name: "Macro",
  20974. height: math.unit(255, "feet")
  20975. },
  20976. ]
  20977. ))
  20978. characterMakers.push(() => makeCharacter(
  20979. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20980. {
  20981. front: {
  20982. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20983. weight: math.unit(184, "lb"),
  20984. name: "Front",
  20985. image: {
  20986. source: "./media/characters/xang/front.svg",
  20987. extra: 845 / 755
  20988. }
  20989. },
  20990. },
  20991. [
  20992. {
  20993. name: "Normal",
  20994. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20995. default: true
  20996. },
  20997. {
  20998. name: "Macro",
  20999. height: math.unit(0.935 * 146, "feet")
  21000. },
  21001. {
  21002. name: "Megamacro",
  21003. height: math.unit(0.935 * 3, "miles")
  21004. },
  21005. ]
  21006. ))
  21007. characterMakers.push(() => makeCharacter(
  21008. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  21009. {
  21010. frontDressed: {
  21011. height: math.unit(5 + 7 / 12, "feet"),
  21012. weight: math.unit(140, "lb"),
  21013. name: "Front (Dressed)",
  21014. image: {
  21015. source: "./media/characters/doc-weardno/front-dressed.svg",
  21016. extra: 263 / 234
  21017. }
  21018. },
  21019. backDressed: {
  21020. height: math.unit(5 + 7 / 12, "feet"),
  21021. weight: math.unit(140, "lb"),
  21022. name: "Back (Dressed)",
  21023. image: {
  21024. source: "./media/characters/doc-weardno/back-dressed.svg",
  21025. extra: 266 / 238
  21026. }
  21027. },
  21028. front: {
  21029. height: math.unit(5 + 7 / 12, "feet"),
  21030. weight: math.unit(140, "lb"),
  21031. name: "Front",
  21032. image: {
  21033. source: "./media/characters/doc-weardno/front.svg",
  21034. extra: 254 / 233
  21035. }
  21036. },
  21037. },
  21038. [
  21039. {
  21040. name: "Micro",
  21041. height: math.unit(3, "inches")
  21042. },
  21043. {
  21044. name: "Normal",
  21045. height: math.unit(5 + 7 / 12, "feet"),
  21046. default: true
  21047. },
  21048. {
  21049. name: "Macro",
  21050. height: math.unit(25, "feet")
  21051. },
  21052. {
  21053. name: "Megamacro",
  21054. height: math.unit(2, "miles")
  21055. },
  21056. ]
  21057. ))
  21058. characterMakers.push(() => makeCharacter(
  21059. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  21060. {
  21061. front: {
  21062. height: math.unit(6 + 2 / 12, "feet"),
  21063. weight: math.unit(153, "lb"),
  21064. name: "Front",
  21065. image: {
  21066. source: "./media/characters/seth-whilst/front.svg",
  21067. bottom: 0.07
  21068. }
  21069. },
  21070. },
  21071. [
  21072. {
  21073. name: "Micro",
  21074. height: math.unit(5, "inches")
  21075. },
  21076. {
  21077. name: "Normal",
  21078. height: math.unit(6 + 2 / 12, "feet"),
  21079. default: true
  21080. },
  21081. ]
  21082. ))
  21083. characterMakers.push(() => makeCharacter(
  21084. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  21085. {
  21086. front: {
  21087. height: math.unit(3, "inches"),
  21088. weight: math.unit(8, "grams"),
  21089. name: "Front",
  21090. image: {
  21091. source: "./media/characters/pocket-jabari/front.svg",
  21092. extra: 1024 / 974,
  21093. bottom: 0.039
  21094. }
  21095. },
  21096. },
  21097. [
  21098. {
  21099. name: "Minimicro",
  21100. height: math.unit(8, "mm")
  21101. },
  21102. {
  21103. name: "Micro",
  21104. height: math.unit(3, "inches"),
  21105. default: true
  21106. },
  21107. {
  21108. name: "Normal",
  21109. height: math.unit(3, "feet")
  21110. },
  21111. ]
  21112. ))
  21113. characterMakers.push(() => makeCharacter(
  21114. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  21115. {
  21116. frontDressed: {
  21117. height: math.unit(15, "feet"),
  21118. weight: math.unit(3280, "lb"),
  21119. name: "Front (Dressed)",
  21120. image: {
  21121. source: "./media/characters/sapphy/front-dressed.svg",
  21122. extra: 1951/1654,
  21123. bottom: 194/2145
  21124. },
  21125. form: "anthro",
  21126. default: true
  21127. },
  21128. backDressed: {
  21129. height: math.unit(15, "feet"),
  21130. weight: math.unit(3280, "lb"),
  21131. name: "Back (Dressed)",
  21132. image: {
  21133. source: "./media/characters/sapphy/back-dressed.svg",
  21134. extra: 2058/1918,
  21135. bottom: 125/2183
  21136. },
  21137. form: "anthro"
  21138. },
  21139. frontNude: {
  21140. height: math.unit(15, "feet"),
  21141. weight: math.unit(3280, "lb"),
  21142. name: "Front (Nude)",
  21143. image: {
  21144. source: "./media/characters/sapphy/front-nude.svg",
  21145. extra: 1951/1654,
  21146. bottom: 194/2145
  21147. },
  21148. form: "anthro"
  21149. },
  21150. backNude: {
  21151. height: math.unit(15, "feet"),
  21152. weight: math.unit(3280, "lb"),
  21153. name: "Back (Nude)",
  21154. image: {
  21155. source: "./media/characters/sapphy/back-nude.svg",
  21156. extra: 2058/1918,
  21157. bottom: 125/2183
  21158. },
  21159. form: "anthro"
  21160. },
  21161. full: {
  21162. height: math.unit(15, "feet"),
  21163. weight: math.unit(3280, "lb"),
  21164. name: "Full",
  21165. image: {
  21166. source: "./media/characters/sapphy/full.svg",
  21167. extra: 1396/1317,
  21168. bottom: 44/1440
  21169. },
  21170. form: "anthro"
  21171. },
  21172. dick: {
  21173. height: math.unit(3.8, "feet"),
  21174. name: "Dick",
  21175. image: {
  21176. source: "./media/characters/sapphy/dick.svg"
  21177. },
  21178. form: "anthro"
  21179. },
  21180. feral: {
  21181. height: math.unit(35, "feet"),
  21182. weight: math.unit(160, "tons"),
  21183. name: "Feral",
  21184. image: {
  21185. source: "./media/characters/sapphy/feral.svg",
  21186. extra: 1050/573,
  21187. bottom: 60/1110
  21188. },
  21189. form: "feral",
  21190. default: true
  21191. },
  21192. },
  21193. [
  21194. {
  21195. name: "Normal",
  21196. height: math.unit(15, "feet"),
  21197. form: "anthro"
  21198. },
  21199. {
  21200. name: "Casual Macro",
  21201. height: math.unit(120, "feet"),
  21202. form: "anthro"
  21203. },
  21204. {
  21205. name: "Macro",
  21206. height: math.unit(2150, "feet"),
  21207. default: true,
  21208. form: "anthro"
  21209. },
  21210. {
  21211. name: "Megamacro",
  21212. height: math.unit(8, "miles"),
  21213. form: "anthro"
  21214. },
  21215. {
  21216. name: "Galaxy Mom",
  21217. height: math.unit(6, "megalightyears"),
  21218. form: "anthro"
  21219. },
  21220. {
  21221. name: "Normal",
  21222. height: math.unit(35, "feet"),
  21223. form: "feral",
  21224. default: true
  21225. },
  21226. {
  21227. name: "Macro",
  21228. height: math.unit(300, "feet"),
  21229. form: "feral"
  21230. },
  21231. {
  21232. name: "Galaxy Mom",
  21233. height: math.unit(10, "megalightyears"),
  21234. form: "feral"
  21235. },
  21236. ],
  21237. {
  21238. "anthro": {
  21239. name: "Anthro",
  21240. default: true
  21241. },
  21242. "feral": {
  21243. name: "Feral"
  21244. }
  21245. }
  21246. ))
  21247. characterMakers.push(() => makeCharacter(
  21248. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  21249. {
  21250. hyenaFront: {
  21251. height: math.unit(6, "feet"),
  21252. weight: math.unit(190, "lb"),
  21253. name: "Front",
  21254. image: {
  21255. source: "./media/characters/kiro/hyena-front.svg",
  21256. extra: 927/839,
  21257. bottom: 91/1018
  21258. },
  21259. form: "hyena",
  21260. default: true
  21261. },
  21262. front: {
  21263. height: math.unit(6, "feet"),
  21264. weight: math.unit(170, "lb"),
  21265. name: "Front",
  21266. image: {
  21267. source: "./media/characters/kiro/front.svg",
  21268. extra: 1064 / 1012,
  21269. bottom: 0.052
  21270. },
  21271. form: "folf",
  21272. default: true
  21273. },
  21274. },
  21275. [
  21276. {
  21277. name: "Micro",
  21278. height: math.unit(6, "inches"),
  21279. form: "folf"
  21280. },
  21281. {
  21282. name: "Normal",
  21283. height: math.unit(6, "feet"),
  21284. form: "folf",
  21285. default: true
  21286. },
  21287. {
  21288. name: "Macro",
  21289. height: math.unit(72, "feet"),
  21290. form: "folf"
  21291. },
  21292. {
  21293. name: "Micro",
  21294. height: math.unit(6, "inches"),
  21295. form: "hyena"
  21296. },
  21297. {
  21298. name: "Normal",
  21299. height: math.unit(6, "feet"),
  21300. form: "hyena",
  21301. default: true
  21302. },
  21303. {
  21304. name: "Macro",
  21305. height: math.unit(72, "feet"),
  21306. form: "hyena"
  21307. },
  21308. ],
  21309. {
  21310. "hyena": {
  21311. name: "Hyena",
  21312. default: true
  21313. },
  21314. "folf": {
  21315. name: "Folf",
  21316. },
  21317. }
  21318. ))
  21319. characterMakers.push(() => makeCharacter(
  21320. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  21321. {
  21322. front: {
  21323. height: math.unit(5 + 9 / 12, "feet"),
  21324. weight: math.unit(175, "lb"),
  21325. name: "Front",
  21326. image: {
  21327. source: "./media/characters/irishfox/front.svg",
  21328. extra: 1912 / 1680,
  21329. bottom: 0.02
  21330. }
  21331. },
  21332. },
  21333. [
  21334. {
  21335. name: "Nano",
  21336. height: math.unit(1, "mm")
  21337. },
  21338. {
  21339. name: "Micro",
  21340. height: math.unit(2, "inches")
  21341. },
  21342. {
  21343. name: "Normal",
  21344. height: math.unit(5 + 9 / 12, "feet"),
  21345. default: true
  21346. },
  21347. {
  21348. name: "Macro",
  21349. height: math.unit(45, "feet")
  21350. },
  21351. ]
  21352. ))
  21353. characterMakers.push(() => makeCharacter(
  21354. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  21355. {
  21356. front: {
  21357. height: math.unit(6 + 1 / 12, "feet"),
  21358. weight: math.unit(75, "lb"),
  21359. name: "Front",
  21360. image: {
  21361. source: "./media/characters/aronai-sieyes/front.svg",
  21362. extra: 1532/1450,
  21363. bottom: 42/1574
  21364. }
  21365. },
  21366. side: {
  21367. height: math.unit(6 + 1 / 12, "feet"),
  21368. weight: math.unit(75, "lb"),
  21369. name: "Side",
  21370. image: {
  21371. source: "./media/characters/aronai-sieyes/side.svg",
  21372. extra: 1422/1365,
  21373. bottom: 148/1570
  21374. }
  21375. },
  21376. back: {
  21377. height: math.unit(6 + 1 / 12, "feet"),
  21378. weight: math.unit(75, "lb"),
  21379. name: "Back",
  21380. image: {
  21381. source: "./media/characters/aronai-sieyes/back.svg",
  21382. extra: 1526/1464,
  21383. bottom: 51/1577
  21384. }
  21385. },
  21386. dressed: {
  21387. height: math.unit(6 + 1 / 12, "feet"),
  21388. weight: math.unit(75, "lb"),
  21389. name: "Dressed",
  21390. image: {
  21391. source: "./media/characters/aronai-sieyes/dressed.svg",
  21392. extra: 1559/1483,
  21393. bottom: 39/1598
  21394. }
  21395. },
  21396. slit: {
  21397. height: math.unit(1.3, "feet"),
  21398. name: "Slit",
  21399. image: {
  21400. source: "./media/characters/aronai-sieyes/slit.svg"
  21401. }
  21402. },
  21403. slitSpread: {
  21404. height: math.unit(0.9, "feet"),
  21405. name: "Slit (Spread)",
  21406. image: {
  21407. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  21408. }
  21409. },
  21410. rump: {
  21411. height: math.unit(1.3, "feet"),
  21412. name: "Rump",
  21413. image: {
  21414. source: "./media/characters/aronai-sieyes/rump.svg"
  21415. }
  21416. },
  21417. maw: {
  21418. height: math.unit(1.25, "feet"),
  21419. name: "Maw",
  21420. image: {
  21421. source: "./media/characters/aronai-sieyes/maw.svg"
  21422. }
  21423. },
  21424. feral: {
  21425. height: math.unit(18, "feet"),
  21426. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  21427. name: "Feral",
  21428. image: {
  21429. source: "./media/characters/aronai-sieyes/feral.svg",
  21430. extra: 1530 / 1240,
  21431. bottom: 0.035
  21432. }
  21433. },
  21434. },
  21435. [
  21436. {
  21437. name: "Micro",
  21438. height: math.unit(2, "inches")
  21439. },
  21440. {
  21441. name: "Normal",
  21442. height: math.unit(6 + 1 / 12, "feet"),
  21443. default: true
  21444. }
  21445. ]
  21446. ))
  21447. characterMakers.push(() => makeCharacter(
  21448. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  21449. {
  21450. front: {
  21451. height: math.unit(12, "feet"),
  21452. weight: math.unit(410, "kg"),
  21453. name: "Front",
  21454. image: {
  21455. source: "./media/characters/xuna/front.svg",
  21456. extra: 2184 / 1980
  21457. }
  21458. },
  21459. side: {
  21460. height: math.unit(12, "feet"),
  21461. weight: math.unit(410, "kg"),
  21462. name: "Side",
  21463. image: {
  21464. source: "./media/characters/xuna/side.svg",
  21465. extra: 2184 / 1980
  21466. }
  21467. },
  21468. back: {
  21469. height: math.unit(12, "feet"),
  21470. weight: math.unit(410, "kg"),
  21471. name: "Back",
  21472. image: {
  21473. source: "./media/characters/xuna/back.svg",
  21474. extra: 2184 / 1980
  21475. }
  21476. },
  21477. },
  21478. [
  21479. {
  21480. name: "Nano glow",
  21481. height: math.unit(10, "nm")
  21482. },
  21483. {
  21484. name: "Micro floof",
  21485. height: math.unit(0.3, "m")
  21486. },
  21487. {
  21488. name: "Huggable softy boi",
  21489. height: math.unit(3.6576, "m"),
  21490. default: true
  21491. },
  21492. {
  21493. name: "Admirable floof",
  21494. height: math.unit(80, "meters")
  21495. },
  21496. {
  21497. name: "Gentle macro",
  21498. height: math.unit(300, "meters")
  21499. },
  21500. {
  21501. name: "Very careful floof",
  21502. height: math.unit(3200, "meters")
  21503. },
  21504. {
  21505. name: "The mega floof",
  21506. height: math.unit(36000, "meters")
  21507. },
  21508. {
  21509. name: "Giga-fur-Wicker",
  21510. height: math.unit(4800000, "meters")
  21511. },
  21512. {
  21513. name: "Licky world",
  21514. height: math.unit(20000000, "meters")
  21515. },
  21516. {
  21517. name: "Floofy cyan sun",
  21518. height: math.unit(1500000000, "meters")
  21519. },
  21520. {
  21521. name: "Milky Wicker",
  21522. height: math.unit(1000000000000000000000, "meters")
  21523. },
  21524. {
  21525. name: "The observing Wicker",
  21526. height: math.unit(999999999999999999999999999, "meters")
  21527. },
  21528. ]
  21529. ))
  21530. characterMakers.push(() => makeCharacter(
  21531. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21532. {
  21533. front: {
  21534. height: math.unit(5 + 9 / 12, "feet"),
  21535. weight: math.unit(150, "lb"),
  21536. name: "Front",
  21537. image: {
  21538. source: "./media/characters/arokha-sieyes/front.svg",
  21539. extra: 1425 / 1284,
  21540. bottom: 0.05
  21541. }
  21542. },
  21543. },
  21544. [
  21545. {
  21546. name: "Normal",
  21547. height: math.unit(5 + 9 / 12, "feet")
  21548. },
  21549. {
  21550. name: "Macro",
  21551. height: math.unit(30, "meters"),
  21552. default: true
  21553. },
  21554. ]
  21555. ))
  21556. characterMakers.push(() => makeCharacter(
  21557. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21558. {
  21559. front: {
  21560. height: math.unit(6, "feet"),
  21561. weight: math.unit(180, "lb"),
  21562. name: "Front",
  21563. image: {
  21564. source: "./media/characters/arokh-sieyes/front.svg",
  21565. extra: 1830 / 1769,
  21566. bottom: 0.01
  21567. }
  21568. },
  21569. },
  21570. [
  21571. {
  21572. name: "Normal",
  21573. height: math.unit(6, "feet")
  21574. },
  21575. {
  21576. name: "Macro",
  21577. height: math.unit(30, "meters"),
  21578. default: true
  21579. },
  21580. ]
  21581. ))
  21582. characterMakers.push(() => makeCharacter(
  21583. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  21584. {
  21585. side: {
  21586. height: math.unit(13 + 1 / 12, "feet"),
  21587. weight: math.unit(8.5, "tonnes"),
  21588. preyCapacity: math.unit(36, "people"),
  21589. name: "Side",
  21590. image: {
  21591. source: "./media/characters/goldeneye/side.svg",
  21592. extra: 1139/741,
  21593. bottom: 98/1237
  21594. }
  21595. },
  21596. front: {
  21597. height: math.unit(5.1, "feet"),
  21598. weight: math.unit(8.5, "tonnes"),
  21599. preyCapacity: math.unit(36, "people"),
  21600. name: "Front",
  21601. image: {
  21602. source: "./media/characters/goldeneye/front.svg",
  21603. extra: 635/365,
  21604. bottom: 598/1233
  21605. }
  21606. },
  21607. maw: {
  21608. height: math.unit(6.6, "feet"),
  21609. name: "Maw",
  21610. image: {
  21611. source: "./media/characters/goldeneye/maw.svg"
  21612. }
  21613. },
  21614. headFront: {
  21615. height: math.unit(8, "feet"),
  21616. name: "Head (Front)",
  21617. image: {
  21618. source: "./media/characters/goldeneye/head-front.svg"
  21619. }
  21620. },
  21621. headSide: {
  21622. height: math.unit(6, "feet"),
  21623. name: "Head (Side)",
  21624. image: {
  21625. source: "./media/characters/goldeneye/head-side.svg"
  21626. }
  21627. },
  21628. headBack: {
  21629. height: math.unit(8, "feet"),
  21630. name: "Head (Back)",
  21631. image: {
  21632. source: "./media/characters/goldeneye/head-back.svg"
  21633. }
  21634. },
  21635. paw: {
  21636. height: math.unit(3.4, "feet"),
  21637. name: "Paw",
  21638. image: {
  21639. source: "./media/characters/goldeneye/paw.svg"
  21640. }
  21641. },
  21642. toering: {
  21643. height: math.unit(0.45, "feet"),
  21644. name: "Toering",
  21645. image: {
  21646. source: "./media/characters/goldeneye/toering.svg"
  21647. }
  21648. },
  21649. eyes: {
  21650. height: math.unit(0.5, "feet"),
  21651. name: "Eyes",
  21652. image: {
  21653. source: "./media/characters/goldeneye/eyes.svg"
  21654. }
  21655. },
  21656. },
  21657. [
  21658. {
  21659. name: "Normal",
  21660. height: math.unit(13 + 1 / 12, "feet"),
  21661. default: true
  21662. },
  21663. ]
  21664. ))
  21665. characterMakers.push(() => makeCharacter(
  21666. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21667. {
  21668. front: {
  21669. height: math.unit(6 + 1 / 12, "feet"),
  21670. weight: math.unit(210, "lb"),
  21671. name: "Front",
  21672. image: {
  21673. source: "./media/characters/leonardo-lycheborne/front.svg",
  21674. extra: 776/723,
  21675. bottom: 34/810
  21676. }
  21677. },
  21678. side: {
  21679. height: math.unit(6 + 1 / 12, "feet"),
  21680. weight: math.unit(210, "lb"),
  21681. name: "Side",
  21682. image: {
  21683. source: "./media/characters/leonardo-lycheborne/side.svg",
  21684. extra: 780/728,
  21685. bottom: 12/792
  21686. }
  21687. },
  21688. back: {
  21689. height: math.unit(6 + 1 / 12, "feet"),
  21690. weight: math.unit(210, "lb"),
  21691. name: "Back",
  21692. image: {
  21693. source: "./media/characters/leonardo-lycheborne/back.svg",
  21694. extra: 775/721,
  21695. bottom: 17/792
  21696. }
  21697. },
  21698. hand: {
  21699. height: math.unit(1.08, "feet"),
  21700. name: "Hand",
  21701. image: {
  21702. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21703. }
  21704. },
  21705. foot: {
  21706. height: math.unit(1.32, "feet"),
  21707. name: "Foot",
  21708. image: {
  21709. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21710. }
  21711. },
  21712. maw: {
  21713. height: math.unit(1, "feet"),
  21714. name: "Maw",
  21715. image: {
  21716. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21717. }
  21718. },
  21719. were: {
  21720. height: math.unit(20, "feet"),
  21721. weight: math.unit(7800, "lb"),
  21722. name: "Were",
  21723. image: {
  21724. source: "./media/characters/leonardo-lycheborne/were.svg",
  21725. extra: 1224/1165,
  21726. bottom: 72/1296
  21727. }
  21728. },
  21729. feral: {
  21730. height: math.unit(7.5, "feet"),
  21731. weight: math.unit(600, "lb"),
  21732. name: "Feral",
  21733. image: {
  21734. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21735. extra: 797/702,
  21736. bottom: 139/936
  21737. }
  21738. },
  21739. taur: {
  21740. height: math.unit(11, "feet"),
  21741. weight: math.unit(3300, "lb"),
  21742. name: "Taur",
  21743. image: {
  21744. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21745. extra: 1271/1197,
  21746. bottom: 47/1318
  21747. }
  21748. },
  21749. barghest: {
  21750. height: math.unit(11, "feet"),
  21751. weight: math.unit(1300, "lb"),
  21752. name: "Barghest",
  21753. image: {
  21754. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21755. extra: 1291/1204,
  21756. bottom: 37/1328
  21757. }
  21758. },
  21759. dick: {
  21760. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21761. name: "Dick",
  21762. image: {
  21763. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21764. }
  21765. },
  21766. dickWere: {
  21767. height: math.unit((20) / 3.8, "feet"),
  21768. name: "Dick (Were)",
  21769. image: {
  21770. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21771. }
  21772. },
  21773. },
  21774. [
  21775. {
  21776. name: "Normal",
  21777. height: math.unit(6 + 1 / 12, "feet"),
  21778. default: true
  21779. },
  21780. ]
  21781. ))
  21782. characterMakers.push(() => makeCharacter(
  21783. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21784. {
  21785. front: {
  21786. height: math.unit(10, "feet"),
  21787. weight: math.unit(350, "lb"),
  21788. name: "Front",
  21789. image: {
  21790. source: "./media/characters/jet/front.svg",
  21791. extra: 2050 / 1980,
  21792. bottom: 0.013
  21793. }
  21794. },
  21795. back: {
  21796. height: math.unit(10, "feet"),
  21797. weight: math.unit(350, "lb"),
  21798. name: "Back",
  21799. image: {
  21800. source: "./media/characters/jet/back.svg",
  21801. extra: 2050 / 1980,
  21802. bottom: 0.013
  21803. }
  21804. },
  21805. },
  21806. [
  21807. {
  21808. name: "Micro",
  21809. height: math.unit(6, "inches")
  21810. },
  21811. {
  21812. name: "Normal",
  21813. height: math.unit(10, "feet"),
  21814. default: true
  21815. },
  21816. {
  21817. name: "Macro",
  21818. height: math.unit(100, "feet")
  21819. },
  21820. ]
  21821. ))
  21822. characterMakers.push(() => makeCharacter(
  21823. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21824. {
  21825. front: {
  21826. height: math.unit(15, "feet"),
  21827. weight: math.unit(2800, "lb"),
  21828. name: "Front",
  21829. image: {
  21830. source: "./media/characters/tanarath/front.svg",
  21831. extra: 2392 / 2220,
  21832. bottom: 0.03
  21833. }
  21834. },
  21835. back: {
  21836. height: math.unit(15, "feet"),
  21837. weight: math.unit(2800, "lb"),
  21838. name: "Back",
  21839. image: {
  21840. source: "./media/characters/tanarath/back.svg",
  21841. extra: 2392 / 2220,
  21842. bottom: 0.03
  21843. }
  21844. },
  21845. },
  21846. [
  21847. {
  21848. name: "Normal",
  21849. height: math.unit(15, "feet"),
  21850. default: true
  21851. },
  21852. ]
  21853. ))
  21854. characterMakers.push(() => makeCharacter(
  21855. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21856. {
  21857. front: {
  21858. height: math.unit(7 + 1 / 12, "feet"),
  21859. weight: math.unit(175, "lb"),
  21860. name: "Front",
  21861. image: {
  21862. source: "./media/characters/patty-cattybatty/front.svg",
  21863. extra: 908 / 874,
  21864. bottom: 0.025
  21865. }
  21866. },
  21867. },
  21868. [
  21869. {
  21870. name: "Micro",
  21871. height: math.unit(1, "inch")
  21872. },
  21873. {
  21874. name: "Normal",
  21875. height: math.unit(7 + 1 / 12, "feet")
  21876. },
  21877. {
  21878. name: "Mini Macro",
  21879. height: math.unit(155, "feet")
  21880. },
  21881. {
  21882. name: "Macro",
  21883. height: math.unit(1077, "feet")
  21884. },
  21885. {
  21886. name: "Mega Macro",
  21887. height: math.unit(47650, "feet"),
  21888. default: true
  21889. },
  21890. {
  21891. name: "Giga Macro",
  21892. height: math.unit(440, "miles")
  21893. },
  21894. {
  21895. name: "Tera Macro",
  21896. height: math.unit(8700, "miles")
  21897. },
  21898. {
  21899. name: "Planetary Macro",
  21900. height: math.unit(32700, "miles")
  21901. },
  21902. {
  21903. name: "Solar Macro",
  21904. height: math.unit(550000, "miles")
  21905. },
  21906. {
  21907. name: "Celestial Macro",
  21908. height: math.unit(2.5, "AU")
  21909. },
  21910. ]
  21911. ))
  21912. characterMakers.push(() => makeCharacter(
  21913. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21914. {
  21915. front: {
  21916. height: math.unit(4 + 5 / 12, "feet"),
  21917. weight: math.unit(90, "lb"),
  21918. name: "Front",
  21919. image: {
  21920. source: "./media/characters/cappu/front.svg",
  21921. extra: 1247 / 1152,
  21922. bottom: 0.012
  21923. }
  21924. },
  21925. },
  21926. [
  21927. {
  21928. name: "Normal",
  21929. height: math.unit(4 + 5 / 12, "feet"),
  21930. default: true
  21931. },
  21932. ]
  21933. ))
  21934. characterMakers.push(() => makeCharacter(
  21935. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21936. {
  21937. frontDressed: {
  21938. height: math.unit(70, "cm"),
  21939. weight: math.unit(6, "kg"),
  21940. name: "Front (Dressed)",
  21941. image: {
  21942. source: "./media/characters/sebi/front-dressed.svg",
  21943. extra: 713.5 / 686.5,
  21944. bottom: 0.003
  21945. }
  21946. },
  21947. front: {
  21948. height: math.unit(70, "cm"),
  21949. weight: math.unit(5, "kg"),
  21950. name: "Front",
  21951. image: {
  21952. source: "./media/characters/sebi/front.svg",
  21953. extra: 713.5 / 686.5,
  21954. bottom: 0.003
  21955. }
  21956. }
  21957. },
  21958. [
  21959. {
  21960. name: "Normal",
  21961. height: math.unit(70, "cm"),
  21962. default: true
  21963. },
  21964. {
  21965. name: "Macro",
  21966. height: math.unit(8, "meters")
  21967. },
  21968. ]
  21969. ))
  21970. characterMakers.push(() => makeCharacter(
  21971. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21972. {
  21973. front: {
  21974. height: math.unit(6, "feet"),
  21975. weight: math.unit(150, "lb"),
  21976. name: "Front",
  21977. image: {
  21978. source: "./media/characters/typhek/front.svg",
  21979. extra: 1948 / 1929,
  21980. bottom: 0.025
  21981. }
  21982. },
  21983. side: {
  21984. height: math.unit(6, "feet"),
  21985. weight: math.unit(150, "lb"),
  21986. name: "Side",
  21987. image: {
  21988. source: "./media/characters/typhek/side.svg",
  21989. extra: 2034 / 2010,
  21990. bottom: 0.003
  21991. }
  21992. },
  21993. back: {
  21994. height: math.unit(6, "feet"),
  21995. weight: math.unit(150, "lb"),
  21996. name: "Back",
  21997. image: {
  21998. source: "./media/characters/typhek/back.svg",
  21999. extra: 2005 / 1978,
  22000. bottom: 0.004
  22001. }
  22002. },
  22003. palm: {
  22004. height: math.unit(1.2, "feet"),
  22005. name: "Palm",
  22006. image: {
  22007. source: "./media/characters/typhek/palm.svg"
  22008. }
  22009. },
  22010. fist: {
  22011. height: math.unit(1.1, "feet"),
  22012. name: "Fist",
  22013. image: {
  22014. source: "./media/characters/typhek/fist.svg"
  22015. }
  22016. },
  22017. foot: {
  22018. height: math.unit(1.57, "feet"),
  22019. name: "Foot",
  22020. image: {
  22021. source: "./media/characters/typhek/foot.svg"
  22022. }
  22023. },
  22024. sole: {
  22025. height: math.unit(2.05, "feet"),
  22026. name: "Sole",
  22027. image: {
  22028. source: "./media/characters/typhek/sole.svg"
  22029. }
  22030. },
  22031. },
  22032. [
  22033. {
  22034. name: "Macro",
  22035. height: math.unit(40, "stories"),
  22036. default: true
  22037. },
  22038. {
  22039. name: "Megamacro",
  22040. height: math.unit(1, "mile")
  22041. },
  22042. {
  22043. name: "Gigamacro",
  22044. height: math.unit(4000, "solarradii")
  22045. },
  22046. {
  22047. name: "Universal",
  22048. height: math.unit(1.1, "universes")
  22049. }
  22050. ]
  22051. ))
  22052. characterMakers.push(() => makeCharacter(
  22053. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  22054. {
  22055. side: {
  22056. height: math.unit(5 + 7 / 12, "feet"),
  22057. weight: math.unit(150, "lb"),
  22058. name: "Side",
  22059. image: {
  22060. source: "./media/characters/kassy/side.svg",
  22061. extra: 1280 / 1225,
  22062. bottom: 0.002
  22063. }
  22064. },
  22065. front: {
  22066. height: math.unit(5 + 7 / 12, "feet"),
  22067. weight: math.unit(150, "lb"),
  22068. name: "Front",
  22069. image: {
  22070. source: "./media/characters/kassy/front.svg",
  22071. extra: 1280 / 1225,
  22072. bottom: 0.025
  22073. }
  22074. },
  22075. back: {
  22076. height: math.unit(5 + 7 / 12, "feet"),
  22077. weight: math.unit(150, "lb"),
  22078. name: "Back",
  22079. image: {
  22080. source: "./media/characters/kassy/back.svg",
  22081. extra: 1280 / 1225,
  22082. bottom: 0.002
  22083. }
  22084. },
  22085. foot: {
  22086. height: math.unit(1.266, "feet"),
  22087. name: "Foot",
  22088. image: {
  22089. source: "./media/characters/kassy/foot.svg"
  22090. }
  22091. },
  22092. },
  22093. [
  22094. {
  22095. name: "Normal",
  22096. height: math.unit(5 + 7 / 12, "feet")
  22097. },
  22098. {
  22099. name: "Macro",
  22100. height: math.unit(137, "feet"),
  22101. default: true
  22102. },
  22103. {
  22104. name: "Megamacro",
  22105. height: math.unit(1, "mile")
  22106. },
  22107. ]
  22108. ))
  22109. characterMakers.push(() => makeCharacter(
  22110. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  22111. {
  22112. front: {
  22113. height: math.unit(6 + 1 / 12, "feet"),
  22114. weight: math.unit(200, "lb"),
  22115. name: "Front",
  22116. image: {
  22117. source: "./media/characters/neil/front.svg",
  22118. extra: 1326 / 1250,
  22119. bottom: 0.023
  22120. }
  22121. },
  22122. },
  22123. [
  22124. {
  22125. name: "Normal",
  22126. height: math.unit(6 + 1 / 12, "feet"),
  22127. default: true
  22128. },
  22129. {
  22130. name: "Macro",
  22131. height: math.unit(200, "feet")
  22132. },
  22133. ]
  22134. ))
  22135. characterMakers.push(() => makeCharacter(
  22136. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  22137. {
  22138. front: {
  22139. height: math.unit(5 + 9 / 12, "feet"),
  22140. weight: math.unit(190, "lb"),
  22141. name: "Front",
  22142. image: {
  22143. source: "./media/characters/atticus/front.svg",
  22144. extra: 2934 / 2785,
  22145. bottom: 0.025
  22146. }
  22147. },
  22148. },
  22149. [
  22150. {
  22151. name: "Normal",
  22152. height: math.unit(5 + 9 / 12, "feet"),
  22153. default: true
  22154. },
  22155. {
  22156. name: "Macro",
  22157. height: math.unit(180, "feet")
  22158. },
  22159. ]
  22160. ))
  22161. characterMakers.push(() => makeCharacter(
  22162. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  22163. {
  22164. side: {
  22165. height: math.unit(9, "feet"),
  22166. weight: math.unit(650, "lb"),
  22167. name: "Side",
  22168. image: {
  22169. source: "./media/characters/milo/side.svg",
  22170. extra: 2644 / 2310,
  22171. bottom: 0.032
  22172. }
  22173. },
  22174. },
  22175. [
  22176. {
  22177. name: "Normal",
  22178. height: math.unit(9, "feet"),
  22179. default: true
  22180. },
  22181. {
  22182. name: "Macro",
  22183. height: math.unit(300, "feet")
  22184. },
  22185. ]
  22186. ))
  22187. characterMakers.push(() => makeCharacter(
  22188. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  22189. {
  22190. side: {
  22191. height: math.unit(8, "meters"),
  22192. weight: math.unit(90000, "kg"),
  22193. name: "Side",
  22194. image: {
  22195. source: "./media/characters/ijzer/side.svg",
  22196. extra: 2756 / 1600,
  22197. bottom: 0.01
  22198. }
  22199. },
  22200. },
  22201. [
  22202. {
  22203. name: "Small",
  22204. height: math.unit(3, "meters")
  22205. },
  22206. {
  22207. name: "Normal",
  22208. height: math.unit(8, "meters"),
  22209. default: true
  22210. },
  22211. {
  22212. name: "Normal+",
  22213. height: math.unit(10, "meters")
  22214. },
  22215. {
  22216. name: "Bigger",
  22217. height: math.unit(24, "meters")
  22218. },
  22219. {
  22220. name: "Huge",
  22221. height: math.unit(80, "meters")
  22222. },
  22223. ]
  22224. ))
  22225. characterMakers.push(() => makeCharacter(
  22226. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  22227. {
  22228. front: {
  22229. height: math.unit(6 + 2 / 12, "feet"),
  22230. weight: math.unit(153, "lb"),
  22231. name: "Front",
  22232. image: {
  22233. source: "./media/characters/luca-cervicum/front.svg",
  22234. extra: 370 / 327,
  22235. bottom: 0.015
  22236. }
  22237. },
  22238. back: {
  22239. height: math.unit(6 + 2 / 12, "feet"),
  22240. weight: math.unit(153, "lb"),
  22241. name: "Back",
  22242. image: {
  22243. source: "./media/characters/luca-cervicum/back.svg",
  22244. extra: 367 / 333,
  22245. bottom: 0.005
  22246. }
  22247. },
  22248. frontGear: {
  22249. height: math.unit(6 + 2 / 12, "feet"),
  22250. weight: math.unit(173, "lb"),
  22251. name: "Front (Gear)",
  22252. image: {
  22253. source: "./media/characters/luca-cervicum/front-gear.svg",
  22254. extra: 377 / 333,
  22255. bottom: 0.006
  22256. }
  22257. },
  22258. },
  22259. [
  22260. {
  22261. name: "Normal",
  22262. height: math.unit(6 + 2 / 12, "feet"),
  22263. default: true
  22264. },
  22265. ]
  22266. ))
  22267. characterMakers.push(() => makeCharacter(
  22268. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  22269. {
  22270. front: {
  22271. height: math.unit(6 + 1 / 12, "feet"),
  22272. weight: math.unit(304, "lb"),
  22273. name: "Front",
  22274. image: {
  22275. source: "./media/characters/oliver/front.svg",
  22276. extra: 157 / 143,
  22277. bottom: 0.08
  22278. }
  22279. },
  22280. },
  22281. [
  22282. {
  22283. name: "Normal",
  22284. height: math.unit(6 + 1 / 12, "feet"),
  22285. default: true
  22286. },
  22287. ]
  22288. ))
  22289. characterMakers.push(() => makeCharacter(
  22290. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  22291. {
  22292. front: {
  22293. height: math.unit(5 + 7 / 12, "feet"),
  22294. weight: math.unit(140, "lb"),
  22295. name: "Front",
  22296. image: {
  22297. source: "./media/characters/shane/front.svg",
  22298. extra: 304 / 289,
  22299. bottom: 0.005
  22300. }
  22301. },
  22302. },
  22303. [
  22304. {
  22305. name: "Normal",
  22306. height: math.unit(5 + 7 / 12, "feet"),
  22307. default: true
  22308. },
  22309. ]
  22310. ))
  22311. characterMakers.push(() => makeCharacter(
  22312. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  22313. {
  22314. front: {
  22315. height: math.unit(5 + 9 / 12, "feet"),
  22316. weight: math.unit(178, "lb"),
  22317. name: "Front",
  22318. image: {
  22319. source: "./media/characters/shin/front.svg",
  22320. extra: 159 / 151,
  22321. bottom: 0.015
  22322. }
  22323. },
  22324. },
  22325. [
  22326. {
  22327. name: "Normal",
  22328. height: math.unit(5 + 9 / 12, "feet"),
  22329. default: true
  22330. },
  22331. ]
  22332. ))
  22333. characterMakers.push(() => makeCharacter(
  22334. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  22335. {
  22336. front: {
  22337. height: math.unit(5 + 10 / 12, "feet"),
  22338. weight: math.unit(168, "lb"),
  22339. name: "Front",
  22340. image: {
  22341. source: "./media/characters/xerxes/front.svg",
  22342. extra: 282 / 260,
  22343. bottom: 0.045
  22344. }
  22345. },
  22346. },
  22347. [
  22348. {
  22349. name: "Normal",
  22350. height: math.unit(5 + 10 / 12, "feet"),
  22351. default: true
  22352. },
  22353. ]
  22354. ))
  22355. characterMakers.push(() => makeCharacter(
  22356. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  22357. {
  22358. front: {
  22359. height: math.unit(6 + 7 / 12, "feet"),
  22360. weight: math.unit(208, "lb"),
  22361. name: "Front",
  22362. image: {
  22363. source: "./media/characters/chaska/front.svg",
  22364. extra: 332 / 319,
  22365. bottom: 0.015
  22366. }
  22367. },
  22368. },
  22369. [
  22370. {
  22371. name: "Normal",
  22372. height: math.unit(6 + 7 / 12, "feet"),
  22373. default: true
  22374. },
  22375. ]
  22376. ))
  22377. characterMakers.push(() => makeCharacter(
  22378. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  22379. {
  22380. front: {
  22381. height: math.unit(5 + 8 / 12, "feet"),
  22382. weight: math.unit(208, "lb"),
  22383. name: "Front",
  22384. image: {
  22385. source: "./media/characters/enuk/front.svg",
  22386. extra: 437 / 406,
  22387. bottom: 0.02
  22388. }
  22389. },
  22390. },
  22391. [
  22392. {
  22393. name: "Normal",
  22394. height: math.unit(5 + 8 / 12, "feet"),
  22395. default: true
  22396. },
  22397. ]
  22398. ))
  22399. characterMakers.push(() => makeCharacter(
  22400. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  22401. {
  22402. front: {
  22403. height: math.unit(5 + 10 / 12, "feet"),
  22404. weight: math.unit(252, "lb"),
  22405. name: "Front",
  22406. image: {
  22407. source: "./media/characters/bruun/front.svg",
  22408. extra: 197 / 187,
  22409. bottom: 0.012
  22410. }
  22411. },
  22412. },
  22413. [
  22414. {
  22415. name: "Normal",
  22416. height: math.unit(5 + 10 / 12, "feet"),
  22417. default: true
  22418. },
  22419. ]
  22420. ))
  22421. characterMakers.push(() => makeCharacter(
  22422. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  22423. {
  22424. front: {
  22425. height: math.unit(6 + 10 / 12, "feet"),
  22426. weight: math.unit(255, "lb"),
  22427. name: "Front",
  22428. image: {
  22429. source: "./media/characters/alexeev/front.svg",
  22430. extra: 213 / 200,
  22431. bottom: 0.05
  22432. }
  22433. },
  22434. },
  22435. [
  22436. {
  22437. name: "Normal",
  22438. height: math.unit(6 + 10 / 12, "feet"),
  22439. default: true
  22440. },
  22441. ]
  22442. ))
  22443. characterMakers.push(() => makeCharacter(
  22444. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  22445. {
  22446. front: {
  22447. height: math.unit(2 + 8 / 12, "feet"),
  22448. weight: math.unit(22, "lb"),
  22449. name: "Front",
  22450. image: {
  22451. source: "./media/characters/evelyn/front.svg",
  22452. extra: 208 / 180
  22453. }
  22454. },
  22455. },
  22456. [
  22457. {
  22458. name: "Normal",
  22459. height: math.unit(2 + 8 / 12, "feet"),
  22460. default: true
  22461. },
  22462. ]
  22463. ))
  22464. characterMakers.push(() => makeCharacter(
  22465. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  22466. {
  22467. front: {
  22468. height: math.unit(5 + 9 / 12, "feet"),
  22469. weight: math.unit(139, "lb"),
  22470. name: "Front",
  22471. image: {
  22472. source: "./media/characters/inca/front.svg",
  22473. extra: 294 / 291,
  22474. bottom: 0.03
  22475. }
  22476. },
  22477. },
  22478. [
  22479. {
  22480. name: "Normal",
  22481. height: math.unit(5 + 9 / 12, "feet"),
  22482. default: true
  22483. },
  22484. ]
  22485. ))
  22486. characterMakers.push(() => makeCharacter(
  22487. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  22488. {
  22489. front: {
  22490. height: math.unit(6 + 3 / 12, "feet"),
  22491. weight: math.unit(185, "lb"),
  22492. name: "Front",
  22493. image: {
  22494. source: "./media/characters/mera/front.svg",
  22495. extra: 291 / 277,
  22496. bottom: 0.03
  22497. }
  22498. },
  22499. },
  22500. [
  22501. {
  22502. name: "Normal",
  22503. height: math.unit(6 + 3 / 12, "feet"),
  22504. default: true
  22505. },
  22506. ]
  22507. ))
  22508. characterMakers.push(() => makeCharacter(
  22509. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  22510. {
  22511. front: {
  22512. height: math.unit(6 + 7 / 12, "feet"),
  22513. weight: math.unit(160, "lb"),
  22514. name: "Front",
  22515. image: {
  22516. source: "./media/characters/ceres/front.svg",
  22517. extra: 1023 / 950,
  22518. bottom: 0.027
  22519. }
  22520. },
  22521. back: {
  22522. height: math.unit(6 + 7 / 12, "feet"),
  22523. weight: math.unit(160, "lb"),
  22524. name: "Back",
  22525. image: {
  22526. source: "./media/characters/ceres/back.svg",
  22527. extra: 1023 / 950
  22528. }
  22529. },
  22530. },
  22531. [
  22532. {
  22533. name: "Normal",
  22534. height: math.unit(6 + 7 / 12, "feet"),
  22535. default: true
  22536. },
  22537. ]
  22538. ))
  22539. characterMakers.push(() => makeCharacter(
  22540. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  22541. {
  22542. front: {
  22543. height: math.unit(5 + 10 / 12, "feet"),
  22544. weight: math.unit(150, "lb"),
  22545. name: "Front",
  22546. image: {
  22547. source: "./media/characters/kris/front.svg",
  22548. extra: 885 / 803,
  22549. bottom: 0.03
  22550. }
  22551. },
  22552. },
  22553. [
  22554. {
  22555. name: "Normal",
  22556. height: math.unit(5 + 10 / 12, "feet"),
  22557. default: true
  22558. },
  22559. ]
  22560. ))
  22561. characterMakers.push(() => makeCharacter(
  22562. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  22563. {
  22564. dragon_front: {
  22565. height: math.unit(5, "feet"),
  22566. name: "Front",
  22567. image: {
  22568. source: "./media/characters/taluthus/dragon-front.svg",
  22569. extra: 1203/1098,
  22570. bottom: 46/1249
  22571. },
  22572. form: "dragon",
  22573. default: true
  22574. },
  22575. dragon_maw: {
  22576. height: math.unit(2.35, "feet"),
  22577. name: "Maw",
  22578. image: {
  22579. source: "./media/characters/taluthus/dragon-maw.svg"
  22580. },
  22581. form: "dragon",
  22582. },
  22583. kitsune_front: {
  22584. height: math.unit(7, "feet"),
  22585. name: "Front",
  22586. image: {
  22587. source: "./media/characters/taluthus/kitsune-front.svg",
  22588. extra: 900/841,
  22589. bottom: 65/965
  22590. },
  22591. form: "kitsune",
  22592. default: true
  22593. },
  22594. },
  22595. [
  22596. {
  22597. name: "Normal",
  22598. height: math.unit(5, "feet"),
  22599. form: "dragon",
  22600. default: true,
  22601. },
  22602. {
  22603. name: "Normal",
  22604. height: math.unit(7, "feet"),
  22605. form: "kitsune",
  22606. default: true
  22607. },
  22608. {
  22609. name: "Macro",
  22610. height: math.unit(300, "feet"),
  22611. allForms: true
  22612. },
  22613. ],
  22614. {
  22615. "dragon": {
  22616. name: "Dragon",
  22617. default: true
  22618. },
  22619. "kitsune": {
  22620. name: "Kitsune",
  22621. },
  22622. }
  22623. ))
  22624. characterMakers.push(() => makeCharacter(
  22625. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22626. {
  22627. front: {
  22628. height: math.unit(5 + 9 / 12, "feet"),
  22629. weight: math.unit(145, "lb"),
  22630. name: "Front",
  22631. image: {
  22632. source: "./media/characters/dawn/front.svg",
  22633. extra: 2094 / 2016,
  22634. bottom: 0.025
  22635. }
  22636. },
  22637. back: {
  22638. height: math.unit(5 + 9 / 12, "feet"),
  22639. weight: math.unit(160, "lb"),
  22640. name: "Back",
  22641. image: {
  22642. source: "./media/characters/dawn/back.svg",
  22643. extra: 2112 / 2080,
  22644. bottom: 0.005
  22645. }
  22646. },
  22647. },
  22648. [
  22649. {
  22650. name: "Normal",
  22651. height: math.unit(6 + 7 / 12, "feet"),
  22652. default: true
  22653. },
  22654. ]
  22655. ))
  22656. characterMakers.push(() => makeCharacter(
  22657. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22658. {
  22659. anthro: {
  22660. height: math.unit(8 + 3 / 12, "feet"),
  22661. weight: math.unit(450, "lb"),
  22662. name: "Anthro",
  22663. image: {
  22664. source: "./media/characters/arador/anthro.svg",
  22665. extra: 1835 / 1718,
  22666. bottom: 0.025
  22667. }
  22668. },
  22669. feral: {
  22670. height: math.unit(4, "feet"),
  22671. weight: math.unit(200, "lb"),
  22672. name: "Feral",
  22673. image: {
  22674. source: "./media/characters/arador/feral.svg",
  22675. extra: 1683 / 1514,
  22676. bottom: 0.07
  22677. }
  22678. },
  22679. },
  22680. [
  22681. {
  22682. name: "Normal",
  22683. height: math.unit(8 + 3 / 12, "feet")
  22684. },
  22685. {
  22686. name: "Macro",
  22687. height: math.unit(82.5, "feet"),
  22688. default: true
  22689. },
  22690. ]
  22691. ))
  22692. characterMakers.push(() => makeCharacter(
  22693. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22694. {
  22695. front: {
  22696. height: math.unit(5 + 10 / 12, "feet"),
  22697. weight: math.unit(125, "lb"),
  22698. name: "Front",
  22699. image: {
  22700. source: "./media/characters/dharsi/front.svg",
  22701. extra: 716 / 630,
  22702. bottom: 0.035
  22703. }
  22704. },
  22705. },
  22706. [
  22707. {
  22708. name: "Nano",
  22709. height: math.unit(100, "nm")
  22710. },
  22711. {
  22712. name: "Micro",
  22713. height: math.unit(2, "inches")
  22714. },
  22715. {
  22716. name: "Normal",
  22717. height: math.unit(5 + 10 / 12, "feet"),
  22718. default: true
  22719. },
  22720. {
  22721. name: "Macro",
  22722. height: math.unit(1000, "feet")
  22723. },
  22724. {
  22725. name: "Megamacro",
  22726. height: math.unit(10, "miles")
  22727. },
  22728. {
  22729. name: "Gigamacro",
  22730. height: math.unit(3000, "miles")
  22731. },
  22732. {
  22733. name: "Teramacro",
  22734. height: math.unit(500000, "miles")
  22735. },
  22736. {
  22737. name: "Teramacro+",
  22738. height: math.unit(30, "galaxies")
  22739. },
  22740. ]
  22741. ))
  22742. characterMakers.push(() => makeCharacter(
  22743. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22744. {
  22745. front: {
  22746. height: math.unit(6, "feet"),
  22747. weight: math.unit(150, "lb"),
  22748. name: "Front",
  22749. image: {
  22750. source: "./media/characters/deathy/front.svg",
  22751. extra: 1552 / 1463,
  22752. bottom: 0.025
  22753. }
  22754. },
  22755. side: {
  22756. height: math.unit(6, "feet"),
  22757. weight: math.unit(150, "lb"),
  22758. name: "Side",
  22759. image: {
  22760. source: "./media/characters/deathy/side.svg",
  22761. extra: 1604 / 1455,
  22762. bottom: 0.025
  22763. }
  22764. },
  22765. back: {
  22766. height: math.unit(6, "feet"),
  22767. weight: math.unit(150, "lb"),
  22768. name: "Back",
  22769. image: {
  22770. source: "./media/characters/deathy/back.svg",
  22771. extra: 1580 / 1463,
  22772. bottom: 0.005
  22773. }
  22774. },
  22775. },
  22776. [
  22777. {
  22778. name: "Micro",
  22779. height: math.unit(5, "millimeters")
  22780. },
  22781. {
  22782. name: "Normal",
  22783. height: math.unit(6 + 5 / 12, "feet"),
  22784. default: true
  22785. },
  22786. ]
  22787. ))
  22788. characterMakers.push(() => makeCharacter(
  22789. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22790. {
  22791. front: {
  22792. height: math.unit(16, "feet"),
  22793. weight: math.unit(4000, "lb"),
  22794. name: "Front",
  22795. image: {
  22796. source: "./media/characters/juniper/front.svg",
  22797. bottom: 0.04
  22798. }
  22799. },
  22800. },
  22801. [
  22802. {
  22803. name: "Normal",
  22804. height: math.unit(16, "feet"),
  22805. default: true
  22806. },
  22807. ]
  22808. ))
  22809. characterMakers.push(() => makeCharacter(
  22810. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22811. {
  22812. front: {
  22813. height: math.unit(6, "feet"),
  22814. weight: math.unit(150, "lb"),
  22815. name: "Front",
  22816. image: {
  22817. source: "./media/characters/hipster/front.svg",
  22818. extra: 1312 / 1209,
  22819. bottom: 0.025
  22820. }
  22821. },
  22822. back: {
  22823. height: math.unit(6, "feet"),
  22824. weight: math.unit(150, "lb"),
  22825. name: "Back",
  22826. image: {
  22827. source: "./media/characters/hipster/back.svg",
  22828. extra: 1281 / 1196,
  22829. bottom: 0.01
  22830. }
  22831. },
  22832. },
  22833. [
  22834. {
  22835. name: "Micro",
  22836. height: math.unit(1, "mm")
  22837. },
  22838. {
  22839. name: "Normal",
  22840. height: math.unit(4, "inches"),
  22841. default: true
  22842. },
  22843. {
  22844. name: "Macro",
  22845. height: math.unit(500, "feet")
  22846. },
  22847. {
  22848. name: "Megamacro",
  22849. height: math.unit(1000, "miles")
  22850. },
  22851. ]
  22852. ))
  22853. characterMakers.push(() => makeCharacter(
  22854. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22855. {
  22856. front: {
  22857. height: math.unit(6, "feet"),
  22858. weight: math.unit(150, "lb"),
  22859. name: "Front",
  22860. image: {
  22861. source: "./media/characters/tendirmuldr/front.svg",
  22862. extra: 1878 / 1772,
  22863. bottom: 0.015
  22864. }
  22865. },
  22866. },
  22867. [
  22868. {
  22869. name: "Megamacro",
  22870. height: math.unit(1500, "miles"),
  22871. default: true
  22872. },
  22873. ]
  22874. ))
  22875. characterMakers.push(() => makeCharacter(
  22876. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22877. {
  22878. front: {
  22879. height: math.unit(14, "feet"),
  22880. weight: math.unit(12000, "lb"),
  22881. name: "Front",
  22882. image: {
  22883. source: "./media/characters/mort/front.svg",
  22884. extra: 365 / 318,
  22885. bottom: 0.01
  22886. }
  22887. },
  22888. side: {
  22889. height: math.unit(14, "feet"),
  22890. weight: math.unit(12000, "lb"),
  22891. name: "Side",
  22892. image: {
  22893. source: "./media/characters/mort/side.svg",
  22894. extra: 365 / 318,
  22895. bottom: 0.052
  22896. },
  22897. default: true
  22898. },
  22899. back: {
  22900. height: math.unit(14, "feet"),
  22901. weight: math.unit(12000, "lb"),
  22902. name: "Back",
  22903. image: {
  22904. source: "./media/characters/mort/back.svg",
  22905. extra: 371 / 332,
  22906. bottom: 0.18
  22907. }
  22908. },
  22909. },
  22910. [
  22911. {
  22912. name: "Normal",
  22913. height: math.unit(14, "feet"),
  22914. default: true
  22915. },
  22916. ]
  22917. ))
  22918. characterMakers.push(() => makeCharacter(
  22919. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22920. {
  22921. front: {
  22922. height: math.unit(8, "feet"),
  22923. weight: math.unit(1, "ton"),
  22924. name: "Front",
  22925. image: {
  22926. source: "./media/characters/lycoa/front.svg",
  22927. extra: 1836/1728,
  22928. bottom: 81/1917
  22929. }
  22930. },
  22931. back: {
  22932. height: math.unit(8, "feet"),
  22933. weight: math.unit(1, "ton"),
  22934. name: "Back",
  22935. image: {
  22936. source: "./media/characters/lycoa/back.svg",
  22937. extra: 1785/1720,
  22938. bottom: 91/1876
  22939. }
  22940. },
  22941. head: {
  22942. height: math.unit(1.6243, "feet"),
  22943. name: "Head",
  22944. image: {
  22945. source: "./media/characters/lycoa/head.svg",
  22946. extra: 1011/782,
  22947. bottom: 0/1011
  22948. }
  22949. },
  22950. tailmaw: {
  22951. height: math.unit(1.9, "feet"),
  22952. name: "Tailmaw",
  22953. image: {
  22954. source: "./media/characters/lycoa/tailmaw.svg"
  22955. }
  22956. },
  22957. tentacles: {
  22958. height: math.unit(2.1, "feet"),
  22959. name: "Tentacles",
  22960. image: {
  22961. source: "./media/characters/lycoa/tentacles.svg"
  22962. }
  22963. },
  22964. dick: {
  22965. height: math.unit(1.73, "feet"),
  22966. name: "Dick",
  22967. image: {
  22968. source: "./media/characters/lycoa/dick.svg"
  22969. }
  22970. },
  22971. },
  22972. [
  22973. {
  22974. name: "Normal",
  22975. height: math.unit(8, "feet"),
  22976. default: true
  22977. },
  22978. {
  22979. name: "Macro",
  22980. height: math.unit(30, "feet")
  22981. },
  22982. ]
  22983. ))
  22984. characterMakers.push(() => makeCharacter(
  22985. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22986. {
  22987. front: {
  22988. height: math.unit(4 + 2 / 12, "feet"),
  22989. weight: math.unit(70, "lb"),
  22990. name: "Front",
  22991. image: {
  22992. source: "./media/characters/naldara/front.svg",
  22993. extra: 1664/1387,
  22994. bottom: 81/1745
  22995. },
  22996. form: "anthro",
  22997. default: true
  22998. },
  22999. naga: {
  23000. height: math.unit(20, "feet"),
  23001. weight: math.unit(15000, "kg"),
  23002. name: "Front",
  23003. image: {
  23004. source: "./media/characters/naldara/naga.svg",
  23005. extra: 1590/1396,
  23006. bottom: 285/1875
  23007. },
  23008. form: "naga",
  23009. default: true
  23010. },
  23011. },
  23012. [
  23013. {
  23014. name: "Normal",
  23015. height: math.unit(4 + 2 / 12, "feet"),
  23016. form: "anthro",
  23017. default: true
  23018. },
  23019. {
  23020. name: "Normal",
  23021. height: math.unit(20, "feet"),
  23022. form: "naga",
  23023. default: true
  23024. },
  23025. ],
  23026. {
  23027. "anthro": {
  23028. name: "Anthro",
  23029. default: true
  23030. },
  23031. "naga": {
  23032. name: "Naga"
  23033. }
  23034. }
  23035. ))
  23036. characterMakers.push(() => makeCharacter(
  23037. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  23038. {
  23039. front: {
  23040. height: math.unit(13 + 7 / 12, "feet"),
  23041. weight: math.unit(1500, "lb"),
  23042. name: "Front",
  23043. image: {
  23044. source: "./media/characters/briar/front.svg",
  23045. extra: 1223/1157,
  23046. bottom: 123/1346
  23047. }
  23048. },
  23049. },
  23050. [
  23051. {
  23052. name: "Normal",
  23053. height: math.unit(13 + 7 / 12, "feet"),
  23054. default: true
  23055. },
  23056. ]
  23057. ))
  23058. characterMakers.push(() => makeCharacter(
  23059. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  23060. {
  23061. side: {
  23062. height: math.unit(16, "feet"),
  23063. weight: math.unit(500, "lb"),
  23064. name: "Side",
  23065. image: {
  23066. source: "./media/characters/vanguard/side.svg",
  23067. extra: 1022/914,
  23068. bottom: 30/1052
  23069. }
  23070. },
  23071. sideAlt: {
  23072. height: math.unit(10, "feet"),
  23073. weight: math.unit(500, "lb"),
  23074. name: "Side (Alt)",
  23075. image: {
  23076. source: "./media/characters/vanguard/side-alt.svg",
  23077. extra: 502 / 425,
  23078. bottom: 0.087
  23079. }
  23080. },
  23081. },
  23082. [
  23083. {
  23084. name: "Normal",
  23085. height: math.unit(17.71, "feet"),
  23086. default: true
  23087. },
  23088. ]
  23089. ))
  23090. characterMakers.push(() => makeCharacter(
  23091. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  23092. {
  23093. front: {
  23094. height: math.unit(7.5, "feet"),
  23095. weight: math.unit(2, "lb"),
  23096. name: "Front",
  23097. image: {
  23098. source: "./media/characters/artemis/work-safe-front.svg",
  23099. extra: 1192 / 1075,
  23100. bottom: 0.07
  23101. },
  23102. form: "work-safe",
  23103. default: true
  23104. },
  23105. frontNsfw: {
  23106. height: math.unit(7.5, "feet"),
  23107. weight: math.unit(2, "lb"),
  23108. name: "Front",
  23109. image: {
  23110. source: "./media/characters/artemis/calibrating-front.svg",
  23111. extra: 1192 / 1075,
  23112. bottom: 0.07
  23113. },
  23114. form: "calibrating",
  23115. default: true
  23116. },
  23117. frontNsfwer: {
  23118. height: math.unit(7.5, "feet"),
  23119. weight: math.unit(2, "lb"),
  23120. name: "Front",
  23121. image: {
  23122. source: "./media/characters/artemis/oversize-load-front.svg",
  23123. extra: 1192 / 1075,
  23124. bottom: 0.07
  23125. },
  23126. form: "oversize-load",
  23127. default: true
  23128. },
  23129. side: {
  23130. height: math.unit(7.5, "feet"),
  23131. weight: math.unit(2, "lb"),
  23132. name: "Side",
  23133. image: {
  23134. source: "./media/characters/artemis/work-safe-side.svg",
  23135. extra: 1192 / 1075,
  23136. bottom: 0.07
  23137. },
  23138. form: "work-safe"
  23139. },
  23140. sideNsfw: {
  23141. height: math.unit(7.5, "feet"),
  23142. weight: math.unit(2, "lb"),
  23143. name: "Side",
  23144. image: {
  23145. source: "./media/characters/artemis/calibrating-side.svg",
  23146. extra: 1192 / 1075,
  23147. bottom: 0.07
  23148. },
  23149. form: "calibrating"
  23150. },
  23151. sideNsfwer: {
  23152. height: math.unit(7.5, "feet"),
  23153. weight: math.unit(2, "lb"),
  23154. name: "Side",
  23155. image: {
  23156. source: "./media/characters/artemis/oversize-load-side.svg",
  23157. extra: 1192 / 1075,
  23158. bottom: 0.07
  23159. },
  23160. form: "oversize-load"
  23161. },
  23162. maw: {
  23163. height: math.unit(1.1, "feet"),
  23164. name: "Maw",
  23165. image: {
  23166. source: "./media/characters/artemis/maw.svg"
  23167. },
  23168. form: "work-safe"
  23169. },
  23170. stomach: {
  23171. height: math.unit(0.95, "feet"),
  23172. name: "Stomach",
  23173. image: {
  23174. source: "./media/characters/artemis/stomach.svg"
  23175. },
  23176. form: "work-safe"
  23177. },
  23178. dickCanine: {
  23179. height: math.unit(1, "feet"),
  23180. name: "Dick (Canine)",
  23181. image: {
  23182. source: "./media/characters/artemis/dick-canine.svg"
  23183. },
  23184. form: "calibrating"
  23185. },
  23186. dickEquine: {
  23187. height: math.unit(0.85, "feet"),
  23188. name: "Dick (Equine)",
  23189. image: {
  23190. source: "./media/characters/artemis/dick-equine.svg"
  23191. },
  23192. form: "calibrating"
  23193. },
  23194. dickExotic: {
  23195. height: math.unit(0.85, "feet"),
  23196. name: "Dick (Exotic)",
  23197. image: {
  23198. source: "./media/characters/artemis/dick-exotic.svg"
  23199. },
  23200. form: "calibrating"
  23201. },
  23202. dickCanineBigger: {
  23203. height: math.unit(1 * 1.33, "feet"),
  23204. name: "Dick (Canine)",
  23205. image: {
  23206. source: "./media/characters/artemis/dick-canine.svg"
  23207. },
  23208. form: "oversize-load"
  23209. },
  23210. dickEquineBigger: {
  23211. height: math.unit(0.85 * 1.33, "feet"),
  23212. name: "Dick (Equine)",
  23213. image: {
  23214. source: "./media/characters/artemis/dick-equine.svg"
  23215. },
  23216. form: "oversize-load"
  23217. },
  23218. dickExoticBigger: {
  23219. height: math.unit(0.85 * 1.33, "feet"),
  23220. name: "Dick (Exotic)",
  23221. image: {
  23222. source: "./media/characters/artemis/dick-exotic.svg"
  23223. },
  23224. form: "oversize-load"
  23225. },
  23226. },
  23227. [
  23228. {
  23229. name: "Normal",
  23230. height: math.unit(7.5, "feet"),
  23231. form: "work-safe",
  23232. default: true
  23233. },
  23234. {
  23235. name: "Normal",
  23236. height: math.unit(7.5, "feet"),
  23237. form: "calibrating",
  23238. default: true
  23239. },
  23240. {
  23241. name: "Normal",
  23242. height: math.unit(7.5, "feet"),
  23243. form: "oversize-load",
  23244. default: true
  23245. },
  23246. {
  23247. name: "Enlarged",
  23248. height: math.unit(12, "feet"),
  23249. form: "work-safe",
  23250. },
  23251. {
  23252. name: "Enlarged",
  23253. height: math.unit(12, "feet"),
  23254. form: "calibrating",
  23255. },
  23256. {
  23257. name: "Enlarged",
  23258. height: math.unit(12, "feet"),
  23259. form: "oversize-load",
  23260. },
  23261. ],
  23262. {
  23263. "work-safe": {
  23264. name: "Work-Safe",
  23265. default: true
  23266. },
  23267. "calibrating": {
  23268. name: "Calibrating"
  23269. },
  23270. "oversize-load": {
  23271. name: "Oversize Load"
  23272. }
  23273. }
  23274. ))
  23275. characterMakers.push(() => makeCharacter(
  23276. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  23277. {
  23278. front: {
  23279. height: math.unit(5 + 3 / 12, "feet"),
  23280. weight: math.unit(160, "lb"),
  23281. name: "Front",
  23282. image: {
  23283. source: "./media/characters/kira/front.svg",
  23284. extra: 906 / 786,
  23285. bottom: 0.01
  23286. }
  23287. },
  23288. back: {
  23289. height: math.unit(5 + 3 / 12, "feet"),
  23290. weight: math.unit(160, "lb"),
  23291. name: "Back",
  23292. image: {
  23293. source: "./media/characters/kira/back.svg",
  23294. extra: 882 / 757,
  23295. bottom: 0.005
  23296. }
  23297. },
  23298. frontDressed: {
  23299. height: math.unit(5 + 3 / 12, "feet"),
  23300. weight: math.unit(160, "lb"),
  23301. name: "Front (Dressed)",
  23302. image: {
  23303. source: "./media/characters/kira/front-dressed.svg",
  23304. extra: 906 / 786,
  23305. bottom: 0.01
  23306. }
  23307. },
  23308. beans: {
  23309. height: math.unit(0.92, "feet"),
  23310. name: "Beans",
  23311. image: {
  23312. source: "./media/characters/kira/beans.svg"
  23313. }
  23314. },
  23315. },
  23316. [
  23317. {
  23318. name: "Normal",
  23319. height: math.unit(5 + 3 / 12, "feet"),
  23320. default: true
  23321. },
  23322. ]
  23323. ))
  23324. characterMakers.push(() => makeCharacter(
  23325. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  23326. {
  23327. front: {
  23328. height: math.unit(5 + 4 / 12, "feet"),
  23329. weight: math.unit(145, "lb"),
  23330. name: "Front",
  23331. image: {
  23332. source: "./media/characters/scramble/front.svg",
  23333. extra: 763 / 727,
  23334. bottom: 0.05
  23335. }
  23336. },
  23337. back: {
  23338. height: math.unit(5 + 4 / 12, "feet"),
  23339. weight: math.unit(145, "lb"),
  23340. name: "Back",
  23341. image: {
  23342. source: "./media/characters/scramble/back.svg",
  23343. extra: 826 / 737,
  23344. bottom: 0.002
  23345. }
  23346. },
  23347. },
  23348. [
  23349. {
  23350. name: "Normal",
  23351. height: math.unit(5 + 4 / 12, "feet"),
  23352. default: true
  23353. },
  23354. ]
  23355. ))
  23356. characterMakers.push(() => makeCharacter(
  23357. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  23358. {
  23359. side: {
  23360. height: math.unit(6 + 2 / 12, "feet"),
  23361. weight: math.unit(190, "lb"),
  23362. name: "Side",
  23363. image: {
  23364. source: "./media/characters/biscuit/side.svg",
  23365. extra: 858 / 791,
  23366. bottom: 0.044
  23367. }
  23368. },
  23369. },
  23370. [
  23371. {
  23372. name: "Normal",
  23373. height: math.unit(6 + 2 / 12, "feet"),
  23374. default: true
  23375. },
  23376. ]
  23377. ))
  23378. characterMakers.push(() => makeCharacter(
  23379. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  23380. {
  23381. front: {
  23382. height: math.unit(5 + 2 / 12, "feet"),
  23383. weight: math.unit(120, "lb"),
  23384. name: "Front",
  23385. image: {
  23386. source: "./media/characters/poffin/front.svg",
  23387. extra: 786 / 680,
  23388. bottom: 0.005
  23389. }
  23390. },
  23391. },
  23392. [
  23393. {
  23394. name: "Normal",
  23395. height: math.unit(5 + 2 / 12, "feet"),
  23396. default: true
  23397. },
  23398. ]
  23399. ))
  23400. characterMakers.push(() => makeCharacter(
  23401. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  23402. {
  23403. front: {
  23404. height: math.unit(6 + 3 / 12, "feet"),
  23405. weight: math.unit(519, "lb"),
  23406. name: "Front",
  23407. image: {
  23408. source: "./media/characters/dhari/front.svg",
  23409. extra: 1048 / 946,
  23410. bottom: 0.015
  23411. }
  23412. },
  23413. back: {
  23414. height: math.unit(6 + 3 / 12, "feet"),
  23415. weight: math.unit(519, "lb"),
  23416. name: "Back",
  23417. image: {
  23418. source: "./media/characters/dhari/back.svg",
  23419. extra: 1048 / 931,
  23420. bottom: 0.005
  23421. }
  23422. },
  23423. frontDressed: {
  23424. height: math.unit(6 + 3 / 12, "feet"),
  23425. weight: math.unit(519, "lb"),
  23426. name: "Front (Dressed)",
  23427. image: {
  23428. source: "./media/characters/dhari/front-dressed.svg",
  23429. extra: 1713 / 1546,
  23430. bottom: 0.02
  23431. }
  23432. },
  23433. backDressed: {
  23434. height: math.unit(6 + 3 / 12, "feet"),
  23435. weight: math.unit(519, "lb"),
  23436. name: "Back (Dressed)",
  23437. image: {
  23438. source: "./media/characters/dhari/back-dressed.svg",
  23439. extra: 1699 / 1537,
  23440. bottom: 0.01
  23441. }
  23442. },
  23443. maw: {
  23444. height: math.unit(0.95, "feet"),
  23445. name: "Maw",
  23446. image: {
  23447. source: "./media/characters/dhari/maw.svg"
  23448. }
  23449. },
  23450. wereFront: {
  23451. height: math.unit(12 + 8 / 12, "feet"),
  23452. weight: math.unit(4000, "lb"),
  23453. name: "Front (Were)",
  23454. image: {
  23455. source: "./media/characters/dhari/were-front.svg",
  23456. extra: 1065 / 969,
  23457. bottom: 0.015
  23458. }
  23459. },
  23460. wereBack: {
  23461. height: math.unit(12 + 8 / 12, "feet"),
  23462. weight: math.unit(4000, "lb"),
  23463. name: "Back (Were)",
  23464. image: {
  23465. source: "./media/characters/dhari/were-back.svg",
  23466. extra: 1065 / 969,
  23467. bottom: 0.012
  23468. }
  23469. },
  23470. wereMaw: {
  23471. height: math.unit(0.625, "meters"),
  23472. name: "Maw (Were)",
  23473. image: {
  23474. source: "./media/characters/dhari/were-maw.svg"
  23475. }
  23476. },
  23477. },
  23478. [
  23479. {
  23480. name: "Normal",
  23481. height: math.unit(6 + 3 / 12, "feet"),
  23482. default: true
  23483. },
  23484. ]
  23485. ))
  23486. characterMakers.push(() => makeCharacter(
  23487. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  23488. {
  23489. anthro: {
  23490. height: math.unit(5 + 7 / 12, "feet"),
  23491. weight: math.unit(175, "lb"),
  23492. name: "Anthro",
  23493. image: {
  23494. source: "./media/characters/rena-dyne/anthro.svg",
  23495. extra: 1849 / 1785,
  23496. bottom: 0.005
  23497. }
  23498. },
  23499. taur: {
  23500. height: math.unit(15 + 6 / 12, "feet"),
  23501. weight: math.unit(8000, "lb"),
  23502. name: "Taur",
  23503. image: {
  23504. source: "./media/characters/rena-dyne/taur.svg",
  23505. extra: 2315 / 2234,
  23506. bottom: 0.033
  23507. }
  23508. },
  23509. },
  23510. [
  23511. {
  23512. name: "Normal",
  23513. height: math.unit(5 + 7 / 12, "feet"),
  23514. default: true
  23515. },
  23516. ]
  23517. ))
  23518. characterMakers.push(() => makeCharacter(
  23519. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  23520. {
  23521. front: {
  23522. height: math.unit(8, "feet"),
  23523. weight: math.unit(600, "lb"),
  23524. name: "Front",
  23525. image: {
  23526. source: "./media/characters/weremeep/front.svg",
  23527. extra: 970/849,
  23528. bottom: 7/977
  23529. }
  23530. },
  23531. },
  23532. [
  23533. {
  23534. name: "Normal",
  23535. height: math.unit(8, "feet"),
  23536. default: true
  23537. },
  23538. {
  23539. name: "Lorg",
  23540. height: math.unit(12, "feet")
  23541. },
  23542. {
  23543. name: "Oh Lawd She Comin'",
  23544. height: math.unit(20, "feet")
  23545. },
  23546. ]
  23547. ))
  23548. characterMakers.push(() => makeCharacter(
  23549. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  23550. {
  23551. front: {
  23552. height: math.unit(4, "feet"),
  23553. weight: math.unit(90, "lb"),
  23554. name: "Front",
  23555. image: {
  23556. source: "./media/characters/reza/front.svg",
  23557. extra: 1183 / 1111,
  23558. bottom: 0.017
  23559. }
  23560. },
  23561. back: {
  23562. height: math.unit(4, "feet"),
  23563. weight: math.unit(90, "lb"),
  23564. name: "Back",
  23565. image: {
  23566. source: "./media/characters/reza/back.svg",
  23567. extra: 1183 / 1111,
  23568. bottom: 0.01
  23569. }
  23570. },
  23571. drake: {
  23572. height: math.unit(30, "feet"),
  23573. weight: math.unit(246960, "lb"),
  23574. name: "Drake",
  23575. image: {
  23576. source: "./media/characters/reza/drake.svg",
  23577. extra: 2350 / 2024,
  23578. bottom: 60.7 / 2403
  23579. }
  23580. },
  23581. },
  23582. [
  23583. {
  23584. name: "Normal",
  23585. height: math.unit(4, "feet"),
  23586. default: true
  23587. },
  23588. ]
  23589. ))
  23590. characterMakers.push(() => makeCharacter(
  23591. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  23592. {
  23593. side: {
  23594. height: math.unit(15, "feet"),
  23595. weight: math.unit(14, "tons"),
  23596. name: "Side",
  23597. image: {
  23598. source: "./media/characters/athea/side.svg",
  23599. extra: 960 / 540,
  23600. bottom: 0.003
  23601. }
  23602. },
  23603. sitting: {
  23604. height: math.unit(6 * 2.85, "feet"),
  23605. weight: math.unit(14, "tons"),
  23606. name: "Sitting",
  23607. image: {
  23608. source: "./media/characters/athea/sitting.svg",
  23609. extra: 621 / 581,
  23610. bottom: 0.075
  23611. }
  23612. },
  23613. maw: {
  23614. height: math.unit(7.59498031496063, "feet"),
  23615. name: "Maw",
  23616. image: {
  23617. source: "./media/characters/athea/maw.svg"
  23618. }
  23619. },
  23620. },
  23621. [
  23622. {
  23623. name: "Lap Cat",
  23624. height: math.unit(2.5, "feet")
  23625. },
  23626. {
  23627. name: "Minimacro",
  23628. height: math.unit(15, "feet"),
  23629. default: true
  23630. },
  23631. {
  23632. name: "Macro",
  23633. height: math.unit(120, "feet")
  23634. },
  23635. {
  23636. name: "Macro+",
  23637. height: math.unit(640, "feet")
  23638. },
  23639. {
  23640. name: "Colossus",
  23641. height: math.unit(2.2, "miles")
  23642. },
  23643. ]
  23644. ))
  23645. characterMakers.push(() => makeCharacter(
  23646. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23647. {
  23648. front: {
  23649. height: math.unit(8 + 8 / 12, "feet"),
  23650. weight: math.unit(130, "kg"),
  23651. name: "Front",
  23652. image: {
  23653. source: "./media/characters/seroko/front.svg",
  23654. extra: 1385 / 1280,
  23655. bottom: 0.025
  23656. }
  23657. },
  23658. back: {
  23659. height: math.unit(8 + 8 / 12, "feet"),
  23660. weight: math.unit(130, "kg"),
  23661. name: "Back",
  23662. image: {
  23663. source: "./media/characters/seroko/back.svg",
  23664. extra: 1369 / 1238,
  23665. bottom: 0.018
  23666. }
  23667. },
  23668. frontDressed: {
  23669. height: math.unit(8 + 8 / 12, "feet"),
  23670. weight: math.unit(130, "kg"),
  23671. name: "Front (Dressed)",
  23672. image: {
  23673. source: "./media/characters/seroko/front-dressed.svg",
  23674. extra: 1366 / 1275,
  23675. bottom: 0.03
  23676. }
  23677. },
  23678. },
  23679. [
  23680. {
  23681. name: "Normal",
  23682. height: math.unit(8 + 8 / 12, "feet"),
  23683. default: true
  23684. },
  23685. ]
  23686. ))
  23687. characterMakers.push(() => makeCharacter(
  23688. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23689. {
  23690. front: {
  23691. height: math.unit(5.5, "feet"),
  23692. weight: math.unit(160, "lb"),
  23693. name: "Front",
  23694. image: {
  23695. source: "./media/characters/quatzi/front.svg",
  23696. extra: 2346 / 2242,
  23697. bottom: 0.015
  23698. }
  23699. },
  23700. },
  23701. [
  23702. {
  23703. name: "Normal",
  23704. height: math.unit(5.5, "feet"),
  23705. default: true
  23706. },
  23707. {
  23708. name: "Big",
  23709. height: math.unit(7.7, "feet")
  23710. },
  23711. ]
  23712. ))
  23713. characterMakers.push(() => makeCharacter(
  23714. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23715. {
  23716. front: {
  23717. height: math.unit(5 + 11 / 12, "feet"),
  23718. weight: math.unit(180, "lb"),
  23719. name: "Front",
  23720. image: {
  23721. source: "./media/characters/sen/front.svg",
  23722. extra: 1321 / 1254,
  23723. bottom: 0.015
  23724. }
  23725. },
  23726. side: {
  23727. height: math.unit(5 + 11 / 12, "feet"),
  23728. weight: math.unit(180, "lb"),
  23729. name: "Side",
  23730. image: {
  23731. source: "./media/characters/sen/side.svg",
  23732. extra: 1321 / 1254,
  23733. bottom: 0.007
  23734. }
  23735. },
  23736. back: {
  23737. height: math.unit(5 + 11 / 12, "feet"),
  23738. weight: math.unit(180, "lb"),
  23739. name: "Back",
  23740. image: {
  23741. source: "./media/characters/sen/back.svg",
  23742. extra: 1321 / 1254
  23743. }
  23744. },
  23745. },
  23746. [
  23747. {
  23748. name: "Normal",
  23749. height: math.unit(5 + 11 / 12, "feet"),
  23750. default: true
  23751. },
  23752. ]
  23753. ))
  23754. characterMakers.push(() => makeCharacter(
  23755. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23756. {
  23757. front: {
  23758. height: math.unit(166.6, "cm"),
  23759. weight: math.unit(66.6, "kg"),
  23760. name: "Front",
  23761. image: {
  23762. source: "./media/characters/fruity/front.svg",
  23763. extra: 1510 / 1386,
  23764. bottom: 0.04
  23765. }
  23766. },
  23767. back: {
  23768. height: math.unit(166.6, "cm"),
  23769. weight: math.unit(66.6, "lb"),
  23770. name: "Back",
  23771. image: {
  23772. source: "./media/characters/fruity/back.svg",
  23773. extra: 1563 / 1435,
  23774. bottom: 0.005
  23775. }
  23776. },
  23777. },
  23778. [
  23779. {
  23780. name: "Normal",
  23781. height: math.unit(166.6, "cm"),
  23782. default: true
  23783. },
  23784. {
  23785. name: "Demonic",
  23786. height: math.unit(166.6, "feet")
  23787. },
  23788. ]
  23789. ))
  23790. characterMakers.push(() => makeCharacter(
  23791. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23792. {
  23793. side: {
  23794. height: math.unit(10, "feet"),
  23795. weight: math.unit(500, "lb"),
  23796. name: "Side",
  23797. image: {
  23798. source: "./media/characters/zost/side.svg",
  23799. extra: 2870/2533,
  23800. bottom: 252/3122
  23801. }
  23802. },
  23803. mawFront: {
  23804. height: math.unit(1.08, "meters"),
  23805. name: "Maw (Front)",
  23806. image: {
  23807. source: "./media/characters/zost/maw-front.svg"
  23808. }
  23809. },
  23810. mawSide: {
  23811. height: math.unit(2.66, "feet"),
  23812. name: "Maw (Side)",
  23813. image: {
  23814. source: "./media/characters/zost/maw-side.svg"
  23815. }
  23816. },
  23817. wingspan: {
  23818. height: math.unit(7.4, "feet"),
  23819. name: "Wingspan",
  23820. image: {
  23821. source: "./media/characters/zost/wingspan.svg"
  23822. }
  23823. },
  23824. },
  23825. [
  23826. {
  23827. name: "Normal",
  23828. height: math.unit(10, "feet"),
  23829. default: true
  23830. },
  23831. ]
  23832. ))
  23833. characterMakers.push(() => makeCharacter(
  23834. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23835. {
  23836. front: {
  23837. height: math.unit(5 + 4 / 12, "feet"),
  23838. weight: math.unit(120, "lb"),
  23839. name: "Front",
  23840. image: {
  23841. source: "./media/characters/luci/front.svg",
  23842. extra: 1985 / 1884,
  23843. bottom: 0.04
  23844. }
  23845. },
  23846. back: {
  23847. height: math.unit(5 + 4 / 12, "feet"),
  23848. weight: math.unit(120, "lb"),
  23849. name: "Back",
  23850. image: {
  23851. source: "./media/characters/luci/back.svg",
  23852. extra: 1892 / 1791,
  23853. bottom: 0.002
  23854. }
  23855. },
  23856. },
  23857. [
  23858. {
  23859. name: "Normal",
  23860. height: math.unit(5 + 4 / 12, "feet"),
  23861. default: true
  23862. },
  23863. ]
  23864. ))
  23865. characterMakers.push(() => makeCharacter(
  23866. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23867. {
  23868. front: {
  23869. height: math.unit(1500, "feet"),
  23870. weight: math.unit(3.8e6, "tons"),
  23871. name: "Front",
  23872. image: {
  23873. source: "./media/characters/2th/front.svg",
  23874. extra: 3489 / 3350,
  23875. bottom: 0.1
  23876. }
  23877. },
  23878. foot: {
  23879. height: math.unit(461, "feet"),
  23880. name: "Foot",
  23881. image: {
  23882. source: "./media/characters/2th/foot.svg"
  23883. }
  23884. },
  23885. },
  23886. [
  23887. {
  23888. name: "\"Micro\"",
  23889. height: math.unit(15 + 7 / 12, "feet")
  23890. },
  23891. {
  23892. name: "Normal",
  23893. height: math.unit(1500, "feet"),
  23894. default: true
  23895. },
  23896. {
  23897. name: "Macro",
  23898. height: math.unit(5000, "feet")
  23899. },
  23900. {
  23901. name: "Megamacro",
  23902. height: math.unit(15, "miles")
  23903. },
  23904. {
  23905. name: "Gigamacro",
  23906. height: math.unit(4000, "miles")
  23907. },
  23908. {
  23909. name: "Galactic",
  23910. height: math.unit(50, "AU")
  23911. },
  23912. ]
  23913. ))
  23914. characterMakers.push(() => makeCharacter(
  23915. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23916. {
  23917. front: {
  23918. height: math.unit(5 + 6 / 12, "feet"),
  23919. weight: math.unit(220, "lb"),
  23920. name: "Front",
  23921. image: {
  23922. source: "./media/characters/amethyst/front.svg",
  23923. extra: 2078 / 2040,
  23924. bottom: 0.045
  23925. }
  23926. },
  23927. back: {
  23928. height: math.unit(5 + 6 / 12, "feet"),
  23929. weight: math.unit(220, "lb"),
  23930. name: "Back",
  23931. image: {
  23932. source: "./media/characters/amethyst/back.svg",
  23933. extra: 2021 / 1989,
  23934. bottom: 0.02
  23935. }
  23936. },
  23937. },
  23938. [
  23939. {
  23940. name: "Normal",
  23941. height: math.unit(5 + 6 / 12, "feet"),
  23942. default: true
  23943. },
  23944. ]
  23945. ))
  23946. characterMakers.push(() => makeCharacter(
  23947. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23948. {
  23949. front: {
  23950. height: math.unit(4 + 11 / 12, "feet"),
  23951. weight: math.unit(120, "lb"),
  23952. name: "Front",
  23953. image: {
  23954. source: "./media/characters/yumi-akiyama/front.svg",
  23955. extra: 2638/2432,
  23956. bottom: 70/2708
  23957. }
  23958. },
  23959. back: {
  23960. height: math.unit(4 + 11 / 12, "feet"),
  23961. weight: math.unit(120, "lb"),
  23962. name: "Back",
  23963. image: {
  23964. source: "./media/characters/yumi-akiyama/back.svg",
  23965. extra: 2502/2397,
  23966. bottom: 80/2582
  23967. }
  23968. },
  23969. casual: {
  23970. height: math.unit(4 + 11 / 12, "feet"),
  23971. weight: math.unit(120, "lb"),
  23972. name: "Casual",
  23973. image: {
  23974. source: "./media/characters/yumi-akiyama/casual.svg",
  23975. extra: 958/887,
  23976. bottom: 41/999
  23977. }
  23978. },
  23979. jammies: {
  23980. height: math.unit(4 + 11 / 12, "feet"),
  23981. weight: math.unit(120, "lb"),
  23982. name: "Jammies",
  23983. image: {
  23984. source: "./media/characters/yumi-akiyama/jammies.svg",
  23985. extra: 958/894,
  23986. bottom: 37/995
  23987. }
  23988. },
  23989. warmWeather: {
  23990. height: math.unit(4 + 11 / 12, "feet"),
  23991. weight: math.unit(120, "lb"),
  23992. name: "Warm Weather",
  23993. image: {
  23994. source: "./media/characters/yumi-akiyama/warm-weather.svg",
  23995. extra: 929/865,
  23996. bottom: 76/1005
  23997. }
  23998. },
  23999. mouth: {
  24000. height: math.unit(0.35, "feet"),
  24001. name: "Mouth",
  24002. image: {
  24003. source: "./media/characters/yumi-akiyama/mouth.svg"
  24004. }
  24005. },
  24006. paws: {
  24007. height: math.unit(1.05, "feet"),
  24008. name: "Paws",
  24009. image: {
  24010. source: "./media/characters/yumi-akiyama/paws.svg"
  24011. }
  24012. },
  24013. cockRing: {
  24014. height: math.unit(0.225, "feet"),
  24015. name: "Cock Ring",
  24016. image: {
  24017. source: "./media/characters/yumi-akiyama/cock-ring.svg"
  24018. }
  24019. },
  24020. },
  24021. [
  24022. {
  24023. name: "Galactic",
  24024. height: math.unit(50, "galaxies"),
  24025. default: true
  24026. },
  24027. {
  24028. name: "Universal",
  24029. height: math.unit(100, "universes")
  24030. },
  24031. ]
  24032. ))
  24033. characterMakers.push(() => makeCharacter(
  24034. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  24035. {
  24036. front: {
  24037. height: math.unit(8, "feet"),
  24038. weight: math.unit(500, "lb"),
  24039. name: "Front",
  24040. image: {
  24041. source: "./media/characters/rifter-yrmori/front.svg",
  24042. extra: 1180 / 1125,
  24043. bottom: 0.02
  24044. }
  24045. },
  24046. back: {
  24047. height: math.unit(8, "feet"),
  24048. weight: math.unit(500, "lb"),
  24049. name: "Back",
  24050. image: {
  24051. source: "./media/characters/rifter-yrmori/back.svg",
  24052. extra: 1190 / 1145,
  24053. bottom: 0.001
  24054. }
  24055. },
  24056. wings: {
  24057. height: math.unit(7.75, "feet"),
  24058. weight: math.unit(500, "lb"),
  24059. name: "Wings",
  24060. image: {
  24061. source: "./media/characters/rifter-yrmori/wings.svg",
  24062. extra: 1357 / 1285
  24063. }
  24064. },
  24065. maw: {
  24066. height: math.unit(0.8, "feet"),
  24067. name: "Maw",
  24068. image: {
  24069. source: "./media/characters/rifter-yrmori/maw.svg"
  24070. }
  24071. },
  24072. mawfront: {
  24073. height: math.unit(1.45, "feet"),
  24074. name: "Maw (Front)",
  24075. image: {
  24076. source: "./media/characters/rifter-yrmori/maw-front.svg"
  24077. }
  24078. },
  24079. },
  24080. [
  24081. {
  24082. name: "Normal",
  24083. height: math.unit(8, "feet"),
  24084. default: true
  24085. },
  24086. {
  24087. name: "Macro",
  24088. height: math.unit(42, "meters")
  24089. },
  24090. ]
  24091. ))
  24092. characterMakers.push(() => makeCharacter(
  24093. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  24094. {
  24095. were: {
  24096. height: math.unit(25 + 6 / 12, "feet"),
  24097. weight: math.unit(10000, "lb"),
  24098. name: "Were",
  24099. image: {
  24100. source: "./media/characters/tahajin/were.svg",
  24101. extra: 801 / 770,
  24102. bottom: 0.042
  24103. }
  24104. },
  24105. aquatic: {
  24106. height: math.unit(6 + 4 / 12, "feet"),
  24107. weight: math.unit(160, "lb"),
  24108. name: "Aquatic",
  24109. image: {
  24110. source: "./media/characters/tahajin/aquatic.svg",
  24111. extra: 572 / 542,
  24112. bottom: 0.04
  24113. }
  24114. },
  24115. chow: {
  24116. height: math.unit(8 + 11 / 12, "feet"),
  24117. weight: math.unit(450, "lb"),
  24118. name: "Chow",
  24119. image: {
  24120. source: "./media/characters/tahajin/chow.svg",
  24121. extra: 660 / 640,
  24122. bottom: 0.015
  24123. }
  24124. },
  24125. demiNaga: {
  24126. height: math.unit(6 + 8 / 12, "feet"),
  24127. weight: math.unit(300, "lb"),
  24128. name: "Demi Naga",
  24129. image: {
  24130. source: "./media/characters/tahajin/demi-naga.svg",
  24131. extra: 643 / 615,
  24132. bottom: 0.1
  24133. }
  24134. },
  24135. data: {
  24136. height: math.unit(5, "inches"),
  24137. weight: math.unit(0.1, "lb"),
  24138. name: "Data",
  24139. image: {
  24140. source: "./media/characters/tahajin/data.svg"
  24141. }
  24142. },
  24143. fluu: {
  24144. height: math.unit(5 + 7 / 12, "feet"),
  24145. weight: math.unit(140, "lb"),
  24146. name: "Fluu",
  24147. image: {
  24148. source: "./media/characters/tahajin/fluu.svg",
  24149. extra: 628 / 592,
  24150. bottom: 0.02
  24151. }
  24152. },
  24153. starWarrior: {
  24154. height: math.unit(4 + 5 / 12, "feet"),
  24155. weight: math.unit(50, "lb"),
  24156. name: "Star Warrior",
  24157. image: {
  24158. source: "./media/characters/tahajin/star-warrior.svg"
  24159. }
  24160. },
  24161. },
  24162. [
  24163. {
  24164. name: "Normal",
  24165. height: math.unit(25 + 6 / 12, "feet"),
  24166. default: true
  24167. },
  24168. ]
  24169. ))
  24170. characterMakers.push(() => makeCharacter(
  24171. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  24172. {
  24173. front: {
  24174. height: math.unit(8, "feet"),
  24175. weight: math.unit(350, "lb"),
  24176. name: "Front",
  24177. image: {
  24178. source: "./media/characters/gabira/front.svg",
  24179. extra: 1261/1154,
  24180. bottom: 51/1312
  24181. }
  24182. },
  24183. back: {
  24184. height: math.unit(8, "feet"),
  24185. weight: math.unit(350, "lb"),
  24186. name: "Back",
  24187. image: {
  24188. source: "./media/characters/gabira/back.svg",
  24189. extra: 1265/1163,
  24190. bottom: 46/1311
  24191. }
  24192. },
  24193. head: {
  24194. height: math.unit(2.85, "feet"),
  24195. name: "Head",
  24196. image: {
  24197. source: "./media/characters/gabira/head.svg"
  24198. }
  24199. },
  24200. },
  24201. [
  24202. {
  24203. name: "Normal",
  24204. height: math.unit(8, "feet"),
  24205. default: true
  24206. },
  24207. ]
  24208. ))
  24209. characterMakers.push(() => makeCharacter(
  24210. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  24211. {
  24212. front: {
  24213. height: math.unit(5 + 3 / 12, "feet"),
  24214. weight: math.unit(137, "lb"),
  24215. name: "Front",
  24216. image: {
  24217. source: "./media/characters/sasha-katraine/front.svg",
  24218. extra: 1745/1694,
  24219. bottom: 37/1782
  24220. }
  24221. },
  24222. back: {
  24223. height: math.unit(5 + 3 / 12, "feet"),
  24224. weight: math.unit(137, "lb"),
  24225. name: "Back",
  24226. image: {
  24227. source: "./media/characters/sasha-katraine/back.svg",
  24228. extra: 1776/1699,
  24229. bottom: 26/1802
  24230. }
  24231. },
  24232. },
  24233. [
  24234. {
  24235. name: "Micro",
  24236. height: math.unit(5, "inches")
  24237. },
  24238. {
  24239. name: "Normal",
  24240. height: math.unit(5 + 3 / 12, "feet"),
  24241. default: true
  24242. },
  24243. ]
  24244. ))
  24245. characterMakers.push(() => makeCharacter(
  24246. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  24247. {
  24248. side: {
  24249. height: math.unit(4, "inches"),
  24250. weight: math.unit(200, "grams"),
  24251. name: "Side",
  24252. image: {
  24253. source: "./media/characters/der/side.svg",
  24254. extra: 719 / 400,
  24255. bottom: 30.6 / 749.9187
  24256. }
  24257. },
  24258. },
  24259. [
  24260. {
  24261. name: "Micro",
  24262. height: math.unit(4, "inches"),
  24263. default: true
  24264. },
  24265. ]
  24266. ))
  24267. characterMakers.push(() => makeCharacter(
  24268. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  24269. {
  24270. side: {
  24271. height: math.unit(30, "meters"),
  24272. weight: math.unit(700, "tonnes"),
  24273. name: "Side",
  24274. image: {
  24275. source: "./media/characters/fixerdragon/side.svg",
  24276. extra: (1293.0514 - 116.03) / 1106.86,
  24277. bottom: 116.03 / 1293.0514
  24278. }
  24279. },
  24280. },
  24281. [
  24282. {
  24283. name: "Planck",
  24284. height: math.unit(1.6e-35, "meters")
  24285. },
  24286. {
  24287. name: "Micro",
  24288. height: math.unit(0.4, "meters")
  24289. },
  24290. {
  24291. name: "Normal",
  24292. height: math.unit(30, "meters"),
  24293. default: true
  24294. },
  24295. {
  24296. name: "Megamacro",
  24297. height: math.unit(1.2, "megameters")
  24298. },
  24299. {
  24300. name: "Teramacro",
  24301. height: math.unit(130, "terameters")
  24302. },
  24303. {
  24304. name: "Yottamacro",
  24305. height: math.unit(6200, "yottameters")
  24306. },
  24307. ]
  24308. ));
  24309. characterMakers.push(() => makeCharacter(
  24310. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  24311. {
  24312. front: {
  24313. height: math.unit(8, "feet"),
  24314. weight: math.unit(250, "lb"),
  24315. name: "Front",
  24316. image: {
  24317. source: "./media/characters/kite/front.svg",
  24318. extra: 456/414,
  24319. bottom: 24/480
  24320. }
  24321. },
  24322. },
  24323. [
  24324. {
  24325. name: "Normal",
  24326. height: math.unit(8, "feet"),
  24327. default: true
  24328. },
  24329. {
  24330. name: "Macro",
  24331. height: math.unit(360, "feet")
  24332. },
  24333. {
  24334. name: "Megamacro",
  24335. height: math.unit(1500, "feet")
  24336. },
  24337. ]
  24338. ))
  24339. characterMakers.push(() => makeCharacter(
  24340. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  24341. {
  24342. anthro_front: {
  24343. height: math.unit(5 + 11/12, "feet"),
  24344. weight: math.unit(170, "lb"),
  24345. name: "Front",
  24346. image: {
  24347. source: "./media/characters/poojawa-vynar/anthro-front.svg",
  24348. extra: 1735/1585,
  24349. bottom: 96/1831
  24350. },
  24351. form: "anthro",
  24352. default: true
  24353. },
  24354. anthro_back: {
  24355. height: math.unit(5 + 11/12, "feet"),
  24356. weight: math.unit(170, "lb"),
  24357. name: "Back",
  24358. image: {
  24359. source: "./media/characters/poojawa-vynar/anthro-back.svg",
  24360. extra: 1749/1607,
  24361. bottom: 28/1777
  24362. },
  24363. form: "anthro"
  24364. },
  24365. anthro_male: {
  24366. height: math.unit(5 + 11/12, "feet"),
  24367. weight: math.unit(170, "lb"),
  24368. name: "Male",
  24369. image: {
  24370. source: "./media/characters/poojawa-vynar/anthro-front-male.svg",
  24371. extra: 1855/1713,
  24372. bottom: 63/1918
  24373. },
  24374. form: "anthro"
  24375. },
  24376. taur_front: {
  24377. height: math.unit(5 + 7/12, "feet"),
  24378. weight: math.unit(170, "lb"),
  24379. name: "Front",
  24380. image: {
  24381. source: "./media/characters/poojawa-vynar/taur-front.svg",
  24382. extra: 1151/1059,
  24383. bottom: 356/1507
  24384. },
  24385. form: "taur",
  24386. default: true
  24387. },
  24388. anthro_frontDressed: {
  24389. height: math.unit(5 + 11/12, "feet"),
  24390. weight: math.unit(170, "lb"),
  24391. name: "Front (Dressed)",
  24392. image: {
  24393. source: "./media/characters/poojawa-vynar/anthro-front-dressed.svg",
  24394. extra: 1735/1585,
  24395. bottom: 96/1831
  24396. },
  24397. form: "anthro"
  24398. },
  24399. anthro_backDressed: {
  24400. height: math.unit(5 + 11/12, "feet"),
  24401. weight: math.unit(170, "lb"),
  24402. name: "Back (Dressed)",
  24403. image: {
  24404. source: "./media/characters/poojawa-vynar/anthro-back-dressed.svg",
  24405. extra: 1749/1607,
  24406. bottom: 28/1777
  24407. },
  24408. form: "anthro"
  24409. },
  24410. anthro_maleDressed: {
  24411. height: math.unit(5 + 11/12, "feet"),
  24412. weight: math.unit(170, "lb"),
  24413. name: "Male (Dressed)",
  24414. image: {
  24415. source: "./media/characters/poojawa-vynar/anthro-front-male-dressed.svg",
  24416. extra: 1855/1713,
  24417. bottom: 63/1918
  24418. },
  24419. form: "anthro"
  24420. },
  24421. taur_frontDressed: {
  24422. height: math.unit(5 + 7/12, "feet"),
  24423. weight: math.unit(170, "lb"),
  24424. name: "Front (Dressed)",
  24425. image: {
  24426. source: "./media/characters/poojawa-vynar/taur-front-dressed.svg",
  24427. extra: 1151/1059,
  24428. bottom: 356/1507
  24429. },
  24430. form: "taur"
  24431. },
  24432. maw: {
  24433. height: math.unit(1.46, "feet"),
  24434. name: "Maw",
  24435. image: {
  24436. source: "./media/characters/poojawa-vynar/maw.svg"
  24437. },
  24438. allForms: true
  24439. },
  24440. head: {
  24441. height: math.unit(2.34, "feet"),
  24442. name: "Head",
  24443. image: {
  24444. source: "./media/characters/poojawa-vynar/head.svg"
  24445. },
  24446. allForms: true
  24447. },
  24448. leftPaw: {
  24449. height: math.unit(1.72, "feet"),
  24450. name: "Left Paw",
  24451. image: {
  24452. source: "./media/characters/poojawa-vynar/paw-left.svg"
  24453. },
  24454. allForms: true
  24455. },
  24456. rightPaw: {
  24457. height: math.unit(1.61, "feet"),
  24458. name: "Right Paw",
  24459. image: {
  24460. source: "./media/characters/poojawa-vynar/paw-right.svg"
  24461. },
  24462. allForms: true
  24463. },
  24464. toering: {
  24465. height: math.unit(2.9, "inches"),
  24466. name: "Toering",
  24467. image: {
  24468. source: "./media/characters/poojawa-vynar/toering.svg"
  24469. },
  24470. allForms: true
  24471. },
  24472. shaft: {
  24473. height: math.unit(0.625, "feet"),
  24474. name: "Shaft",
  24475. image: {
  24476. source: "./media/characters/poojawa-vynar/shaft.svg"
  24477. },
  24478. allForms: true
  24479. },
  24480. spade: {
  24481. height: math.unit(0.42, "feet"),
  24482. name: "Spade",
  24483. image: {
  24484. source: "./media/characters/poojawa-vynar/spade.svg"
  24485. },
  24486. allForms: true
  24487. },
  24488. },
  24489. [
  24490. {
  24491. name: "Shortstack",
  24492. height: math.unit(4, "feet"),
  24493. form: "anthro"
  24494. },
  24495. {
  24496. name: "Normal",
  24497. height: math.unit(5 + 11 / 12, "feet"),
  24498. form: "anthro",
  24499. default: true
  24500. },
  24501. {
  24502. name: "Tauric",
  24503. height: math.unit(4, "meters"),
  24504. form: "taur",
  24505. default: true
  24506. },
  24507. ],
  24508. {
  24509. "anthro": {
  24510. name: "Anthro",
  24511. default: true
  24512. },
  24513. "taur": {
  24514. name: "Taur",
  24515. },
  24516. }
  24517. ))
  24518. characterMakers.push(() => makeCharacter(
  24519. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  24520. {
  24521. front: {
  24522. height: math.unit(293, "meters"),
  24523. weight: math.unit(70400, "tons"),
  24524. name: "Front",
  24525. image: {
  24526. source: "./media/characters/violette/front.svg",
  24527. extra: 1227 / 1180,
  24528. bottom: 0.005
  24529. }
  24530. },
  24531. back: {
  24532. height: math.unit(293, "meters"),
  24533. weight: math.unit(70400, "tons"),
  24534. name: "Back",
  24535. image: {
  24536. source: "./media/characters/violette/back.svg",
  24537. extra: 1227 / 1180,
  24538. bottom: 0.005
  24539. }
  24540. },
  24541. },
  24542. [
  24543. {
  24544. name: "Macro",
  24545. height: math.unit(293, "meters"),
  24546. default: true
  24547. },
  24548. ]
  24549. ))
  24550. characterMakers.push(() => makeCharacter(
  24551. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  24552. {
  24553. front: {
  24554. height: math.unit(1050, "feet"),
  24555. weight: math.unit(200000, "tons"),
  24556. name: "Front",
  24557. image: {
  24558. source: "./media/characters/alessandra/front.svg",
  24559. extra: 960 / 912,
  24560. bottom: 0.06
  24561. }
  24562. },
  24563. },
  24564. [
  24565. {
  24566. name: "Macro",
  24567. height: math.unit(1050, "feet")
  24568. },
  24569. {
  24570. name: "Macro+",
  24571. height: math.unit(900, "meters"),
  24572. default: true
  24573. },
  24574. ]
  24575. ))
  24576. characterMakers.push(() => makeCharacter(
  24577. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  24578. {
  24579. front: {
  24580. height: math.unit(5, "feet"),
  24581. weight: math.unit(187, "lb"),
  24582. name: "Front",
  24583. image: {
  24584. source: "./media/characters/person/front.svg",
  24585. extra: 3087 / 2945,
  24586. bottom: 91 / 3181
  24587. }
  24588. },
  24589. },
  24590. [
  24591. {
  24592. name: "Micro",
  24593. height: math.unit(3, "inches")
  24594. },
  24595. {
  24596. name: "Normal",
  24597. height: math.unit(5, "feet"),
  24598. default: true
  24599. },
  24600. {
  24601. name: "Macro",
  24602. height: math.unit(90, "feet")
  24603. },
  24604. {
  24605. name: "Max Size",
  24606. height: math.unit(280, "feet")
  24607. },
  24608. ]
  24609. ))
  24610. characterMakers.push(() => makeCharacter(
  24611. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  24612. {
  24613. front: {
  24614. height: math.unit(12, "feet"),
  24615. weight: math.unit(3200, "lb"),
  24616. name: "Front",
  24617. image: {
  24618. source: "./media/characters/ty/front.svg",
  24619. extra: 753/703,
  24620. bottom: 61/814
  24621. }
  24622. },
  24623. back: {
  24624. height: math.unit(12, "feet"),
  24625. weight: math.unit(3200, "lb"),
  24626. name: "Back",
  24627. image: {
  24628. source: "./media/characters/ty/back.svg",
  24629. extra: 757/707,
  24630. bottom: 16/773
  24631. }
  24632. },
  24633. head: {
  24634. height: math.unit(3.7, "feet"),
  24635. name: "Head",
  24636. image: {
  24637. source: "./media/characters/ty/head.svg"
  24638. }
  24639. },
  24640. hand: {
  24641. height: math.unit(2.38, "feet"),
  24642. name: "Hand",
  24643. image: {
  24644. source: "./media/characters/ty/hand.svg"
  24645. }
  24646. },
  24647. tail: {
  24648. height: math.unit(8.01096641535, "feet"),
  24649. name: "Tail",
  24650. image: {
  24651. source: "./media/characters/ty/tail.svg"
  24652. }
  24653. },
  24654. },
  24655. [
  24656. {
  24657. name: "Normal",
  24658. height: math.unit(12, "feet"),
  24659. default: true
  24660. },
  24661. ]
  24662. ))
  24663. characterMakers.push(() => makeCharacter(
  24664. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  24665. {
  24666. front: {
  24667. height: math.unit(5 + 4 / 12, "feet"),
  24668. weight: math.unit(115, "lb"),
  24669. name: "Front",
  24670. image: {
  24671. source: "./media/characters/rocky/front.svg",
  24672. extra: 1012 / 975,
  24673. bottom: 54 / 1066
  24674. }
  24675. },
  24676. },
  24677. [
  24678. {
  24679. name: "Normal",
  24680. height: math.unit(5 + 4 / 12, "feet"),
  24681. default: true
  24682. },
  24683. ]
  24684. ))
  24685. characterMakers.push(() => makeCharacter(
  24686. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  24687. {
  24688. upright: {
  24689. height: math.unit(6, "meters"),
  24690. weight: math.unit(4000, "kg"),
  24691. name: "Upright",
  24692. image: {
  24693. source: "./media/characters/ruin/upright.svg",
  24694. extra: 668 / 661,
  24695. bottom: 42 / 799.8396
  24696. }
  24697. },
  24698. },
  24699. [
  24700. {
  24701. name: "Normal",
  24702. height: math.unit(6, "meters"),
  24703. default: true
  24704. },
  24705. ]
  24706. ))
  24707. characterMakers.push(() => makeCharacter(
  24708. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24709. {
  24710. front: {
  24711. height: math.unit(5, "feet"),
  24712. weight: math.unit(106, "lb"),
  24713. name: "Front",
  24714. image: {
  24715. source: "./media/characters/robin/front.svg",
  24716. extra: 862 / 799,
  24717. bottom: 42.4 / 914.8856
  24718. }
  24719. },
  24720. },
  24721. [
  24722. {
  24723. name: "Normal",
  24724. height: math.unit(5, "feet"),
  24725. default: true
  24726. },
  24727. ]
  24728. ))
  24729. characterMakers.push(() => makeCharacter(
  24730. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24731. {
  24732. side: {
  24733. height: math.unit(3, "feet"),
  24734. weight: math.unit(225, "lb"),
  24735. name: "Side",
  24736. image: {
  24737. source: "./media/characters/saian/side.svg",
  24738. extra: 566 / 356,
  24739. bottom: 79.7 / 643
  24740. }
  24741. },
  24742. maw: {
  24743. height: math.unit(2.85, "feet"),
  24744. name: "Maw",
  24745. image: {
  24746. source: "./media/characters/saian/maw.svg"
  24747. }
  24748. },
  24749. },
  24750. [
  24751. {
  24752. name: "Normal",
  24753. height: math.unit(3, "feet"),
  24754. default: true
  24755. },
  24756. ]
  24757. ))
  24758. characterMakers.push(() => makeCharacter(
  24759. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24760. {
  24761. side: {
  24762. height: math.unit(8, "feet"),
  24763. weight: math.unit(300, "lb"),
  24764. name: "Side",
  24765. image: {
  24766. source: "./media/characters/equus-silvermane/side.svg",
  24767. extra: 2176 / 2050,
  24768. bottom: 65.7 / 2245
  24769. }
  24770. },
  24771. front: {
  24772. height: math.unit(8, "feet"),
  24773. weight: math.unit(300, "lb"),
  24774. name: "Front",
  24775. image: {
  24776. source: "./media/characters/equus-silvermane/front.svg",
  24777. extra: 4633 / 4400,
  24778. bottom: 71.3 / 4706.915
  24779. }
  24780. },
  24781. sideStepping: {
  24782. height: math.unit(8, "feet"),
  24783. weight: math.unit(300, "lb"),
  24784. name: "Side (Stepping)",
  24785. image: {
  24786. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24787. extra: 1968 / 1860,
  24788. bottom: 16.4 / 1989
  24789. }
  24790. },
  24791. },
  24792. [
  24793. {
  24794. name: "Normal",
  24795. height: math.unit(8, "feet")
  24796. },
  24797. {
  24798. name: "Minimacro",
  24799. height: math.unit(75, "feet"),
  24800. default: true
  24801. },
  24802. {
  24803. name: "Macro",
  24804. height: math.unit(150, "feet")
  24805. },
  24806. {
  24807. name: "Macro+",
  24808. height: math.unit(1000, "feet")
  24809. },
  24810. {
  24811. name: "Megamacro",
  24812. height: math.unit(1, "mile")
  24813. },
  24814. ]
  24815. ))
  24816. characterMakers.push(() => makeCharacter(
  24817. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24818. {
  24819. side: {
  24820. height: math.unit(20, "feet"),
  24821. weight: math.unit(30000, "kg"),
  24822. name: "Side",
  24823. image: {
  24824. source: "./media/characters/windar/side.svg",
  24825. extra: 1491 / 1248,
  24826. bottom: 82.56 / 1568
  24827. }
  24828. },
  24829. },
  24830. [
  24831. {
  24832. name: "Normal",
  24833. height: math.unit(20, "feet"),
  24834. default: true
  24835. },
  24836. ]
  24837. ))
  24838. characterMakers.push(() => makeCharacter(
  24839. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24840. {
  24841. side: {
  24842. height: math.unit(15.66, "feet"),
  24843. weight: math.unit(150, "lb"),
  24844. name: "Side",
  24845. image: {
  24846. source: "./media/characters/melody/side.svg",
  24847. extra: 1097 / 944,
  24848. bottom: 11.8 / 1109
  24849. }
  24850. },
  24851. sideOutfit: {
  24852. height: math.unit(15.66, "feet"),
  24853. weight: math.unit(150, "lb"),
  24854. name: "Side (Outfit)",
  24855. image: {
  24856. source: "./media/characters/melody/side-outfit.svg",
  24857. extra: 1097 / 944,
  24858. bottom: 11.8 / 1109
  24859. }
  24860. },
  24861. },
  24862. [
  24863. {
  24864. name: "Normal",
  24865. height: math.unit(15.66, "feet"),
  24866. default: true
  24867. },
  24868. ]
  24869. ))
  24870. characterMakers.push(() => makeCharacter(
  24871. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24872. {
  24873. armoredFront: {
  24874. height: math.unit(8, "feet"),
  24875. weight: math.unit(325, "lb"),
  24876. name: "Front",
  24877. image: {
  24878. source: "./media/characters/windera/armored-front.svg",
  24879. extra: 1830/1598,
  24880. bottom: 151/1981
  24881. },
  24882. form: "armored",
  24883. default: true
  24884. },
  24885. macroFront: {
  24886. height: math.unit(70, "feet"),
  24887. weight: math.unit(315453, "lb"),
  24888. name: "Front",
  24889. image: {
  24890. source: "./media/characters/windera/macro-front.svg",
  24891. extra: 963/883,
  24892. bottom: 23/986
  24893. },
  24894. form: "macro",
  24895. default: true
  24896. },
  24897. },
  24898. [
  24899. {
  24900. name: "Normal",
  24901. height: math.unit(8, "feet"),
  24902. default: true,
  24903. form: "armored"
  24904. },
  24905. {
  24906. name: "Normal",
  24907. height: math.unit(70, "feet"),
  24908. default: true,
  24909. form: "macro"
  24910. },
  24911. ],
  24912. {
  24913. "armored": {
  24914. name: "Armored",
  24915. default: true
  24916. },
  24917. "macro": {
  24918. name: "Macro",
  24919. },
  24920. }
  24921. ))
  24922. characterMakers.push(() => makeCharacter(
  24923. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24924. {
  24925. front: {
  24926. height: math.unit(28.75, "feet"),
  24927. weight: math.unit(2000, "kg"),
  24928. name: "Front",
  24929. image: {
  24930. source: "./media/characters/sonear/front.svg",
  24931. extra: 1041.1 / 964.9,
  24932. bottom: 53.7 / 1096.6
  24933. }
  24934. },
  24935. },
  24936. [
  24937. {
  24938. name: "Normal",
  24939. height: math.unit(28.75, "feet"),
  24940. default: true
  24941. },
  24942. ]
  24943. ))
  24944. characterMakers.push(() => makeCharacter(
  24945. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24946. {
  24947. side: {
  24948. height: math.unit(25.5, "feet"),
  24949. weight: math.unit(23000, "kg"),
  24950. name: "Side",
  24951. image: {
  24952. source: "./media/characters/kanara/side.svg"
  24953. }
  24954. },
  24955. },
  24956. [
  24957. {
  24958. name: "Normal",
  24959. height: math.unit(25.5, "feet"),
  24960. default: true
  24961. },
  24962. ]
  24963. ))
  24964. characterMakers.push(() => makeCharacter(
  24965. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24966. {
  24967. side: {
  24968. height: math.unit(10, "feet"),
  24969. weight: math.unit(1000, "kg"),
  24970. name: "Side",
  24971. image: {
  24972. source: "./media/characters/ereus/side.svg",
  24973. extra: 1157 / 959,
  24974. bottom: 153 / 1312.5
  24975. }
  24976. },
  24977. },
  24978. [
  24979. {
  24980. name: "Normal",
  24981. height: math.unit(10, "feet"),
  24982. default: true
  24983. },
  24984. ]
  24985. ))
  24986. characterMakers.push(() => makeCharacter(
  24987. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24988. {
  24989. side: {
  24990. height: math.unit(4.5, "feet"),
  24991. weight: math.unit(500, "lb"),
  24992. name: "Side",
  24993. image: {
  24994. source: "./media/characters/e-ter/side.svg",
  24995. extra: 1550 / 1248,
  24996. bottom: 146 / 1694
  24997. }
  24998. },
  24999. },
  25000. [
  25001. {
  25002. name: "Normal",
  25003. height: math.unit(4.5, "feet"),
  25004. default: true
  25005. },
  25006. ]
  25007. ))
  25008. characterMakers.push(() => makeCharacter(
  25009. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  25010. {
  25011. side: {
  25012. height: math.unit(9.7, "feet"),
  25013. weight: math.unit(4000, "kg"),
  25014. name: "Side",
  25015. image: {
  25016. source: "./media/characters/yamie/side.svg"
  25017. }
  25018. },
  25019. },
  25020. [
  25021. {
  25022. name: "Normal",
  25023. height: math.unit(9.7, "feet"),
  25024. default: true
  25025. },
  25026. ]
  25027. ))
  25028. characterMakers.push(() => makeCharacter(
  25029. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  25030. {
  25031. front: {
  25032. height: math.unit(50, "feet"),
  25033. weight: math.unit(50000, "kg"),
  25034. name: "Front",
  25035. image: {
  25036. source: "./media/characters/anders/front.svg",
  25037. extra: 570 / 539,
  25038. bottom: 14.7 / 586.7
  25039. }
  25040. },
  25041. },
  25042. [
  25043. {
  25044. name: "Large",
  25045. height: math.unit(50, "feet")
  25046. },
  25047. {
  25048. name: "Macro",
  25049. height: math.unit(2000, "feet"),
  25050. default: true
  25051. },
  25052. {
  25053. name: "Megamacro",
  25054. height: math.unit(12, "miles")
  25055. },
  25056. ]
  25057. ))
  25058. characterMakers.push(() => makeCharacter(
  25059. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  25060. {
  25061. front: {
  25062. height: math.unit(7 + 2 / 12, "feet"),
  25063. weight: math.unit(300, "lb"),
  25064. name: "Front",
  25065. image: {
  25066. source: "./media/characters/reban/front.svg",
  25067. extra: 1287/1212,
  25068. bottom: 148/1435
  25069. }
  25070. },
  25071. head: {
  25072. height: math.unit(1.95, "feet"),
  25073. name: "Head",
  25074. image: {
  25075. source: "./media/characters/reban/head.svg"
  25076. }
  25077. },
  25078. maw: {
  25079. height: math.unit(0.95, "feet"),
  25080. name: "Maw",
  25081. image: {
  25082. source: "./media/characters/reban/maw.svg"
  25083. }
  25084. },
  25085. foot: {
  25086. height: math.unit(1.65, "feet"),
  25087. name: "Foot",
  25088. image: {
  25089. source: "./media/characters/reban/foot.svg"
  25090. }
  25091. },
  25092. dick: {
  25093. height: math.unit(7 / 5, "feet"),
  25094. name: "Dick",
  25095. image: {
  25096. source: "./media/characters/reban/dick.svg"
  25097. }
  25098. },
  25099. },
  25100. [
  25101. {
  25102. name: "Natural Height",
  25103. height: math.unit(7 + 2 / 12, "feet")
  25104. },
  25105. {
  25106. name: "Macro",
  25107. height: math.unit(500, "feet"),
  25108. default: true
  25109. },
  25110. {
  25111. name: "Canon Height",
  25112. height: math.unit(50, "AU")
  25113. },
  25114. ]
  25115. ))
  25116. characterMakers.push(() => makeCharacter(
  25117. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  25118. {
  25119. front: {
  25120. height: math.unit(6, "feet"),
  25121. weight: math.unit(150, "lb"),
  25122. name: "Front",
  25123. image: {
  25124. source: "./media/characters/terrance-keayes/front.svg",
  25125. extra: 1.005,
  25126. bottom: 151 / 1615
  25127. }
  25128. },
  25129. side: {
  25130. height: math.unit(6, "feet"),
  25131. weight: math.unit(150, "lb"),
  25132. name: "Side",
  25133. image: {
  25134. source: "./media/characters/terrance-keayes/side.svg",
  25135. extra: 1.005,
  25136. bottom: 129.4 / 1544
  25137. }
  25138. },
  25139. back: {
  25140. height: math.unit(6, "feet"),
  25141. weight: math.unit(150, "lb"),
  25142. name: "Back",
  25143. image: {
  25144. source: "./media/characters/terrance-keayes/back.svg",
  25145. extra: 1.005,
  25146. bottom: 58.4 / 1557.3
  25147. }
  25148. },
  25149. dick: {
  25150. height: math.unit(6 * 0.208, "feet"),
  25151. name: "Dick",
  25152. image: {
  25153. source: "./media/characters/terrance-keayes/dick.svg"
  25154. }
  25155. },
  25156. },
  25157. [
  25158. {
  25159. name: "Canon Height",
  25160. height: math.unit(35, "miles"),
  25161. default: true
  25162. },
  25163. ]
  25164. ))
  25165. characterMakers.push(() => makeCharacter(
  25166. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  25167. {
  25168. front: {
  25169. height: math.unit(6, "feet"),
  25170. weight: math.unit(150, "lb"),
  25171. name: "Front",
  25172. image: {
  25173. source: "./media/characters/ofelia/front.svg",
  25174. extra: 1130/1117,
  25175. bottom: 91/1221
  25176. }
  25177. },
  25178. back: {
  25179. height: math.unit(6, "feet"),
  25180. weight: math.unit(150, "lb"),
  25181. name: "Back",
  25182. image: {
  25183. source: "./media/characters/ofelia/back.svg",
  25184. extra: 1172/1159,
  25185. bottom: 28/1200
  25186. }
  25187. },
  25188. maw: {
  25189. height: math.unit(1, "feet"),
  25190. name: "Maw",
  25191. image: {
  25192. source: "./media/characters/ofelia/maw.svg"
  25193. }
  25194. },
  25195. foot: {
  25196. height: math.unit(1.949, "feet"),
  25197. name: "Foot",
  25198. image: {
  25199. source: "./media/characters/ofelia/foot.svg"
  25200. }
  25201. },
  25202. },
  25203. [
  25204. {
  25205. name: "Canon Height",
  25206. height: math.unit(2000, "miles"),
  25207. default: true
  25208. },
  25209. ]
  25210. ))
  25211. characterMakers.push(() => makeCharacter(
  25212. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  25213. {
  25214. front: {
  25215. height: math.unit(6, "feet"),
  25216. weight: math.unit(150, "lb"),
  25217. name: "Front",
  25218. image: {
  25219. source: "./media/characters/samuel/front.svg",
  25220. extra: 265 / 258,
  25221. bottom: 2 / 266.1566
  25222. }
  25223. },
  25224. },
  25225. [
  25226. {
  25227. name: "Macro",
  25228. height: math.unit(100, "feet"),
  25229. default: true
  25230. },
  25231. {
  25232. name: "Full Size",
  25233. height: math.unit(1000, "miles")
  25234. },
  25235. ]
  25236. ))
  25237. characterMakers.push(() => makeCharacter(
  25238. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  25239. {
  25240. front: {
  25241. height: math.unit(6, "feet"),
  25242. weight: math.unit(300, "lb"),
  25243. name: "Front",
  25244. image: {
  25245. source: "./media/characters/beishir-kiel/front.svg",
  25246. extra: 569 / 547,
  25247. bottom: 41.9 / 609
  25248. }
  25249. },
  25250. maw: {
  25251. height: math.unit(6 * 0.202, "feet"),
  25252. name: "Maw",
  25253. image: {
  25254. source: "./media/characters/beishir-kiel/maw.svg"
  25255. }
  25256. },
  25257. },
  25258. [
  25259. {
  25260. name: "Macro",
  25261. height: math.unit(300, "feet"),
  25262. default: true
  25263. },
  25264. ]
  25265. ))
  25266. characterMakers.push(() => makeCharacter(
  25267. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  25268. {
  25269. front: {
  25270. height: math.unit(5 + 7/12, "feet"),
  25271. weight: math.unit(120, "lb"),
  25272. name: "Front",
  25273. image: {
  25274. source: "./media/characters/logan-grey/front.svg",
  25275. extra: 1836/1738,
  25276. bottom: 108/1944
  25277. }
  25278. },
  25279. back: {
  25280. height: math.unit(5 + 7/12, "feet"),
  25281. weight: math.unit(120, "lb"),
  25282. name: "Back",
  25283. image: {
  25284. source: "./media/characters/logan-grey/back.svg",
  25285. extra: 1880/1794,
  25286. bottom: 24/1904
  25287. }
  25288. },
  25289. frontSfw: {
  25290. height: math.unit(5 + 7/12, "feet"),
  25291. weight: math.unit(120, "lb"),
  25292. name: "Front (SFW)",
  25293. image: {
  25294. source: "./media/characters/logan-grey/front-sfw.svg",
  25295. extra: 1836/1738,
  25296. bottom: 108/1944
  25297. }
  25298. },
  25299. backSfw: {
  25300. height: math.unit(5 + 7/12, "feet"),
  25301. weight: math.unit(120, "lb"),
  25302. name: "Back (SFW)",
  25303. image: {
  25304. source: "./media/characters/logan-grey/back-sfw.svg",
  25305. extra: 1880/1794,
  25306. bottom: 24/1904
  25307. }
  25308. },
  25309. hands: {
  25310. height: math.unit(0.84, "feet"),
  25311. name: "Hands",
  25312. image: {
  25313. source: "./media/characters/logan-grey/hands.svg"
  25314. }
  25315. },
  25316. paws: {
  25317. height: math.unit(0.72, "feet"),
  25318. name: "Paws",
  25319. image: {
  25320. source: "./media/characters/logan-grey/paws.svg"
  25321. }
  25322. },
  25323. cock: {
  25324. height: math.unit(1.45, "feet"),
  25325. name: "Cock",
  25326. image: {
  25327. source: "./media/characters/logan-grey/cock.svg"
  25328. }
  25329. },
  25330. cockAlt: {
  25331. height: math.unit(1.437, "feet"),
  25332. name: "Cock (alt)",
  25333. image: {
  25334. source: "./media/characters/logan-grey/cock-alt.svg"
  25335. }
  25336. },
  25337. },
  25338. [
  25339. {
  25340. name: "Normal",
  25341. height: math.unit(5 + 8 / 12, "feet")
  25342. },
  25343. {
  25344. name: "The 500 Foot Femboy",
  25345. height: math.unit(500, "feet"),
  25346. default: true
  25347. },
  25348. {
  25349. name: "Megmacro",
  25350. height: math.unit(20, "miles")
  25351. },
  25352. ]
  25353. ))
  25354. characterMakers.push(() => makeCharacter(
  25355. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  25356. {
  25357. front: {
  25358. height: math.unit(8 + 2 / 12, "feet"),
  25359. weight: math.unit(275, "lb"),
  25360. name: "Front",
  25361. image: {
  25362. source: "./media/characters/draganta/front.svg",
  25363. extra: 1177 / 1135,
  25364. bottom: 33.46 / 1212.1
  25365. }
  25366. },
  25367. },
  25368. [
  25369. {
  25370. name: "Normal",
  25371. height: math.unit(8 + 6 / 12, "feet"),
  25372. default: true
  25373. },
  25374. {
  25375. name: "Macro",
  25376. height: math.unit(150, "feet")
  25377. },
  25378. {
  25379. name: "Megamacro",
  25380. height: math.unit(1000, "miles")
  25381. },
  25382. ]
  25383. ))
  25384. characterMakers.push(() => makeCharacter(
  25385. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  25386. {
  25387. front: {
  25388. height: math.unit(1.72, "m"),
  25389. weight: math.unit(80, "lb"),
  25390. name: "Front",
  25391. image: {
  25392. source: "./media/characters/voski/front.svg",
  25393. extra: 2076.22 / 2022.4,
  25394. bottom: 102.7 / 2177.3866
  25395. }
  25396. },
  25397. frontFlaccid: {
  25398. height: math.unit(1.72, "m"),
  25399. weight: math.unit(80, "lb"),
  25400. name: "Front (Flaccid)",
  25401. image: {
  25402. source: "./media/characters/voski/front-flaccid.svg",
  25403. extra: 2076.22 / 2022.4,
  25404. bottom: 102.7 / 2177.3866
  25405. }
  25406. },
  25407. frontErect: {
  25408. height: math.unit(1.72, "m"),
  25409. weight: math.unit(80, "lb"),
  25410. name: "Front (Erect)",
  25411. image: {
  25412. source: "./media/characters/voski/front-erect.svg",
  25413. extra: 2076.22 / 2022.4,
  25414. bottom: 102.7 / 2177.3866
  25415. }
  25416. },
  25417. back: {
  25418. height: math.unit(1.72, "m"),
  25419. weight: math.unit(80, "lb"),
  25420. name: "Back",
  25421. image: {
  25422. source: "./media/characters/voski/back.svg",
  25423. extra: 2104 / 2051,
  25424. bottom: 10.45 / 2113.63
  25425. }
  25426. },
  25427. },
  25428. [
  25429. {
  25430. name: "Normal",
  25431. height: math.unit(1.72, "m")
  25432. },
  25433. {
  25434. name: "Macro",
  25435. height: math.unit(55, "m"),
  25436. default: true
  25437. },
  25438. {
  25439. name: "Macro+",
  25440. height: math.unit(300, "m")
  25441. },
  25442. {
  25443. name: "Macro++",
  25444. height: math.unit(700, "m")
  25445. },
  25446. {
  25447. name: "Macro+++",
  25448. height: math.unit(4500, "m")
  25449. },
  25450. {
  25451. name: "Macro++++",
  25452. height: math.unit(45, "km")
  25453. },
  25454. {
  25455. name: "Macro+++++",
  25456. height: math.unit(1220, "km")
  25457. },
  25458. ]
  25459. ))
  25460. characterMakers.push(() => makeCharacter(
  25461. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  25462. {
  25463. front: {
  25464. height: math.unit(2.3, "m"),
  25465. weight: math.unit(304, "kg"),
  25466. name: "Front",
  25467. image: {
  25468. source: "./media/characters/icowom-lee/front.svg",
  25469. extra: 985 / 955,
  25470. bottom: 25.4 / 1012
  25471. }
  25472. },
  25473. fronttentacles: {
  25474. height: math.unit(2.3, "m"),
  25475. weight: math.unit(304, "kg"),
  25476. name: "Front (Tentacles)",
  25477. image: {
  25478. source: "./media/characters/icowom-lee/front-tentacles.svg",
  25479. extra: 985 / 955,
  25480. bottom: 25.4 / 1012
  25481. }
  25482. },
  25483. back: {
  25484. height: math.unit(2.3, "m"),
  25485. weight: math.unit(304, "kg"),
  25486. name: "Back",
  25487. image: {
  25488. source: "./media/characters/icowom-lee/back.svg",
  25489. extra: 975 / 954,
  25490. bottom: 9.5 / 985
  25491. }
  25492. },
  25493. backtentacles: {
  25494. height: math.unit(2.3, "m"),
  25495. weight: math.unit(304, "kg"),
  25496. name: "Back (Tentacles)",
  25497. image: {
  25498. source: "./media/characters/icowom-lee/back-tentacles.svg",
  25499. extra: 975 / 954,
  25500. bottom: 9.5 / 985
  25501. }
  25502. },
  25503. frontDressed: {
  25504. height: math.unit(2.3, "m"),
  25505. weight: math.unit(304, "kg"),
  25506. name: "Front (Dressed)",
  25507. image: {
  25508. source: "./media/characters/icowom-lee/front-dressed.svg",
  25509. extra: 3076 / 2933,
  25510. bottom: 51.4 / 3125.1889
  25511. }
  25512. },
  25513. rump: {
  25514. height: math.unit(0.776, "meters"),
  25515. name: "Rump",
  25516. image: {
  25517. source: "./media/characters/icowom-lee/rump.svg"
  25518. }
  25519. },
  25520. genitals: {
  25521. height: math.unit(0.78, "meters"),
  25522. name: "Genitals",
  25523. image: {
  25524. source: "./media/characters/icowom-lee/genitals.svg"
  25525. }
  25526. },
  25527. },
  25528. [
  25529. {
  25530. name: "Normal",
  25531. height: math.unit(2.3, "meters"),
  25532. default: true
  25533. },
  25534. {
  25535. name: "Macro",
  25536. height: math.unit(94, "meters"),
  25537. default: true
  25538. },
  25539. ]
  25540. ))
  25541. characterMakers.push(() => makeCharacter(
  25542. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  25543. {
  25544. front: {
  25545. height: math.unit(22, "meters"),
  25546. weight: math.unit(21000, "kg"),
  25547. name: "Front",
  25548. image: {
  25549. source: "./media/characters/shock-diamond/front.svg",
  25550. extra: 2204 / 2053,
  25551. bottom: 65 / 2239.47
  25552. }
  25553. },
  25554. frontNude: {
  25555. height: math.unit(22, "meters"),
  25556. weight: math.unit(21000, "kg"),
  25557. name: "Front (Nude)",
  25558. image: {
  25559. source: "./media/characters/shock-diamond/front-nude.svg",
  25560. extra: 2514 / 2285,
  25561. bottom: 13 / 2527.56
  25562. }
  25563. },
  25564. },
  25565. [
  25566. {
  25567. name: "Normal",
  25568. height: math.unit(3, "meters")
  25569. },
  25570. {
  25571. name: "Macro",
  25572. height: math.unit(22, "meters"),
  25573. default: true
  25574. },
  25575. ]
  25576. ))
  25577. characterMakers.push(() => makeCharacter(
  25578. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  25579. {
  25580. front: {
  25581. height: math.unit(5 + 4/12, "feet"),
  25582. weight: math.unit(125, "lb"),
  25583. name: "Front",
  25584. image: {
  25585. source: "./media/characters/rory/front.svg",
  25586. extra: 1790/1681,
  25587. bottom: 66/1856
  25588. },
  25589. form: "normal",
  25590. default: true
  25591. },
  25592. back: {
  25593. height: math.unit(5 + 4/12, "feet"),
  25594. weight: math.unit(125, "lb"),
  25595. name: "Back",
  25596. image: {
  25597. source: "./media/characters/rory/back.svg",
  25598. extra: 1805/1690,
  25599. bottom: 56/1861
  25600. },
  25601. form: "normal"
  25602. },
  25603. frontDressed: {
  25604. height: math.unit(5 + 4/12, "feet"),
  25605. weight: math.unit(125, "lb"),
  25606. name: "Front (Dressed)",
  25607. image: {
  25608. source: "./media/characters/rory/front-dressed.svg",
  25609. extra: 1790/1681,
  25610. bottom: 66/1856
  25611. },
  25612. form: "normal"
  25613. },
  25614. backDressed: {
  25615. height: math.unit(5 + 4/12, "feet"),
  25616. weight: math.unit(125, "lb"),
  25617. name: "Back (Dressed)",
  25618. image: {
  25619. source: "./media/characters/rory/back-dressed.svg",
  25620. extra: 1805/1690,
  25621. bottom: 56/1861
  25622. },
  25623. form: "normal"
  25624. },
  25625. frontNsfw: {
  25626. height: math.unit(5 + 4/12, "feet"),
  25627. weight: math.unit(125, "lb"),
  25628. name: "Front (NSFW)",
  25629. image: {
  25630. source: "./media/characters/rory/front-nsfw.svg",
  25631. extra: 1790/1681,
  25632. bottom: 66/1856
  25633. },
  25634. form: "normal"
  25635. },
  25636. backNsfw: {
  25637. height: math.unit(5 + 4/12, "feet"),
  25638. weight: math.unit(125, "lb"),
  25639. name: "Back (NSFW)",
  25640. image: {
  25641. source: "./media/characters/rory/back-nsfw.svg",
  25642. extra: 1805/1690,
  25643. bottom: 56/1861
  25644. },
  25645. form: "normal"
  25646. },
  25647. dick: {
  25648. height: math.unit(0.8, "feet"),
  25649. name: "Dick",
  25650. image: {
  25651. source: "./media/characters/rory/dick.svg"
  25652. },
  25653. form: "normal"
  25654. },
  25655. thicc_front: {
  25656. height: math.unit(5 + 4/12, "feet"),
  25657. weight: math.unit(195, "lb"),
  25658. name: "Front",
  25659. image: {
  25660. source: "./media/characters/rory/thicc-front.svg",
  25661. extra: 1220/1100,
  25662. bottom: 103/1323
  25663. },
  25664. form: "thicc",
  25665. default: true
  25666. },
  25667. thicc_back: {
  25668. height: math.unit(5 + 4/12, "feet"),
  25669. weight: math.unit(195, "lb"),
  25670. name: "Back",
  25671. image: {
  25672. source: "./media/characters/rory/thicc-back.svg",
  25673. extra: 1166/1086,
  25674. bottom: 35/1201
  25675. },
  25676. form: "thicc"
  25677. },
  25678. },
  25679. [
  25680. {
  25681. name: "Micro",
  25682. height: math.unit(3, "inches"),
  25683. allForms: true
  25684. },
  25685. {
  25686. name: "Normal",
  25687. height: math.unit(5 + 4/12, "feet"),
  25688. allForms: true,
  25689. default: true
  25690. },
  25691. {
  25692. name: "Macro",
  25693. height: math.unit(90, "feet"),
  25694. allForms: true
  25695. },
  25696. {
  25697. name: "Supercharged",
  25698. height: math.unit(270, "feet"),
  25699. allForms: true
  25700. },
  25701. ],
  25702. {
  25703. "normal": {
  25704. name: "Normal",
  25705. default: true
  25706. },
  25707. "thicc": {
  25708. name: "Thicc",
  25709. },
  25710. }
  25711. ))
  25712. characterMakers.push(() => makeCharacter(
  25713. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25714. {
  25715. front: {
  25716. height: math.unit(5 + 9 / 12, "feet"),
  25717. weight: math.unit(190, "lb"),
  25718. name: "Front",
  25719. image: {
  25720. source: "./media/characters/sprisk/front.svg",
  25721. extra: 1225 / 1180,
  25722. bottom: 42.7 / 1266.4
  25723. }
  25724. },
  25725. frontNsfw: {
  25726. height: math.unit(5 + 9 / 12, "feet"),
  25727. weight: math.unit(190, "lb"),
  25728. name: "Front (NSFW)",
  25729. image: {
  25730. source: "./media/characters/sprisk/front-nsfw.svg",
  25731. extra: 1225 / 1180,
  25732. bottom: 42.7 / 1266.4
  25733. }
  25734. },
  25735. back: {
  25736. height: math.unit(5 + 9 / 12, "feet"),
  25737. weight: math.unit(190, "lb"),
  25738. name: "Back",
  25739. image: {
  25740. source: "./media/characters/sprisk/back.svg",
  25741. extra: 1247 / 1200,
  25742. bottom: 5.6 / 1253.04
  25743. }
  25744. },
  25745. },
  25746. [
  25747. {
  25748. name: "Tiny",
  25749. height: math.unit(2, "inches")
  25750. },
  25751. {
  25752. name: "Normal",
  25753. height: math.unit(5 + 9 / 12, "feet"),
  25754. default: true
  25755. },
  25756. {
  25757. name: "Mini Macro",
  25758. height: math.unit(18, "feet")
  25759. },
  25760. {
  25761. name: "Macro",
  25762. height: math.unit(100, "feet")
  25763. },
  25764. {
  25765. name: "MACRO",
  25766. height: math.unit(50, "miles")
  25767. },
  25768. {
  25769. name: "M A C R O",
  25770. height: math.unit(300, "miles")
  25771. },
  25772. ]
  25773. ))
  25774. characterMakers.push(() => makeCharacter(
  25775. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25776. {
  25777. side: {
  25778. height: math.unit(15.6, "meters"),
  25779. weight: math.unit(700000, "kg"),
  25780. name: "Side",
  25781. image: {
  25782. source: "./media/characters/bunsen/side.svg",
  25783. extra: 1644 / 358
  25784. }
  25785. },
  25786. foot: {
  25787. height: math.unit(1.611 * 1644 / 358, "meter"),
  25788. name: "Foot",
  25789. image: {
  25790. source: "./media/characters/bunsen/foot.svg"
  25791. }
  25792. },
  25793. },
  25794. [
  25795. {
  25796. name: "Small",
  25797. height: math.unit(10, "feet")
  25798. },
  25799. {
  25800. name: "Normal",
  25801. height: math.unit(15.6, "meters"),
  25802. default: true
  25803. },
  25804. ]
  25805. ))
  25806. characterMakers.push(() => makeCharacter(
  25807. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25808. {
  25809. front: {
  25810. height: math.unit(4 + 11 / 12, "feet"),
  25811. weight: math.unit(140, "lb"),
  25812. name: "Front",
  25813. image: {
  25814. source: "./media/characters/sesh/front.svg",
  25815. extra: 3420 / 3231,
  25816. bottom: 72 / 3949.5
  25817. }
  25818. },
  25819. },
  25820. [
  25821. {
  25822. name: "Normal",
  25823. height: math.unit(4 + 11 / 12, "feet")
  25824. },
  25825. {
  25826. name: "Grown",
  25827. height: math.unit(15, "feet"),
  25828. default: true
  25829. },
  25830. {
  25831. name: "Macro",
  25832. height: math.unit(1500, "feet")
  25833. },
  25834. {
  25835. name: "Megamacro",
  25836. height: math.unit(30, "miles")
  25837. },
  25838. {
  25839. name: "Continental",
  25840. height: math.unit(3000, "miles")
  25841. },
  25842. {
  25843. name: "Gravity Mass",
  25844. height: math.unit(300000, "miles")
  25845. },
  25846. {
  25847. name: "Planet Buster",
  25848. height: math.unit(30000000, "miles")
  25849. },
  25850. {
  25851. name: "Big",
  25852. height: math.unit(3000000000, "miles")
  25853. },
  25854. ]
  25855. ))
  25856. characterMakers.push(() => makeCharacter(
  25857. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25858. {
  25859. front: {
  25860. height: math.unit(9, "feet"),
  25861. weight: math.unit(350, "lb"),
  25862. name: "Front",
  25863. image: {
  25864. source: "./media/characters/pepper/front.svg",
  25865. extra: 1448 / 1312,
  25866. bottom: 9.4 / 1457.88
  25867. }
  25868. },
  25869. back: {
  25870. height: math.unit(9, "feet"),
  25871. weight: math.unit(350, "lb"),
  25872. name: "Back",
  25873. image: {
  25874. source: "./media/characters/pepper/back.svg",
  25875. extra: 1423 / 1300,
  25876. bottom: 4.6 / 1429
  25877. }
  25878. },
  25879. maw: {
  25880. height: math.unit(0.932, "feet"),
  25881. name: "Maw",
  25882. image: {
  25883. source: "./media/characters/pepper/maw.svg"
  25884. }
  25885. },
  25886. },
  25887. [
  25888. {
  25889. name: "Normal",
  25890. height: math.unit(9, "feet"),
  25891. default: true
  25892. },
  25893. ]
  25894. ))
  25895. characterMakers.push(() => makeCharacter(
  25896. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25897. {
  25898. front: {
  25899. height: math.unit(6, "feet"),
  25900. weight: math.unit(150, "lb"),
  25901. name: "Front",
  25902. image: {
  25903. source: "./media/characters/maelstrom/front.svg",
  25904. extra: 2100 / 1883,
  25905. bottom: 94 / 2196.7
  25906. }
  25907. },
  25908. },
  25909. [
  25910. {
  25911. name: "Less Kaiju",
  25912. height: math.unit(200, "feet")
  25913. },
  25914. {
  25915. name: "Kaiju",
  25916. height: math.unit(400, "feet"),
  25917. default: true
  25918. },
  25919. {
  25920. name: "Kaiju-er",
  25921. height: math.unit(600, "feet")
  25922. },
  25923. ]
  25924. ))
  25925. characterMakers.push(() => makeCharacter(
  25926. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25927. {
  25928. front: {
  25929. height: math.unit(6 + 5 / 12, "feet"),
  25930. weight: math.unit(180, "lb"),
  25931. name: "Front",
  25932. image: {
  25933. source: "./media/characters/lexir/front.svg",
  25934. extra: 180 / 172,
  25935. bottom: 12 / 192
  25936. }
  25937. },
  25938. back: {
  25939. height: math.unit(6 + 5 / 12, "feet"),
  25940. weight: math.unit(180, "lb"),
  25941. name: "Back",
  25942. image: {
  25943. source: "./media/characters/lexir/back.svg",
  25944. extra: 1273/1201,
  25945. bottom: 39/1312
  25946. }
  25947. },
  25948. },
  25949. [
  25950. {
  25951. name: "Very Smal",
  25952. height: math.unit(1, "nm")
  25953. },
  25954. {
  25955. name: "Normal",
  25956. height: math.unit(6 + 5 / 12, "feet"),
  25957. default: true
  25958. },
  25959. {
  25960. name: "Macro",
  25961. height: math.unit(1, "mile")
  25962. },
  25963. {
  25964. name: "Megamacro",
  25965. height: math.unit(50, "miles")
  25966. },
  25967. ]
  25968. ))
  25969. characterMakers.push(() => makeCharacter(
  25970. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25971. {
  25972. front: {
  25973. height: math.unit(1.5, "meters"),
  25974. weight: math.unit(100, "lb"),
  25975. name: "Front",
  25976. image: {
  25977. source: "./media/characters/maksio/front.svg",
  25978. extra: 1549 / 1531,
  25979. bottom: 123.7 / 1674.5429
  25980. }
  25981. },
  25982. back: {
  25983. height: math.unit(1.5, "meters"),
  25984. weight: math.unit(100, "lb"),
  25985. name: "Back",
  25986. image: {
  25987. source: "./media/characters/maksio/back.svg",
  25988. extra: 1541 / 1509,
  25989. bottom: 97 / 1639
  25990. }
  25991. },
  25992. hand: {
  25993. height: math.unit(0.621, "feet"),
  25994. name: "Hand",
  25995. image: {
  25996. source: "./media/characters/maksio/hand.svg"
  25997. }
  25998. },
  25999. foot: {
  26000. height: math.unit(1.611, "feet"),
  26001. name: "Foot",
  26002. image: {
  26003. source: "./media/characters/maksio/foot.svg"
  26004. }
  26005. },
  26006. },
  26007. [
  26008. {
  26009. name: "Shrunken",
  26010. height: math.unit(10, "cm")
  26011. },
  26012. {
  26013. name: "Normal",
  26014. height: math.unit(150, "cm"),
  26015. default: true
  26016. },
  26017. ]
  26018. ))
  26019. characterMakers.push(() => makeCharacter(
  26020. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  26021. {
  26022. front: {
  26023. height: math.unit(100, "feet"),
  26024. name: "Front",
  26025. image: {
  26026. source: "./media/characters/erza-bear/front.svg",
  26027. extra: 2449 / 2390,
  26028. bottom: 46 / 2494
  26029. }
  26030. },
  26031. back: {
  26032. height: math.unit(100, "feet"),
  26033. name: "Back",
  26034. image: {
  26035. source: "./media/characters/erza-bear/back.svg",
  26036. extra: 2489 / 2430,
  26037. bottom: 85.4 / 2480
  26038. }
  26039. },
  26040. tail: {
  26041. height: math.unit(42, "feet"),
  26042. name: "Tail",
  26043. image: {
  26044. source: "./media/characters/erza-bear/tail.svg"
  26045. }
  26046. },
  26047. tongue: {
  26048. height: math.unit(8, "feet"),
  26049. name: "Tongue",
  26050. image: {
  26051. source: "./media/characters/erza-bear/tongue.svg"
  26052. }
  26053. },
  26054. dick: {
  26055. height: math.unit(10.5, "feet"),
  26056. name: "Dick",
  26057. image: {
  26058. source: "./media/characters/erza-bear/dick.svg"
  26059. }
  26060. },
  26061. dickVertical: {
  26062. height: math.unit(16.9, "feet"),
  26063. name: "Dick (Vertical)",
  26064. image: {
  26065. source: "./media/characters/erza-bear/dick-vertical.svg"
  26066. }
  26067. },
  26068. },
  26069. [
  26070. {
  26071. name: "Macro",
  26072. height: math.unit(100, "feet"),
  26073. default: true
  26074. },
  26075. ]
  26076. ))
  26077. characterMakers.push(() => makeCharacter(
  26078. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  26079. {
  26080. front: {
  26081. height: math.unit(172, "cm"),
  26082. weight: math.unit(73, "kg"),
  26083. name: "Front",
  26084. image: {
  26085. source: "./media/characters/violet-flor/front.svg",
  26086. extra: 1474/1379,
  26087. bottom: 113/1587
  26088. }
  26089. },
  26090. back: {
  26091. height: math.unit(180, "cm"),
  26092. weight: math.unit(73, "kg"),
  26093. name: "Back",
  26094. image: {
  26095. source: "./media/characters/violet-flor/back.svg",
  26096. extra: 1660/1567,
  26097. bottom: 49/1709
  26098. }
  26099. },
  26100. },
  26101. [
  26102. {
  26103. name: "Normal",
  26104. height: math.unit(172, "cm"),
  26105. default: true
  26106. },
  26107. ]
  26108. ))
  26109. characterMakers.push(() => makeCharacter(
  26110. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  26111. {
  26112. front: {
  26113. height: math.unit(6, "feet"),
  26114. weight: math.unit(220, "lb"),
  26115. name: "Front",
  26116. image: {
  26117. source: "./media/characters/lynn-rhea/front.svg",
  26118. extra: 310 / 273
  26119. }
  26120. },
  26121. back: {
  26122. height: math.unit(6, "feet"),
  26123. weight: math.unit(220, "lb"),
  26124. name: "Back",
  26125. image: {
  26126. source: "./media/characters/lynn-rhea/back.svg",
  26127. extra: 310 / 273
  26128. }
  26129. },
  26130. dicks: {
  26131. height: math.unit(0.9, "feet"),
  26132. name: "Dicks",
  26133. image: {
  26134. source: "./media/characters/lynn-rhea/dicks.svg"
  26135. }
  26136. },
  26137. slit: {
  26138. height: math.unit(0.4, "feet"),
  26139. name: "Slit",
  26140. image: {
  26141. source: "./media/characters/lynn-rhea/slit.svg"
  26142. }
  26143. },
  26144. },
  26145. [
  26146. {
  26147. name: "Micro",
  26148. height: math.unit(1, "inch")
  26149. },
  26150. {
  26151. name: "Macro",
  26152. height: math.unit(60, "feet"),
  26153. default: true
  26154. },
  26155. {
  26156. name: "Megamacro",
  26157. height: math.unit(2, "miles")
  26158. },
  26159. {
  26160. name: "Gigamacro",
  26161. height: math.unit(3, "earths")
  26162. },
  26163. {
  26164. name: "Galactic",
  26165. height: math.unit(0.8, "galaxies")
  26166. },
  26167. ]
  26168. ))
  26169. characterMakers.push(() => makeCharacter(
  26170. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  26171. {
  26172. front: {
  26173. height: math.unit(1600, "feet"),
  26174. weight: math.unit(85758785169, "kg"),
  26175. name: "Front",
  26176. image: {
  26177. source: "./media/characters/valathos/front.svg",
  26178. extra: 1451 / 1339
  26179. }
  26180. },
  26181. },
  26182. [
  26183. {
  26184. name: "Macro",
  26185. height: math.unit(1600, "feet"),
  26186. default: true
  26187. },
  26188. ]
  26189. ))
  26190. characterMakers.push(() => makeCharacter(
  26191. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  26192. {
  26193. front: {
  26194. height: math.unit(7 + 5 / 12, "feet"),
  26195. weight: math.unit(300, "lb"),
  26196. name: "Front",
  26197. image: {
  26198. source: "./media/characters/azula/front.svg",
  26199. extra: 3208 / 2880,
  26200. bottom: 80.2 / 3277
  26201. }
  26202. },
  26203. back: {
  26204. height: math.unit(7 + 5 / 12, "feet"),
  26205. weight: math.unit(300, "lb"),
  26206. name: "Back",
  26207. image: {
  26208. source: "./media/characters/azula/back.svg",
  26209. extra: 3169 / 2822,
  26210. bottom: 150.6 / 3321
  26211. }
  26212. },
  26213. },
  26214. [
  26215. {
  26216. name: "Normal",
  26217. height: math.unit(7 + 5 / 12, "feet"),
  26218. default: true
  26219. },
  26220. {
  26221. name: "Big",
  26222. height: math.unit(20, "feet")
  26223. },
  26224. ]
  26225. ))
  26226. characterMakers.push(() => makeCharacter(
  26227. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  26228. {
  26229. front: {
  26230. height: math.unit(5 + 1 / 12, "feet"),
  26231. weight: math.unit(110, "lb"),
  26232. name: "Front",
  26233. image: {
  26234. source: "./media/characters/rupert/front.svg",
  26235. extra: 1549 / 1495,
  26236. bottom: 54.2 / 1604.4
  26237. }
  26238. },
  26239. },
  26240. [
  26241. {
  26242. name: "Normal",
  26243. height: math.unit(5 + 1 / 12, "feet"),
  26244. default: true
  26245. },
  26246. ]
  26247. ))
  26248. characterMakers.push(() => makeCharacter(
  26249. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  26250. {
  26251. front: {
  26252. height: math.unit(8 + 4 / 12, "feet"),
  26253. weight: math.unit(350, "lb"),
  26254. name: "Front",
  26255. image: {
  26256. source: "./media/characters/sheera-castellar/front.svg",
  26257. extra: 1957 / 1894,
  26258. bottom: 26.97 / 1975.017
  26259. }
  26260. },
  26261. side: {
  26262. height: math.unit(8 + 4 / 12, "feet"),
  26263. weight: math.unit(350, "lb"),
  26264. name: "Side",
  26265. image: {
  26266. source: "./media/characters/sheera-castellar/side.svg",
  26267. extra: 1957 / 1894
  26268. }
  26269. },
  26270. back: {
  26271. height: math.unit(8 + 4 / 12, "feet"),
  26272. weight: math.unit(350, "lb"),
  26273. name: "Back",
  26274. image: {
  26275. source: "./media/characters/sheera-castellar/back.svg",
  26276. extra: 1957 / 1894
  26277. }
  26278. },
  26279. angled: {
  26280. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  26281. weight: math.unit(350, "lb"),
  26282. name: "Angled",
  26283. image: {
  26284. source: "./media/characters/sheera-castellar/angled.svg",
  26285. extra: 1807 / 1707,
  26286. bottom: 68 / 1875
  26287. }
  26288. },
  26289. genitals: {
  26290. height: math.unit(2.2, "feet"),
  26291. name: "Genitals",
  26292. image: {
  26293. source: "./media/characters/sheera-castellar/genitals.svg"
  26294. }
  26295. },
  26296. taur: {
  26297. height: math.unit(10 + 6/12, "feet"),
  26298. name: "Taur",
  26299. image: {
  26300. source: "./media/characters/sheera-castellar/taur.svg",
  26301. extra: 2017/1909,
  26302. bottom: 185/2202
  26303. }
  26304. },
  26305. },
  26306. [
  26307. {
  26308. name: "Normal",
  26309. height: math.unit(8 + 4 / 12, "feet")
  26310. },
  26311. {
  26312. name: "Macro",
  26313. height: math.unit(150, "feet"),
  26314. default: true
  26315. },
  26316. {
  26317. name: "Macro+",
  26318. height: math.unit(800, "feet")
  26319. },
  26320. ]
  26321. ))
  26322. characterMakers.push(() => makeCharacter(
  26323. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  26324. {
  26325. front: {
  26326. height: math.unit(6, "feet"),
  26327. weight: math.unit(150, "lb"),
  26328. name: "Front",
  26329. image: {
  26330. source: "./media/characters/jaipur/front.svg",
  26331. extra: 3860 / 3731,
  26332. bottom: 287 / 4140
  26333. }
  26334. },
  26335. back: {
  26336. height: math.unit(6, "feet"),
  26337. weight: math.unit(150, "lb"),
  26338. name: "Back",
  26339. image: {
  26340. source: "./media/characters/jaipur/back.svg",
  26341. extra: 1637/1561,
  26342. bottom: 154/1791
  26343. }
  26344. },
  26345. },
  26346. [
  26347. {
  26348. name: "Normal",
  26349. height: math.unit(1.85, "meters"),
  26350. default: true
  26351. },
  26352. {
  26353. name: "Macro",
  26354. height: math.unit(150, "meters")
  26355. },
  26356. {
  26357. name: "Macro+",
  26358. height: math.unit(0.5, "miles")
  26359. },
  26360. {
  26361. name: "Macro++",
  26362. height: math.unit(2.5, "miles")
  26363. },
  26364. {
  26365. name: "Macro+++",
  26366. height: math.unit(12, "miles")
  26367. },
  26368. {
  26369. name: "Macro++++",
  26370. height: math.unit(120, "miles")
  26371. },
  26372. {
  26373. name: "Macro+++++",
  26374. height: math.unit(1200, "miles")
  26375. },
  26376. ]
  26377. ))
  26378. characterMakers.push(() => makeCharacter(
  26379. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  26380. {
  26381. front: {
  26382. height: math.unit(6, "feet"),
  26383. weight: math.unit(150, "lb"),
  26384. name: "Front",
  26385. image: {
  26386. source: "./media/characters/sheila-wolf/front.svg",
  26387. extra: 1931 / 1808,
  26388. bottom: 29.5 / 1960
  26389. }
  26390. },
  26391. dick: {
  26392. height: math.unit(1.464, "feet"),
  26393. name: "Dick",
  26394. image: {
  26395. source: "./media/characters/sheila-wolf/dick.svg"
  26396. }
  26397. },
  26398. muzzle: {
  26399. height: math.unit(0.513, "feet"),
  26400. name: "Muzzle",
  26401. image: {
  26402. source: "./media/characters/sheila-wolf/muzzle.svg"
  26403. }
  26404. },
  26405. },
  26406. [
  26407. {
  26408. name: "Macro",
  26409. height: math.unit(70, "feet"),
  26410. default: true
  26411. },
  26412. ]
  26413. ))
  26414. characterMakers.push(() => makeCharacter(
  26415. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  26416. {
  26417. front: {
  26418. height: math.unit(32, "meters"),
  26419. weight: math.unit(300000, "kg"),
  26420. name: "Front",
  26421. image: {
  26422. source: "./media/characters/almor/front.svg",
  26423. extra: 1408 / 1322,
  26424. bottom: 94.6 / 1506.5
  26425. }
  26426. },
  26427. },
  26428. [
  26429. {
  26430. name: "Macro",
  26431. height: math.unit(32, "meters"),
  26432. default: true
  26433. },
  26434. ]
  26435. ))
  26436. characterMakers.push(() => makeCharacter(
  26437. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  26438. {
  26439. front: {
  26440. height: math.unit(7, "feet"),
  26441. weight: math.unit(200, "lb"),
  26442. name: "Front",
  26443. image: {
  26444. source: "./media/characters/silver/front.svg",
  26445. extra: 472.1 / 450.5,
  26446. bottom: 26.5 / 499.424
  26447. }
  26448. },
  26449. },
  26450. [
  26451. {
  26452. name: "Normal",
  26453. height: math.unit(7, "feet"),
  26454. default: true
  26455. },
  26456. {
  26457. name: "Macro",
  26458. height: math.unit(800, "feet")
  26459. },
  26460. {
  26461. name: "Megamacro",
  26462. height: math.unit(250, "miles")
  26463. },
  26464. ]
  26465. ))
  26466. characterMakers.push(() => makeCharacter(
  26467. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  26468. {
  26469. front: {
  26470. height: math.unit(6, "feet"),
  26471. weight: math.unit(150, "lb"),
  26472. name: "Front",
  26473. image: {
  26474. source: "./media/characters/pliskin/front.svg",
  26475. extra: 1469 / 1359,
  26476. bottom: 70 / 1540
  26477. }
  26478. },
  26479. },
  26480. [
  26481. {
  26482. name: "Micro",
  26483. height: math.unit(3, "inches")
  26484. },
  26485. {
  26486. name: "Normal",
  26487. height: math.unit(5 + 11 / 12, "feet"),
  26488. default: true
  26489. },
  26490. {
  26491. name: "Macro",
  26492. height: math.unit(120, "feet")
  26493. },
  26494. ]
  26495. ))
  26496. characterMakers.push(() => makeCharacter(
  26497. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  26498. {
  26499. front: {
  26500. height: math.unit(6, "feet"),
  26501. weight: math.unit(150, "lb"),
  26502. name: "Front",
  26503. image: {
  26504. source: "./media/characters/sammy/front.svg",
  26505. extra: 1193 / 1089,
  26506. bottom: 30.5 / 1226
  26507. }
  26508. },
  26509. },
  26510. [
  26511. {
  26512. name: "Macro",
  26513. height: math.unit(1700, "feet"),
  26514. default: true
  26515. },
  26516. {
  26517. name: "Examacro",
  26518. height: math.unit(2.5e9, "lightyears")
  26519. },
  26520. ]
  26521. ))
  26522. characterMakers.push(() => makeCharacter(
  26523. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  26524. {
  26525. front: {
  26526. height: math.unit(21, "meters"),
  26527. weight: math.unit(12, "tonnes"),
  26528. name: "Front",
  26529. image: {
  26530. source: "./media/characters/kuru/front.svg",
  26531. extra: 4301 / 3785,
  26532. bottom: 371.3 / 4691
  26533. }
  26534. },
  26535. },
  26536. [
  26537. {
  26538. name: "Macro",
  26539. height: math.unit(21, "meters"),
  26540. default: true
  26541. },
  26542. ]
  26543. ))
  26544. characterMakers.push(() => makeCharacter(
  26545. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  26546. {
  26547. front: {
  26548. height: math.unit(23, "meters"),
  26549. weight: math.unit(12.2, "tonnes"),
  26550. name: "Front",
  26551. image: {
  26552. source: "./media/characters/rakka/front.svg",
  26553. extra: 4670 / 4169,
  26554. bottom: 301 / 4968.7
  26555. }
  26556. },
  26557. },
  26558. [
  26559. {
  26560. name: "Macro",
  26561. height: math.unit(23, "meters"),
  26562. default: true
  26563. },
  26564. ]
  26565. ))
  26566. characterMakers.push(() => makeCharacter(
  26567. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  26568. {
  26569. front: {
  26570. height: math.unit(6, "feet"),
  26571. weight: math.unit(150, "lb"),
  26572. name: "Front",
  26573. image: {
  26574. source: "./media/characters/rhys-feline/front.svg",
  26575. extra: 2488 / 2308,
  26576. bottom: 35.67 / 2519.19
  26577. }
  26578. },
  26579. },
  26580. [
  26581. {
  26582. name: "Really Small",
  26583. height: math.unit(1, "nm")
  26584. },
  26585. {
  26586. name: "Micro",
  26587. height: math.unit(4, "inches")
  26588. },
  26589. {
  26590. name: "Normal",
  26591. height: math.unit(4 + 10 / 12, "feet"),
  26592. default: true
  26593. },
  26594. {
  26595. name: "Macro",
  26596. height: math.unit(100, "feet")
  26597. },
  26598. {
  26599. name: "Megamacto",
  26600. height: math.unit(50, "miles")
  26601. },
  26602. ]
  26603. ))
  26604. characterMakers.push(() => makeCharacter(
  26605. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  26606. {
  26607. side: {
  26608. height: math.unit(30, "feet"),
  26609. weight: math.unit(35000, "kg"),
  26610. name: "Side",
  26611. image: {
  26612. source: "./media/characters/alydar/side.svg",
  26613. extra: 234 / 222,
  26614. bottom: 6.5 / 241
  26615. }
  26616. },
  26617. front: {
  26618. height: math.unit(30, "feet"),
  26619. weight: math.unit(35000, "kg"),
  26620. name: "Front",
  26621. image: {
  26622. source: "./media/characters/alydar/front.svg",
  26623. extra: 223.37 / 210.2,
  26624. bottom: 22.3 / 246.76
  26625. }
  26626. },
  26627. top: {
  26628. height: math.unit(64.54, "feet"),
  26629. weight: math.unit(35000, "kg"),
  26630. name: "Top",
  26631. image: {
  26632. source: "./media/characters/alydar/top.svg"
  26633. }
  26634. },
  26635. anthro: {
  26636. height: math.unit(30, "feet"),
  26637. weight: math.unit(9000, "kg"),
  26638. name: "Anthro",
  26639. image: {
  26640. source: "./media/characters/alydar/anthro.svg",
  26641. extra: 432 / 421,
  26642. bottom: 7.18 / 440
  26643. }
  26644. },
  26645. maw: {
  26646. height: math.unit(11.693, "feet"),
  26647. name: "Maw",
  26648. image: {
  26649. source: "./media/characters/alydar/maw.svg"
  26650. }
  26651. },
  26652. head: {
  26653. height: math.unit(11.693, "feet"),
  26654. name: "Head",
  26655. image: {
  26656. source: "./media/characters/alydar/head.svg"
  26657. }
  26658. },
  26659. headAlt: {
  26660. height: math.unit(12.861, "feet"),
  26661. name: "Head (Alt)",
  26662. image: {
  26663. source: "./media/characters/alydar/head-alt.svg"
  26664. }
  26665. },
  26666. wing: {
  26667. height: math.unit(20.712, "feet"),
  26668. name: "Wing",
  26669. image: {
  26670. source: "./media/characters/alydar/wing.svg"
  26671. }
  26672. },
  26673. wingFeather: {
  26674. height: math.unit(9.662, "feet"),
  26675. name: "Wing Feather",
  26676. image: {
  26677. source: "./media/characters/alydar/wing-feather.svg"
  26678. }
  26679. },
  26680. countourFeather: {
  26681. height: math.unit(4.154, "feet"),
  26682. name: "Contour Feather",
  26683. image: {
  26684. source: "./media/characters/alydar/contour-feather.svg"
  26685. }
  26686. },
  26687. },
  26688. [
  26689. {
  26690. name: "Diplomatic",
  26691. height: math.unit(13, "feet"),
  26692. default: true
  26693. },
  26694. {
  26695. name: "Small",
  26696. height: math.unit(30, "feet")
  26697. },
  26698. {
  26699. name: "Normal",
  26700. height: math.unit(95, "feet"),
  26701. default: true
  26702. },
  26703. {
  26704. name: "Large",
  26705. height: math.unit(285, "feet")
  26706. },
  26707. {
  26708. name: "Incomprehensible",
  26709. height: math.unit(450, "megameters")
  26710. },
  26711. ]
  26712. ))
  26713. characterMakers.push(() => makeCharacter(
  26714. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26715. {
  26716. side: {
  26717. height: math.unit(11, "feet"),
  26718. weight: math.unit(1750, "kg"),
  26719. name: "Side",
  26720. image: {
  26721. source: "./media/characters/selicia/side.svg",
  26722. extra: 440 / 396,
  26723. bottom: 24.8 / 465.979
  26724. }
  26725. },
  26726. maw: {
  26727. height: math.unit(4.665, "feet"),
  26728. name: "Maw",
  26729. image: {
  26730. source: "./media/characters/selicia/maw.svg"
  26731. }
  26732. },
  26733. },
  26734. [
  26735. {
  26736. name: "Normal",
  26737. height: math.unit(11, "feet"),
  26738. default: true
  26739. },
  26740. ]
  26741. ))
  26742. characterMakers.push(() => makeCharacter(
  26743. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26744. {
  26745. side: {
  26746. height: math.unit(2 + 6 / 12, "feet"),
  26747. weight: math.unit(30, "lb"),
  26748. name: "Side",
  26749. image: {
  26750. source: "./media/characters/layla/side.svg",
  26751. extra: 244 / 188,
  26752. bottom: 18.2 / 262.1
  26753. }
  26754. },
  26755. back: {
  26756. height: math.unit(2 + 6 / 12, "feet"),
  26757. weight: math.unit(30, "lb"),
  26758. name: "Back",
  26759. image: {
  26760. source: "./media/characters/layla/back.svg",
  26761. extra: 308 / 241.5,
  26762. bottom: 8.9 / 316.8
  26763. }
  26764. },
  26765. cumming: {
  26766. height: math.unit(2 + 6 / 12, "feet"),
  26767. weight: math.unit(30, "lb"),
  26768. name: "Cumming",
  26769. image: {
  26770. source: "./media/characters/layla/cumming.svg",
  26771. extra: 342 / 279,
  26772. bottom: 595 / 938
  26773. }
  26774. },
  26775. dickFlaccid: {
  26776. height: math.unit(2.595, "feet"),
  26777. name: "Flaccid Genitals",
  26778. image: {
  26779. source: "./media/characters/layla/dick-flaccid.svg"
  26780. }
  26781. },
  26782. dickErect: {
  26783. height: math.unit(2.359, "feet"),
  26784. name: "Erect Genitals",
  26785. image: {
  26786. source: "./media/characters/layla/dick-erect.svg"
  26787. }
  26788. },
  26789. dragon: {
  26790. height: math.unit(40, "feet"),
  26791. name: "Dragon",
  26792. image: {
  26793. source: "./media/characters/layla/dragon.svg",
  26794. extra: 610/535,
  26795. bottom: 367/977
  26796. }
  26797. },
  26798. taur: {
  26799. height: math.unit(30, "feet"),
  26800. name: "Taur",
  26801. image: {
  26802. source: "./media/characters/layla/taur.svg",
  26803. extra: 1268/1199,
  26804. bottom: 112/1380
  26805. }
  26806. },
  26807. },
  26808. [
  26809. {
  26810. name: "Micro",
  26811. height: math.unit(1, "inch")
  26812. },
  26813. {
  26814. name: "Small",
  26815. height: math.unit(1, "foot")
  26816. },
  26817. {
  26818. name: "Normal",
  26819. height: math.unit(2 + 6 / 12, "feet"),
  26820. default: true
  26821. },
  26822. {
  26823. name: "Macro",
  26824. height: math.unit(200, "feet")
  26825. },
  26826. {
  26827. name: "Megamacro",
  26828. height: math.unit(1000, "miles")
  26829. },
  26830. {
  26831. name: "Planetary",
  26832. height: math.unit(8000, "miles")
  26833. },
  26834. {
  26835. name: "True Layla",
  26836. height: math.unit(200000 * 7, "multiverses")
  26837. },
  26838. ]
  26839. ))
  26840. characterMakers.push(() => makeCharacter(
  26841. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26842. {
  26843. back: {
  26844. height: math.unit(10.5, "feet"),
  26845. weight: math.unit(800, "lb"),
  26846. name: "Back",
  26847. image: {
  26848. source: "./media/characters/knox/back.svg",
  26849. extra: 1486 / 1089,
  26850. bottom: 107 / 1601.4
  26851. }
  26852. },
  26853. side: {
  26854. height: math.unit(10.5, "feet"),
  26855. weight: math.unit(800, "lb"),
  26856. name: "Side",
  26857. image: {
  26858. source: "./media/characters/knox/side.svg",
  26859. extra: 244 / 218,
  26860. bottom: 14 / 260
  26861. }
  26862. },
  26863. },
  26864. [
  26865. {
  26866. name: "Compact",
  26867. height: math.unit(10.5, "feet"),
  26868. default: true
  26869. },
  26870. {
  26871. name: "Dynamax",
  26872. height: math.unit(210, "feet")
  26873. },
  26874. {
  26875. name: "Full Macro",
  26876. height: math.unit(850, "feet")
  26877. },
  26878. ]
  26879. ))
  26880. characterMakers.push(() => makeCharacter(
  26881. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26882. {
  26883. front: {
  26884. height: math.unit(28, "feet"),
  26885. weight: math.unit(10500, "lb"),
  26886. name: "Front",
  26887. image: {
  26888. source: "./media/characters/kayda/front.svg",
  26889. extra: 1536 / 1428,
  26890. bottom: 68.7 / 1603
  26891. }
  26892. },
  26893. back: {
  26894. height: math.unit(28, "feet"),
  26895. weight: math.unit(10500, "lb"),
  26896. name: "Back",
  26897. image: {
  26898. source: "./media/characters/kayda/back.svg",
  26899. extra: 1557 / 1464,
  26900. bottom: 39.5 / 1597.49
  26901. }
  26902. },
  26903. dick: {
  26904. height: math.unit(3.858, "feet"),
  26905. name: "Dick",
  26906. image: {
  26907. source: "./media/characters/kayda/dick.svg"
  26908. }
  26909. },
  26910. },
  26911. [
  26912. {
  26913. name: "Macro",
  26914. height: math.unit(28, "feet"),
  26915. default: true
  26916. },
  26917. ]
  26918. ))
  26919. characterMakers.push(() => makeCharacter(
  26920. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26921. {
  26922. front: {
  26923. height: math.unit(10 + 11 / 12, "feet"),
  26924. weight: math.unit(1400, "lb"),
  26925. name: "Front",
  26926. image: {
  26927. source: "./media/characters/brian/front.svg",
  26928. extra: 737 / 692,
  26929. bottom: 55.4 / 785
  26930. }
  26931. },
  26932. },
  26933. [
  26934. {
  26935. name: "Normal",
  26936. height: math.unit(10 + 11 / 12, "feet"),
  26937. default: true
  26938. },
  26939. ]
  26940. ))
  26941. characterMakers.push(() => makeCharacter(
  26942. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26943. {
  26944. front: {
  26945. height: math.unit(5 + 8 / 12, "feet"),
  26946. weight: math.unit(140, "lb"),
  26947. name: "Front",
  26948. image: {
  26949. source: "./media/characters/khemri/front.svg",
  26950. extra: 4780 / 4059,
  26951. bottom: 80.1 / 4859.25
  26952. }
  26953. },
  26954. },
  26955. [
  26956. {
  26957. name: "Micro",
  26958. height: math.unit(6, "inches")
  26959. },
  26960. {
  26961. name: "Normal",
  26962. height: math.unit(5 + 8 / 12, "feet"),
  26963. default: true
  26964. },
  26965. ]
  26966. ))
  26967. characterMakers.push(() => makeCharacter(
  26968. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26969. {
  26970. front: {
  26971. height: math.unit(13, "feet"),
  26972. weight: math.unit(1700, "lb"),
  26973. name: "Front",
  26974. image: {
  26975. source: "./media/characters/felix-braveheart/front.svg",
  26976. extra: 1222 / 1157,
  26977. bottom: 53.2 / 1280
  26978. }
  26979. },
  26980. back: {
  26981. height: math.unit(13, "feet"),
  26982. weight: math.unit(1700, "lb"),
  26983. name: "Back",
  26984. image: {
  26985. source: "./media/characters/felix-braveheart/back.svg",
  26986. extra: 1277 / 1203,
  26987. bottom: 50.2 / 1327
  26988. }
  26989. },
  26990. feral: {
  26991. height: math.unit(6, "feet"),
  26992. weight: math.unit(400, "lb"),
  26993. name: "Feral",
  26994. image: {
  26995. source: "./media/characters/felix-braveheart/feral.svg",
  26996. extra: 682 / 625,
  26997. bottom: 6.9 / 688
  26998. }
  26999. },
  27000. },
  27001. [
  27002. {
  27003. name: "Normal",
  27004. height: math.unit(13, "feet"),
  27005. default: true
  27006. },
  27007. ]
  27008. ))
  27009. characterMakers.push(() => makeCharacter(
  27010. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  27011. {
  27012. side: {
  27013. height: math.unit(5 + 11 / 12, "feet"),
  27014. weight: math.unit(1400, "lb"),
  27015. name: "Side",
  27016. image: {
  27017. source: "./media/characters/shadow-blade/side.svg",
  27018. extra: 1726 / 1267,
  27019. bottom: 58.4 / 1785
  27020. }
  27021. },
  27022. },
  27023. [
  27024. {
  27025. name: "Normal",
  27026. height: math.unit(5 + 11 / 12, "feet"),
  27027. default: true
  27028. },
  27029. ]
  27030. ))
  27031. characterMakers.push(() => makeCharacter(
  27032. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  27033. {
  27034. front: {
  27035. height: math.unit(1 + 6 / 12, "feet"),
  27036. weight: math.unit(25, "lb"),
  27037. name: "Front",
  27038. image: {
  27039. source: "./media/characters/karla-halldor/front.svg",
  27040. extra: 1459 / 1383,
  27041. bottom: 12 / 1472
  27042. }
  27043. },
  27044. },
  27045. [
  27046. {
  27047. name: "Normal",
  27048. height: math.unit(1 + 6 / 12, "feet"),
  27049. default: true
  27050. },
  27051. ]
  27052. ))
  27053. characterMakers.push(() => makeCharacter(
  27054. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  27055. {
  27056. front: {
  27057. height: math.unit(6 + 2 / 12, "feet"),
  27058. weight: math.unit(160, "lb"),
  27059. name: "Front",
  27060. image: {
  27061. source: "./media/characters/ariam/front.svg",
  27062. extra: 1073/976,
  27063. bottom: 52/1125
  27064. }
  27065. },
  27066. back: {
  27067. height: math.unit(6 + 2/12, "feet"),
  27068. weight: math.unit(160, "lb"),
  27069. name: "Back",
  27070. image: {
  27071. source: "./media/characters/ariam/back.svg",
  27072. extra: 1103/1023,
  27073. bottom: 9/1112
  27074. }
  27075. },
  27076. dressed: {
  27077. height: math.unit(6 + 2/12, "feet"),
  27078. weight: math.unit(160, "lb"),
  27079. name: "Dressed",
  27080. image: {
  27081. source: "./media/characters/ariam/dressed.svg",
  27082. extra: 1099/1009,
  27083. bottom: 25/1124
  27084. }
  27085. },
  27086. squatting: {
  27087. height: math.unit(4.1, "feet"),
  27088. weight: math.unit(160, "lb"),
  27089. name: "Squatting",
  27090. image: {
  27091. source: "./media/characters/ariam/squatting.svg",
  27092. extra: 2617 / 2112,
  27093. bottom: 61.2 / 2681,
  27094. }
  27095. },
  27096. },
  27097. [
  27098. {
  27099. name: "Normal",
  27100. height: math.unit(6 + 2 / 12, "feet"),
  27101. default: true
  27102. },
  27103. {
  27104. name: "Normal+",
  27105. height: math.unit(4, "meters")
  27106. },
  27107. {
  27108. name: "Macro",
  27109. height: math.unit(50, "meters")
  27110. },
  27111. {
  27112. name: "Macro+",
  27113. height: math.unit(100, "meters")
  27114. },
  27115. {
  27116. name: "Megamacro",
  27117. height: math.unit(20, "km")
  27118. },
  27119. {
  27120. name: "Caretaker",
  27121. height: math.unit(444, "megameters")
  27122. },
  27123. ]
  27124. ))
  27125. characterMakers.push(() => makeCharacter(
  27126. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  27127. {
  27128. front: {
  27129. height: math.unit(1.67, "meters"),
  27130. weight: math.unit(140, "lb"),
  27131. name: "Front",
  27132. image: {
  27133. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  27134. extra: 438 / 410,
  27135. bottom: 0.75 / 439
  27136. }
  27137. },
  27138. },
  27139. [
  27140. {
  27141. name: "Shrunken",
  27142. height: math.unit(7.6, "cm")
  27143. },
  27144. {
  27145. name: "Human Scale",
  27146. height: math.unit(1.67, "meters")
  27147. },
  27148. {
  27149. name: "Wolxi Scale",
  27150. height: math.unit(36.7, "meters"),
  27151. default: true
  27152. },
  27153. ]
  27154. ))
  27155. characterMakers.push(() => makeCharacter(
  27156. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  27157. {
  27158. front: {
  27159. height: math.unit(1.73, "meters"),
  27160. weight: math.unit(240, "lb"),
  27161. name: "Front",
  27162. image: {
  27163. source: "./media/characters/izue-two-mothers/front.svg",
  27164. extra: 469 / 437,
  27165. bottom: 1.24 / 470.6
  27166. }
  27167. },
  27168. },
  27169. [
  27170. {
  27171. name: "Shrunken",
  27172. height: math.unit(7.86, "cm")
  27173. },
  27174. {
  27175. name: "Human Scale",
  27176. height: math.unit(1.73, "meters")
  27177. },
  27178. {
  27179. name: "Wolxi Scale",
  27180. height: math.unit(38, "meters"),
  27181. default: true
  27182. },
  27183. ]
  27184. ))
  27185. characterMakers.push(() => makeCharacter(
  27186. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  27187. {
  27188. front: {
  27189. height: math.unit(1.55, "meters"),
  27190. weight: math.unit(120, "lb"),
  27191. name: "Front",
  27192. image: {
  27193. source: "./media/characters/teeku-love-shack/front.svg",
  27194. extra: 387 / 362,
  27195. bottom: 1.51 / 388
  27196. }
  27197. },
  27198. },
  27199. [
  27200. {
  27201. name: "Shrunken",
  27202. height: math.unit(7, "cm")
  27203. },
  27204. {
  27205. name: "Human Scale",
  27206. height: math.unit(1.55, "meters")
  27207. },
  27208. {
  27209. name: "Wolxi Scale",
  27210. height: math.unit(34.1, "meters"),
  27211. default: true
  27212. },
  27213. ]
  27214. ))
  27215. characterMakers.push(() => makeCharacter(
  27216. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  27217. {
  27218. front: {
  27219. height: math.unit(1.83, "meters"),
  27220. weight: math.unit(135, "lb"),
  27221. name: "Front",
  27222. image: {
  27223. source: "./media/characters/dejma-the-red/front.svg",
  27224. extra: 480 / 458,
  27225. bottom: 1.8 / 482
  27226. }
  27227. },
  27228. },
  27229. [
  27230. {
  27231. name: "Shrunken",
  27232. height: math.unit(8.3, "cm")
  27233. },
  27234. {
  27235. name: "Human Scale",
  27236. height: math.unit(1.83, "meters")
  27237. },
  27238. {
  27239. name: "Wolxi Scale",
  27240. height: math.unit(40, "meters"),
  27241. default: true
  27242. },
  27243. ]
  27244. ))
  27245. characterMakers.push(() => makeCharacter(
  27246. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  27247. {
  27248. front: {
  27249. height: math.unit(1.78, "meters"),
  27250. weight: math.unit(65, "kg"),
  27251. name: "Front",
  27252. image: {
  27253. source: "./media/characters/aki/front.svg",
  27254. extra: 452 / 415
  27255. }
  27256. },
  27257. frontNsfw: {
  27258. height: math.unit(1.78, "meters"),
  27259. weight: math.unit(65, "kg"),
  27260. name: "Front (NSFW)",
  27261. image: {
  27262. source: "./media/characters/aki/front-nsfw.svg",
  27263. extra: 452 / 415
  27264. }
  27265. },
  27266. back: {
  27267. height: math.unit(1.78, "meters"),
  27268. weight: math.unit(65, "kg"),
  27269. name: "Back",
  27270. image: {
  27271. source: "./media/characters/aki/back.svg",
  27272. extra: 452 / 415
  27273. }
  27274. },
  27275. rump: {
  27276. height: math.unit(2.05, "feet"),
  27277. name: "Rump",
  27278. image: {
  27279. source: "./media/characters/aki/rump.svg"
  27280. }
  27281. },
  27282. dick: {
  27283. height: math.unit(0.95, "feet"),
  27284. name: "Dick",
  27285. image: {
  27286. source: "./media/characters/aki/dick.svg"
  27287. }
  27288. },
  27289. },
  27290. [
  27291. {
  27292. name: "Micro",
  27293. height: math.unit(15, "cm")
  27294. },
  27295. {
  27296. name: "Normal",
  27297. height: math.unit(178, "cm"),
  27298. default: true
  27299. },
  27300. {
  27301. name: "Macro",
  27302. height: math.unit(214, "m")
  27303. },
  27304. {
  27305. name: "Macro+",
  27306. height: math.unit(534, "m")
  27307. },
  27308. ]
  27309. ))
  27310. characterMakers.push(() => makeCharacter(
  27311. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  27312. {
  27313. front: {
  27314. height: math.unit(5 + 5 / 12, "feet"),
  27315. weight: math.unit(120, "lb"),
  27316. name: "Front",
  27317. image: {
  27318. source: "./media/characters/ari/front.svg",
  27319. extra: 1550/1471,
  27320. bottom: 39/1589
  27321. }
  27322. },
  27323. },
  27324. [
  27325. {
  27326. name: "Normal",
  27327. height: math.unit(5 + 5 / 12, "feet")
  27328. },
  27329. {
  27330. name: "Macro",
  27331. height: math.unit(100, "feet"),
  27332. default: true
  27333. },
  27334. {
  27335. name: "Megamacro",
  27336. height: math.unit(100, "miles")
  27337. },
  27338. {
  27339. name: "Gigamacro",
  27340. height: math.unit(80000, "miles")
  27341. },
  27342. ]
  27343. ))
  27344. characterMakers.push(() => makeCharacter(
  27345. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  27346. {
  27347. side: {
  27348. height: math.unit(9, "feet"),
  27349. weight: math.unit(400, "kg"),
  27350. name: "Side",
  27351. image: {
  27352. source: "./media/characters/bolt/side.svg",
  27353. extra: 1126 / 896,
  27354. bottom: 60 / 1187.3,
  27355. }
  27356. },
  27357. },
  27358. [
  27359. {
  27360. name: "Micro",
  27361. height: math.unit(5, "inches")
  27362. },
  27363. {
  27364. name: "Normal",
  27365. height: math.unit(9, "feet"),
  27366. default: true
  27367. },
  27368. {
  27369. name: "Macro",
  27370. height: math.unit(700, "feet")
  27371. },
  27372. {
  27373. name: "Max Size",
  27374. height: math.unit(1.52e22, "yottameters")
  27375. },
  27376. ]
  27377. ))
  27378. characterMakers.push(() => makeCharacter(
  27379. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  27380. {
  27381. front: {
  27382. height: math.unit(4.3, "meters"),
  27383. weight: math.unit(3, "tons"),
  27384. name: "Front",
  27385. image: {
  27386. source: "./media/characters/draekon-sylviar/front.svg",
  27387. extra: 2072/1512,
  27388. bottom: 74/2146
  27389. }
  27390. },
  27391. back: {
  27392. height: math.unit(4.3, "meters"),
  27393. weight: math.unit(3, "tons"),
  27394. name: "Back",
  27395. image: {
  27396. source: "./media/characters/draekon-sylviar/back.svg",
  27397. extra: 1639/1483,
  27398. bottom: 41/1680
  27399. }
  27400. },
  27401. feral: {
  27402. height: math.unit(1.15, "meters"),
  27403. weight: math.unit(3, "tons"),
  27404. name: "Feral",
  27405. image: {
  27406. source: "./media/characters/draekon-sylviar/feral.svg",
  27407. extra: 1033/395,
  27408. bottom: 130/1163
  27409. }
  27410. },
  27411. maw: {
  27412. height: math.unit(1.3, "meters"),
  27413. name: "Maw",
  27414. image: {
  27415. source: "./media/characters/draekon-sylviar/maw.svg"
  27416. }
  27417. },
  27418. mawSeparated: {
  27419. height: math.unit(1.53, "meters"),
  27420. name: "Separated Maw",
  27421. image: {
  27422. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  27423. }
  27424. },
  27425. tail: {
  27426. height: math.unit(1.15, "meters"),
  27427. name: "Tail",
  27428. image: {
  27429. source: "./media/characters/draekon-sylviar/tail.svg"
  27430. }
  27431. },
  27432. tailDick: {
  27433. height: math.unit(1.15, "meters"),
  27434. name: "Tail (Dick)",
  27435. image: {
  27436. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  27437. }
  27438. },
  27439. tailDickSeparated: {
  27440. height: math.unit(1.19, "meters"),
  27441. name: "Tail (Separated Dick)",
  27442. image: {
  27443. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  27444. }
  27445. },
  27446. slit: {
  27447. height: math.unit(1, "meters"),
  27448. name: "Slit",
  27449. image: {
  27450. source: "./media/characters/draekon-sylviar/slit.svg"
  27451. }
  27452. },
  27453. dick: {
  27454. height: math.unit(1.15, "meters"),
  27455. name: "Dick",
  27456. image: {
  27457. source: "./media/characters/draekon-sylviar/dick.svg"
  27458. }
  27459. },
  27460. dickSeparated: {
  27461. height: math.unit(1.1, "meters"),
  27462. name: "Separated Dick",
  27463. image: {
  27464. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  27465. }
  27466. },
  27467. sheath: {
  27468. height: math.unit(1.15, "meters"),
  27469. name: "Sheath",
  27470. image: {
  27471. source: "./media/characters/draekon-sylviar/sheath.svg"
  27472. }
  27473. },
  27474. },
  27475. [
  27476. {
  27477. name: "Small",
  27478. height: math.unit(4.53 / 2, "meters"),
  27479. default: true
  27480. },
  27481. {
  27482. name: "Normal",
  27483. height: math.unit(4.53, "meters"),
  27484. default: true
  27485. },
  27486. {
  27487. name: "Large",
  27488. height: math.unit(4.53 * 2, "meters"),
  27489. },
  27490. ]
  27491. ))
  27492. characterMakers.push(() => makeCharacter(
  27493. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  27494. {
  27495. front: {
  27496. height: math.unit(6 + 2 / 12, "feet"),
  27497. weight: math.unit(180, "lb"),
  27498. name: "Front",
  27499. image: {
  27500. source: "./media/characters/brawler/front.svg",
  27501. extra: 3301 / 3027,
  27502. bottom: 138 / 3439
  27503. }
  27504. },
  27505. },
  27506. [
  27507. {
  27508. name: "Normal",
  27509. height: math.unit(6 + 2 / 12, "feet"),
  27510. default: true
  27511. },
  27512. ]
  27513. ))
  27514. characterMakers.push(() => makeCharacter(
  27515. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  27516. {
  27517. front: {
  27518. height: math.unit(11, "feet"),
  27519. weight: math.unit(1000, "lb"),
  27520. name: "Front",
  27521. image: {
  27522. source: "./media/characters/alex/front.svg",
  27523. bottom: 44.5 / 620
  27524. }
  27525. },
  27526. },
  27527. [
  27528. {
  27529. name: "Micro",
  27530. height: math.unit(5, "inches")
  27531. },
  27532. {
  27533. name: "Normal",
  27534. height: math.unit(11, "feet"),
  27535. default: true
  27536. },
  27537. {
  27538. name: "Macro",
  27539. height: math.unit(9.5e9, "feet")
  27540. },
  27541. {
  27542. name: "Max Size",
  27543. height: math.unit(1.4e283, "yottameters")
  27544. },
  27545. ]
  27546. ))
  27547. characterMakers.push(() => makeCharacter(
  27548. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  27549. {
  27550. female: {
  27551. height: math.unit(29.9, "m"),
  27552. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  27553. name: "Female",
  27554. image: {
  27555. source: "./media/characters/zenari/female.svg",
  27556. extra: 3281.6 / 3217,
  27557. bottom: 72.2 / 3353
  27558. }
  27559. },
  27560. male: {
  27561. height: math.unit(27.7, "m"),
  27562. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  27563. name: "Male",
  27564. image: {
  27565. source: "./media/characters/zenari/male.svg",
  27566. extra: 3008 / 2991,
  27567. bottom: 54.6 / 3069
  27568. }
  27569. },
  27570. },
  27571. [
  27572. {
  27573. name: "Macro",
  27574. height: math.unit(29.7, "meters"),
  27575. default: true
  27576. },
  27577. ]
  27578. ))
  27579. characterMakers.push(() => makeCharacter(
  27580. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  27581. {
  27582. female: {
  27583. height: math.unit(23.8, "m"),
  27584. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27585. name: "Female",
  27586. image: {
  27587. source: "./media/characters/mactarian/female.svg",
  27588. extra: 2662 / 2569,
  27589. bottom: 73 / 2736
  27590. }
  27591. },
  27592. male: {
  27593. height: math.unit(23.8, "m"),
  27594. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27595. name: "Male",
  27596. image: {
  27597. source: "./media/characters/mactarian/male.svg",
  27598. extra: 2673 / 2600,
  27599. bottom: 76 / 2750
  27600. }
  27601. },
  27602. },
  27603. [
  27604. {
  27605. name: "Macro",
  27606. height: math.unit(23.8, "meters"),
  27607. default: true
  27608. },
  27609. ]
  27610. ))
  27611. characterMakers.push(() => makeCharacter(
  27612. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  27613. {
  27614. female: {
  27615. height: math.unit(19.3, "m"),
  27616. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  27617. name: "Female",
  27618. image: {
  27619. source: "./media/characters/umok/female.svg",
  27620. extra: 2186 / 2078,
  27621. bottom: 87 / 2277
  27622. }
  27623. },
  27624. male: {
  27625. height: math.unit(19.5, "m"),
  27626. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  27627. name: "Male",
  27628. image: {
  27629. source: "./media/characters/umok/male.svg",
  27630. extra: 2233 / 2140,
  27631. bottom: 24.4 / 2258
  27632. }
  27633. },
  27634. },
  27635. [
  27636. {
  27637. name: "Macro",
  27638. height: math.unit(19.3, "meters"),
  27639. default: true
  27640. },
  27641. ]
  27642. ))
  27643. characterMakers.push(() => makeCharacter(
  27644. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  27645. {
  27646. female: {
  27647. height: math.unit(26.15, "m"),
  27648. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  27649. name: "Female",
  27650. image: {
  27651. source: "./media/characters/joraxian/female.svg",
  27652. extra: 2912 / 2824,
  27653. bottom: 36 / 2956
  27654. }
  27655. },
  27656. male: {
  27657. height: math.unit(25.4, "m"),
  27658. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  27659. name: "Male",
  27660. image: {
  27661. source: "./media/characters/joraxian/male.svg",
  27662. extra: 2877 / 2721,
  27663. bottom: 82 / 2967
  27664. }
  27665. },
  27666. },
  27667. [
  27668. {
  27669. name: "Macro",
  27670. height: math.unit(26.15, "meters"),
  27671. default: true
  27672. },
  27673. ]
  27674. ))
  27675. characterMakers.push(() => makeCharacter(
  27676. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  27677. {
  27678. female: {
  27679. height: math.unit(21.6, "m"),
  27680. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  27681. name: "Female",
  27682. image: {
  27683. source: "./media/characters/sthara/female.svg",
  27684. extra: 2516 / 2347,
  27685. bottom: 21.5 / 2537
  27686. }
  27687. },
  27688. male: {
  27689. height: math.unit(24, "m"),
  27690. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  27691. name: "Male",
  27692. image: {
  27693. source: "./media/characters/sthara/male.svg",
  27694. extra: 2732 / 2607,
  27695. bottom: 23 / 2732
  27696. }
  27697. },
  27698. },
  27699. [
  27700. {
  27701. name: "Macro",
  27702. height: math.unit(21.6, "meters"),
  27703. default: true
  27704. },
  27705. ]
  27706. ))
  27707. characterMakers.push(() => makeCharacter(
  27708. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27709. {
  27710. front: {
  27711. height: math.unit(6 + 4 / 12, "feet"),
  27712. weight: math.unit(175, "lb"),
  27713. name: "Front",
  27714. image: {
  27715. source: "./media/characters/luka-bryzant/front.svg",
  27716. extra: 311 / 289,
  27717. bottom: 4 / 315
  27718. }
  27719. },
  27720. back: {
  27721. height: math.unit(6 + 4 / 12, "feet"),
  27722. weight: math.unit(175, "lb"),
  27723. name: "Back",
  27724. image: {
  27725. source: "./media/characters/luka-bryzant/back.svg",
  27726. extra: 311 / 289,
  27727. bottom: 3.8 / 313.7
  27728. }
  27729. },
  27730. },
  27731. [
  27732. {
  27733. name: "Micro",
  27734. height: math.unit(10, "inches")
  27735. },
  27736. {
  27737. name: "Normal",
  27738. height: math.unit(6 + 4 / 12, "feet"),
  27739. default: true
  27740. },
  27741. {
  27742. name: "Large",
  27743. height: math.unit(12, "feet")
  27744. },
  27745. ]
  27746. ))
  27747. characterMakers.push(() => makeCharacter(
  27748. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27749. {
  27750. front: {
  27751. height: math.unit(5 + 7 / 12, "feet"),
  27752. weight: math.unit(185, "lb"),
  27753. name: "Front",
  27754. image: {
  27755. source: "./media/characters/aman-aquila/front.svg",
  27756. extra: 1013 / 976,
  27757. bottom: 45.6 / 1057
  27758. }
  27759. },
  27760. side: {
  27761. height: math.unit(5 + 7 / 12, "feet"),
  27762. weight: math.unit(185, "lb"),
  27763. name: "Side",
  27764. image: {
  27765. source: "./media/characters/aman-aquila/side.svg",
  27766. extra: 1054 / 1011,
  27767. bottom: 15 / 1070
  27768. }
  27769. },
  27770. back: {
  27771. height: math.unit(5 + 7 / 12, "feet"),
  27772. weight: math.unit(185, "lb"),
  27773. name: "Back",
  27774. image: {
  27775. source: "./media/characters/aman-aquila/back.svg",
  27776. extra: 1026 / 970,
  27777. bottom: 12 / 1039
  27778. }
  27779. },
  27780. head: {
  27781. height: math.unit(1.211, "feet"),
  27782. name: "Head",
  27783. image: {
  27784. source: "./media/characters/aman-aquila/head.svg",
  27785. }
  27786. },
  27787. },
  27788. [
  27789. {
  27790. name: "Minimicro",
  27791. height: math.unit(0.057, "inches")
  27792. },
  27793. {
  27794. name: "Micro",
  27795. height: math.unit(7, "inches")
  27796. },
  27797. {
  27798. name: "Mini",
  27799. height: math.unit(3 + 7 / 12, "feet")
  27800. },
  27801. {
  27802. name: "Normal",
  27803. height: math.unit(5 + 7 / 12, "feet"),
  27804. default: true
  27805. },
  27806. {
  27807. name: "Macro",
  27808. height: math.unit(157 + 7 / 12, "feet")
  27809. },
  27810. {
  27811. name: "Megamacro",
  27812. height: math.unit(1557 + 7 / 12, "feet")
  27813. },
  27814. {
  27815. name: "Gigamacro",
  27816. height: math.unit(15557 + 7 / 12, "feet")
  27817. },
  27818. ]
  27819. ))
  27820. characterMakers.push(() => makeCharacter(
  27821. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27822. {
  27823. front: {
  27824. height: math.unit(3 + 2 / 12, "inches"),
  27825. weight: math.unit(0.3, "ounces"),
  27826. name: "Front",
  27827. image: {
  27828. source: "./media/characters/hiphae/front.svg",
  27829. extra: 1931 / 1683,
  27830. bottom: 24 / 1955
  27831. }
  27832. },
  27833. },
  27834. [
  27835. {
  27836. name: "Normal",
  27837. height: math.unit(3 + 1 / 2, "inches"),
  27838. default: true
  27839. },
  27840. ]
  27841. ))
  27842. characterMakers.push(() => makeCharacter(
  27843. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27844. {
  27845. front: {
  27846. height: math.unit(5 + 10 / 12, "feet"),
  27847. weight: math.unit(165, "lb"),
  27848. name: "Front",
  27849. image: {
  27850. source: "./media/characters/nicky/front.svg",
  27851. extra: 3144 / 2886,
  27852. bottom: 45.6 / 3192
  27853. }
  27854. },
  27855. back: {
  27856. height: math.unit(5 + 10 / 12, "feet"),
  27857. weight: math.unit(165, "lb"),
  27858. name: "Back",
  27859. image: {
  27860. source: "./media/characters/nicky/back.svg",
  27861. extra: 3055 / 2804,
  27862. bottom: 28.4 / 3087
  27863. }
  27864. },
  27865. frontclothed: {
  27866. height: math.unit(5 + 10 / 12, "feet"),
  27867. weight: math.unit(165, "lb"),
  27868. name: "Front (Clothed)",
  27869. image: {
  27870. source: "./media/characters/nicky/front-clothed.svg",
  27871. extra: 3184.9 / 2926.9,
  27872. bottom: 86.5 / 3239.9
  27873. }
  27874. },
  27875. foot: {
  27876. height: math.unit(1.16, "feet"),
  27877. name: "Foot",
  27878. image: {
  27879. source: "./media/characters/nicky/foot.svg"
  27880. }
  27881. },
  27882. feet: {
  27883. height: math.unit(1.34, "feet"),
  27884. name: "Feet",
  27885. image: {
  27886. source: "./media/characters/nicky/feet.svg"
  27887. }
  27888. },
  27889. maw: {
  27890. height: math.unit(0.9, "feet"),
  27891. name: "Maw",
  27892. image: {
  27893. source: "./media/characters/nicky/maw.svg"
  27894. }
  27895. },
  27896. },
  27897. [
  27898. {
  27899. name: "Normal",
  27900. height: math.unit(5 + 10 / 12, "feet"),
  27901. default: true
  27902. },
  27903. {
  27904. name: "Macro",
  27905. height: math.unit(60, "feet")
  27906. },
  27907. {
  27908. name: "Megamacro",
  27909. height: math.unit(1, "mile")
  27910. },
  27911. ]
  27912. ))
  27913. characterMakers.push(() => makeCharacter(
  27914. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27915. {
  27916. side: {
  27917. height: math.unit(10, "feet"),
  27918. weight: math.unit(600, "lb"),
  27919. name: "Side",
  27920. image: {
  27921. source: "./media/characters/blair/side.svg",
  27922. bottom: 16.6 / 475,
  27923. extra: 458 / 431
  27924. }
  27925. },
  27926. },
  27927. [
  27928. {
  27929. name: "Micro",
  27930. height: math.unit(8, "inches")
  27931. },
  27932. {
  27933. name: "Normal",
  27934. height: math.unit(10, "feet"),
  27935. default: true
  27936. },
  27937. {
  27938. name: "Macro",
  27939. height: math.unit(180, "feet")
  27940. },
  27941. ]
  27942. ))
  27943. characterMakers.push(() => makeCharacter(
  27944. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27945. {
  27946. front: {
  27947. height: math.unit(5 + 4 / 12, "feet"),
  27948. weight: math.unit(125, "lb"),
  27949. name: "Front",
  27950. image: {
  27951. source: "./media/characters/fisher/front.svg",
  27952. extra: 444 / 390,
  27953. bottom: 2 / 444.8
  27954. }
  27955. },
  27956. },
  27957. [
  27958. {
  27959. name: "Micro",
  27960. height: math.unit(4, "inches")
  27961. },
  27962. {
  27963. name: "Normal",
  27964. height: math.unit(5 + 4 / 12, "feet"),
  27965. default: true
  27966. },
  27967. {
  27968. name: "Macro",
  27969. height: math.unit(100, "feet")
  27970. },
  27971. ]
  27972. ))
  27973. characterMakers.push(() => makeCharacter(
  27974. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27975. {
  27976. front: {
  27977. height: math.unit(6.71, "feet"),
  27978. weight: math.unit(200, "lb"),
  27979. preyCapacity: math.unit(1000000, "people"),
  27980. name: "Front",
  27981. image: {
  27982. source: "./media/characters/gliss/front.svg",
  27983. extra: 2347 / 2231,
  27984. bottom: 113 / 2462
  27985. }
  27986. },
  27987. hammerspaceSize: {
  27988. height: math.unit(6.71 * 717, "feet"),
  27989. weight: math.unit(200, "lb"),
  27990. preyCapacity: math.unit(1000000, "people"),
  27991. name: "Hammerspace Size",
  27992. image: {
  27993. source: "./media/characters/gliss/front.svg",
  27994. extra: 2347 / 2231,
  27995. bottom: 113 / 2462
  27996. }
  27997. },
  27998. },
  27999. [
  28000. {
  28001. name: "Normal",
  28002. height: math.unit(6.71, "feet"),
  28003. default: true
  28004. },
  28005. ]
  28006. ))
  28007. characterMakers.push(() => makeCharacter(
  28008. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  28009. {
  28010. side: {
  28011. height: math.unit(1.44, "m"),
  28012. weight: math.unit(80, "kg"),
  28013. name: "Side",
  28014. image: {
  28015. source: "./media/characters/dune-anderson/side.svg",
  28016. bottom: 49 / 1426
  28017. }
  28018. },
  28019. },
  28020. [
  28021. {
  28022. name: "Wolf-sized",
  28023. height: math.unit(1.44, "meters")
  28024. },
  28025. {
  28026. name: "Normal",
  28027. height: math.unit(5.05, "meters"),
  28028. default: true
  28029. },
  28030. {
  28031. name: "Big",
  28032. height: math.unit(14.4, "meters")
  28033. },
  28034. {
  28035. name: "Huge",
  28036. height: math.unit(144, "meters")
  28037. },
  28038. ]
  28039. ))
  28040. characterMakers.push(() => makeCharacter(
  28041. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  28042. {
  28043. front: {
  28044. height: math.unit(6, "feet"),
  28045. weight: math.unit(220, "lb"),
  28046. name: "Front",
  28047. image: {
  28048. source: "./media/characters/hind/front.svg",
  28049. extra: 1912/1787,
  28050. bottom: 52/1964
  28051. }
  28052. },
  28053. back: {
  28054. height: math.unit(6, "feet"),
  28055. weight: math.unit(220, "lb"),
  28056. name: "Back",
  28057. image: {
  28058. source: "./media/characters/hind/back.svg",
  28059. extra: 1901/1794,
  28060. bottom: 26/1927
  28061. }
  28062. },
  28063. },
  28064. [
  28065. {
  28066. name: "Normal",
  28067. height: math.unit(6, "feet"),
  28068. default: true
  28069. },
  28070. ]
  28071. ))
  28072. characterMakers.push(() => makeCharacter(
  28073. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  28074. {
  28075. front: {
  28076. height: math.unit(2.1, "meters"),
  28077. weight: math.unit(150, "lb"),
  28078. name: "Front",
  28079. image: {
  28080. source: "./media/characters/tharquench-sizestealer/front.svg",
  28081. extra: 1605/1470,
  28082. bottom: 36/1641
  28083. }
  28084. },
  28085. frontAlt: {
  28086. height: math.unit(2.1, "meters"),
  28087. weight: math.unit(150, "lb"),
  28088. name: "Front (Alt)",
  28089. image: {
  28090. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  28091. extra: 2318 / 2063,
  28092. bottom: 93.4 / 2410
  28093. }
  28094. },
  28095. },
  28096. [
  28097. {
  28098. name: "Nano",
  28099. height: math.unit(1, "mm")
  28100. },
  28101. {
  28102. name: "Micro",
  28103. height: math.unit(1, "cm")
  28104. },
  28105. {
  28106. name: "Normal",
  28107. height: math.unit(2.1, "meters"),
  28108. default: true
  28109. },
  28110. ]
  28111. ))
  28112. characterMakers.push(() => makeCharacter(
  28113. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  28114. {
  28115. front: {
  28116. height: math.unit(7 + 5 / 12, "feet"),
  28117. weight: math.unit(357, "lb"),
  28118. name: "Front",
  28119. image: {
  28120. source: "./media/characters/solex-draconov/front.svg",
  28121. extra: 1993 / 1865,
  28122. bottom: 117 / 2111
  28123. }
  28124. },
  28125. },
  28126. [
  28127. {
  28128. name: "Natural Height",
  28129. height: math.unit(7 + 5 / 12, "feet"),
  28130. default: true
  28131. },
  28132. {
  28133. name: "Macro",
  28134. height: math.unit(350, "feet")
  28135. },
  28136. {
  28137. name: "Macro+",
  28138. height: math.unit(1000, "feet")
  28139. },
  28140. {
  28141. name: "Megamacro",
  28142. height: math.unit(20, "km")
  28143. },
  28144. {
  28145. name: "Megamacro+",
  28146. height: math.unit(1000, "km")
  28147. },
  28148. {
  28149. name: "Gigamacro",
  28150. height: math.unit(2.5, "Gm")
  28151. },
  28152. {
  28153. name: "Teramacro",
  28154. height: math.unit(15, "Tm")
  28155. },
  28156. {
  28157. name: "Galactic",
  28158. height: math.unit(30, "Zm")
  28159. },
  28160. {
  28161. name: "Universal",
  28162. height: math.unit(21000, "Ym")
  28163. },
  28164. {
  28165. name: "Omniversal",
  28166. height: math.unit(9.861e50, "Ym")
  28167. },
  28168. {
  28169. name: "Existential",
  28170. height: math.unit(1e300, "meters")
  28171. },
  28172. ]
  28173. ))
  28174. characterMakers.push(() => makeCharacter(
  28175. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  28176. {
  28177. side: {
  28178. height: math.unit(25, "feet"),
  28179. weight: math.unit(90000, "lb"),
  28180. name: "Side",
  28181. image: {
  28182. source: "./media/characters/mandarax/side.svg",
  28183. extra: 614 / 332,
  28184. bottom: 55 / 630
  28185. }
  28186. },
  28187. lounging: {
  28188. height: math.unit(15.4, "feet"),
  28189. weight: math.unit(90000, "lb"),
  28190. name: "Lounging",
  28191. image: {
  28192. source: "./media/characters/mandarax/lounging.svg",
  28193. extra: 817/609,
  28194. bottom: 685/1502
  28195. }
  28196. },
  28197. head: {
  28198. height: math.unit(11.4, "feet"),
  28199. name: "Head",
  28200. image: {
  28201. source: "./media/characters/mandarax/head.svg"
  28202. }
  28203. },
  28204. belly: {
  28205. height: math.unit(33, "feet"),
  28206. name: "Belly",
  28207. preyCapacity: math.unit(500, "people"),
  28208. image: {
  28209. source: "./media/characters/mandarax/belly.svg"
  28210. }
  28211. },
  28212. dick: {
  28213. height: math.unit(8.46, "feet"),
  28214. name: "Dick",
  28215. image: {
  28216. source: "./media/characters/mandarax/dick.svg"
  28217. }
  28218. },
  28219. top: {
  28220. height: math.unit(28, "meters"),
  28221. name: "Top",
  28222. image: {
  28223. source: "./media/characters/mandarax/top.svg"
  28224. }
  28225. },
  28226. },
  28227. [
  28228. {
  28229. name: "Normal",
  28230. height: math.unit(25, "feet"),
  28231. default: true
  28232. },
  28233. ]
  28234. ))
  28235. characterMakers.push(() => makeCharacter(
  28236. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  28237. {
  28238. front: {
  28239. height: math.unit(5, "feet"),
  28240. weight: math.unit(90, "lb"),
  28241. name: "Front",
  28242. image: {
  28243. source: "./media/characters/pixil/front.svg",
  28244. extra: 2000 / 1618,
  28245. bottom: 12.3 / 2011
  28246. }
  28247. },
  28248. },
  28249. [
  28250. {
  28251. name: "Normal",
  28252. height: math.unit(5, "feet"),
  28253. default: true
  28254. },
  28255. {
  28256. name: "Megamacro",
  28257. height: math.unit(10, "miles"),
  28258. },
  28259. ]
  28260. ))
  28261. characterMakers.push(() => makeCharacter(
  28262. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  28263. {
  28264. front: {
  28265. height: math.unit(7 + 2 / 12, "feet"),
  28266. weight: math.unit(200, "lb"),
  28267. name: "Front",
  28268. image: {
  28269. source: "./media/characters/angel/front.svg",
  28270. extra: 1946/1840,
  28271. bottom: 30/1976
  28272. }
  28273. },
  28274. },
  28275. [
  28276. {
  28277. name: "Normal",
  28278. height: math.unit(7 + 2 / 12, "feet"),
  28279. default: true
  28280. },
  28281. {
  28282. name: "Macro",
  28283. height: math.unit(1000, "feet")
  28284. },
  28285. {
  28286. name: "Megamacro",
  28287. height: math.unit(2, "miles")
  28288. },
  28289. {
  28290. name: "Gigamacro",
  28291. height: math.unit(20, "earths")
  28292. },
  28293. ]
  28294. ))
  28295. characterMakers.push(() => makeCharacter(
  28296. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  28297. {
  28298. front: {
  28299. height: math.unit(5, "feet"),
  28300. weight: math.unit(180, "lb"),
  28301. name: "Front",
  28302. image: {
  28303. source: "./media/characters/mekana/front.svg",
  28304. extra: 1671 / 1605,
  28305. bottom: 3.5 / 1691
  28306. }
  28307. },
  28308. side: {
  28309. height: math.unit(5, "feet"),
  28310. weight: math.unit(180, "lb"),
  28311. name: "Side",
  28312. image: {
  28313. source: "./media/characters/mekana/side.svg",
  28314. extra: 1671 / 1605,
  28315. bottom: 3.5 / 1691
  28316. }
  28317. },
  28318. back: {
  28319. height: math.unit(5, "feet"),
  28320. weight: math.unit(180, "lb"),
  28321. name: "Back",
  28322. image: {
  28323. source: "./media/characters/mekana/back.svg",
  28324. extra: 1671 / 1605,
  28325. bottom: 3.5 / 1691
  28326. }
  28327. },
  28328. },
  28329. [
  28330. {
  28331. name: "Normal",
  28332. height: math.unit(5, "feet"),
  28333. default: true
  28334. },
  28335. ]
  28336. ))
  28337. characterMakers.push(() => makeCharacter(
  28338. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  28339. {
  28340. front: {
  28341. height: math.unit(4 + 6 / 12, "feet"),
  28342. weight: math.unit(80, "lb"),
  28343. name: "Front",
  28344. image: {
  28345. source: "./media/characters/pixie/front.svg",
  28346. extra: 1924 / 1825,
  28347. bottom: 22.4 / 1946
  28348. }
  28349. },
  28350. },
  28351. [
  28352. {
  28353. name: "Normal",
  28354. height: math.unit(4 + 6 / 12, "feet"),
  28355. default: true
  28356. },
  28357. {
  28358. name: "Macro",
  28359. height: math.unit(40, "feet")
  28360. },
  28361. ]
  28362. ))
  28363. characterMakers.push(() => makeCharacter(
  28364. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  28365. {
  28366. front: {
  28367. height: math.unit(2.1, "meters"),
  28368. weight: math.unit(200, "lb"),
  28369. name: "Front",
  28370. image: {
  28371. source: "./media/characters/the-lascivious/front.svg",
  28372. extra: 1 / 0.893,
  28373. bottom: 3.5 / 573.7
  28374. }
  28375. },
  28376. },
  28377. [
  28378. {
  28379. name: "Human Scale",
  28380. height: math.unit(2.1, "meters")
  28381. },
  28382. {
  28383. name: "Wolxi Scale",
  28384. height: math.unit(46.2, "m"),
  28385. default: true
  28386. },
  28387. {
  28388. name: "Boinker of Buildings",
  28389. height: math.unit(10, "km")
  28390. },
  28391. {
  28392. name: "Shagger of Skyscrapers",
  28393. height: math.unit(40, "km")
  28394. },
  28395. {
  28396. name: "Banger of Boroughs",
  28397. height: math.unit(4000, "km")
  28398. },
  28399. {
  28400. name: "Screwer of States",
  28401. height: math.unit(100000, "km")
  28402. },
  28403. {
  28404. name: "Pounder of Planets",
  28405. height: math.unit(2000000, "km")
  28406. },
  28407. ]
  28408. ))
  28409. characterMakers.push(() => makeCharacter(
  28410. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  28411. {
  28412. front: {
  28413. height: math.unit(6, "feet"),
  28414. weight: math.unit(150, "lb"),
  28415. name: "Front",
  28416. image: {
  28417. source: "./media/characters/aj/front.svg",
  28418. extra: 2039 / 1562,
  28419. bottom: 40 / 2079
  28420. }
  28421. },
  28422. },
  28423. [
  28424. {
  28425. name: "Normal",
  28426. height: math.unit(11 + 6 / 12, "feet"),
  28427. default: true
  28428. },
  28429. {
  28430. name: "Megamacro",
  28431. height: math.unit(60, "megameters")
  28432. },
  28433. ]
  28434. ))
  28435. characterMakers.push(() => makeCharacter(
  28436. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  28437. {
  28438. side: {
  28439. height: math.unit(31 + 8 / 12, "feet"),
  28440. weight: math.unit(75000, "kg"),
  28441. name: "Side",
  28442. image: {
  28443. source: "./media/characters/koros/side.svg",
  28444. extra: 1442 / 1297,
  28445. bottom: 122.7 / 1562
  28446. }
  28447. },
  28448. dicksKingsCrown: {
  28449. height: math.unit(6, "feet"),
  28450. name: "Dicks (King's Crown)",
  28451. image: {
  28452. source: "./media/characters/koros/dicks-kings-crown.svg"
  28453. }
  28454. },
  28455. dicksTailSet: {
  28456. height: math.unit(3, "feet"),
  28457. name: "Dicks (Tail Set)",
  28458. image: {
  28459. source: "./media/characters/koros/dicks-tail-set.svg"
  28460. }
  28461. },
  28462. dickCumming: {
  28463. height: math.unit(7.98, "feet"),
  28464. name: "Dick (Cumming)",
  28465. image: {
  28466. source: "./media/characters/koros/dick-cumming.svg"
  28467. }
  28468. },
  28469. dicksBack: {
  28470. height: math.unit(5.9, "feet"),
  28471. name: "Dicks (Back)",
  28472. image: {
  28473. source: "./media/characters/koros/dicks-back.svg"
  28474. }
  28475. },
  28476. dicksFront: {
  28477. height: math.unit(3.72, "feet"),
  28478. name: "Dicks (Front)",
  28479. image: {
  28480. source: "./media/characters/koros/dicks-front.svg"
  28481. }
  28482. },
  28483. dicksPeeking: {
  28484. height: math.unit(3.0, "feet"),
  28485. name: "Dicks (Peeking)",
  28486. image: {
  28487. source: "./media/characters/koros/dicks-peeking.svg"
  28488. }
  28489. },
  28490. eye: {
  28491. height: math.unit(1.7, "feet"),
  28492. name: "Eye",
  28493. image: {
  28494. source: "./media/characters/koros/eye.svg"
  28495. }
  28496. },
  28497. headFront: {
  28498. height: math.unit(11.69, "feet"),
  28499. name: "Head (Front)",
  28500. image: {
  28501. source: "./media/characters/koros/head-front.svg"
  28502. }
  28503. },
  28504. headSide: {
  28505. height: math.unit(14, "feet"),
  28506. name: "Head (Side)",
  28507. image: {
  28508. source: "./media/characters/koros/head-side.svg"
  28509. }
  28510. },
  28511. leg: {
  28512. height: math.unit(17, "feet"),
  28513. name: "Leg",
  28514. image: {
  28515. source: "./media/characters/koros/leg.svg"
  28516. }
  28517. },
  28518. mawSide: {
  28519. height: math.unit(12.8, "feet"),
  28520. name: "Maw (Side)",
  28521. image: {
  28522. source: "./media/characters/koros/maw-side.svg"
  28523. }
  28524. },
  28525. mawSpitting: {
  28526. height: math.unit(17, "feet"),
  28527. name: "Maw (Spitting)",
  28528. image: {
  28529. source: "./media/characters/koros/maw-spitting.svg"
  28530. }
  28531. },
  28532. slit: {
  28533. height: math.unit(2.8, "feet"),
  28534. name: "Slit",
  28535. image: {
  28536. source: "./media/characters/koros/slit.svg"
  28537. }
  28538. },
  28539. stomach: {
  28540. height: math.unit(6.8, "feet"),
  28541. preyCapacity: math.unit(20, "people"),
  28542. name: "Stomach",
  28543. image: {
  28544. source: "./media/characters/koros/stomach.svg"
  28545. }
  28546. },
  28547. wingspanBottom: {
  28548. height: math.unit(114, "feet"),
  28549. name: "Wingspan (Bottom)",
  28550. image: {
  28551. source: "./media/characters/koros/wingspan-bottom.svg"
  28552. }
  28553. },
  28554. wingspanTop: {
  28555. height: math.unit(104, "feet"),
  28556. name: "Wingspan (Top)",
  28557. image: {
  28558. source: "./media/characters/koros/wingspan-top.svg"
  28559. }
  28560. },
  28561. },
  28562. [
  28563. {
  28564. name: "Normal",
  28565. height: math.unit(31 + 8 / 12, "feet"),
  28566. default: true
  28567. },
  28568. ]
  28569. ))
  28570. characterMakers.push(() => makeCharacter(
  28571. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  28572. {
  28573. front: {
  28574. height: math.unit(18 + 5 / 12, "feet"),
  28575. weight: math.unit(3750, "kg"),
  28576. name: "Front",
  28577. image: {
  28578. source: "./media/characters/vexx/front.svg",
  28579. extra: 426 / 396,
  28580. bottom: 31.5 / 458
  28581. }
  28582. },
  28583. maw: {
  28584. height: math.unit(6, "feet"),
  28585. name: "Maw",
  28586. image: {
  28587. source: "./media/characters/vexx/maw.svg"
  28588. }
  28589. },
  28590. },
  28591. [
  28592. {
  28593. name: "Normal",
  28594. height: math.unit(18 + 5 / 12, "feet"),
  28595. default: true
  28596. },
  28597. ]
  28598. ))
  28599. characterMakers.push(() => makeCharacter(
  28600. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  28601. {
  28602. front: {
  28603. height: math.unit(17 + 6 / 12, "feet"),
  28604. weight: math.unit(150, "lb"),
  28605. name: "Front",
  28606. image: {
  28607. source: "./media/characters/baadra/front.svg",
  28608. extra: 1694/1553,
  28609. bottom: 179/1873
  28610. }
  28611. },
  28612. frontAlt: {
  28613. height: math.unit(17 + 6 / 12, "feet"),
  28614. weight: math.unit(150, "lb"),
  28615. name: "Front (Alt)",
  28616. image: {
  28617. source: "./media/characters/baadra/front-alt.svg",
  28618. extra: 3137 / 2890,
  28619. bottom: 168.4 / 3305
  28620. }
  28621. },
  28622. back: {
  28623. height: math.unit(17 + 6 / 12, "feet"),
  28624. weight: math.unit(150, "lb"),
  28625. name: "Back",
  28626. image: {
  28627. source: "./media/characters/baadra/back.svg",
  28628. extra: 3142 / 2890,
  28629. bottom: 220 / 3371
  28630. }
  28631. },
  28632. head: {
  28633. height: math.unit(5.45, "feet"),
  28634. name: "Head",
  28635. image: {
  28636. source: "./media/characters/baadra/head.svg"
  28637. }
  28638. },
  28639. headAngry: {
  28640. height: math.unit(4.95, "feet"),
  28641. name: "Head (Angry)",
  28642. image: {
  28643. source: "./media/characters/baadra/head-angry.svg"
  28644. }
  28645. },
  28646. headOpen: {
  28647. height: math.unit(6, "feet"),
  28648. name: "Head (Open)",
  28649. image: {
  28650. source: "./media/characters/baadra/head-open.svg"
  28651. }
  28652. },
  28653. },
  28654. [
  28655. {
  28656. name: "Normal",
  28657. height: math.unit(17 + 6 / 12, "feet"),
  28658. default: true
  28659. },
  28660. ]
  28661. ))
  28662. characterMakers.push(() => makeCharacter(
  28663. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  28664. {
  28665. front: {
  28666. height: math.unit(7 + 3 / 12, "feet"),
  28667. weight: math.unit(180, "lb"),
  28668. name: "Front",
  28669. image: {
  28670. source: "./media/characters/juri/front.svg",
  28671. extra: 1401 / 1237,
  28672. bottom: 18.5 / 1418
  28673. }
  28674. },
  28675. side: {
  28676. height: math.unit(7 + 3 / 12, "feet"),
  28677. weight: math.unit(180, "lb"),
  28678. name: "Side",
  28679. image: {
  28680. source: "./media/characters/juri/side.svg",
  28681. extra: 1424 / 1242,
  28682. bottom: 18.5 / 1447
  28683. }
  28684. },
  28685. sitting: {
  28686. height: math.unit(6, "feet"),
  28687. weight: math.unit(180, "lb"),
  28688. name: "Sitting",
  28689. image: {
  28690. source: "./media/characters/juri/sitting.svg",
  28691. extra: 1270 / 1143,
  28692. bottom: 100 / 1343
  28693. }
  28694. },
  28695. back: {
  28696. height: math.unit(7 + 3 / 12, "feet"),
  28697. weight: math.unit(180, "lb"),
  28698. name: "Back",
  28699. image: {
  28700. source: "./media/characters/juri/back.svg",
  28701. extra: 1377 / 1240,
  28702. bottom: 23.7 / 1405
  28703. }
  28704. },
  28705. maw: {
  28706. height: math.unit(2.8, "feet"),
  28707. name: "Maw",
  28708. image: {
  28709. source: "./media/characters/juri/maw.svg"
  28710. }
  28711. },
  28712. stomach: {
  28713. height: math.unit(0.89, "feet"),
  28714. preyCapacity: math.unit(4, "liters"),
  28715. name: "Stomach",
  28716. image: {
  28717. source: "./media/characters/juri/stomach.svg"
  28718. }
  28719. },
  28720. },
  28721. [
  28722. {
  28723. name: "Normal",
  28724. height: math.unit(7 + 3 / 12, "feet"),
  28725. default: true
  28726. },
  28727. ]
  28728. ))
  28729. characterMakers.push(() => makeCharacter(
  28730. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28731. {
  28732. fox: {
  28733. height: math.unit(5 + 6 / 12, "feet"),
  28734. weight: math.unit(140, "lb"),
  28735. name: "Fox",
  28736. image: {
  28737. source: "./media/characters/maxene-sita/fox.svg",
  28738. extra: 146 / 138,
  28739. bottom: 2.1 / 148.19
  28740. }
  28741. },
  28742. foxLaying: {
  28743. height: math.unit(1.70, "feet"),
  28744. weight: math.unit(140, "lb"),
  28745. name: "Fox (Laying)",
  28746. image: {
  28747. source: "./media/characters/maxene-sita/fox-laying.svg",
  28748. extra: 910 / 572,
  28749. bottom: 71 / 981
  28750. }
  28751. },
  28752. kitsune: {
  28753. height: math.unit(10, "feet"),
  28754. weight: math.unit(800, "lb"),
  28755. name: "Kitsune",
  28756. image: {
  28757. source: "./media/characters/maxene-sita/kitsune.svg",
  28758. extra: 185 / 176,
  28759. bottom: 4.7 / 189.9
  28760. }
  28761. },
  28762. hellhound: {
  28763. height: math.unit(10, "feet"),
  28764. weight: math.unit(700, "lb"),
  28765. name: "Hellhound",
  28766. image: {
  28767. source: "./media/characters/maxene-sita/hellhound.svg",
  28768. extra: 1600 / 1545,
  28769. bottom: 81 / 1681
  28770. }
  28771. },
  28772. },
  28773. [
  28774. {
  28775. name: "Normal",
  28776. height: math.unit(5 + 6 / 12, "feet"),
  28777. default: true
  28778. },
  28779. ]
  28780. ))
  28781. characterMakers.push(() => makeCharacter(
  28782. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28783. {
  28784. front: {
  28785. height: math.unit(3 + 4 / 12, "feet"),
  28786. weight: math.unit(70, "lb"),
  28787. name: "Front",
  28788. image: {
  28789. source: "./media/characters/maia/front.svg",
  28790. extra: 227 / 219.5,
  28791. bottom: 40 / 267
  28792. }
  28793. },
  28794. back: {
  28795. height: math.unit(3 + 4 / 12, "feet"),
  28796. weight: math.unit(70, "lb"),
  28797. name: "Back",
  28798. image: {
  28799. source: "./media/characters/maia/back.svg",
  28800. extra: 237 / 225
  28801. }
  28802. },
  28803. },
  28804. [
  28805. {
  28806. name: "Normal",
  28807. height: math.unit(3 + 4 / 12, "feet"),
  28808. default: true
  28809. },
  28810. ]
  28811. ))
  28812. characterMakers.push(() => makeCharacter(
  28813. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28814. {
  28815. front: {
  28816. height: math.unit(5 + 10 / 12, "feet"),
  28817. weight: math.unit(197, "lb"),
  28818. name: "Front",
  28819. image: {
  28820. source: "./media/characters/jabaro/front.svg",
  28821. extra: 225 / 216,
  28822. bottom: 5.06 / 230
  28823. }
  28824. },
  28825. back: {
  28826. height: math.unit(5 + 10 / 12, "feet"),
  28827. weight: math.unit(197, "lb"),
  28828. name: "Back",
  28829. image: {
  28830. source: "./media/characters/jabaro/back.svg",
  28831. extra: 225 / 219,
  28832. bottom: 1.9 / 227
  28833. }
  28834. },
  28835. },
  28836. [
  28837. {
  28838. name: "Normal",
  28839. height: math.unit(5 + 10 / 12, "feet"),
  28840. default: true
  28841. },
  28842. ]
  28843. ))
  28844. characterMakers.push(() => makeCharacter(
  28845. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28846. {
  28847. front: {
  28848. height: math.unit(5 + 8 / 12, "feet"),
  28849. weight: math.unit(139, "lb"),
  28850. name: "Front",
  28851. image: {
  28852. source: "./media/characters/risa/front.svg",
  28853. extra: 270 / 260,
  28854. bottom: 11.2 / 282
  28855. }
  28856. },
  28857. back: {
  28858. height: math.unit(5 + 8 / 12, "feet"),
  28859. weight: math.unit(139, "lb"),
  28860. name: "Back",
  28861. image: {
  28862. source: "./media/characters/risa/back.svg",
  28863. extra: 264 / 255,
  28864. bottom: 4 / 268
  28865. }
  28866. },
  28867. },
  28868. [
  28869. {
  28870. name: "Normal",
  28871. height: math.unit(5 + 8 / 12, "feet"),
  28872. default: true
  28873. },
  28874. ]
  28875. ))
  28876. characterMakers.push(() => makeCharacter(
  28877. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28878. {
  28879. front: {
  28880. height: math.unit(2 + 11 / 12, "feet"),
  28881. weight: math.unit(30, "lb"),
  28882. name: "Front",
  28883. image: {
  28884. source: "./media/characters/weatley/front.svg",
  28885. bottom: 10.7 / 414,
  28886. extra: 403.5 / 362
  28887. }
  28888. },
  28889. back: {
  28890. height: math.unit(2 + 11 / 12, "feet"),
  28891. weight: math.unit(30, "lb"),
  28892. name: "Back",
  28893. image: {
  28894. source: "./media/characters/weatley/back.svg",
  28895. bottom: 10.7 / 414,
  28896. extra: 403.5 / 362
  28897. }
  28898. },
  28899. },
  28900. [
  28901. {
  28902. name: "Normal",
  28903. height: math.unit(2 + 11 / 12, "feet"),
  28904. default: true
  28905. },
  28906. ]
  28907. ))
  28908. characterMakers.push(() => makeCharacter(
  28909. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28910. {
  28911. front: {
  28912. height: math.unit(5 + 2 / 12, "feet"),
  28913. weight: math.unit(50, "kg"),
  28914. name: "Front",
  28915. image: {
  28916. source: "./media/characters/mercury-crescent/front.svg",
  28917. extra: 1088 / 1033,
  28918. bottom: 18.9 / 1109
  28919. }
  28920. },
  28921. },
  28922. [
  28923. {
  28924. name: "Normal",
  28925. height: math.unit(5 + 2 / 12, "feet"),
  28926. default: true
  28927. },
  28928. ]
  28929. ))
  28930. characterMakers.push(() => makeCharacter(
  28931. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28932. {
  28933. front: {
  28934. height: math.unit(2, "feet"),
  28935. weight: math.unit(15, "kg"),
  28936. name: "Front",
  28937. image: {
  28938. source: "./media/characters/diamond-jones/front.svg",
  28939. extra: 727/723,
  28940. bottom: 46/773
  28941. }
  28942. },
  28943. },
  28944. [
  28945. {
  28946. name: "Normal",
  28947. height: math.unit(2, "feet"),
  28948. default: true
  28949. },
  28950. ]
  28951. ))
  28952. characterMakers.push(() => makeCharacter(
  28953. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28954. {
  28955. front: {
  28956. height: math.unit(3, "feet"),
  28957. weight: math.unit(30, "kg"),
  28958. name: "Front",
  28959. image: {
  28960. source: "./media/characters/sweet-bit/front.svg",
  28961. extra: 675 / 567,
  28962. bottom: 27.7 / 703
  28963. }
  28964. },
  28965. },
  28966. [
  28967. {
  28968. name: "Normal",
  28969. height: math.unit(3, "feet"),
  28970. default: true
  28971. },
  28972. ]
  28973. ))
  28974. characterMakers.push(() => makeCharacter(
  28975. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28976. {
  28977. side: {
  28978. height: math.unit(9.178, "feet"),
  28979. weight: math.unit(500, "lb"),
  28980. name: "Side",
  28981. image: {
  28982. source: "./media/characters/umbrazen/side.svg",
  28983. extra: 1730 / 1473,
  28984. bottom: 34.6 / 1765
  28985. }
  28986. },
  28987. },
  28988. [
  28989. {
  28990. name: "Normal",
  28991. height: math.unit(9.178, "feet"),
  28992. default: true
  28993. },
  28994. ]
  28995. ))
  28996. characterMakers.push(() => makeCharacter(
  28997. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28998. {
  28999. front: {
  29000. height: math.unit(10, "feet"),
  29001. weight: math.unit(750, "lb"),
  29002. name: "Front",
  29003. image: {
  29004. source: "./media/characters/arlist/front.svg",
  29005. extra: 961 / 778,
  29006. bottom: 6.2 / 986
  29007. }
  29008. },
  29009. },
  29010. [
  29011. {
  29012. name: "Normal",
  29013. height: math.unit(10, "feet"),
  29014. default: true
  29015. },
  29016. ]
  29017. ))
  29018. characterMakers.push(() => makeCharacter(
  29019. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  29020. {
  29021. front: {
  29022. height: math.unit(5 + 1 / 12, "feet"),
  29023. weight: math.unit(110, "lb"),
  29024. name: "Front",
  29025. image: {
  29026. source: "./media/characters/aradel/front.svg",
  29027. extra: 324 / 303,
  29028. bottom: 3.6 / 329.4
  29029. }
  29030. },
  29031. },
  29032. [
  29033. {
  29034. name: "Normal",
  29035. height: math.unit(5 + 1 / 12, "feet"),
  29036. default: true
  29037. },
  29038. ]
  29039. ))
  29040. characterMakers.push(() => makeCharacter(
  29041. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  29042. {
  29043. dressed: {
  29044. height: math.unit(3 + 8 / 12, "feet"),
  29045. weight: math.unit(50, "lb"),
  29046. name: "Dressed",
  29047. image: {
  29048. source: "./media/characters/serryn/dressed.svg",
  29049. extra: 1792 / 1656,
  29050. bottom: 43.5 / 1840
  29051. }
  29052. },
  29053. nude: {
  29054. height: math.unit(3 + 8 / 12, "feet"),
  29055. weight: math.unit(50, "lb"),
  29056. name: "Nude",
  29057. image: {
  29058. source: "./media/characters/serryn/nude.svg",
  29059. extra: 1792 / 1656,
  29060. bottom: 43.5 / 1840
  29061. }
  29062. },
  29063. },
  29064. [
  29065. {
  29066. name: "Normal",
  29067. height: math.unit(3 + 8 / 12, "feet"),
  29068. default: true
  29069. },
  29070. ]
  29071. ))
  29072. characterMakers.push(() => makeCharacter(
  29073. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  29074. {
  29075. front: {
  29076. height: math.unit(7 + 10 / 12, "feet"),
  29077. weight: math.unit(255, "lb"),
  29078. name: "Front",
  29079. image: {
  29080. source: "./media/characters/xavier-thyme/front.svg",
  29081. extra: 3733 / 3642,
  29082. bottom: 131 / 3869
  29083. }
  29084. },
  29085. frontRaven: {
  29086. height: math.unit(7 + 10 / 12, "feet"),
  29087. weight: math.unit(255, "lb"),
  29088. name: "Front (Raven)",
  29089. image: {
  29090. source: "./media/characters/xavier-thyme/front-raven.svg",
  29091. extra: 4385 / 3642,
  29092. bottom: 131 / 4517
  29093. }
  29094. },
  29095. },
  29096. [
  29097. {
  29098. name: "Normal",
  29099. height: math.unit(7 + 10 / 12, "feet"),
  29100. default: true
  29101. },
  29102. ]
  29103. ))
  29104. characterMakers.push(() => makeCharacter(
  29105. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  29106. {
  29107. front: {
  29108. height: math.unit(1.6, "m"),
  29109. weight: math.unit(50, "kg"),
  29110. name: "Front",
  29111. image: {
  29112. source: "./media/characters/kiki/front.svg",
  29113. extra: 4682 / 3610,
  29114. bottom: 115 / 4777
  29115. }
  29116. },
  29117. },
  29118. [
  29119. {
  29120. name: "Normal",
  29121. height: math.unit(1.6, "meters"),
  29122. default: true
  29123. },
  29124. ]
  29125. ))
  29126. characterMakers.push(() => makeCharacter(
  29127. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  29128. {
  29129. front: {
  29130. height: math.unit(50, "m"),
  29131. weight: math.unit(500, "tonnes"),
  29132. name: "Front",
  29133. image: {
  29134. source: "./media/characters/ryoko/front.svg",
  29135. extra: 4632 / 3926,
  29136. bottom: 193 / 4823
  29137. }
  29138. },
  29139. },
  29140. [
  29141. {
  29142. name: "Normal",
  29143. height: math.unit(50, "meters"),
  29144. default: true
  29145. },
  29146. ]
  29147. ))
  29148. characterMakers.push(() => makeCharacter(
  29149. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  29150. {
  29151. front: {
  29152. height: math.unit(30, "m"),
  29153. weight: math.unit(22, "tonnes"),
  29154. name: "Front",
  29155. image: {
  29156. source: "./media/characters/elio/front.svg",
  29157. extra: 4582 / 3720,
  29158. bottom: 236 / 4828
  29159. }
  29160. },
  29161. },
  29162. [
  29163. {
  29164. name: "Normal",
  29165. height: math.unit(30, "meters"),
  29166. default: true
  29167. },
  29168. ]
  29169. ))
  29170. characterMakers.push(() => makeCharacter(
  29171. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  29172. {
  29173. front: {
  29174. height: math.unit(6 + 3 / 12, "feet"),
  29175. weight: math.unit(120, "lb"),
  29176. name: "Front",
  29177. image: {
  29178. source: "./media/characters/azura/front.svg",
  29179. extra: 1149 / 1135,
  29180. bottom: 45 / 1194
  29181. }
  29182. },
  29183. frontClothed: {
  29184. height: math.unit(6 + 3 / 12, "feet"),
  29185. weight: math.unit(120, "lb"),
  29186. name: "Front (Clothed)",
  29187. image: {
  29188. source: "./media/characters/azura/front-clothed.svg",
  29189. extra: 1149 / 1135,
  29190. bottom: 45 / 1194
  29191. }
  29192. },
  29193. },
  29194. [
  29195. {
  29196. name: "Normal",
  29197. height: math.unit(6 + 3 / 12, "feet"),
  29198. default: true
  29199. },
  29200. {
  29201. name: "Macro",
  29202. height: math.unit(20 + 6 / 12, "feet")
  29203. },
  29204. {
  29205. name: "Megamacro",
  29206. height: math.unit(12, "miles")
  29207. },
  29208. {
  29209. name: "Gigamacro",
  29210. height: math.unit(10000, "miles")
  29211. },
  29212. {
  29213. name: "Teramacro",
  29214. height: math.unit(900000, "miles")
  29215. },
  29216. ]
  29217. ))
  29218. characterMakers.push(() => makeCharacter(
  29219. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  29220. {
  29221. front: {
  29222. height: math.unit(12, "feet"),
  29223. weight: math.unit(1, "ton"),
  29224. capacity: math.unit(660000, "gallons"),
  29225. name: "Front",
  29226. image: {
  29227. source: "./media/characters/zeus/front.svg",
  29228. extra: 5005 / 4717,
  29229. bottom: 363 / 5388
  29230. }
  29231. },
  29232. },
  29233. [
  29234. {
  29235. name: "Normal",
  29236. height: math.unit(12, "feet")
  29237. },
  29238. {
  29239. name: "Preferred Size",
  29240. height: math.unit(0.5, "miles"),
  29241. default: true
  29242. },
  29243. {
  29244. name: "Giga Horse",
  29245. height: math.unit(300, "miles")
  29246. },
  29247. {
  29248. name: "Riding Planets",
  29249. height: math.unit(30, "megameters")
  29250. },
  29251. {
  29252. name: "Cosmic Giant",
  29253. height: math.unit(3, "zettameters")
  29254. },
  29255. {
  29256. name: "Breeding God",
  29257. height: math.unit(9.92e22, "yottameters")
  29258. },
  29259. ]
  29260. ))
  29261. characterMakers.push(() => makeCharacter(
  29262. { name: "Fang", species: ["monster"], tags: ["feral"] },
  29263. {
  29264. side: {
  29265. height: math.unit(9, "feet"),
  29266. weight: math.unit(1500, "kg"),
  29267. name: "Side",
  29268. image: {
  29269. source: "./media/characters/fang/side.svg",
  29270. extra: 924 / 866,
  29271. bottom: 47.5 / 972.3
  29272. }
  29273. },
  29274. },
  29275. [
  29276. {
  29277. name: "Normal",
  29278. height: math.unit(9, "feet"),
  29279. default: true
  29280. },
  29281. {
  29282. name: "Macro",
  29283. height: math.unit(75 + 6 / 12, "feet")
  29284. },
  29285. {
  29286. name: "Teramacro",
  29287. height: math.unit(50000, "miles")
  29288. },
  29289. ]
  29290. ))
  29291. characterMakers.push(() => makeCharacter(
  29292. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  29293. {
  29294. front: {
  29295. height: math.unit(10, "feet"),
  29296. weight: math.unit(2, "tons"),
  29297. name: "Front",
  29298. image: {
  29299. source: "./media/characters/rekhit/front.svg",
  29300. extra: 2796 / 2590,
  29301. bottom: 225 / 3022
  29302. }
  29303. },
  29304. },
  29305. [
  29306. {
  29307. name: "Normal",
  29308. height: math.unit(10, "feet"),
  29309. default: true
  29310. },
  29311. {
  29312. name: "Macro",
  29313. height: math.unit(500, "feet")
  29314. },
  29315. ]
  29316. ))
  29317. characterMakers.push(() => makeCharacter(
  29318. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  29319. {
  29320. front: {
  29321. height: math.unit(7 + 6.451 / 12, "feet"),
  29322. weight: math.unit(310, "lb"),
  29323. name: "Front",
  29324. image: {
  29325. source: "./media/characters/dahlia-verrick/front.svg",
  29326. extra: 1488 / 1365,
  29327. bottom: 6.2 / 1495
  29328. }
  29329. },
  29330. back: {
  29331. height: math.unit(7 + 6.451 / 12, "feet"),
  29332. weight: math.unit(310, "lb"),
  29333. name: "Back",
  29334. image: {
  29335. source: "./media/characters/dahlia-verrick/back.svg",
  29336. extra: 1472 / 1351,
  29337. bottom: 5.28 / 1477
  29338. }
  29339. },
  29340. frontBusiness: {
  29341. height: math.unit(7 + 6.451 / 12, "feet"),
  29342. weight: math.unit(200, "lb"),
  29343. name: "Front (Business)",
  29344. image: {
  29345. source: "./media/characters/dahlia-verrick/front-business.svg",
  29346. extra: 1478 / 1381,
  29347. bottom: 5.5 / 1484
  29348. }
  29349. },
  29350. frontCasual: {
  29351. height: math.unit(7 + 6.451 / 12, "feet"),
  29352. weight: math.unit(200, "lb"),
  29353. name: "Front (Casual)",
  29354. image: {
  29355. source: "./media/characters/dahlia-verrick/front-casual.svg",
  29356. extra: 1478 / 1381,
  29357. bottom: 5.5 / 1484
  29358. }
  29359. },
  29360. },
  29361. [
  29362. {
  29363. name: "Travel-Sized",
  29364. height: math.unit(7.45, "inches")
  29365. },
  29366. {
  29367. name: "Normal",
  29368. height: math.unit(7 + 6.451 / 12, "feet"),
  29369. default: true
  29370. },
  29371. {
  29372. name: "Hitting the Town",
  29373. height: math.unit(37 + 8 / 12, "feet")
  29374. },
  29375. {
  29376. name: "Stomp in the Suburbs",
  29377. height: math.unit(964 + 9.728 / 12, "feet")
  29378. },
  29379. {
  29380. name: "Sit on the City",
  29381. height: math.unit(61747 + 10.592 / 12, "feet")
  29382. },
  29383. {
  29384. name: "Glomp the Globe",
  29385. height: math.unit(252919327 + 4.832 / 12, "feet")
  29386. },
  29387. ]
  29388. ))
  29389. characterMakers.push(() => makeCharacter(
  29390. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  29391. {
  29392. front: {
  29393. height: math.unit(6 + 4 / 12, "feet"),
  29394. weight: math.unit(320, "lb"),
  29395. name: "Front",
  29396. image: {
  29397. source: "./media/characters/balina-mahigan/front.svg",
  29398. extra: 447 / 428,
  29399. bottom: 18 / 466
  29400. }
  29401. },
  29402. back: {
  29403. height: math.unit(6 + 4 / 12, "feet"),
  29404. weight: math.unit(320, "lb"),
  29405. name: "Back",
  29406. image: {
  29407. source: "./media/characters/balina-mahigan/back.svg",
  29408. extra: 445 / 428,
  29409. bottom: 4.07 / 448
  29410. }
  29411. },
  29412. arm: {
  29413. height: math.unit(1.88, "feet"),
  29414. name: "Arm",
  29415. image: {
  29416. source: "./media/characters/balina-mahigan/arm.svg"
  29417. }
  29418. },
  29419. backPort: {
  29420. height: math.unit(0.685, "feet"),
  29421. name: "Back Port",
  29422. image: {
  29423. source: "./media/characters/balina-mahigan/back-port.svg"
  29424. }
  29425. },
  29426. hoofpaw: {
  29427. height: math.unit(1.41, "feet"),
  29428. name: "Hoofpaw",
  29429. image: {
  29430. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  29431. }
  29432. },
  29433. leftHandBack: {
  29434. height: math.unit(0.938, "feet"),
  29435. name: "Left Hand (Back)",
  29436. image: {
  29437. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  29438. }
  29439. },
  29440. leftHandFront: {
  29441. height: math.unit(0.938, "feet"),
  29442. name: "Left Hand (Front)",
  29443. image: {
  29444. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  29445. }
  29446. },
  29447. rightHandBack: {
  29448. height: math.unit(0.95, "feet"),
  29449. name: "Right Hand (Back)",
  29450. image: {
  29451. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  29452. }
  29453. },
  29454. rightHandFront: {
  29455. height: math.unit(0.95, "feet"),
  29456. name: "Right Hand (Front)",
  29457. image: {
  29458. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  29459. }
  29460. },
  29461. },
  29462. [
  29463. {
  29464. name: "Normal",
  29465. height: math.unit(6 + 4 / 12, "feet"),
  29466. default: true
  29467. },
  29468. ]
  29469. ))
  29470. characterMakers.push(() => makeCharacter(
  29471. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  29472. {
  29473. front: {
  29474. height: math.unit(6, "feet"),
  29475. weight: math.unit(320, "lb"),
  29476. name: "Front",
  29477. image: {
  29478. source: "./media/characters/balina-mejeri/front.svg",
  29479. extra: 517 / 488,
  29480. bottom: 44.2 / 561
  29481. }
  29482. },
  29483. },
  29484. [
  29485. {
  29486. name: "Normal",
  29487. height: math.unit(6 + 4 / 12, "feet")
  29488. },
  29489. {
  29490. name: "Business",
  29491. height: math.unit(155, "feet"),
  29492. default: true
  29493. },
  29494. ]
  29495. ))
  29496. characterMakers.push(() => makeCharacter(
  29497. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  29498. {
  29499. kneeling: {
  29500. height: math.unit(6 + 4 / 12, "feet"),
  29501. weight: math.unit(300 * 20, "lb"),
  29502. name: "Kneeling",
  29503. image: {
  29504. source: "./media/characters/balbarian/kneeling.svg",
  29505. extra: 922 / 862,
  29506. bottom: 42.4 / 965
  29507. }
  29508. },
  29509. },
  29510. [
  29511. {
  29512. name: "Normal",
  29513. height: math.unit(6 + 4 / 12, "feet")
  29514. },
  29515. {
  29516. name: "Treasured",
  29517. height: math.unit(18 + 9 / 12, "feet"),
  29518. default: true
  29519. },
  29520. {
  29521. name: "Macro",
  29522. height: math.unit(900, "feet")
  29523. },
  29524. ]
  29525. ))
  29526. characterMakers.push(() => makeCharacter(
  29527. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  29528. {
  29529. front: {
  29530. height: math.unit(6 + 4 / 12, "feet"),
  29531. weight: math.unit(325, "lb"),
  29532. name: "Front",
  29533. image: {
  29534. source: "./media/characters/balina-amarini/front.svg",
  29535. extra: 415 / 403,
  29536. bottom: 19 / 433.4
  29537. }
  29538. },
  29539. back: {
  29540. height: math.unit(6 + 4 / 12, "feet"),
  29541. weight: math.unit(325, "lb"),
  29542. name: "Back",
  29543. image: {
  29544. source: "./media/characters/balina-amarini/back.svg",
  29545. extra: 415 / 403,
  29546. bottom: 13.5 / 432
  29547. }
  29548. },
  29549. overdrive: {
  29550. height: math.unit(6 + 4 / 12, "feet"),
  29551. weight: math.unit(400, "lb"),
  29552. name: "Overdrive",
  29553. image: {
  29554. source: "./media/characters/balina-amarini/overdrive.svg",
  29555. extra: 269 / 259,
  29556. bottom: 12 / 282
  29557. }
  29558. },
  29559. },
  29560. [
  29561. {
  29562. name: "Boom",
  29563. height: math.unit(9 + 10 / 12, "feet"),
  29564. default: true
  29565. },
  29566. {
  29567. name: "Macro",
  29568. height: math.unit(280, "feet")
  29569. },
  29570. ]
  29571. ))
  29572. characterMakers.push(() => makeCharacter(
  29573. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  29574. {
  29575. goddess: {
  29576. height: math.unit(600, "feet"),
  29577. weight: math.unit(2000000, "tons"),
  29578. name: "Goddess",
  29579. image: {
  29580. source: "./media/characters/lady-kubwa/goddess.svg",
  29581. extra: 1240.5 / 1223,
  29582. bottom: 22 / 1263
  29583. }
  29584. },
  29585. goddesser: {
  29586. height: math.unit(900, "feet"),
  29587. weight: math.unit(20000000, "lb"),
  29588. name: "Goddess-er",
  29589. image: {
  29590. source: "./media/characters/lady-kubwa/goddess-er.svg",
  29591. extra: 899 / 888,
  29592. bottom: 12.6 / 912
  29593. }
  29594. },
  29595. },
  29596. [
  29597. {
  29598. name: "Macro",
  29599. height: math.unit(600, "feet"),
  29600. default: true
  29601. },
  29602. {
  29603. name: "Megamacro",
  29604. height: math.unit(250, "miles")
  29605. },
  29606. ]
  29607. ))
  29608. characterMakers.push(() => makeCharacter(
  29609. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  29610. {
  29611. front: {
  29612. height: math.unit(7 + 7 / 12, "feet"),
  29613. weight: math.unit(250, "lb"),
  29614. name: "Front",
  29615. image: {
  29616. source: "./media/characters/tala-grovehorn/front.svg",
  29617. extra: 2636 / 2525,
  29618. bottom: 147 / 2781
  29619. }
  29620. },
  29621. back: {
  29622. height: math.unit(7 + 7 / 12, "feet"),
  29623. weight: math.unit(250, "lb"),
  29624. name: "Back",
  29625. image: {
  29626. source: "./media/characters/tala-grovehorn/back.svg",
  29627. extra: 2635 / 2539,
  29628. bottom: 100 / 2732.8
  29629. }
  29630. },
  29631. mouth: {
  29632. height: math.unit(1.15, "feet"),
  29633. name: "Mouth",
  29634. image: {
  29635. source: "./media/characters/tala-grovehorn/mouth.svg"
  29636. }
  29637. },
  29638. dick: {
  29639. height: math.unit(2.36, "feet"),
  29640. name: "Dick",
  29641. image: {
  29642. source: "./media/characters/tala-grovehorn/dick.svg"
  29643. }
  29644. },
  29645. slit: {
  29646. height: math.unit(0.61, "feet"),
  29647. name: "Slit",
  29648. image: {
  29649. source: "./media/characters/tala-grovehorn/slit.svg"
  29650. }
  29651. },
  29652. },
  29653. [
  29654. ]
  29655. ))
  29656. characterMakers.push(() => makeCharacter(
  29657. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  29658. {
  29659. front: {
  29660. height: math.unit(7 + 7 / 12, "feet"),
  29661. weight: math.unit(225, "lb"),
  29662. name: "Front",
  29663. image: {
  29664. source: "./media/characters/epona/front.svg",
  29665. extra: 2445 / 2290,
  29666. bottom: 251 / 2696
  29667. }
  29668. },
  29669. back: {
  29670. height: math.unit(7 + 7 / 12, "feet"),
  29671. weight: math.unit(225, "lb"),
  29672. name: "Back",
  29673. image: {
  29674. source: "./media/characters/epona/back.svg",
  29675. extra: 2546 / 2408,
  29676. bottom: 44 / 2589
  29677. }
  29678. },
  29679. genitals: {
  29680. height: math.unit(1.5, "feet"),
  29681. name: "Genitals",
  29682. image: {
  29683. source: "./media/characters/epona/genitals.svg"
  29684. }
  29685. },
  29686. },
  29687. [
  29688. {
  29689. name: "Normal",
  29690. height: math.unit(7 + 7 / 12, "feet"),
  29691. default: true
  29692. },
  29693. ]
  29694. ))
  29695. characterMakers.push(() => makeCharacter(
  29696. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29697. {
  29698. front: {
  29699. height: math.unit(7, "feet"),
  29700. weight: math.unit(518, "lb"),
  29701. name: "Front",
  29702. image: {
  29703. source: "./media/characters/avia-bloodbourn/front.svg",
  29704. extra: 1466 / 1350,
  29705. bottom: 65 / 1527
  29706. }
  29707. },
  29708. },
  29709. [
  29710. ]
  29711. ))
  29712. characterMakers.push(() => makeCharacter(
  29713. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29714. {
  29715. front: {
  29716. height: math.unit(9.35, "feet"),
  29717. weight: math.unit(600, "lb"),
  29718. name: "Front",
  29719. image: {
  29720. source: "./media/characters/amera/front.svg",
  29721. extra: 891 / 818,
  29722. bottom: 30 / 922.7
  29723. }
  29724. },
  29725. back: {
  29726. height: math.unit(9.35, "feet"),
  29727. weight: math.unit(600, "lb"),
  29728. name: "Back",
  29729. image: {
  29730. source: "./media/characters/amera/back.svg",
  29731. extra: 876 / 824,
  29732. bottom: 6.8 / 884
  29733. }
  29734. },
  29735. dick: {
  29736. height: math.unit(2.14, "feet"),
  29737. name: "Dick",
  29738. image: {
  29739. source: "./media/characters/amera/dick.svg"
  29740. }
  29741. },
  29742. },
  29743. [
  29744. {
  29745. name: "Normal",
  29746. height: math.unit(9.35, "feet"),
  29747. default: true
  29748. },
  29749. ]
  29750. ))
  29751. characterMakers.push(() => makeCharacter(
  29752. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29753. {
  29754. kneeling: {
  29755. height: math.unit(3 + 4 / 12, "feet"),
  29756. weight: math.unit(90, "lb"),
  29757. name: "Kneeling",
  29758. image: {
  29759. source: "./media/characters/rosewen/kneeling.svg",
  29760. extra: 1835 / 1571,
  29761. bottom: 27.7 / 1862
  29762. }
  29763. },
  29764. },
  29765. [
  29766. {
  29767. name: "Normal",
  29768. height: math.unit(3 + 4 / 12, "feet"),
  29769. default: true
  29770. },
  29771. ]
  29772. ))
  29773. characterMakers.push(() => makeCharacter(
  29774. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29775. {
  29776. front: {
  29777. height: math.unit(5 + 10 / 12, "feet"),
  29778. weight: math.unit(200, "lb"),
  29779. name: "Front",
  29780. image: {
  29781. source: "./media/characters/sabah/front.svg",
  29782. extra: 849 / 763,
  29783. bottom: 33.9 / 881
  29784. }
  29785. },
  29786. },
  29787. [
  29788. {
  29789. name: "Normal",
  29790. height: math.unit(5 + 10 / 12, "feet"),
  29791. default: true
  29792. },
  29793. ]
  29794. ))
  29795. characterMakers.push(() => makeCharacter(
  29796. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29797. {
  29798. front: {
  29799. height: math.unit(3 + 5 / 12, "feet"),
  29800. weight: math.unit(40, "kg"),
  29801. name: "Front",
  29802. image: {
  29803. source: "./media/characters/purple-flame/front.svg",
  29804. extra: 1577 / 1412,
  29805. bottom: 97 / 1694
  29806. }
  29807. },
  29808. frontDressed: {
  29809. height: math.unit(3 + 5 / 12, "feet"),
  29810. weight: math.unit(40, "kg"),
  29811. name: "Front (Dressed)",
  29812. image: {
  29813. source: "./media/characters/purple-flame/front-dressed.svg",
  29814. extra: 1577 / 1412,
  29815. bottom: 97 / 1694
  29816. }
  29817. },
  29818. headphones: {
  29819. height: math.unit(0.85, "feet"),
  29820. name: "Headphones",
  29821. image: {
  29822. source: "./media/characters/purple-flame/headphones.svg"
  29823. }
  29824. },
  29825. },
  29826. [
  29827. {
  29828. name: "Really Small",
  29829. height: math.unit(5, "cm")
  29830. },
  29831. {
  29832. name: "Micro",
  29833. height: math.unit(1 + 5 / 12, "feet")
  29834. },
  29835. {
  29836. name: "Normal",
  29837. height: math.unit(3 + 5 / 12, "feet"),
  29838. default: true
  29839. },
  29840. {
  29841. name: "Minimacro",
  29842. height: math.unit(125, "feet")
  29843. },
  29844. {
  29845. name: "Macro",
  29846. height: math.unit(0.5, "miles")
  29847. },
  29848. {
  29849. name: "Megamacro",
  29850. height: math.unit(50, "miles")
  29851. },
  29852. {
  29853. name: "Gigantic",
  29854. height: math.unit(750, "miles")
  29855. },
  29856. {
  29857. name: "Planetary",
  29858. height: math.unit(15000, "miles")
  29859. },
  29860. ]
  29861. ))
  29862. characterMakers.push(() => makeCharacter(
  29863. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29864. {
  29865. front: {
  29866. height: math.unit(14, "feet"),
  29867. weight: math.unit(959, "lb"),
  29868. name: "Front",
  29869. image: {
  29870. source: "./media/characters/arsenal/front.svg",
  29871. extra: 2357 / 2157,
  29872. bottom: 93 / 2458
  29873. }
  29874. },
  29875. },
  29876. [
  29877. {
  29878. name: "Normal",
  29879. height: math.unit(14, "feet"),
  29880. default: true
  29881. },
  29882. ]
  29883. ))
  29884. characterMakers.push(() => makeCharacter(
  29885. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29886. {
  29887. front: {
  29888. height: math.unit(6, "feet"),
  29889. weight: math.unit(150, "lb"),
  29890. name: "Front",
  29891. image: {
  29892. source: "./media/characters/adira/front.svg",
  29893. extra: 2121/2013,
  29894. bottom: 206/2327
  29895. }
  29896. },
  29897. },
  29898. [
  29899. {
  29900. name: "Micro",
  29901. height: math.unit(4, "inches"),
  29902. default: true
  29903. },
  29904. {
  29905. name: "Macro",
  29906. height: math.unit(50, "feet")
  29907. },
  29908. ]
  29909. ))
  29910. characterMakers.push(() => makeCharacter(
  29911. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29912. {
  29913. front: {
  29914. height: math.unit(16, "feet"),
  29915. weight: math.unit(1000, "lb"),
  29916. name: "Front",
  29917. image: {
  29918. source: "./media/characters/grim/front.svg",
  29919. extra: 622 / 614,
  29920. bottom: 18.1 / 642
  29921. }
  29922. },
  29923. back: {
  29924. height: math.unit(16, "feet"),
  29925. weight: math.unit(1000, "lb"),
  29926. name: "Back",
  29927. image: {
  29928. source: "./media/characters/grim/back.svg",
  29929. extra: 610.6 / 602,
  29930. bottom: 40.8 / 652
  29931. }
  29932. },
  29933. hunched: {
  29934. height: math.unit(9.75, "feet"),
  29935. weight: math.unit(1000, "lb"),
  29936. name: "Hunched",
  29937. image: {
  29938. source: "./media/characters/grim/hunched.svg",
  29939. extra: 304 / 297,
  29940. bottom: 35.4 / 394
  29941. }
  29942. },
  29943. },
  29944. [
  29945. {
  29946. name: "Normal",
  29947. height: math.unit(16, "feet"),
  29948. default: true
  29949. },
  29950. ]
  29951. ))
  29952. characterMakers.push(() => makeCharacter(
  29953. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29954. {
  29955. front: {
  29956. height: math.unit(2.3, "meters"),
  29957. weight: math.unit(300, "lb"),
  29958. name: "Front",
  29959. image: {
  29960. source: "./media/characters/sinja/front-sfw.svg",
  29961. extra: 1393 / 1294,
  29962. bottom: 70 / 1463
  29963. }
  29964. },
  29965. frontNsfw: {
  29966. height: math.unit(2.3, "meters"),
  29967. weight: math.unit(300, "lb"),
  29968. name: "Front (NSFW)",
  29969. image: {
  29970. source: "./media/characters/sinja/front-nsfw.svg",
  29971. extra: 1393 / 1294,
  29972. bottom: 70 / 1463
  29973. }
  29974. },
  29975. back: {
  29976. height: math.unit(2.3, "meters"),
  29977. weight: math.unit(300, "lb"),
  29978. name: "Back",
  29979. image: {
  29980. source: "./media/characters/sinja/back.svg",
  29981. extra: 1393 / 1294,
  29982. bottom: 70 / 1463
  29983. }
  29984. },
  29985. head: {
  29986. height: math.unit(1.771, "feet"),
  29987. name: "Head",
  29988. image: {
  29989. source: "./media/characters/sinja/head.svg"
  29990. }
  29991. },
  29992. slit: {
  29993. height: math.unit(0.8, "feet"),
  29994. name: "Slit",
  29995. image: {
  29996. source: "./media/characters/sinja/slit.svg"
  29997. }
  29998. },
  29999. },
  30000. [
  30001. {
  30002. name: "Normal",
  30003. height: math.unit(2.3, "meters")
  30004. },
  30005. {
  30006. name: "Macro",
  30007. height: math.unit(91, "meters"),
  30008. default: true
  30009. },
  30010. {
  30011. name: "Megamacro",
  30012. height: math.unit(91440, "meters")
  30013. },
  30014. {
  30015. name: "Gigamacro",
  30016. height: math.unit(60960000, "meters")
  30017. },
  30018. {
  30019. name: "Teramacro",
  30020. height: math.unit(9144000000, "meters")
  30021. },
  30022. ]
  30023. ))
  30024. characterMakers.push(() => makeCharacter(
  30025. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  30026. {
  30027. front: {
  30028. height: math.unit(1.7, "meters"),
  30029. weight: math.unit(130, "lb"),
  30030. name: "Front",
  30031. image: {
  30032. source: "./media/characters/kyu/front.svg",
  30033. extra: 415 / 395,
  30034. bottom: 5 / 420
  30035. }
  30036. },
  30037. head: {
  30038. height: math.unit(1.75, "feet"),
  30039. name: "Head",
  30040. image: {
  30041. source: "./media/characters/kyu/head.svg"
  30042. }
  30043. },
  30044. foot: {
  30045. height: math.unit(0.81, "feet"),
  30046. name: "Foot",
  30047. image: {
  30048. source: "./media/characters/kyu/foot.svg"
  30049. }
  30050. },
  30051. },
  30052. [
  30053. {
  30054. name: "Normal",
  30055. height: math.unit(1.7, "meters")
  30056. },
  30057. {
  30058. name: "Macro",
  30059. height: math.unit(131, "feet"),
  30060. default: true
  30061. },
  30062. {
  30063. name: "Megamacro",
  30064. height: math.unit(91440, "meters")
  30065. },
  30066. {
  30067. name: "Gigamacro",
  30068. height: math.unit(60960000, "meters")
  30069. },
  30070. {
  30071. name: "Teramacro",
  30072. height: math.unit(9144000000, "meters")
  30073. },
  30074. ]
  30075. ))
  30076. characterMakers.push(() => makeCharacter(
  30077. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  30078. {
  30079. front: {
  30080. height: math.unit(7 + 1 / 12, "feet"),
  30081. weight: math.unit(250, "lb"),
  30082. name: "Front",
  30083. image: {
  30084. source: "./media/characters/joey/front.svg",
  30085. extra: 1791 / 1537,
  30086. bottom: 28 / 1816
  30087. }
  30088. },
  30089. },
  30090. [
  30091. {
  30092. name: "Micro",
  30093. height: math.unit(3, "inches")
  30094. },
  30095. {
  30096. name: "Normal",
  30097. height: math.unit(7 + 1 / 12, "feet"),
  30098. default: true
  30099. },
  30100. ]
  30101. ))
  30102. characterMakers.push(() => makeCharacter(
  30103. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  30104. {
  30105. front: {
  30106. height: math.unit(165, "cm"),
  30107. weight: math.unit(140, "lb"),
  30108. name: "Front",
  30109. image: {
  30110. source: "./media/characters/sam-evans/front.svg",
  30111. extra: 3417 / 3230,
  30112. bottom: 41.3 / 3417
  30113. }
  30114. },
  30115. frontSixTails: {
  30116. height: math.unit(165, "cm"),
  30117. weight: math.unit(140, "lb"),
  30118. name: "Front-six-tails",
  30119. image: {
  30120. source: "./media/characters/sam-evans/front-six-tails.svg",
  30121. extra: 3417 / 3230,
  30122. bottom: 41.3 / 3417
  30123. }
  30124. },
  30125. back: {
  30126. height: math.unit(165, "cm"),
  30127. weight: math.unit(140, "lb"),
  30128. name: "Back",
  30129. image: {
  30130. source: "./media/characters/sam-evans/back.svg",
  30131. extra: 3227 / 3032,
  30132. bottom: 6.8 / 3234
  30133. }
  30134. },
  30135. face: {
  30136. height: math.unit(0.68, "feet"),
  30137. name: "Face",
  30138. image: {
  30139. source: "./media/characters/sam-evans/face.svg"
  30140. }
  30141. },
  30142. },
  30143. [
  30144. {
  30145. name: "Normal",
  30146. height: math.unit(165, "cm"),
  30147. default: true
  30148. },
  30149. {
  30150. name: "Macro",
  30151. height: math.unit(100, "meters")
  30152. },
  30153. {
  30154. name: "Macro+",
  30155. height: math.unit(800, "meters")
  30156. },
  30157. {
  30158. name: "Macro++",
  30159. height: math.unit(3, "km")
  30160. },
  30161. {
  30162. name: "Macro+++",
  30163. height: math.unit(30, "km")
  30164. },
  30165. ]
  30166. ))
  30167. characterMakers.push(() => makeCharacter(
  30168. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  30169. {
  30170. front: {
  30171. height: math.unit(10, "feet"),
  30172. weight: math.unit(750, "lb"),
  30173. name: "Front",
  30174. image: {
  30175. source: "./media/characters/juliet-a/front.svg",
  30176. extra: 1766 / 1720,
  30177. bottom: 43 / 1809
  30178. }
  30179. },
  30180. back: {
  30181. height: math.unit(10, "feet"),
  30182. weight: math.unit(750, "lb"),
  30183. name: "Back",
  30184. image: {
  30185. source: "./media/characters/juliet-a/back.svg",
  30186. extra: 1781 / 1734,
  30187. bottom: 35 / 1810,
  30188. }
  30189. },
  30190. },
  30191. [
  30192. {
  30193. name: "Normal",
  30194. height: math.unit(10, "feet"),
  30195. default: true
  30196. },
  30197. {
  30198. name: "Dragon Form",
  30199. height: math.unit(250, "feet")
  30200. },
  30201. {
  30202. name: "Macro",
  30203. height: math.unit(1000, "feet")
  30204. },
  30205. {
  30206. name: "Megamacro",
  30207. height: math.unit(10000, "feet")
  30208. }
  30209. ]
  30210. ))
  30211. characterMakers.push(() => makeCharacter(
  30212. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  30213. {
  30214. regular: {
  30215. height: math.unit(7 + 3 / 12, "feet"),
  30216. weight: math.unit(260, "lb"),
  30217. name: "Regular",
  30218. image: {
  30219. source: "./media/characters/wild/regular.svg",
  30220. extra: 97.45 / 92,
  30221. bottom: 6.8 / 104.3
  30222. }
  30223. },
  30224. biggums: {
  30225. height: math.unit(8 + 6 / 12, "feet"),
  30226. weight: math.unit(425, "lb"),
  30227. name: "Biggums",
  30228. image: {
  30229. source: "./media/characters/wild/biggums.svg",
  30230. extra: 97.45 / 92,
  30231. bottom: 7.5 / 132.34
  30232. }
  30233. },
  30234. mawRegular: {
  30235. height: math.unit(1.24, "feet"),
  30236. name: "Maw (Regular)",
  30237. image: {
  30238. source: "./media/characters/wild/maw.svg"
  30239. }
  30240. },
  30241. mawBiggums: {
  30242. height: math.unit(1.47, "feet"),
  30243. name: "Maw (Biggums)",
  30244. image: {
  30245. source: "./media/characters/wild/maw.svg"
  30246. }
  30247. },
  30248. },
  30249. [
  30250. {
  30251. name: "Normal",
  30252. height: math.unit(7 + 3 / 12, "feet"),
  30253. default: true
  30254. },
  30255. ]
  30256. ))
  30257. characterMakers.push(() => makeCharacter(
  30258. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  30259. {
  30260. front: {
  30261. height: math.unit(2.5, "meters"),
  30262. weight: math.unit(200, "kg"),
  30263. name: "Front",
  30264. image: {
  30265. source: "./media/characters/vidar/front.svg",
  30266. extra: 2994 / 2795,
  30267. bottom: 56 / 3061
  30268. }
  30269. },
  30270. back: {
  30271. height: math.unit(2.5, "meters"),
  30272. weight: math.unit(200, "kg"),
  30273. name: "Back",
  30274. image: {
  30275. source: "./media/characters/vidar/back.svg",
  30276. extra: 3131 / 2928,
  30277. bottom: 13.5 / 3141.5
  30278. }
  30279. },
  30280. feral: {
  30281. height: math.unit(2.5, "meters"),
  30282. weight: math.unit(2000, "kg"),
  30283. name: "Feral",
  30284. image: {
  30285. source: "./media/characters/vidar/feral.svg",
  30286. extra: 2790 / 1765,
  30287. bottom: 6 / 2796
  30288. }
  30289. },
  30290. },
  30291. [
  30292. {
  30293. name: "Normal",
  30294. height: math.unit(2.5, "meters"),
  30295. default: true
  30296. },
  30297. {
  30298. name: "Macro",
  30299. height: math.unit(100, "meters")
  30300. },
  30301. ]
  30302. ))
  30303. characterMakers.push(() => makeCharacter(
  30304. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  30305. {
  30306. front: {
  30307. height: math.unit(5 + 9 / 12, "feet"),
  30308. weight: math.unit(120, "lb"),
  30309. name: "Front",
  30310. image: {
  30311. source: "./media/characters/ash/front.svg",
  30312. extra: 2189 / 1961,
  30313. bottom: 5.2 / 2194
  30314. }
  30315. },
  30316. },
  30317. [
  30318. {
  30319. name: "Normal",
  30320. height: math.unit(5 + 9 / 12, "feet"),
  30321. default: true
  30322. },
  30323. ]
  30324. ))
  30325. characterMakers.push(() => makeCharacter(
  30326. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  30327. {
  30328. front: {
  30329. height: math.unit(9, "feet"),
  30330. weight: math.unit(10000, "lb"),
  30331. name: "Front",
  30332. image: {
  30333. source: "./media/characters/gygabite/front.svg",
  30334. bottom: 31.7 / 537.8,
  30335. extra: 505 / 370
  30336. }
  30337. },
  30338. },
  30339. [
  30340. {
  30341. name: "Normal",
  30342. height: math.unit(9, "feet"),
  30343. default: true
  30344. },
  30345. ]
  30346. ))
  30347. characterMakers.push(() => makeCharacter(
  30348. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  30349. {
  30350. front: {
  30351. height: math.unit(12, "feet"),
  30352. weight: math.unit(4000, "lb"),
  30353. name: "Front",
  30354. image: {
  30355. source: "./media/characters/p0tat0/front.svg",
  30356. extra: 1065 / 921,
  30357. bottom: 55.7 / 1121.25
  30358. }
  30359. },
  30360. },
  30361. [
  30362. {
  30363. name: "Normal",
  30364. height: math.unit(12, "feet"),
  30365. default: true
  30366. },
  30367. ]
  30368. ))
  30369. characterMakers.push(() => makeCharacter(
  30370. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  30371. {
  30372. side: {
  30373. height: math.unit(6.5, "feet"),
  30374. weight: math.unit(800, "lb"),
  30375. name: "Side",
  30376. image: {
  30377. source: "./media/characters/dusk/side.svg",
  30378. extra: 615 / 373,
  30379. bottom: 53 / 664
  30380. }
  30381. },
  30382. sitting: {
  30383. height: math.unit(7, "feet"),
  30384. weight: math.unit(800, "lb"),
  30385. name: "Sitting",
  30386. image: {
  30387. source: "./media/characters/dusk/sitting.svg",
  30388. extra: 753 / 425,
  30389. bottom: 33 / 774
  30390. }
  30391. },
  30392. head: {
  30393. height: math.unit(6.1, "feet"),
  30394. name: "Head",
  30395. image: {
  30396. source: "./media/characters/dusk/head.svg"
  30397. }
  30398. },
  30399. },
  30400. [
  30401. {
  30402. name: "Normal",
  30403. height: math.unit(7, "feet"),
  30404. default: true
  30405. },
  30406. ]
  30407. ))
  30408. characterMakers.push(() => makeCharacter(
  30409. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  30410. {
  30411. front: {
  30412. height: math.unit(15, "feet"),
  30413. weight: math.unit(7000, "lb"),
  30414. name: "Front",
  30415. image: {
  30416. source: "./media/characters/jay-direwolf/front.svg",
  30417. extra: 1810 / 1732,
  30418. bottom: 66 / 1892
  30419. }
  30420. },
  30421. },
  30422. [
  30423. {
  30424. name: "Normal",
  30425. height: math.unit(15, "feet"),
  30426. default: true
  30427. },
  30428. ]
  30429. ))
  30430. characterMakers.push(() => makeCharacter(
  30431. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  30432. {
  30433. front: {
  30434. height: math.unit(4 + 9 / 12, "feet"),
  30435. weight: math.unit(130, "lb"),
  30436. name: "Front",
  30437. image: {
  30438. source: "./media/characters/anchovie/front.svg",
  30439. extra: 382 / 350,
  30440. bottom: 25 / 409
  30441. }
  30442. },
  30443. back: {
  30444. height: math.unit(4 + 9 / 12, "feet"),
  30445. weight: math.unit(130, "lb"),
  30446. name: "Back",
  30447. image: {
  30448. source: "./media/characters/anchovie/back.svg",
  30449. extra: 385 / 352,
  30450. bottom: 16.6 / 402
  30451. }
  30452. },
  30453. frontDressed: {
  30454. height: math.unit(4 + 9 / 12, "feet"),
  30455. weight: math.unit(130, "lb"),
  30456. name: "Front (Dressed)",
  30457. image: {
  30458. source: "./media/characters/anchovie/front-dressed.svg",
  30459. extra: 382 / 350,
  30460. bottom: 25 / 409
  30461. }
  30462. },
  30463. backDressed: {
  30464. height: math.unit(4 + 9 / 12, "feet"),
  30465. weight: math.unit(130, "lb"),
  30466. name: "Back (Dressed)",
  30467. image: {
  30468. source: "./media/characters/anchovie/back-dressed.svg",
  30469. extra: 385 / 352,
  30470. bottom: 16.6 / 402
  30471. }
  30472. },
  30473. },
  30474. [
  30475. {
  30476. name: "Micro",
  30477. height: math.unit(6.4, "inches")
  30478. },
  30479. {
  30480. name: "Normal",
  30481. height: math.unit(4 + 9 / 12, "feet"),
  30482. default: true
  30483. },
  30484. ]
  30485. ))
  30486. characterMakers.push(() => makeCharacter(
  30487. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  30488. {
  30489. front: {
  30490. height: math.unit(2, "meters"),
  30491. weight: math.unit(180, "lb"),
  30492. name: "Front",
  30493. image: {
  30494. source: "./media/characters/acidrenamon/front.svg",
  30495. extra: 987 / 890,
  30496. bottom: 22.8 / 1009
  30497. }
  30498. },
  30499. back: {
  30500. height: math.unit(2, "meters"),
  30501. weight: math.unit(180, "lb"),
  30502. name: "Back",
  30503. image: {
  30504. source: "./media/characters/acidrenamon/back.svg",
  30505. extra: 983 / 891,
  30506. bottom: 8.4 / 992
  30507. }
  30508. },
  30509. head: {
  30510. height: math.unit(1.92, "feet"),
  30511. name: "Head",
  30512. image: {
  30513. source: "./media/characters/acidrenamon/head.svg"
  30514. }
  30515. },
  30516. rump: {
  30517. height: math.unit(1.72, "feet"),
  30518. name: "Rump",
  30519. image: {
  30520. source: "./media/characters/acidrenamon/rump.svg"
  30521. }
  30522. },
  30523. tail: {
  30524. height: math.unit(4.2, "feet"),
  30525. name: "Tail",
  30526. image: {
  30527. source: "./media/characters/acidrenamon/tail.svg"
  30528. }
  30529. },
  30530. },
  30531. [
  30532. {
  30533. name: "Normal",
  30534. height: math.unit(2, "meters"),
  30535. default: true
  30536. },
  30537. {
  30538. name: "Minimacro",
  30539. height: math.unit(7, "meters")
  30540. },
  30541. {
  30542. name: "Macro",
  30543. height: math.unit(200, "meters")
  30544. },
  30545. {
  30546. name: "Gigamacro",
  30547. height: math.unit(0.2, "earths")
  30548. },
  30549. ]
  30550. ))
  30551. characterMakers.push(() => makeCharacter(
  30552. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  30553. {
  30554. front: {
  30555. height: math.unit(152, "feet"),
  30556. name: "Front",
  30557. image: {
  30558. source: "./media/characters/kenzie-lee/front.svg",
  30559. extra: 1869/1774,
  30560. bottom: 128/1997
  30561. }
  30562. },
  30563. side: {
  30564. height: math.unit(86, "feet"),
  30565. name: "Side",
  30566. image: {
  30567. source: "./media/characters/kenzie-lee/side.svg",
  30568. extra: 930/815,
  30569. bottom: 177/1107
  30570. }
  30571. },
  30572. paw: {
  30573. height: math.unit(15, "feet"),
  30574. name: "Paw",
  30575. image: {
  30576. source: "./media/characters/kenzie-lee/paw.svg"
  30577. }
  30578. },
  30579. },
  30580. [
  30581. {
  30582. name: "Kenzie Flea",
  30583. height: math.unit(2, "mm"),
  30584. default: true
  30585. },
  30586. {
  30587. name: "Micro",
  30588. height: math.unit(2, "inches")
  30589. },
  30590. {
  30591. name: "Normal",
  30592. height: math.unit(152, "feet")
  30593. },
  30594. {
  30595. name: "Megamacro",
  30596. height: math.unit(7, "miles")
  30597. },
  30598. {
  30599. name: "Gigamacro",
  30600. height: math.unit(8000, "miles")
  30601. },
  30602. ]
  30603. ))
  30604. characterMakers.push(() => makeCharacter(
  30605. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  30606. {
  30607. front: {
  30608. height: math.unit(6, "feet"),
  30609. name: "Front",
  30610. image: {
  30611. source: "./media/characters/withers/front.svg",
  30612. extra: 1935/1760,
  30613. bottom: 72/2007
  30614. }
  30615. },
  30616. back: {
  30617. height: math.unit(6, "feet"),
  30618. name: "Back",
  30619. image: {
  30620. source: "./media/characters/withers/back.svg",
  30621. extra: 1944/1792,
  30622. bottom: 12/1956
  30623. }
  30624. },
  30625. dressed: {
  30626. height: math.unit(6, "feet"),
  30627. name: "Dressed",
  30628. image: {
  30629. source: "./media/characters/withers/dressed.svg",
  30630. extra: 1937/1765,
  30631. bottom: 73/2010
  30632. }
  30633. },
  30634. phase1: {
  30635. height: math.unit(1.1, "feet"),
  30636. name: "Phase 1",
  30637. image: {
  30638. source: "./media/characters/withers/phase-1.svg",
  30639. extra: 1885/1232,
  30640. bottom: 0/1885
  30641. }
  30642. },
  30643. phase2: {
  30644. height: math.unit(1.05, "feet"),
  30645. name: "Phase 2",
  30646. image: {
  30647. source: "./media/characters/withers/phase-2.svg",
  30648. extra: 1792/1090,
  30649. bottom: 0/1792
  30650. }
  30651. },
  30652. partyWipe: {
  30653. height: math.unit(1.1, "feet"),
  30654. name: "Party Wipe",
  30655. image: {
  30656. source: "./media/characters/withers/party-wipe.svg",
  30657. extra: 1864/1207,
  30658. bottom: 0/1864
  30659. }
  30660. },
  30661. },
  30662. [
  30663. {
  30664. name: "Macro",
  30665. height: math.unit(167, "feet"),
  30666. default: true
  30667. },
  30668. {
  30669. name: "Megamacro",
  30670. height: math.unit(15, "miles")
  30671. }
  30672. ]
  30673. ))
  30674. characterMakers.push(() => makeCharacter(
  30675. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  30676. {
  30677. front: {
  30678. height: math.unit(6 + 7 / 12, "feet"),
  30679. weight: math.unit(250, "lb"),
  30680. name: "Front",
  30681. image: {
  30682. source: "./media/characters/nemoskii/front.svg",
  30683. extra: 2270 / 1734,
  30684. bottom: 86 / 2354
  30685. }
  30686. },
  30687. back: {
  30688. height: math.unit(6 + 7 / 12, "feet"),
  30689. weight: math.unit(250, "lb"),
  30690. name: "Back",
  30691. image: {
  30692. source: "./media/characters/nemoskii/back.svg",
  30693. extra: 1845 / 1788,
  30694. bottom: 10.5 / 1852
  30695. }
  30696. },
  30697. head: {
  30698. height: math.unit(1.31, "feet"),
  30699. name: "Head",
  30700. image: {
  30701. source: "./media/characters/nemoskii/head.svg"
  30702. }
  30703. },
  30704. },
  30705. [
  30706. {
  30707. name: "Micro",
  30708. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30709. },
  30710. {
  30711. name: "Normal",
  30712. height: math.unit(6 + 7 / 12, "feet"),
  30713. default: true
  30714. },
  30715. {
  30716. name: "Macro",
  30717. height: math.unit((6 + 7 / 12) * 150, "feet")
  30718. },
  30719. {
  30720. name: "Macro+",
  30721. height: math.unit((6 + 7 / 12) * 500, "feet")
  30722. },
  30723. {
  30724. name: "Megamacro",
  30725. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30726. },
  30727. ]
  30728. ))
  30729. characterMakers.push(() => makeCharacter(
  30730. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30731. {
  30732. front: {
  30733. height: math.unit(1, "mile"),
  30734. weight: math.unit(265261.9, "lb"),
  30735. name: "Front",
  30736. image: {
  30737. source: "./media/characters/shui/front.svg",
  30738. extra: 1633 / 1564,
  30739. bottom: 91.5 / 1726
  30740. }
  30741. },
  30742. },
  30743. [
  30744. {
  30745. name: "Macro",
  30746. height: math.unit(1, "mile"),
  30747. default: true
  30748. },
  30749. ]
  30750. ))
  30751. characterMakers.push(() => makeCharacter(
  30752. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30753. {
  30754. front: {
  30755. height: math.unit(12 + 6 / 12, "feet"),
  30756. weight: math.unit(1342, "lb"),
  30757. name: "Front",
  30758. image: {
  30759. source: "./media/characters/arokh-takakura/front.svg",
  30760. extra: 1089 / 1043,
  30761. bottom: 77.4 / 1176.7
  30762. }
  30763. },
  30764. back: {
  30765. height: math.unit(12 + 6 / 12, "feet"),
  30766. weight: math.unit(1342, "lb"),
  30767. name: "Back",
  30768. image: {
  30769. source: "./media/characters/arokh-takakura/back.svg",
  30770. extra: 1046 / 1019,
  30771. bottom: 102 / 1150
  30772. }
  30773. },
  30774. },
  30775. [
  30776. {
  30777. name: "Big",
  30778. height: math.unit(12 + 6 / 12, "feet"),
  30779. default: true
  30780. },
  30781. ]
  30782. ))
  30783. characterMakers.push(() => makeCharacter(
  30784. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30785. {
  30786. front: {
  30787. height: math.unit(5 + 6 / 12, "feet"),
  30788. weight: math.unit(150, "lb"),
  30789. name: "Front",
  30790. image: {
  30791. source: "./media/characters/theo/front.svg",
  30792. extra: 1184 / 1131,
  30793. bottom: 7.4 / 1191
  30794. }
  30795. },
  30796. },
  30797. [
  30798. {
  30799. name: "Micro",
  30800. height: math.unit(5, "inches")
  30801. },
  30802. {
  30803. name: "Normal",
  30804. height: math.unit(5 + 6 / 12, "feet"),
  30805. default: true
  30806. },
  30807. ]
  30808. ))
  30809. characterMakers.push(() => makeCharacter(
  30810. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30811. {
  30812. front: {
  30813. height: math.unit(5 + 9 / 12, "feet"),
  30814. weight: math.unit(130, "lb"),
  30815. name: "Front",
  30816. image: {
  30817. source: "./media/characters/cecelia-swift/front.svg",
  30818. extra: 502 / 484,
  30819. bottom: 23 / 523
  30820. }
  30821. },
  30822. back: {
  30823. height: math.unit(5 + 9 / 12, "feet"),
  30824. weight: math.unit(130, "lb"),
  30825. name: "Back",
  30826. image: {
  30827. source: "./media/characters/cecelia-swift/back.svg",
  30828. extra: 499 / 485,
  30829. bottom: 12 / 511
  30830. }
  30831. },
  30832. head: {
  30833. height: math.unit(0.90, "feet"),
  30834. name: "Head",
  30835. image: {
  30836. source: "./media/characters/cecelia-swift/head.svg"
  30837. }
  30838. },
  30839. rump: {
  30840. height: math.unit(1.75, "feet"),
  30841. name: "Rump",
  30842. image: {
  30843. source: "./media/characters/cecelia-swift/rump.svg"
  30844. }
  30845. },
  30846. },
  30847. [
  30848. {
  30849. name: "Normal",
  30850. height: math.unit(5 + 9 / 12, "feet"),
  30851. default: true
  30852. },
  30853. {
  30854. name: "Big",
  30855. height: math.unit(50, "feet")
  30856. },
  30857. {
  30858. name: "Macro",
  30859. height: math.unit(100, "feet")
  30860. },
  30861. {
  30862. name: "Macro+",
  30863. height: math.unit(500, "feet")
  30864. },
  30865. {
  30866. name: "Macro++",
  30867. height: math.unit(1000, "feet")
  30868. },
  30869. ]
  30870. ))
  30871. characterMakers.push(() => makeCharacter(
  30872. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30873. {
  30874. front: {
  30875. height: math.unit(6, "feet"),
  30876. weight: math.unit(150, "lb"),
  30877. name: "Front",
  30878. image: {
  30879. source: "./media/characters/kaunan/front.svg",
  30880. extra: 2890 / 2523,
  30881. bottom: 49 / 2939
  30882. }
  30883. },
  30884. },
  30885. [
  30886. {
  30887. name: "Macro",
  30888. height: math.unit(150, "feet"),
  30889. default: true
  30890. },
  30891. ]
  30892. ))
  30893. characterMakers.push(() => makeCharacter(
  30894. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30895. {
  30896. dressed: {
  30897. height: math.unit(175, "cm"),
  30898. weight: math.unit(60, "kg"),
  30899. name: "Dressed",
  30900. image: {
  30901. source: "./media/characters/fei/dressed.svg",
  30902. extra: 1402/1278,
  30903. bottom: 27/1429
  30904. }
  30905. },
  30906. nude: {
  30907. height: math.unit(175, "cm"),
  30908. weight: math.unit(60, "kg"),
  30909. name: "Nude",
  30910. image: {
  30911. source: "./media/characters/fei/nude.svg",
  30912. extra: 1402/1278,
  30913. bottom: 27/1429
  30914. }
  30915. },
  30916. heels: {
  30917. height: math.unit(0.466, "feet"),
  30918. name: "Heels",
  30919. image: {
  30920. source: "./media/characters/fei/heels.svg",
  30921. extra: 156/152,
  30922. bottom: 28/184
  30923. }
  30924. },
  30925. },
  30926. [
  30927. {
  30928. name: "Mortal",
  30929. height: math.unit(175, "cm")
  30930. },
  30931. {
  30932. name: "Normal",
  30933. height: math.unit(3500, "m")
  30934. },
  30935. {
  30936. name: "Stroll",
  30937. height: math.unit(18.4, "km"),
  30938. default: true
  30939. },
  30940. {
  30941. name: "Showoff",
  30942. height: math.unit(175, "km")
  30943. },
  30944. ]
  30945. ))
  30946. characterMakers.push(() => makeCharacter(
  30947. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30948. {
  30949. front: {
  30950. height: math.unit(7, "feet"),
  30951. weight: math.unit(1000, "kg"),
  30952. name: "Front",
  30953. image: {
  30954. source: "./media/characters/edrax/front.svg",
  30955. extra: 2838 / 2550,
  30956. bottom: 130 / 2968
  30957. }
  30958. },
  30959. },
  30960. [
  30961. {
  30962. name: "Small",
  30963. height: math.unit(7, "feet")
  30964. },
  30965. {
  30966. name: "Normal",
  30967. height: math.unit(1500, "meters")
  30968. },
  30969. {
  30970. name: "Mega",
  30971. height: math.unit(12000000, "km"),
  30972. default: true
  30973. },
  30974. {
  30975. name: "Megamacro",
  30976. height: math.unit(10600000, "lightyears")
  30977. },
  30978. {
  30979. name: "Hypermacro",
  30980. height: math.unit(256, "yottameters")
  30981. },
  30982. ]
  30983. ))
  30984. characterMakers.push(() => makeCharacter(
  30985. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30986. {
  30987. front: {
  30988. height: math.unit(10, "feet"),
  30989. weight: math.unit(750, "lb"),
  30990. name: "Front",
  30991. image: {
  30992. source: "./media/characters/clove/front.svg",
  30993. extra: 1918/1751,
  30994. bottom: 52/1970
  30995. }
  30996. },
  30997. back: {
  30998. height: math.unit(10, "feet"),
  30999. weight: math.unit(750, "lb"),
  31000. name: "Back",
  31001. image: {
  31002. source: "./media/characters/clove/back.svg",
  31003. extra: 1912/1747,
  31004. bottom: 50/1962
  31005. }
  31006. },
  31007. },
  31008. [
  31009. {
  31010. name: "Normal",
  31011. height: math.unit(10, "feet"),
  31012. default: true
  31013. },
  31014. ]
  31015. ))
  31016. characterMakers.push(() => makeCharacter(
  31017. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  31018. {
  31019. front: {
  31020. height: math.unit(4, "feet"),
  31021. weight: math.unit(50, "lb"),
  31022. name: "Front",
  31023. image: {
  31024. source: "./media/characters/alex-rabbit/front.svg",
  31025. extra: 507 / 458,
  31026. bottom: 18.5 / 527
  31027. }
  31028. },
  31029. back: {
  31030. height: math.unit(4, "feet"),
  31031. weight: math.unit(50, "lb"),
  31032. name: "Back",
  31033. image: {
  31034. source: "./media/characters/alex-rabbit/back.svg",
  31035. extra: 502 / 460,
  31036. bottom: 18.9 / 521
  31037. }
  31038. },
  31039. },
  31040. [
  31041. {
  31042. name: "Normal",
  31043. height: math.unit(4, "feet"),
  31044. default: true
  31045. },
  31046. ]
  31047. ))
  31048. characterMakers.push(() => makeCharacter(
  31049. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  31050. {
  31051. front: {
  31052. height: math.unit(1 + 3 / 12, "feet"),
  31053. weight: math.unit(80, "lb"),
  31054. name: "Front",
  31055. image: {
  31056. source: "./media/characters/zander-rose/front.svg",
  31057. extra: 916 / 797,
  31058. bottom: 17 / 933
  31059. }
  31060. },
  31061. back: {
  31062. height: math.unit(1 + 3 / 12, "feet"),
  31063. weight: math.unit(80, "lb"),
  31064. name: "Back",
  31065. image: {
  31066. source: "./media/characters/zander-rose/back.svg",
  31067. extra: 903 / 779,
  31068. bottom: 31 / 934
  31069. }
  31070. },
  31071. },
  31072. [
  31073. {
  31074. name: "Normal",
  31075. height: math.unit(1 + 3 / 12, "feet"),
  31076. default: true
  31077. },
  31078. ]
  31079. ))
  31080. characterMakers.push(() => makeCharacter(
  31081. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  31082. {
  31083. anthro: {
  31084. height: math.unit(6, "feet"),
  31085. weight: math.unit(150, "lb"),
  31086. name: "Anthro",
  31087. image: {
  31088. source: "./media/characters/razz/anthro.svg",
  31089. extra: 1437 / 1343,
  31090. bottom: 48 / 1485
  31091. }
  31092. },
  31093. feral: {
  31094. height: math.unit(6, "feet"),
  31095. weight: math.unit(150, "lb"),
  31096. name: "Feral",
  31097. image: {
  31098. source: "./media/characters/razz/feral.svg",
  31099. extra: 2569 / 1385,
  31100. bottom: 95 / 2664
  31101. }
  31102. },
  31103. },
  31104. [
  31105. {
  31106. name: "Normal",
  31107. height: math.unit(6, "feet"),
  31108. default: true
  31109. },
  31110. ]
  31111. ))
  31112. characterMakers.push(() => makeCharacter(
  31113. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  31114. {
  31115. front: {
  31116. height: math.unit(9 + 4 / 12, "feet"),
  31117. weight: math.unit(500, "lb"),
  31118. name: "Front",
  31119. image: {
  31120. source: "./media/characters/morrigan/front.svg",
  31121. extra: 2707 / 2579,
  31122. bottom: 156 / 2863
  31123. }
  31124. },
  31125. },
  31126. [
  31127. {
  31128. name: "Normal",
  31129. height: math.unit(9 + 4 / 12, "feet"),
  31130. default: true
  31131. },
  31132. ]
  31133. ))
  31134. characterMakers.push(() => makeCharacter(
  31135. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  31136. {
  31137. front: {
  31138. height: math.unit(5, "stories"),
  31139. weight: math.unit(4000, "lb"),
  31140. name: "Front",
  31141. image: {
  31142. source: "./media/characters/jenene/front.svg",
  31143. extra: 1780 / 1710,
  31144. bottom: 57 / 1837
  31145. }
  31146. },
  31147. },
  31148. [
  31149. {
  31150. name: "Normal",
  31151. height: math.unit(5, "stories"),
  31152. default: true
  31153. },
  31154. ]
  31155. ))
  31156. characterMakers.push(() => makeCharacter(
  31157. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  31158. {
  31159. taurSfw: {
  31160. height: math.unit(10, "meters"),
  31161. weight: math.unit(17500, "kg"),
  31162. name: "Taur",
  31163. image: {
  31164. source: "./media/characters/faey/taur-sfw.svg",
  31165. extra: 1200 / 968,
  31166. bottom: 41 / 1241
  31167. }
  31168. },
  31169. chestmaw: {
  31170. height: math.unit(2.01, "meters"),
  31171. name: "Chestmaw",
  31172. image: {
  31173. source: "./media/characters/faey/chestmaw.svg"
  31174. }
  31175. },
  31176. foot: {
  31177. height: math.unit(2.43, "meters"),
  31178. name: "Foot",
  31179. image: {
  31180. source: "./media/characters/faey/foot.svg"
  31181. }
  31182. },
  31183. jaws: {
  31184. height: math.unit(1.66, "meters"),
  31185. name: "Jaws",
  31186. image: {
  31187. source: "./media/characters/faey/jaws.svg"
  31188. }
  31189. },
  31190. tongues: {
  31191. height: math.unit(2.01, "meters"),
  31192. name: "Tongues",
  31193. image: {
  31194. source: "./media/characters/faey/tongues.svg"
  31195. }
  31196. },
  31197. },
  31198. [
  31199. {
  31200. name: "Small",
  31201. height: math.unit(10, "meters"),
  31202. default: true
  31203. },
  31204. {
  31205. name: "Big",
  31206. height: math.unit(500000, "km")
  31207. },
  31208. ]
  31209. ))
  31210. characterMakers.push(() => makeCharacter(
  31211. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  31212. {
  31213. front: {
  31214. height: math.unit(7, "feet"),
  31215. weight: math.unit(275, "lb"),
  31216. name: "Front",
  31217. image: {
  31218. source: "./media/characters/roku/front.svg",
  31219. extra: 903 / 878,
  31220. bottom: 37 / 940
  31221. }
  31222. },
  31223. },
  31224. [
  31225. {
  31226. name: "Normal",
  31227. height: math.unit(7, "feet"),
  31228. default: true
  31229. },
  31230. {
  31231. name: "Macro",
  31232. height: math.unit(500, "feet")
  31233. },
  31234. {
  31235. name: "Megamacro",
  31236. height: math.unit(200, "miles")
  31237. },
  31238. ]
  31239. ))
  31240. characterMakers.push(() => makeCharacter(
  31241. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  31242. {
  31243. front: {
  31244. height: math.unit(6 + 2 / 12, "feet"),
  31245. weight: math.unit(150, "lb"),
  31246. name: "Front",
  31247. image: {
  31248. source: "./media/characters/lira/front.svg",
  31249. extra: 1727 / 1605,
  31250. bottom: 26 / 1753
  31251. }
  31252. },
  31253. back: {
  31254. height: math.unit(6 + 2 / 12, "feet"),
  31255. weight: math.unit(150, "lb"),
  31256. name: "Back",
  31257. image: {
  31258. source: "./media/characters/lira/back.svg",
  31259. extra: 1713/1621,
  31260. bottom: 20/1733
  31261. }
  31262. },
  31263. hand: {
  31264. height: math.unit(0.75, "feet"),
  31265. name: "Hand",
  31266. image: {
  31267. source: "./media/characters/lira/hand.svg"
  31268. }
  31269. },
  31270. maw: {
  31271. height: math.unit(0.65, "feet"),
  31272. name: "Maw",
  31273. image: {
  31274. source: "./media/characters/lira/maw.svg"
  31275. }
  31276. },
  31277. pawDigi: {
  31278. height: math.unit(1.6, "feet"),
  31279. name: "Paw Digi",
  31280. image: {
  31281. source: "./media/characters/lira/paw-digi.svg"
  31282. }
  31283. },
  31284. pawPlanti: {
  31285. height: math.unit(1.4, "feet"),
  31286. name: "Paw Planti",
  31287. image: {
  31288. source: "./media/characters/lira/paw-planti.svg"
  31289. }
  31290. },
  31291. },
  31292. [
  31293. {
  31294. name: "Normal",
  31295. height: math.unit(6 + 2 / 12, "feet"),
  31296. default: true
  31297. },
  31298. {
  31299. name: "Macro",
  31300. height: math.unit(100, "feet")
  31301. },
  31302. {
  31303. name: "Macro²",
  31304. height: math.unit(1600, "feet")
  31305. },
  31306. {
  31307. name: "Planetary",
  31308. height: math.unit(20, "earths")
  31309. },
  31310. ]
  31311. ))
  31312. characterMakers.push(() => makeCharacter(
  31313. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  31314. {
  31315. front: {
  31316. height: math.unit(6, "feet"),
  31317. weight: math.unit(150, "lb"),
  31318. name: "Front",
  31319. image: {
  31320. source: "./media/characters/hadjet/front.svg",
  31321. extra: 1480 / 1346,
  31322. bottom: 26 / 1506
  31323. }
  31324. },
  31325. frontNsfw: {
  31326. height: math.unit(6, "feet"),
  31327. weight: math.unit(150, "lb"),
  31328. name: "Front (NSFW)",
  31329. image: {
  31330. source: "./media/characters/hadjet/front-nsfw.svg",
  31331. extra: 1440 / 1358,
  31332. bottom: 52 / 1492
  31333. }
  31334. },
  31335. },
  31336. [
  31337. {
  31338. name: "Macro",
  31339. height: math.unit(10, "stories"),
  31340. default: true
  31341. },
  31342. {
  31343. name: "Megamacro",
  31344. height: math.unit(1.5, "miles")
  31345. },
  31346. {
  31347. name: "Megamacro+",
  31348. height: math.unit(5, "miles")
  31349. },
  31350. ]
  31351. ))
  31352. characterMakers.push(() => makeCharacter(
  31353. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  31354. {
  31355. side: {
  31356. height: math.unit(106, "feet"),
  31357. weight: math.unit(500, "tonnes"),
  31358. name: "Side",
  31359. image: {
  31360. source: "./media/characters/kodran/side.svg",
  31361. extra: 553 / 480,
  31362. bottom: 33 / 586
  31363. }
  31364. },
  31365. front: {
  31366. height: math.unit(132, "feet"),
  31367. weight: math.unit(500, "tonnes"),
  31368. name: "Front",
  31369. image: {
  31370. source: "./media/characters/kodran/front.svg",
  31371. extra: 667 / 643,
  31372. bottom: 42 / 709
  31373. }
  31374. },
  31375. flying: {
  31376. height: math.unit(350, "feet"),
  31377. weight: math.unit(500, "tonnes"),
  31378. name: "Flying",
  31379. image: {
  31380. source: "./media/characters/kodran/flying.svg"
  31381. }
  31382. },
  31383. foot: {
  31384. height: math.unit(33, "feet"),
  31385. name: "Foot",
  31386. image: {
  31387. source: "./media/characters/kodran/foot.svg"
  31388. }
  31389. },
  31390. footFront: {
  31391. height: math.unit(19, "feet"),
  31392. name: "Foot (Front)",
  31393. image: {
  31394. source: "./media/characters/kodran/foot-front.svg",
  31395. extra: 261 / 261,
  31396. bottom: 91 / 352
  31397. }
  31398. },
  31399. headFront: {
  31400. height: math.unit(53, "feet"),
  31401. name: "Head (Front)",
  31402. image: {
  31403. source: "./media/characters/kodran/head-front.svg"
  31404. }
  31405. },
  31406. headSide: {
  31407. height: math.unit(65, "feet"),
  31408. name: "Head (Side)",
  31409. image: {
  31410. source: "./media/characters/kodran/head-side.svg"
  31411. }
  31412. },
  31413. throat: {
  31414. height: math.unit(79, "feet"),
  31415. name: "Throat",
  31416. image: {
  31417. source: "./media/characters/kodran/throat.svg"
  31418. }
  31419. },
  31420. },
  31421. [
  31422. {
  31423. name: "Large",
  31424. height: math.unit(106, "feet"),
  31425. default: true
  31426. },
  31427. ]
  31428. ))
  31429. characterMakers.push(() => makeCharacter(
  31430. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  31431. {
  31432. side: {
  31433. height: math.unit(11, "feet"),
  31434. weight: math.unit(150, "lb"),
  31435. name: "Side",
  31436. image: {
  31437. source: "./media/characters/pyxaron/side.svg",
  31438. extra: 305 / 195,
  31439. bottom: 17 / 322
  31440. }
  31441. },
  31442. },
  31443. [
  31444. {
  31445. name: "Normal",
  31446. height: math.unit(11, "feet"),
  31447. default: true
  31448. },
  31449. ]
  31450. ))
  31451. characterMakers.push(() => makeCharacter(
  31452. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  31453. {
  31454. front: {
  31455. height: math.unit(6, "feet"),
  31456. weight: math.unit(150, "lb"),
  31457. name: "Front",
  31458. image: {
  31459. source: "./media/characters/meep/front.svg",
  31460. extra: 88 / 80,
  31461. bottom: 6 / 94
  31462. }
  31463. },
  31464. },
  31465. [
  31466. {
  31467. name: "Fun Sized",
  31468. height: math.unit(2, "inches"),
  31469. default: true
  31470. },
  31471. {
  31472. name: "Friend Sized",
  31473. height: math.unit(8, "inches")
  31474. },
  31475. ]
  31476. ))
  31477. characterMakers.push(() => makeCharacter(
  31478. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  31479. {
  31480. front: {
  31481. height: math.unit(15, "feet"),
  31482. weight: math.unit(2500, "lb"),
  31483. name: "Front",
  31484. image: {
  31485. source: "./media/characters/holly-rabbit/front.svg",
  31486. extra: 1433 / 1233,
  31487. bottom: 125 / 1558
  31488. }
  31489. },
  31490. dick: {
  31491. height: math.unit(4.6, "feet"),
  31492. name: "Dick",
  31493. image: {
  31494. source: "./media/characters/holly-rabbit/dick.svg"
  31495. }
  31496. },
  31497. },
  31498. [
  31499. {
  31500. name: "Normal",
  31501. height: math.unit(15, "feet"),
  31502. default: true
  31503. },
  31504. {
  31505. name: "Macro",
  31506. height: math.unit(250, "feet")
  31507. },
  31508. {
  31509. name: "Macro+",
  31510. height: math.unit(2500, "feet")
  31511. },
  31512. ]
  31513. ))
  31514. characterMakers.push(() => makeCharacter(
  31515. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  31516. {
  31517. front: {
  31518. height: math.unit(3.02, "meters"),
  31519. weight: math.unit(500, "kg"),
  31520. name: "Front",
  31521. image: {
  31522. source: "./media/characters/drena/front.svg",
  31523. extra: 282 / 243,
  31524. bottom: 8 / 290
  31525. }
  31526. },
  31527. side: {
  31528. height: math.unit(3.02, "meters"),
  31529. weight: math.unit(500, "kg"),
  31530. name: "Side",
  31531. image: {
  31532. source: "./media/characters/drena/side.svg",
  31533. extra: 280 / 245,
  31534. bottom: 10 / 290
  31535. }
  31536. },
  31537. back: {
  31538. height: math.unit(3.02, "meters"),
  31539. weight: math.unit(500, "kg"),
  31540. name: "Back",
  31541. image: {
  31542. source: "./media/characters/drena/back.svg",
  31543. extra: 278 / 243,
  31544. bottom: 2 / 280
  31545. }
  31546. },
  31547. foot: {
  31548. height: math.unit(0.75, "meters"),
  31549. name: "Foot",
  31550. image: {
  31551. source: "./media/characters/drena/foot.svg"
  31552. }
  31553. },
  31554. maw: {
  31555. height: math.unit(0.82, "meters"),
  31556. name: "Maw",
  31557. image: {
  31558. source: "./media/characters/drena/maw.svg"
  31559. }
  31560. },
  31561. eating: {
  31562. height: math.unit(0.75, "meters"),
  31563. name: "Eating",
  31564. image: {
  31565. source: "./media/characters/drena/eating.svg"
  31566. }
  31567. },
  31568. rump: {
  31569. height: math.unit(0.93, "meters"),
  31570. name: "Rump",
  31571. image: {
  31572. source: "./media/characters/drena/rump.svg"
  31573. }
  31574. },
  31575. },
  31576. [
  31577. {
  31578. name: "Normal",
  31579. height: math.unit(3.02, "meters"),
  31580. default: true
  31581. },
  31582. ]
  31583. ))
  31584. characterMakers.push(() => makeCharacter(
  31585. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  31586. {
  31587. front: {
  31588. height: math.unit(6 + 4 / 12, "feet"),
  31589. weight: math.unit(250, "lb"),
  31590. name: "Front",
  31591. image: {
  31592. source: "./media/characters/remmyzilla/front.svg",
  31593. extra: 4033 / 3588,
  31594. bottom: 123 / 4156
  31595. }
  31596. },
  31597. back: {
  31598. height: math.unit(6 + 4 / 12, "feet"),
  31599. weight: math.unit(250, "lb"),
  31600. name: "Back",
  31601. image: {
  31602. source: "./media/characters/remmyzilla/back.svg",
  31603. extra: 1696/1602,
  31604. bottom: 63/1759
  31605. }
  31606. },
  31607. paw: {
  31608. height: math.unit(1.73, "feet"),
  31609. name: "Paw",
  31610. image: {
  31611. source: "./media/characters/remmyzilla/paw.svg"
  31612. },
  31613. extraAttributes: {
  31614. "toeSize": {
  31615. name: "Toe Size",
  31616. power: 2,
  31617. type: "area",
  31618. base: math.unit(0.0035, "m^2")
  31619. },
  31620. "padSize": {
  31621. name: "Pad Size",
  31622. power: 2,
  31623. type: "area",
  31624. base: math.unit(0.015, "m^2")
  31625. },
  31626. "pawsize": {
  31627. name: "Paw Size",
  31628. power: 2,
  31629. type: "area",
  31630. base: math.unit(0.072, "m^2")
  31631. },
  31632. }
  31633. },
  31634. maw: {
  31635. height: math.unit(1.73, "feet"),
  31636. name: "Maw",
  31637. image: {
  31638. source: "./media/characters/remmyzilla/maw.svg"
  31639. }
  31640. },
  31641. },
  31642. [
  31643. {
  31644. name: "Normal",
  31645. height: math.unit(6 + 4 / 12, "feet")
  31646. },
  31647. {
  31648. name: "Minimacro",
  31649. height: math.unit(12 + 8 / 12, "feet")
  31650. },
  31651. {
  31652. name: "Normal",
  31653. height: math.unit(640, "feet"),
  31654. default: true
  31655. },
  31656. {
  31657. name: "Megamacro",
  31658. height: math.unit(6400, "feet")
  31659. },
  31660. {
  31661. name: "Gigamacro",
  31662. height: math.unit(64000, "miles")
  31663. },
  31664. ]
  31665. ))
  31666. characterMakers.push(() => makeCharacter(
  31667. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  31668. {
  31669. front: {
  31670. height: math.unit(2.5, "meters"),
  31671. weight: math.unit(300, "lb"),
  31672. name: "Front",
  31673. image: {
  31674. source: "./media/characters/lawrence/front.svg",
  31675. extra: 357 / 335,
  31676. bottom: 30 / 387
  31677. }
  31678. },
  31679. back: {
  31680. height: math.unit(2.5, "meters"),
  31681. weight: math.unit(300, "lb"),
  31682. name: "Back",
  31683. image: {
  31684. source: "./media/characters/lawrence/back.svg",
  31685. extra: 357 / 338,
  31686. bottom: 16 / 373
  31687. }
  31688. },
  31689. head: {
  31690. height: math.unit(0.9, "meter"),
  31691. name: "Head",
  31692. image: {
  31693. source: "./media/characters/lawrence/head.svg"
  31694. }
  31695. },
  31696. maw: {
  31697. height: math.unit(0.7, "meter"),
  31698. name: "Maw",
  31699. image: {
  31700. source: "./media/characters/lawrence/maw.svg"
  31701. }
  31702. },
  31703. footBottom: {
  31704. height: math.unit(0.5, "meter"),
  31705. name: "Foot (Bottom)",
  31706. image: {
  31707. source: "./media/characters/lawrence/foot-bottom.svg"
  31708. }
  31709. },
  31710. footTop: {
  31711. height: math.unit(0.5, "meter"),
  31712. name: "Foot (Top)",
  31713. image: {
  31714. source: "./media/characters/lawrence/foot-top.svg"
  31715. }
  31716. },
  31717. },
  31718. [
  31719. {
  31720. name: "Normal",
  31721. height: math.unit(2.5, "meters"),
  31722. default: true
  31723. },
  31724. {
  31725. name: "Macro",
  31726. height: math.unit(95, "meters")
  31727. },
  31728. {
  31729. name: "Megamacro",
  31730. height: math.unit(150, "km")
  31731. },
  31732. ]
  31733. ))
  31734. characterMakers.push(() => makeCharacter(
  31735. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31736. {
  31737. front: {
  31738. height: math.unit(4.2, "meters"),
  31739. preyCapacity: math.unit(50, "m^3"),
  31740. weight: math.unit(30, "tonnes"),
  31741. name: "Front",
  31742. image: {
  31743. source: "./media/characters/sydney/front.svg",
  31744. extra: 1177/1129,
  31745. bottom: 197/1374
  31746. },
  31747. extraAttributes: {
  31748. "length": {
  31749. name: "Length",
  31750. power: 1,
  31751. type: "length",
  31752. base: math.unit(21, "meters")
  31753. },
  31754. }
  31755. },
  31756. },
  31757. [
  31758. {
  31759. name: "Normal",
  31760. height: math.unit(4.2, "meters"),
  31761. default: true
  31762. },
  31763. ]
  31764. ))
  31765. characterMakers.push(() => makeCharacter(
  31766. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31767. {
  31768. back: {
  31769. height: math.unit(201, "feet"),
  31770. name: "Back",
  31771. image: {
  31772. source: "./media/characters/jessica/back.svg",
  31773. extra: 273 / 259,
  31774. bottom: 7 / 280
  31775. }
  31776. },
  31777. },
  31778. [
  31779. {
  31780. name: "Normal",
  31781. height: math.unit(201, "feet"),
  31782. default: true
  31783. },
  31784. {
  31785. name: "Megamacro",
  31786. height: math.unit(8, "miles")
  31787. },
  31788. ]
  31789. ))
  31790. characterMakers.push(() => makeCharacter(
  31791. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31792. {
  31793. side: {
  31794. height: math.unit(5.6, "m"),
  31795. weight: math.unit(8000, "kg"),
  31796. name: "Side",
  31797. image: {
  31798. source: "./media/characters/victoria/side.svg",
  31799. extra: 1542/1229,
  31800. bottom: 124/1666
  31801. }
  31802. },
  31803. maw: {
  31804. height: math.unit(7.14, "feet"),
  31805. name: "Maw",
  31806. image: {
  31807. source: "./media/characters/victoria/maw.svg"
  31808. }
  31809. },
  31810. },
  31811. [
  31812. {
  31813. name: "Normal",
  31814. height: math.unit(5.6, "m"),
  31815. default: true
  31816. },
  31817. ]
  31818. ))
  31819. characterMakers.push(() => makeCharacter(
  31820. { name: "Cat", species: ["cat", "nickit", "lucario", "riolu", "lopunny", "dog", "pikachu"], tags: ["anthro", "feral", "taur"] },
  31821. {
  31822. front: {
  31823. height: math.unit(5 + 6 / 12, "feet"),
  31824. name: "Front",
  31825. image: {
  31826. source: "./media/characters/cat/cat-front.svg",
  31827. extra: 1422/1262,
  31828. bottom: 61/1483
  31829. },
  31830. form: "cat",
  31831. default: true
  31832. },
  31833. back: {
  31834. height: math.unit(5 + 6 / 12, "feet"),
  31835. name: "Back",
  31836. image: {
  31837. source: "./media/characters/cat/cat-back.svg",
  31838. extra: 1466/1301,
  31839. bottom: 19/1485
  31840. },
  31841. form: "cat"
  31842. },
  31843. taur: {
  31844. height: math.unit(7, "feet"),
  31845. name: "Side",
  31846. image: {
  31847. source: "./media/characters/cat/taur-side.svg",
  31848. extra: 1389/1233,
  31849. bottom: 83/1472
  31850. },
  31851. form: "taur",
  31852. default: true
  31853. },
  31854. lucarioFront: {
  31855. height: math.unit(4, "feet"),
  31856. name: "Front",
  31857. image: {
  31858. source: "./media/characters/cat/lucario-front.svg",
  31859. extra: 1149/1019,
  31860. bottom: 84/1233
  31861. },
  31862. form: "lucario",
  31863. default: true
  31864. },
  31865. lucarioBack: {
  31866. height: math.unit(4, "feet"),
  31867. name: "Back",
  31868. image: {
  31869. source: "./media/characters/cat/lucario-back.svg",
  31870. extra: 1190/1059,
  31871. bottom: 33/1223
  31872. },
  31873. form: "lucario"
  31874. },
  31875. riolu_front: {
  31876. height: math.unit(2 + 4/12, "feet"),
  31877. name: "Front",
  31878. image: {
  31879. source: "./media/characters/cat/riolu-front.svg",
  31880. extra: 1104/956,
  31881. bottom: 70/1174
  31882. },
  31883. form: "riolu",
  31884. default: true
  31885. },
  31886. nickit: {
  31887. height: math.unit(2, "feet"),
  31888. name: "Side",
  31889. image: {
  31890. source: "./media/characters/cat/nickit-side.svg",
  31891. extra: 1087/852,
  31892. bottom: 67/1154
  31893. },
  31894. form: "nickit",
  31895. default: true
  31896. },
  31897. lopunnyFront: {
  31898. height: math.unit(5, "feet"),
  31899. name: "Front",
  31900. image: {
  31901. source: "./media/characters/cat/lopunny-front.svg",
  31902. extra: 1217/1078,
  31903. bottom: 23/1240
  31904. },
  31905. form: "lopunny",
  31906. default: true
  31907. },
  31908. lopunnyBack: {
  31909. height: math.unit(5, "feet"),
  31910. name: "Back",
  31911. image: {
  31912. source: "./media/characters/cat/lopunny-back.svg",
  31913. extra: 1205/1057,
  31914. bottom: 33/1238
  31915. },
  31916. form: "lopunny"
  31917. },
  31918. dog_front: {
  31919. height: math.unit(5 + 9/12, "feet"),
  31920. name: "Front",
  31921. image: {
  31922. source: "./media/characters/cat/dog-front.svg",
  31923. extra: 1403/1309,
  31924. bottom: 31/1434
  31925. },
  31926. form: "dog",
  31927. default: true
  31928. },
  31929. dog_back: {
  31930. height: math.unit(5 + 9/12, "feet"),
  31931. name: "Back",
  31932. image: {
  31933. source: "./media/characters/cat/dog-back.svg",
  31934. extra: 1393/1297,
  31935. bottom: 38/1431
  31936. },
  31937. form: "dog",
  31938. },
  31939. pikachu_front: {
  31940. height: math.unit(2.64, "feet"),
  31941. name: "Front",
  31942. image: {
  31943. source: "./media/characters/cat/pikachu-front.svg",
  31944. extra: 1224/958,
  31945. bottom: 34/1258
  31946. },
  31947. form: "pikachu",
  31948. default: true
  31949. },
  31950. pikachu_back: {
  31951. height: math.unit(2.64, "feet"),
  31952. name: "Back",
  31953. image: {
  31954. source: "./media/characters/cat/pikachu-back.svg",
  31955. extra: 1228/958,
  31956. bottom: 16/1244
  31957. },
  31958. form: "pikachu",
  31959. },
  31960. gigachuFront: {
  31961. height: math.unit(75, "feet"),
  31962. name: "Front",
  31963. image: {
  31964. source: "./media/characters/cat/gigachu-front.svg",
  31965. extra: 1239/1027,
  31966. bottom: 32/1271
  31967. },
  31968. form: "gigachu",
  31969. default: true
  31970. },
  31971. gigachuBack: {
  31972. height: math.unit(75, "feet"),
  31973. name: "Back",
  31974. image: {
  31975. source: "./media/characters/cat/gigachu-back.svg",
  31976. extra: 1229/1030,
  31977. bottom: 9/1238
  31978. },
  31979. form: "gigachu"
  31980. },
  31981. },
  31982. [
  31983. {
  31984. name: "Really small",
  31985. height: math.unit(1, "nm"),
  31986. allForms: true
  31987. },
  31988. {
  31989. name: "Micro",
  31990. height: math.unit(5, "inches"),
  31991. allForms: true
  31992. },
  31993. {
  31994. name: "Normal",
  31995. height: math.unit(5 + 6 / 12, "feet"),
  31996. default: true,
  31997. form: "cat"
  31998. },
  31999. {
  32000. name: "Normal",
  32001. height: math.unit(7, "feet"),
  32002. default: true,
  32003. form: "taur"
  32004. },
  32005. {
  32006. name: "Normal",
  32007. height: math.unit(4, "feet"),
  32008. default: true,
  32009. form: "lucario"
  32010. },
  32011. {
  32012. name: "Normal",
  32013. height: math.unit(2, "feet"),
  32014. default: true,
  32015. form: "nickit"
  32016. },
  32017. {
  32018. name: "Normal",
  32019. height: math.unit(5, "feet"),
  32020. default: true,
  32021. form: "lopunny"
  32022. },
  32023. {
  32024. name: "Normal",
  32025. height: math.unit(2 + 4/12, "feet"),
  32026. default: true,
  32027. form: "riolu"
  32028. },
  32029. {
  32030. name: "Normal",
  32031. height: math.unit(5 + 6 / 12, "feet"),
  32032. default: true,
  32033. form: "dog"
  32034. },
  32035. {
  32036. name: "Macro",
  32037. height: math.unit(50, "feet"),
  32038. allForms: true
  32039. },
  32040. {
  32041. name: "Normal",
  32042. height: math.unit(2.64, "feet"),
  32043. default: true,
  32044. form: "pikachu"
  32045. },
  32046. {
  32047. name: "Dynamax",
  32048. height: math.unit(75, "feet"),
  32049. form: "gigachu",
  32050. default: true
  32051. },
  32052. {
  32053. name: "Macro+",
  32054. height: math.unit(150, "feet"),
  32055. allForms: true
  32056. },
  32057. {
  32058. name: "Megamacro",
  32059. height: math.unit(100, "miles"),
  32060. allForms: true
  32061. },
  32062. ],
  32063. {
  32064. "cat": {
  32065. name: "Cat",
  32066. default: true
  32067. },
  32068. "taur": {
  32069. name: "Taur",
  32070. },
  32071. "lucario": {
  32072. name: "Lucario",
  32073. },
  32074. "riolu": {
  32075. name: "Riolu",
  32076. },
  32077. "nickit": {
  32078. name: "Nickit",
  32079. },
  32080. "lopunny": {
  32081. name: "Lopunny",
  32082. },
  32083. "dog": {
  32084. name: "Dog",
  32085. },
  32086. "pikachu": {
  32087. name: "Pikachu",
  32088. },
  32089. "gigachu": {
  32090. name: "Gigachu",
  32091. ignoreAllFormSizes: true
  32092. }
  32093. }
  32094. ))
  32095. characterMakers.push(() => makeCharacter(
  32096. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  32097. {
  32098. front: {
  32099. height: math.unit(63.4, "meters"),
  32100. weight: math.unit(3.28349e+6, "kilograms"),
  32101. name: "Front",
  32102. image: {
  32103. source: "./media/characters/kirina-violet/front.svg",
  32104. extra: 2812 / 2725,
  32105. bottom: 0 / 2812
  32106. }
  32107. },
  32108. back: {
  32109. height: math.unit(63.4, "meters"),
  32110. weight: math.unit(3.28349e+6, "kilograms"),
  32111. name: "Back",
  32112. image: {
  32113. source: "./media/characters/kirina-violet/back.svg",
  32114. extra: 2812 / 2725,
  32115. bottom: 0 / 2812
  32116. }
  32117. },
  32118. mouth: {
  32119. height: math.unit(4.35, "meters"),
  32120. name: "Mouth",
  32121. image: {
  32122. source: "./media/characters/kirina-violet/mouth.svg"
  32123. }
  32124. },
  32125. paw: {
  32126. height: math.unit(5.6, "meters"),
  32127. name: "Paw",
  32128. image: {
  32129. source: "./media/characters/kirina-violet/paw.svg"
  32130. }
  32131. },
  32132. tail: {
  32133. height: math.unit(18, "meters"),
  32134. name: "Tail",
  32135. image: {
  32136. source: "./media/characters/kirina-violet/tail.svg"
  32137. }
  32138. },
  32139. },
  32140. [
  32141. {
  32142. name: "Macro",
  32143. height: math.unit(63.4, "meters"),
  32144. default: true
  32145. },
  32146. ]
  32147. ))
  32148. characterMakers.push(() => makeCharacter(
  32149. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  32150. {
  32151. front: {
  32152. height: math.unit(6, "feet"),
  32153. weight: math.unit(150, "lb"),
  32154. name: "Front",
  32155. image: {
  32156. source: "./media/characters/sfaiyan/front.svg",
  32157. extra: 999 / 978,
  32158. bottom: 5 / 1004
  32159. }
  32160. },
  32161. },
  32162. [
  32163. {
  32164. name: "Normal",
  32165. height: math.unit(1.82, "meters")
  32166. },
  32167. {
  32168. name: "Giant",
  32169. height: math.unit(2.27, "km"),
  32170. default: true
  32171. },
  32172. ]
  32173. ))
  32174. characterMakers.push(() => makeCharacter(
  32175. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  32176. {
  32177. front: {
  32178. height: math.unit(179, "cm"),
  32179. weight: math.unit(100, "kg"),
  32180. name: "Front",
  32181. image: {
  32182. source: "./media/characters/raunehkeli/front.svg",
  32183. extra: 1934 / 1926,
  32184. bottom: 0 / 1934
  32185. }
  32186. },
  32187. },
  32188. [
  32189. {
  32190. name: "Normal",
  32191. height: math.unit(179, "cm")
  32192. },
  32193. {
  32194. name: "Maximum",
  32195. height: math.unit(575, "meters"),
  32196. default: true
  32197. },
  32198. ]
  32199. ))
  32200. characterMakers.push(() => makeCharacter(
  32201. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  32202. {
  32203. dressed: {
  32204. height: math.unit(6 + 2/12, "feet"),
  32205. weight: math.unit(150, "lb"),
  32206. name: "Dressed",
  32207. image: {
  32208. source: "./media/characters/beatrice-the-behemoth-heathers/dressed.svg",
  32209. extra: 2620/2496,
  32210. bottom: 66/2686
  32211. }
  32212. },
  32213. nude: {
  32214. height: math.unit(6 + 2/12, "feet"),
  32215. weight: math.unit(150, "lb"),
  32216. name: "Nude",
  32217. image: {
  32218. source: "./media/characters/beatrice-the-behemoth-heathers/nude.svg",
  32219. extra: 2620/2496,
  32220. bottom: 66/2686
  32221. }
  32222. },
  32223. },
  32224. [
  32225. {
  32226. name: "Normal",
  32227. height: math.unit(6 + 2 / 12, "feet")
  32228. },
  32229. {
  32230. name: "Max Height",
  32231. height: math.unit(1181, "feet"),
  32232. default: true
  32233. },
  32234. ]
  32235. ))
  32236. characterMakers.push(() => makeCharacter(
  32237. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  32238. {
  32239. front: {
  32240. height: math.unit(5 + 6 / 12, "feet"),
  32241. weight: math.unit(108, "lb"),
  32242. name: "Front",
  32243. image: {
  32244. source: "./media/characters/lilith-zott/front.svg",
  32245. extra: 2415/2133,
  32246. bottom: 193/2608
  32247. }
  32248. },
  32249. },
  32250. [
  32251. {
  32252. name: "Base Height",
  32253. height: math.unit(5 + 6 / 12, "feet")
  32254. },
  32255. {
  32256. name: "Preferred Height",
  32257. height: math.unit(200, "feet")
  32258. },
  32259. {
  32260. name: "Max Height",
  32261. height: math.unit(1030, "feet"),
  32262. default: true
  32263. },
  32264. ]
  32265. ))
  32266. characterMakers.push(() => makeCharacter(
  32267. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  32268. {
  32269. super: {
  32270. height: math.unit(6 + 2/12, "feet"),
  32271. weight: math.unit(150, "lb"),
  32272. name: "Super",
  32273. image: {
  32274. source: "./media/characters/holly-the-mega-mousky-heathers/super.svg",
  32275. extra: 2555/2387,
  32276. bottom: 50/2605
  32277. }
  32278. },
  32279. casual: {
  32280. height: math.unit(6 + 2/12, "feet"),
  32281. weight: math.unit(150, "lb"),
  32282. name: "Casual",
  32283. image: {
  32284. source: "./media/characters/holly-the-mega-mousky-heathers/casual.svg",
  32285. extra: 2555/2387,
  32286. bottom: 50/2605
  32287. }
  32288. },
  32289. hand: {
  32290. height: math.unit(1.08, "feet"),
  32291. name: "Hand",
  32292. image: {
  32293. source: "./media/characters/holly-the-mega-mousky-heathers/hand.svg"
  32294. }
  32295. },
  32296. paw: {
  32297. height: math.unit(1.33, "feet"),
  32298. name: "Paw",
  32299. image: {
  32300. source: "./media/characters/holly-the-mega-mousky-heathers/paw.svg"
  32301. }
  32302. },
  32303. },
  32304. [
  32305. {
  32306. name: "Normal",
  32307. height: math.unit(6 + 2/12, "feet")
  32308. },
  32309. {
  32310. name: "Preferred Height",
  32311. height: math.unit(220, "feet")
  32312. },
  32313. {
  32314. name: "Max Height",
  32315. height: math.unit(1100, "feet"),
  32316. default: true
  32317. },
  32318. ]
  32319. ))
  32320. characterMakers.push(() => makeCharacter(
  32321. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  32322. {
  32323. front: {
  32324. height: math.unit(100, "miles"),
  32325. name: "Front",
  32326. image: {
  32327. source: "./media/characters/sona/front.svg",
  32328. extra: 2433 / 2201,
  32329. bottom: 53 / 2486
  32330. }
  32331. },
  32332. foot: {
  32333. height: math.unit(16.1, "miles"),
  32334. name: "Foot",
  32335. image: {
  32336. source: "./media/characters/sona/foot.svg"
  32337. }
  32338. },
  32339. },
  32340. [
  32341. {
  32342. name: "Macro",
  32343. height: math.unit(100, "miles"),
  32344. default: true
  32345. },
  32346. ]
  32347. ))
  32348. characterMakers.push(() => makeCharacter(
  32349. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  32350. {
  32351. front: {
  32352. height: math.unit(6, "feet"),
  32353. weight: math.unit(150, "lb"),
  32354. name: "Front",
  32355. image: {
  32356. source: "./media/characters/bailey/front.svg",
  32357. extra: 1778 / 1724,
  32358. bottom: 30 / 1808
  32359. }
  32360. },
  32361. },
  32362. [
  32363. {
  32364. name: "Micro",
  32365. height: math.unit(4, "inches")
  32366. },
  32367. {
  32368. name: "Normal",
  32369. height: math.unit(5 + 5 / 12, "feet"),
  32370. default: true
  32371. },
  32372. {
  32373. name: "Macro",
  32374. height: math.unit(250, "feet")
  32375. },
  32376. {
  32377. name: "Megamacro",
  32378. height: math.unit(100, "miles")
  32379. },
  32380. ]
  32381. ))
  32382. characterMakers.push(() => makeCharacter(
  32383. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  32384. {
  32385. front: {
  32386. height: math.unit(5 + 2 / 12, "feet"),
  32387. weight: math.unit(120, "lb"),
  32388. name: "Front",
  32389. image: {
  32390. source: "./media/characters/snaps/front.svg",
  32391. extra: 2370 / 2177,
  32392. bottom: 48 / 2418
  32393. }
  32394. },
  32395. back: {
  32396. height: math.unit(5 + 2 / 12, "feet"),
  32397. weight: math.unit(120, "lb"),
  32398. name: "Back",
  32399. image: {
  32400. source: "./media/characters/snaps/back.svg",
  32401. extra: 2408 / 2258,
  32402. bottom: 15 / 2423
  32403. }
  32404. },
  32405. },
  32406. [
  32407. {
  32408. name: "Micro",
  32409. height: math.unit(9, "inches")
  32410. },
  32411. {
  32412. name: "Normal",
  32413. height: math.unit(5 + 2 / 12, "feet"),
  32414. default: true
  32415. },
  32416. {
  32417. name: "Mini Macro",
  32418. height: math.unit(10, "feet")
  32419. },
  32420. ]
  32421. ))
  32422. characterMakers.push(() => makeCharacter(
  32423. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  32424. {
  32425. front: {
  32426. height: math.unit(1.8, "meters"),
  32427. weight: math.unit(85, "kg"),
  32428. name: "Front",
  32429. image: {
  32430. source: "./media/characters/azteck/front.svg",
  32431. extra: 2815 / 2625,
  32432. bottom: 89 / 2904
  32433. }
  32434. },
  32435. back: {
  32436. height: math.unit(1.8, "meters"),
  32437. weight: math.unit(85, "kg"),
  32438. name: "Back",
  32439. image: {
  32440. source: "./media/characters/azteck/back.svg",
  32441. extra: 2856 / 2648,
  32442. bottom: 85 / 2941
  32443. }
  32444. },
  32445. frontDressed: {
  32446. height: math.unit(1.8, "meters"),
  32447. weight: math.unit(85, "kg"),
  32448. name: "Front (Dressed)",
  32449. image: {
  32450. source: "./media/characters/azteck/front-dressed.svg",
  32451. extra: 2147 / 2003,
  32452. bottom: 68 / 2215
  32453. }
  32454. },
  32455. head: {
  32456. height: math.unit(0.47, "meters"),
  32457. weight: math.unit(85, "kg"),
  32458. name: "Head",
  32459. image: {
  32460. source: "./media/characters/azteck/head.svg"
  32461. }
  32462. },
  32463. },
  32464. [
  32465. {
  32466. name: "Bite sized",
  32467. height: math.unit(16, "cm")
  32468. },
  32469. {
  32470. name: "Normal",
  32471. height: math.unit(1.8, "meters"),
  32472. default: true
  32473. },
  32474. ]
  32475. ))
  32476. characterMakers.push(() => makeCharacter(
  32477. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  32478. {
  32479. front: {
  32480. height: math.unit(6, "feet"),
  32481. weight: math.unit(150, "lb"),
  32482. name: "Front",
  32483. image: {
  32484. source: "./media/characters/pidge/front.svg",
  32485. extra: 1936/1820,
  32486. bottom: 0/1936
  32487. }
  32488. },
  32489. back: {
  32490. height: math.unit(6, "feet"),
  32491. weight: math.unit(150, "lb"),
  32492. name: "Back",
  32493. image: {
  32494. source: "./media/characters/pidge/back.svg",
  32495. extra: 1938/1843,
  32496. bottom: 0/1938
  32497. }
  32498. },
  32499. casual: {
  32500. height: math.unit(6, "feet"),
  32501. weight: math.unit(150, "lb"),
  32502. name: "Casual",
  32503. image: {
  32504. source: "./media/characters/pidge/casual.svg",
  32505. extra: 1936/1820,
  32506. bottom: 0/1936
  32507. }
  32508. },
  32509. tech: {
  32510. height: math.unit(6, "feet"),
  32511. weight: math.unit(150, "lb"),
  32512. name: "Tech",
  32513. image: {
  32514. source: "./media/characters/pidge/tech.svg",
  32515. extra: 1802/1682,
  32516. bottom: 0/1802
  32517. }
  32518. },
  32519. head: {
  32520. height: math.unit(1.61, "feet"),
  32521. name: "Head",
  32522. image: {
  32523. source: "./media/characters/pidge/head.svg"
  32524. }
  32525. },
  32526. collar: {
  32527. height: math.unit(0.82, "feet"),
  32528. name: "Collar",
  32529. image: {
  32530. source: "./media/characters/pidge/collar.svg"
  32531. }
  32532. },
  32533. },
  32534. [
  32535. {
  32536. name: "Macro",
  32537. height: math.unit(2, "mile"),
  32538. default: true
  32539. },
  32540. {
  32541. name: "PUPPY",
  32542. height: math.unit(20, "miles")
  32543. },
  32544. ]
  32545. ))
  32546. characterMakers.push(() => makeCharacter(
  32547. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  32548. {
  32549. front: {
  32550. height: math.unit(6, "feet"),
  32551. weight: math.unit(150, "lb"),
  32552. name: "Front",
  32553. image: {
  32554. source: "./media/characters/en/front.svg",
  32555. extra: 1697 / 1563,
  32556. bottom: 103 / 1800
  32557. }
  32558. },
  32559. back: {
  32560. height: math.unit(6, "feet"),
  32561. weight: math.unit(150, "lb"),
  32562. name: "Back",
  32563. image: {
  32564. source: "./media/characters/en/back.svg",
  32565. extra: 1700 / 1570,
  32566. bottom: 51 / 1751
  32567. }
  32568. },
  32569. frontDressed: {
  32570. height: math.unit(6, "feet"),
  32571. weight: math.unit(150, "lb"),
  32572. name: "Front (Dressed)",
  32573. image: {
  32574. source: "./media/characters/en/front-dressed.svg",
  32575. extra: 1697 / 1563,
  32576. bottom: 103 / 1800
  32577. }
  32578. },
  32579. backDressed: {
  32580. height: math.unit(6, "feet"),
  32581. weight: math.unit(150, "lb"),
  32582. name: "Back (Dressed)",
  32583. image: {
  32584. source: "./media/characters/en/back-dressed.svg",
  32585. extra: 1700 / 1570,
  32586. bottom: 51 / 1751
  32587. }
  32588. },
  32589. },
  32590. [
  32591. {
  32592. name: "Macro",
  32593. height: math.unit(210, "feet"),
  32594. default: true
  32595. },
  32596. ]
  32597. ))
  32598. characterMakers.push(() => makeCharacter(
  32599. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  32600. {
  32601. front: {
  32602. height: math.unit(6, "feet"),
  32603. weight: math.unit(150, "lb"),
  32604. name: "Front",
  32605. image: {
  32606. source: "./media/characters/haze-orris/front.svg",
  32607. extra: 3975 / 3525,
  32608. bottom: 137 / 4112
  32609. }
  32610. },
  32611. },
  32612. [
  32613. {
  32614. name: "Micro",
  32615. height: math.unit(150, "mm"),
  32616. default: true
  32617. },
  32618. ]
  32619. ))
  32620. characterMakers.push(() => makeCharacter(
  32621. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  32622. {
  32623. front: {
  32624. height: math.unit(6, "feet"),
  32625. weight: math.unit(150, "lb"),
  32626. name: "Front",
  32627. image: {
  32628. source: "./media/characters/casselene-yaro/front.svg",
  32629. extra: 4721 / 4541,
  32630. bottom: 82 / 4803
  32631. }
  32632. },
  32633. back: {
  32634. height: math.unit(6, "feet"),
  32635. weight: math.unit(150, "lb"),
  32636. name: "Back",
  32637. image: {
  32638. source: "./media/characters/casselene-yaro/back.svg",
  32639. extra: 4569 / 4377,
  32640. bottom: 69 / 4638
  32641. }
  32642. },
  32643. dressed: {
  32644. height: math.unit(6, "feet"),
  32645. weight: math.unit(150, "lb"),
  32646. name: "Dressed",
  32647. image: {
  32648. source: "./media/characters/casselene-yaro/dressed.svg",
  32649. extra: 4721 / 4541,
  32650. bottom: 82 / 4803
  32651. }
  32652. },
  32653. maw: {
  32654. height: math.unit(1, "feet"),
  32655. name: "Maw",
  32656. image: {
  32657. source: "./media/characters/casselene-yaro/maw.svg"
  32658. }
  32659. },
  32660. },
  32661. [
  32662. {
  32663. name: "Macro",
  32664. height: math.unit(190, "feet"),
  32665. default: true
  32666. },
  32667. ]
  32668. ))
  32669. characterMakers.push(() => makeCharacter(
  32670. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  32671. {
  32672. front: {
  32673. height: math.unit(10, "feet"),
  32674. weight: math.unit(15015, "lb"),
  32675. name: "Front",
  32676. image: {
  32677. source: "./media/characters/platine/front.svg",
  32678. extra: 1741/1650,
  32679. bottom: 84/1825
  32680. }
  32681. },
  32682. side: {
  32683. height: math.unit(10, "feet"),
  32684. weight: math.unit(15015, "lb"),
  32685. name: "Side",
  32686. image: {
  32687. source: "./media/characters/platine/side.svg",
  32688. extra: 1790/1705,
  32689. bottom: 29/1819
  32690. }
  32691. },
  32692. },
  32693. [
  32694. {
  32695. name: "Normal",
  32696. height: math.unit(10, "feet"),
  32697. default: true
  32698. },
  32699. {
  32700. name: "Macro",
  32701. height: math.unit(100, "feet")
  32702. },
  32703. {
  32704. name: "Megamacro",
  32705. height: math.unit(1000, "feet")
  32706. },
  32707. ]
  32708. ))
  32709. characterMakers.push(() => makeCharacter(
  32710. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  32711. {
  32712. front: {
  32713. height: math.unit(15 + 5 / 12, "feet"),
  32714. weight: math.unit(4600, "lb"),
  32715. name: "Front",
  32716. image: {
  32717. source: "./media/characters/neapolitan-ananassa/front.svg",
  32718. extra: 2903 / 2736,
  32719. bottom: 0 / 2903
  32720. }
  32721. },
  32722. side: {
  32723. height: math.unit(15 + 5 / 12, "feet"),
  32724. weight: math.unit(4600, "lb"),
  32725. name: "Side",
  32726. image: {
  32727. source: "./media/characters/neapolitan-ananassa/side.svg",
  32728. extra: 2925 / 2719,
  32729. bottom: 0 / 2925
  32730. }
  32731. },
  32732. back: {
  32733. height: math.unit(15 + 5 / 12, "feet"),
  32734. weight: math.unit(4600, "lb"),
  32735. name: "Back",
  32736. image: {
  32737. source: "./media/characters/neapolitan-ananassa/back.svg",
  32738. extra: 2903 / 2736,
  32739. bottom: 0 / 2903
  32740. }
  32741. },
  32742. },
  32743. [
  32744. {
  32745. name: "Normal",
  32746. height: math.unit(15 + 5 / 12, "feet"),
  32747. default: true
  32748. },
  32749. {
  32750. name: "Post-Millenium",
  32751. height: math.unit(35 + 5 / 12, "feet")
  32752. },
  32753. {
  32754. name: "Post-Era",
  32755. height: math.unit(450 + 5 / 12, "feet")
  32756. },
  32757. ]
  32758. ))
  32759. characterMakers.push(() => makeCharacter(
  32760. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  32761. {
  32762. front: {
  32763. height: math.unit(300, "meters"),
  32764. weight: math.unit(125000, "tonnes"),
  32765. name: "Front",
  32766. image: {
  32767. source: "./media/characters/pazuzu/front.svg",
  32768. extra: 877 / 794,
  32769. bottom: 47 / 924
  32770. }
  32771. },
  32772. },
  32773. [
  32774. {
  32775. name: "Macro",
  32776. height: math.unit(300, "meters"),
  32777. default: true
  32778. },
  32779. ]
  32780. ))
  32781. characterMakers.push(() => makeCharacter(
  32782. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  32783. {
  32784. side: {
  32785. height: math.unit(10 + 7 / 12, "feet"),
  32786. weight: math.unit(2.5, "tons"),
  32787. name: "Side",
  32788. image: {
  32789. source: "./media/characters/aasha/side.svg",
  32790. extra: 1345 / 1245,
  32791. bottom: 111 / 1456
  32792. }
  32793. },
  32794. back: {
  32795. height: math.unit(10 + 7 / 12, "feet"),
  32796. weight: math.unit(2.5, "tons"),
  32797. name: "Back",
  32798. image: {
  32799. source: "./media/characters/aasha/back.svg",
  32800. extra: 1133 / 1057,
  32801. bottom: 257 / 1390
  32802. }
  32803. },
  32804. },
  32805. [
  32806. {
  32807. name: "Normal",
  32808. height: math.unit(10 + 7 / 12, "feet"),
  32809. default: true
  32810. },
  32811. ]
  32812. ))
  32813. characterMakers.push(() => makeCharacter(
  32814. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  32815. {
  32816. front: {
  32817. height: math.unit(6 + 3 / 12, "feet"),
  32818. name: "Front",
  32819. image: {
  32820. source: "./media/characters/nevan/front.svg",
  32821. extra: 704 / 704,
  32822. bottom: 28 / 732
  32823. }
  32824. },
  32825. back: {
  32826. height: math.unit(6 + 3 / 12, "feet"),
  32827. name: "Back",
  32828. image: {
  32829. source: "./media/characters/nevan/back.svg",
  32830. extra: 714 / 714,
  32831. bottom: 21 / 735
  32832. }
  32833. },
  32834. frontFlaccid: {
  32835. height: math.unit(6 + 3 / 12, "feet"),
  32836. name: "Front (Flaccid)",
  32837. image: {
  32838. source: "./media/characters/nevan/front-flaccid.svg",
  32839. extra: 704 / 704,
  32840. bottom: 28 / 732
  32841. }
  32842. },
  32843. frontErect: {
  32844. height: math.unit(6 + 3 / 12, "feet"),
  32845. name: "Front (Erect)",
  32846. image: {
  32847. source: "./media/characters/nevan/front-erect.svg",
  32848. extra: 704 / 704,
  32849. bottom: 28 / 732
  32850. }
  32851. },
  32852. backFlaccid: {
  32853. height: math.unit(6 + 3 / 12, "feet"),
  32854. name: "Back (Flaccid)",
  32855. image: {
  32856. source: "./media/characters/nevan/back-flaccid.svg",
  32857. extra: 714 / 714,
  32858. bottom: 21 / 735
  32859. }
  32860. },
  32861. },
  32862. [
  32863. {
  32864. name: "Normal",
  32865. height: math.unit(6 + 3 / 12, "feet"),
  32866. default: true
  32867. },
  32868. ]
  32869. ))
  32870. characterMakers.push(() => makeCharacter(
  32871. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32872. {
  32873. front: {
  32874. height: math.unit(4, "feet"),
  32875. name: "Front",
  32876. image: {
  32877. source: "./media/characters/arhan/front.svg",
  32878. extra: 3368 / 3133,
  32879. bottom: 0 / 3368
  32880. }
  32881. },
  32882. side: {
  32883. height: math.unit(4, "feet"),
  32884. name: "Side",
  32885. image: {
  32886. source: "./media/characters/arhan/side.svg",
  32887. extra: 3347 / 3105,
  32888. bottom: 0 / 3347
  32889. }
  32890. },
  32891. tongue: {
  32892. height: math.unit(1.42, "feet"),
  32893. name: "Tongue",
  32894. image: {
  32895. source: "./media/characters/arhan/tongue.svg"
  32896. }
  32897. },
  32898. head: {
  32899. height: math.unit(0.85, "feet"),
  32900. name: "Head",
  32901. image: {
  32902. source: "./media/characters/arhan/head.svg"
  32903. }
  32904. },
  32905. },
  32906. [
  32907. {
  32908. name: "Normal",
  32909. height: math.unit(4, "feet"),
  32910. default: true
  32911. },
  32912. ]
  32913. ))
  32914. characterMakers.push(() => makeCharacter(
  32915. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32916. {
  32917. front: {
  32918. height: math.unit(5 + 7.5 / 12, "feet"),
  32919. weight: math.unit(120, "lb"),
  32920. name: "Front",
  32921. image: {
  32922. source: "./media/characters/digi-duncan/front.svg",
  32923. extra: 330 / 326,
  32924. bottom: 16 / 346
  32925. }
  32926. },
  32927. side: {
  32928. height: math.unit(5 + 7.5 / 12, "feet"),
  32929. weight: math.unit(120, "lb"),
  32930. name: "Side",
  32931. image: {
  32932. source: "./media/characters/digi-duncan/side.svg",
  32933. extra: 341 / 337,
  32934. bottom: 1 / 342
  32935. }
  32936. },
  32937. back: {
  32938. height: math.unit(5 + 7.5 / 12, "feet"),
  32939. weight: math.unit(120, "lb"),
  32940. name: "Back",
  32941. image: {
  32942. source: "./media/characters/digi-duncan/back.svg",
  32943. extra: 330 / 326,
  32944. bottom: 12 / 342
  32945. }
  32946. },
  32947. },
  32948. [
  32949. {
  32950. name: "Speck",
  32951. height: math.unit(0.25, "mm")
  32952. },
  32953. {
  32954. name: "Micro",
  32955. height: math.unit(5, "mm")
  32956. },
  32957. {
  32958. name: "Tiny",
  32959. height: math.unit(0.5, "inches"),
  32960. default: true
  32961. },
  32962. {
  32963. name: "Human",
  32964. height: math.unit(5 + 7.5 / 12, "feet")
  32965. },
  32966. {
  32967. name: "Minigiant",
  32968. height: math.unit(8 + 5.25, "feet")
  32969. },
  32970. {
  32971. name: "Giant",
  32972. height: math.unit(2000, "feet")
  32973. },
  32974. {
  32975. name: "Mega",
  32976. height: math.unit(371.1, "miles")
  32977. },
  32978. ]
  32979. ))
  32980. characterMakers.push(() => makeCharacter(
  32981. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32982. {
  32983. front: {
  32984. height: math.unit(2, "meters"),
  32985. weight: math.unit(350, "kg"),
  32986. name: "Front",
  32987. image: {
  32988. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32989. extra: 898 / 838,
  32990. bottom: 9 / 907
  32991. }
  32992. },
  32993. },
  32994. [
  32995. {
  32996. name: "Micro",
  32997. height: math.unit(8, "meters")
  32998. },
  32999. {
  33000. name: "Normal",
  33001. height: math.unit(50, "meters"),
  33002. default: true
  33003. },
  33004. {
  33005. name: "Macro",
  33006. height: math.unit(500, "meters")
  33007. },
  33008. ]
  33009. ))
  33010. characterMakers.push(() => makeCharacter(
  33011. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  33012. {
  33013. front: {
  33014. height: math.unit(6 + 6 / 12, "feet"),
  33015. name: "Front",
  33016. image: {
  33017. source: "./media/characters/khardesh/front.svg",
  33018. extra: 1788/1596,
  33019. bottom: 66/1854
  33020. }
  33021. },
  33022. back: {
  33023. height: math.unit(6 + 6 / 12, "feet"),
  33024. name: "Back",
  33025. image: {
  33026. source: "./media/characters/khardesh/back.svg",
  33027. extra: 1781/1584,
  33028. bottom: 68/1849
  33029. }
  33030. },
  33031. },
  33032. [
  33033. {
  33034. name: "Normal",
  33035. height: math.unit(6 + 6 / 12, "feet"),
  33036. default: true
  33037. },
  33038. {
  33039. name: "Normal+",
  33040. height: math.unit(4, "meters")
  33041. },
  33042. {
  33043. name: "Macro",
  33044. height: math.unit(50, "meters")
  33045. },
  33046. {
  33047. name: "Macro+",
  33048. height: math.unit(100, "meters")
  33049. },
  33050. {
  33051. name: "Megamacro",
  33052. height: math.unit(20, "km")
  33053. },
  33054. ]
  33055. ))
  33056. characterMakers.push(() => makeCharacter(
  33057. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  33058. {
  33059. front: {
  33060. height: math.unit(6, "feet"),
  33061. weight: math.unit(150, "lb"),
  33062. name: "Front",
  33063. image: {
  33064. source: "./media/characters/kosho/front.svg",
  33065. extra: 1847 / 1847,
  33066. bottom: 86 / 1933
  33067. }
  33068. },
  33069. },
  33070. [
  33071. {
  33072. name: "Second-stage micro",
  33073. height: math.unit(0.5, "inches")
  33074. },
  33075. {
  33076. name: "First-stage micro",
  33077. height: math.unit(6, "inches")
  33078. },
  33079. {
  33080. name: "Normal",
  33081. height: math.unit(6, "feet"),
  33082. default: true
  33083. },
  33084. {
  33085. name: "First-stage macro",
  33086. height: math.unit(72, "feet")
  33087. },
  33088. {
  33089. name: "Second-stage macro",
  33090. height: math.unit(864, "feet")
  33091. },
  33092. ]
  33093. ))
  33094. characterMakers.push(() => makeCharacter(
  33095. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  33096. {
  33097. normal: {
  33098. height: math.unit(4 + 6 / 12, "feet"),
  33099. name: "Normal",
  33100. image: {
  33101. source: "./media/characters/hydra/normal.svg",
  33102. extra: 2833 / 2634,
  33103. bottom: 68 / 2901
  33104. }
  33105. },
  33106. smol: {
  33107. height: math.unit(0.705, "inches"),
  33108. name: "Smol",
  33109. image: {
  33110. source: "./media/characters/hydra/smol.svg",
  33111. extra: 2715 / 2540,
  33112. bottom: 0 / 2715
  33113. }
  33114. },
  33115. },
  33116. [
  33117. {
  33118. name: "Normal",
  33119. height: math.unit(4 + 6 / 12, "feet"),
  33120. default: true
  33121. }
  33122. ]
  33123. ))
  33124. characterMakers.push(() => makeCharacter(
  33125. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  33126. {
  33127. front: {
  33128. height: math.unit(0.6, "cm"),
  33129. name: "Front",
  33130. image: {
  33131. source: "./media/characters/daz/front.svg",
  33132. extra: 1682 / 1164,
  33133. bottom: 42 / 1724
  33134. }
  33135. },
  33136. },
  33137. [
  33138. {
  33139. name: "Normal",
  33140. height: math.unit(0.6, "cm"),
  33141. default: true
  33142. },
  33143. ]
  33144. ))
  33145. characterMakers.push(() => makeCharacter(
  33146. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  33147. {
  33148. front: {
  33149. height: math.unit(6, "feet"),
  33150. weight: math.unit(235, "lb"),
  33151. name: "Front",
  33152. image: {
  33153. source: "./media/characters/theo-pangolin/front.svg",
  33154. extra: 1996 / 1969,
  33155. bottom: 115 / 2111
  33156. }
  33157. },
  33158. back: {
  33159. height: math.unit(6, "feet"),
  33160. weight: math.unit(235, "lb"),
  33161. name: "Back",
  33162. image: {
  33163. source: "./media/characters/theo-pangolin/back.svg",
  33164. extra: 1979 / 1979,
  33165. bottom: 40 / 2019
  33166. }
  33167. },
  33168. feral: {
  33169. height: math.unit(2, "feet"),
  33170. weight: math.unit(30, "lb"),
  33171. name: "Feral",
  33172. image: {
  33173. source: "./media/characters/theo-pangolin/feral.svg",
  33174. extra: 803 / 791,
  33175. bottom: 181 / 984
  33176. }
  33177. },
  33178. footFive: {
  33179. height: math.unit(1.43, "feet"),
  33180. name: "Foot (Five Toes)",
  33181. image: {
  33182. source: "./media/characters/theo-pangolin/foot-five.svg"
  33183. }
  33184. },
  33185. footFour: {
  33186. height: math.unit(1.43, "feet"),
  33187. name: "Foot (Four Toes)",
  33188. image: {
  33189. source: "./media/characters/theo-pangolin/foot-four.svg"
  33190. }
  33191. },
  33192. handFour: {
  33193. height: math.unit(0.81, "feet"),
  33194. name: "Hand (Four Fingers)",
  33195. image: {
  33196. source: "./media/characters/theo-pangolin/hand-four.svg"
  33197. }
  33198. },
  33199. handThree: {
  33200. height: math.unit(0.81, "feet"),
  33201. name: "Hand (Three Fingers)",
  33202. image: {
  33203. source: "./media/characters/theo-pangolin/hand-three.svg"
  33204. }
  33205. },
  33206. headFront: {
  33207. height: math.unit(1.37, "feet"),
  33208. name: "Head (Front)",
  33209. image: {
  33210. source: "./media/characters/theo-pangolin/head-front.svg"
  33211. }
  33212. },
  33213. headSide: {
  33214. height: math.unit(1.43, "feet"),
  33215. name: "Head (Side)",
  33216. image: {
  33217. source: "./media/characters/theo-pangolin/head-side.svg"
  33218. }
  33219. },
  33220. tongue: {
  33221. height: math.unit(2.29, "feet"),
  33222. name: "Tongue",
  33223. image: {
  33224. source: "./media/characters/theo-pangolin/tongue.svg"
  33225. }
  33226. },
  33227. },
  33228. [
  33229. {
  33230. name: "Normal",
  33231. height: math.unit(6, "feet")
  33232. },
  33233. {
  33234. name: "Macro",
  33235. height: math.unit(400, "feet"),
  33236. default: true
  33237. },
  33238. ]
  33239. ))
  33240. characterMakers.push(() => makeCharacter(
  33241. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  33242. {
  33243. front: {
  33244. height: math.unit(6, "inches"),
  33245. weight: math.unit(0.036, "kg"),
  33246. name: "Front",
  33247. image: {
  33248. source: "./media/characters/renée/front.svg",
  33249. extra: 900 / 886,
  33250. bottom: 8 / 908
  33251. }
  33252. },
  33253. },
  33254. [
  33255. {
  33256. name: "Nano",
  33257. height: math.unit(1, "nm")
  33258. },
  33259. {
  33260. name: "Micro",
  33261. height: math.unit(1, "mm")
  33262. },
  33263. {
  33264. name: "Normal",
  33265. height: math.unit(6, "inches")
  33266. },
  33267. {
  33268. name: "Macro",
  33269. height: math.unit(2000, "feet"),
  33270. default: true
  33271. },
  33272. {
  33273. name: "Megamacro",
  33274. height: math.unit(2, "km")
  33275. },
  33276. {
  33277. name: "Gigamacro",
  33278. height: math.unit(2000, "km")
  33279. },
  33280. {
  33281. name: "Teramacro",
  33282. height: math.unit(250000, "km")
  33283. },
  33284. ]
  33285. ))
  33286. characterMakers.push(() => makeCharacter(
  33287. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  33288. {
  33289. front: {
  33290. height: math.unit(4, "meters"),
  33291. weight: math.unit(150, "kg"),
  33292. name: "Front",
  33293. image: {
  33294. source: "./media/characters/caledvwlch/front.svg",
  33295. extra: 1757/1537,
  33296. bottom: 31/1788
  33297. }
  33298. },
  33299. side: {
  33300. height: math.unit(4, "meters"),
  33301. weight: math.unit(150, "kg"),
  33302. name: "Side",
  33303. image: {
  33304. source: "./media/characters/caledvwlch/side.svg",
  33305. extra: 1605 / 1536,
  33306. bottom: 31 / 1636
  33307. }
  33308. },
  33309. back: {
  33310. height: math.unit(4, "meters"),
  33311. weight: math.unit(150, "kg"),
  33312. name: "Back",
  33313. image: {
  33314. source: "./media/characters/caledvwlch/back.svg",
  33315. extra: 1635 / 1565,
  33316. bottom: 27 / 1662
  33317. }
  33318. },
  33319. },
  33320. [
  33321. {
  33322. name: "\"Incognito\"",
  33323. height: math.unit(4, "meters")
  33324. },
  33325. {
  33326. name: "Small rampage",
  33327. height: math.unit(600, "meters")
  33328. },
  33329. {
  33330. name: "Mega",
  33331. height: math.unit(30, "km")
  33332. },
  33333. {
  33334. name: "Home-size",
  33335. height: math.unit(50, "km"),
  33336. default: true
  33337. },
  33338. {
  33339. name: "Giga",
  33340. height: math.unit(300, "km")
  33341. },
  33342. {
  33343. name: "Lounging",
  33344. height: math.unit(11000, "km")
  33345. },
  33346. {
  33347. name: "Planet snacking",
  33348. height: math.unit(2000000, "km")
  33349. },
  33350. ]
  33351. ))
  33352. characterMakers.push(() => makeCharacter(
  33353. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  33354. {
  33355. front: {
  33356. height: math.unit(6, "feet"),
  33357. weight: math.unit(215, "lb"),
  33358. name: "Front",
  33359. image: {
  33360. source: "./media/characters/sapphire-svell/front.svg",
  33361. extra: 495 / 455,
  33362. bottom: 20 / 515
  33363. }
  33364. },
  33365. back: {
  33366. height: math.unit(6, "feet"),
  33367. weight: math.unit(216, "lb"),
  33368. name: "Back",
  33369. image: {
  33370. source: "./media/characters/sapphire-svell/back.svg",
  33371. extra: 497 / 477,
  33372. bottom: 7 / 504
  33373. }
  33374. },
  33375. maw: {
  33376. height: math.unit(1.57, "feet"),
  33377. name: "Maw",
  33378. image: {
  33379. source: "./media/characters/sapphire-svell/maw.svg"
  33380. }
  33381. },
  33382. foot: {
  33383. height: math.unit(1.07, "feet"),
  33384. name: "Foot",
  33385. image: {
  33386. source: "./media/characters/sapphire-svell/foot.svg"
  33387. }
  33388. },
  33389. toering: {
  33390. height: math.unit(1.7, "inch"),
  33391. name: "Toering",
  33392. image: {
  33393. source: "./media/characters/sapphire-svell/toering.svg"
  33394. }
  33395. },
  33396. },
  33397. [
  33398. {
  33399. name: "Normal",
  33400. height: math.unit(300, "feet"),
  33401. default: true
  33402. },
  33403. {
  33404. name: "Augmented",
  33405. height: math.unit(1250, "feet")
  33406. },
  33407. {
  33408. name: "Unleashed",
  33409. height: math.unit(3000, "feet")
  33410. },
  33411. ]
  33412. ))
  33413. characterMakers.push(() => makeCharacter(
  33414. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  33415. {
  33416. side: {
  33417. height: math.unit(2 + 3 / 12, "feet"),
  33418. weight: math.unit(110, "lb"),
  33419. name: "Side",
  33420. image: {
  33421. source: "./media/characters/glitch-flux/side.svg",
  33422. extra: 997 / 805,
  33423. bottom: 20 / 1017
  33424. }
  33425. },
  33426. },
  33427. [
  33428. {
  33429. name: "Normal",
  33430. height: math.unit(2 + 3 / 12, "feet"),
  33431. default: true
  33432. },
  33433. ]
  33434. ))
  33435. characterMakers.push(() => makeCharacter(
  33436. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  33437. {
  33438. front: {
  33439. height: math.unit(4, "meters"),
  33440. name: "Front",
  33441. image: {
  33442. source: "./media/characters/mid/front.svg",
  33443. extra: 507 / 476,
  33444. bottom: 17 / 524
  33445. }
  33446. },
  33447. back: {
  33448. height: math.unit(4, "meters"),
  33449. name: "Back",
  33450. image: {
  33451. source: "./media/characters/mid/back.svg",
  33452. extra: 519 / 487,
  33453. bottom: 7 / 526
  33454. }
  33455. },
  33456. stuck: {
  33457. height: math.unit(2.2, "meters"),
  33458. name: "Stuck",
  33459. image: {
  33460. source: "./media/characters/mid/stuck.svg",
  33461. extra: 1951 / 1869,
  33462. bottom: 88 / 2039
  33463. }
  33464. }
  33465. },
  33466. [
  33467. {
  33468. name: "Normal",
  33469. height: math.unit(4, "meters"),
  33470. default: true
  33471. },
  33472. {
  33473. name: "Big",
  33474. height: math.unit(10, "meters")
  33475. },
  33476. {
  33477. name: "Macro",
  33478. height: math.unit(800, "meters")
  33479. },
  33480. {
  33481. name: "Megamacro",
  33482. height: math.unit(100, "km")
  33483. },
  33484. {
  33485. name: "Overgrown",
  33486. height: math.unit(1, "parsec")
  33487. },
  33488. ]
  33489. ))
  33490. characterMakers.push(() => makeCharacter(
  33491. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  33492. {
  33493. front: {
  33494. height: math.unit(2.5, "meters"),
  33495. weight: math.unit(225, "kg"),
  33496. name: "Front",
  33497. image: {
  33498. source: "./media/characters/iris/front.svg",
  33499. extra: 3348 / 3251,
  33500. bottom: 205 / 3553
  33501. }
  33502. },
  33503. maw: {
  33504. height: math.unit(0.56, "meter"),
  33505. name: "Maw",
  33506. image: {
  33507. source: "./media/characters/iris/maw.svg"
  33508. }
  33509. },
  33510. },
  33511. [
  33512. {
  33513. name: "Mewter cat",
  33514. height: math.unit(1.2, "meters")
  33515. },
  33516. {
  33517. name: "Normal",
  33518. height: math.unit(2.5, "meters"),
  33519. default: true
  33520. },
  33521. {
  33522. name: "Minimacro",
  33523. height: math.unit(18, "feet")
  33524. },
  33525. {
  33526. name: "Macro",
  33527. height: math.unit(140, "feet")
  33528. },
  33529. {
  33530. name: "Macro+",
  33531. height: math.unit(180, "meters")
  33532. },
  33533. {
  33534. name: "Megamacro",
  33535. height: math.unit(2746, "meters")
  33536. },
  33537. ]
  33538. ))
  33539. characterMakers.push(() => makeCharacter(
  33540. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  33541. {
  33542. front: {
  33543. height: math.unit(6, "feet"),
  33544. weight: math.unit(135, "lb"),
  33545. name: "Front",
  33546. image: {
  33547. source: "./media/characters/axel/front.svg",
  33548. extra: 908 / 908,
  33549. bottom: 58 / 966
  33550. }
  33551. },
  33552. side: {
  33553. height: math.unit(6, "feet"),
  33554. weight: math.unit(135, "lb"),
  33555. name: "Side",
  33556. image: {
  33557. source: "./media/characters/axel/side.svg",
  33558. extra: 958 / 958,
  33559. bottom: 11 / 969
  33560. }
  33561. },
  33562. back: {
  33563. height: math.unit(6, "feet"),
  33564. weight: math.unit(135, "lb"),
  33565. name: "Back",
  33566. image: {
  33567. source: "./media/characters/axel/back.svg",
  33568. extra: 887 / 887,
  33569. bottom: 34 / 921
  33570. }
  33571. },
  33572. head: {
  33573. height: math.unit(1.07, "feet"),
  33574. name: "Head",
  33575. image: {
  33576. source: "./media/characters/axel/head.svg"
  33577. }
  33578. },
  33579. beak: {
  33580. height: math.unit(1.4, "feet"),
  33581. name: "Beak",
  33582. image: {
  33583. source: "./media/characters/axel/beak.svg"
  33584. }
  33585. },
  33586. beakSide: {
  33587. height: math.unit(1.4, "feet"),
  33588. name: "Beak Side",
  33589. image: {
  33590. source: "./media/characters/axel/beak-side.svg"
  33591. }
  33592. },
  33593. sheath: {
  33594. height: math.unit(0.5, "feet"),
  33595. name: "Sheath",
  33596. image: {
  33597. source: "./media/characters/axel/sheath.svg"
  33598. }
  33599. },
  33600. dick: {
  33601. height: math.unit(0.98, "feet"),
  33602. name: "Dick",
  33603. image: {
  33604. source: "./media/characters/axel/dick.svg"
  33605. }
  33606. },
  33607. },
  33608. [
  33609. {
  33610. name: "Macro",
  33611. height: math.unit(68, "meters"),
  33612. default: true
  33613. },
  33614. ]
  33615. ))
  33616. characterMakers.push(() => makeCharacter(
  33617. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  33618. {
  33619. front: {
  33620. height: math.unit(3.5, "meters"),
  33621. weight: math.unit(1200, "kg"),
  33622. name: "Front",
  33623. image: {
  33624. source: "./media/characters/joanna/front.svg",
  33625. extra: 1596 / 1488,
  33626. bottom: 29 / 1625
  33627. }
  33628. },
  33629. back: {
  33630. height: math.unit(3.5, "meters"),
  33631. weight: math.unit(1200, "kg"),
  33632. name: "Back",
  33633. image: {
  33634. source: "./media/characters/joanna/back.svg",
  33635. extra: 1594 / 1495,
  33636. bottom: 26 / 1620
  33637. }
  33638. },
  33639. frontShorts: {
  33640. height: math.unit(3.5, "meters"),
  33641. weight: math.unit(1200, "kg"),
  33642. name: "Front (Shorts)",
  33643. image: {
  33644. source: "./media/characters/joanna/front-shorts.svg",
  33645. extra: 1596 / 1488,
  33646. bottom: 29 / 1625
  33647. }
  33648. },
  33649. frontBiker: {
  33650. height: math.unit(3.5, "meters"),
  33651. weight: math.unit(1200, "kg"),
  33652. name: "Front (Biker)",
  33653. image: {
  33654. source: "./media/characters/joanna/front-biker.svg",
  33655. extra: 1596 / 1488,
  33656. bottom: 29 / 1625
  33657. }
  33658. },
  33659. backBiker: {
  33660. height: math.unit(3.5, "meters"),
  33661. weight: math.unit(1200, "kg"),
  33662. name: "Back (Biker)",
  33663. image: {
  33664. source: "./media/characters/joanna/back-biker.svg",
  33665. extra: 1594 / 1495,
  33666. bottom: 88 / 1682
  33667. }
  33668. },
  33669. bikeLeft: {
  33670. height: math.unit(2.4, "meters"),
  33671. weight: math.unit(1600, "kg"),
  33672. name: "Bike (Left)",
  33673. image: {
  33674. source: "./media/characters/joanna/bike-left.svg",
  33675. extra: 720 / 720,
  33676. bottom: 8 / 728
  33677. }
  33678. },
  33679. bikeRight: {
  33680. height: math.unit(2.4, "meters"),
  33681. weight: math.unit(1600, "kg"),
  33682. name: "Bike (Right)",
  33683. image: {
  33684. source: "./media/characters/joanna/bike-right.svg",
  33685. extra: 720 / 720,
  33686. bottom: 8 / 728
  33687. }
  33688. },
  33689. },
  33690. [
  33691. {
  33692. name: "Incognito",
  33693. height: math.unit(3.5, "meters")
  33694. },
  33695. {
  33696. name: "Casual Big",
  33697. height: math.unit(200, "meters")
  33698. },
  33699. {
  33700. name: "Macro",
  33701. height: math.unit(600, "meters")
  33702. },
  33703. {
  33704. name: "Original",
  33705. height: math.unit(20, "km"),
  33706. default: true
  33707. },
  33708. {
  33709. name: "Giga",
  33710. height: math.unit(400, "km")
  33711. },
  33712. {
  33713. name: "Lounging",
  33714. height: math.unit(1500, "km")
  33715. },
  33716. {
  33717. name: "Planetary",
  33718. height: math.unit(200000, "km")
  33719. },
  33720. ]
  33721. ))
  33722. characterMakers.push(() => makeCharacter(
  33723. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  33724. {
  33725. front: {
  33726. height: math.unit(6, "feet"),
  33727. weight: math.unit(150, "lb"),
  33728. name: "Front",
  33729. image: {
  33730. source: "./media/characters/hugo-sigil/front.svg",
  33731. extra: 522 / 500,
  33732. bottom: 2 / 524
  33733. }
  33734. },
  33735. back: {
  33736. height: math.unit(6, "feet"),
  33737. weight: math.unit(150, "lb"),
  33738. name: "Back",
  33739. image: {
  33740. source: "./media/characters/hugo-sigil/back.svg",
  33741. extra: 519 / 495,
  33742. bottom: 5 / 524
  33743. }
  33744. },
  33745. maw: {
  33746. height: math.unit(1.4, "feet"),
  33747. weight: math.unit(150, "lb"),
  33748. name: "Maw",
  33749. image: {
  33750. source: "./media/characters/hugo-sigil/maw.svg"
  33751. }
  33752. },
  33753. feet: {
  33754. height: math.unit(1.56, "feet"),
  33755. weight: math.unit(150, "lb"),
  33756. name: "Feet",
  33757. image: {
  33758. source: "./media/characters/hugo-sigil/feet.svg",
  33759. extra: 177 / 177,
  33760. bottom: 12 / 189
  33761. }
  33762. },
  33763. },
  33764. [
  33765. {
  33766. name: "Normal",
  33767. height: math.unit(6, "feet")
  33768. },
  33769. {
  33770. name: "Macro",
  33771. height: math.unit(200, "feet"),
  33772. default: true
  33773. },
  33774. ]
  33775. ))
  33776. characterMakers.push(() => makeCharacter(
  33777. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  33778. {
  33779. front: {
  33780. height: math.unit(6, "feet"),
  33781. weight: math.unit(150, "lb"),
  33782. name: "Front",
  33783. image: {
  33784. source: "./media/characters/peri/front.svg",
  33785. extra: 2354 / 2233,
  33786. bottom: 49 / 2403
  33787. }
  33788. },
  33789. },
  33790. [
  33791. {
  33792. name: "Really Small",
  33793. height: math.unit(1, "nm")
  33794. },
  33795. {
  33796. name: "Micro",
  33797. height: math.unit(4, "inches")
  33798. },
  33799. {
  33800. name: "Normal",
  33801. height: math.unit(7, "inches"),
  33802. default: true
  33803. },
  33804. {
  33805. name: "Macro",
  33806. height: math.unit(400, "feet")
  33807. },
  33808. {
  33809. name: "Megamacro",
  33810. height: math.unit(100, "miles")
  33811. },
  33812. ]
  33813. ))
  33814. characterMakers.push(() => makeCharacter(
  33815. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  33816. {
  33817. frontSlim: {
  33818. height: math.unit(7, "feet"),
  33819. name: "Front (Slim)",
  33820. image: {
  33821. source: "./media/characters/issilora/front-slim.svg",
  33822. extra: 529 / 449,
  33823. bottom: 53 / 582
  33824. }
  33825. },
  33826. sideSlim: {
  33827. height: math.unit(7, "feet"),
  33828. name: "Side (Slim)",
  33829. image: {
  33830. source: "./media/characters/issilora/side-slim.svg",
  33831. extra: 570 / 480,
  33832. bottom: 30 / 600
  33833. }
  33834. },
  33835. backSlim: {
  33836. height: math.unit(7, "feet"),
  33837. name: "Back (Slim)",
  33838. image: {
  33839. source: "./media/characters/issilora/back-slim.svg",
  33840. extra: 537 / 455,
  33841. bottom: 46 / 583
  33842. }
  33843. },
  33844. frontBuff: {
  33845. height: math.unit(7, "feet"),
  33846. name: "Front (Buff)",
  33847. image: {
  33848. source: "./media/characters/issilora/front-buff.svg",
  33849. extra: 2310 / 2035,
  33850. bottom: 335 / 2645
  33851. }
  33852. },
  33853. head: {
  33854. height: math.unit(1.94, "feet"),
  33855. name: "Head",
  33856. image: {
  33857. source: "./media/characters/issilora/head.svg"
  33858. }
  33859. },
  33860. },
  33861. [
  33862. {
  33863. name: "Minimum",
  33864. height: math.unit(7, "feet")
  33865. },
  33866. {
  33867. name: "Comfortable",
  33868. height: math.unit(17, "feet")
  33869. },
  33870. {
  33871. name: "Fun Size",
  33872. height: math.unit(47, "feet")
  33873. },
  33874. {
  33875. name: "Natural Macro",
  33876. height: math.unit(137, "feet"),
  33877. default: true
  33878. },
  33879. {
  33880. name: "Maximum Kaiju",
  33881. height: math.unit(397, "feet")
  33882. },
  33883. ]
  33884. ))
  33885. characterMakers.push(() => makeCharacter(
  33886. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33887. {
  33888. front: {
  33889. height: math.unit(50 + 9/12, "feet"),
  33890. weight: math.unit(32.8, "tons"),
  33891. name: "Front",
  33892. image: {
  33893. source: "./media/characters/irb'iiritaahn/front.svg",
  33894. extra: 1878/1826,
  33895. bottom: 326/2204
  33896. }
  33897. },
  33898. back: {
  33899. height: math.unit(50 + 9/12, "feet"),
  33900. weight: math.unit(32.8, "tons"),
  33901. name: "Back",
  33902. image: {
  33903. source: "./media/characters/irb'iiritaahn/back.svg",
  33904. extra: 2052/2018,
  33905. bottom: 152/2204
  33906. }
  33907. },
  33908. head: {
  33909. height: math.unit(12.86, "feet"),
  33910. name: "Head",
  33911. image: {
  33912. source: "./media/characters/irb'iiritaahn/head.svg"
  33913. }
  33914. },
  33915. maw: {
  33916. height: math.unit(9.66, "feet"),
  33917. name: "Maw",
  33918. image: {
  33919. source: "./media/characters/irb'iiritaahn/maw.svg"
  33920. }
  33921. },
  33922. frontDick: {
  33923. height: math.unit(8.78461, "feet"),
  33924. name: "Front Dick",
  33925. image: {
  33926. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33927. }
  33928. },
  33929. rearDick: {
  33930. height: math.unit(8.78461, "feet"),
  33931. name: "Rear Dick",
  33932. image: {
  33933. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33934. }
  33935. },
  33936. rearDickUnfolded: {
  33937. height: math.unit(8.78, "feet"),
  33938. name: "Rear Dick (Unfolded)",
  33939. image: {
  33940. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33941. }
  33942. },
  33943. wings: {
  33944. height: math.unit(43, "feet"),
  33945. name: "Wings",
  33946. image: {
  33947. source: "./media/characters/irb'iiritaahn/wings.svg"
  33948. }
  33949. },
  33950. },
  33951. [
  33952. {
  33953. name: "Macro",
  33954. height: math.unit(50 + 9/12, "feet"),
  33955. default: true
  33956. },
  33957. ]
  33958. ))
  33959. characterMakers.push(() => makeCharacter(
  33960. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33961. {
  33962. front: {
  33963. height: math.unit(205, "cm"),
  33964. weight: math.unit(102, "kg"),
  33965. name: "Front",
  33966. image: {
  33967. source: "./media/characters/irbisgreif/front.svg",
  33968. extra: 785/706,
  33969. bottom: 13/798
  33970. }
  33971. },
  33972. back: {
  33973. height: math.unit(205, "cm"),
  33974. weight: math.unit(102, "kg"),
  33975. name: "Back",
  33976. image: {
  33977. source: "./media/characters/irbisgreif/back.svg",
  33978. extra: 713/701,
  33979. bottom: 26/739
  33980. }
  33981. },
  33982. frontDressed: {
  33983. height: math.unit(216, "cm"),
  33984. weight: math.unit(102, "kg"),
  33985. name: "Front (Dressed)",
  33986. image: {
  33987. source: "./media/characters/irbisgreif/front-dressed.svg",
  33988. extra: 902/776,
  33989. bottom: 14/916
  33990. }
  33991. },
  33992. sideDressed: {
  33993. height: math.unit(195, "cm"),
  33994. weight: math.unit(102, "kg"),
  33995. name: "Side (Dressed)",
  33996. image: {
  33997. source: "./media/characters/irbisgreif/side-dressed.svg",
  33998. extra: 788/688,
  33999. bottom: 21/809
  34000. }
  34001. },
  34002. backDressed: {
  34003. height: math.unit(216, "cm"),
  34004. weight: math.unit(102, "kg"),
  34005. name: "Back (Dressed)",
  34006. image: {
  34007. source: "./media/characters/irbisgreif/back-dressed.svg",
  34008. extra: 901/783,
  34009. bottom: 10/911
  34010. }
  34011. },
  34012. dick: {
  34013. height: math.unit(0.49, "feet"),
  34014. name: "Dick",
  34015. image: {
  34016. source: "./media/characters/irbisgreif/dick.svg"
  34017. }
  34018. },
  34019. wingTop: {
  34020. height: math.unit(1.93 , "feet"),
  34021. name: "Wing (Top)",
  34022. image: {
  34023. source: "./media/characters/irbisgreif/wing-top.svg"
  34024. }
  34025. },
  34026. wingBottom: {
  34027. height: math.unit(1.93 , "feet"),
  34028. name: "Wing (Bottom)",
  34029. image: {
  34030. source: "./media/characters/irbisgreif/wing-bottom.svg"
  34031. }
  34032. },
  34033. },
  34034. [
  34035. {
  34036. name: "Normal",
  34037. height: math.unit(216, "cm"),
  34038. default: true
  34039. },
  34040. ]
  34041. ))
  34042. characterMakers.push(() => makeCharacter(
  34043. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  34044. {
  34045. front: {
  34046. height: math.unit(6, "feet"),
  34047. weight: math.unit(150, "lb"),
  34048. name: "Front",
  34049. image: {
  34050. source: "./media/characters/pride/front.svg",
  34051. extra: 1299/1230,
  34052. bottom: 18/1317
  34053. }
  34054. },
  34055. },
  34056. [
  34057. {
  34058. name: "Normal",
  34059. height: math.unit(7, "feet")
  34060. },
  34061. {
  34062. name: "Mini-macro",
  34063. height: math.unit(11, "feet")
  34064. },
  34065. {
  34066. name: "Macro",
  34067. height: math.unit(15, "meters"),
  34068. default: true
  34069. },
  34070. {
  34071. name: "Macro+",
  34072. height: math.unit(40, "meters")
  34073. },
  34074. ]
  34075. ))
  34076. characterMakers.push(() => makeCharacter(
  34077. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  34078. {
  34079. front: {
  34080. height: math.unit(4 + 2 / 12, "feet"),
  34081. weight: math.unit(95, "lb"),
  34082. name: "Front",
  34083. image: {
  34084. source: "./media/characters/vaelophis-nyx/front.svg",
  34085. extra: 2532/2330,
  34086. bottom: 0/2532
  34087. }
  34088. },
  34089. back: {
  34090. height: math.unit(4 + 2 / 12, "feet"),
  34091. weight: math.unit(95, "lb"),
  34092. name: "Back",
  34093. image: {
  34094. source: "./media/characters/vaelophis-nyx/back.svg",
  34095. extra: 2484/2361,
  34096. bottom: 0/2484
  34097. }
  34098. },
  34099. feralSide: {
  34100. height: math.unit(2 + 1/12, "feet"),
  34101. weight: math.unit(20, "lb"),
  34102. name: "Feral (Side)",
  34103. image: {
  34104. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  34105. extra: 1721/1581,
  34106. bottom: 70/1791
  34107. }
  34108. },
  34109. feralLazing: {
  34110. height: math.unit(1.08, "feet"),
  34111. weight: math.unit(20, "lb"),
  34112. name: "Feral (Lazing)",
  34113. image: {
  34114. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  34115. extra: 822/822,
  34116. bottom: 248/1070
  34117. }
  34118. },
  34119. ear: {
  34120. height: math.unit(0.416, "feet"),
  34121. name: "Ear",
  34122. image: {
  34123. source: "./media/characters/vaelophis-nyx/ear.svg"
  34124. }
  34125. },
  34126. eye: {
  34127. height: math.unit(0.0748, "feet"),
  34128. name: "Eye",
  34129. image: {
  34130. source: "./media/characters/vaelophis-nyx/eye.svg"
  34131. }
  34132. },
  34133. mouth: {
  34134. height: math.unit(0.378, "feet"),
  34135. name: "Mouth",
  34136. image: {
  34137. source: "./media/characters/vaelophis-nyx/mouth.svg"
  34138. }
  34139. },
  34140. spade: {
  34141. height: math.unit(0.55, "feet"),
  34142. name: "Spade",
  34143. image: {
  34144. source: "./media/characters/vaelophis-nyx/spade.svg"
  34145. }
  34146. },
  34147. },
  34148. [
  34149. {
  34150. name: "Normal",
  34151. height: math.unit(4 + 2/12, "feet"),
  34152. default: true
  34153. },
  34154. ]
  34155. ))
  34156. characterMakers.push(() => makeCharacter(
  34157. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  34158. {
  34159. front: {
  34160. height: math.unit(7, "feet"),
  34161. weight: math.unit(231, "lb"),
  34162. name: "Front",
  34163. image: {
  34164. source: "./media/characters/flux/front.svg",
  34165. extra: 919/871,
  34166. bottom: 0/919
  34167. }
  34168. },
  34169. back: {
  34170. height: math.unit(7, "feet"),
  34171. weight: math.unit(231, "lb"),
  34172. name: "Back",
  34173. image: {
  34174. source: "./media/characters/flux/back.svg",
  34175. extra: 1040/992,
  34176. bottom: 0/1040
  34177. }
  34178. },
  34179. frontDressed: {
  34180. height: math.unit(7, "feet"),
  34181. weight: math.unit(231, "lb"),
  34182. name: "Front (Dressed)",
  34183. image: {
  34184. source: "./media/characters/flux/front-dressed.svg",
  34185. extra: 919/871,
  34186. bottom: 0/919
  34187. }
  34188. },
  34189. feralSide: {
  34190. height: math.unit(5, "feet"),
  34191. weight: math.unit(150, "lb"),
  34192. name: "Feral (Side)",
  34193. image: {
  34194. source: "./media/characters/flux/feral-side.svg",
  34195. extra: 598/528,
  34196. bottom: 28/626
  34197. }
  34198. },
  34199. head: {
  34200. height: math.unit(1.585, "feet"),
  34201. name: "Head",
  34202. image: {
  34203. source: "./media/characters/flux/head.svg"
  34204. }
  34205. },
  34206. headSide: {
  34207. height: math.unit(1.74, "feet"),
  34208. name: "Head (Side)",
  34209. image: {
  34210. source: "./media/characters/flux/head-side.svg"
  34211. }
  34212. },
  34213. headSideFire: {
  34214. height: math.unit(1.76, "feet"),
  34215. name: "Head (Side, Fire)",
  34216. image: {
  34217. source: "./media/characters/flux/head-side-fire.svg"
  34218. }
  34219. },
  34220. },
  34221. [
  34222. {
  34223. name: "Normal",
  34224. height: math.unit(7, "feet"),
  34225. default: true
  34226. },
  34227. ]
  34228. ))
  34229. characterMakers.push(() => makeCharacter(
  34230. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  34231. {
  34232. front: {
  34233. height: math.unit(9, "feet"),
  34234. weight: math.unit(1012, "lb"),
  34235. name: "Front",
  34236. image: {
  34237. source: "./media/characters/ulfra-lupae/front.svg",
  34238. extra: 1083/1011,
  34239. bottom: 67/1150
  34240. }
  34241. },
  34242. },
  34243. [
  34244. {
  34245. name: "Micro",
  34246. height: math.unit(6, "inches")
  34247. },
  34248. {
  34249. name: "Socializing",
  34250. height: math.unit(6 + 5/12, "feet")
  34251. },
  34252. {
  34253. name: "Normal",
  34254. height: math.unit(9, "feet"),
  34255. default: true
  34256. },
  34257. {
  34258. name: "Macro",
  34259. height: math.unit(150, "feet")
  34260. },
  34261. ]
  34262. ))
  34263. characterMakers.push(() => makeCharacter(
  34264. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  34265. {
  34266. front: {
  34267. height: math.unit(5 + 2/12, "feet"),
  34268. weight: math.unit(120, "lb"),
  34269. name: "Front",
  34270. image: {
  34271. source: "./media/characters/timber/front.svg",
  34272. extra: 2814/2705,
  34273. bottom: 181/2995
  34274. }
  34275. },
  34276. },
  34277. [
  34278. {
  34279. name: "Normal",
  34280. height: math.unit(5 + 2/12, "feet"),
  34281. default: true
  34282. },
  34283. ]
  34284. ))
  34285. characterMakers.push(() => makeCharacter(
  34286. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  34287. {
  34288. front: {
  34289. height: math.unit(9, "feet"),
  34290. name: "Front",
  34291. image: {
  34292. source: "./media/characters/nicki/front.svg",
  34293. extra: 1240/990,
  34294. bottom: 45/1285
  34295. },
  34296. form: "anthro",
  34297. default: true
  34298. },
  34299. side: {
  34300. height: math.unit(9, "feet"),
  34301. name: "Side",
  34302. image: {
  34303. source: "./media/characters/nicki/side.svg",
  34304. extra: 1047/973,
  34305. bottom: 61/1108
  34306. },
  34307. form: "anthro"
  34308. },
  34309. back: {
  34310. height: math.unit(9, "feet"),
  34311. name: "Back",
  34312. image: {
  34313. source: "./media/characters/nicki/back.svg",
  34314. extra: 1006/965,
  34315. bottom: 39/1045
  34316. },
  34317. form: "anthro"
  34318. },
  34319. taur: {
  34320. height: math.unit(15, "feet"),
  34321. name: "Taur",
  34322. image: {
  34323. source: "./media/characters/nicki/taur.svg",
  34324. extra: 1592/1347,
  34325. bottom: 0/1592
  34326. },
  34327. form: "taur",
  34328. default: true
  34329. },
  34330. },
  34331. [
  34332. {
  34333. name: "Normal",
  34334. height: math.unit(9, "feet"),
  34335. form: "anthro",
  34336. default: true
  34337. },
  34338. {
  34339. name: "Normal",
  34340. height: math.unit(15, "feet"),
  34341. form: "taur",
  34342. default: true
  34343. }
  34344. ],
  34345. {
  34346. "anthro": {
  34347. name: "Anthro",
  34348. default: true
  34349. },
  34350. "taur": {
  34351. name: "Taur"
  34352. }
  34353. }
  34354. ))
  34355. characterMakers.push(() => makeCharacter(
  34356. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  34357. {
  34358. front: {
  34359. height: math.unit(7 + 10/12, "feet"),
  34360. weight: math.unit(3.5, "tons"),
  34361. name: "Front",
  34362. image: {
  34363. source: "./media/characters/lee/front.svg",
  34364. extra: 1773/1615,
  34365. bottom: 86/1859
  34366. }
  34367. },
  34368. hand: {
  34369. height: math.unit(1.78, "feet"),
  34370. name: "Hand",
  34371. image: {
  34372. source: "./media/characters/lee/hand.svg"
  34373. }
  34374. },
  34375. maw: {
  34376. height: math.unit(1.18, "feet"),
  34377. name: "Maw",
  34378. image: {
  34379. source: "./media/characters/lee/maw.svg"
  34380. }
  34381. },
  34382. },
  34383. [
  34384. {
  34385. name: "Normal",
  34386. height: math.unit(7 + 10/12, "feet"),
  34387. default: true
  34388. },
  34389. ]
  34390. ))
  34391. characterMakers.push(() => makeCharacter(
  34392. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  34393. {
  34394. front: {
  34395. height: math.unit(9, "feet"),
  34396. name: "Front",
  34397. image: {
  34398. source: "./media/characters/guti/front.svg",
  34399. extra: 4551/4355,
  34400. bottom: 123/4674
  34401. }
  34402. },
  34403. tongue: {
  34404. height: math.unit(1, "feet"),
  34405. name: "Tongue",
  34406. image: {
  34407. source: "./media/characters/guti/tongue.svg"
  34408. }
  34409. },
  34410. paw: {
  34411. height: math.unit(1.18, "feet"),
  34412. name: "Paw",
  34413. image: {
  34414. source: "./media/characters/guti/paw.svg"
  34415. }
  34416. },
  34417. },
  34418. [
  34419. {
  34420. name: "Normal",
  34421. height: math.unit(9, "feet"),
  34422. default: true
  34423. },
  34424. ]
  34425. ))
  34426. characterMakers.push(() => makeCharacter(
  34427. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  34428. {
  34429. side: {
  34430. height: math.unit(5, "meters"),
  34431. name: "Side",
  34432. image: {
  34433. source: "./media/characters/vesper/side.svg",
  34434. extra: 1605/1518,
  34435. bottom: 0/1605
  34436. }
  34437. },
  34438. },
  34439. [
  34440. {
  34441. name: "Small",
  34442. height: math.unit(5, "meters")
  34443. },
  34444. {
  34445. name: "Sage",
  34446. height: math.unit(100, "meters"),
  34447. default: true
  34448. },
  34449. {
  34450. name: "Fun Size",
  34451. height: math.unit(600, "meters")
  34452. },
  34453. {
  34454. name: "Goddess",
  34455. height: math.unit(20000, "km")
  34456. },
  34457. {
  34458. name: "Maximum",
  34459. height: math.unit(5, "galaxies")
  34460. },
  34461. ]
  34462. ))
  34463. characterMakers.push(() => makeCharacter(
  34464. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  34465. {
  34466. front: {
  34467. height: math.unit(6 + 3/12, "feet"),
  34468. weight: math.unit(190, "lb"),
  34469. name: "Front",
  34470. image: {
  34471. source: "./media/characters/gawain/front.svg",
  34472. extra: 2222/2139,
  34473. bottom: 90/2312
  34474. }
  34475. },
  34476. back: {
  34477. height: math.unit(6 + 3/12, "feet"),
  34478. weight: math.unit(190, "lb"),
  34479. name: "Back",
  34480. image: {
  34481. source: "./media/characters/gawain/back.svg",
  34482. extra: 2199/2111,
  34483. bottom: 73/2272
  34484. }
  34485. },
  34486. },
  34487. [
  34488. {
  34489. name: "Normal",
  34490. height: math.unit(6 + 3/12, "feet"),
  34491. default: true
  34492. },
  34493. ]
  34494. ))
  34495. characterMakers.push(() => makeCharacter(
  34496. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  34497. {
  34498. side: {
  34499. height: math.unit(3.5, "meters"),
  34500. weight: math.unit(16000, "lb"),
  34501. name: "Side",
  34502. image: {
  34503. source: "./media/characters/dascalti/side.svg",
  34504. extra: 392/273,
  34505. bottom: 47/439
  34506. }
  34507. },
  34508. breath: {
  34509. height: math.unit(7.4, "feet"),
  34510. name: "Breath",
  34511. image: {
  34512. source: "./media/characters/dascalti/breath.svg"
  34513. }
  34514. },
  34515. fed: {
  34516. height: math.unit(3.6, "meters"),
  34517. weight: math.unit(16000, "lb"),
  34518. name: "Fed",
  34519. image: {
  34520. source: "./media/characters/dascalti/fed.svg",
  34521. extra: 1419/820,
  34522. bottom: 95/1514
  34523. }
  34524. },
  34525. },
  34526. [
  34527. {
  34528. name: "Normal",
  34529. height: math.unit(3.5, "meters"),
  34530. default: true
  34531. },
  34532. ]
  34533. ))
  34534. characterMakers.push(() => makeCharacter(
  34535. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  34536. {
  34537. front: {
  34538. height: math.unit(3 + 5/12, "feet"),
  34539. name: "Front",
  34540. image: {
  34541. source: "./media/characters/mauve/front.svg",
  34542. extra: 1126/1033,
  34543. bottom: 65/1191
  34544. }
  34545. },
  34546. side: {
  34547. height: math.unit(3 + 5/12, "feet"),
  34548. name: "Side",
  34549. image: {
  34550. source: "./media/characters/mauve/side.svg",
  34551. extra: 1089/1001,
  34552. bottom: 29/1118
  34553. }
  34554. },
  34555. back: {
  34556. height: math.unit(3 + 5/12, "feet"),
  34557. name: "Back",
  34558. image: {
  34559. source: "./media/characters/mauve/back.svg",
  34560. extra: 1173/1053,
  34561. bottom: 109/1282
  34562. }
  34563. },
  34564. },
  34565. [
  34566. {
  34567. name: "Normal",
  34568. height: math.unit(3 + 5/12, "feet"),
  34569. default: true
  34570. },
  34571. ]
  34572. ))
  34573. characterMakers.push(() => makeCharacter(
  34574. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  34575. {
  34576. front: {
  34577. height: math.unit(6 + 3/12, "feet"),
  34578. weight: math.unit(450, "lb"),
  34579. name: "Front",
  34580. image: {
  34581. source: "./media/characters/carlos/front.svg",
  34582. extra: 444/423,
  34583. bottom: 27/471
  34584. }
  34585. },
  34586. },
  34587. [
  34588. {
  34589. name: "Normal",
  34590. height: math.unit(6 + 3/12, "feet"),
  34591. default: true
  34592. },
  34593. ]
  34594. ))
  34595. characterMakers.push(() => makeCharacter(
  34596. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  34597. {
  34598. back: {
  34599. height: math.unit(5 + 10/12, "feet"),
  34600. weight: math.unit(200, "lb"),
  34601. name: "Back",
  34602. image: {
  34603. source: "./media/characters/jax/back.svg",
  34604. extra: 764/739,
  34605. bottom: 25/789
  34606. }
  34607. },
  34608. },
  34609. [
  34610. {
  34611. name: "Normal",
  34612. height: math.unit(5 + 10/12, "feet"),
  34613. default: true
  34614. },
  34615. ]
  34616. ))
  34617. characterMakers.push(() => makeCharacter(
  34618. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  34619. {
  34620. front: {
  34621. height: math.unit(8, "feet"),
  34622. weight: math.unit(250, "lb"),
  34623. name: "Front",
  34624. image: {
  34625. source: "./media/characters/eikthynir/front.svg",
  34626. extra: 1332/1166,
  34627. bottom: 82/1414
  34628. }
  34629. },
  34630. back: {
  34631. height: math.unit(8, "feet"),
  34632. weight: math.unit(250, "lb"),
  34633. name: "Back",
  34634. image: {
  34635. source: "./media/characters/eikthynir/back.svg",
  34636. extra: 1342/1190,
  34637. bottom: 19/1361
  34638. }
  34639. },
  34640. dick: {
  34641. height: math.unit(2.35, "feet"),
  34642. name: "Dick",
  34643. image: {
  34644. source: "./media/characters/eikthynir/dick.svg"
  34645. }
  34646. },
  34647. },
  34648. [
  34649. {
  34650. name: "Normal",
  34651. height: math.unit(8, "feet"),
  34652. default: true
  34653. },
  34654. ]
  34655. ))
  34656. characterMakers.push(() => makeCharacter(
  34657. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  34658. {
  34659. front: {
  34660. height: math.unit(99, "meters"),
  34661. weight: math.unit(13000, "tons"),
  34662. name: "Front",
  34663. image: {
  34664. source: "./media/characters/zlmos/front.svg",
  34665. extra: 2202/1992,
  34666. bottom: 315/2517
  34667. }
  34668. },
  34669. },
  34670. [
  34671. {
  34672. name: "Macro",
  34673. height: math.unit(99, "meters"),
  34674. default: true
  34675. },
  34676. ]
  34677. ))
  34678. characterMakers.push(() => makeCharacter(
  34679. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  34680. {
  34681. front: {
  34682. height: math.unit(6 + 5/12, "feet"),
  34683. name: "Front",
  34684. image: {
  34685. source: "./media/characters/purri/front.svg",
  34686. extra: 1698/1610,
  34687. bottom: 32/1730
  34688. }
  34689. },
  34690. frontAlt: {
  34691. height: math.unit(6 + 5/12, "feet"),
  34692. name: "Front (Alt)",
  34693. image: {
  34694. source: "./media/characters/purri/front-alt.svg",
  34695. extra: 450/420,
  34696. bottom: 26/476
  34697. }
  34698. },
  34699. boots: {
  34700. height: math.unit(5.5, "feet"),
  34701. name: "Boots",
  34702. image: {
  34703. source: "./media/characters/purri/boots.svg",
  34704. extra: 905/853,
  34705. bottom: 18/923
  34706. },
  34707. extraAttributes: {
  34708. "shoeSize": {
  34709. name: "Shoe Size",
  34710. power: 1,
  34711. type: "length",
  34712. base: math.unit(12, "ShoeSizeMensUS")
  34713. },
  34714. "platformHeight": {
  34715. name: "Platform Height",
  34716. power: 1,
  34717. type: "length",
  34718. base: math.unit(2, "inches")
  34719. },
  34720. }
  34721. },
  34722. lying: {
  34723. height: math.unit(2, "feet"),
  34724. name: "Lying",
  34725. image: {
  34726. source: "./media/characters/purri/lying.svg",
  34727. extra: 940/843,
  34728. bottom: 146/1086
  34729. }
  34730. },
  34731. devious: {
  34732. height: math.unit(1.77, "feet"),
  34733. name: "Devious",
  34734. image: {
  34735. source: "./media/characters/purri/devious.svg",
  34736. extra: 1440/1155,
  34737. bottom: 147/1587
  34738. }
  34739. },
  34740. bean: {
  34741. height: math.unit(1.94, "feet"),
  34742. name: "Bean",
  34743. image: {
  34744. source: "./media/characters/purri/bean.svg"
  34745. }
  34746. },
  34747. },
  34748. [
  34749. {
  34750. name: "Micro",
  34751. height: math.unit(1, "mm")
  34752. },
  34753. {
  34754. name: "Normal",
  34755. height: math.unit(6 + 5/12, "feet"),
  34756. default: true
  34757. },
  34758. {
  34759. name: "Macro :3c",
  34760. height: math.unit(2, "miles")
  34761. },
  34762. ]
  34763. ))
  34764. characterMakers.push(() => makeCharacter(
  34765. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  34766. {
  34767. front: {
  34768. height: math.unit(6 + 2/12, "feet"),
  34769. weight: math.unit(250, "lb"),
  34770. name: "Front",
  34771. image: {
  34772. source: "./media/characters/moonlight/front.svg",
  34773. extra: 1044/908,
  34774. bottom: 56/1100
  34775. }
  34776. },
  34777. feral: {
  34778. height: math.unit(3 + 1/12, "feet"),
  34779. weight: math.unit(50, "kg"),
  34780. name: "Feral",
  34781. image: {
  34782. source: "./media/characters/moonlight/feral.svg",
  34783. extra: 3705/2791,
  34784. bottom: 145/3850
  34785. }
  34786. },
  34787. paw: {
  34788. height: math.unit(1, "feet"),
  34789. name: "Paw",
  34790. image: {
  34791. source: "./media/characters/moonlight/paw.svg"
  34792. }
  34793. },
  34794. paws: {
  34795. height: math.unit(0.98, "feet"),
  34796. name: "Paws",
  34797. image: {
  34798. source: "./media/characters/moonlight/paws.svg",
  34799. extra: 939/939,
  34800. bottom: 50/989
  34801. }
  34802. },
  34803. mouth: {
  34804. height: math.unit(0.48, "feet"),
  34805. name: "Mouth",
  34806. image: {
  34807. source: "./media/characters/moonlight/mouth.svg"
  34808. }
  34809. },
  34810. dick: {
  34811. height: math.unit(1.46, "feet"),
  34812. name: "Dick",
  34813. image: {
  34814. source: "./media/characters/moonlight/dick.svg"
  34815. }
  34816. },
  34817. },
  34818. [
  34819. {
  34820. name: "Normal",
  34821. height: math.unit(6 + 2/12, "feet"),
  34822. default: true
  34823. },
  34824. {
  34825. name: "Macro",
  34826. height: math.unit(300, "feet")
  34827. },
  34828. {
  34829. name: "Macro+",
  34830. height: math.unit(1, "mile")
  34831. },
  34832. {
  34833. name: "Mt. Moon",
  34834. height: math.unit(5, "miles")
  34835. },
  34836. {
  34837. name: "Megamacro",
  34838. height: math.unit(15, "miles")
  34839. },
  34840. ]
  34841. ))
  34842. characterMakers.push(() => makeCharacter(
  34843. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  34844. {
  34845. back: {
  34846. height: math.unit(6, "feet"),
  34847. weight: math.unit(150, "lb"),
  34848. name: "Back",
  34849. image: {
  34850. source: "./media/characters/sylen/back.svg",
  34851. extra: 1335/1273,
  34852. bottom: 107/1442
  34853. }
  34854. },
  34855. },
  34856. [
  34857. {
  34858. name: "Normal",
  34859. height: math.unit(5 + 5/12, "feet")
  34860. },
  34861. {
  34862. name: "Megamacro",
  34863. height: math.unit(3, "miles"),
  34864. default: true
  34865. },
  34866. ]
  34867. ))
  34868. characterMakers.push(() => makeCharacter(
  34869. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  34870. {
  34871. front: {
  34872. height: math.unit(6, "feet"),
  34873. weight: math.unit(190, "lb"),
  34874. name: "Front",
  34875. image: {
  34876. source: "./media/characters/huttser/front.svg",
  34877. extra: 1152/1058,
  34878. bottom: 23/1175
  34879. }
  34880. },
  34881. side: {
  34882. height: math.unit(6, "feet"),
  34883. weight: math.unit(190, "lb"),
  34884. name: "Side",
  34885. image: {
  34886. source: "./media/characters/huttser/side.svg",
  34887. extra: 1174/1065,
  34888. bottom: 18/1192
  34889. }
  34890. },
  34891. back: {
  34892. height: math.unit(6, "feet"),
  34893. weight: math.unit(190, "lb"),
  34894. name: "Back",
  34895. image: {
  34896. source: "./media/characters/huttser/back.svg",
  34897. extra: 1158/1056,
  34898. bottom: 12/1170
  34899. }
  34900. },
  34901. },
  34902. [
  34903. ]
  34904. ))
  34905. characterMakers.push(() => makeCharacter(
  34906. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34907. {
  34908. side: {
  34909. height: math.unit(12 + 9/12, "feet"),
  34910. weight: math.unit(15000, "lb"),
  34911. name: "Side",
  34912. image: {
  34913. source: "./media/characters/faan/side.svg",
  34914. extra: 2747/2697,
  34915. bottom: 0/2747
  34916. }
  34917. },
  34918. front: {
  34919. height: math.unit(12 + 9/12, "feet"),
  34920. weight: math.unit(15000, "lb"),
  34921. name: "Front",
  34922. image: {
  34923. source: "./media/characters/faan/front.svg",
  34924. extra: 607/571,
  34925. bottom: 24/631
  34926. }
  34927. },
  34928. head: {
  34929. height: math.unit(2.85, "feet"),
  34930. name: "Head",
  34931. image: {
  34932. source: "./media/characters/faan/head.svg"
  34933. }
  34934. },
  34935. headAlt: {
  34936. height: math.unit(3.13, "feet"),
  34937. name: "Head (Alt)",
  34938. image: {
  34939. source: "./media/characters/faan/head-alt.svg"
  34940. }
  34941. },
  34942. },
  34943. [
  34944. {
  34945. name: "Normal",
  34946. height: math.unit(12 + 9/12, "feet"),
  34947. default: true
  34948. },
  34949. ]
  34950. ))
  34951. characterMakers.push(() => makeCharacter(
  34952. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34953. {
  34954. front: {
  34955. height: math.unit(6, "feet"),
  34956. weight: math.unit(300, "lb"),
  34957. name: "Front",
  34958. image: {
  34959. source: "./media/characters/tanio/front.svg",
  34960. extra: 711/673,
  34961. bottom: 25/736
  34962. }
  34963. },
  34964. },
  34965. [
  34966. {
  34967. name: "Normal",
  34968. height: math.unit(6, "feet"),
  34969. default: true
  34970. },
  34971. ]
  34972. ))
  34973. characterMakers.push(() => makeCharacter(
  34974. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34975. {
  34976. front: {
  34977. height: math.unit(3, "inches"),
  34978. name: "Front",
  34979. image: {
  34980. source: "./media/characters/noboru/front.svg",
  34981. extra: 1039/932,
  34982. bottom: 18/1057
  34983. }
  34984. },
  34985. },
  34986. [
  34987. {
  34988. name: "Micro",
  34989. height: math.unit(3, "inches"),
  34990. default: true
  34991. },
  34992. ]
  34993. ))
  34994. characterMakers.push(() => makeCharacter(
  34995. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34996. {
  34997. front: {
  34998. height: math.unit(1.85, "meters"),
  34999. weight: math.unit(80, "kg"),
  35000. name: "Front",
  35001. image: {
  35002. source: "./media/characters/daniel-barrett/front.svg",
  35003. extra: 355/337,
  35004. bottom: 9/364
  35005. }
  35006. },
  35007. },
  35008. [
  35009. {
  35010. name: "Pico",
  35011. height: math.unit(0.0433, "mm")
  35012. },
  35013. {
  35014. name: "Nano",
  35015. height: math.unit(1.5, "mm")
  35016. },
  35017. {
  35018. name: "Micro",
  35019. height: math.unit(5.3, "cm"),
  35020. default: true
  35021. },
  35022. {
  35023. name: "Normal",
  35024. height: math.unit(1.85, "meters")
  35025. },
  35026. {
  35027. name: "Macro",
  35028. height: math.unit(64.7, "meters")
  35029. },
  35030. {
  35031. name: "Megamacro",
  35032. height: math.unit(2.26, "km")
  35033. },
  35034. {
  35035. name: "Gigamacro",
  35036. height: math.unit(79, "km")
  35037. },
  35038. {
  35039. name: "Teramacro",
  35040. height: math.unit(2765, "km")
  35041. },
  35042. {
  35043. name: "Petamacro",
  35044. height: math.unit(96678, "km")
  35045. },
  35046. ]
  35047. ))
  35048. characterMakers.push(() => makeCharacter(
  35049. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  35050. {
  35051. front: {
  35052. height: math.unit(30, "meters"),
  35053. weight: math.unit(400, "tons"),
  35054. name: "Front",
  35055. image: {
  35056. source: "./media/characters/zeel/front.svg",
  35057. extra: 2599/2599,
  35058. bottom: 226/2825
  35059. }
  35060. },
  35061. },
  35062. [
  35063. {
  35064. name: "Macro",
  35065. height: math.unit(30, "meters"),
  35066. default: true
  35067. },
  35068. ]
  35069. ))
  35070. characterMakers.push(() => makeCharacter(
  35071. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  35072. {
  35073. front: {
  35074. height: math.unit(6 + 7/12, "feet"),
  35075. weight: math.unit(210, "lb"),
  35076. name: "Front",
  35077. image: {
  35078. source: "./media/characters/tarn/front.svg",
  35079. extra: 3517/3220,
  35080. bottom: 91/3608
  35081. }
  35082. },
  35083. back: {
  35084. height: math.unit(6 + 7/12, "feet"),
  35085. weight: math.unit(210, "lb"),
  35086. name: "Back",
  35087. image: {
  35088. source: "./media/characters/tarn/back.svg",
  35089. extra: 3566/3241,
  35090. bottom: 34/3600
  35091. }
  35092. },
  35093. dick: {
  35094. height: math.unit(1.65, "feet"),
  35095. name: "Dick",
  35096. image: {
  35097. source: "./media/characters/tarn/dick.svg"
  35098. }
  35099. },
  35100. paw: {
  35101. height: math.unit(1.80, "feet"),
  35102. name: "Paw",
  35103. image: {
  35104. source: "./media/characters/tarn/paw.svg"
  35105. }
  35106. },
  35107. tongue: {
  35108. height: math.unit(0.97, "feet"),
  35109. name: "Tongue",
  35110. image: {
  35111. source: "./media/characters/tarn/tongue.svg"
  35112. }
  35113. },
  35114. },
  35115. [
  35116. {
  35117. name: "Micro",
  35118. height: math.unit(4, "inches")
  35119. },
  35120. {
  35121. name: "Normal",
  35122. height: math.unit(6 + 7/12, "feet"),
  35123. default: true
  35124. },
  35125. {
  35126. name: "Macro",
  35127. height: math.unit(300, "feet")
  35128. },
  35129. ]
  35130. ))
  35131. characterMakers.push(() => makeCharacter(
  35132. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  35133. {
  35134. front: {
  35135. height: math.unit(5 + 7/12, "feet"),
  35136. weight: math.unit(80, "kg"),
  35137. name: "Front",
  35138. image: {
  35139. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  35140. extra: 3023/2865,
  35141. bottom: 33/3056
  35142. }
  35143. },
  35144. back: {
  35145. height: math.unit(5 + 7/12, "feet"),
  35146. weight: math.unit(80, "kg"),
  35147. name: "Back",
  35148. image: {
  35149. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  35150. extra: 3020/2886,
  35151. bottom: 30/3050
  35152. }
  35153. },
  35154. dick: {
  35155. height: math.unit(0.98, "feet"),
  35156. name: "Dick",
  35157. image: {
  35158. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  35159. }
  35160. },
  35161. anatomy: {
  35162. height: math.unit(2.86, "feet"),
  35163. name: "Anatomy",
  35164. image: {
  35165. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  35166. }
  35167. },
  35168. },
  35169. [
  35170. {
  35171. name: "Really Small",
  35172. height: math.unit(2, "inches")
  35173. },
  35174. {
  35175. name: "Micro",
  35176. height: math.unit(5.583, "inches")
  35177. },
  35178. {
  35179. name: "Normal",
  35180. height: math.unit(5 + 7/12, "feet"),
  35181. default: true
  35182. },
  35183. {
  35184. name: "Macro",
  35185. height: math.unit(67, "feet")
  35186. },
  35187. {
  35188. name: "Megamacro",
  35189. height: math.unit(134, "feet")
  35190. },
  35191. ]
  35192. ))
  35193. characterMakers.push(() => makeCharacter(
  35194. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  35195. {
  35196. front: {
  35197. height: math.unit(9, "feet"),
  35198. weight: math.unit(120, "lb"),
  35199. name: "Front",
  35200. image: {
  35201. source: "./media/characters/sally/front.svg",
  35202. extra: 1506/1349,
  35203. bottom: 66/1572
  35204. }
  35205. },
  35206. },
  35207. [
  35208. {
  35209. name: "Normal",
  35210. height: math.unit(9, "feet"),
  35211. default: true
  35212. },
  35213. ]
  35214. ))
  35215. characterMakers.push(() => makeCharacter(
  35216. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  35217. {
  35218. front: {
  35219. height: math.unit(8, "feet"),
  35220. weight: math.unit(900, "lb"),
  35221. name: "Front",
  35222. image: {
  35223. source: "./media/characters/owen/front.svg",
  35224. extra: 1761/1657,
  35225. bottom: 74/1835
  35226. }
  35227. },
  35228. side: {
  35229. height: math.unit(8, "feet"),
  35230. weight: math.unit(900, "lb"),
  35231. name: "Side",
  35232. image: {
  35233. source: "./media/characters/owen/side.svg",
  35234. extra: 1797/1734,
  35235. bottom: 30/1827
  35236. }
  35237. },
  35238. back: {
  35239. height: math.unit(8, "feet"),
  35240. weight: math.unit(900, "lb"),
  35241. name: "Back",
  35242. image: {
  35243. source: "./media/characters/owen/back.svg",
  35244. extra: 1796/1706,
  35245. bottom: 59/1855
  35246. }
  35247. },
  35248. maw: {
  35249. height: math.unit(1.76, "feet"),
  35250. name: "Maw",
  35251. image: {
  35252. source: "./media/characters/owen/maw.svg"
  35253. }
  35254. },
  35255. },
  35256. [
  35257. {
  35258. name: "Normal",
  35259. height: math.unit(8, "feet"),
  35260. default: true
  35261. },
  35262. ]
  35263. ))
  35264. characterMakers.push(() => makeCharacter(
  35265. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  35266. {
  35267. front: {
  35268. height: math.unit(4, "feet"),
  35269. weight: math.unit(400, "lb"),
  35270. name: "Front",
  35271. image: {
  35272. source: "./media/characters/ryth/front.svg",
  35273. extra: 1920/1748,
  35274. bottom: 42/1962
  35275. }
  35276. },
  35277. back: {
  35278. height: math.unit(4, "feet"),
  35279. weight: math.unit(400, "lb"),
  35280. name: "Back",
  35281. image: {
  35282. source: "./media/characters/ryth/back.svg",
  35283. extra: 1897/1690,
  35284. bottom: 89/1986
  35285. }
  35286. },
  35287. mouth: {
  35288. height: math.unit(1.39, "feet"),
  35289. name: "Mouth",
  35290. image: {
  35291. source: "./media/characters/ryth/mouth.svg"
  35292. }
  35293. },
  35294. tailmaw: {
  35295. height: math.unit(1.23, "feet"),
  35296. name: "Tailmaw",
  35297. image: {
  35298. source: "./media/characters/ryth/tailmaw.svg"
  35299. }
  35300. },
  35301. goia: {
  35302. height: math.unit(4, "meters"),
  35303. weight: math.unit(10800, "lb"),
  35304. name: "Goia",
  35305. image: {
  35306. source: "./media/characters/ryth/goia.svg",
  35307. extra: 745/640,
  35308. bottom: 107/852
  35309. }
  35310. },
  35311. goiaFront: {
  35312. height: math.unit(4, "meters"),
  35313. weight: math.unit(10800, "lb"),
  35314. name: "Goia (Front)",
  35315. image: {
  35316. source: "./media/characters/ryth/goia-front.svg",
  35317. extra: 750/586,
  35318. bottom: 114/864
  35319. }
  35320. },
  35321. goiaMaw: {
  35322. height: math.unit(5.55, "feet"),
  35323. name: "Goia Maw",
  35324. image: {
  35325. source: "./media/characters/ryth/goia-maw.svg"
  35326. }
  35327. },
  35328. goiaForepaw: {
  35329. height: math.unit(3.5, "feet"),
  35330. name: "Goia Forepaw",
  35331. image: {
  35332. source: "./media/characters/ryth/goia-forepaw.svg"
  35333. }
  35334. },
  35335. goiaHindpaw: {
  35336. height: math.unit(5.55, "feet"),
  35337. name: "Goia Hindpaw",
  35338. image: {
  35339. source: "./media/characters/ryth/goia-hindpaw.svg"
  35340. }
  35341. },
  35342. },
  35343. [
  35344. {
  35345. name: "Normal",
  35346. height: math.unit(4, "feet"),
  35347. default: true
  35348. },
  35349. ]
  35350. ))
  35351. characterMakers.push(() => makeCharacter(
  35352. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  35353. {
  35354. front: {
  35355. height: math.unit(7, "feet"),
  35356. weight: math.unit(180, "lb"),
  35357. name: "Front",
  35358. image: {
  35359. source: "./media/characters/necrolance/front.svg",
  35360. extra: 1062/947,
  35361. bottom: 41/1103
  35362. }
  35363. },
  35364. back: {
  35365. height: math.unit(7, "feet"),
  35366. weight: math.unit(180, "lb"),
  35367. name: "Back",
  35368. image: {
  35369. source: "./media/characters/necrolance/back.svg",
  35370. extra: 1045/984,
  35371. bottom: 14/1059
  35372. }
  35373. },
  35374. wing: {
  35375. height: math.unit(2.67, "feet"),
  35376. name: "Wing",
  35377. image: {
  35378. source: "./media/characters/necrolance/wing.svg"
  35379. }
  35380. },
  35381. },
  35382. [
  35383. {
  35384. name: "Normal",
  35385. height: math.unit(7, "feet"),
  35386. default: true
  35387. },
  35388. ]
  35389. ))
  35390. characterMakers.push(() => makeCharacter(
  35391. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  35392. {
  35393. front: {
  35394. height: math.unit(76, "meters"),
  35395. weight: math.unit(30000, "tons"),
  35396. name: "Front",
  35397. image: {
  35398. source: "./media/characters/tyler/front.svg",
  35399. extra: 1640/1640,
  35400. bottom: 114/1754
  35401. }
  35402. },
  35403. },
  35404. [
  35405. {
  35406. name: "Macro",
  35407. height: math.unit(76, "meters"),
  35408. default: true
  35409. },
  35410. ]
  35411. ))
  35412. characterMakers.push(() => makeCharacter(
  35413. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  35414. {
  35415. front: {
  35416. height: math.unit(4 + 11/12, "feet"),
  35417. weight: math.unit(132, "lb"),
  35418. name: "Front",
  35419. image: {
  35420. source: "./media/characters/icey/front.svg",
  35421. extra: 2750/2550,
  35422. bottom: 33/2783
  35423. }
  35424. },
  35425. back: {
  35426. height: math.unit(4 + 11/12, "feet"),
  35427. weight: math.unit(132, "lb"),
  35428. name: "Back",
  35429. image: {
  35430. source: "./media/characters/icey/back.svg",
  35431. extra: 2624/2481,
  35432. bottom: 35/2659
  35433. }
  35434. },
  35435. },
  35436. [
  35437. {
  35438. name: "Normal",
  35439. height: math.unit(4 + 11/12, "feet"),
  35440. default: true
  35441. },
  35442. ]
  35443. ))
  35444. characterMakers.push(() => makeCharacter(
  35445. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  35446. {
  35447. front: {
  35448. height: math.unit(100, "feet"),
  35449. weight: math.unit(0, "lb"),
  35450. name: "Front",
  35451. image: {
  35452. source: "./media/characters/smile/front.svg",
  35453. extra: 2983/2912,
  35454. bottom: 162/3145
  35455. }
  35456. },
  35457. back: {
  35458. height: math.unit(100, "feet"),
  35459. weight: math.unit(0, "lb"),
  35460. name: "Back",
  35461. image: {
  35462. source: "./media/characters/smile/back.svg",
  35463. extra: 3143/3031,
  35464. bottom: 91/3234
  35465. }
  35466. },
  35467. head: {
  35468. height: math.unit(26.3, "feet"),
  35469. weight: math.unit(0, "lb"),
  35470. name: "Head",
  35471. image: {
  35472. source: "./media/characters/smile/head.svg"
  35473. }
  35474. },
  35475. collar: {
  35476. height: math.unit(5.3, "feet"),
  35477. weight: math.unit(0, "lb"),
  35478. name: "Collar",
  35479. image: {
  35480. source: "./media/characters/smile/collar.svg"
  35481. }
  35482. },
  35483. },
  35484. [
  35485. {
  35486. name: "Macro",
  35487. height: math.unit(100, "feet"),
  35488. default: true
  35489. },
  35490. ]
  35491. ))
  35492. characterMakers.push(() => makeCharacter(
  35493. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  35494. {
  35495. dragon: {
  35496. height: math.unit(26, "feet"),
  35497. weight: math.unit(36, "tons"),
  35498. name: "Dragon",
  35499. image: {
  35500. source: "./media/characters/arimphae/dragon.svg",
  35501. extra: 1574/983,
  35502. bottom: 357/1931
  35503. }
  35504. },
  35505. drake: {
  35506. height: math.unit(9, "feet"),
  35507. weight: math.unit(1.5, "tons"),
  35508. name: "Drake",
  35509. image: {
  35510. source: "./media/characters/arimphae/drake.svg",
  35511. extra: 1120/925,
  35512. bottom: 435/1555
  35513. }
  35514. },
  35515. },
  35516. [
  35517. {
  35518. name: "Small",
  35519. height: math.unit(26*5/9, "feet")
  35520. },
  35521. {
  35522. name: "Normal",
  35523. height: math.unit(26, "feet"),
  35524. default: true
  35525. },
  35526. ]
  35527. ))
  35528. characterMakers.push(() => makeCharacter(
  35529. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  35530. {
  35531. front: {
  35532. height: math.unit(8 + 9/12, "feet"),
  35533. name: "Front",
  35534. image: {
  35535. source: "./media/characters/xander/front.svg",
  35536. extra: 1237/974,
  35537. bottom: 94/1331
  35538. }
  35539. },
  35540. },
  35541. [
  35542. {
  35543. name: "Normal",
  35544. height: math.unit(8 + 9/12, "feet"),
  35545. default: true
  35546. },
  35547. {
  35548. name: "Gaze Grabber",
  35549. height: math.unit(13 + 8/12, "feet")
  35550. },
  35551. {
  35552. name: "Jaw Dropper",
  35553. height: math.unit(27, "feet")
  35554. },
  35555. {
  35556. name: "Show Stopper",
  35557. height: math.unit(136, "feet")
  35558. },
  35559. {
  35560. name: "Superstar",
  35561. height: math.unit(1.9e6, "miles")
  35562. },
  35563. ]
  35564. ))
  35565. characterMakers.push(() => makeCharacter(
  35566. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  35567. {
  35568. side: {
  35569. height: math.unit(2100, "feet"),
  35570. name: "Side",
  35571. image: {
  35572. source: "./media/characters/osiris/side.svg",
  35573. extra: 1105/939,
  35574. bottom: 167/1272
  35575. }
  35576. },
  35577. },
  35578. [
  35579. {
  35580. name: "Macro",
  35581. height: math.unit(2100, "feet"),
  35582. default: true
  35583. },
  35584. ]
  35585. ))
  35586. characterMakers.push(() => makeCharacter(
  35587. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  35588. {
  35589. front: {
  35590. height: math.unit(6 + 8/12, "feet"),
  35591. weight: math.unit(225, "lb"),
  35592. name: "Front",
  35593. image: {
  35594. source: "./media/characters/rhys-londe/front.svg",
  35595. extra: 2258/2141,
  35596. bottom: 188/2446
  35597. }
  35598. },
  35599. back: {
  35600. height: math.unit(6 + 8/12, "feet"),
  35601. weight: math.unit(225, "lb"),
  35602. name: "Back",
  35603. image: {
  35604. source: "./media/characters/rhys-londe/back.svg",
  35605. extra: 2237/2137,
  35606. bottom: 63/2300
  35607. }
  35608. },
  35609. frontNsfw: {
  35610. height: math.unit(6 + 8/12, "feet"),
  35611. weight: math.unit(225, "lb"),
  35612. name: "Front (NSFW)",
  35613. image: {
  35614. source: "./media/characters/rhys-londe/front-nsfw.svg",
  35615. extra: 2258/2141,
  35616. bottom: 188/2446
  35617. }
  35618. },
  35619. backNsfw: {
  35620. height: math.unit(6 + 8/12, "feet"),
  35621. weight: math.unit(225, "lb"),
  35622. name: "Back (NSFW)",
  35623. image: {
  35624. source: "./media/characters/rhys-londe/back-nsfw.svg",
  35625. extra: 2237/2137,
  35626. bottom: 63/2300
  35627. }
  35628. },
  35629. dick: {
  35630. height: math.unit(30, "inches"),
  35631. name: "Dick",
  35632. image: {
  35633. source: "./media/characters/rhys-londe/dick.svg"
  35634. }
  35635. },
  35636. maw: {
  35637. height: math.unit(1.6, "feet"),
  35638. name: "Maw",
  35639. image: {
  35640. source: "./media/characters/rhys-londe/maw.svg"
  35641. }
  35642. },
  35643. },
  35644. [
  35645. {
  35646. name: "Normal",
  35647. height: math.unit(6 + 8/12, "feet"),
  35648. default: true
  35649. },
  35650. ]
  35651. ))
  35652. characterMakers.push(() => makeCharacter(
  35653. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  35654. {
  35655. front: {
  35656. height: math.unit(3 + 10/12, "feet"),
  35657. weight: math.unit(90, "lb"),
  35658. name: "Front",
  35659. image: {
  35660. source: "./media/characters/taivas-ensim/front.svg",
  35661. extra: 1327/1216,
  35662. bottom: 96/1423
  35663. }
  35664. },
  35665. back: {
  35666. height: math.unit(3 + 10/12, "feet"),
  35667. weight: math.unit(90, "lb"),
  35668. name: "Back",
  35669. image: {
  35670. source: "./media/characters/taivas-ensim/back.svg",
  35671. extra: 1355/1247,
  35672. bottom: 11/1366
  35673. }
  35674. },
  35675. frontNsfw: {
  35676. height: math.unit(3 + 10/12, "feet"),
  35677. weight: math.unit(90, "lb"),
  35678. name: "Front (NSFW)",
  35679. image: {
  35680. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  35681. extra: 1327/1216,
  35682. bottom: 96/1423
  35683. }
  35684. },
  35685. backNsfw: {
  35686. height: math.unit(3 + 10/12, "feet"),
  35687. weight: math.unit(90, "lb"),
  35688. name: "Back (NSFW)",
  35689. image: {
  35690. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  35691. extra: 1355/1247,
  35692. bottom: 11/1366
  35693. }
  35694. },
  35695. },
  35696. [
  35697. {
  35698. name: "Normal",
  35699. height: math.unit(3 + 10/12, "feet"),
  35700. default: true
  35701. },
  35702. ]
  35703. ))
  35704. characterMakers.push(() => makeCharacter(
  35705. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  35706. {
  35707. front: {
  35708. height: math.unit(9 + 6/12, "feet"),
  35709. weight: math.unit(940, "lb"),
  35710. name: "Front",
  35711. image: {
  35712. source: "./media/characters/byliss/front.svg",
  35713. extra: 1327/1290,
  35714. bottom: 82/1409
  35715. }
  35716. },
  35717. back: {
  35718. height: math.unit(9 + 6/12, "feet"),
  35719. weight: math.unit(940, "lb"),
  35720. name: "Back",
  35721. image: {
  35722. source: "./media/characters/byliss/back.svg",
  35723. extra: 1376/1349,
  35724. bottom: 9/1385
  35725. }
  35726. },
  35727. frontNsfw: {
  35728. height: math.unit(9 + 6/12, "feet"),
  35729. weight: math.unit(940, "lb"),
  35730. name: "Front (NSFW)",
  35731. image: {
  35732. source: "./media/characters/byliss/front-nsfw.svg",
  35733. extra: 1327/1290,
  35734. bottom: 82/1409
  35735. }
  35736. },
  35737. backNsfw: {
  35738. height: math.unit(9 + 6/12, "feet"),
  35739. weight: math.unit(940, "lb"),
  35740. name: "Back (NSFW)",
  35741. image: {
  35742. source: "./media/characters/byliss/back-nsfw.svg",
  35743. extra: 1376/1349,
  35744. bottom: 9/1385
  35745. }
  35746. },
  35747. },
  35748. [
  35749. {
  35750. name: "Normal",
  35751. height: math.unit(9 + 6/12, "feet"),
  35752. default: true
  35753. },
  35754. ]
  35755. ))
  35756. characterMakers.push(() => makeCharacter(
  35757. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  35758. {
  35759. front: {
  35760. height: math.unit(5 + 2/12, "feet"),
  35761. weight: math.unit(200, "lb"),
  35762. name: "Front",
  35763. image: {
  35764. source: "./media/characters/noraly/front.svg",
  35765. extra: 4985/4773,
  35766. bottom: 150/5135
  35767. }
  35768. },
  35769. full: {
  35770. height: math.unit(5 + 2/12, "feet"),
  35771. weight: math.unit(164, "lb"),
  35772. name: "Full",
  35773. image: {
  35774. source: "./media/characters/noraly/full.svg",
  35775. extra: 1114/1059,
  35776. bottom: 35/1149
  35777. }
  35778. },
  35779. fuller: {
  35780. height: math.unit(5 + 2/12, "feet"),
  35781. weight: math.unit(230, "lb"),
  35782. name: "Fuller",
  35783. image: {
  35784. source: "./media/characters/noraly/fuller.svg",
  35785. extra: 1114/1059,
  35786. bottom: 35/1149
  35787. }
  35788. },
  35789. fullest: {
  35790. height: math.unit(5 + 2/12, "feet"),
  35791. weight: math.unit(300, "lb"),
  35792. name: "Fullest",
  35793. image: {
  35794. source: "./media/characters/noraly/fullest.svg",
  35795. extra: 1114/1059,
  35796. bottom: 35/1149
  35797. }
  35798. },
  35799. },
  35800. [
  35801. {
  35802. name: "Normal",
  35803. height: math.unit(5 + 2/12, "feet"),
  35804. default: true
  35805. },
  35806. ]
  35807. ))
  35808. characterMakers.push(() => makeCharacter(
  35809. { name: "Pera", species: ["snake"], tags: ["naga"] },
  35810. {
  35811. front: {
  35812. height: math.unit(5 + 2/12, "feet"),
  35813. weight: math.unit(210, "lb"),
  35814. name: "Front",
  35815. image: {
  35816. source: "./media/characters/pera/front.svg",
  35817. extra: 1560/1531,
  35818. bottom: 165/1725
  35819. }
  35820. },
  35821. back: {
  35822. height: math.unit(5 + 2/12, "feet"),
  35823. weight: math.unit(210, "lb"),
  35824. name: "Back",
  35825. image: {
  35826. source: "./media/characters/pera/back.svg",
  35827. extra: 1523/1493,
  35828. bottom: 152/1675
  35829. }
  35830. },
  35831. dick: {
  35832. height: math.unit(2.4, "feet"),
  35833. name: "Dick",
  35834. image: {
  35835. source: "./media/characters/pera/dick.svg"
  35836. }
  35837. },
  35838. },
  35839. [
  35840. {
  35841. name: "Normal",
  35842. height: math.unit(5 + 2/12, "feet"),
  35843. default: true
  35844. },
  35845. ]
  35846. ))
  35847. characterMakers.push(() => makeCharacter(
  35848. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  35849. {
  35850. front: {
  35851. height: math.unit(12, "feet"),
  35852. weight: math.unit(3200, "lb"),
  35853. name: "Front",
  35854. image: {
  35855. source: "./media/characters/julian/front.svg",
  35856. extra: 2962/2701,
  35857. bottom: 184/3146
  35858. }
  35859. },
  35860. maw: {
  35861. height: math.unit(5.35, "feet"),
  35862. name: "Maw",
  35863. image: {
  35864. source: "./media/characters/julian/maw.svg"
  35865. }
  35866. },
  35867. paw: {
  35868. height: math.unit(3.07, "feet"),
  35869. name: "Paw",
  35870. image: {
  35871. source: "./media/characters/julian/paw.svg"
  35872. }
  35873. },
  35874. },
  35875. [
  35876. {
  35877. name: "Default",
  35878. height: math.unit(12, "feet"),
  35879. default: true
  35880. },
  35881. {
  35882. name: "Big",
  35883. height: math.unit(50, "feet")
  35884. },
  35885. {
  35886. name: "Really Big",
  35887. height: math.unit(1, "mile")
  35888. },
  35889. {
  35890. name: "Extremely Big",
  35891. height: math.unit(100, "miles")
  35892. },
  35893. {
  35894. name: "Planet Hugger",
  35895. height: math.unit(200, "megameters")
  35896. },
  35897. {
  35898. name: "Unreasonably Big",
  35899. height: math.unit(1e300, "meters")
  35900. },
  35901. ]
  35902. ))
  35903. characterMakers.push(() => makeCharacter(
  35904. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35905. {
  35906. solgooleo: {
  35907. height: math.unit(4, "meters"),
  35908. weight: math.unit(6000*1.5, "kg"),
  35909. volume: math.unit(6000, "liters"),
  35910. name: "Solgooleo",
  35911. image: {
  35912. source: "./media/characters/pi/solgooleo.svg",
  35913. extra: 388/331,
  35914. bottom: 29/417
  35915. }
  35916. },
  35917. },
  35918. [
  35919. {
  35920. name: "Normal",
  35921. height: math.unit(4, "meters"),
  35922. default: true
  35923. },
  35924. ]
  35925. ))
  35926. characterMakers.push(() => makeCharacter(
  35927. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35928. {
  35929. front: {
  35930. height: math.unit(8, "feet"),
  35931. weight: math.unit(4, "tons"),
  35932. name: "Front",
  35933. image: {
  35934. source: "./media/characters/shaun/front.svg",
  35935. extra: 503/495,
  35936. bottom: 20/523
  35937. }
  35938. },
  35939. back: {
  35940. height: math.unit(8, "feet"),
  35941. weight: math.unit(4, "tons"),
  35942. name: "Back",
  35943. image: {
  35944. source: "./media/characters/shaun/back.svg",
  35945. extra: 487/480,
  35946. bottom: 20/507
  35947. }
  35948. },
  35949. },
  35950. [
  35951. {
  35952. name: "Lorg",
  35953. height: math.unit(8, "feet"),
  35954. default: true
  35955. },
  35956. ]
  35957. ))
  35958. characterMakers.push(() => makeCharacter(
  35959. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35960. {
  35961. frontAnthro: {
  35962. height: math.unit(7, "feet"),
  35963. name: "Front",
  35964. image: {
  35965. source: "./media/characters/sini/front-anthro.svg",
  35966. extra: 726/678,
  35967. bottom: 35/761
  35968. },
  35969. form: "anthro",
  35970. default: true
  35971. },
  35972. backAnthro: {
  35973. height: math.unit(7, "feet"),
  35974. name: "Back",
  35975. image: {
  35976. source: "./media/characters/sini/back-anthro.svg",
  35977. extra: 743/701,
  35978. bottom: 12/755
  35979. },
  35980. form: "anthro",
  35981. },
  35982. frontAnthroNsfw: {
  35983. height: math.unit(7, "feet"),
  35984. name: "Front (NSFW)",
  35985. image: {
  35986. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35987. extra: 726/678,
  35988. bottom: 35/761
  35989. },
  35990. form: "anthro"
  35991. },
  35992. backAnthroNsfw: {
  35993. height: math.unit(7, "feet"),
  35994. name: "Back (NSFW)",
  35995. image: {
  35996. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35997. extra: 743/701,
  35998. bottom: 12/755
  35999. },
  36000. form: "anthro",
  36001. },
  36002. mawAnthro: {
  36003. height: math.unit(2.14, "feet"),
  36004. name: "Maw",
  36005. image: {
  36006. source: "./media/characters/sini/maw-anthro.svg"
  36007. },
  36008. form: "anthro"
  36009. },
  36010. dick: {
  36011. height: math.unit(1.45, "feet"),
  36012. name: "Dick",
  36013. image: {
  36014. source: "./media/characters/sini/dick-anthro.svg"
  36015. },
  36016. form: "anthro"
  36017. },
  36018. feral: {
  36019. height: math.unit(16, "feet"),
  36020. name: "Feral",
  36021. image: {
  36022. source: "./media/characters/sini/feral.svg",
  36023. extra: 814/605,
  36024. bottom: 11/825
  36025. },
  36026. form: "feral",
  36027. default: true
  36028. },
  36029. feralNsfw: {
  36030. height: math.unit(16, "feet"),
  36031. name: "Feral (NSFW)",
  36032. image: {
  36033. source: "./media/characters/sini/feral-nsfw.svg",
  36034. extra: 814/605,
  36035. bottom: 11/825
  36036. },
  36037. form: "feral"
  36038. },
  36039. mawFeral: {
  36040. height: math.unit(5.66, "feet"),
  36041. name: "Maw",
  36042. image: {
  36043. source: "./media/characters/sini/maw-feral.svg"
  36044. },
  36045. form: "feral",
  36046. },
  36047. pawFeral: {
  36048. height: math.unit(5.17, "feet"),
  36049. name: "Paw",
  36050. image: {
  36051. source: "./media/characters/sini/paw-feral.svg"
  36052. },
  36053. form: "feral",
  36054. },
  36055. rumpFeral: {
  36056. height: math.unit(13.11, "feet"),
  36057. name: "Rump",
  36058. image: {
  36059. source: "./media/characters/sini/rump-feral.svg"
  36060. },
  36061. form: "feral",
  36062. },
  36063. dickFeral: {
  36064. height: math.unit(1, "feet"),
  36065. name: "Dick",
  36066. image: {
  36067. source: "./media/characters/sini/dick-feral.svg"
  36068. },
  36069. form: "feral",
  36070. },
  36071. eyeFeral: {
  36072. height: math.unit(1.23, "feet"),
  36073. name: "Eye",
  36074. image: {
  36075. source: "./media/characters/sini/eye-feral.svg"
  36076. },
  36077. form: "feral",
  36078. },
  36079. },
  36080. [
  36081. {
  36082. name: "Normal",
  36083. height: math.unit(7, "feet"),
  36084. default: true,
  36085. form: "anthro"
  36086. },
  36087. {
  36088. name: "Normal",
  36089. height: math.unit(16, "feet"),
  36090. default: true,
  36091. form: "feral"
  36092. },
  36093. ],
  36094. {
  36095. "anthro": {
  36096. name: "Anthro",
  36097. default: true
  36098. },
  36099. "feral": {
  36100. name: "Feral",
  36101. }
  36102. }
  36103. ))
  36104. characterMakers.push(() => makeCharacter(
  36105. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  36106. {
  36107. side: {
  36108. height: math.unit(47.2, "meters"),
  36109. weight: math.unit(10000, "tons"),
  36110. name: "Side",
  36111. image: {
  36112. source: "./media/characters/raylldo/side.svg",
  36113. extra: 2363/642,
  36114. bottom: 221/2584
  36115. }
  36116. },
  36117. top: {
  36118. height: math.unit(240, "meters"),
  36119. weight: math.unit(10000, "tons"),
  36120. name: "Top",
  36121. image: {
  36122. source: "./media/characters/raylldo/top.svg"
  36123. }
  36124. },
  36125. bottom: {
  36126. height: math.unit(240, "meters"),
  36127. weight: math.unit(10000, "tons"),
  36128. name: "Bottom",
  36129. image: {
  36130. source: "./media/characters/raylldo/bottom.svg"
  36131. }
  36132. },
  36133. head: {
  36134. height: math.unit(38.6, "meters"),
  36135. name: "Head",
  36136. image: {
  36137. source: "./media/characters/raylldo/head.svg",
  36138. extra: 1335/1112,
  36139. bottom: 0/1335
  36140. }
  36141. },
  36142. maw: {
  36143. height: math.unit(16.37, "meters"),
  36144. name: "Maw",
  36145. image: {
  36146. source: "./media/characters/raylldo/maw.svg",
  36147. extra: 883/660,
  36148. bottom: 0/883
  36149. },
  36150. extraAttributes: {
  36151. preyCapacity: {
  36152. name: "Capacity",
  36153. power: 3,
  36154. type: "volume",
  36155. base: math.unit(1000, "people")
  36156. },
  36157. tongueSize: {
  36158. name: "Tongue Size",
  36159. power: 2,
  36160. type: "area",
  36161. base: math.unit(21, "m^2")
  36162. }
  36163. }
  36164. },
  36165. forepaw: {
  36166. height: math.unit(18, "meters"),
  36167. name: "Forepaw",
  36168. image: {
  36169. source: "./media/characters/raylldo/forepaw.svg"
  36170. }
  36171. },
  36172. hindpaw: {
  36173. height: math.unit(23, "meters"),
  36174. name: "Hindpaw",
  36175. image: {
  36176. source: "./media/characters/raylldo/hindpaw.svg"
  36177. }
  36178. },
  36179. genitals: {
  36180. height: math.unit(42, "meters"),
  36181. name: "Genitals",
  36182. image: {
  36183. source: "./media/characters/raylldo/genitals.svg"
  36184. }
  36185. },
  36186. },
  36187. [
  36188. {
  36189. name: "Normal",
  36190. height: math.unit(47.2, "meters"),
  36191. default: true
  36192. },
  36193. ]
  36194. ))
  36195. characterMakers.push(() => makeCharacter(
  36196. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  36197. {
  36198. anthroFront: {
  36199. height: math.unit(9, "feet"),
  36200. weight: math.unit(600, "lb"),
  36201. name: "Anthro (Front)",
  36202. image: {
  36203. source: "./media/characters/glint/anthro-front.svg",
  36204. extra: 1097/1018,
  36205. bottom: 28/1125
  36206. }
  36207. },
  36208. anthroBack: {
  36209. height: math.unit(9, "feet"),
  36210. weight: math.unit(600, "lb"),
  36211. name: "Anthro (Back)",
  36212. image: {
  36213. source: "./media/characters/glint/anthro-back.svg",
  36214. extra: 1154/997,
  36215. bottom: 36/1190
  36216. }
  36217. },
  36218. feral: {
  36219. height: math.unit(11, "feet"),
  36220. weight: math.unit(50000, "lb"),
  36221. name: "Feral",
  36222. image: {
  36223. source: "./media/characters/glint/feral.svg",
  36224. extra: 3035/1585,
  36225. bottom: 1169/4204
  36226. }
  36227. },
  36228. dickAnthro: {
  36229. height: math.unit(0.7, "meters"),
  36230. name: "Dick (Anthro)",
  36231. image: {
  36232. source: "./media/characters/glint/dick-anthro.svg"
  36233. }
  36234. },
  36235. dickFeral: {
  36236. height: math.unit(2.65, "meters"),
  36237. name: "Dick (Feral)",
  36238. image: {
  36239. source: "./media/characters/glint/dick-feral.svg"
  36240. }
  36241. },
  36242. slitHidden: {
  36243. height: math.unit(5.85, "meters"),
  36244. name: "Slit (Hidden)",
  36245. image: {
  36246. source: "./media/characters/glint/slit-hidden.svg"
  36247. }
  36248. },
  36249. slitErect: {
  36250. height: math.unit(5.85, "meters"),
  36251. name: "Slit (Erect)",
  36252. image: {
  36253. source: "./media/characters/glint/slit-erect.svg"
  36254. }
  36255. },
  36256. mawAnthro: {
  36257. height: math.unit(0.63, "meters"),
  36258. name: "Maw (Anthro)",
  36259. image: {
  36260. source: "./media/characters/glint/maw.svg"
  36261. }
  36262. },
  36263. mawFeral: {
  36264. height: math.unit(2.89, "meters"),
  36265. name: "Maw (Feral)",
  36266. image: {
  36267. source: "./media/characters/glint/maw.svg"
  36268. }
  36269. },
  36270. },
  36271. [
  36272. {
  36273. name: "Normal",
  36274. height: math.unit(9, "feet"),
  36275. default: true
  36276. },
  36277. ]
  36278. ))
  36279. characterMakers.push(() => makeCharacter(
  36280. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  36281. {
  36282. side: {
  36283. height: math.unit(15, "feet"),
  36284. weight: math.unit(5000, "kg"),
  36285. name: "Side",
  36286. image: {
  36287. source: "./media/characters/kairne/side.svg",
  36288. extra: 979/811,
  36289. bottom: 13/992
  36290. }
  36291. },
  36292. front: {
  36293. height: math.unit(15, "feet"),
  36294. weight: math.unit(5000, "kg"),
  36295. name: "Front",
  36296. image: {
  36297. source: "./media/characters/kairne/front.svg",
  36298. extra: 908/814,
  36299. bottom: 26/934
  36300. }
  36301. },
  36302. sideNsfw: {
  36303. height: math.unit(15, "feet"),
  36304. weight: math.unit(5000, "kg"),
  36305. name: "Side (NSFW)",
  36306. image: {
  36307. source: "./media/characters/kairne/side-nsfw.svg",
  36308. extra: 979/811,
  36309. bottom: 13/992
  36310. }
  36311. },
  36312. frontNsfw: {
  36313. height: math.unit(15, "feet"),
  36314. weight: math.unit(5000, "kg"),
  36315. name: "Front (NSFW)",
  36316. image: {
  36317. source: "./media/characters/kairne/front-nsfw.svg",
  36318. extra: 908/814,
  36319. bottom: 26/934
  36320. }
  36321. },
  36322. dickCaged: {
  36323. height: math.unit(0.65, "meters"),
  36324. name: "Dick (Caged)",
  36325. image: {
  36326. source: "./media/characters/kairne/dick-caged.svg"
  36327. }
  36328. },
  36329. dick: {
  36330. height: math.unit(0.79, "meters"),
  36331. name: "Dick",
  36332. image: {
  36333. source: "./media/characters/kairne/dick.svg"
  36334. }
  36335. },
  36336. genitals: {
  36337. height: math.unit(1.29, "meters"),
  36338. name: "Genitals",
  36339. image: {
  36340. source: "./media/characters/kairne/genitals.svg"
  36341. }
  36342. },
  36343. maw: {
  36344. height: math.unit(1.73, "meters"),
  36345. name: "Maw",
  36346. image: {
  36347. source: "./media/characters/kairne/maw.svg"
  36348. }
  36349. },
  36350. },
  36351. [
  36352. {
  36353. name: "Normal",
  36354. height: math.unit(15, "feet"),
  36355. default: true
  36356. },
  36357. ]
  36358. ))
  36359. characterMakers.push(() => makeCharacter(
  36360. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  36361. {
  36362. front: {
  36363. height: math.unit(5 + 8/12, "feet"),
  36364. weight: math.unit(139, "lb"),
  36365. name: "Front",
  36366. image: {
  36367. source: "./media/characters/biscuit-jackal/front.svg",
  36368. extra: 2106/1961,
  36369. bottom: 58/2164
  36370. }
  36371. },
  36372. back: {
  36373. height: math.unit(5 + 8/12, "feet"),
  36374. weight: math.unit(139, "lb"),
  36375. name: "Back",
  36376. image: {
  36377. source: "./media/characters/biscuit-jackal/back.svg",
  36378. extra: 2132/1976,
  36379. bottom: 57/2189
  36380. }
  36381. },
  36382. werejackal: {
  36383. height: math.unit(6 + 3/12, "feet"),
  36384. weight: math.unit(188, "lb"),
  36385. name: "Werejackal",
  36386. image: {
  36387. source: "./media/characters/biscuit-jackal/werejackal.svg",
  36388. extra: 2373/2178,
  36389. bottom: 53/2426
  36390. }
  36391. },
  36392. },
  36393. [
  36394. {
  36395. name: "Normal",
  36396. height: math.unit(5 + 8/12, "feet"),
  36397. default: true
  36398. },
  36399. ]
  36400. ))
  36401. characterMakers.push(() => makeCharacter(
  36402. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  36403. {
  36404. front: {
  36405. height: math.unit(140, "cm"),
  36406. weight: math.unit(45, "kg"),
  36407. name: "Front",
  36408. image: {
  36409. source: "./media/characters/tayra-white/front.svg",
  36410. extra: 2229/2192,
  36411. bottom: 75/2304
  36412. }
  36413. },
  36414. },
  36415. [
  36416. {
  36417. name: "Normal",
  36418. height: math.unit(140, "cm"),
  36419. default: true
  36420. },
  36421. ]
  36422. ))
  36423. characterMakers.push(() => makeCharacter(
  36424. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  36425. {
  36426. front: {
  36427. height: math.unit(4 + 5/12, "feet"),
  36428. name: "Front",
  36429. image: {
  36430. source: "./media/characters/scoop/front.svg",
  36431. extra: 1257/1136,
  36432. bottom: 69/1326
  36433. }
  36434. },
  36435. back: {
  36436. height: math.unit(4 + 5/12, "feet"),
  36437. name: "Back",
  36438. image: {
  36439. source: "./media/characters/scoop/back.svg",
  36440. extra: 1321/1152,
  36441. bottom: 32/1353
  36442. }
  36443. },
  36444. maw: {
  36445. height: math.unit(0.68, "feet"),
  36446. name: "Maw",
  36447. image: {
  36448. source: "./media/characters/scoop/maw.svg"
  36449. }
  36450. },
  36451. },
  36452. [
  36453. {
  36454. name: "Really Small",
  36455. height: math.unit(1, "mm")
  36456. },
  36457. {
  36458. name: "Micro",
  36459. height: math.unit(1, "inch")
  36460. },
  36461. {
  36462. name: "Normal",
  36463. height: math.unit(4 + 5/12, "feet"),
  36464. default: true
  36465. },
  36466. {
  36467. name: "Macro",
  36468. height: math.unit(200, "feet")
  36469. },
  36470. {
  36471. name: "Megamacro",
  36472. height: math.unit(3240, "feet")
  36473. },
  36474. {
  36475. name: "Teramacro",
  36476. height: math.unit(2500, "miles")
  36477. },
  36478. ]
  36479. ))
  36480. characterMakers.push(() => makeCharacter(
  36481. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  36482. {
  36483. front: {
  36484. height: math.unit(15 + 7/12, "feet"),
  36485. weight: math.unit(1150, "tons"),
  36486. name: "Front",
  36487. image: {
  36488. source: "./media/characters/saphinara/front.svg",
  36489. extra: 1837/1643,
  36490. bottom: 84/1921
  36491. },
  36492. form: "normal",
  36493. default: true
  36494. },
  36495. side: {
  36496. height: math.unit(15 + 7/12, "feet"),
  36497. weight: math.unit(1150, "tons"),
  36498. name: "Side",
  36499. image: {
  36500. source: "./media/characters/saphinara/side.svg",
  36501. extra: 605/547,
  36502. bottom: 6/611
  36503. },
  36504. form: "normal"
  36505. },
  36506. back: {
  36507. height: math.unit(15 + 7/12, "feet"),
  36508. weight: math.unit(1150, "tons"),
  36509. name: "Back",
  36510. image: {
  36511. source: "./media/characters/saphinara/back.svg",
  36512. extra: 591/531,
  36513. bottom: 13/604
  36514. },
  36515. form: "normal"
  36516. },
  36517. frontTail: {
  36518. height: math.unit(15 + 7/12, "feet"),
  36519. weight: math.unit(1150, "tons"),
  36520. name: "Front (Full Tail)",
  36521. image: {
  36522. source: "./media/characters/saphinara/front-tail.svg",
  36523. extra: 2256/1630,
  36524. bottom: 261/2517
  36525. },
  36526. form: "normal"
  36527. },
  36528. insides: {
  36529. height: math.unit(11.92, "feet"),
  36530. name: "Insides",
  36531. image: {
  36532. source: "./media/characters/saphinara/insides.svg"
  36533. },
  36534. form: "normal"
  36535. },
  36536. head: {
  36537. height: math.unit(4.17, "feet"),
  36538. name: "Head",
  36539. image: {
  36540. source: "./media/characters/saphinara/head.svg"
  36541. },
  36542. form: "normal"
  36543. },
  36544. tongue: {
  36545. height: math.unit(4.60, "feet"),
  36546. name: "Tongue",
  36547. image: {
  36548. source: "./media/characters/saphinara/tongue.svg"
  36549. },
  36550. form: "normal"
  36551. },
  36552. headEnraged: {
  36553. height: math.unit(5.55, "feet"),
  36554. name: "Head (Enraged)",
  36555. image: {
  36556. source: "./media/characters/saphinara/head-enraged.svg"
  36557. },
  36558. form: "normal"
  36559. },
  36560. wings: {
  36561. height: math.unit(11.95, "feet"),
  36562. name: "Wings",
  36563. image: {
  36564. source: "./media/characters/saphinara/wings.svg"
  36565. },
  36566. form: "normal"
  36567. },
  36568. feathers: {
  36569. height: math.unit(8.92, "feet"),
  36570. name: "Feathers",
  36571. image: {
  36572. source: "./media/characters/saphinara/feathers.svg"
  36573. },
  36574. form: "normal"
  36575. },
  36576. shackles: {
  36577. height: math.unit(2, "feet"),
  36578. name: "Shackles",
  36579. image: {
  36580. source: "./media/characters/saphinara/shackles.svg"
  36581. },
  36582. form: "normal"
  36583. },
  36584. eyes: {
  36585. height: math.unit(1.331, "feet"),
  36586. name: "Eyes",
  36587. image: {
  36588. source: "./media/characters/saphinara/eyes.svg"
  36589. },
  36590. form: "normal"
  36591. },
  36592. eyesEnraged: {
  36593. height: math.unit(1.331, "feet"),
  36594. name: "Eyes (Enraged)",
  36595. image: {
  36596. source: "./media/characters/saphinara/eyes-enraged.svg"
  36597. },
  36598. form: "normal"
  36599. },
  36600. trueFormSide: {
  36601. height: math.unit(200, "feet"),
  36602. weight: math.unit(1e7, "tons"),
  36603. name: "Side",
  36604. image: {
  36605. source: "./media/characters/saphinara/true-form-side.svg",
  36606. extra: 1399/770,
  36607. bottom: 97/1496
  36608. },
  36609. form: "true-form",
  36610. default: true
  36611. },
  36612. trueFormMaw: {
  36613. height: math.unit(71.5, "feet"),
  36614. name: "Maw",
  36615. image: {
  36616. source: "./media/characters/saphinara/true-form-maw.svg",
  36617. extra: 2302/1453,
  36618. bottom: 0/2302
  36619. },
  36620. form: "true-form"
  36621. },
  36622. meowberusSide: {
  36623. height: math.unit(75, "feet"),
  36624. weight: math.unit(180000, "kg"),
  36625. preyCapacity: math.unit(50000, "people"),
  36626. name: "Side",
  36627. image: {
  36628. source: "./media/characters/saphinara/meowberus-side.svg",
  36629. extra: 1400/711,
  36630. bottom: 126/1526
  36631. },
  36632. form: "meowberus",
  36633. extraAttributes: {
  36634. "pawArea": {
  36635. name: "Paw Size",
  36636. power: 2,
  36637. type: "area",
  36638. base: math.unit(35, "m^2")
  36639. }
  36640. }
  36641. },
  36642. },
  36643. [
  36644. {
  36645. name: "Normal",
  36646. height: math.unit(15 + 7/12, "feet"),
  36647. default: true,
  36648. form: "normal"
  36649. },
  36650. {
  36651. name: "Angry",
  36652. height: math.unit(30 + 6/12, "feet"),
  36653. form: "normal"
  36654. },
  36655. {
  36656. name: "Enraged",
  36657. height: math.unit(102 + 1/12, "feet"),
  36658. form: "normal"
  36659. },
  36660. {
  36661. name: "True",
  36662. height: math.unit(200, "feet"),
  36663. default: true,
  36664. form: "true-form"
  36665. },
  36666. {
  36667. name: "Normal",
  36668. height: math.unit(75, "feet"),
  36669. default: true,
  36670. form: "meowberus"
  36671. },
  36672. ],
  36673. {
  36674. "normal": {
  36675. name: "Normal",
  36676. default: true
  36677. },
  36678. "true-form": {
  36679. name: "True Form"
  36680. },
  36681. "meowberus": {
  36682. name: "Meowberus",
  36683. },
  36684. }
  36685. ))
  36686. characterMakers.push(() => makeCharacter(
  36687. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  36688. {
  36689. front: {
  36690. height: math.unit(6 + 8/12, "feet"),
  36691. weight: math.unit(300, "lb"),
  36692. name: "Front",
  36693. image: {
  36694. source: "./media/characters/jrain/front.svg",
  36695. extra: 3039/2865,
  36696. bottom: 399/3438
  36697. }
  36698. },
  36699. back: {
  36700. height: math.unit(6 + 8/12, "feet"),
  36701. weight: math.unit(300, "lb"),
  36702. name: "Back",
  36703. image: {
  36704. source: "./media/characters/jrain/back.svg",
  36705. extra: 3089/2938,
  36706. bottom: 172/3261
  36707. }
  36708. },
  36709. head: {
  36710. height: math.unit(2.14, "feet"),
  36711. name: "Head",
  36712. image: {
  36713. source: "./media/characters/jrain/head.svg"
  36714. }
  36715. },
  36716. maw: {
  36717. height: math.unit(1.77, "feet"),
  36718. name: "Maw",
  36719. image: {
  36720. source: "./media/characters/jrain/maw.svg"
  36721. }
  36722. },
  36723. leftHand: {
  36724. height: math.unit(1.1, "feet"),
  36725. name: "Left Hand",
  36726. image: {
  36727. source: "./media/characters/jrain/left-hand.svg"
  36728. }
  36729. },
  36730. rightHand: {
  36731. height: math.unit(1.1, "feet"),
  36732. name: "Right Hand",
  36733. image: {
  36734. source: "./media/characters/jrain/right-hand.svg"
  36735. }
  36736. },
  36737. eye: {
  36738. height: math.unit(0.35, "feet"),
  36739. name: "Eye",
  36740. image: {
  36741. source: "./media/characters/jrain/eye.svg"
  36742. }
  36743. },
  36744. },
  36745. [
  36746. {
  36747. name: "Normal",
  36748. height: math.unit(6 + 8/12, "feet"),
  36749. default: true
  36750. },
  36751. {
  36752. name: "Casually Large",
  36753. height: math.unit(25, "feet")
  36754. },
  36755. {
  36756. name: "Giant",
  36757. height: math.unit(100, "feet")
  36758. },
  36759. {
  36760. name: "Kaiju",
  36761. height: math.unit(300, "feet")
  36762. },
  36763. ]
  36764. ))
  36765. characterMakers.push(() => makeCharacter(
  36766. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  36767. {
  36768. dragon: {
  36769. height: math.unit(5, "meters"),
  36770. name: "Dragon",
  36771. image: {
  36772. source: "./media/characters/sabrina/dragon.svg",
  36773. extra: 3670 / 2365,
  36774. bottom: 333 / 4003
  36775. }
  36776. },
  36777. gryphon: {
  36778. height: math.unit(3, "meters"),
  36779. name: "Gryphon",
  36780. image: {
  36781. source: "./media/characters/sabrina/gryphon.svg",
  36782. extra: 1576 / 945,
  36783. bottom: 71 / 1647
  36784. }
  36785. },
  36786. snake: {
  36787. height: math.unit(12, "meters"),
  36788. name: "Snake",
  36789. image: {
  36790. source: "./media/characters/sabrina/snake.svg",
  36791. extra: 1758 / 1320,
  36792. bottom: 186 / 1944
  36793. }
  36794. },
  36795. collar: {
  36796. height: math.unit(1.86, "meters"),
  36797. name: "Collar",
  36798. image: {
  36799. source: "./media/characters/sabrina/collar.svg"
  36800. }
  36801. },
  36802. eye: {
  36803. height: math.unit(0.53, "meters"),
  36804. name: "Eye",
  36805. image: {
  36806. source: "./media/characters/sabrina/eye.svg"
  36807. }
  36808. },
  36809. foot: {
  36810. height: math.unit(1.86, "meters"),
  36811. name: "Foot",
  36812. image: {
  36813. source: "./media/characters/sabrina/foot.svg"
  36814. }
  36815. },
  36816. hand: {
  36817. height: math.unit(1.32, "meters"),
  36818. name: "Hand",
  36819. image: {
  36820. source: "./media/characters/sabrina/hand.svg"
  36821. }
  36822. },
  36823. head: {
  36824. height: math.unit(2.44, "meters"),
  36825. name: "Head",
  36826. image: {
  36827. source: "./media/characters/sabrina/head.svg"
  36828. }
  36829. },
  36830. headAngry: {
  36831. height: math.unit(2.44, "meters"),
  36832. name: "Head (Angry))",
  36833. image: {
  36834. source: "./media/characters/sabrina/head-angry.svg"
  36835. }
  36836. },
  36837. maw: {
  36838. height: math.unit(1.65, "meters"),
  36839. name: "Maw",
  36840. image: {
  36841. source: "./media/characters/sabrina/maw.svg"
  36842. }
  36843. },
  36844. spikes: {
  36845. height: math.unit(1.69, "meters"),
  36846. name: "Spikes",
  36847. image: {
  36848. source: "./media/characters/sabrina/spikes.svg"
  36849. }
  36850. },
  36851. stomach: {
  36852. height: math.unit(1.15, "meters"),
  36853. name: "Stomach",
  36854. image: {
  36855. source: "./media/characters/sabrina/stomach.svg"
  36856. }
  36857. },
  36858. tongue: {
  36859. height: math.unit(1.27, "meters"),
  36860. name: "Tongue",
  36861. image: {
  36862. source: "./media/characters/sabrina/tongue.svg"
  36863. }
  36864. },
  36865. wingDorsal: {
  36866. height: math.unit(4.85, "meters"),
  36867. name: "Wing (Dorsal)",
  36868. image: {
  36869. source: "./media/characters/sabrina/wing-dorsal.svg"
  36870. }
  36871. },
  36872. wingVentral: {
  36873. height: math.unit(4.85, "meters"),
  36874. name: "Wing (Ventral)",
  36875. image: {
  36876. source: "./media/characters/sabrina/wing-ventral.svg"
  36877. }
  36878. },
  36879. },
  36880. [
  36881. {
  36882. name: "Normal",
  36883. height: math.unit(5, "meters"),
  36884. default: true
  36885. },
  36886. ]
  36887. ))
  36888. characterMakers.push(() => makeCharacter(
  36889. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  36890. {
  36891. frontMaid: {
  36892. height: math.unit(5 + 5/12, "feet"),
  36893. weight: math.unit(130, "lb"),
  36894. name: "Front (Maid)",
  36895. image: {
  36896. source: "./media/characters/midnight-tales/front-maid.svg",
  36897. extra: 489/454,
  36898. bottom: 61/550
  36899. }
  36900. },
  36901. frontFormal: {
  36902. height: math.unit(5 + 5/12, "feet"),
  36903. weight: math.unit(130, "lb"),
  36904. name: "Front (Formal)",
  36905. image: {
  36906. source: "./media/characters/midnight-tales/front-formal.svg",
  36907. extra: 489/454,
  36908. bottom: 61/550
  36909. }
  36910. },
  36911. back: {
  36912. height: math.unit(5 + 5/12, "feet"),
  36913. weight: math.unit(130, "lb"),
  36914. name: "Back",
  36915. image: {
  36916. source: "./media/characters/midnight-tales/back.svg",
  36917. extra: 498/456,
  36918. bottom: 33/531
  36919. }
  36920. },
  36921. frontBeast: {
  36922. height: math.unit(40, "feet"),
  36923. weight: math.unit(64000, "lb"),
  36924. name: "Front (Beast)",
  36925. image: {
  36926. source: "./media/characters/midnight-tales/front-beast.svg",
  36927. extra: 927/860,
  36928. bottom: 53/980
  36929. }
  36930. },
  36931. backBeast: {
  36932. height: math.unit(40, "feet"),
  36933. weight: math.unit(64000, "lb"),
  36934. name: "Back (Beast)",
  36935. image: {
  36936. source: "./media/characters/midnight-tales/back-beast.svg",
  36937. extra: 929/855,
  36938. bottom: 16/945
  36939. }
  36940. },
  36941. footBeast: {
  36942. height: math.unit(6.7, "feet"),
  36943. name: "Foot (Beast)",
  36944. image: {
  36945. source: "./media/characters/midnight-tales/foot-beast.svg"
  36946. }
  36947. },
  36948. headBeast: {
  36949. height: math.unit(8, "feet"),
  36950. name: "Head (Beast)",
  36951. image: {
  36952. source: "./media/characters/midnight-tales/head-beast.svg"
  36953. }
  36954. },
  36955. },
  36956. [
  36957. {
  36958. name: "Normal",
  36959. height: math.unit(5 + 5 / 12, "feet"),
  36960. default: true
  36961. },
  36962. {
  36963. name: "Macro",
  36964. height: math.unit(25, "feet")
  36965. },
  36966. ]
  36967. ))
  36968. characterMakers.push(() => makeCharacter(
  36969. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36970. {
  36971. front: {
  36972. height: math.unit(6 + 2/12, "feet"),
  36973. weight: math.unit(115, "kg"),
  36974. preyCapacity: math.unit(3, "people"),
  36975. name: "Front",
  36976. image: {
  36977. source: "./media/characters/argon/front.svg",
  36978. extra: 2009/1935,
  36979. bottom: 118/2127
  36980. },
  36981. extraAttributes: {
  36982. "tailLength": {
  36983. name: "Tail Length",
  36984. power: 1,
  36985. type: "length",
  36986. base: math.unit(6, "feet")
  36987. },
  36988. "tailWeight": {
  36989. name: "Tail Weight",
  36990. power: 3,
  36991. type: "mass",
  36992. base: math.unit(40, "kg")
  36993. },
  36994. }
  36995. },
  36996. back: {
  36997. height: math.unit(6 + 2/12, "feet"),
  36998. weight: math.unit(115, "kg"),
  36999. preyCapacity: math.unit(3, "people"),
  37000. name: "Back",
  37001. image: {
  37002. source: "./media/characters/argon/back.svg",
  37003. extra: 2047/1992,
  37004. bottom: 20/2067
  37005. },
  37006. extraAttributes: {
  37007. "tailLength": {
  37008. name: "Tail Length",
  37009. power: 1,
  37010. type: "length",
  37011. base: math.unit(6, "feet")
  37012. },
  37013. "tailWeight": {
  37014. name: "Tail Weight",
  37015. power: 3,
  37016. type: "mass",
  37017. base: math.unit(40, "kg")
  37018. },
  37019. }
  37020. },
  37021. frontDressed: {
  37022. height: math.unit(6 + 2/12, "feet"),
  37023. weight: math.unit(115, "kg"),
  37024. preyCapacity: math.unit(3, "people"),
  37025. name: "Front (Dressed)",
  37026. image: {
  37027. source: "./media/characters/argon/front-dressed.svg",
  37028. extra: 2009/1935,
  37029. bottom: 118/2127
  37030. },
  37031. extraAttributes: {
  37032. "tailLength": {
  37033. name: "Tail Length",
  37034. power: 1,
  37035. type: "length",
  37036. base: math.unit(6, "feet")
  37037. },
  37038. "tailWeight": {
  37039. name: "Tail Weight",
  37040. power: 3,
  37041. type: "mass",
  37042. base: math.unit(40, "kg")
  37043. },
  37044. }
  37045. },
  37046. },
  37047. [
  37048. {
  37049. name: "Minimum",
  37050. height: math.unit(2 + 8/12, "feet")
  37051. },
  37052. {
  37053. name: "Normal",
  37054. height: math.unit(6 + 2/12, "feet"),
  37055. default: true
  37056. },
  37057. {
  37058. name: "Maximum",
  37059. height: math.unit(20, "feet")
  37060. },
  37061. ]
  37062. ))
  37063. characterMakers.push(() => makeCharacter(
  37064. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  37065. {
  37066. front: {
  37067. height: math.unit(8 + 6/12, "feet"),
  37068. weight: math.unit(1150, "lb"),
  37069. name: "Front",
  37070. image: {
  37071. source: "./media/characters/kichi/front.svg",
  37072. extra: 1267/1164,
  37073. bottom: 61/1328
  37074. }
  37075. },
  37076. back: {
  37077. height: math.unit(8 + 6/12, "feet"),
  37078. weight: math.unit(1150, "lb"),
  37079. name: "Back",
  37080. image: {
  37081. source: "./media/characters/kichi/back.svg",
  37082. extra: 1273/1166,
  37083. bottom: 33/1306
  37084. }
  37085. },
  37086. },
  37087. [
  37088. {
  37089. name: "Normal",
  37090. height: math.unit(8 + 6/12, "feet"),
  37091. default: true
  37092. },
  37093. ]
  37094. ))
  37095. characterMakers.push(() => makeCharacter(
  37096. { name: "Manetel Greyscale", species: ["dragoyle"], tags: ["anthro"] },
  37097. {
  37098. front: {
  37099. height: math.unit(6, "feet"),
  37100. weight: math.unit(210, "lb"),
  37101. name: "Front",
  37102. image: {
  37103. source: "./media/characters/manetel-greyscale/front.svg",
  37104. extra: 483/444,
  37105. bottom: 22/505
  37106. },
  37107. extraAttributes: {
  37108. "tailLength": {
  37109. name: "Tail Length",
  37110. power: 1,
  37111. type: "length",
  37112. base: math.unit(6.5, "feet")
  37113. },
  37114. }
  37115. },
  37116. side: {
  37117. height: math.unit(6, "feet"),
  37118. weight: math.unit(210, "lb"),
  37119. name: "Side",
  37120. image: {
  37121. source: "./media/characters/manetel-greyscale/side.svg",
  37122. extra: 478/426,
  37123. bottom: 20/498
  37124. },
  37125. extraAttributes: {
  37126. "tailLength": {
  37127. name: "Tail Length",
  37128. power: 1,
  37129. type: "length",
  37130. base: math.unit(6.5, "feet")
  37131. },
  37132. }
  37133. },
  37134. back: {
  37135. height: math.unit(6, "feet"),
  37136. weight: math.unit(210, "lb"),
  37137. name: "Back",
  37138. image: {
  37139. source: "./media/characters/manetel-greyscale/back.svg",
  37140. extra: 482/445,
  37141. bottom: 12/494
  37142. },
  37143. extraAttributes: {
  37144. "tailLength": {
  37145. name: "Tail Length",
  37146. power: 1,
  37147. type: "length",
  37148. base: math.unit(6.5, "feet")
  37149. },
  37150. }
  37151. },
  37152. },
  37153. [
  37154. {
  37155. name: "Micro",
  37156. height: math.unit(2, "inches")
  37157. },
  37158. {
  37159. name: "Normal",
  37160. height: math.unit(6, "feet"),
  37161. default: true
  37162. },
  37163. {
  37164. name: "Macro",
  37165. height: math.unit(117, "feet")
  37166. },
  37167. ]
  37168. ))
  37169. characterMakers.push(() => makeCharacter(
  37170. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  37171. {
  37172. side: {
  37173. height: math.unit(5 + 1/12, "feet"),
  37174. weight: math.unit(418, "lb"),
  37175. name: "Side",
  37176. image: {
  37177. source: "./media/characters/softpurr/side.svg",
  37178. extra: 1993/1945,
  37179. bottom: 134/2127
  37180. }
  37181. },
  37182. front: {
  37183. height: math.unit(5 + 1/12, "feet"),
  37184. weight: math.unit(418, "lb"),
  37185. name: "Front",
  37186. image: {
  37187. source: "./media/characters/softpurr/front.svg",
  37188. extra: 1950/1856,
  37189. bottom: 174/2124
  37190. }
  37191. },
  37192. paw: {
  37193. height: math.unit(1, "feet"),
  37194. name: "Paw",
  37195. image: {
  37196. source: "./media/characters/softpurr/paw.svg"
  37197. }
  37198. },
  37199. },
  37200. [
  37201. {
  37202. name: "Normal",
  37203. height: math.unit(5 + 1/12, "feet"),
  37204. default: true
  37205. },
  37206. ]
  37207. ))
  37208. characterMakers.push(() => makeCharacter(
  37209. { name: "Anahita", species: ["sea-serpent"], tags: ["anthro"] },
  37210. {
  37211. front: {
  37212. height: math.unit(300, "meters"),
  37213. name: "Front",
  37214. image: {
  37215. source: "./media/characters/anahita/front.svg",
  37216. extra: 609/576,
  37217. bottom: 51/660
  37218. }
  37219. },
  37220. },
  37221. [
  37222. {
  37223. name: "Macro",
  37224. height: math.unit(300, "meters"),
  37225. default: true
  37226. },
  37227. ]
  37228. ))
  37229. characterMakers.push(() => makeCharacter(
  37230. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  37231. {
  37232. front: {
  37233. height: math.unit(4 + 10/12, "feet"),
  37234. weight: math.unit(160, "lb"),
  37235. name: "Front",
  37236. image: {
  37237. source: "./media/characters/chip-mouse/front.svg",
  37238. extra: 3528/3408,
  37239. bottom: 0/3528
  37240. }
  37241. },
  37242. frontNsfw: {
  37243. height: math.unit(4 + 10/12, "feet"),
  37244. weight: math.unit(160, "lb"),
  37245. name: "Front (NSFW)",
  37246. image: {
  37247. source: "./media/characters/chip-mouse/front-nsfw.svg",
  37248. extra: 3528/3408,
  37249. bottom: 0/3528
  37250. }
  37251. },
  37252. },
  37253. [
  37254. {
  37255. name: "Normal",
  37256. height: math.unit(4 + 10/12, "feet"),
  37257. default: true
  37258. },
  37259. ]
  37260. ))
  37261. characterMakers.push(() => makeCharacter(
  37262. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  37263. {
  37264. side: {
  37265. height: math.unit(10, "feet"),
  37266. weight: math.unit(14000, "lb"),
  37267. name: "Side",
  37268. image: {
  37269. source: "./media/characters/kremm/side.svg",
  37270. extra: 1390/1053,
  37271. bottom: 90/1480
  37272. }
  37273. },
  37274. gut: {
  37275. height: math.unit(5.8, "feet"),
  37276. name: "Gut",
  37277. image: {
  37278. source: "./media/characters/kremm/gut.svg"
  37279. }
  37280. },
  37281. ass: {
  37282. height: math.unit(6.1, "feet"),
  37283. name: "Ass",
  37284. image: {
  37285. source: "./media/characters/kremm/ass.svg"
  37286. }
  37287. },
  37288. jaws: {
  37289. height: math.unit(2.2, "feet"),
  37290. name: "Jaws",
  37291. image: {
  37292. source: "./media/characters/kremm/jaws.svg"
  37293. }
  37294. },
  37295. dick: {
  37296. height: math.unit(4.26, "feet"),
  37297. name: "Dick",
  37298. image: {
  37299. source: "./media/characters/kremm/dick.svg"
  37300. }
  37301. },
  37302. },
  37303. [
  37304. {
  37305. name: "Normal",
  37306. height: math.unit(10, "feet"),
  37307. default: true
  37308. },
  37309. ]
  37310. ))
  37311. characterMakers.push(() => makeCharacter(
  37312. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  37313. {
  37314. front: {
  37315. height: math.unit(30, "stories"),
  37316. name: "Front",
  37317. image: {
  37318. source: "./media/characters/kai/front.svg",
  37319. extra: 1892/1718,
  37320. bottom: 162/2054
  37321. }
  37322. },
  37323. },
  37324. [
  37325. {
  37326. name: "Macro",
  37327. height: math.unit(30, "stories"),
  37328. default: true
  37329. },
  37330. ]
  37331. ))
  37332. characterMakers.push(() => makeCharacter(
  37333. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  37334. {
  37335. front: {
  37336. height: math.unit(6 + 4/12, "feet"),
  37337. weight: math.unit(145, "lb"),
  37338. name: "Front",
  37339. image: {
  37340. source: "./media/characters/sykes/front.svg",
  37341. extra: 1321 / 1187,
  37342. bottom: 66 / 1387
  37343. }
  37344. },
  37345. back: {
  37346. height: math.unit(6 + 4/12, "feet"),
  37347. weight: math.unit(145, "lb"),
  37348. name: "Back",
  37349. image: {
  37350. source: "./media/characters/sykes/back.svg",
  37351. extra: 1326/1181,
  37352. bottom: 31/1357
  37353. }
  37354. },
  37355. traditionalOutfit: {
  37356. height: math.unit(6 + 4/12, "feet"),
  37357. weight: math.unit(145, "lb"),
  37358. name: "Traditional Outfit",
  37359. image: {
  37360. source: "./media/characters/sykes/traditional-outfit.svg",
  37361. extra: 1321 / 1187,
  37362. bottom: 66 / 1387
  37363. }
  37364. },
  37365. adventureOutfit: {
  37366. height: math.unit(6 + 4/12, "feet"),
  37367. weight: math.unit(145, "lb"),
  37368. name: "Adventure Outfit",
  37369. image: {
  37370. source: "./media/characters/sykes/adventure-outfit.svg",
  37371. extra: 1321 / 1187,
  37372. bottom: 66 / 1387
  37373. }
  37374. },
  37375. handLeft: {
  37376. height: math.unit(0.9, "feet"),
  37377. name: "Hand (Left)",
  37378. image: {
  37379. source: "./media/characters/sykes/hand-left.svg"
  37380. }
  37381. },
  37382. handRight: {
  37383. height: math.unit(0.839, "feet"),
  37384. name: "Hand (Right)",
  37385. image: {
  37386. source: "./media/characters/sykes/hand-right.svg"
  37387. }
  37388. },
  37389. leftFoot: {
  37390. height: math.unit(1.2, "feet"),
  37391. name: "Foot (Left)",
  37392. image: {
  37393. source: "./media/characters/sykes/foot-left.svg"
  37394. }
  37395. },
  37396. rightFoot: {
  37397. height: math.unit(1.2, "feet"),
  37398. name: "Foot (Right)",
  37399. image: {
  37400. source: "./media/characters/sykes/foot-right.svg"
  37401. }
  37402. },
  37403. maw: {
  37404. height: math.unit(1.93, "feet"),
  37405. name: "Maw",
  37406. image: {
  37407. source: "./media/characters/sykes/maw.svg"
  37408. }
  37409. },
  37410. teeth: {
  37411. height: math.unit(0.51, "feet"),
  37412. name: "Teeth",
  37413. image: {
  37414. source: "./media/characters/sykes/teeth.svg"
  37415. }
  37416. },
  37417. tongue: {
  37418. height: math.unit(2.13, "feet"),
  37419. name: "Tongue",
  37420. image: {
  37421. source: "./media/characters/sykes/tongue.svg"
  37422. }
  37423. },
  37424. uvula: {
  37425. height: math.unit(0.16, "feet"),
  37426. name: "Uvula",
  37427. image: {
  37428. source: "./media/characters/sykes/uvula.svg"
  37429. }
  37430. },
  37431. collar: {
  37432. height: math.unit(0.287, "feet"),
  37433. name: "Collar",
  37434. image: {
  37435. source: "./media/characters/sykes/collar.svg"
  37436. }
  37437. },
  37438. tail: {
  37439. height: math.unit(3.8, "feet"),
  37440. name: "Tail",
  37441. image: {
  37442. source: "./media/characters/sykes/tail.svg"
  37443. }
  37444. },
  37445. },
  37446. [
  37447. {
  37448. name: "Shrunken",
  37449. height: math.unit(5, "inches")
  37450. },
  37451. {
  37452. name: "Normal",
  37453. height: math.unit(6 + 4 / 12, "feet"),
  37454. default: true
  37455. },
  37456. {
  37457. name: "Big",
  37458. height: math.unit(15, "feet")
  37459. },
  37460. ]
  37461. ))
  37462. characterMakers.push(() => makeCharacter(
  37463. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  37464. {
  37465. front: {
  37466. height: math.unit(5 + 8/12, "feet"),
  37467. weight: math.unit(190, "lb"),
  37468. name: "Front",
  37469. image: {
  37470. source: "./media/characters/oven-otter/front.svg",
  37471. extra: 1809/1740,
  37472. bottom: 181/1990
  37473. }
  37474. },
  37475. back: {
  37476. height: math.unit(5 + 8/12, "feet"),
  37477. weight: math.unit(190, "lb"),
  37478. name: "Back",
  37479. image: {
  37480. source: "./media/characters/oven-otter/back.svg",
  37481. extra: 1709/1635,
  37482. bottom: 118/1827
  37483. }
  37484. },
  37485. hand: {
  37486. height: math.unit(1.07, "feet"),
  37487. name: "Hand",
  37488. image: {
  37489. source: "./media/characters/oven-otter/hand.svg"
  37490. }
  37491. },
  37492. beans: {
  37493. height: math.unit(1.74, "feet"),
  37494. name: "Beans",
  37495. image: {
  37496. source: "./media/characters/oven-otter/beans.svg"
  37497. }
  37498. },
  37499. },
  37500. [
  37501. {
  37502. name: "Micro",
  37503. height: math.unit(0.5, "inches")
  37504. },
  37505. {
  37506. name: "Normal",
  37507. height: math.unit(5 + 8/12, "feet"),
  37508. default: true
  37509. },
  37510. {
  37511. name: "Macro",
  37512. height: math.unit(250, "feet")
  37513. },
  37514. {
  37515. name: "Really High",
  37516. height: math.unit(420, "feet")
  37517. },
  37518. ]
  37519. ))
  37520. characterMakers.push(() => makeCharacter(
  37521. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  37522. {
  37523. front: {
  37524. height: math.unit(5, "meters"),
  37525. weight: math.unit(292000000000000, "kg"),
  37526. name: "Front",
  37527. image: {
  37528. source: "./media/characters/devourer/front.svg",
  37529. extra: 1800/1733,
  37530. bottom: 211/2011
  37531. }
  37532. },
  37533. maw: {
  37534. height: math.unit(1.1, "meter"),
  37535. name: "Maw",
  37536. image: {
  37537. source: "./media/characters/devourer/maw.svg"
  37538. }
  37539. },
  37540. },
  37541. [
  37542. {
  37543. name: "Small",
  37544. height: math.unit(3, "meters")
  37545. },
  37546. {
  37547. name: "Large",
  37548. height: math.unit(5, "meters"),
  37549. default: true
  37550. },
  37551. {
  37552. name: "Macro",
  37553. height: math.unit(20, "meters")
  37554. },
  37555. ]
  37556. ))
  37557. characterMakers.push(() => makeCharacter(
  37558. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  37559. {
  37560. front: {
  37561. height: math.unit(6, "feet"),
  37562. weight: math.unit(400, "lb"),
  37563. name: "Front",
  37564. image: {
  37565. source: "./media/characters/ellarby/front.svg",
  37566. extra: 1909/1763,
  37567. bottom: 80/1989
  37568. }
  37569. },
  37570. back: {
  37571. height: math.unit(6, "feet"),
  37572. weight: math.unit(400, "lb"),
  37573. name: "Back",
  37574. image: {
  37575. source: "./media/characters/ellarby/back.svg",
  37576. extra: 1914/1784,
  37577. bottom: 172/2086
  37578. }
  37579. },
  37580. },
  37581. [
  37582. {
  37583. name: "Mischief",
  37584. height: math.unit(18, "inches")
  37585. },
  37586. {
  37587. name: "Trouble",
  37588. height: math.unit(12, "feet")
  37589. },
  37590. {
  37591. name: "Havoc",
  37592. height: math.unit(200, "feet"),
  37593. default: true
  37594. },
  37595. {
  37596. name: "Pandemonium",
  37597. height: math.unit(1, "mile")
  37598. },
  37599. {
  37600. name: "Catastrophe",
  37601. height: math.unit(100, "miles")
  37602. },
  37603. ]
  37604. ))
  37605. characterMakers.push(() => makeCharacter(
  37606. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  37607. {
  37608. front: {
  37609. height: math.unit(4.7, "meters"),
  37610. weight: math.unit(6500, "kg"),
  37611. name: "Front",
  37612. image: {
  37613. source: "./media/characters/vex/front.svg",
  37614. extra: 1288/1140,
  37615. bottom: 100/1388
  37616. }
  37617. },
  37618. },
  37619. [
  37620. {
  37621. name: "Normal",
  37622. height: math.unit(4.7, "meters"),
  37623. default: true
  37624. },
  37625. ]
  37626. ))
  37627. characterMakers.push(() => makeCharacter(
  37628. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  37629. {
  37630. normal: {
  37631. height: math.unit(6, "feet"),
  37632. weight: math.unit(350, "lb"),
  37633. name: "Normal",
  37634. image: {
  37635. source: "./media/characters/teshy/normal.svg",
  37636. extra: 1795/1735,
  37637. bottom: 16/1811
  37638. }
  37639. },
  37640. monsterFront: {
  37641. height: math.unit(12, "feet"),
  37642. weight: math.unit(4700, "lb"),
  37643. name: "Monster (Front)",
  37644. image: {
  37645. source: "./media/characters/teshy/monster-front.svg",
  37646. extra: 2042/2034,
  37647. bottom: 128/2170
  37648. }
  37649. },
  37650. monsterSide: {
  37651. height: math.unit(12, "feet"),
  37652. weight: math.unit(4700, "lb"),
  37653. name: "Monster (Side)",
  37654. image: {
  37655. source: "./media/characters/teshy/monster-side.svg",
  37656. extra: 2067/2056,
  37657. bottom: 70/2137
  37658. }
  37659. },
  37660. monsterBack: {
  37661. height: math.unit(12, "feet"),
  37662. weight: math.unit(4700, "lb"),
  37663. name: "Monster (Back)",
  37664. image: {
  37665. source: "./media/characters/teshy/monster-back.svg",
  37666. extra: 1921/1914,
  37667. bottom: 171/2092
  37668. }
  37669. },
  37670. },
  37671. [
  37672. {
  37673. name: "Normal",
  37674. height: math.unit(6, "feet"),
  37675. default: true
  37676. },
  37677. ]
  37678. ))
  37679. characterMakers.push(() => makeCharacter(
  37680. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  37681. {
  37682. front: {
  37683. height: math.unit(6, "feet"),
  37684. name: "Front",
  37685. image: {
  37686. source: "./media/characters/ramey/front.svg",
  37687. extra: 790/787,
  37688. bottom: 27/817
  37689. }
  37690. },
  37691. },
  37692. [
  37693. {
  37694. name: "Normal",
  37695. height: math.unit(6, "feet"),
  37696. default: true
  37697. },
  37698. ]
  37699. ))
  37700. characterMakers.push(() => makeCharacter(
  37701. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  37702. {
  37703. front: {
  37704. height: math.unit(5 + 5/12, "feet"),
  37705. weight: math.unit(120, "lb"),
  37706. name: "Front",
  37707. image: {
  37708. source: "./media/characters/phirae/front.svg",
  37709. extra: 2491/2436,
  37710. bottom: 38/2529
  37711. }
  37712. },
  37713. },
  37714. [
  37715. {
  37716. name: "Normal",
  37717. height: math.unit(5 + 5/12, "feet"),
  37718. default: true
  37719. },
  37720. ]
  37721. ))
  37722. characterMakers.push(() => makeCharacter(
  37723. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  37724. {
  37725. front: {
  37726. height: math.unit(5 + 3/12, "feet"),
  37727. name: "Front",
  37728. image: {
  37729. source: "./media/characters/stagglas/front.svg",
  37730. extra: 962/882,
  37731. bottom: 53/1015
  37732. }
  37733. },
  37734. feral: {
  37735. height: math.unit(335, "cm"),
  37736. name: "Feral",
  37737. image: {
  37738. source: "./media/characters/stagglas/feral.svg",
  37739. extra: 1732/1090,
  37740. bottom: 48/1780
  37741. }
  37742. },
  37743. },
  37744. [
  37745. {
  37746. name: "Normal",
  37747. height: math.unit(5 + 3/12, "feet"),
  37748. default: true
  37749. },
  37750. ]
  37751. ))
  37752. characterMakers.push(() => makeCharacter(
  37753. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  37754. {
  37755. front: {
  37756. height: math.unit(5 + 4/12, "feet"),
  37757. weight: math.unit(145, "lb"),
  37758. name: "Front",
  37759. image: {
  37760. source: "./media/characters/starra/front.svg",
  37761. extra: 1790/1691,
  37762. bottom: 91/1881
  37763. }
  37764. },
  37765. },
  37766. [
  37767. {
  37768. name: "Normal",
  37769. height: math.unit(5 + 4/12, "feet"),
  37770. default: true
  37771. },
  37772. ]
  37773. ))
  37774. characterMakers.push(() => makeCharacter(
  37775. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  37776. {
  37777. front: {
  37778. height: math.unit(3.5, "meters"),
  37779. name: "Front",
  37780. image: {
  37781. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  37782. extra: 1248/972,
  37783. bottom: 38/1286
  37784. }
  37785. },
  37786. },
  37787. [
  37788. {
  37789. name: "Normal",
  37790. height: math.unit(3.5, "meters"),
  37791. default: true
  37792. },
  37793. ]
  37794. ))
  37795. characterMakers.push(() => makeCharacter(
  37796. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  37797. {
  37798. side: {
  37799. height: math.unit(8 + 2/12, "feet"),
  37800. weight: math.unit(1240, "lb"),
  37801. name: "Side",
  37802. image: {
  37803. source: "./media/characters/mika-valentine/side.svg",
  37804. extra: 2670/2501,
  37805. bottom: 250/2920
  37806. }
  37807. },
  37808. },
  37809. [
  37810. {
  37811. name: "Normal",
  37812. height: math.unit(8 + 2/12, "feet"),
  37813. default: true
  37814. },
  37815. ]
  37816. ))
  37817. characterMakers.push(() => makeCharacter(
  37818. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  37819. {
  37820. front: {
  37821. height: math.unit(7 + 2/12, "feet"),
  37822. name: "Front",
  37823. image: {
  37824. source: "./media/characters/xoltol/front.svg",
  37825. extra: 2212/2124,
  37826. bottom: 84/2296
  37827. }
  37828. },
  37829. side: {
  37830. height: math.unit(7 + 2/12, "feet"),
  37831. name: "Side",
  37832. image: {
  37833. source: "./media/characters/xoltol/side.svg",
  37834. extra: 2273/2197,
  37835. bottom: 26/2299
  37836. }
  37837. },
  37838. hand: {
  37839. height: math.unit(2.5, "feet"),
  37840. name: "Hand",
  37841. image: {
  37842. source: "./media/characters/xoltol/hand.svg"
  37843. }
  37844. },
  37845. },
  37846. [
  37847. {
  37848. name: "Small-ish",
  37849. height: math.unit(5 + 11/12, "feet")
  37850. },
  37851. {
  37852. name: "Normal",
  37853. height: math.unit(7 + 2/12, "feet")
  37854. },
  37855. {
  37856. name: "\"Macro\"",
  37857. height: math.unit(14 + 9/12, "feet"),
  37858. default: true
  37859. },
  37860. {
  37861. name: "Alternate Height",
  37862. height: math.unit(20, "feet")
  37863. },
  37864. {
  37865. name: "Actually Macro",
  37866. height: math.unit(100, "feet")
  37867. },
  37868. ]
  37869. ))
  37870. characterMakers.push(() => makeCharacter(
  37871. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  37872. {
  37873. front: {
  37874. height: math.unit(5 + 2/12, "feet"),
  37875. weight: math.unit(75, "kg"),
  37876. name: "Front",
  37877. image: {
  37878. source: "./media/characters/kotetsu-redwood/front.svg",
  37879. extra: 1053/942,
  37880. bottom: 60/1113
  37881. }
  37882. },
  37883. },
  37884. [
  37885. {
  37886. name: "Normal",
  37887. height: math.unit(5 + 2/12, "feet"),
  37888. default: true
  37889. },
  37890. ]
  37891. ))
  37892. characterMakers.push(() => makeCharacter(
  37893. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  37894. {
  37895. front: {
  37896. height: math.unit(2.4, "meters"),
  37897. weight: math.unit(125, "kg"),
  37898. name: "Front",
  37899. image: {
  37900. source: "./media/characters/lilith/front.svg",
  37901. extra: 1590/1513,
  37902. bottom: 203/1793
  37903. }
  37904. },
  37905. },
  37906. [
  37907. {
  37908. name: "Humanoid",
  37909. height: math.unit(2.4, "meters")
  37910. },
  37911. {
  37912. name: "Normal",
  37913. height: math.unit(6, "meters"),
  37914. default: true
  37915. },
  37916. {
  37917. name: "Largest",
  37918. height: math.unit(55, "meters")
  37919. },
  37920. ]
  37921. ))
  37922. characterMakers.push(() => makeCharacter(
  37923. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  37924. {
  37925. front: {
  37926. height: math.unit(8 + 4/12, "feet"),
  37927. weight: math.unit(535, "lb"),
  37928. name: "Front",
  37929. image: {
  37930. source: "./media/characters/beh'kah-bolger/front.svg",
  37931. extra: 1660/1603,
  37932. bottom: 37/1697
  37933. }
  37934. },
  37935. },
  37936. [
  37937. {
  37938. name: "Normal",
  37939. height: math.unit(8 + 4/12, "feet"),
  37940. default: true
  37941. },
  37942. {
  37943. name: "Kaiju",
  37944. height: math.unit(250, "feet")
  37945. },
  37946. {
  37947. name: "Still Growing",
  37948. height: math.unit(10, "miles")
  37949. },
  37950. {
  37951. name: "Continental",
  37952. height: math.unit(5000, "miles")
  37953. },
  37954. {
  37955. name: "Final Form",
  37956. height: math.unit(2500000, "miles")
  37957. },
  37958. ]
  37959. ))
  37960. characterMakers.push(() => makeCharacter(
  37961. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  37962. {
  37963. front: {
  37964. height: math.unit(7 + 2/12, "feet"),
  37965. weight: math.unit(230, "kg"),
  37966. name: "Front",
  37967. image: {
  37968. source: "./media/characters/tatyana-milewska/front.svg",
  37969. extra: 1199/1150,
  37970. bottom: 86/1285
  37971. }
  37972. },
  37973. },
  37974. [
  37975. {
  37976. name: "Normal",
  37977. height: math.unit(7 + 2/12, "feet"),
  37978. default: true
  37979. },
  37980. {
  37981. name: "Big",
  37982. height: math.unit(12, "feet")
  37983. },
  37984. {
  37985. name: "Minimacro",
  37986. height: math.unit(20, "feet")
  37987. },
  37988. {
  37989. name: "Macro",
  37990. height: math.unit(120, "feet")
  37991. },
  37992. ]
  37993. ))
  37994. characterMakers.push(() => makeCharacter(
  37995. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  37996. {
  37997. front: {
  37998. height: math.unit(7 + 8/12, "feet"),
  37999. weight: math.unit(152, "kg"),
  38000. name: "Front",
  38001. image: {
  38002. source: "./media/characters/helen-arri/front.svg",
  38003. extra: 440/423,
  38004. bottom: 14/454
  38005. }
  38006. },
  38007. back: {
  38008. height: math.unit(7 + 8/12, "feet"),
  38009. weight: math.unit(152, "kg"),
  38010. name: "Back",
  38011. image: {
  38012. source: "./media/characters/helen-arri/back.svg",
  38013. extra: 443/426,
  38014. bottom: 8/451
  38015. }
  38016. },
  38017. },
  38018. [
  38019. {
  38020. name: "Normal",
  38021. height: math.unit(7 + 8/12, "feet"),
  38022. default: true
  38023. },
  38024. {
  38025. name: "Big",
  38026. height: math.unit(14, "feet")
  38027. },
  38028. {
  38029. name: "Minimacro",
  38030. height: math.unit(24, "feet")
  38031. },
  38032. {
  38033. name: "Macro",
  38034. height: math.unit(140, "feet")
  38035. },
  38036. ]
  38037. ))
  38038. characterMakers.push(() => makeCharacter(
  38039. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  38040. {
  38041. front: {
  38042. height: math.unit(6, "meters"),
  38043. name: "Front",
  38044. image: {
  38045. source: "./media/characters/ehanu-rehu/front.svg",
  38046. extra: 1800/1800,
  38047. bottom: 59/1859
  38048. }
  38049. },
  38050. },
  38051. [
  38052. {
  38053. name: "Normal",
  38054. height: math.unit(6, "meters"),
  38055. default: true
  38056. },
  38057. ]
  38058. ))
  38059. characterMakers.push(() => makeCharacter(
  38060. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  38061. {
  38062. front: {
  38063. height: math.unit(7 + 3/12, "feet"),
  38064. name: "Front",
  38065. image: {
  38066. source: "./media/characters/renholder/front.svg",
  38067. extra: 3096/2960,
  38068. bottom: 250/3346
  38069. }
  38070. },
  38071. },
  38072. [
  38073. {
  38074. name: "Normal Bat",
  38075. height: math.unit(7 + 3/12, "feet"),
  38076. default: true
  38077. },
  38078. {
  38079. name: "Slightly Tall Bat",
  38080. height: math.unit(100, "feet")
  38081. },
  38082. {
  38083. name: "Big Bat",
  38084. height: math.unit(1000, "feet")
  38085. },
  38086. {
  38087. name: "City-Sized Bat",
  38088. height: math.unit(200000, "feet")
  38089. },
  38090. {
  38091. name: "Bigger Bat",
  38092. height: math.unit(10000, "miles")
  38093. },
  38094. {
  38095. name: "Solar Sized Bat",
  38096. height: math.unit(100, "AU")
  38097. },
  38098. {
  38099. name: "Galactic Bat",
  38100. height: math.unit(200000, "lightyears")
  38101. },
  38102. {
  38103. name: "Universally Known Bat",
  38104. height: math.unit(1, "universe")
  38105. },
  38106. ]
  38107. ))
  38108. characterMakers.push(() => makeCharacter(
  38109. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  38110. {
  38111. front: {
  38112. height: math.unit(6 + 11/12, "feet"),
  38113. weight: math.unit(250, "lb"),
  38114. name: "Front",
  38115. image: {
  38116. source: "./media/characters/cookiecat/front.svg",
  38117. extra: 893/827,
  38118. bottom: 14/907
  38119. }
  38120. },
  38121. },
  38122. [
  38123. {
  38124. name: "Micro",
  38125. height: math.unit(3, "inches")
  38126. },
  38127. {
  38128. name: "Normal",
  38129. height: math.unit(6 + 11/12, "feet"),
  38130. default: true
  38131. },
  38132. {
  38133. name: "Macro",
  38134. height: math.unit(100, "feet")
  38135. },
  38136. {
  38137. name: "Macro+",
  38138. height: math.unit(404, "feet")
  38139. },
  38140. {
  38141. name: "Megamacro",
  38142. height: math.unit(165, "miles")
  38143. },
  38144. {
  38145. name: "Planetary",
  38146. height: math.unit(4600, "miles")
  38147. },
  38148. ]
  38149. ))
  38150. characterMakers.push(() => makeCharacter(
  38151. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  38152. {
  38153. front: {
  38154. height: math.unit(10 + 3/12, "feet"),
  38155. weight: math.unit(1500, "lb"),
  38156. name: "Front",
  38157. image: {
  38158. source: "./media/characters/tux-kusanagi/front.svg",
  38159. extra: 944/840,
  38160. bottom: 39/983
  38161. }
  38162. },
  38163. back: {
  38164. height: math.unit(10 + 3/12, "feet"),
  38165. weight: math.unit(1500, "lb"),
  38166. name: "Back",
  38167. image: {
  38168. source: "./media/characters/tux-kusanagi/back.svg",
  38169. extra: 941/842,
  38170. bottom: 28/969
  38171. }
  38172. },
  38173. rump: {
  38174. height: math.unit(5.25, "feet"),
  38175. name: "Rump",
  38176. image: {
  38177. source: "./media/characters/tux-kusanagi/rump.svg"
  38178. }
  38179. },
  38180. beak: {
  38181. height: math.unit(1.54, "feet"),
  38182. name: "Beak",
  38183. image: {
  38184. source: "./media/characters/tux-kusanagi/beak.svg"
  38185. }
  38186. },
  38187. },
  38188. [
  38189. {
  38190. name: "Normal",
  38191. height: math.unit(10 + 3/12, "feet"),
  38192. default: true
  38193. },
  38194. ]
  38195. ))
  38196. characterMakers.push(() => makeCharacter(
  38197. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  38198. {
  38199. front: {
  38200. height: math.unit(58, "feet"),
  38201. weight: math.unit(200, "tons"),
  38202. name: "Front",
  38203. image: {
  38204. source: "./media/characters/uzarmazari/front.svg",
  38205. extra: 1575/1455,
  38206. bottom: 152/1727
  38207. }
  38208. },
  38209. back: {
  38210. height: math.unit(58, "feet"),
  38211. weight: math.unit(200, "tons"),
  38212. name: "Back",
  38213. image: {
  38214. source: "./media/characters/uzarmazari/back.svg",
  38215. extra: 1585/1510,
  38216. bottom: 157/1742
  38217. }
  38218. },
  38219. head: {
  38220. height: math.unit(26, "feet"),
  38221. name: "Head",
  38222. image: {
  38223. source: "./media/characters/uzarmazari/head.svg"
  38224. }
  38225. },
  38226. },
  38227. [
  38228. {
  38229. name: "Normal",
  38230. height: math.unit(58, "feet"),
  38231. default: true
  38232. },
  38233. ]
  38234. ))
  38235. characterMakers.push(() => makeCharacter(
  38236. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  38237. {
  38238. side: {
  38239. height: math.unit(15, "feet"),
  38240. name: "Side",
  38241. image: {
  38242. source: "./media/characters/akitu/side.svg",
  38243. extra: 1421/1321,
  38244. bottom: 157/1578
  38245. }
  38246. },
  38247. front: {
  38248. height: math.unit(15, "feet"),
  38249. name: "Front",
  38250. image: {
  38251. source: "./media/characters/akitu/front.svg",
  38252. extra: 1435/1326,
  38253. bottom: 232/1667
  38254. }
  38255. },
  38256. },
  38257. [
  38258. {
  38259. name: "Normal",
  38260. height: math.unit(15, "feet"),
  38261. default: true
  38262. },
  38263. ]
  38264. ))
  38265. characterMakers.push(() => makeCharacter(
  38266. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  38267. {
  38268. front: {
  38269. height: math.unit(10 + 8/12, "feet"),
  38270. name: "Front",
  38271. image: {
  38272. source: "./media/characters/azalie-croixland/front.svg",
  38273. extra: 1972/1856,
  38274. bottom: 31/2003
  38275. }
  38276. },
  38277. },
  38278. [
  38279. {
  38280. name: "Original Height",
  38281. height: math.unit(5 + 4/12, "feet")
  38282. },
  38283. {
  38284. name: "Normal Height",
  38285. height: math.unit(10 + 8/12, "feet"),
  38286. default: true
  38287. },
  38288. ]
  38289. ))
  38290. characterMakers.push(() => makeCharacter(
  38291. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  38292. {
  38293. side: {
  38294. height: math.unit(7 + 1/12, "feet"),
  38295. weight: math.unit(245, "lb"),
  38296. name: "Side",
  38297. image: {
  38298. source: "./media/characters/kavus-kazian/side.svg",
  38299. extra: 349/342,
  38300. bottom: 15/364
  38301. }
  38302. },
  38303. },
  38304. [
  38305. {
  38306. name: "Normal",
  38307. height: math.unit(7 + 1/12, "feet"),
  38308. default: true
  38309. },
  38310. ]
  38311. ))
  38312. characterMakers.push(() => makeCharacter(
  38313. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  38314. {
  38315. normalFront: {
  38316. height: math.unit(5 + 11/12, "feet"),
  38317. name: "Front",
  38318. image: {
  38319. source: "./media/characters/moonlight-rose/normal-front.svg",
  38320. extra: 1980/1825,
  38321. bottom: 18/1998
  38322. },
  38323. form: "normal",
  38324. default: true
  38325. },
  38326. normalBack: {
  38327. height: math.unit(5 + 11/12, "feet"),
  38328. name: "Back",
  38329. image: {
  38330. source: "./media/characters/moonlight-rose/normal-back.svg",
  38331. extra: 2010/1839,
  38332. bottom: 10/2020
  38333. },
  38334. form: "normal"
  38335. },
  38336. demonFront: {
  38337. height: math.unit(1.5, "earths"),
  38338. name: "Front",
  38339. image: {
  38340. source: "./media/characters/moonlight-rose/demon.svg",
  38341. extra: 1400/1294,
  38342. bottom: 45/1445
  38343. },
  38344. form: "demon",
  38345. default: true
  38346. },
  38347. terraFront: {
  38348. height: math.unit(1.5, "earths"),
  38349. name: "Front",
  38350. image: {
  38351. source: "./media/characters/moonlight-rose/terra.svg"
  38352. },
  38353. form: "terra",
  38354. default: true
  38355. },
  38356. jupiterFront: {
  38357. height: math.unit(69911*2, "km"),
  38358. name: "Front",
  38359. image: {
  38360. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  38361. extra: 1367/1286,
  38362. bottom: 55/1422
  38363. },
  38364. form: "jupiter",
  38365. default: true
  38366. },
  38367. neptuneFront: {
  38368. height: math.unit(24622*2, "feet"),
  38369. name: "Front",
  38370. image: {
  38371. source: "./media/characters/moonlight-rose/neptune-front.svg",
  38372. extra: 1851/1712,
  38373. bottom: 0/1851
  38374. },
  38375. form: "neptune",
  38376. default: true
  38377. },
  38378. },
  38379. [
  38380. {
  38381. name: "\"Natural\" Height",
  38382. height: math.unit(5 + 11/12, "feet"),
  38383. form: "normal"
  38384. },
  38385. {
  38386. name: "Smallest comfortable size",
  38387. height: math.unit(40, "meters"),
  38388. form: "normal"
  38389. },
  38390. {
  38391. name: "Common size",
  38392. height: math.unit(50, "km"),
  38393. form: "normal",
  38394. default: true
  38395. },
  38396. {
  38397. name: "Normal",
  38398. height: math.unit(1.5, "earths"),
  38399. form: "demon",
  38400. default: true
  38401. },
  38402. {
  38403. name: "Universal",
  38404. height: math.unit(15, "universes"),
  38405. form: "demon"
  38406. },
  38407. {
  38408. name: "Earth",
  38409. height: math.unit(1.5, "earths"),
  38410. form: "terra",
  38411. default: true
  38412. },
  38413. {
  38414. name: "Super Earth",
  38415. height: math.unit(67.5, "earths"),
  38416. form: "terra"
  38417. },
  38418. {
  38419. name: "Doesn't fit in a solar system...",
  38420. height: math.unit(1, "galaxy"),
  38421. form: "terra"
  38422. },
  38423. {
  38424. name: "Saturn",
  38425. height: math.unit(58232*2, "km"),
  38426. form: "jupiter"
  38427. },
  38428. {
  38429. name: "Jupiter",
  38430. height: math.unit(69911*2, "km"),
  38431. form: "jupiter",
  38432. default: true
  38433. },
  38434. {
  38435. name: "HD 100546 b",
  38436. height: math.unit(482938, "km"),
  38437. form: "jupiter"
  38438. },
  38439. {
  38440. name: "Enceladus",
  38441. height: math.unit(513*2, "km"),
  38442. form: "neptune"
  38443. },
  38444. {
  38445. name: "Europe",
  38446. height: math.unit(1560*2, "km"),
  38447. form: "neptune"
  38448. },
  38449. {
  38450. name: "Neptune",
  38451. height: math.unit(24622*2, "km"),
  38452. form: "neptune",
  38453. default: true
  38454. },
  38455. {
  38456. name: "CoRoT-9b",
  38457. height: math.unit(75067*2, "km"),
  38458. form: "neptune"
  38459. },
  38460. ],
  38461. {
  38462. "normal": {
  38463. name: "Normal",
  38464. default: true
  38465. },
  38466. "demon": {
  38467. name: "Demon"
  38468. },
  38469. "terra": {
  38470. name: "Terra"
  38471. },
  38472. "jupiter": {
  38473. name: "Jupiter"
  38474. },
  38475. "neptune": {
  38476. name: "Neptune"
  38477. }
  38478. }
  38479. ))
  38480. characterMakers.push(() => makeCharacter(
  38481. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  38482. {
  38483. front: {
  38484. height: math.unit(16, "feet"),
  38485. weight: math.unit(610, "kg"),
  38486. name: "Front",
  38487. image: {
  38488. source: "./media/characters/huckle/front.svg",
  38489. extra: 1731/1625,
  38490. bottom: 33/1764
  38491. }
  38492. },
  38493. back: {
  38494. height: math.unit(16, "feet"),
  38495. weight: math.unit(610, "kg"),
  38496. name: "Back",
  38497. image: {
  38498. source: "./media/characters/huckle/back.svg",
  38499. extra: 1738/1651,
  38500. bottom: 37/1775
  38501. }
  38502. },
  38503. laughing: {
  38504. height: math.unit(3.75, "feet"),
  38505. name: "Laughing",
  38506. image: {
  38507. source: "./media/characters/huckle/laughing.svg"
  38508. }
  38509. },
  38510. angry: {
  38511. height: math.unit(4.15, "feet"),
  38512. name: "Angry",
  38513. image: {
  38514. source: "./media/characters/huckle/angry.svg"
  38515. }
  38516. },
  38517. },
  38518. [
  38519. {
  38520. name: "Normal",
  38521. height: math.unit(16, "feet"),
  38522. default: true
  38523. },
  38524. {
  38525. name: "Mini Macro",
  38526. height: math.unit(463, "feet")
  38527. },
  38528. {
  38529. name: "Macro",
  38530. height: math.unit(1680, "meters")
  38531. },
  38532. {
  38533. name: "Mega Macro",
  38534. height: math.unit(175, "km")
  38535. },
  38536. {
  38537. name: "Terra Macro",
  38538. height: math.unit(32, "gigameters")
  38539. },
  38540. {
  38541. name: "Multiverse+",
  38542. height: math.unit(2.56e23, "yottameters")
  38543. },
  38544. ]
  38545. ))
  38546. characterMakers.push(() => makeCharacter(
  38547. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  38548. {
  38549. front: {
  38550. height: math.unit(6 + 9/12, "feet"),
  38551. weight: math.unit(280, "lb"),
  38552. name: "Front",
  38553. image: {
  38554. source: "./media/characters/candy/front.svg",
  38555. extra: 234/217,
  38556. bottom: 11/245
  38557. }
  38558. },
  38559. },
  38560. [
  38561. {
  38562. name: "Really Small",
  38563. height: math.unit(0.1, "nm")
  38564. },
  38565. {
  38566. name: "Micro",
  38567. height: math.unit(2, "inches")
  38568. },
  38569. {
  38570. name: "Normal",
  38571. height: math.unit(6 + 9/12, "feet"),
  38572. default: true
  38573. },
  38574. {
  38575. name: "Small Macro",
  38576. height: math.unit(69, "feet")
  38577. },
  38578. {
  38579. name: "Macro",
  38580. height: math.unit(160, "feet")
  38581. },
  38582. {
  38583. name: "Megamacro",
  38584. height: math.unit(22000, "miles")
  38585. },
  38586. {
  38587. name: "Gigamacro",
  38588. height: math.unit(50000, "miles")
  38589. },
  38590. ]
  38591. ))
  38592. characterMakers.push(() => makeCharacter(
  38593. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  38594. {
  38595. front: {
  38596. height: math.unit(4, "feet"),
  38597. weight: math.unit(90, "lb"),
  38598. name: "Front",
  38599. image: {
  38600. source: "./media/characters/joey-mcdonald/front.svg",
  38601. extra: 1059/852,
  38602. bottom: 33/1092
  38603. }
  38604. },
  38605. back: {
  38606. height: math.unit(4, "feet"),
  38607. weight: math.unit(90, "lb"),
  38608. name: "Back",
  38609. image: {
  38610. source: "./media/characters/joey-mcdonald/back.svg",
  38611. extra: 1077/879,
  38612. bottom: 5/1082
  38613. }
  38614. },
  38615. frontKobold: {
  38616. height: math.unit(4, "feet"),
  38617. weight: math.unit(100, "lb"),
  38618. name: "Front (Kobold)",
  38619. image: {
  38620. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  38621. extra: 1480/1367,
  38622. bottom: 0/1480
  38623. }
  38624. },
  38625. backKobold: {
  38626. height: math.unit(4, "feet"),
  38627. weight: math.unit(100, "lb"),
  38628. name: "Back (Kobold)",
  38629. image: {
  38630. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  38631. extra: 1449/1361,
  38632. bottom: 0/1449
  38633. }
  38634. },
  38635. },
  38636. [
  38637. {
  38638. name: "Normal",
  38639. height: math.unit(4, "feet"),
  38640. default: true
  38641. },
  38642. ]
  38643. ))
  38644. characterMakers.push(() => makeCharacter(
  38645. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  38646. {
  38647. front: {
  38648. height: math.unit(12 + 6/12, "feet"),
  38649. name: "Front",
  38650. image: {
  38651. source: "./media/characters/kass-lockheed/front.svg",
  38652. extra: 354/343,
  38653. bottom: 9/363
  38654. }
  38655. },
  38656. back: {
  38657. height: math.unit(12 + 6/12, "feet"),
  38658. name: "Back",
  38659. image: {
  38660. source: "./media/characters/kass-lockheed/back.svg",
  38661. extra: 364/352,
  38662. bottom: 3/367
  38663. }
  38664. },
  38665. dick: {
  38666. height: math.unit(3.12, "feet"),
  38667. name: "Dick",
  38668. image: {
  38669. source: "./media/characters/kass-lockheed/dick.svg"
  38670. }
  38671. },
  38672. head: {
  38673. height: math.unit(2.6, "feet"),
  38674. name: "Head",
  38675. image: {
  38676. source: "./media/characters/kass-lockheed/head.svg"
  38677. }
  38678. },
  38679. bleh: {
  38680. height: math.unit(2.85, "feet"),
  38681. name: "Bleh",
  38682. image: {
  38683. source: "./media/characters/kass-lockheed/bleh.svg"
  38684. }
  38685. },
  38686. smug: {
  38687. height: math.unit(2.85, "feet"),
  38688. name: "Smug",
  38689. image: {
  38690. source: "./media/characters/kass-lockheed/smug.svg"
  38691. }
  38692. },
  38693. },
  38694. [
  38695. {
  38696. name: "Normal",
  38697. height: math.unit(12 + 6/12, "feet"),
  38698. default: true
  38699. },
  38700. ]
  38701. ))
  38702. characterMakers.push(() => makeCharacter(
  38703. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  38704. {
  38705. front: {
  38706. height: math.unit(6 + 2/12, "feet"),
  38707. name: "Front",
  38708. image: {
  38709. source: "./media/characters/taylor/front.svg",
  38710. extra: 639/495,
  38711. bottom: 12/651
  38712. }
  38713. },
  38714. },
  38715. [
  38716. {
  38717. name: "Normal",
  38718. height: math.unit(6 + 2/12, "feet"),
  38719. default: true
  38720. },
  38721. {
  38722. name: "Big",
  38723. height: math.unit(15, "feet")
  38724. },
  38725. {
  38726. name: "Lorg",
  38727. height: math.unit(80, "feet")
  38728. },
  38729. {
  38730. name: "Too Lorg",
  38731. height: math.unit(120, "feet")
  38732. },
  38733. ]
  38734. ))
  38735. characterMakers.push(() => makeCharacter(
  38736. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  38737. {
  38738. front: {
  38739. height: math.unit(15, "feet"),
  38740. name: "Front",
  38741. image: {
  38742. source: "./media/characters/kaizer/front.svg",
  38743. extra: 1612/1436,
  38744. bottom: 43/1655
  38745. }
  38746. },
  38747. },
  38748. [
  38749. {
  38750. name: "Normal",
  38751. height: math.unit(15, "feet"),
  38752. default: true
  38753. },
  38754. ]
  38755. ))
  38756. characterMakers.push(() => makeCharacter(
  38757. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  38758. {
  38759. front: {
  38760. height: math.unit(2, "feet"),
  38761. weight: math.unit(30, "lb"),
  38762. name: "Front",
  38763. image: {
  38764. source: "./media/characters/sandy/front.svg",
  38765. extra: 1439/1307,
  38766. bottom: 194/1633
  38767. }
  38768. },
  38769. },
  38770. [
  38771. {
  38772. name: "Normal",
  38773. height: math.unit(2, "feet"),
  38774. default: true
  38775. },
  38776. ]
  38777. ))
  38778. characterMakers.push(() => makeCharacter(
  38779. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  38780. {
  38781. front: {
  38782. height: math.unit(3, "feet"),
  38783. name: "Front",
  38784. image: {
  38785. source: "./media/characters/mellvi/front.svg",
  38786. extra: 1831/1630,
  38787. bottom: 58/1889
  38788. }
  38789. },
  38790. },
  38791. [
  38792. {
  38793. name: "Normal",
  38794. height: math.unit(3, "feet"),
  38795. default: true
  38796. },
  38797. ]
  38798. ))
  38799. characterMakers.push(() => makeCharacter(
  38800. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  38801. {
  38802. front: {
  38803. height: math.unit(5 + 11/12, "feet"),
  38804. weight: math.unit(200, "lb"),
  38805. name: "Front",
  38806. image: {
  38807. source: "./media/characters/shirou/front.svg",
  38808. extra: 2491/2383,
  38809. bottom: 189/2680
  38810. }
  38811. },
  38812. back: {
  38813. height: math.unit(5 + 11/12, "feet"),
  38814. weight: math.unit(200, "lb"),
  38815. name: "Back",
  38816. image: {
  38817. source: "./media/characters/shirou/back.svg",
  38818. extra: 2554/2450,
  38819. bottom: 76/2630
  38820. }
  38821. },
  38822. },
  38823. [
  38824. {
  38825. name: "Normal",
  38826. height: math.unit(5 + 11/12, "feet"),
  38827. default: true
  38828. },
  38829. ]
  38830. ))
  38831. characterMakers.push(() => makeCharacter(
  38832. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  38833. {
  38834. front: {
  38835. height: math.unit(6 + 3/12, "feet"),
  38836. weight: math.unit(177, "lb"),
  38837. name: "Front",
  38838. image: {
  38839. source: "./media/characters/noryu/front.svg",
  38840. extra: 973/885,
  38841. bottom: 10/983
  38842. }
  38843. },
  38844. },
  38845. [
  38846. {
  38847. name: "Normal",
  38848. height: math.unit(6 + 3/12, "feet"),
  38849. default: true
  38850. },
  38851. ]
  38852. ))
  38853. characterMakers.push(() => makeCharacter(
  38854. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  38855. {
  38856. front: {
  38857. height: math.unit(5 + 6/12, "feet"),
  38858. weight: math.unit(170, "lb"),
  38859. name: "Front",
  38860. image: {
  38861. source: "./media/characters/mevolas-rubenido/front.svg",
  38862. extra: 2109/1901,
  38863. bottom: 96/2205
  38864. }
  38865. },
  38866. },
  38867. [
  38868. {
  38869. name: "Normal",
  38870. height: math.unit(5 + 6/12, "feet"),
  38871. default: true
  38872. },
  38873. ]
  38874. ))
  38875. characterMakers.push(() => makeCharacter(
  38876. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  38877. {
  38878. front: {
  38879. height: math.unit(100, "feet"),
  38880. name: "Front",
  38881. image: {
  38882. source: "./media/characters/dee/front.svg",
  38883. extra: 2153/2036,
  38884. bottom: 59/2212
  38885. }
  38886. },
  38887. back: {
  38888. height: math.unit(100, "feet"),
  38889. name: "Back",
  38890. image: {
  38891. source: "./media/characters/dee/back.svg",
  38892. extra: 2183/2058,
  38893. bottom: 75/2258
  38894. }
  38895. },
  38896. foot: {
  38897. height: math.unit(19.43, "feet"),
  38898. name: "Foot",
  38899. image: {
  38900. source: "./media/characters/dee/foot.svg"
  38901. }
  38902. },
  38903. hoof: {
  38904. height: math.unit(20.6, "feet"),
  38905. name: "Hoof",
  38906. image: {
  38907. source: "./media/characters/dee/hoof.svg"
  38908. }
  38909. },
  38910. },
  38911. [
  38912. {
  38913. name: "Macro",
  38914. height: math.unit(100, "feet"),
  38915. default: true
  38916. },
  38917. ]
  38918. ))
  38919. characterMakers.push(() => makeCharacter(
  38920. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  38921. {
  38922. front: {
  38923. height: math.unit(5 + 6/12, "feet"),
  38924. name: "Front",
  38925. image: {
  38926. source: "./media/characters/teh/front.svg",
  38927. extra: 1002/847,
  38928. bottom: 62/1064
  38929. }
  38930. },
  38931. },
  38932. [
  38933. {
  38934. name: "Normal",
  38935. height: math.unit(5 + 6/12, "feet"),
  38936. default: true
  38937. },
  38938. ]
  38939. ))
  38940. characterMakers.push(() => makeCharacter(
  38941. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  38942. {
  38943. side: {
  38944. height: math.unit(6 + 1/12, "feet"),
  38945. weight: math.unit(204, "lb"),
  38946. name: "Side",
  38947. image: {
  38948. source: "./media/characters/quicksilver-ayukoti/side.svg",
  38949. extra: 974/775,
  38950. bottom: 169/1143
  38951. }
  38952. },
  38953. sitting: {
  38954. height: math.unit(6 + 2/12, "feet"),
  38955. weight: math.unit(204, "lb"),
  38956. name: "Sitting",
  38957. image: {
  38958. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  38959. extra: 1175/964,
  38960. bottom: 378/1553
  38961. }
  38962. },
  38963. },
  38964. [
  38965. {
  38966. name: "Normal",
  38967. height: math.unit(6 + 1/12, "feet"),
  38968. default: true
  38969. },
  38970. ]
  38971. ))
  38972. characterMakers.push(() => makeCharacter(
  38973. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  38974. {
  38975. front: {
  38976. height: math.unit(6, "inches"),
  38977. name: "Front",
  38978. image: {
  38979. source: "./media/characters/tululi/front.svg",
  38980. extra: 1997/1876,
  38981. bottom: 20/2017
  38982. }
  38983. },
  38984. },
  38985. [
  38986. {
  38987. name: "Normal",
  38988. height: math.unit(6, "inches"),
  38989. default: true
  38990. },
  38991. ]
  38992. ))
  38993. characterMakers.push(() => makeCharacter(
  38994. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  38995. {
  38996. front: {
  38997. height: math.unit(4 + 1/12, "feet"),
  38998. name: "Front",
  38999. image: {
  39000. source: "./media/characters/star/front.svg",
  39001. extra: 1493/1189,
  39002. bottom: 48/1541
  39003. }
  39004. },
  39005. },
  39006. [
  39007. {
  39008. name: "Normal",
  39009. height: math.unit(4 + 1/12, "feet"),
  39010. default: true
  39011. },
  39012. ]
  39013. ))
  39014. characterMakers.push(() => makeCharacter(
  39015. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  39016. {
  39017. front: {
  39018. height: math.unit(6 + 3/12, "feet"),
  39019. name: "Front",
  39020. image: {
  39021. source: "./media/characters/comet/front.svg",
  39022. extra: 1681/1462,
  39023. bottom: 26/1707
  39024. }
  39025. },
  39026. },
  39027. [
  39028. {
  39029. name: "Normal",
  39030. height: math.unit(6 + 3/12, "feet"),
  39031. default: true
  39032. },
  39033. ]
  39034. ))
  39035. characterMakers.push(() => makeCharacter(
  39036. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  39037. {
  39038. front: {
  39039. height: math.unit(950, "feet"),
  39040. name: "Front",
  39041. image: {
  39042. source: "./media/characters/vortex/front.svg",
  39043. extra: 1497/1434,
  39044. bottom: 56/1553
  39045. }
  39046. },
  39047. maw: {
  39048. height: math.unit(285, "feet"),
  39049. name: "Maw",
  39050. image: {
  39051. source: "./media/characters/vortex/maw.svg"
  39052. }
  39053. },
  39054. },
  39055. [
  39056. {
  39057. name: "Macro",
  39058. height: math.unit(950, "feet"),
  39059. default: true
  39060. },
  39061. ]
  39062. ))
  39063. characterMakers.push(() => makeCharacter(
  39064. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  39065. {
  39066. front: {
  39067. height: math.unit(600, "feet"),
  39068. weight: math.unit(0.02, "grams"),
  39069. name: "Front",
  39070. image: {
  39071. source: "./media/characters/doodle/front.svg",
  39072. extra: 1578/1413,
  39073. bottom: 37/1615
  39074. }
  39075. },
  39076. },
  39077. [
  39078. {
  39079. name: "Macro",
  39080. height: math.unit(600, "feet"),
  39081. default: true
  39082. },
  39083. ]
  39084. ))
  39085. characterMakers.push(() => makeCharacter(
  39086. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  39087. {
  39088. front: {
  39089. height: math.unit(6 + 6/12, "feet"),
  39090. name: "Front",
  39091. image: {
  39092. source: "./media/characters/jai/front.svg",
  39093. extra: 1645/1534,
  39094. bottom: 115/1760
  39095. }
  39096. },
  39097. },
  39098. [
  39099. {
  39100. name: "Normal",
  39101. height: math.unit(6 + 6/12, "feet"),
  39102. default: true
  39103. },
  39104. ]
  39105. ))
  39106. characterMakers.push(() => makeCharacter(
  39107. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  39108. {
  39109. front: {
  39110. height: math.unit(6 + 8/12, "feet"),
  39111. name: "Front",
  39112. image: {
  39113. source: "./media/characters/pixel/front.svg",
  39114. extra: 1900/1735,
  39115. bottom: 63/1963
  39116. }
  39117. },
  39118. },
  39119. [
  39120. {
  39121. name: "Normal",
  39122. height: math.unit(6 + 8/12, "feet"),
  39123. default: true
  39124. },
  39125. ]
  39126. ))
  39127. characterMakers.push(() => makeCharacter(
  39128. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  39129. {
  39130. back: {
  39131. height: math.unit(4 + 1/12, "feet"),
  39132. weight: math.unit(75, "lb"),
  39133. name: "Back",
  39134. image: {
  39135. source: "./media/characters/rhett/back.svg",
  39136. extra: 930/878,
  39137. bottom: 25/955
  39138. }
  39139. },
  39140. front: {
  39141. height: math.unit(4 + 1/12, "feet"),
  39142. weight: math.unit(75, "lb"),
  39143. name: "Front",
  39144. image: {
  39145. source: "./media/characters/rhett/front.svg",
  39146. extra: 1682/1586,
  39147. bottom: 92/1774
  39148. }
  39149. },
  39150. },
  39151. [
  39152. {
  39153. name: "Micro",
  39154. height: math.unit(8, "inches")
  39155. },
  39156. {
  39157. name: "Tiny",
  39158. height: math.unit(2, "feet")
  39159. },
  39160. {
  39161. name: "Normal",
  39162. height: math.unit(4 + 1/12, "feet"),
  39163. default: true
  39164. },
  39165. ]
  39166. ))
  39167. characterMakers.push(() => makeCharacter(
  39168. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  39169. {
  39170. front: {
  39171. height: math.unit(3 + 3/12, "feet"),
  39172. name: "Front",
  39173. image: {
  39174. source: "./media/characters/penny/front.svg",
  39175. extra: 1406/1311,
  39176. bottom: 26/1432
  39177. }
  39178. },
  39179. },
  39180. [
  39181. {
  39182. name: "Normal",
  39183. height: math.unit(3 + 3/12, "feet"),
  39184. default: true
  39185. },
  39186. ]
  39187. ))
  39188. characterMakers.push(() => makeCharacter(
  39189. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  39190. {
  39191. front: {
  39192. height: math.unit(4 + 11/12, "feet"),
  39193. name: "Front",
  39194. image: {
  39195. source: "./media/characters/monty/front.svg",
  39196. extra: 1479/1209,
  39197. bottom: 0/1479
  39198. }
  39199. },
  39200. },
  39201. [
  39202. {
  39203. name: "Normal",
  39204. height: math.unit(4 + 11/12, "feet"),
  39205. default: true
  39206. },
  39207. ]
  39208. ))
  39209. characterMakers.push(() => makeCharacter(
  39210. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  39211. {
  39212. front: {
  39213. height: math.unit(8 + 4/12, "feet"),
  39214. name: "Front",
  39215. image: {
  39216. source: "./media/characters/sterling/front.svg",
  39217. extra: 1420/1236,
  39218. bottom: 27/1447
  39219. }
  39220. },
  39221. },
  39222. [
  39223. {
  39224. name: "Normal",
  39225. height: math.unit(8 + 4/12, "feet"),
  39226. default: true
  39227. },
  39228. ]
  39229. ))
  39230. characterMakers.push(() => makeCharacter(
  39231. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  39232. {
  39233. front: {
  39234. height: math.unit(15, "feet"),
  39235. name: "Front",
  39236. image: {
  39237. source: "./media/characters/marble/front.svg",
  39238. extra: 973/937,
  39239. bottom: 32/1005
  39240. }
  39241. },
  39242. },
  39243. [
  39244. {
  39245. name: "Normal",
  39246. height: math.unit(15, "feet"),
  39247. default: true
  39248. },
  39249. ]
  39250. ))
  39251. characterMakers.push(() => makeCharacter(
  39252. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  39253. {
  39254. front: {
  39255. height: math.unit(3, "inches"),
  39256. name: "Front",
  39257. image: {
  39258. source: "./media/characters/powder/front.svg",
  39259. extra: 1504/1334,
  39260. bottom: 518/2022
  39261. }
  39262. },
  39263. },
  39264. [
  39265. {
  39266. name: "Normal",
  39267. height: math.unit(3, "inches"),
  39268. default: true
  39269. },
  39270. ]
  39271. ))
  39272. characterMakers.push(() => makeCharacter(
  39273. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  39274. {
  39275. front: {
  39276. height: math.unit(4 + 5/12, "feet"),
  39277. name: "Front",
  39278. image: {
  39279. source: "./media/characters/joey-raccoon/front.svg",
  39280. extra: 1273/1197,
  39281. bottom: 0/1273
  39282. }
  39283. },
  39284. },
  39285. [
  39286. {
  39287. name: "Normal",
  39288. height: math.unit(4 + 5/12, "feet"),
  39289. default: true
  39290. },
  39291. ]
  39292. ))
  39293. characterMakers.push(() => makeCharacter(
  39294. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  39295. {
  39296. front: {
  39297. height: math.unit(8 + 4/12, "feet"),
  39298. name: "Front",
  39299. image: {
  39300. source: "./media/characters/vick/front.svg",
  39301. extra: 2187/2118,
  39302. bottom: 47/2234
  39303. }
  39304. },
  39305. },
  39306. [
  39307. {
  39308. name: "Normal",
  39309. height: math.unit(8 + 4/12, "feet"),
  39310. default: true
  39311. },
  39312. ]
  39313. ))
  39314. characterMakers.push(() => makeCharacter(
  39315. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  39316. {
  39317. front: {
  39318. height: math.unit(5 + 5/12, "feet"),
  39319. name: "Front",
  39320. image: {
  39321. source: "./media/characters/mitsy/front.svg",
  39322. extra: 1842/1695,
  39323. bottom: 0/1842
  39324. }
  39325. },
  39326. },
  39327. [
  39328. {
  39329. name: "Normal",
  39330. height: math.unit(5 + 5/12, "feet"),
  39331. default: true
  39332. },
  39333. ]
  39334. ))
  39335. characterMakers.push(() => makeCharacter(
  39336. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  39337. {
  39338. front: {
  39339. height: math.unit(6 + 3/12, "feet"),
  39340. name: "Front",
  39341. image: {
  39342. source: "./media/characters/silvy/front.svg",
  39343. extra: 1995/1836,
  39344. bottom: 225/2220
  39345. }
  39346. },
  39347. },
  39348. [
  39349. {
  39350. name: "Normal",
  39351. height: math.unit(6 + 3/12, "feet"),
  39352. default: true
  39353. },
  39354. ]
  39355. ))
  39356. characterMakers.push(() => makeCharacter(
  39357. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  39358. {
  39359. front: {
  39360. height: math.unit(3 + 8/12, "feet"),
  39361. name: "Front",
  39362. image: {
  39363. source: "./media/characters/rodney/front.svg",
  39364. extra: 1956/1747,
  39365. bottom: 31/1987
  39366. }
  39367. },
  39368. frontDressed: {
  39369. height: math.unit(2.9, "feet"),
  39370. name: "Front (Dressed)",
  39371. image: {
  39372. source: "./media/characters/rodney/front-dressed.svg",
  39373. extra: 1382/1241,
  39374. bottom: 385/1767
  39375. }
  39376. },
  39377. },
  39378. [
  39379. {
  39380. name: "Normal",
  39381. height: math.unit(3 + 8/12, "feet"),
  39382. default: true
  39383. },
  39384. ]
  39385. ))
  39386. characterMakers.push(() => makeCharacter(
  39387. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  39388. {
  39389. front: {
  39390. height: math.unit(5 + 9/12, "feet"),
  39391. weight: math.unit(194, "lbs"),
  39392. name: "Front",
  39393. image: {
  39394. source: "./media/characters/zakail-sudekai/front.svg",
  39395. extra: 2696/2533,
  39396. bottom: 248/2944
  39397. }
  39398. },
  39399. maw: {
  39400. height: math.unit(1.35, "feet"),
  39401. name: "Maw",
  39402. image: {
  39403. source: "./media/characters/zakail-sudekai/maw.svg"
  39404. }
  39405. },
  39406. },
  39407. [
  39408. {
  39409. name: "Normal",
  39410. height: math.unit(5 + 9/12, "feet"),
  39411. default: true
  39412. },
  39413. ]
  39414. ))
  39415. characterMakers.push(() => makeCharacter(
  39416. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  39417. {
  39418. front: {
  39419. height: math.unit(8 + 4/12, "feet"),
  39420. weight: math.unit(1200, "lb"),
  39421. name: "Front",
  39422. image: {
  39423. source: "./media/characters/eleanor/front.svg",
  39424. extra: 1226/1192,
  39425. bottom: 52/1278
  39426. }
  39427. },
  39428. back: {
  39429. height: math.unit(8 + 4/12, "feet"),
  39430. weight: math.unit(1200, "lb"),
  39431. name: "Back",
  39432. image: {
  39433. source: "./media/characters/eleanor/back.svg",
  39434. extra: 1242/1184,
  39435. bottom: 60/1302
  39436. }
  39437. },
  39438. head: {
  39439. height: math.unit(2.62, "feet"),
  39440. name: "Head",
  39441. image: {
  39442. source: "./media/characters/eleanor/head.svg"
  39443. }
  39444. },
  39445. },
  39446. [
  39447. {
  39448. name: "Normal",
  39449. height: math.unit(8 + 4/12, "feet"),
  39450. default: true
  39451. },
  39452. ]
  39453. ))
  39454. characterMakers.push(() => makeCharacter(
  39455. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  39456. {
  39457. front: {
  39458. height: math.unit(8 + 4/12, "feet"),
  39459. weight: math.unit(750, "lb"),
  39460. name: "Front",
  39461. image: {
  39462. source: "./media/characters/tanya/front.svg",
  39463. extra: 1749/1615,
  39464. bottom: 33/1782
  39465. }
  39466. },
  39467. },
  39468. [
  39469. {
  39470. name: "Normal",
  39471. height: math.unit(8 + 4/12, "feet"),
  39472. default: true
  39473. },
  39474. ]
  39475. ))
  39476. characterMakers.push(() => makeCharacter(
  39477. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  39478. {
  39479. front: {
  39480. height: math.unit(5, "feet"),
  39481. weight: math.unit(225, "lb"),
  39482. name: "Front",
  39483. image: {
  39484. source: "./media/characters/cindy/front.svg",
  39485. extra: 1320/1250,
  39486. bottom: 42/1362
  39487. }
  39488. },
  39489. frontDressed: {
  39490. height: math.unit(5, "feet"),
  39491. weight: math.unit(225, "lb"),
  39492. name: "Front (Dressed)",
  39493. image: {
  39494. source: "./media/characters/cindy/front-dressed.svg",
  39495. extra: 1320/1250,
  39496. bottom: 42/1362
  39497. }
  39498. },
  39499. back: {
  39500. height: math.unit(5, "feet"),
  39501. weight: math.unit(225, "lb"),
  39502. name: "Back",
  39503. image: {
  39504. source: "./media/characters/cindy/back.svg",
  39505. extra: 1384/1346,
  39506. bottom: 14/1398
  39507. }
  39508. },
  39509. },
  39510. [
  39511. {
  39512. name: "Normal",
  39513. height: math.unit(5, "feet"),
  39514. default: true
  39515. },
  39516. ]
  39517. ))
  39518. characterMakers.push(() => makeCharacter(
  39519. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  39520. {
  39521. front: {
  39522. height: math.unit(6 + 9/12, "feet"),
  39523. weight: math.unit(440, "lb"),
  39524. name: "Front",
  39525. image: {
  39526. source: "./media/characters/wilbur-owen/front.svg",
  39527. extra: 1575/1448,
  39528. bottom: 72/1647
  39529. }
  39530. },
  39531. back: {
  39532. height: math.unit(6 + 9/12, "feet"),
  39533. weight: math.unit(440, "lb"),
  39534. name: "Back",
  39535. image: {
  39536. source: "./media/characters/wilbur-owen/back.svg",
  39537. extra: 1578/1445,
  39538. bottom: 36/1614
  39539. }
  39540. },
  39541. },
  39542. [
  39543. {
  39544. name: "Normal",
  39545. height: math.unit(6 + 9/12, "feet"),
  39546. default: true
  39547. },
  39548. ]
  39549. ))
  39550. characterMakers.push(() => makeCharacter(
  39551. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  39552. {
  39553. front: {
  39554. height: math.unit(6 + 5/12, "feet"),
  39555. weight: math.unit(650, "lb"),
  39556. name: "Front",
  39557. image: {
  39558. source: "./media/characters/keegan/front.svg",
  39559. extra: 2387/2198,
  39560. bottom: 33/2420
  39561. }
  39562. },
  39563. side: {
  39564. height: math.unit(6 + 5/12, "feet"),
  39565. weight: math.unit(650, "lb"),
  39566. name: "Side",
  39567. image: {
  39568. source: "./media/characters/keegan/side.svg",
  39569. extra: 2390/2202,
  39570. bottom: 47/2437
  39571. }
  39572. },
  39573. back: {
  39574. height: math.unit(6 + 5/12, "feet"),
  39575. weight: math.unit(650, "lb"),
  39576. name: "Back",
  39577. image: {
  39578. source: "./media/characters/keegan/back.svg",
  39579. extra: 2418/2268,
  39580. bottom: 15/2433
  39581. }
  39582. },
  39583. frontSfw: {
  39584. height: math.unit(6 + 5/12, "feet"),
  39585. weight: math.unit(650, "lb"),
  39586. name: "Front (SFW)",
  39587. image: {
  39588. source: "./media/characters/keegan/front-sfw.svg",
  39589. extra: 2387/2198,
  39590. bottom: 33/2420
  39591. }
  39592. },
  39593. beans: {
  39594. height: math.unit(1.85, "feet"),
  39595. name: "Beans",
  39596. image: {
  39597. source: "./media/characters/keegan/beans.svg"
  39598. }
  39599. },
  39600. },
  39601. [
  39602. {
  39603. name: "Normal",
  39604. height: math.unit(6 + 5/12, "feet"),
  39605. default: true
  39606. },
  39607. ]
  39608. ))
  39609. characterMakers.push(() => makeCharacter(
  39610. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  39611. {
  39612. front: {
  39613. height: math.unit(9, "feet"),
  39614. name: "Front",
  39615. image: {
  39616. source: "./media/characters/colton/front.svg",
  39617. extra: 1589/1326,
  39618. bottom: 139/1728
  39619. }
  39620. },
  39621. },
  39622. [
  39623. {
  39624. name: "Normal",
  39625. height: math.unit(9, "feet"),
  39626. default: true
  39627. },
  39628. ]
  39629. ))
  39630. characterMakers.push(() => makeCharacter(
  39631. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  39632. {
  39633. front: {
  39634. height: math.unit(2 + 9/12, "feet"),
  39635. name: "Front",
  39636. image: {
  39637. source: "./media/characters/bora/front.svg",
  39638. extra: 1265/1250,
  39639. bottom: 24/1289
  39640. }
  39641. },
  39642. },
  39643. [
  39644. {
  39645. name: "Normal",
  39646. height: math.unit(2 + 9/12, "feet"),
  39647. default: true
  39648. },
  39649. ]
  39650. ))
  39651. characterMakers.push(() => makeCharacter(
  39652. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  39653. {
  39654. front: {
  39655. height: math.unit(8, "feet"),
  39656. name: "Front",
  39657. image: {
  39658. source: "./media/characters/myu-myu/front.svg",
  39659. extra: 1949/1857,
  39660. bottom: 90/2039
  39661. }
  39662. },
  39663. },
  39664. [
  39665. {
  39666. name: "Normal",
  39667. height: math.unit(8, "feet"),
  39668. default: true
  39669. },
  39670. {
  39671. name: "Big",
  39672. height: math.unit(15, "feet")
  39673. },
  39674. {
  39675. name: "BIG",
  39676. height: math.unit(25, "feet")
  39677. },
  39678. ]
  39679. ))
  39680. characterMakers.push(() => makeCharacter(
  39681. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  39682. {
  39683. side: {
  39684. height: math.unit(7 + 5/12, "feet"),
  39685. weight: math.unit(2800, "lb"),
  39686. name: "Side",
  39687. image: {
  39688. source: "./media/characters/haloren/side.svg",
  39689. extra: 1793/409,
  39690. bottom: 59/1852
  39691. }
  39692. },
  39693. frontPaw: {
  39694. height: math.unit(2.36, "feet"),
  39695. name: "Front paw",
  39696. image: {
  39697. source: "./media/characters/haloren/front-paw.svg"
  39698. }
  39699. },
  39700. hindPaw: {
  39701. height: math.unit(3.18, "feet"),
  39702. name: "Hind paw",
  39703. image: {
  39704. source: "./media/characters/haloren/hind-paw.svg"
  39705. }
  39706. },
  39707. maw: {
  39708. height: math.unit(5.05, "feet"),
  39709. name: "Maw",
  39710. image: {
  39711. source: "./media/characters/haloren/maw.svg"
  39712. }
  39713. },
  39714. dick: {
  39715. height: math.unit(2.90, "feet"),
  39716. name: "Dick",
  39717. image: {
  39718. source: "./media/characters/haloren/dick.svg"
  39719. }
  39720. },
  39721. },
  39722. [
  39723. {
  39724. name: "Normal",
  39725. height: math.unit(7 + 5/12, "feet"),
  39726. default: true
  39727. },
  39728. {
  39729. name: "Enhanced",
  39730. height: math.unit(14 + 3/12, "feet")
  39731. },
  39732. ]
  39733. ))
  39734. characterMakers.push(() => makeCharacter(
  39735. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  39736. {
  39737. front: {
  39738. height: math.unit(171, "cm"),
  39739. name: "Front",
  39740. image: {
  39741. source: "./media/characters/kimmy/front.svg",
  39742. extra: 1491/1435,
  39743. bottom: 53/1544
  39744. }
  39745. },
  39746. },
  39747. [
  39748. {
  39749. name: "Small",
  39750. height: math.unit(9, "cm")
  39751. },
  39752. {
  39753. name: "Normal",
  39754. height: math.unit(171, "cm"),
  39755. default: true
  39756. },
  39757. ]
  39758. ))
  39759. characterMakers.push(() => makeCharacter(
  39760. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  39761. {
  39762. front: {
  39763. height: math.unit(8, "feet"),
  39764. weight: math.unit(300, "lb"),
  39765. name: "Front",
  39766. image: {
  39767. source: "./media/characters/galeboomer/front.svg",
  39768. extra: 4651/4415,
  39769. bottom: 162/4813
  39770. }
  39771. },
  39772. back: {
  39773. height: math.unit(8, "feet"),
  39774. weight: math.unit(300, "lb"),
  39775. name: "Back",
  39776. image: {
  39777. source: "./media/characters/galeboomer/back.svg",
  39778. extra: 4544/4314,
  39779. bottom: 16/4560
  39780. }
  39781. },
  39782. frontAlt: {
  39783. height: math.unit(8, "feet"),
  39784. weight: math.unit(300, "lb"),
  39785. name: "Front (Alt)",
  39786. image: {
  39787. source: "./media/characters/galeboomer/front-alt.svg",
  39788. extra: 4458/4228,
  39789. bottom: 68/4526
  39790. }
  39791. },
  39792. maw: {
  39793. height: math.unit(1.2, "feet"),
  39794. name: "Maw",
  39795. image: {
  39796. source: "./media/characters/galeboomer/maw.svg"
  39797. }
  39798. },
  39799. },
  39800. [
  39801. {
  39802. name: "Normal",
  39803. height: math.unit(8, "feet"),
  39804. default: true
  39805. },
  39806. ]
  39807. ))
  39808. characterMakers.push(() => makeCharacter(
  39809. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  39810. {
  39811. front: {
  39812. height: math.unit(5 + 9/12, "feet"),
  39813. weight: math.unit(120, "lb"),
  39814. name: "Front",
  39815. image: {
  39816. source: "./media/characters/chyr/front.svg",
  39817. extra: 1323/1254,
  39818. bottom: 63/1386
  39819. }
  39820. },
  39821. back: {
  39822. height: math.unit(5 + 9/12, "feet"),
  39823. weight: math.unit(120, "lb"),
  39824. name: "Back",
  39825. image: {
  39826. source: "./media/characters/chyr/back.svg",
  39827. extra: 1323/1252,
  39828. bottom: 48/1371
  39829. }
  39830. },
  39831. },
  39832. [
  39833. {
  39834. name: "Normal",
  39835. height: math.unit(5 + 9/12, "feet"),
  39836. default: true
  39837. },
  39838. ]
  39839. ))
  39840. characterMakers.push(() => makeCharacter(
  39841. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  39842. {
  39843. front: {
  39844. height: math.unit(7, "feet"),
  39845. weight: math.unit(310, "lb"),
  39846. name: "Front",
  39847. image: {
  39848. source: "./media/characters/solarus/front.svg",
  39849. extra: 2415/2021,
  39850. bottom: 103/2518
  39851. }
  39852. },
  39853. back: {
  39854. height: math.unit(7, "feet"),
  39855. weight: math.unit(310, "lb"),
  39856. name: "Back",
  39857. image: {
  39858. source: "./media/characters/solarus/back.svg",
  39859. extra: 2463/2089,
  39860. bottom: 79/2542
  39861. }
  39862. },
  39863. },
  39864. [
  39865. {
  39866. name: "Normal",
  39867. height: math.unit(7, "feet"),
  39868. default: true
  39869. },
  39870. ]
  39871. ))
  39872. characterMakers.push(() => makeCharacter(
  39873. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  39874. {
  39875. front: {
  39876. height: math.unit(16, "feet"),
  39877. name: "Front",
  39878. image: {
  39879. source: "./media/characters/mutsuju-koizaemon/front.svg",
  39880. extra: 1844/1780,
  39881. bottom: 58/1902
  39882. }
  39883. },
  39884. winterCoat: {
  39885. height: math.unit(16, "feet"),
  39886. name: "Winter Coat",
  39887. image: {
  39888. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  39889. extra: 1807/1775,
  39890. bottom: 69/1876
  39891. }
  39892. },
  39893. },
  39894. [
  39895. {
  39896. name: "Normal",
  39897. height: math.unit(16, "feet"),
  39898. default: true
  39899. },
  39900. {
  39901. name: "Chicago Size",
  39902. height: math.unit(560, "feet")
  39903. },
  39904. ]
  39905. ))
  39906. characterMakers.push(() => makeCharacter(
  39907. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  39908. {
  39909. front: {
  39910. height: math.unit(11 + 6/12, "feet"),
  39911. weight: math.unit(1366, "lb"),
  39912. name: "Front",
  39913. image: {
  39914. source: "./media/characters/lexor/front.svg",
  39915. extra: 1560/1481,
  39916. bottom: 211/1771
  39917. }
  39918. },
  39919. back: {
  39920. height: math.unit(11 + 6/12, "feet"),
  39921. weight: math.unit(1366, "lb"),
  39922. name: "Back",
  39923. image: {
  39924. source: "./media/characters/lexor/back.svg",
  39925. extra: 1614/1533,
  39926. bottom: 76/1690
  39927. }
  39928. },
  39929. maw: {
  39930. height: math.unit(3, "feet"),
  39931. name: "Maw",
  39932. image: {
  39933. source: "./media/characters/lexor/maw.svg"
  39934. }
  39935. },
  39936. dick: {
  39937. height: math.unit(2.59, "feet"),
  39938. name: "Dick",
  39939. image: {
  39940. source: "./media/characters/lexor/dick.svg"
  39941. }
  39942. },
  39943. },
  39944. [
  39945. {
  39946. name: "Normal",
  39947. height: math.unit(11 + 6/12, "feet"),
  39948. default: true
  39949. },
  39950. ]
  39951. ))
  39952. characterMakers.push(() => makeCharacter(
  39953. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  39954. {
  39955. front: {
  39956. height: math.unit(5 + 8/12, "feet"),
  39957. name: "Front",
  39958. image: {
  39959. source: "./media/characters/magnum/front.svg",
  39960. extra: 942/855,
  39961. bottom: 26/968
  39962. }
  39963. },
  39964. },
  39965. [
  39966. {
  39967. name: "Normal",
  39968. height: math.unit(5 + 8/12, "feet"),
  39969. default: true
  39970. },
  39971. ]
  39972. ))
  39973. characterMakers.push(() => makeCharacter(
  39974. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  39975. {
  39976. front: {
  39977. height: math.unit(18 + 4/12, "feet"),
  39978. weight: math.unit(1500, "kg"),
  39979. name: "Front",
  39980. image: {
  39981. source: "./media/characters/solas-sharpsman/front.svg",
  39982. extra: 1698/1589,
  39983. bottom: 0/1698
  39984. }
  39985. },
  39986. },
  39987. [
  39988. {
  39989. name: "Normal",
  39990. height: math.unit(18 + 4/12, "feet"),
  39991. default: true
  39992. },
  39993. ]
  39994. ))
  39995. characterMakers.push(() => makeCharacter(
  39996. { name: "October", species: ["tiger"], tags: ["anthro"] },
  39997. {
  39998. front: {
  39999. height: math.unit(5 + 5/12, "feet"),
  40000. weight: math.unit(180, "lb"),
  40001. name: "Front",
  40002. image: {
  40003. source: "./media/characters/october/front.svg",
  40004. extra: 1800/1650,
  40005. bottom: 0/1800
  40006. }
  40007. },
  40008. frontNsfw: {
  40009. height: math.unit(5 + 5/12, "feet"),
  40010. weight: math.unit(180, "lb"),
  40011. name: "Front (NSFW)",
  40012. image: {
  40013. source: "./media/characters/october/front-nsfw.svg",
  40014. extra: 1392/1307,
  40015. bottom: 42/1434
  40016. }
  40017. },
  40018. },
  40019. [
  40020. {
  40021. name: "Normal",
  40022. height: math.unit(5 + 5/12, "feet"),
  40023. default: true
  40024. },
  40025. ]
  40026. ))
  40027. characterMakers.push(() => makeCharacter(
  40028. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  40029. {
  40030. front: {
  40031. height: math.unit(8 + 6/12, "feet"),
  40032. name: "Front",
  40033. image: {
  40034. source: "./media/characters/essynkardi/front.svg",
  40035. extra: 1541/1457,
  40036. bottom: 47/1588
  40037. }
  40038. },
  40039. },
  40040. [
  40041. {
  40042. name: "Normal",
  40043. height: math.unit(8 + 6/12, "feet"),
  40044. default: true
  40045. },
  40046. ]
  40047. ))
  40048. characterMakers.push(() => makeCharacter(
  40049. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  40050. {
  40051. front: {
  40052. height: math.unit(6 + 6/12, "feet"),
  40053. weight: math.unit(7, "lb"),
  40054. name: "Front",
  40055. image: {
  40056. source: "./media/characters/icky/front.svg",
  40057. extra: 813/782,
  40058. bottom: 66/879
  40059. }
  40060. },
  40061. back: {
  40062. height: math.unit(6 + 6/12, "feet"),
  40063. weight: math.unit(7, "lb"),
  40064. name: "Back",
  40065. image: {
  40066. source: "./media/characters/icky/back.svg",
  40067. extra: 754/735,
  40068. bottom: 56/810
  40069. }
  40070. },
  40071. },
  40072. [
  40073. {
  40074. name: "Normal",
  40075. height: math.unit(6 + 6/12, "feet"),
  40076. default: true
  40077. },
  40078. ]
  40079. ))
  40080. characterMakers.push(() => makeCharacter(
  40081. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  40082. {
  40083. front: {
  40084. height: math.unit(15, "feet"),
  40085. name: "Front",
  40086. image: {
  40087. source: "./media/characters/rojas/front.svg",
  40088. extra: 1462/1408,
  40089. bottom: 95/1557
  40090. }
  40091. },
  40092. back: {
  40093. height: math.unit(15, "feet"),
  40094. name: "Back",
  40095. image: {
  40096. source: "./media/characters/rojas/back.svg",
  40097. extra: 1023/954,
  40098. bottom: 28/1051
  40099. }
  40100. },
  40101. },
  40102. [
  40103. {
  40104. name: "Normal",
  40105. height: math.unit(15, "feet"),
  40106. default: true
  40107. },
  40108. ]
  40109. ))
  40110. characterMakers.push(() => makeCharacter(
  40111. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  40112. {
  40113. frontHuman: {
  40114. height: math.unit(5 + 7/12, "feet"),
  40115. name: "Front (Human)",
  40116. image: {
  40117. source: "./media/characters/alek-dryagan/front-human.svg",
  40118. extra: 1687/1667,
  40119. bottom: 69/1756
  40120. }
  40121. },
  40122. backHuman: {
  40123. height: math.unit(5 + 7/12, "feet"),
  40124. name: "Back (Human)",
  40125. image: {
  40126. source: "./media/characters/alek-dryagan/back-human.svg",
  40127. extra: 1670/1649,
  40128. bottom: 65/1735
  40129. }
  40130. },
  40131. frontDemi: {
  40132. height: math.unit(65, "feet"),
  40133. name: "Front (Demi)",
  40134. image: {
  40135. source: "./media/characters/alek-dryagan/front-demi.svg",
  40136. extra: 1669/1642,
  40137. bottom: 49/1718
  40138. }
  40139. },
  40140. backDemi: {
  40141. height: math.unit(65, "feet"),
  40142. name: "Back (Demi)",
  40143. image: {
  40144. source: "./media/characters/alek-dryagan/back-demi.svg",
  40145. extra: 1658/1637,
  40146. bottom: 40/1698
  40147. }
  40148. },
  40149. mawHuman: {
  40150. height: math.unit(0.3, "feet"),
  40151. name: "Maw (Human)",
  40152. image: {
  40153. source: "./media/characters/alek-dryagan/maw-human.svg"
  40154. }
  40155. },
  40156. mawDemi: {
  40157. height: math.unit(3.8, "feet"),
  40158. name: "Maw (Demi)",
  40159. image: {
  40160. source: "./media/characters/alek-dryagan/maw-demi.svg"
  40161. }
  40162. },
  40163. },
  40164. [
  40165. {
  40166. name: "Normal",
  40167. height: math.unit(5 + 7/12, "feet"),
  40168. default: true
  40169. },
  40170. ]
  40171. ))
  40172. characterMakers.push(() => makeCharacter(
  40173. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  40174. {
  40175. frontHuman: {
  40176. height: math.unit(5 + 2/12, "feet"),
  40177. name: "Front (Human)",
  40178. image: {
  40179. source: "./media/characters/gen/front-human.svg",
  40180. extra: 1627/1538,
  40181. bottom: 71/1698
  40182. }
  40183. },
  40184. backHuman: {
  40185. height: math.unit(5 + 2/12, "feet"),
  40186. name: "Back (Human)",
  40187. image: {
  40188. source: "./media/characters/gen/back-human.svg",
  40189. extra: 1638/1548,
  40190. bottom: 69/1707
  40191. }
  40192. },
  40193. frontDemi: {
  40194. height: math.unit(5 + 2/12, "feet"),
  40195. name: "Front (Demi)",
  40196. image: {
  40197. source: "./media/characters/gen/front-demi.svg",
  40198. extra: 1627/1538,
  40199. bottom: 71/1698
  40200. }
  40201. },
  40202. backDemi: {
  40203. height: math.unit(5 + 2/12, "feet"),
  40204. name: "Back (Demi)",
  40205. image: {
  40206. source: "./media/characters/gen/back-demi.svg",
  40207. extra: 1638/1548,
  40208. bottom: 69/1707
  40209. }
  40210. },
  40211. },
  40212. [
  40213. {
  40214. name: "Normal",
  40215. height: math.unit(5 + 2/12, "feet"),
  40216. default: true
  40217. },
  40218. ]
  40219. ))
  40220. characterMakers.push(() => makeCharacter(
  40221. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  40222. {
  40223. frontImp: {
  40224. height: math.unit(1 + 11/12, "feet"),
  40225. name: "Front (Imp)",
  40226. image: {
  40227. source: "./media/characters/max-kobold/front-imp.svg",
  40228. extra: 1238/1134,
  40229. bottom: 81/1319
  40230. }
  40231. },
  40232. backImp: {
  40233. height: math.unit(1 + 11/12, "feet"),
  40234. name: "Back (Imp)",
  40235. image: {
  40236. source: "./media/characters/max-kobold/back-imp.svg",
  40237. extra: 1334/1175,
  40238. bottom: 34/1368
  40239. }
  40240. },
  40241. frontDemi: {
  40242. height: math.unit(5 + 9/12, "feet"),
  40243. name: "Front (Demi)",
  40244. image: {
  40245. source: "./media/characters/max-kobold/front-demi.svg",
  40246. extra: 1715/1685,
  40247. bottom: 54/1769
  40248. }
  40249. },
  40250. backDemi: {
  40251. height: math.unit(5 + 9/12, "feet"),
  40252. name: "Back (Demi)",
  40253. image: {
  40254. source: "./media/characters/max-kobold/back-demi.svg",
  40255. extra: 1752/1729,
  40256. bottom: 41/1793
  40257. }
  40258. },
  40259. handImp: {
  40260. height: math.unit(0.45, "feet"),
  40261. name: "Hand (Imp)",
  40262. image: {
  40263. source: "./media/characters/max-kobold/hand.svg"
  40264. }
  40265. },
  40266. pawImp: {
  40267. height: math.unit(0.46, "feet"),
  40268. name: "Paw (Imp)",
  40269. image: {
  40270. source: "./media/characters/max-kobold/paw.svg"
  40271. }
  40272. },
  40273. handDemi: {
  40274. height: math.unit(0.80, "feet"),
  40275. name: "Hand (Demi)",
  40276. image: {
  40277. source: "./media/characters/max-kobold/hand.svg"
  40278. }
  40279. },
  40280. pawDemi: {
  40281. height: math.unit(1.1, "feet"),
  40282. name: "Paw (Demi)",
  40283. image: {
  40284. source: "./media/characters/max-kobold/paw.svg"
  40285. }
  40286. },
  40287. headImp: {
  40288. height: math.unit(1.33, "feet"),
  40289. name: "Head (Imp)",
  40290. image: {
  40291. source: "./media/characters/max-kobold/head-imp.svg"
  40292. }
  40293. },
  40294. mawImp: {
  40295. height: math.unit(0.75, "feet"),
  40296. name: "Maw (Imp)",
  40297. image: {
  40298. source: "./media/characters/max-kobold/maw-imp.svg"
  40299. }
  40300. },
  40301. mawDemi: {
  40302. height: math.unit(0.42, "feet"),
  40303. name: "Maw (Demi)",
  40304. image: {
  40305. source: "./media/characters/max-kobold/maw-demi.svg"
  40306. }
  40307. },
  40308. },
  40309. [
  40310. {
  40311. name: "Normal",
  40312. height: math.unit(1 + 11/12, "feet"),
  40313. default: true
  40314. },
  40315. ]
  40316. ))
  40317. characterMakers.push(() => makeCharacter(
  40318. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  40319. {
  40320. front: {
  40321. height: math.unit(7 + 5/12, "feet"),
  40322. name: "Front",
  40323. image: {
  40324. source: "./media/characters/carbon/front.svg",
  40325. extra: 1754/1689,
  40326. bottom: 65/1819
  40327. }
  40328. },
  40329. back: {
  40330. height: math.unit(7 + 5/12, "feet"),
  40331. name: "Back",
  40332. image: {
  40333. source: "./media/characters/carbon/back.svg",
  40334. extra: 1762/1695,
  40335. bottom: 24/1786
  40336. }
  40337. },
  40338. frontGigantamax: {
  40339. height: math.unit(150, "feet"),
  40340. name: "Front (Gigantamax)",
  40341. image: {
  40342. source: "./media/characters/carbon/front-gigantamax.svg",
  40343. extra: 1826/1669,
  40344. bottom: 59/1885
  40345. }
  40346. },
  40347. backGigantamax: {
  40348. height: math.unit(150, "feet"),
  40349. name: "Back (Gigantamax)",
  40350. image: {
  40351. source: "./media/characters/carbon/back-gigantamax.svg",
  40352. extra: 1796/1653,
  40353. bottom: 53/1849
  40354. }
  40355. },
  40356. maw: {
  40357. height: math.unit(0.48, "feet"),
  40358. name: "Maw",
  40359. image: {
  40360. source: "./media/characters/carbon/maw.svg"
  40361. }
  40362. },
  40363. mawGigantamax: {
  40364. height: math.unit(7.5, "feet"),
  40365. name: "Maw (Gigantamax)",
  40366. image: {
  40367. source: "./media/characters/carbon/maw-gigantamax.svg"
  40368. }
  40369. },
  40370. },
  40371. [
  40372. {
  40373. name: "Normal",
  40374. height: math.unit(7 + 5/12, "feet"),
  40375. default: true
  40376. },
  40377. ]
  40378. ))
  40379. characterMakers.push(() => makeCharacter(
  40380. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  40381. {
  40382. front: {
  40383. height: math.unit(6, "feet"),
  40384. name: "Front",
  40385. image: {
  40386. source: "./media/characters/maverick/front.svg",
  40387. extra: 1672/1661,
  40388. bottom: 85/1757
  40389. }
  40390. },
  40391. back: {
  40392. height: math.unit(6, "feet"),
  40393. name: "Back",
  40394. image: {
  40395. source: "./media/characters/maverick/back.svg",
  40396. extra: 1642/1631,
  40397. bottom: 38/1680
  40398. }
  40399. },
  40400. },
  40401. [
  40402. {
  40403. name: "Normal",
  40404. height: math.unit(6, "feet"),
  40405. default: true
  40406. },
  40407. ]
  40408. ))
  40409. characterMakers.push(() => makeCharacter(
  40410. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  40411. {
  40412. front: {
  40413. height: math.unit(15, "feet"),
  40414. weight: math.unit(615, "lb"),
  40415. name: "Front",
  40416. image: {
  40417. source: "./media/characters/grockle/front.svg",
  40418. extra: 1535/1427,
  40419. bottom: 56/1591
  40420. }
  40421. },
  40422. },
  40423. [
  40424. {
  40425. name: "Normal",
  40426. height: math.unit(15, "feet"),
  40427. default: true
  40428. },
  40429. {
  40430. name: "Large",
  40431. height: math.unit(150, "feet")
  40432. },
  40433. {
  40434. name: "Macro",
  40435. height: math.unit(1876, "feet")
  40436. },
  40437. {
  40438. name: "Mega Macro",
  40439. height: math.unit(121940, "feet")
  40440. },
  40441. {
  40442. name: "Giga Macro",
  40443. height: math.unit(750, "km")
  40444. },
  40445. {
  40446. name: "Tera Macro",
  40447. height: math.unit(750000, "km")
  40448. },
  40449. {
  40450. name: "Galactic",
  40451. height: math.unit(1.4e5, "km")
  40452. },
  40453. {
  40454. name: "Godlike",
  40455. height: math.unit(9.8e280, "galaxies")
  40456. },
  40457. ]
  40458. ))
  40459. characterMakers.push(() => makeCharacter(
  40460. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  40461. {
  40462. front: {
  40463. height: math.unit(11, "meters"),
  40464. weight: math.unit(20, "tonnes"),
  40465. name: "Front",
  40466. image: {
  40467. source: "./media/characters/alistair/front.svg",
  40468. extra: 1265/1009,
  40469. bottom: 93/1358
  40470. }
  40471. },
  40472. },
  40473. [
  40474. {
  40475. name: "Normal",
  40476. height: math.unit(11, "meters"),
  40477. default: true
  40478. },
  40479. ]
  40480. ))
  40481. characterMakers.push(() => makeCharacter(
  40482. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  40483. {
  40484. front: {
  40485. height: math.unit(5 + 8/12, "feet"),
  40486. name: "Front",
  40487. image: {
  40488. source: "./media/characters/haruka/front.svg",
  40489. extra: 2012/1952,
  40490. bottom: 0/2012
  40491. }
  40492. },
  40493. },
  40494. [
  40495. {
  40496. name: "Normal",
  40497. height: math.unit(5 + 8/12, "feet"),
  40498. default: true
  40499. },
  40500. ]
  40501. ))
  40502. characterMakers.push(() => makeCharacter(
  40503. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  40504. {
  40505. back: {
  40506. height: math.unit(9, "feet"),
  40507. name: "Back",
  40508. image: {
  40509. source: "./media/characters/vivian-sylveon/back.svg",
  40510. extra: 1853/1714,
  40511. bottom: 0/1853
  40512. }
  40513. },
  40514. hyper: {
  40515. height: math.unit(5.58, "feet"),
  40516. name: "Hyper",
  40517. preyCapacity: math.unit(2.80616218797, "m^3"),
  40518. image: {
  40519. source: "./media/characters/vivian-sylveon/hyper.svg",
  40520. extra: 999/676,
  40521. bottom: 697/1696
  40522. },
  40523. },
  40524. paw: {
  40525. height: math.unit(1.8, "feet"),
  40526. name: "Paw",
  40527. image: {
  40528. source: "./media/characters/vivian-sylveon/paw.svg"
  40529. }
  40530. },
  40531. danger: {
  40532. height: math.unit(7.5, "feet"),
  40533. name: "DANGER",
  40534. image: {
  40535. source: "./media/characters/vivian-sylveon/danger.svg"
  40536. }
  40537. },
  40538. },
  40539. [
  40540. {
  40541. name: "Normal",
  40542. height: math.unit(9, "feet"),
  40543. default: true
  40544. },
  40545. {
  40546. name: "Macro",
  40547. height: math.unit(500, "feet")
  40548. },
  40549. {
  40550. name: "Megamacro",
  40551. height: math.unit(600, "miles")
  40552. },
  40553. {
  40554. name: "Gigamacro",
  40555. height: math.unit(30000, "miles")
  40556. },
  40557. ]
  40558. ))
  40559. characterMakers.push(() => makeCharacter(
  40560. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  40561. {
  40562. anthro: {
  40563. height: math.unit(5 + 10/12, "feet"),
  40564. weight: math.unit(100, "lb"),
  40565. name: "Anthro",
  40566. image: {
  40567. source: "./media/characters/daiki/anthro.svg",
  40568. extra: 1115/1027,
  40569. bottom: 69/1184
  40570. }
  40571. },
  40572. feral: {
  40573. height: math.unit(200, "feet"),
  40574. name: "Feral",
  40575. image: {
  40576. source: "./media/characters/daiki/feral.svg",
  40577. extra: 1256/313,
  40578. bottom: 39/1295
  40579. }
  40580. },
  40581. feralHead: {
  40582. height: math.unit(171, "feet"),
  40583. name: "Feral Head",
  40584. image: {
  40585. source: "./media/characters/daiki/feral-head.svg"
  40586. }
  40587. },
  40588. manaDragon: {
  40589. height: math.unit(170, "meters"),
  40590. name: "Mana Dragon",
  40591. image: {
  40592. source: "./media/characters/daiki/mana-dragon.svg",
  40593. extra: 763/420,
  40594. bottom: 97/860
  40595. }
  40596. },
  40597. },
  40598. [
  40599. {
  40600. name: "Normal",
  40601. height: math.unit(5 + 10/12, "feet"),
  40602. default: true
  40603. },
  40604. ]
  40605. ))
  40606. characterMakers.push(() => makeCharacter(
  40607. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  40608. {
  40609. fullyEquippedFront: {
  40610. height: math.unit(3 + 1/12, "feet"),
  40611. weight: math.unit(24, "lb"),
  40612. name: "Fully Equipped (Front)",
  40613. image: {
  40614. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  40615. extra: 687/605,
  40616. bottom: 18/705
  40617. }
  40618. },
  40619. fullyEquippedBack: {
  40620. height: math.unit(3 + 1/12, "feet"),
  40621. weight: math.unit(24, "lb"),
  40622. name: "Fully Equipped (Back)",
  40623. image: {
  40624. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  40625. extra: 689/590,
  40626. bottom: 18/707
  40627. }
  40628. },
  40629. dailyWear: {
  40630. height: math.unit(3 + 1/12, "feet"),
  40631. weight: math.unit(24, "lb"),
  40632. name: "Daily Wear",
  40633. image: {
  40634. source: "./media/characters/tea-spot/daily-wear.svg",
  40635. extra: 701/620,
  40636. bottom: 21/722
  40637. }
  40638. },
  40639. maidWork: {
  40640. height: math.unit(3 + 1/12, "feet"),
  40641. weight: math.unit(24, "lb"),
  40642. name: "Maid Work",
  40643. image: {
  40644. source: "./media/characters/tea-spot/maid-work.svg",
  40645. extra: 693/609,
  40646. bottom: 15/708
  40647. }
  40648. },
  40649. },
  40650. [
  40651. {
  40652. name: "Normal",
  40653. height: math.unit(3 + 1/12, "feet"),
  40654. default: true
  40655. },
  40656. ]
  40657. ))
  40658. characterMakers.push(() => makeCharacter(
  40659. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  40660. {
  40661. front: {
  40662. height: math.unit(175, "cm"),
  40663. weight: math.unit(75, "kg"),
  40664. name: "Front",
  40665. image: {
  40666. source: "./media/characters/chee/front.svg",
  40667. extra: 1796/1740,
  40668. bottom: 40/1836
  40669. }
  40670. },
  40671. },
  40672. [
  40673. {
  40674. name: "Micro-Micro",
  40675. height: math.unit(1, "nm")
  40676. },
  40677. {
  40678. name: "Micro-erst",
  40679. height: math.unit(1, "micrometer")
  40680. },
  40681. {
  40682. name: "Micro-er",
  40683. height: math.unit(1, "cm")
  40684. },
  40685. {
  40686. name: "Normal",
  40687. height: math.unit(175, "cm"),
  40688. default: true
  40689. },
  40690. {
  40691. name: "Macro",
  40692. height: math.unit(100, "m")
  40693. },
  40694. {
  40695. name: "Macro-er",
  40696. height: math.unit(1, "km")
  40697. },
  40698. {
  40699. name: "Macro-erst",
  40700. height: math.unit(10, "km")
  40701. },
  40702. {
  40703. name: "Macro-Macro",
  40704. height: math.unit(100, "km")
  40705. },
  40706. ]
  40707. ))
  40708. characterMakers.push(() => makeCharacter(
  40709. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  40710. {
  40711. front: {
  40712. height: math.unit(11 + 9/12, "feet"),
  40713. weight: math.unit(935, "lb"),
  40714. name: "Front",
  40715. image: {
  40716. source: "./media/characters/kingsley/front.svg",
  40717. extra: 1803/1674,
  40718. bottom: 127/1930
  40719. }
  40720. },
  40721. frontNude: {
  40722. height: math.unit(11 + 9/12, "feet"),
  40723. weight: math.unit(935, "lb"),
  40724. name: "Front (Nude)",
  40725. image: {
  40726. source: "./media/characters/kingsley/front-nude.svg",
  40727. extra: 1803/1674,
  40728. bottom: 127/1930
  40729. }
  40730. },
  40731. },
  40732. [
  40733. {
  40734. name: "Normal",
  40735. height: math.unit(11 + 9/12, "feet"),
  40736. default: true
  40737. },
  40738. ]
  40739. ))
  40740. characterMakers.push(() => makeCharacter(
  40741. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  40742. {
  40743. side: {
  40744. height: math.unit(9, "feet"),
  40745. name: "Side",
  40746. image: {
  40747. source: "./media/characters/rymel/side.svg",
  40748. extra: 792/469,
  40749. bottom: 121/913
  40750. }
  40751. },
  40752. maw: {
  40753. height: math.unit(2.4, "meters"),
  40754. name: "Maw",
  40755. image: {
  40756. source: "./media/characters/rymel/maw.svg"
  40757. }
  40758. },
  40759. },
  40760. [
  40761. {
  40762. name: "House Drake",
  40763. height: math.unit(2, "feet")
  40764. },
  40765. {
  40766. name: "Reduced",
  40767. height: math.unit(4.5, "feet")
  40768. },
  40769. {
  40770. name: "Normal",
  40771. height: math.unit(9, "feet"),
  40772. default: true
  40773. },
  40774. ]
  40775. ))
  40776. characterMakers.push(() => makeCharacter(
  40777. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  40778. {
  40779. front: {
  40780. height: math.unit(1.74, "meters"),
  40781. weight: math.unit(55, "kg"),
  40782. name: "Front",
  40783. image: {
  40784. source: "./media/characters/rubus/front.svg",
  40785. extra: 1894/1742,
  40786. bottom: 44/1938
  40787. }
  40788. },
  40789. },
  40790. [
  40791. {
  40792. name: "Normal",
  40793. height: math.unit(1.74, "meters"),
  40794. default: true
  40795. },
  40796. ]
  40797. ))
  40798. characterMakers.push(() => makeCharacter(
  40799. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  40800. {
  40801. front: {
  40802. height: math.unit(5 + 2/12, "feet"),
  40803. weight: math.unit(112, "lb"),
  40804. name: "Front",
  40805. image: {
  40806. source: "./media/characters/cassie-kingston/front.svg",
  40807. extra: 1438/1390,
  40808. bottom: 47/1485
  40809. }
  40810. },
  40811. },
  40812. [
  40813. {
  40814. name: "Normal",
  40815. height: math.unit(5 + 2/12, "feet"),
  40816. default: true
  40817. },
  40818. {
  40819. name: "Macro",
  40820. height: math.unit(128, "feet")
  40821. },
  40822. {
  40823. name: "Megamacro",
  40824. height: math.unit(2.56, "miles")
  40825. },
  40826. ]
  40827. ))
  40828. characterMakers.push(() => makeCharacter(
  40829. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  40830. {
  40831. front: {
  40832. height: math.unit(7, "feet"),
  40833. name: "Front",
  40834. image: {
  40835. source: "./media/characters/fox/front.svg",
  40836. extra: 1798/1703,
  40837. bottom: 55/1853
  40838. }
  40839. },
  40840. back: {
  40841. height: math.unit(7, "feet"),
  40842. name: "Back",
  40843. image: {
  40844. source: "./media/characters/fox/back.svg",
  40845. extra: 1748/1649,
  40846. bottom: 32/1780
  40847. }
  40848. },
  40849. head: {
  40850. height: math.unit(1.95, "feet"),
  40851. name: "Head",
  40852. image: {
  40853. source: "./media/characters/fox/head.svg"
  40854. }
  40855. },
  40856. dick: {
  40857. height: math.unit(1.33, "feet"),
  40858. name: "Dick",
  40859. image: {
  40860. source: "./media/characters/fox/dick.svg"
  40861. }
  40862. },
  40863. foot: {
  40864. height: math.unit(1, "feet"),
  40865. name: "Foot",
  40866. image: {
  40867. source: "./media/characters/fox/foot.svg"
  40868. }
  40869. },
  40870. paw: {
  40871. height: math.unit(0.92, "feet"),
  40872. name: "Paw",
  40873. image: {
  40874. source: "./media/characters/fox/paw.svg"
  40875. }
  40876. },
  40877. },
  40878. [
  40879. {
  40880. name: "Small",
  40881. height: math.unit(3, "inches")
  40882. },
  40883. {
  40884. name: "\"Realistic\"",
  40885. height: math.unit(7, "feet")
  40886. },
  40887. {
  40888. name: "Normal",
  40889. height: math.unit(150, "feet"),
  40890. default: true
  40891. },
  40892. {
  40893. name: "BIG",
  40894. height: math.unit(1200, "feet")
  40895. },
  40896. {
  40897. name: "👀",
  40898. height: math.unit(5, "miles")
  40899. },
  40900. {
  40901. name: "👀👀👀",
  40902. height: math.unit(64, "miles")
  40903. },
  40904. ]
  40905. ))
  40906. characterMakers.push(() => makeCharacter(
  40907. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  40908. {
  40909. front: {
  40910. height: math.unit(625, "feet"),
  40911. name: "Front",
  40912. image: {
  40913. source: "./media/characters/asonja-rossa/front.svg",
  40914. extra: 1833/1686,
  40915. bottom: 24/1857
  40916. }
  40917. },
  40918. back: {
  40919. height: math.unit(625, "feet"),
  40920. name: "Back",
  40921. image: {
  40922. source: "./media/characters/asonja-rossa/back.svg",
  40923. extra: 1852/1753,
  40924. bottom: 26/1878
  40925. }
  40926. },
  40927. },
  40928. [
  40929. {
  40930. name: "Macro",
  40931. height: math.unit(625, "feet"),
  40932. default: true
  40933. },
  40934. ]
  40935. ))
  40936. characterMakers.push(() => makeCharacter(
  40937. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  40938. {
  40939. side: {
  40940. height: math.unit(8, "feet"),
  40941. name: "Side",
  40942. image: {
  40943. source: "./media/characters/rezukii/side.svg",
  40944. extra: 979/542,
  40945. bottom: 87/1066
  40946. }
  40947. },
  40948. sitting: {
  40949. height: math.unit(14.6, "feet"),
  40950. name: "Sitting",
  40951. image: {
  40952. source: "./media/characters/rezukii/sitting.svg",
  40953. extra: 1023/813,
  40954. bottom: 45/1068
  40955. }
  40956. },
  40957. },
  40958. [
  40959. {
  40960. name: "Tiny",
  40961. height: math.unit(2, "feet")
  40962. },
  40963. {
  40964. name: "Smol",
  40965. height: math.unit(4, "feet")
  40966. },
  40967. {
  40968. name: "Normal",
  40969. height: math.unit(8, "feet"),
  40970. default: true
  40971. },
  40972. {
  40973. name: "Big",
  40974. height: math.unit(12, "feet")
  40975. },
  40976. {
  40977. name: "Macro",
  40978. height: math.unit(30, "feet")
  40979. },
  40980. ]
  40981. ))
  40982. characterMakers.push(() => makeCharacter(
  40983. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  40984. {
  40985. front: {
  40986. height: math.unit(14, "feet"),
  40987. weight: math.unit(9.5, "tonnes"),
  40988. name: "Front",
  40989. image: {
  40990. source: "./media/characters/dawnheart/front.svg",
  40991. extra: 2792/2675,
  40992. bottom: 64/2856
  40993. }
  40994. },
  40995. },
  40996. [
  40997. {
  40998. name: "Normal",
  40999. height: math.unit(14, "feet"),
  41000. default: true
  41001. },
  41002. ]
  41003. ))
  41004. characterMakers.push(() => makeCharacter(
  41005. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  41006. {
  41007. front: {
  41008. height: math.unit(1.7, "m"),
  41009. name: "Front",
  41010. image: {
  41011. source: "./media/characters/gladi/front.svg",
  41012. extra: 1460/1362,
  41013. bottom: 19/1479
  41014. }
  41015. },
  41016. back: {
  41017. height: math.unit(1.7, "m"),
  41018. name: "Back",
  41019. image: {
  41020. source: "./media/characters/gladi/back.svg",
  41021. extra: 1459/1357,
  41022. bottom: 12/1471
  41023. }
  41024. },
  41025. feral: {
  41026. height: math.unit(2.05, "m"),
  41027. name: "Feral",
  41028. image: {
  41029. source: "./media/characters/gladi/feral.svg",
  41030. extra: 821/557,
  41031. bottom: 91/912
  41032. }
  41033. },
  41034. },
  41035. [
  41036. {
  41037. name: "Shortest",
  41038. height: math.unit(70, "cm")
  41039. },
  41040. {
  41041. name: "Normal",
  41042. height: math.unit(1.7, "m")
  41043. },
  41044. {
  41045. name: "Macro",
  41046. height: math.unit(10, "m"),
  41047. default: true
  41048. },
  41049. {
  41050. name: "Tallest",
  41051. height: math.unit(200, "m")
  41052. },
  41053. ]
  41054. ))
  41055. characterMakers.push(() => makeCharacter(
  41056. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  41057. {
  41058. front: {
  41059. height: math.unit(5 + 7/12, "feet"),
  41060. weight: math.unit(2, "tons"),
  41061. name: "Front",
  41062. image: {
  41063. source: "./media/characters/erdno/front.svg",
  41064. extra: 1234/1129,
  41065. bottom: 35/1269
  41066. }
  41067. },
  41068. angled: {
  41069. height: math.unit(5 + 7/12, "feet"),
  41070. weight: math.unit(2, "tons"),
  41071. name: "Angled",
  41072. image: {
  41073. source: "./media/characters/erdno/angled.svg",
  41074. extra: 1185/1139,
  41075. bottom: 36/1221
  41076. }
  41077. },
  41078. side: {
  41079. height: math.unit(5 + 7/12, "feet"),
  41080. weight: math.unit(2, "tons"),
  41081. name: "Side",
  41082. image: {
  41083. source: "./media/characters/erdno/side.svg",
  41084. extra: 1191/1144,
  41085. bottom: 40/1231
  41086. }
  41087. },
  41088. back: {
  41089. height: math.unit(5 + 7/12, "feet"),
  41090. weight: math.unit(2, "tons"),
  41091. name: "Back",
  41092. image: {
  41093. source: "./media/characters/erdno/back.svg",
  41094. extra: 1202/1146,
  41095. bottom: 17/1219
  41096. }
  41097. },
  41098. frontNsfw: {
  41099. height: math.unit(5 + 7/12, "feet"),
  41100. weight: math.unit(2, "tons"),
  41101. name: "Front (NSFW)",
  41102. image: {
  41103. source: "./media/characters/erdno/front-nsfw.svg",
  41104. extra: 1234/1129,
  41105. bottom: 35/1269
  41106. }
  41107. },
  41108. angledNsfw: {
  41109. height: math.unit(5 + 7/12, "feet"),
  41110. weight: math.unit(2, "tons"),
  41111. name: "Angled (NSFW)",
  41112. image: {
  41113. source: "./media/characters/erdno/angled-nsfw.svg",
  41114. extra: 1185/1139,
  41115. bottom: 36/1221
  41116. }
  41117. },
  41118. sideNsfw: {
  41119. height: math.unit(5 + 7/12, "feet"),
  41120. weight: math.unit(2, "tons"),
  41121. name: "Side (NSFW)",
  41122. image: {
  41123. source: "./media/characters/erdno/side-nsfw.svg",
  41124. extra: 1191/1144,
  41125. bottom: 40/1231
  41126. }
  41127. },
  41128. backNsfw: {
  41129. height: math.unit(5 + 7/12, "feet"),
  41130. weight: math.unit(2, "tons"),
  41131. name: "Back (NSFW)",
  41132. image: {
  41133. source: "./media/characters/erdno/back-nsfw.svg",
  41134. extra: 1202/1146,
  41135. bottom: 17/1219
  41136. }
  41137. },
  41138. frontHyper: {
  41139. height: math.unit(5 + 7/12, "feet"),
  41140. weight: math.unit(2, "tons"),
  41141. name: "Front (Hyper)",
  41142. image: {
  41143. source: "./media/characters/erdno/front-hyper.svg",
  41144. extra: 1298/1136,
  41145. bottom: 35/1333
  41146. }
  41147. },
  41148. },
  41149. [
  41150. {
  41151. name: "Normal",
  41152. height: math.unit(5 + 7/12, "feet"),
  41153. default: true
  41154. },
  41155. {
  41156. name: "Big",
  41157. height: math.unit(5.7, "meters")
  41158. },
  41159. {
  41160. name: "Macro",
  41161. height: math.unit(5.7, "kilometers")
  41162. },
  41163. {
  41164. name: "Megamacro",
  41165. height: math.unit(5.7, "earths")
  41166. },
  41167. ]
  41168. ))
  41169. characterMakers.push(() => makeCharacter(
  41170. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  41171. {
  41172. front: {
  41173. height: math.unit(5 + 10/12, "feet"),
  41174. weight: math.unit(150, "lb"),
  41175. name: "Front",
  41176. image: {
  41177. source: "./media/characters/jamie/front.svg",
  41178. extra: 1908/1768,
  41179. bottom: 19/1927
  41180. }
  41181. },
  41182. },
  41183. [
  41184. {
  41185. name: "Minimum",
  41186. height: math.unit(2, "cm")
  41187. },
  41188. {
  41189. name: "Micro",
  41190. height: math.unit(3, "inches")
  41191. },
  41192. {
  41193. name: "Normal",
  41194. height: math.unit(5 + 10/12, "feet"),
  41195. default: true
  41196. },
  41197. {
  41198. name: "Macro",
  41199. height: math.unit(150, "feet")
  41200. },
  41201. {
  41202. name: "Megamacro",
  41203. height: math.unit(10000, "m")
  41204. },
  41205. ]
  41206. ))
  41207. characterMakers.push(() => makeCharacter(
  41208. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  41209. {
  41210. front: {
  41211. height: math.unit(2, "meters"),
  41212. weight: math.unit(100, "kg"),
  41213. name: "Front",
  41214. image: {
  41215. source: "./media/characters/shiron/front.svg",
  41216. extra: 2103/1985,
  41217. bottom: 98/2201
  41218. }
  41219. },
  41220. back: {
  41221. height: math.unit(2, "meters"),
  41222. weight: math.unit(100, "kg"),
  41223. name: "Back",
  41224. image: {
  41225. source: "./media/characters/shiron/back.svg",
  41226. extra: 2110/2015,
  41227. bottom: 89/2199
  41228. }
  41229. },
  41230. hand: {
  41231. height: math.unit(0.96, "feet"),
  41232. name: "Hand",
  41233. image: {
  41234. source: "./media/characters/shiron/hand.svg"
  41235. }
  41236. },
  41237. foot: {
  41238. height: math.unit(1.464, "feet"),
  41239. name: "Foot",
  41240. image: {
  41241. source: "./media/characters/shiron/foot.svg"
  41242. }
  41243. },
  41244. },
  41245. [
  41246. {
  41247. name: "Normal",
  41248. height: math.unit(2, "meters")
  41249. },
  41250. {
  41251. name: "Macro",
  41252. height: math.unit(500, "meters"),
  41253. default: true
  41254. },
  41255. {
  41256. name: "Megamacro",
  41257. height: math.unit(20, "km")
  41258. },
  41259. ]
  41260. ))
  41261. characterMakers.push(() => makeCharacter(
  41262. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  41263. {
  41264. front: {
  41265. height: math.unit(6, "feet"),
  41266. name: "Front",
  41267. image: {
  41268. source: "./media/characters/sam/front.svg",
  41269. extra: 849/826,
  41270. bottom: 19/868
  41271. }
  41272. },
  41273. },
  41274. [
  41275. {
  41276. name: "Normal",
  41277. height: math.unit(6, "feet"),
  41278. default: true
  41279. },
  41280. ]
  41281. ))
  41282. characterMakers.push(() => makeCharacter(
  41283. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  41284. {
  41285. front: {
  41286. height: math.unit(8 + 4/12, "feet"),
  41287. weight: math.unit(122, "kg"),
  41288. name: "Front",
  41289. image: {
  41290. source: "./media/characters/namori-kurogawa/front.svg",
  41291. extra: 1894/1576,
  41292. bottom: 34/1928
  41293. }
  41294. },
  41295. },
  41296. [
  41297. {
  41298. name: "Normal",
  41299. height: math.unit(8 + 4/12, "feet"),
  41300. default: true
  41301. },
  41302. ]
  41303. ))
  41304. characterMakers.push(() => makeCharacter(
  41305. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  41306. {
  41307. front: {
  41308. height: math.unit(9, "feet"),
  41309. weight: math.unit(621, "lb"),
  41310. name: "Front",
  41311. image: {
  41312. source: "./media/characters/unmru/front.svg",
  41313. extra: 1853/1747,
  41314. bottom: 73/1926
  41315. }
  41316. },
  41317. side: {
  41318. height: math.unit(9, "feet"),
  41319. weight: math.unit(621, "lb"),
  41320. name: "Side",
  41321. image: {
  41322. source: "./media/characters/unmru/side.svg",
  41323. extra: 1781/1671,
  41324. bottom: 127/1908
  41325. }
  41326. },
  41327. back: {
  41328. height: math.unit(9, "feet"),
  41329. weight: math.unit(621, "lb"),
  41330. name: "Back",
  41331. image: {
  41332. source: "./media/characters/unmru/back.svg",
  41333. extra: 1894/1765,
  41334. bottom: 75/1969
  41335. }
  41336. },
  41337. dick: {
  41338. height: math.unit(3, "feet"),
  41339. weight: math.unit(35, "lb"),
  41340. name: "Dick",
  41341. image: {
  41342. source: "./media/characters/unmru/dick.svg"
  41343. }
  41344. },
  41345. },
  41346. [
  41347. {
  41348. name: "Normal",
  41349. height: math.unit(9, "feet")
  41350. },
  41351. {
  41352. name: "Natural",
  41353. height: math.unit(27, "feet"),
  41354. default: true
  41355. },
  41356. {
  41357. name: "Giant",
  41358. height: math.unit(90, "feet")
  41359. },
  41360. {
  41361. name: "Kaiju",
  41362. height: math.unit(270, "feet")
  41363. },
  41364. {
  41365. name: "Macro",
  41366. height: math.unit(900, "feet")
  41367. },
  41368. {
  41369. name: "Macro+",
  41370. height: math.unit(2700, "feet")
  41371. },
  41372. {
  41373. name: "Megamacro",
  41374. height: math.unit(9000, "feet")
  41375. },
  41376. {
  41377. name: "City-Crushing",
  41378. height: math.unit(27000, "feet")
  41379. },
  41380. {
  41381. name: "Mountain-Mashing",
  41382. height: math.unit(90000, "feet")
  41383. },
  41384. {
  41385. name: "Earth-Eclipsing",
  41386. height: math.unit(2.7e8, "feet")
  41387. },
  41388. {
  41389. name: "Sol-Swallowing",
  41390. height: math.unit(9e10, "feet")
  41391. },
  41392. {
  41393. name: "Majoris-Munching",
  41394. height: math.unit(2.7e13, "feet")
  41395. },
  41396. ]
  41397. ))
  41398. characterMakers.push(() => makeCharacter(
  41399. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  41400. {
  41401. front: {
  41402. height: math.unit(1, "inch"),
  41403. name: "Front",
  41404. image: {
  41405. source: "./media/characters/squeaks-mouse/front.svg",
  41406. extra: 352/308,
  41407. bottom: 25/377
  41408. }
  41409. },
  41410. },
  41411. [
  41412. {
  41413. name: "Micro",
  41414. height: math.unit(1, "inch"),
  41415. default: true
  41416. },
  41417. ]
  41418. ))
  41419. characterMakers.push(() => makeCharacter(
  41420. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  41421. {
  41422. side: {
  41423. height: math.unit(35, "feet"),
  41424. name: "Side",
  41425. image: {
  41426. source: "./media/characters/sayko/side.svg",
  41427. extra: 1697/1021,
  41428. bottom: 82/1779
  41429. }
  41430. },
  41431. head: {
  41432. height: math.unit(16, "feet"),
  41433. name: "Head",
  41434. image: {
  41435. source: "./media/characters/sayko/head.svg"
  41436. }
  41437. },
  41438. forepaw: {
  41439. height: math.unit(7.85, "feet"),
  41440. name: "Forepaw",
  41441. image: {
  41442. source: "./media/characters/sayko/forepaw.svg"
  41443. }
  41444. },
  41445. hindpaw: {
  41446. height: math.unit(8.8, "feet"),
  41447. name: "Hindpaw",
  41448. image: {
  41449. source: "./media/characters/sayko/hindpaw.svg"
  41450. }
  41451. },
  41452. },
  41453. [
  41454. {
  41455. name: "Normal",
  41456. height: math.unit(35, "feet"),
  41457. default: true
  41458. },
  41459. {
  41460. name: "Colossus",
  41461. height: math.unit(100, "meters")
  41462. },
  41463. {
  41464. name: "\"Small\" Deity",
  41465. height: math.unit(1, "km")
  41466. },
  41467. {
  41468. name: "\"Large\" Deity",
  41469. height: math.unit(15, "km")
  41470. },
  41471. ]
  41472. ))
  41473. characterMakers.push(() => makeCharacter(
  41474. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  41475. {
  41476. front: {
  41477. height: math.unit(6, "feet"),
  41478. weight: math.unit(250, "lb"),
  41479. name: "Front",
  41480. image: {
  41481. source: "./media/characters/mukiro/front.svg",
  41482. extra: 1368/1310,
  41483. bottom: 34/1402
  41484. }
  41485. },
  41486. },
  41487. [
  41488. {
  41489. name: "Normal",
  41490. height: math.unit(6, "feet"),
  41491. default: true
  41492. },
  41493. ]
  41494. ))
  41495. characterMakers.push(() => makeCharacter(
  41496. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  41497. {
  41498. front: {
  41499. height: math.unit(12 + 4/12, "feet"),
  41500. name: "Front",
  41501. image: {
  41502. source: "./media/characters/zeph-the-tiger-god/front.svg",
  41503. extra: 1346/1311,
  41504. bottom: 65/1411
  41505. }
  41506. },
  41507. },
  41508. [
  41509. {
  41510. name: "Base",
  41511. height: math.unit(12 + 4/12, "feet"),
  41512. default: true
  41513. },
  41514. {
  41515. name: "Macro",
  41516. height: math.unit(150, "feet")
  41517. },
  41518. {
  41519. name: "Mega",
  41520. height: math.unit(2, "miles")
  41521. },
  41522. {
  41523. name: "Demi God",
  41524. height: math.unit(4, "AU")
  41525. },
  41526. {
  41527. name: "God Size",
  41528. height: math.unit(1, "universe")
  41529. },
  41530. ]
  41531. ))
  41532. characterMakers.push(() => makeCharacter(
  41533. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  41534. {
  41535. front: {
  41536. height: math.unit(3 + 3/12, "feet"),
  41537. weight: math.unit(88, "lb"),
  41538. name: "Front",
  41539. image: {
  41540. source: "./media/characters/trey/front.svg",
  41541. extra: 1815/1509,
  41542. bottom: 60/1875
  41543. }
  41544. },
  41545. },
  41546. [
  41547. {
  41548. name: "Normal",
  41549. height: math.unit(3 + 3/12, "feet"),
  41550. default: true
  41551. },
  41552. ]
  41553. ))
  41554. characterMakers.push(() => makeCharacter(
  41555. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  41556. {
  41557. front: {
  41558. height: math.unit(4, "meters"),
  41559. name: "Front",
  41560. image: {
  41561. source: "./media/characters/adelonda/front.svg",
  41562. extra: 1077/982,
  41563. bottom: 39/1116
  41564. }
  41565. },
  41566. back: {
  41567. height: math.unit(4, "meters"),
  41568. name: "Back",
  41569. image: {
  41570. source: "./media/characters/adelonda/back.svg",
  41571. extra: 1105/1003,
  41572. bottom: 25/1130
  41573. }
  41574. },
  41575. feral: {
  41576. height: math.unit(40/1.5, "meters"),
  41577. name: "Feral",
  41578. image: {
  41579. source: "./media/characters/adelonda/feral.svg",
  41580. extra: 597/271,
  41581. bottom: 387/984
  41582. }
  41583. },
  41584. },
  41585. [
  41586. {
  41587. name: "Normal",
  41588. height: math.unit(4, "meters"),
  41589. default: true
  41590. },
  41591. ]
  41592. ))
  41593. characterMakers.push(() => makeCharacter(
  41594. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  41595. {
  41596. front: {
  41597. height: math.unit(8 + 4/12, "feet"),
  41598. weight: math.unit(670, "lb"),
  41599. name: "Front",
  41600. image: {
  41601. source: "./media/characters/acadiel/front.svg",
  41602. extra: 1901/1595,
  41603. bottom: 142/2043
  41604. }
  41605. },
  41606. },
  41607. [
  41608. {
  41609. name: "Normal",
  41610. height: math.unit(8 + 4/12, "feet"),
  41611. default: true
  41612. },
  41613. {
  41614. name: "Macro",
  41615. height: math.unit(200, "feet")
  41616. },
  41617. ]
  41618. ))
  41619. characterMakers.push(() => makeCharacter(
  41620. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  41621. {
  41622. front: {
  41623. height: math.unit(6 + 2/12, "feet"),
  41624. weight: math.unit(185, "lb"),
  41625. name: "Front",
  41626. image: {
  41627. source: "./media/characters/kayne-ein/front.svg",
  41628. extra: 1780/1560,
  41629. bottom: 81/1861
  41630. }
  41631. },
  41632. },
  41633. [
  41634. {
  41635. name: "Normal",
  41636. height: math.unit(6 + 2/12, "feet"),
  41637. default: true
  41638. },
  41639. {
  41640. name: "Transformation Stage",
  41641. height: math.unit(15, "feet")
  41642. },
  41643. {
  41644. name: "Macro",
  41645. height: math.unit(150, "feet")
  41646. },
  41647. {
  41648. name: "Earth's Shadow",
  41649. height: math.unit(6200, "miles")
  41650. },
  41651. {
  41652. name: "Universal Demon",
  41653. height: math.unit(28e9, "parsecs")
  41654. },
  41655. {
  41656. name: "Multiverse God",
  41657. height: math.unit(3, "multiverses")
  41658. },
  41659. ]
  41660. ))
  41661. characterMakers.push(() => makeCharacter(
  41662. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  41663. {
  41664. front: {
  41665. height: math.unit(5 + 5/12, "feet"),
  41666. name: "Front",
  41667. image: {
  41668. source: "./media/characters/fawn/front.svg",
  41669. extra: 1873/1731,
  41670. bottom: 95/1968
  41671. }
  41672. },
  41673. back: {
  41674. height: math.unit(5 + 5/12, "feet"),
  41675. name: "Back",
  41676. image: {
  41677. source: "./media/characters/fawn/back.svg",
  41678. extra: 1813/1700,
  41679. bottom: 14/1827
  41680. }
  41681. },
  41682. hoof: {
  41683. height: math.unit(1.45, "feet"),
  41684. name: "Hoof",
  41685. image: {
  41686. source: "./media/characters/fawn/hoof.svg"
  41687. }
  41688. },
  41689. },
  41690. [
  41691. {
  41692. name: "Normal",
  41693. height: math.unit(5 + 5/12, "feet"),
  41694. default: true
  41695. },
  41696. ]
  41697. ))
  41698. characterMakers.push(() => makeCharacter(
  41699. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  41700. {
  41701. front: {
  41702. height: math.unit(2 + 5/12, "feet"),
  41703. name: "Front",
  41704. image: {
  41705. source: "./media/characters/orion/front.svg",
  41706. extra: 1366/1304,
  41707. bottom: 43/1409
  41708. }
  41709. },
  41710. paw: {
  41711. height: math.unit(0.52, "feet"),
  41712. name: "Paw",
  41713. image: {
  41714. source: "./media/characters/orion/paw.svg"
  41715. }
  41716. },
  41717. },
  41718. [
  41719. {
  41720. name: "Normal",
  41721. height: math.unit(2 + 5/12, "feet"),
  41722. default: true
  41723. },
  41724. ]
  41725. ))
  41726. characterMakers.push(() => makeCharacter(
  41727. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  41728. {
  41729. front: {
  41730. height: math.unit(5 + 10/12, "feet"),
  41731. name: "Front",
  41732. image: {
  41733. source: "./media/characters/vera/front.svg",
  41734. extra: 1680/1575,
  41735. bottom: 49/1729
  41736. }
  41737. },
  41738. back: {
  41739. height: math.unit(5 + 10/12, "feet"),
  41740. name: "Back",
  41741. image: {
  41742. source: "./media/characters/vera/back.svg",
  41743. extra: 1700/1588,
  41744. bottom: 18/1718
  41745. }
  41746. },
  41747. arcanine: {
  41748. height: math.unit(6 + 8/12, "feet"),
  41749. name: "Arcanine",
  41750. image: {
  41751. source: "./media/characters/vera/arcanine.svg",
  41752. extra: 1590/1511,
  41753. bottom: 71/1661
  41754. }
  41755. },
  41756. maw: {
  41757. height: math.unit(0.82, "feet"),
  41758. name: "Maw",
  41759. image: {
  41760. source: "./media/characters/vera/maw.svg"
  41761. }
  41762. },
  41763. mawArcanine: {
  41764. height: math.unit(0.97, "feet"),
  41765. name: "Maw (Arcanine)",
  41766. image: {
  41767. source: "./media/characters/vera/maw-arcanine.svg"
  41768. }
  41769. },
  41770. paw: {
  41771. height: math.unit(0.75, "feet"),
  41772. name: "Paw",
  41773. image: {
  41774. source: "./media/characters/vera/paw.svg"
  41775. }
  41776. },
  41777. pawprint: {
  41778. height: math.unit(0.52, "feet"),
  41779. name: "Pawprint",
  41780. image: {
  41781. source: "./media/characters/vera/pawprint.svg"
  41782. }
  41783. },
  41784. },
  41785. [
  41786. {
  41787. name: "Normal",
  41788. height: math.unit(5 + 10/12, "feet"),
  41789. default: true
  41790. },
  41791. {
  41792. name: "Macro",
  41793. height: math.unit(75, "feet")
  41794. },
  41795. ]
  41796. ))
  41797. characterMakers.push(() => makeCharacter(
  41798. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  41799. {
  41800. front: {
  41801. height: math.unit(4, "feet"),
  41802. weight: math.unit(40, "lb"),
  41803. name: "Front",
  41804. image: {
  41805. source: "./media/characters/orvan-rabbit/front.svg",
  41806. extra: 1896/1642,
  41807. bottom: 29/1925
  41808. }
  41809. },
  41810. },
  41811. [
  41812. {
  41813. name: "Normal",
  41814. height: math.unit(4, "feet"),
  41815. default: true
  41816. },
  41817. ]
  41818. ))
  41819. characterMakers.push(() => makeCharacter(
  41820. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  41821. {
  41822. front: {
  41823. height: math.unit(6, "feet"),
  41824. weight: math.unit(168, "lb"),
  41825. name: "Front",
  41826. image: {
  41827. source: "./media/characters/lisa/front.svg",
  41828. extra: 2065/1867,
  41829. bottom: 46/2111
  41830. }
  41831. },
  41832. back: {
  41833. height: math.unit(6, "feet"),
  41834. weight: math.unit(168, "lb"),
  41835. name: "Back",
  41836. image: {
  41837. source: "./media/characters/lisa/back.svg",
  41838. extra: 1982/1838,
  41839. bottom: 29/2011
  41840. }
  41841. },
  41842. maw: {
  41843. height: math.unit(0.81, "feet"),
  41844. name: "Maw",
  41845. image: {
  41846. source: "./media/characters/lisa/maw.svg"
  41847. }
  41848. },
  41849. paw: {
  41850. height: math.unit(0.9, "feet"),
  41851. name: "Paw",
  41852. image: {
  41853. source: "./media/characters/lisa/paw.svg"
  41854. }
  41855. },
  41856. caribousune: {
  41857. height: math.unit(7 + 2/12, "feet"),
  41858. weight: math.unit(268, "lb"),
  41859. name: "Caribousune",
  41860. image: {
  41861. source: "./media/characters/lisa/caribousune.svg",
  41862. extra: 1843/1633,
  41863. bottom: 29/1872
  41864. }
  41865. },
  41866. frontCaribousune: {
  41867. height: math.unit(7 + 2/12, "feet"),
  41868. weight: math.unit(268, "lb"),
  41869. name: "Front (Caribousune)",
  41870. image: {
  41871. source: "./media/characters/lisa/front-caribousune.svg",
  41872. extra: 1818/1638,
  41873. bottom: 52/1870
  41874. }
  41875. },
  41876. sideCaribousune: {
  41877. height: math.unit(7 + 2/12, "feet"),
  41878. weight: math.unit(268, "lb"),
  41879. name: "Side (Caribousune)",
  41880. image: {
  41881. source: "./media/characters/lisa/side-caribousune.svg",
  41882. extra: 1851/1635,
  41883. bottom: 16/1867
  41884. }
  41885. },
  41886. backCaribousune: {
  41887. height: math.unit(7 + 2/12, "feet"),
  41888. weight: math.unit(268, "lb"),
  41889. name: "Back (Caribousune)",
  41890. image: {
  41891. source: "./media/characters/lisa/back-caribousune.svg",
  41892. extra: 1801/1604,
  41893. bottom: 44/1845
  41894. }
  41895. },
  41896. caribou: {
  41897. height: math.unit(7 + 2/12, "feet"),
  41898. weight: math.unit(268, "lb"),
  41899. name: "Caribou",
  41900. image: {
  41901. source: "./media/characters/lisa/caribou.svg",
  41902. extra: 1843/1633,
  41903. bottom: 29/1872
  41904. }
  41905. },
  41906. frontCaribou: {
  41907. height: math.unit(7 + 2/12, "feet"),
  41908. weight: math.unit(268, "lb"),
  41909. name: "Front (Caribou)",
  41910. image: {
  41911. source: "./media/characters/lisa/front-caribou.svg",
  41912. extra: 1818/1638,
  41913. bottom: 52/1870
  41914. }
  41915. },
  41916. sideCaribou: {
  41917. height: math.unit(7 + 2/12, "feet"),
  41918. weight: math.unit(268, "lb"),
  41919. name: "Side (Caribou)",
  41920. image: {
  41921. source: "./media/characters/lisa/side-caribou.svg",
  41922. extra: 1851/1635,
  41923. bottom: 16/1867
  41924. }
  41925. },
  41926. backCaribou: {
  41927. height: math.unit(7 + 2/12, "feet"),
  41928. weight: math.unit(268, "lb"),
  41929. name: "Back (Caribou)",
  41930. image: {
  41931. source: "./media/characters/lisa/back-caribou.svg",
  41932. extra: 1801/1604,
  41933. bottom: 44/1845
  41934. }
  41935. },
  41936. mawCaribou: {
  41937. height: math.unit(1.45, "feet"),
  41938. name: "Maw (Caribou)",
  41939. image: {
  41940. source: "./media/characters/lisa/maw-caribou.svg"
  41941. }
  41942. },
  41943. mawCaribousune: {
  41944. height: math.unit(1.45, "feet"),
  41945. name: "Maw (Caribousune)",
  41946. image: {
  41947. source: "./media/characters/lisa/maw-caribousune.svg"
  41948. }
  41949. },
  41950. pawCaribousune: {
  41951. height: math.unit(1.61, "feet"),
  41952. name: "Paw (Caribou)",
  41953. image: {
  41954. source: "./media/characters/lisa/paw-caribousune.svg"
  41955. }
  41956. },
  41957. },
  41958. [
  41959. {
  41960. name: "Normal",
  41961. height: math.unit(6, "feet")
  41962. },
  41963. {
  41964. name: "God Size",
  41965. height: math.unit(72, "feet"),
  41966. default: true
  41967. },
  41968. {
  41969. name: "Towering",
  41970. height: math.unit(288, "feet")
  41971. },
  41972. {
  41973. name: "City Size",
  41974. height: math.unit(48384, "feet")
  41975. },
  41976. {
  41977. name: "Continental",
  41978. height: math.unit(4200, "miles")
  41979. },
  41980. {
  41981. name: "Planet Eater",
  41982. height: math.unit(42, "earths")
  41983. },
  41984. {
  41985. name: "Star Swallower",
  41986. height: math.unit(42, "solarradii")
  41987. },
  41988. {
  41989. name: "System Swallower",
  41990. height: math.unit(84000, "AU")
  41991. },
  41992. {
  41993. name: "Galaxy Gobbler",
  41994. height: math.unit(42, "galaxies")
  41995. },
  41996. {
  41997. name: "Universe Devourer",
  41998. height: math.unit(42, "universes")
  41999. },
  42000. {
  42001. name: "Multiverse Muncher",
  42002. height: math.unit(42, "multiverses")
  42003. },
  42004. ]
  42005. ))
  42006. characterMakers.push(() => makeCharacter(
  42007. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  42008. {
  42009. front: {
  42010. height: math.unit(36, "feet"),
  42011. name: "Front",
  42012. image: {
  42013. source: "./media/characters/shadow-rat/front.svg",
  42014. extra: 1845/1758,
  42015. bottom: 83/1928
  42016. }
  42017. },
  42018. },
  42019. [
  42020. {
  42021. name: "Macro",
  42022. height: math.unit(36, "feet"),
  42023. default: true
  42024. },
  42025. ]
  42026. ))
  42027. characterMakers.push(() => makeCharacter(
  42028. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  42029. {
  42030. side: {
  42031. height: math.unit(8, "feet"),
  42032. weight: math.unit(2630, "lb"),
  42033. name: "Side",
  42034. image: {
  42035. source: "./media/characters/torallia/side.svg",
  42036. extra: 2164/2021,
  42037. bottom: 371/2535
  42038. }
  42039. },
  42040. },
  42041. [
  42042. {
  42043. name: "Mortal Interaction",
  42044. height: math.unit(8, "feet")
  42045. },
  42046. {
  42047. name: "Natural",
  42048. height: math.unit(24, "feet"),
  42049. default: true
  42050. },
  42051. {
  42052. name: "Giant",
  42053. height: math.unit(80, "feet")
  42054. },
  42055. {
  42056. name: "Kaiju",
  42057. height: math.unit(240, "feet")
  42058. },
  42059. {
  42060. name: "Macro",
  42061. height: math.unit(800, "feet")
  42062. },
  42063. {
  42064. name: "Macro+",
  42065. height: math.unit(2400, "feet")
  42066. },
  42067. {
  42068. name: "Macro++",
  42069. height: math.unit(8000, "feet")
  42070. },
  42071. {
  42072. name: "City-Crushing",
  42073. height: math.unit(24000, "feet")
  42074. },
  42075. {
  42076. name: "Mountain-Mashing",
  42077. height: math.unit(80000, "feet")
  42078. },
  42079. {
  42080. name: "District Demolisher",
  42081. height: math.unit(240000, "feet")
  42082. },
  42083. {
  42084. name: "Tri-County Terror",
  42085. height: math.unit(800000, "feet")
  42086. },
  42087. {
  42088. name: "State Smasher",
  42089. height: math.unit(2.4e6, "feet")
  42090. },
  42091. {
  42092. name: "Nation Nemesis",
  42093. height: math.unit(8e6, "feet")
  42094. },
  42095. {
  42096. name: "Continent Cracker",
  42097. height: math.unit(2.4e7, "feet")
  42098. },
  42099. {
  42100. name: "Planet-Pillaging",
  42101. height: math.unit(8e7, "feet")
  42102. },
  42103. {
  42104. name: "Earth-Eclipsing",
  42105. height: math.unit(2.4e8, "feet")
  42106. },
  42107. {
  42108. name: "Jovian-Jostling",
  42109. height: math.unit(8e8, "feet")
  42110. },
  42111. {
  42112. name: "Gas Giant Gulper",
  42113. height: math.unit(2.4e9, "feet")
  42114. },
  42115. {
  42116. name: "Astral Annihilator",
  42117. height: math.unit(8e9, "feet")
  42118. },
  42119. {
  42120. name: "Celestial Conqueror",
  42121. height: math.unit(2.4e10, "feet")
  42122. },
  42123. {
  42124. name: "Sol-Swallowing",
  42125. height: math.unit(8e10, "feet")
  42126. },
  42127. {
  42128. name: "Hunter of the Heavens",
  42129. height: math.unit(2.4e13, "feet")
  42130. },
  42131. ]
  42132. ))
  42133. characterMakers.push(() => makeCharacter(
  42134. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  42135. {
  42136. front: {
  42137. height: math.unit(10, "feet"),
  42138. weight: math.unit(844, "kilograms"),
  42139. name: "Front",
  42140. image: {
  42141. source: "./media/characters/rebecca-pawlson/front.svg",
  42142. extra: 1196/1099,
  42143. bottom: 81/1277
  42144. },
  42145. extraAttributes: {
  42146. "pawSize": {
  42147. name: "Paw Size",
  42148. power: 2,
  42149. type: "area",
  42150. base: math.unit(0.2 * 0.375, "meters^2")
  42151. },
  42152. "handSize": {
  42153. name: "Hand Size",
  42154. power: 2,
  42155. type: "area",
  42156. base: math.unit(0.2 * 0.35, "meters^2")
  42157. },
  42158. "breastDiameter": {
  42159. name: "Breast Diameter",
  42160. power: 1,
  42161. type: "length",
  42162. base: math.unit(0.5, "meters")
  42163. },
  42164. "breastVolume": {
  42165. name: "Breast Volume",
  42166. power: 3,
  42167. type: "volume",
  42168. base: math.unit(0.065, "m^3")
  42169. },
  42170. "breastMass": {
  42171. name: "Breast Mass",
  42172. power: 3,
  42173. type: "mass",
  42174. base: math.unit(65, "kg")
  42175. },
  42176. "nippleDiameter": {
  42177. name: "Nipple Diameter",
  42178. power: 1,
  42179. type: "length",
  42180. base: math.unit(0.1, "meters")
  42181. },
  42182. }
  42183. },
  42184. back: {
  42185. height: math.unit(10, "feet"),
  42186. weight: math.unit(844, "kilograms"),
  42187. name: "Back",
  42188. image: {
  42189. source: "./media/characters/rebecca-pawlson/back.svg",
  42190. extra: 879/776,
  42191. bottom: 43/922
  42192. },
  42193. extraAttributes: {
  42194. "pawSize": {
  42195. name: "Paw Size",
  42196. power: 2,
  42197. type: "area",
  42198. base: math.unit(0.2 * 0.375, "meters^2")
  42199. },
  42200. "handSize": {
  42201. name: "Hand Size",
  42202. power: 2,
  42203. type: "area",
  42204. base: math.unit(0.2 * 0.35, "meters^2")
  42205. },
  42206. "breastDiameter": {
  42207. name: "Breast Diameter",
  42208. power: 1,
  42209. type: "length",
  42210. base: math.unit(0.5, "meters")
  42211. },
  42212. "breastVolume": {
  42213. name: "Breast Volume",
  42214. power: 3,
  42215. type: "volume",
  42216. base: math.unit(0.065, "m^3")
  42217. },
  42218. "breastMass": {
  42219. name: "Breast Mass",
  42220. power: 3,
  42221. type: "mass",
  42222. base: math.unit(65, "kg")
  42223. },
  42224. "nippleDiameter": {
  42225. name: "Nipple Diameter",
  42226. power: 1,
  42227. type: "length",
  42228. base: math.unit(0.1, "meters")
  42229. },
  42230. }
  42231. },
  42232. },
  42233. [
  42234. {
  42235. name: "Normal",
  42236. height: math.unit(6 + 8/12, "feet")
  42237. },
  42238. {
  42239. name: "Mini Macro",
  42240. height: math.unit(10, "feet"),
  42241. default: true
  42242. },
  42243. {
  42244. name: "Macro",
  42245. height: math.unit(100, "feet")
  42246. },
  42247. {
  42248. name: "Mega Macro",
  42249. height: math.unit(2500, "feet")
  42250. },
  42251. {
  42252. name: "Giga Macro",
  42253. height: math.unit(50, "miles")
  42254. },
  42255. ]
  42256. ))
  42257. characterMakers.push(() => makeCharacter(
  42258. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  42259. {
  42260. front: {
  42261. height: math.unit(7 + 6/12, "feet"),
  42262. weight: math.unit(600, "lb"),
  42263. name: "Front",
  42264. image: {
  42265. source: "./media/characters/moxie-nova/front.svg",
  42266. extra: 1734/1652,
  42267. bottom: 41/1775
  42268. }
  42269. },
  42270. },
  42271. [
  42272. {
  42273. name: "Normal",
  42274. height: math.unit(7 + 6/12, "feet"),
  42275. default: true
  42276. },
  42277. ]
  42278. ))
  42279. characterMakers.push(() => makeCharacter(
  42280. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  42281. {
  42282. goat: {
  42283. height: math.unit(4, "feet"),
  42284. weight: math.unit(180, "lb"),
  42285. name: "Goat",
  42286. image: {
  42287. source: "./media/characters/tiffany/goat.svg",
  42288. extra: 1845/1595,
  42289. bottom: 106/1951
  42290. }
  42291. },
  42292. front: {
  42293. height: math.unit(5, "feet"),
  42294. weight: math.unit(150, "lb"),
  42295. name: "Foxcoon",
  42296. image: {
  42297. source: "./media/characters/tiffany/foxcoon.svg",
  42298. extra: 1941/1845,
  42299. bottom: 58/1999
  42300. }
  42301. },
  42302. },
  42303. [
  42304. {
  42305. name: "Normal",
  42306. height: math.unit(5, "feet"),
  42307. default: true
  42308. },
  42309. ]
  42310. ))
  42311. characterMakers.push(() => makeCharacter(
  42312. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  42313. {
  42314. front: {
  42315. height: math.unit(8, "feet"),
  42316. weight: math.unit(300, "lb"),
  42317. name: "Front",
  42318. image: {
  42319. source: "./media/characters/raxinath/front.svg",
  42320. extra: 1407/1309,
  42321. bottom: 39/1446
  42322. }
  42323. },
  42324. back: {
  42325. height: math.unit(8, "feet"),
  42326. weight: math.unit(300, "lb"),
  42327. name: "Back",
  42328. image: {
  42329. source: "./media/characters/raxinath/back.svg",
  42330. extra: 1405/1315,
  42331. bottom: 9/1414
  42332. }
  42333. },
  42334. },
  42335. [
  42336. {
  42337. name: "Speck",
  42338. height: math.unit(0.5, "nm")
  42339. },
  42340. {
  42341. name: "Micro",
  42342. height: math.unit(3, "inches")
  42343. },
  42344. {
  42345. name: "Kobold",
  42346. height: math.unit(3, "feet")
  42347. },
  42348. {
  42349. name: "Normal",
  42350. height: math.unit(8, "feet"),
  42351. default: true
  42352. },
  42353. {
  42354. name: "Giant",
  42355. height: math.unit(50, "feet")
  42356. },
  42357. {
  42358. name: "Macro",
  42359. height: math.unit(1000, "feet")
  42360. },
  42361. {
  42362. name: "Megamacro",
  42363. height: math.unit(1, "mile")
  42364. },
  42365. ]
  42366. ))
  42367. characterMakers.push(() => makeCharacter(
  42368. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  42369. {
  42370. front: {
  42371. height: math.unit(10, "feet"),
  42372. weight: math.unit(1442, "lb"),
  42373. name: "Front",
  42374. image: {
  42375. source: "./media/characters/mal-dragon/front.svg",
  42376. extra: 1515/1444,
  42377. bottom: 113/1628
  42378. }
  42379. },
  42380. back: {
  42381. height: math.unit(10, "feet"),
  42382. weight: math.unit(1442, "lb"),
  42383. name: "Back",
  42384. image: {
  42385. source: "./media/characters/mal-dragon/back.svg",
  42386. extra: 1527/1434,
  42387. bottom: 25/1552
  42388. }
  42389. },
  42390. },
  42391. [
  42392. {
  42393. name: "Mortal Interaction",
  42394. height: math.unit(10, "feet"),
  42395. default: true
  42396. },
  42397. {
  42398. name: "Large",
  42399. height: math.unit(30, "feet")
  42400. },
  42401. {
  42402. name: "Kaiju",
  42403. height: math.unit(300, "feet")
  42404. },
  42405. {
  42406. name: "Megamacro",
  42407. height: math.unit(10000, "feet")
  42408. },
  42409. {
  42410. name: "Continent Cracker",
  42411. height: math.unit(30000000, "feet")
  42412. },
  42413. {
  42414. name: "Sol-Swallowing",
  42415. height: math.unit(1e11, "feet")
  42416. },
  42417. {
  42418. name: "Light Universal",
  42419. height: math.unit(5, "universes")
  42420. },
  42421. {
  42422. name: "Universe Atoms",
  42423. height: math.unit(1.829e9, "universes")
  42424. },
  42425. {
  42426. name: "Light Multiversal",
  42427. height: math.unit(5, "multiverses")
  42428. },
  42429. {
  42430. name: "Multiverse Atoms",
  42431. height: math.unit(1.829e9, "multiverses")
  42432. },
  42433. {
  42434. name: "Fabric of Time",
  42435. height: math.unit(1e262, "multiverses")
  42436. },
  42437. ]
  42438. ))
  42439. characterMakers.push(() => makeCharacter(
  42440. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  42441. {
  42442. front: {
  42443. height: math.unit(9, "feet"),
  42444. weight: math.unit(1050, "lb"),
  42445. name: "Front",
  42446. image: {
  42447. source: "./media/characters/tabitha/front.svg",
  42448. extra: 2083/1994,
  42449. bottom: 68/2151
  42450. }
  42451. },
  42452. },
  42453. [
  42454. {
  42455. name: "Baseline",
  42456. height: math.unit(9, "feet"),
  42457. default: true
  42458. },
  42459. {
  42460. name: "Giant",
  42461. height: math.unit(90, "feet")
  42462. },
  42463. {
  42464. name: "Macro",
  42465. height: math.unit(900, "feet")
  42466. },
  42467. {
  42468. name: "Megamacro",
  42469. height: math.unit(9000, "feet")
  42470. },
  42471. {
  42472. name: "City-Crushing",
  42473. height: math.unit(27000, "feet")
  42474. },
  42475. {
  42476. name: "Mountain-Mashing",
  42477. height: math.unit(90000, "feet")
  42478. },
  42479. {
  42480. name: "Nation Nemesis",
  42481. height: math.unit(9e6, "feet")
  42482. },
  42483. {
  42484. name: "Continent Cracker",
  42485. height: math.unit(27e6, "feet")
  42486. },
  42487. {
  42488. name: "Earth-Eclipsing",
  42489. height: math.unit(2.7e8, "feet")
  42490. },
  42491. {
  42492. name: "Gas Giant Gulper",
  42493. height: math.unit(2.7e9, "feet")
  42494. },
  42495. {
  42496. name: "Sol-Swallowing",
  42497. height: math.unit(9e10, "feet")
  42498. },
  42499. {
  42500. name: "Galaxy Gulper",
  42501. height: math.unit(9, "galaxies")
  42502. },
  42503. {
  42504. name: "Cosmos Churner",
  42505. height: math.unit(9, "universes")
  42506. },
  42507. ]
  42508. ))
  42509. characterMakers.push(() => makeCharacter(
  42510. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  42511. {
  42512. front: {
  42513. height: math.unit(160, "cm"),
  42514. weight: math.unit(55, "kg"),
  42515. name: "Front",
  42516. image: {
  42517. source: "./media/characters/tow/front.svg",
  42518. extra: 1751/1722,
  42519. bottom: 74/1825
  42520. }
  42521. },
  42522. },
  42523. [
  42524. {
  42525. name: "Norm",
  42526. height: math.unit(160, "cm")
  42527. },
  42528. {
  42529. name: "Casual",
  42530. height: math.unit(3200, "m"),
  42531. default: true
  42532. },
  42533. {
  42534. name: "Show-Off",
  42535. height: math.unit(160, "km")
  42536. },
  42537. ]
  42538. ))
  42539. characterMakers.push(() => makeCharacter(
  42540. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  42541. {
  42542. front: {
  42543. height: math.unit(7 + 11/12, "feet"),
  42544. weight: math.unit(342.8, "lb"),
  42545. name: "Front",
  42546. image: {
  42547. source: "./media/characters/vivian-orca-dragon/front.svg",
  42548. extra: 1890/1865,
  42549. bottom: 28/1918
  42550. }
  42551. },
  42552. },
  42553. [
  42554. {
  42555. name: "Micro",
  42556. height: math.unit(5, "inches")
  42557. },
  42558. {
  42559. name: "Normal",
  42560. height: math.unit(7 + 11/12, "feet"),
  42561. default: true
  42562. },
  42563. {
  42564. name: "Macro",
  42565. height: math.unit(395 + 7/12, "feet")
  42566. },
  42567. ]
  42568. ))
  42569. characterMakers.push(() => makeCharacter(
  42570. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  42571. {
  42572. side: {
  42573. height: math.unit(10, "feet"),
  42574. weight: math.unit(1442, "lb"),
  42575. name: "Side",
  42576. image: {
  42577. source: "./media/characters/lotherakon/side.svg",
  42578. extra: 1604/1497,
  42579. bottom: 89/1693
  42580. }
  42581. },
  42582. },
  42583. [
  42584. {
  42585. name: "Mortal Interaction",
  42586. height: math.unit(10, "feet")
  42587. },
  42588. {
  42589. name: "Large",
  42590. height: math.unit(30, "feet"),
  42591. default: true
  42592. },
  42593. {
  42594. name: "Giant",
  42595. height: math.unit(100, "feet")
  42596. },
  42597. {
  42598. name: "Kaiju",
  42599. height: math.unit(300, "feet")
  42600. },
  42601. {
  42602. name: "Macro",
  42603. height: math.unit(1000, "feet")
  42604. },
  42605. {
  42606. name: "Macro+",
  42607. height: math.unit(3000, "feet")
  42608. },
  42609. {
  42610. name: "Megamacro",
  42611. height: math.unit(10000, "feet")
  42612. },
  42613. {
  42614. name: "City-Crushing",
  42615. height: math.unit(30000, "feet")
  42616. },
  42617. {
  42618. name: "Continent Cracker",
  42619. height: math.unit(30e6, "feet")
  42620. },
  42621. {
  42622. name: "Earth Eclipsing",
  42623. height: math.unit(3e8, "feet")
  42624. },
  42625. {
  42626. name: "Gas Giant Gulper",
  42627. height: math.unit(3e9, "feet")
  42628. },
  42629. {
  42630. name: "Sol-Swallowing",
  42631. height: math.unit(1e11, "feet")
  42632. },
  42633. {
  42634. name: "System Swallower",
  42635. height: math.unit(3e14, "feet")
  42636. },
  42637. {
  42638. name: "Galaxy Gulper",
  42639. height: math.unit(10, "galaxies")
  42640. },
  42641. {
  42642. name: "Light Universal",
  42643. height: math.unit(5, "universes")
  42644. },
  42645. {
  42646. name: "Universe Palm",
  42647. height: math.unit(20, "universes")
  42648. },
  42649. {
  42650. name: "Light Multiversal",
  42651. height: math.unit(5, "multiverses")
  42652. },
  42653. {
  42654. name: "Multiverse Palm",
  42655. height: math.unit(20, "multiverses")
  42656. },
  42657. {
  42658. name: "Inferno Incarnate",
  42659. height: math.unit(1e7, "multiverses")
  42660. },
  42661. ]
  42662. ))
  42663. characterMakers.push(() => makeCharacter(
  42664. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  42665. {
  42666. front: {
  42667. height: math.unit(8, "feet"),
  42668. weight: math.unit(1200, "lb"),
  42669. name: "Front",
  42670. image: {
  42671. source: "./media/characters/malithee/front.svg",
  42672. extra: 1675/1640,
  42673. bottom: 162/1837
  42674. }
  42675. },
  42676. },
  42677. [
  42678. {
  42679. name: "Mortal Interaction",
  42680. height: math.unit(8, "feet"),
  42681. default: true
  42682. },
  42683. {
  42684. name: "Large",
  42685. height: math.unit(24, "feet")
  42686. },
  42687. {
  42688. name: "Kaiju",
  42689. height: math.unit(240, "feet")
  42690. },
  42691. {
  42692. name: "Megamacro",
  42693. height: math.unit(8000, "feet")
  42694. },
  42695. {
  42696. name: "Continent Cracker",
  42697. height: math.unit(24e6, "feet")
  42698. },
  42699. {
  42700. name: "Earth-Eclipsing",
  42701. height: math.unit(2.4e8, "feet")
  42702. },
  42703. {
  42704. name: "Sol-Swallowing",
  42705. height: math.unit(8e10, "feet")
  42706. },
  42707. {
  42708. name: "Galaxy Gulper",
  42709. height: math.unit(8, "galaxies")
  42710. },
  42711. {
  42712. name: "Light Universal",
  42713. height: math.unit(4, "universes")
  42714. },
  42715. {
  42716. name: "Universe Atoms",
  42717. height: math.unit(1.829e9, "universes")
  42718. },
  42719. {
  42720. name: "Light Multiversal",
  42721. height: math.unit(4, "multiverses")
  42722. },
  42723. {
  42724. name: "Multiverse Atoms",
  42725. height: math.unit(1.829e9, "multiverses")
  42726. },
  42727. {
  42728. name: "Nigh-Omnipresence",
  42729. height: math.unit(8e261, "multiverses")
  42730. },
  42731. ]
  42732. ))
  42733. characterMakers.push(() => makeCharacter(
  42734. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  42735. {
  42736. front: {
  42737. height: math.unit(10, "feet"),
  42738. weight: math.unit(1500, "lb"),
  42739. name: "Front",
  42740. image: {
  42741. source: "./media/characters/miles-thestia/front.svg",
  42742. extra: 1812/1727,
  42743. bottom: 86/1898
  42744. }
  42745. },
  42746. back: {
  42747. height: math.unit(10, "feet"),
  42748. weight: math.unit(1500, "lb"),
  42749. name: "Back",
  42750. image: {
  42751. source: "./media/characters/miles-thestia/back.svg",
  42752. extra: 1799/1690,
  42753. bottom: 47/1846
  42754. }
  42755. },
  42756. frontNsfw: {
  42757. height: math.unit(10, "feet"),
  42758. weight: math.unit(1500, "lb"),
  42759. name: "Front (NSFW)",
  42760. image: {
  42761. source: "./media/characters/miles-thestia/front-nsfw.svg",
  42762. extra: 1812/1727,
  42763. bottom: 86/1898
  42764. }
  42765. },
  42766. },
  42767. [
  42768. {
  42769. name: "Mini-Macro",
  42770. height: math.unit(10, "feet"),
  42771. default: true
  42772. },
  42773. ]
  42774. ))
  42775. characterMakers.push(() => makeCharacter(
  42776. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  42777. {
  42778. front: {
  42779. height: math.unit(25, "feet"),
  42780. name: "Front",
  42781. image: {
  42782. source: "./media/characters/titan-s-wulf/front.svg",
  42783. extra: 1560/1484,
  42784. bottom: 76/1636
  42785. }
  42786. },
  42787. },
  42788. [
  42789. {
  42790. name: "Smallest",
  42791. height: math.unit(25, "feet"),
  42792. default: true
  42793. },
  42794. {
  42795. name: "Normal",
  42796. height: math.unit(200, "feet")
  42797. },
  42798. {
  42799. name: "Macro",
  42800. height: math.unit(200000, "feet")
  42801. },
  42802. {
  42803. name: "Multiversal Original",
  42804. height: math.unit(10000, "multiverses")
  42805. },
  42806. ]
  42807. ))
  42808. characterMakers.push(() => makeCharacter(
  42809. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  42810. {
  42811. front: {
  42812. height: math.unit(8, "feet"),
  42813. weight: math.unit(553, "lb"),
  42814. name: "Front",
  42815. image: {
  42816. source: "./media/characters/tawendeh/front.svg",
  42817. extra: 2365/2268,
  42818. bottom: 83/2448
  42819. }
  42820. },
  42821. frontClothed: {
  42822. height: math.unit(8, "feet"),
  42823. weight: math.unit(553, "lb"),
  42824. name: "Front (Clothed)",
  42825. image: {
  42826. source: "./media/characters/tawendeh/front-clothed.svg",
  42827. extra: 2365/2268,
  42828. bottom: 83/2448
  42829. }
  42830. },
  42831. back: {
  42832. height: math.unit(8, "feet"),
  42833. weight: math.unit(553, "lb"),
  42834. name: "Back",
  42835. image: {
  42836. source: "./media/characters/tawendeh/back.svg",
  42837. extra: 2397/2294,
  42838. bottom: 42/2439
  42839. }
  42840. },
  42841. },
  42842. [
  42843. {
  42844. name: "Mortal Interaction",
  42845. height: math.unit(8, "feet"),
  42846. default: true
  42847. },
  42848. {
  42849. name: "Giant",
  42850. height: math.unit(80, "feet")
  42851. },
  42852. {
  42853. name: "Macro",
  42854. height: math.unit(800, "feet")
  42855. },
  42856. {
  42857. name: "Megamacro",
  42858. height: math.unit(8000, "feet")
  42859. },
  42860. {
  42861. name: "City-Crushing",
  42862. height: math.unit(24000, "feet")
  42863. },
  42864. {
  42865. name: "Mountain-Mashing",
  42866. height: math.unit(80000, "feet")
  42867. },
  42868. {
  42869. name: "Nation Nemesis",
  42870. height: math.unit(8e6, "feet")
  42871. },
  42872. {
  42873. name: "Continent Cracker",
  42874. height: math.unit(24e6, "feet")
  42875. },
  42876. {
  42877. name: "Earth-Eclipsing",
  42878. height: math.unit(2.4e8, "feet")
  42879. },
  42880. {
  42881. name: "Gas Giant Gulper",
  42882. height: math.unit(2.4e9, "feet")
  42883. },
  42884. {
  42885. name: "Sol-Swallowing",
  42886. height: math.unit(8e10, "feet")
  42887. },
  42888. {
  42889. name: "Galaxy Gulper",
  42890. height: math.unit(8, "galaxies")
  42891. },
  42892. {
  42893. name: "Cosmos Churner",
  42894. height: math.unit(8, "universes")
  42895. },
  42896. {
  42897. name: "Omnipotent Otter",
  42898. height: math.unit(80, "universes")
  42899. },
  42900. ]
  42901. ))
  42902. characterMakers.push(() => makeCharacter(
  42903. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  42904. {
  42905. front: {
  42906. height: math.unit(2.6, "meters"),
  42907. weight: math.unit(900, "kg"),
  42908. name: "Front",
  42909. image: {
  42910. source: "./media/characters/neesha/front.svg",
  42911. extra: 1803/1653,
  42912. bottom: 128/1931
  42913. }
  42914. },
  42915. },
  42916. [
  42917. {
  42918. name: "Normal",
  42919. height: math.unit(2.6, "meters"),
  42920. default: true
  42921. },
  42922. {
  42923. name: "Macro",
  42924. height: math.unit(50, "meters")
  42925. },
  42926. ]
  42927. ))
  42928. characterMakers.push(() => makeCharacter(
  42929. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  42930. {
  42931. front: {
  42932. height: math.unit(5, "feet"),
  42933. weight: math.unit(185, "lb"),
  42934. name: "Front",
  42935. image: {
  42936. source: "./media/characters/kyera/front.svg",
  42937. extra: 1875/1790,
  42938. bottom: 96/1971
  42939. }
  42940. },
  42941. },
  42942. [
  42943. {
  42944. name: "Normal",
  42945. height: math.unit(5, "feet"),
  42946. default: true
  42947. },
  42948. ]
  42949. ))
  42950. characterMakers.push(() => makeCharacter(
  42951. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  42952. {
  42953. front: {
  42954. height: math.unit(7 + 6/12, "feet"),
  42955. weight: math.unit(540, "lb"),
  42956. name: "Front",
  42957. image: {
  42958. source: "./media/characters/yuko/front.svg",
  42959. extra: 1282/1222,
  42960. bottom: 101/1383
  42961. }
  42962. },
  42963. frontClothed: {
  42964. height: math.unit(7 + 6/12, "feet"),
  42965. weight: math.unit(540, "lb"),
  42966. name: "Front (Clothed)",
  42967. image: {
  42968. source: "./media/characters/yuko/front-clothed.svg",
  42969. extra: 1282/1222,
  42970. bottom: 101/1383
  42971. }
  42972. },
  42973. },
  42974. [
  42975. {
  42976. name: "Normal",
  42977. height: math.unit(7 + 6/12, "feet"),
  42978. default: true
  42979. },
  42980. {
  42981. name: "Macro",
  42982. height: math.unit(26 + 9/12, "feet")
  42983. },
  42984. {
  42985. name: "Megamacro",
  42986. height: math.unit(300, "feet")
  42987. },
  42988. {
  42989. name: "Gigamacro",
  42990. height: math.unit(5000, "feet")
  42991. },
  42992. {
  42993. name: "Planetary",
  42994. height: math.unit(10000, "miles")
  42995. },
  42996. ]
  42997. ))
  42998. characterMakers.push(() => makeCharacter(
  42999. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  43000. {
  43001. front: {
  43002. height: math.unit(8 + 2/12, "feet"),
  43003. weight: math.unit(600, "lb"),
  43004. name: "Front",
  43005. image: {
  43006. source: "./media/characters/deam-nitrel/front.svg",
  43007. extra: 1308/1234,
  43008. bottom: 125/1433
  43009. }
  43010. },
  43011. },
  43012. [
  43013. {
  43014. name: "Normal",
  43015. height: math.unit(8 + 2/12, "feet"),
  43016. default: true
  43017. },
  43018. ]
  43019. ))
  43020. characterMakers.push(() => makeCharacter(
  43021. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  43022. {
  43023. front: {
  43024. height: math.unit(6.1, "feet"),
  43025. weight: math.unit(180, "lb"),
  43026. name: "Front",
  43027. image: {
  43028. source: "./media/characters/skyress/front.svg",
  43029. extra: 1045/915,
  43030. bottom: 28/1073
  43031. }
  43032. },
  43033. maw: {
  43034. height: math.unit(1, "feet"),
  43035. name: "Maw",
  43036. image: {
  43037. source: "./media/characters/skyress/maw.svg"
  43038. }
  43039. },
  43040. },
  43041. [
  43042. {
  43043. name: "Normal",
  43044. height: math.unit(6.1, "feet"),
  43045. default: true
  43046. },
  43047. {
  43048. name: "Macro",
  43049. height: math.unit(200, "feet")
  43050. },
  43051. ]
  43052. ))
  43053. characterMakers.push(() => makeCharacter(
  43054. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  43055. {
  43056. front: {
  43057. height: math.unit(4 + 2/12, "feet"),
  43058. weight: math.unit(40, "kg"),
  43059. name: "Front",
  43060. image: {
  43061. source: "./media/characters/amethyst-jones/front.svg",
  43062. extra: 1220/1150,
  43063. bottom: 101/1321
  43064. }
  43065. },
  43066. },
  43067. [
  43068. {
  43069. name: "Normal",
  43070. height: math.unit(4 + 2/12, "feet"),
  43071. default: true
  43072. },
  43073. ]
  43074. ))
  43075. characterMakers.push(() => makeCharacter(
  43076. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  43077. {
  43078. front: {
  43079. height: math.unit(1.7, "m"),
  43080. weight: math.unit(135, "lb"),
  43081. name: "Front",
  43082. image: {
  43083. source: "./media/characters/jade/front.svg",
  43084. extra: 1818/1767,
  43085. bottom: 32/1850
  43086. }
  43087. },
  43088. back: {
  43089. height: math.unit(1.7, "m"),
  43090. weight: math.unit(135, "lb"),
  43091. name: "Back",
  43092. image: {
  43093. source: "./media/characters/jade/back.svg",
  43094. extra: 1869/1809,
  43095. bottom: 35/1904
  43096. }
  43097. },
  43098. hand: {
  43099. height: math.unit(0.24, "m"),
  43100. name: "Hand",
  43101. image: {
  43102. source: "./media/characters/jade/hand.svg"
  43103. }
  43104. },
  43105. foot: {
  43106. height: math.unit(0.263, "m"),
  43107. name: "Foot",
  43108. image: {
  43109. source: "./media/characters/jade/foot.svg"
  43110. }
  43111. },
  43112. dick: {
  43113. height: math.unit(0.47, "m"),
  43114. name: "Dick",
  43115. image: {
  43116. source: "./media/characters/jade/dick.svg"
  43117. }
  43118. },
  43119. },
  43120. [
  43121. {
  43122. name: "Micro",
  43123. height: math.unit(22, "cm")
  43124. },
  43125. {
  43126. name: "Normal",
  43127. height: math.unit(1.7, "m"),
  43128. default: true
  43129. },
  43130. {
  43131. name: "Macro",
  43132. height: math.unit(152, "m")
  43133. },
  43134. ]
  43135. ))
  43136. characterMakers.push(() => makeCharacter(
  43137. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  43138. {
  43139. front: {
  43140. height: math.unit(100, "miles"),
  43141. weight: math.unit(20000, "tons"),
  43142. name: "Front",
  43143. image: {
  43144. source: "./media/characters/cookie/front.svg",
  43145. extra: 1125/1070,
  43146. bottom: 30/1155
  43147. }
  43148. },
  43149. },
  43150. [
  43151. {
  43152. name: "Big",
  43153. height: math.unit(50, "feet")
  43154. },
  43155. {
  43156. name: "Macro",
  43157. height: math.unit(100, "miles"),
  43158. default: true
  43159. },
  43160. {
  43161. name: "Megamacro",
  43162. height: math.unit(90000, "miles")
  43163. },
  43164. ]
  43165. ))
  43166. characterMakers.push(() => makeCharacter(
  43167. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  43168. {
  43169. front: {
  43170. height: math.unit(6, "feet"),
  43171. weight: math.unit(145, "lb"),
  43172. name: "Front",
  43173. image: {
  43174. source: "./media/characters/farzian/front.svg",
  43175. extra: 1902/1693,
  43176. bottom: 108/2010
  43177. }
  43178. },
  43179. },
  43180. [
  43181. {
  43182. name: "Macro",
  43183. height: math.unit(500, "feet"),
  43184. default: true
  43185. },
  43186. ]
  43187. ))
  43188. characterMakers.push(() => makeCharacter(
  43189. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  43190. {
  43191. front: {
  43192. height: math.unit(3 + 6/12, "feet"),
  43193. weight: math.unit(50, "lb"),
  43194. name: "Front",
  43195. image: {
  43196. source: "./media/characters/kimberly-tilson/front.svg",
  43197. extra: 1400/1322,
  43198. bottom: 36/1436
  43199. }
  43200. },
  43201. back: {
  43202. height: math.unit(3 + 6/12, "feet"),
  43203. weight: math.unit(50, "lb"),
  43204. name: "Back",
  43205. image: {
  43206. source: "./media/characters/kimberly-tilson/back.svg",
  43207. extra: 1370/1307,
  43208. bottom: 20/1390
  43209. }
  43210. },
  43211. },
  43212. [
  43213. {
  43214. name: "Normal",
  43215. height: math.unit(3 + 6/12, "feet"),
  43216. default: true
  43217. },
  43218. ]
  43219. ))
  43220. characterMakers.push(() => makeCharacter(
  43221. { name: "Harthos", species: ["peacekeeper", "allusus"], tags: ["anthro"] },
  43222. {
  43223. front: {
  43224. height: math.unit(350, "meters"),
  43225. weight: math.unit(7.57059e+8, "lb"),
  43226. name: "Front",
  43227. image: {
  43228. source: "./media/characters/harthos/front.svg",
  43229. extra: 455/446,
  43230. bottom: 15/470
  43231. },
  43232. form: "peacekeeper",
  43233. default: true
  43234. },
  43235. allusus_front: {
  43236. height: math.unit(270, "meters"),
  43237. weight: math.unit(3.47550e+8, "lb"),
  43238. name: "Front",
  43239. image: {
  43240. source: "./media/characters/harthos/allusus-front.svg",
  43241. extra: 455/446,
  43242. bottom: 15/470
  43243. },
  43244. form: "allusus",
  43245. },
  43246. },
  43247. [
  43248. {
  43249. name: "Macro",
  43250. height: math.unit(350, "meters"),
  43251. default: true,
  43252. form: "peacekeeper"
  43253. },
  43254. {
  43255. name: "Macro",
  43256. height: math.unit(270, "meters"),
  43257. default: true,
  43258. form: "allusus"
  43259. },
  43260. ],
  43261. {
  43262. "peacekeeper": {
  43263. name: "Peacekeeper",
  43264. default: true
  43265. },
  43266. "allusus": {
  43267. name: "Allusus",
  43268. },
  43269. }
  43270. ))
  43271. characterMakers.push(() => makeCharacter(
  43272. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  43273. {
  43274. front: {
  43275. height: math.unit(15, "feet"),
  43276. name: "Front",
  43277. image: {
  43278. source: "./media/characters/hypatia/front.svg",
  43279. extra: 1653/1591,
  43280. bottom: 79/1732
  43281. }
  43282. },
  43283. },
  43284. [
  43285. {
  43286. name: "Normal",
  43287. height: math.unit(15, "feet")
  43288. },
  43289. {
  43290. name: "Small",
  43291. height: math.unit(300, "feet")
  43292. },
  43293. {
  43294. name: "Macro",
  43295. height: math.unit(2500, "feet"),
  43296. default: true
  43297. },
  43298. {
  43299. name: "Mega Macro",
  43300. height: math.unit(1500, "miles")
  43301. },
  43302. {
  43303. name: "Giga Macro",
  43304. height: math.unit(1.5e6, "miles")
  43305. },
  43306. ]
  43307. ))
  43308. characterMakers.push(() => makeCharacter(
  43309. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  43310. {
  43311. front: {
  43312. height: math.unit(6, "feet"),
  43313. weight: math.unit(200, "lb"),
  43314. name: "Front",
  43315. image: {
  43316. source: "./media/characters/wulver/front.svg",
  43317. extra: 1724/1632,
  43318. bottom: 130/1854
  43319. }
  43320. },
  43321. frontNsfw: {
  43322. height: math.unit(6, "feet"),
  43323. weight: math.unit(200, "lb"),
  43324. name: "Front (NSFW)",
  43325. image: {
  43326. source: "./media/characters/wulver/front-nsfw.svg",
  43327. extra: 1724/1632,
  43328. bottom: 130/1854
  43329. }
  43330. },
  43331. },
  43332. [
  43333. {
  43334. name: "Human-Sized",
  43335. height: math.unit(6, "feet")
  43336. },
  43337. {
  43338. name: "Normal",
  43339. height: math.unit(4, "meters"),
  43340. default: true
  43341. },
  43342. {
  43343. name: "Large",
  43344. height: math.unit(6, "m")
  43345. },
  43346. ]
  43347. ))
  43348. characterMakers.push(() => makeCharacter(
  43349. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  43350. {
  43351. front: {
  43352. height: math.unit(7, "feet"),
  43353. name: "Front",
  43354. image: {
  43355. source: "./media/characters/maru/front.svg",
  43356. extra: 1595/1570,
  43357. bottom: 0/1595
  43358. }
  43359. },
  43360. },
  43361. [
  43362. {
  43363. name: "Normal",
  43364. height: math.unit(7, "feet"),
  43365. default: true
  43366. },
  43367. {
  43368. name: "Macro",
  43369. height: math.unit(700, "feet")
  43370. },
  43371. {
  43372. name: "Mega Macro",
  43373. height: math.unit(25, "miles")
  43374. },
  43375. ]
  43376. ))
  43377. characterMakers.push(() => makeCharacter(
  43378. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  43379. {
  43380. front: {
  43381. height: math.unit(6, "feet"),
  43382. weight: math.unit(170, "lb"),
  43383. name: "Front",
  43384. image: {
  43385. source: "./media/characters/xenon/front.svg",
  43386. extra: 1376/1305,
  43387. bottom: 56/1432
  43388. }
  43389. },
  43390. back: {
  43391. height: math.unit(6, "feet"),
  43392. weight: math.unit(170, "lb"),
  43393. name: "Back",
  43394. image: {
  43395. source: "./media/characters/xenon/back.svg",
  43396. extra: 1328/1259,
  43397. bottom: 95/1423
  43398. }
  43399. },
  43400. maw: {
  43401. height: math.unit(0.52, "feet"),
  43402. name: "Maw",
  43403. image: {
  43404. source: "./media/characters/xenon/maw.svg"
  43405. }
  43406. },
  43407. handLeft: {
  43408. height: math.unit(0.82 * 169 / 153, "feet"),
  43409. name: "Hand (Left)",
  43410. image: {
  43411. source: "./media/characters/xenon/hand-left.svg"
  43412. }
  43413. },
  43414. handRight: {
  43415. height: math.unit(0.82, "feet"),
  43416. name: "Hand (Right)",
  43417. image: {
  43418. source: "./media/characters/xenon/hand-right.svg"
  43419. }
  43420. },
  43421. footLeft: {
  43422. height: math.unit(1.13, "feet"),
  43423. name: "Foot (Left)",
  43424. image: {
  43425. source: "./media/characters/xenon/foot-left.svg"
  43426. }
  43427. },
  43428. footRight: {
  43429. height: math.unit(1.13 * 194 / 196, "feet"),
  43430. name: "Foot (Right)",
  43431. image: {
  43432. source: "./media/characters/xenon/foot-right.svg"
  43433. }
  43434. },
  43435. },
  43436. [
  43437. {
  43438. name: "Micro",
  43439. height: math.unit(0.8, "inches")
  43440. },
  43441. {
  43442. name: "Normal",
  43443. height: math.unit(6, "feet")
  43444. },
  43445. {
  43446. name: "Macro",
  43447. height: math.unit(50, "feet"),
  43448. default: true
  43449. },
  43450. {
  43451. name: "Macro+",
  43452. height: math.unit(250, "feet")
  43453. },
  43454. {
  43455. name: "Megamacro",
  43456. height: math.unit(1500, "feet")
  43457. },
  43458. ]
  43459. ))
  43460. characterMakers.push(() => makeCharacter(
  43461. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  43462. {
  43463. front: {
  43464. height: math.unit(7 + 5/12, "feet"),
  43465. name: "Front",
  43466. image: {
  43467. source: "./media/characters/zane/front.svg",
  43468. extra: 1260/1203,
  43469. bottom: 94/1354
  43470. }
  43471. },
  43472. back: {
  43473. height: math.unit(5.05, "feet"),
  43474. name: "Back",
  43475. image: {
  43476. source: "./media/characters/zane/back.svg",
  43477. extra: 893/829,
  43478. bottom: 30/923
  43479. }
  43480. },
  43481. werewolf: {
  43482. height: math.unit(11, "feet"),
  43483. name: "Werewolf",
  43484. image: {
  43485. source: "./media/characters/zane/werewolf.svg",
  43486. extra: 1383/1323,
  43487. bottom: 89/1472
  43488. }
  43489. },
  43490. foot: {
  43491. height: math.unit(1.46, "feet"),
  43492. name: "Foot",
  43493. image: {
  43494. source: "./media/characters/zane/foot.svg"
  43495. }
  43496. },
  43497. footFront: {
  43498. height: math.unit(0.784, "feet"),
  43499. name: "Foot (Front)",
  43500. image: {
  43501. source: "./media/characters/zane/foot-front.svg"
  43502. }
  43503. },
  43504. dick: {
  43505. height: math.unit(1.95, "feet"),
  43506. name: "Dick",
  43507. image: {
  43508. source: "./media/characters/zane/dick.svg"
  43509. }
  43510. },
  43511. dickWerewolf: {
  43512. height: math.unit(3.77, "feet"),
  43513. name: "Dick (Werewolf)",
  43514. image: {
  43515. source: "./media/characters/zane/dick.svg"
  43516. }
  43517. },
  43518. },
  43519. [
  43520. {
  43521. name: "Normal",
  43522. height: math.unit(7 + 5/12, "feet"),
  43523. default: true
  43524. },
  43525. ]
  43526. ))
  43527. characterMakers.push(() => makeCharacter(
  43528. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  43529. {
  43530. front: {
  43531. height: math.unit(6 + 2/12, "feet"),
  43532. weight: math.unit(284, "lb"),
  43533. name: "Front",
  43534. image: {
  43535. source: "./media/characters/benni-desparque/front.svg",
  43536. extra: 878/729,
  43537. bottom: 58/936
  43538. }
  43539. },
  43540. back: {
  43541. height: math.unit(6 + 2/12, "feet"),
  43542. weight: math.unit(284, "lb"),
  43543. name: "Back",
  43544. image: {
  43545. source: "./media/characters/benni-desparque/back.svg",
  43546. extra: 901/756,
  43547. bottom: 51/952
  43548. }
  43549. },
  43550. dressed: {
  43551. height: math.unit(6 + 2/12 + 0.5/12, "feet"),
  43552. weight: math.unit(284, "lb"),
  43553. name: "Dressed",
  43554. image: {
  43555. source: "./media/characters/benni-desparque/dressed.svg",
  43556. extra: 1514/1276,
  43557. bottom: 65/1579
  43558. }
  43559. },
  43560. hand: {
  43561. height: math.unit(1.28, "feet"),
  43562. name: "Hand",
  43563. image: {
  43564. source: "./media/characters/benni-desparque/hand.svg"
  43565. }
  43566. },
  43567. foot: {
  43568. height: math.unit(1.53, "feet"),
  43569. name: "Foot",
  43570. image: {
  43571. source: "./media/characters/benni-desparque/foot.svg"
  43572. }
  43573. },
  43574. aiControlUnit: {
  43575. height: math.unit(0.175, "feet"),
  43576. name: "AI Control Unit",
  43577. image: {
  43578. source: "./media/characters/benni-desparque/ai-control-unit.svg"
  43579. }
  43580. },
  43581. },
  43582. [
  43583. {
  43584. name: "Civilian",
  43585. height: math.unit(6 + 2/12, "feet")
  43586. },
  43587. {
  43588. name: "Normal",
  43589. height: math.unit(98, "feet"),
  43590. default: true
  43591. },
  43592. {
  43593. name: "Kaiju Fighter",
  43594. height: math.unit(268, "feet")
  43595. },
  43596. ]
  43597. ))
  43598. characterMakers.push(() => makeCharacter(
  43599. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  43600. {
  43601. front: {
  43602. height: math.unit(5, "feet"),
  43603. weight: math.unit(105, "lb"),
  43604. name: "Front",
  43605. image: {
  43606. source: "./media/characters/maxine/front.svg",
  43607. extra: 1386/1250,
  43608. bottom: 71/1457
  43609. }
  43610. },
  43611. },
  43612. [
  43613. {
  43614. name: "Normal",
  43615. height: math.unit(5, "feet"),
  43616. default: true
  43617. },
  43618. ]
  43619. ))
  43620. characterMakers.push(() => makeCharacter(
  43621. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  43622. {
  43623. front: {
  43624. height: math.unit(11 + 7/12, "feet"),
  43625. weight: math.unit(9576, "lb"),
  43626. name: "Front",
  43627. image: {
  43628. source: "./media/characters/scaly/front.svg",
  43629. extra: 888/867,
  43630. bottom: 36/924
  43631. }
  43632. },
  43633. },
  43634. [
  43635. {
  43636. name: "Normal",
  43637. height: math.unit(11 + 7/12, "feet"),
  43638. default: true
  43639. },
  43640. ]
  43641. ))
  43642. characterMakers.push(() => makeCharacter(
  43643. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  43644. {
  43645. front: {
  43646. height: math.unit(6 + 3/12, "feet"),
  43647. name: "Front",
  43648. image: {
  43649. source: "./media/characters/saelria/front.svg",
  43650. extra: 1243/1138,
  43651. bottom: 46/1289
  43652. }
  43653. },
  43654. },
  43655. [
  43656. {
  43657. name: "Micro",
  43658. height: math.unit(6, "inches"),
  43659. },
  43660. {
  43661. name: "Normal",
  43662. height: math.unit(6 + 3/12, "feet"),
  43663. default: true
  43664. },
  43665. {
  43666. name: "Macro",
  43667. height: math.unit(25, "feet")
  43668. },
  43669. ]
  43670. ))
  43671. characterMakers.push(() => makeCharacter(
  43672. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  43673. {
  43674. front: {
  43675. height: math.unit(80, "meters"),
  43676. weight: math.unit(7000, "tonnes"),
  43677. name: "Front",
  43678. image: {
  43679. source: "./media/characters/tef/front.svg",
  43680. extra: 2036/1991,
  43681. bottom: 54/2090
  43682. }
  43683. },
  43684. back: {
  43685. height: math.unit(80, "meters"),
  43686. weight: math.unit(7000, "tonnes"),
  43687. name: "Back",
  43688. image: {
  43689. source: "./media/characters/tef/back.svg",
  43690. extra: 2036/1991,
  43691. bottom: 54/2090
  43692. }
  43693. },
  43694. },
  43695. [
  43696. {
  43697. name: "Macro",
  43698. height: math.unit(80, "meters"),
  43699. default: true
  43700. },
  43701. ]
  43702. ))
  43703. characterMakers.push(() => makeCharacter(
  43704. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  43705. {
  43706. front: {
  43707. height: math.unit(13, "feet"),
  43708. weight: math.unit(6, "tons"),
  43709. name: "Front",
  43710. image: {
  43711. source: "./media/characters/rover/front.svg",
  43712. extra: 1233/1156,
  43713. bottom: 50/1283
  43714. }
  43715. },
  43716. back: {
  43717. height: math.unit(13, "feet"),
  43718. weight: math.unit(6, "tons"),
  43719. name: "Back",
  43720. image: {
  43721. source: "./media/characters/rover/back.svg",
  43722. extra: 1327/1258,
  43723. bottom: 39/1366
  43724. }
  43725. },
  43726. },
  43727. [
  43728. {
  43729. name: "Normal",
  43730. height: math.unit(13, "feet"),
  43731. default: true
  43732. },
  43733. {
  43734. name: "Macro",
  43735. height: math.unit(1300, "feet")
  43736. },
  43737. {
  43738. name: "Megamacro",
  43739. height: math.unit(1300, "miles")
  43740. },
  43741. {
  43742. name: "Gigamacro",
  43743. height: math.unit(1300000, "miles")
  43744. },
  43745. ]
  43746. ))
  43747. characterMakers.push(() => makeCharacter(
  43748. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  43749. {
  43750. front: {
  43751. height: math.unit(10, "feet"),
  43752. weight: math.unit(500, "lb"),
  43753. name: "Front",
  43754. image: {
  43755. source: "./media/characters/ariz/front.svg",
  43756. extra: 461/450,
  43757. bottom: 16/477
  43758. }
  43759. },
  43760. },
  43761. [
  43762. {
  43763. name: "MiniMacro",
  43764. height: math.unit(10, "feet"),
  43765. default: true
  43766. },
  43767. ]
  43768. ))
  43769. characterMakers.push(() => makeCharacter(
  43770. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  43771. {
  43772. front: {
  43773. height: math.unit(6, "feet"),
  43774. weight: math.unit(140, "lb"),
  43775. name: "Front",
  43776. image: {
  43777. source: "./media/characters/sigrun/front.svg",
  43778. extra: 1418/1359,
  43779. bottom: 27/1445
  43780. }
  43781. },
  43782. },
  43783. [
  43784. {
  43785. name: "Macro",
  43786. height: math.unit(35, "feet"),
  43787. default: true
  43788. },
  43789. ]
  43790. ))
  43791. characterMakers.push(() => makeCharacter(
  43792. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  43793. {
  43794. front: {
  43795. height: math.unit(6, "feet"),
  43796. weight: math.unit(150, "lb"),
  43797. name: "Front",
  43798. image: {
  43799. source: "./media/characters/numin/front.svg",
  43800. extra: 1433/1388,
  43801. bottom: 12/1445
  43802. }
  43803. },
  43804. },
  43805. [
  43806. {
  43807. name: "Macro",
  43808. height: math.unit(21.5, "km"),
  43809. default: true
  43810. },
  43811. ]
  43812. ))
  43813. characterMakers.push(() => makeCharacter(
  43814. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  43815. {
  43816. front: {
  43817. height: math.unit(6, "feet"),
  43818. weight: math.unit(463, "lb"),
  43819. name: "Front",
  43820. image: {
  43821. source: "./media/characters/melwa/front.svg",
  43822. extra: 1307/1248,
  43823. bottom: 93/1400
  43824. }
  43825. },
  43826. },
  43827. [
  43828. {
  43829. name: "Macro",
  43830. height: math.unit(50, "meters"),
  43831. default: true
  43832. },
  43833. ]
  43834. ))
  43835. characterMakers.push(() => makeCharacter(
  43836. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  43837. {
  43838. front: {
  43839. height: math.unit(325, "feet"),
  43840. name: "Front",
  43841. image: {
  43842. source: "./media/characters/zorkaiju/front.svg",
  43843. extra: 1955/1814,
  43844. bottom: 40/1995
  43845. }
  43846. },
  43847. frontExtended: {
  43848. height: math.unit(325, "feet"),
  43849. name: "Front (Extended)",
  43850. image: {
  43851. source: "./media/characters/zorkaiju/front-extended.svg",
  43852. extra: 1955/1814,
  43853. bottom: 40/1995
  43854. }
  43855. },
  43856. side: {
  43857. height: math.unit(325, "feet"),
  43858. name: "Side",
  43859. image: {
  43860. source: "./media/characters/zorkaiju/side.svg",
  43861. extra: 1495/1396,
  43862. bottom: 17/1512
  43863. }
  43864. },
  43865. sideExtended: {
  43866. height: math.unit(325, "feet"),
  43867. name: "Side (Extended)",
  43868. image: {
  43869. source: "./media/characters/zorkaiju/side-extended.svg",
  43870. extra: 1495/1396,
  43871. bottom: 17/1512
  43872. }
  43873. },
  43874. back: {
  43875. height: math.unit(325, "feet"),
  43876. name: "Back",
  43877. image: {
  43878. source: "./media/characters/zorkaiju/back.svg",
  43879. extra: 1959/1821,
  43880. bottom: 31/1990
  43881. }
  43882. },
  43883. backExtended: {
  43884. height: math.unit(325, "feet"),
  43885. name: "Back (Extended)",
  43886. image: {
  43887. source: "./media/characters/zorkaiju/back-extended.svg",
  43888. extra: 1959/1821,
  43889. bottom: 31/1990
  43890. }
  43891. },
  43892. hand: {
  43893. height: math.unit(58.4, "feet"),
  43894. name: "Hand",
  43895. image: {
  43896. source: "./media/characters/zorkaiju/hand.svg"
  43897. }
  43898. },
  43899. handExtended: {
  43900. height: math.unit(61.4, "feet"),
  43901. name: "Hand (Extended)",
  43902. image: {
  43903. source: "./media/characters/zorkaiju/hand-extended.svg"
  43904. }
  43905. },
  43906. foot: {
  43907. height: math.unit(95, "feet"),
  43908. name: "Foot",
  43909. image: {
  43910. source: "./media/characters/zorkaiju/foot.svg"
  43911. }
  43912. },
  43913. leftArm: {
  43914. height: math.unit(59, "feet"),
  43915. name: "Left Arm",
  43916. image: {
  43917. source: "./media/characters/zorkaiju/left-arm.svg"
  43918. }
  43919. },
  43920. rightArm: {
  43921. height: math.unit(59, "feet"),
  43922. name: "Right Arm",
  43923. image: {
  43924. source: "./media/characters/zorkaiju/right-arm.svg"
  43925. }
  43926. },
  43927. leftArmExtended: {
  43928. height: math.unit(59 * 1.033546, "feet"),
  43929. name: "Left Arm (Extended)",
  43930. image: {
  43931. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  43932. }
  43933. },
  43934. rightArmExtended: {
  43935. height: math.unit(59 * 1.0496, "feet"),
  43936. name: "Right Arm (Extended)",
  43937. image: {
  43938. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  43939. }
  43940. },
  43941. tail: {
  43942. height: math.unit(104, "feet"),
  43943. name: "Tail",
  43944. image: {
  43945. source: "./media/characters/zorkaiju/tail.svg"
  43946. }
  43947. },
  43948. tailExtended: {
  43949. height: math.unit(104, "feet"),
  43950. name: "Tail (Extended)",
  43951. image: {
  43952. source: "./media/characters/zorkaiju/tail-extended.svg"
  43953. }
  43954. },
  43955. tailBottom: {
  43956. height: math.unit(104, "feet"),
  43957. name: "Tail Bottom",
  43958. image: {
  43959. source: "./media/characters/zorkaiju/tail-bottom.svg"
  43960. }
  43961. },
  43962. crystal: {
  43963. height: math.unit(27.54, "feet"),
  43964. name: "Crystal",
  43965. image: {
  43966. source: "./media/characters/zorkaiju/crystal.svg"
  43967. }
  43968. },
  43969. },
  43970. [
  43971. {
  43972. name: "Kaiju",
  43973. height: math.unit(325, "feet"),
  43974. default: true
  43975. },
  43976. ]
  43977. ))
  43978. characterMakers.push(() => makeCharacter(
  43979. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  43980. {
  43981. front: {
  43982. height: math.unit(6 + 1/12, "feet"),
  43983. weight: math.unit(115, "lb"),
  43984. name: "Front",
  43985. image: {
  43986. source: "./media/characters/bailey-belfry/front.svg",
  43987. extra: 1240/1121,
  43988. bottom: 101/1341
  43989. }
  43990. },
  43991. },
  43992. [
  43993. {
  43994. name: "Normal",
  43995. height: math.unit(6 + 1/12, "feet"),
  43996. default: true
  43997. },
  43998. ]
  43999. ))
  44000. characterMakers.push(() => makeCharacter(
  44001. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  44002. {
  44003. side: {
  44004. height: math.unit(4, "meters"),
  44005. weight: math.unit(250, "kg"),
  44006. name: "Side",
  44007. image: {
  44008. source: "./media/characters/blacky/side.svg",
  44009. extra: 1027/919,
  44010. bottom: 43/1070
  44011. }
  44012. },
  44013. maw: {
  44014. height: math.unit(1, "meters"),
  44015. name: "Maw",
  44016. image: {
  44017. source: "./media/characters/blacky/maw.svg"
  44018. }
  44019. },
  44020. paw: {
  44021. height: math.unit(1, "meters"),
  44022. name: "Paw",
  44023. image: {
  44024. source: "./media/characters/blacky/paw.svg"
  44025. }
  44026. },
  44027. },
  44028. [
  44029. {
  44030. name: "Normal",
  44031. height: math.unit(4, "meters"),
  44032. default: true
  44033. },
  44034. ]
  44035. ))
  44036. characterMakers.push(() => makeCharacter(
  44037. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  44038. {
  44039. front: {
  44040. height: math.unit(170, "cm"),
  44041. weight: math.unit(66, "kg"),
  44042. name: "Front",
  44043. image: {
  44044. source: "./media/characters/thux-ei/front.svg",
  44045. extra: 1109/1011,
  44046. bottom: 8/1117
  44047. }
  44048. },
  44049. },
  44050. [
  44051. {
  44052. name: "Normal",
  44053. height: math.unit(170, "cm"),
  44054. default: true
  44055. },
  44056. ]
  44057. ))
  44058. characterMakers.push(() => makeCharacter(
  44059. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  44060. {
  44061. front: {
  44062. height: math.unit(5, "feet"),
  44063. weight: math.unit(120, "lb"),
  44064. name: "Front",
  44065. image: {
  44066. source: "./media/characters/roxanne-voltaire/front.svg",
  44067. extra: 1901/1779,
  44068. bottom: 53/1954
  44069. }
  44070. },
  44071. },
  44072. [
  44073. {
  44074. name: "Normal",
  44075. height: math.unit(5, "feet"),
  44076. default: true
  44077. },
  44078. {
  44079. name: "Giant",
  44080. height: math.unit(50, "feet")
  44081. },
  44082. {
  44083. name: "Titan",
  44084. height: math.unit(500, "feet")
  44085. },
  44086. {
  44087. name: "Macro",
  44088. height: math.unit(5000, "feet")
  44089. },
  44090. {
  44091. name: "Megamacro",
  44092. height: math.unit(50000, "feet")
  44093. },
  44094. {
  44095. name: "Gigamacro",
  44096. height: math.unit(500000, "feet")
  44097. },
  44098. {
  44099. name: "Teramacro",
  44100. height: math.unit(5e6, "feet")
  44101. },
  44102. ]
  44103. ))
  44104. characterMakers.push(() => makeCharacter(
  44105. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  44106. {
  44107. front: {
  44108. height: math.unit(6 + 2/12, "feet"),
  44109. name: "Front",
  44110. image: {
  44111. source: "./media/characters/squeaks/front.svg",
  44112. extra: 1823/1768,
  44113. bottom: 138/1961
  44114. }
  44115. },
  44116. },
  44117. [
  44118. {
  44119. name: "Micro",
  44120. height: math.unit(0.5, "inches")
  44121. },
  44122. {
  44123. name: "Normal",
  44124. height: math.unit(6 + 2/12, "feet"),
  44125. default: true
  44126. },
  44127. {
  44128. name: "Macro",
  44129. height: math.unit(600, "feet")
  44130. },
  44131. ]
  44132. ))
  44133. characterMakers.push(() => makeCharacter(
  44134. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  44135. {
  44136. front: {
  44137. height: math.unit(1.72, "meters"),
  44138. name: "Front",
  44139. image: {
  44140. source: "./media/characters/archinger/front.svg",
  44141. extra: 1861/1675,
  44142. bottom: 125/1986
  44143. }
  44144. },
  44145. back: {
  44146. height: math.unit(1.72, "meters"),
  44147. name: "Back",
  44148. image: {
  44149. source: "./media/characters/archinger/back.svg",
  44150. extra: 1844/1701,
  44151. bottom: 104/1948
  44152. }
  44153. },
  44154. cock: {
  44155. height: math.unit(0.59, "feet"),
  44156. name: "Cock",
  44157. image: {
  44158. source: "./media/characters/archinger/cock.svg"
  44159. }
  44160. },
  44161. },
  44162. [
  44163. {
  44164. name: "Normal",
  44165. height: math.unit(1.72, "meters"),
  44166. default: true
  44167. },
  44168. {
  44169. name: "Macro",
  44170. height: math.unit(84, "meters")
  44171. },
  44172. {
  44173. name: "Macro+",
  44174. height: math.unit(112, "meters")
  44175. },
  44176. {
  44177. name: "Macro++",
  44178. height: math.unit(960, "meters")
  44179. },
  44180. {
  44181. name: "Macro+++",
  44182. height: math.unit(4, "km")
  44183. },
  44184. {
  44185. name: "Macro++++",
  44186. height: math.unit(48, "km")
  44187. },
  44188. {
  44189. name: "Macro+++++",
  44190. height: math.unit(4500, "km")
  44191. },
  44192. ]
  44193. ))
  44194. characterMakers.push(() => makeCharacter(
  44195. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  44196. {
  44197. front: {
  44198. height: math.unit(5 + 5/12, "feet"),
  44199. name: "Front",
  44200. image: {
  44201. source: "./media/characters/alsnapz/front.svg",
  44202. extra: 1157/1065,
  44203. bottom: 42/1199
  44204. }
  44205. },
  44206. },
  44207. [
  44208. {
  44209. name: "Normal",
  44210. height: math.unit(5 + 5/12, "feet"),
  44211. default: true
  44212. },
  44213. ]
  44214. ))
  44215. characterMakers.push(() => makeCharacter(
  44216. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  44217. {
  44218. side: {
  44219. height: math.unit(3.2, "earths"),
  44220. name: "Side",
  44221. image: {
  44222. source: "./media/characters/mag/side.svg",
  44223. extra: 1331/1008,
  44224. bottom: 52/1383
  44225. }
  44226. },
  44227. wing: {
  44228. height: math.unit(1.94, "earths"),
  44229. name: "Wing",
  44230. image: {
  44231. source: "./media/characters/mag/wing.svg"
  44232. }
  44233. },
  44234. dick: {
  44235. height: math.unit(1.8, "earths"),
  44236. name: "Dick",
  44237. image: {
  44238. source: "./media/characters/mag/dick.svg"
  44239. }
  44240. },
  44241. ass: {
  44242. height: math.unit(1.33, "earths"),
  44243. name: "Ass",
  44244. image: {
  44245. source: "./media/characters/mag/ass.svg"
  44246. }
  44247. },
  44248. head: {
  44249. height: math.unit(1.1, "earths"),
  44250. name: "Head",
  44251. image: {
  44252. source: "./media/characters/mag/head.svg"
  44253. }
  44254. },
  44255. maw: {
  44256. height: math.unit(1.62, "earths"),
  44257. name: "Maw",
  44258. image: {
  44259. source: "./media/characters/mag/maw.svg"
  44260. }
  44261. },
  44262. },
  44263. [
  44264. {
  44265. name: "Small",
  44266. height: math.unit(162, "feet")
  44267. },
  44268. {
  44269. name: "Normal",
  44270. height: math.unit(3.2, "earths"),
  44271. default: true
  44272. },
  44273. ]
  44274. ))
  44275. characterMakers.push(() => makeCharacter(
  44276. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  44277. {
  44278. front: {
  44279. height: math.unit(512, "feet"),
  44280. weight: math.unit(63509, "tonnes"),
  44281. name: "Front",
  44282. image: {
  44283. source: "./media/characters/vorrel-harroc/front.svg",
  44284. extra: 1075/1063,
  44285. bottom: 62/1137
  44286. }
  44287. },
  44288. },
  44289. [
  44290. {
  44291. name: "Normal",
  44292. height: math.unit(10, "feet")
  44293. },
  44294. {
  44295. name: "Macro",
  44296. height: math.unit(512, "feet"),
  44297. default: true
  44298. },
  44299. {
  44300. name: "Megamacro",
  44301. height: math.unit(256, "miles")
  44302. },
  44303. {
  44304. name: "Gigamacro",
  44305. height: math.unit(4096, "miles")
  44306. },
  44307. ]
  44308. ))
  44309. characterMakers.push(() => makeCharacter(
  44310. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  44311. {
  44312. side: {
  44313. height: math.unit(50, "feet"),
  44314. name: "Side",
  44315. image: {
  44316. source: "./media/characters/froimar/side.svg",
  44317. extra: 855/638,
  44318. bottom: 99/954
  44319. }
  44320. },
  44321. },
  44322. [
  44323. {
  44324. name: "Macro",
  44325. height: math.unit(50, "feet"),
  44326. default: true
  44327. },
  44328. ]
  44329. ))
  44330. characterMakers.push(() => makeCharacter(
  44331. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  44332. {
  44333. front: {
  44334. height: math.unit(210, "miles"),
  44335. name: "Front",
  44336. image: {
  44337. source: "./media/characters/timothy/front.svg",
  44338. extra: 1007/943,
  44339. bottom: 62/1069
  44340. }
  44341. },
  44342. frontSkirt: {
  44343. height: math.unit(210, "miles"),
  44344. name: "Front (Skirt)",
  44345. image: {
  44346. source: "./media/characters/timothy/front-skirt.svg",
  44347. extra: 1007/943,
  44348. bottom: 62/1069
  44349. }
  44350. },
  44351. frontCoat: {
  44352. height: math.unit(210, "miles"),
  44353. name: "Front (Coat)",
  44354. image: {
  44355. source: "./media/characters/timothy/front-coat.svg",
  44356. extra: 1007/943,
  44357. bottom: 62/1069
  44358. }
  44359. },
  44360. },
  44361. [
  44362. {
  44363. name: "Macro",
  44364. height: math.unit(210, "miles"),
  44365. default: true
  44366. },
  44367. {
  44368. name: "Megamacro",
  44369. height: math.unit(210000, "miles")
  44370. },
  44371. ]
  44372. ))
  44373. characterMakers.push(() => makeCharacter(
  44374. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  44375. {
  44376. front: {
  44377. height: math.unit(188, "feet"),
  44378. name: "Front",
  44379. image: {
  44380. source: "./media/characters/pyotr/front.svg",
  44381. extra: 1912/1826,
  44382. bottom: 18/1930
  44383. }
  44384. },
  44385. },
  44386. [
  44387. {
  44388. name: "Macro",
  44389. height: math.unit(188, "feet"),
  44390. default: true
  44391. },
  44392. {
  44393. name: "Megamacro",
  44394. height: math.unit(8, "miles")
  44395. },
  44396. ]
  44397. ))
  44398. characterMakers.push(() => makeCharacter(
  44399. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  44400. {
  44401. side: {
  44402. height: math.unit(10, "feet"),
  44403. weight: math.unit(4500, "lb"),
  44404. name: "Side",
  44405. image: {
  44406. source: "./media/characters/ackart/side.svg",
  44407. extra: 1776/1668,
  44408. bottom: 116/1892
  44409. }
  44410. },
  44411. },
  44412. [
  44413. {
  44414. name: "Normal",
  44415. height: math.unit(10, "feet"),
  44416. default: true
  44417. },
  44418. ]
  44419. ))
  44420. characterMakers.push(() => makeCharacter(
  44421. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  44422. {
  44423. side: {
  44424. height: math.unit(21, "feet"),
  44425. name: "Side",
  44426. image: {
  44427. source: "./media/characters/nolow/side.svg",
  44428. extra: 1484/1434,
  44429. bottom: 85/1569
  44430. }
  44431. },
  44432. sideErect: {
  44433. height: math.unit(21, "feet"),
  44434. name: "Side (Erect)",
  44435. image: {
  44436. source: "./media/characters/nolow/side-erect.svg",
  44437. extra: 1484/1434,
  44438. bottom: 85/1569
  44439. }
  44440. },
  44441. },
  44442. [
  44443. {
  44444. name: "Regular",
  44445. height: math.unit(12, "feet")
  44446. },
  44447. {
  44448. name: "Big Chee",
  44449. height: math.unit(21, "feet"),
  44450. default: true
  44451. },
  44452. ]
  44453. ))
  44454. characterMakers.push(() => makeCharacter(
  44455. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  44456. {
  44457. front: {
  44458. height: math.unit(7, "feet"),
  44459. weight: math.unit(250, "lb"),
  44460. name: "Front",
  44461. image: {
  44462. source: "./media/characters/nines/front.svg",
  44463. extra: 1741/1607,
  44464. bottom: 41/1782
  44465. }
  44466. },
  44467. side: {
  44468. height: math.unit(7, "feet"),
  44469. weight: math.unit(250, "lb"),
  44470. name: "Side",
  44471. image: {
  44472. source: "./media/characters/nines/side.svg",
  44473. extra: 1854/1735,
  44474. bottom: 93/1947
  44475. }
  44476. },
  44477. back: {
  44478. height: math.unit(7, "feet"),
  44479. weight: math.unit(250, "lb"),
  44480. name: "Back",
  44481. image: {
  44482. source: "./media/characters/nines/back.svg",
  44483. extra: 1748/1615,
  44484. bottom: 20/1768
  44485. }
  44486. },
  44487. },
  44488. [
  44489. {
  44490. name: "Megamacro",
  44491. height: math.unit(99, "km"),
  44492. default: true
  44493. },
  44494. ]
  44495. ))
  44496. characterMakers.push(() => makeCharacter(
  44497. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  44498. {
  44499. front: {
  44500. height: math.unit(5 + 10/12, "feet"),
  44501. weight: math.unit(210, "lb"),
  44502. name: "Front",
  44503. image: {
  44504. source: "./media/characters/zenith/front.svg",
  44505. extra: 1531/1452,
  44506. bottom: 198/1729
  44507. }
  44508. },
  44509. back: {
  44510. height: math.unit(5 + 10/12, "feet"),
  44511. weight: math.unit(210, "lb"),
  44512. name: "Back",
  44513. image: {
  44514. source: "./media/characters/zenith/back.svg",
  44515. extra: 1571/1487,
  44516. bottom: 75/1646
  44517. }
  44518. },
  44519. },
  44520. [
  44521. {
  44522. name: "Normal",
  44523. height: math.unit(5 + 10/12, "feet"),
  44524. default: true
  44525. }
  44526. ]
  44527. ))
  44528. characterMakers.push(() => makeCharacter(
  44529. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  44530. {
  44531. front: {
  44532. height: math.unit(4, "feet"),
  44533. weight: math.unit(60, "lb"),
  44534. name: "Front",
  44535. image: {
  44536. source: "./media/characters/jasper/front.svg",
  44537. extra: 1450/1379,
  44538. bottom: 19/1469
  44539. }
  44540. },
  44541. },
  44542. [
  44543. {
  44544. name: "Normal",
  44545. height: math.unit(4, "feet"),
  44546. default: true
  44547. },
  44548. ]
  44549. ))
  44550. characterMakers.push(() => makeCharacter(
  44551. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  44552. {
  44553. front: {
  44554. height: math.unit(6 + 5/12, "feet"),
  44555. weight: math.unit(290, "lb"),
  44556. name: "Front",
  44557. image: {
  44558. source: "./media/characters/tiberius-thyben/front.svg",
  44559. extra: 757/739,
  44560. bottom: 39/796
  44561. }
  44562. },
  44563. },
  44564. [
  44565. {
  44566. name: "Micro",
  44567. height: math.unit(1.5, "inches")
  44568. },
  44569. {
  44570. name: "Normal",
  44571. height: math.unit(6 + 5/12, "feet"),
  44572. default: true
  44573. },
  44574. {
  44575. name: "Macro",
  44576. height: math.unit(300, "feet")
  44577. },
  44578. ]
  44579. ))
  44580. characterMakers.push(() => makeCharacter(
  44581. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  44582. {
  44583. front: {
  44584. height: math.unit(5 + 6/12, "feet"),
  44585. weight: math.unit(60, "kg"),
  44586. name: "Front",
  44587. image: {
  44588. source: "./media/characters/sabre/front.svg",
  44589. extra: 738/671,
  44590. bottom: 27/765
  44591. }
  44592. },
  44593. },
  44594. [
  44595. {
  44596. name: "Teeny",
  44597. height: math.unit(2, "inches")
  44598. },
  44599. {
  44600. name: "Smol",
  44601. height: math.unit(8, "inches")
  44602. },
  44603. {
  44604. name: "Normal",
  44605. height: math.unit(5 + 6/12, "feet"),
  44606. default: true
  44607. },
  44608. {
  44609. name: "Mini-Macro",
  44610. height: math.unit(15, "feet")
  44611. },
  44612. {
  44613. name: "Macro",
  44614. height: math.unit(50, "feet")
  44615. },
  44616. ]
  44617. ))
  44618. characterMakers.push(() => makeCharacter(
  44619. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  44620. {
  44621. front: {
  44622. height: math.unit(6 + 4/12, "feet"),
  44623. weight: math.unit(170, "lb"),
  44624. name: "Front",
  44625. image: {
  44626. source: "./media/characters/charlie/front.svg",
  44627. extra: 1348/1228,
  44628. bottom: 15/1363
  44629. }
  44630. },
  44631. },
  44632. [
  44633. {
  44634. name: "Macro",
  44635. height: math.unit(1700, "meters"),
  44636. default: true
  44637. },
  44638. {
  44639. name: "MegaMacro",
  44640. height: math.unit(20400, "meters")
  44641. },
  44642. ]
  44643. ))
  44644. characterMakers.push(() => makeCharacter(
  44645. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  44646. {
  44647. front: {
  44648. height: math.unit(1.96, "meters"),
  44649. weight: math.unit(220, "lb"),
  44650. name: "Front",
  44651. image: {
  44652. source: "./media/characters/susan-grant/front.svg",
  44653. extra: 482/478,
  44654. bottom: 7/489
  44655. }
  44656. },
  44657. },
  44658. [
  44659. {
  44660. name: "Normal",
  44661. height: math.unit(1.96, "meters"),
  44662. default: true
  44663. },
  44664. {
  44665. name: "Macro",
  44666. height: math.unit(76.2, "meters")
  44667. },
  44668. {
  44669. name: "MegaMacro",
  44670. height: math.unit(305, "meters")
  44671. },
  44672. {
  44673. name: "GigaMacro",
  44674. height: math.unit(1220, "meters")
  44675. },
  44676. {
  44677. name: "SuperMacro",
  44678. height: math.unit(4878, "meters")
  44679. },
  44680. ]
  44681. ))
  44682. characterMakers.push(() => makeCharacter(
  44683. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  44684. {
  44685. front: {
  44686. height: math.unit(5 + 4/12, "feet"),
  44687. weight: math.unit(110, "lb"),
  44688. name: "Front",
  44689. image: {
  44690. source: "./media/characters/axel-isanov/front.svg",
  44691. extra: 1096/1065,
  44692. bottom: 13/1109
  44693. }
  44694. },
  44695. },
  44696. [
  44697. {
  44698. name: "Normal",
  44699. height: math.unit(5 + 4/12, "feet"),
  44700. default: true
  44701. },
  44702. ]
  44703. ))
  44704. characterMakers.push(() => makeCharacter(
  44705. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  44706. {
  44707. front: {
  44708. height: math.unit(9, "feet"),
  44709. weight: math.unit(467, "lb"),
  44710. name: "Front",
  44711. image: {
  44712. source: "./media/characters/necahual/front.svg",
  44713. extra: 920/873,
  44714. bottom: 26/946
  44715. }
  44716. },
  44717. back: {
  44718. height: math.unit(9, "feet"),
  44719. weight: math.unit(467, "lb"),
  44720. name: "Back",
  44721. image: {
  44722. source: "./media/characters/necahual/back.svg",
  44723. extra: 930/884,
  44724. bottom: 16/946
  44725. }
  44726. },
  44727. frontUnderwear: {
  44728. height: math.unit(9, "feet"),
  44729. weight: math.unit(467, "lb"),
  44730. name: "Front (Underwear)",
  44731. image: {
  44732. source: "./media/characters/necahual/front-underwear.svg",
  44733. extra: 920/873,
  44734. bottom: 26/946
  44735. }
  44736. },
  44737. frontDressed: {
  44738. height: math.unit(9, "feet"),
  44739. weight: math.unit(467, "lb"),
  44740. name: "Front (Dressed)",
  44741. image: {
  44742. source: "./media/characters/necahual/front-dressed.svg",
  44743. extra: 920/873,
  44744. bottom: 26/946
  44745. }
  44746. },
  44747. },
  44748. [
  44749. {
  44750. name: "Comprsesed",
  44751. height: math.unit(9, "feet")
  44752. },
  44753. {
  44754. name: "Natural",
  44755. height: math.unit(15, "feet"),
  44756. default: true
  44757. },
  44758. {
  44759. name: "Boosted",
  44760. height: math.unit(50, "feet")
  44761. },
  44762. {
  44763. name: "Boosted+",
  44764. height: math.unit(150, "feet")
  44765. },
  44766. {
  44767. name: "Max",
  44768. height: math.unit(500, "feet")
  44769. },
  44770. ]
  44771. ))
  44772. characterMakers.push(() => makeCharacter(
  44773. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  44774. {
  44775. front: {
  44776. height: math.unit(22 + 1/12, "feet"),
  44777. weight: math.unit(3200, "lb"),
  44778. name: "Front",
  44779. image: {
  44780. source: "./media/characters/theo-acacia/front.svg",
  44781. extra: 1796/1741,
  44782. bottom: 83/1879
  44783. }
  44784. },
  44785. frontUnderwear: {
  44786. height: math.unit(22 + 1/12, "feet"),
  44787. weight: math.unit(3200, "lb"),
  44788. name: "Front (Underwear)",
  44789. image: {
  44790. source: "./media/characters/theo-acacia/front-underwear.svg",
  44791. extra: 1796/1741,
  44792. bottom: 83/1879
  44793. }
  44794. },
  44795. frontNude: {
  44796. height: math.unit(22 + 1/12, "feet"),
  44797. weight: math.unit(3200, "lb"),
  44798. name: "Front (Nude)",
  44799. image: {
  44800. source: "./media/characters/theo-acacia/front-nude.svg",
  44801. extra: 1796/1741,
  44802. bottom: 83/1879
  44803. }
  44804. },
  44805. },
  44806. [
  44807. {
  44808. name: "Normal",
  44809. height: math.unit(22 + 1/12, "feet"),
  44810. default: true
  44811. },
  44812. ]
  44813. ))
  44814. characterMakers.push(() => makeCharacter(
  44815. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44816. {
  44817. front: {
  44818. height: math.unit(20, "feet"),
  44819. name: "Front",
  44820. image: {
  44821. source: "./media/characters/astra/front.svg",
  44822. extra: 1850/1714,
  44823. bottom: 106/1956
  44824. }
  44825. },
  44826. frontUndressed: {
  44827. height: math.unit(20, "feet"),
  44828. name: "Front (Undressed)",
  44829. image: {
  44830. source: "./media/characters/astra/front-undressed.svg",
  44831. extra: 1926/1749,
  44832. bottom: 0/1926
  44833. }
  44834. },
  44835. hand: {
  44836. height: math.unit(1.53, "feet"),
  44837. name: "Hand",
  44838. image: {
  44839. source: "./media/characters/astra/hand.svg"
  44840. }
  44841. },
  44842. paw: {
  44843. height: math.unit(1.53, "feet"),
  44844. name: "Paw",
  44845. image: {
  44846. source: "./media/characters/astra/paw.svg"
  44847. }
  44848. },
  44849. },
  44850. [
  44851. {
  44852. name: "Smallest",
  44853. height: math.unit(20, "feet")
  44854. },
  44855. {
  44856. name: "Normal",
  44857. height: math.unit(1e9, "miles"),
  44858. default: true
  44859. },
  44860. {
  44861. name: "Larger",
  44862. height: math.unit(5, "multiverses")
  44863. },
  44864. {
  44865. name: "Largest",
  44866. height: math.unit(1e9, "multiverses")
  44867. },
  44868. ]
  44869. ))
  44870. characterMakers.push(() => makeCharacter(
  44871. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44872. {
  44873. front: {
  44874. height: math.unit(8, "feet"),
  44875. name: "Front",
  44876. image: {
  44877. source: "./media/characters/breanna/front.svg",
  44878. extra: 1912/1632,
  44879. bottom: 33/1945
  44880. }
  44881. },
  44882. },
  44883. [
  44884. {
  44885. name: "Smallest",
  44886. height: math.unit(8, "feet")
  44887. },
  44888. {
  44889. name: "Normal",
  44890. height: math.unit(1, "mile"),
  44891. default: true
  44892. },
  44893. {
  44894. name: "Maximum",
  44895. height: math.unit(1500000000000, "lightyears")
  44896. },
  44897. ]
  44898. ))
  44899. characterMakers.push(() => makeCharacter(
  44900. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  44901. {
  44902. front: {
  44903. height: math.unit(5 + 11/12, "feet"),
  44904. weight: math.unit(155, "lb"),
  44905. name: "Front",
  44906. image: {
  44907. source: "./media/characters/cai/front.svg",
  44908. extra: 1823/1702,
  44909. bottom: 32/1855
  44910. }
  44911. },
  44912. back: {
  44913. height: math.unit(5 + 11/12, "feet"),
  44914. weight: math.unit(155, "lb"),
  44915. name: "Back",
  44916. image: {
  44917. source: "./media/characters/cai/back.svg",
  44918. extra: 1809/1708,
  44919. bottom: 31/1840
  44920. }
  44921. },
  44922. },
  44923. [
  44924. {
  44925. name: "Normal",
  44926. height: math.unit(5 + 11/12, "feet"),
  44927. default: true
  44928. },
  44929. {
  44930. name: "Big",
  44931. height: math.unit(15, "feet")
  44932. },
  44933. {
  44934. name: "Macro",
  44935. height: math.unit(200, "feet")
  44936. },
  44937. ]
  44938. ))
  44939. characterMakers.push(() => makeCharacter(
  44940. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  44941. {
  44942. front: {
  44943. height: math.unit(5 + 6/12, "feet"),
  44944. weight: math.unit(160, "lb"),
  44945. name: "Front",
  44946. image: {
  44947. source: "./media/characters/zanna-virtuedòttir/front.svg",
  44948. extra: 1227/1174,
  44949. bottom: 37/1264
  44950. }
  44951. },
  44952. },
  44953. [
  44954. {
  44955. name: "Macro",
  44956. height: math.unit(444, "meters"),
  44957. default: true
  44958. },
  44959. ]
  44960. ))
  44961. characterMakers.push(() => makeCharacter(
  44962. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  44963. {
  44964. front: {
  44965. height: math.unit(18 + 7/12, "feet"),
  44966. name: "Front",
  44967. image: {
  44968. source: "./media/characters/rex/front.svg",
  44969. extra: 1941/1807,
  44970. bottom: 66/2007
  44971. }
  44972. },
  44973. back: {
  44974. height: math.unit(18 + 7/12, "feet"),
  44975. name: "Back",
  44976. image: {
  44977. source: "./media/characters/rex/back.svg",
  44978. extra: 1937/1822,
  44979. bottom: 42/1979
  44980. }
  44981. },
  44982. boot: {
  44983. height: math.unit(3.45, "feet"),
  44984. name: "Boot",
  44985. image: {
  44986. source: "./media/characters/rex/boot.svg"
  44987. }
  44988. },
  44989. paw: {
  44990. height: math.unit(4.17, "feet"),
  44991. name: "Paw",
  44992. image: {
  44993. source: "./media/characters/rex/paw.svg"
  44994. }
  44995. },
  44996. head: {
  44997. height: math.unit(6.728, "feet"),
  44998. name: "Head",
  44999. image: {
  45000. source: "./media/characters/rex/head.svg"
  45001. }
  45002. },
  45003. },
  45004. [
  45005. {
  45006. name: "Nano",
  45007. height: math.unit(18 + 7/12, "feet")
  45008. },
  45009. {
  45010. name: "Micro",
  45011. height: math.unit(1.5, "megameters")
  45012. },
  45013. {
  45014. name: "Normal",
  45015. height: math.unit(440, "megameters"),
  45016. default: true
  45017. },
  45018. {
  45019. name: "Macro",
  45020. height: math.unit(2.5, "gigameters")
  45021. },
  45022. {
  45023. name: "Gigamacro",
  45024. height: math.unit(2, "galaxies")
  45025. },
  45026. ]
  45027. ))
  45028. characterMakers.push(() => makeCharacter(
  45029. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  45030. {
  45031. side: {
  45032. height: math.unit(32, "feet"),
  45033. weight: math.unit(250000, "lb"),
  45034. name: "Side",
  45035. image: {
  45036. source: "./media/characters/silverwing/side.svg",
  45037. extra: 1100/1019,
  45038. bottom: 204/1304
  45039. }
  45040. },
  45041. },
  45042. [
  45043. {
  45044. name: "Normal",
  45045. height: math.unit(32, "feet"),
  45046. default: true
  45047. },
  45048. ]
  45049. ))
  45050. characterMakers.push(() => makeCharacter(
  45051. { name: "Tristan Hawthorne", species: ["skunk", "raichu", "umbreon"], tags: ["anthro"] },
  45052. {
  45053. skunkFront: {
  45054. height: math.unit(4 + 6/12, "feet"),
  45055. weight: math.unit(120, "lb"),
  45056. name: "Front",
  45057. image: {
  45058. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  45059. extra: 330/318,
  45060. bottom: 25/355
  45061. },
  45062. form: "skunk",
  45063. default: true
  45064. },
  45065. alolanUmbraichu_front: {
  45066. height: math.unit(2 + 6/12, "feet"),
  45067. name: "Front",
  45068. image: {
  45069. source: "./media/characters/tristan-hawthorne/alolan-umbraichu-front.svg",
  45070. extra: 389/350,
  45071. bottom: 33/422
  45072. },
  45073. form: "alolan-umbraichu",
  45074. default: true
  45075. },
  45076. },
  45077. [
  45078. {
  45079. name: "Normal",
  45080. height: math.unit(4 + 6/12, "feet"),
  45081. form: "skunk",
  45082. default: true
  45083. },
  45084. {
  45085. name: "Normal",
  45086. height: math.unit(2 + 6/12, "feet"),
  45087. form: "alolan-umbraichu",
  45088. default: true
  45089. },
  45090. ],
  45091. {
  45092. "skunk": {
  45093. name: "Skunk",
  45094. default: true
  45095. },
  45096. "alolan-umbraichu": {
  45097. name: "Alolan Umbraichu",
  45098. },
  45099. }
  45100. ))
  45101. characterMakers.push(() => makeCharacter(
  45102. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  45103. {
  45104. front: {
  45105. height: math.unit(5 + 11/12, "feet"),
  45106. weight: math.unit(190, "lb"),
  45107. name: "Front",
  45108. image: {
  45109. source: "./media/characters/mizu/front.svg",
  45110. extra: 1988/1788,
  45111. bottom: 14/2002
  45112. }
  45113. },
  45114. },
  45115. [
  45116. {
  45117. name: "Normal",
  45118. height: math.unit(5 + 11/12, "feet"),
  45119. default: true
  45120. },
  45121. ]
  45122. ))
  45123. characterMakers.push(() => makeCharacter(
  45124. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  45125. {
  45126. front: {
  45127. height: math.unit(1.7, "feet"),
  45128. weight: math.unit(50, "lb"),
  45129. name: "Front",
  45130. image: {
  45131. source: "./media/characters/dechroma/front.svg",
  45132. extra: 1095/859,
  45133. bottom: 64/1159
  45134. }
  45135. },
  45136. },
  45137. [
  45138. {
  45139. name: "Normal",
  45140. height: math.unit(1.7, "feet"),
  45141. default: true
  45142. },
  45143. ]
  45144. ))
  45145. characterMakers.push(() => makeCharacter(
  45146. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  45147. {
  45148. side: {
  45149. height: math.unit(30, "feet"),
  45150. name: "Side",
  45151. image: {
  45152. source: "./media/characters/veluren-thanazel/side.svg",
  45153. extra: 1611/633,
  45154. bottom: 118/1729
  45155. }
  45156. },
  45157. front: {
  45158. height: math.unit(30, "feet"),
  45159. name: "Front",
  45160. image: {
  45161. source: "./media/characters/veluren-thanazel/front.svg",
  45162. extra: 1486/636,
  45163. bottom: 238/1724
  45164. }
  45165. },
  45166. head: {
  45167. height: math.unit(21.4, "feet"),
  45168. name: "Head",
  45169. image: {
  45170. source: "./media/characters/veluren-thanazel/head.svg"
  45171. }
  45172. },
  45173. genitals: {
  45174. height: math.unit(19.4, "feet"),
  45175. name: "Genitals",
  45176. image: {
  45177. source: "./media/characters/veluren-thanazel/genitals.svg"
  45178. }
  45179. },
  45180. },
  45181. [
  45182. {
  45183. name: "Social",
  45184. height: math.unit(6, "feet")
  45185. },
  45186. {
  45187. name: "Play",
  45188. height: math.unit(12, "feet")
  45189. },
  45190. {
  45191. name: "True",
  45192. height: math.unit(30, "feet"),
  45193. default: true
  45194. },
  45195. ]
  45196. ))
  45197. characterMakers.push(() => makeCharacter(
  45198. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  45199. {
  45200. front: {
  45201. height: math.unit(7 + 6/12, "feet"),
  45202. weight: math.unit(500, "kg"),
  45203. name: "Front",
  45204. image: {
  45205. source: "./media/characters/arcturas/front.svg",
  45206. extra: 1700/1500,
  45207. bottom: 145/1845
  45208. }
  45209. },
  45210. },
  45211. [
  45212. {
  45213. name: "Normal",
  45214. height: math.unit(7 + 6/12, "feet"),
  45215. default: true
  45216. },
  45217. ]
  45218. ))
  45219. characterMakers.push(() => makeCharacter(
  45220. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  45221. {
  45222. side: {
  45223. height: math.unit(6, "feet"),
  45224. weight: math.unit(2, "tons"),
  45225. name: "Side",
  45226. image: {
  45227. source: "./media/characters/vitaen/side.svg",
  45228. extra: 1157/617,
  45229. bottom: 122/1279
  45230. }
  45231. },
  45232. },
  45233. [
  45234. {
  45235. name: "Normal",
  45236. height: math.unit(6, "feet"),
  45237. default: true
  45238. },
  45239. ]
  45240. ))
  45241. characterMakers.push(() => makeCharacter(
  45242. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  45243. {
  45244. front: {
  45245. height: math.unit(19, "feet"),
  45246. name: "Front",
  45247. image: {
  45248. source: "./media/characters/fia-dreamweaver/front.svg",
  45249. extra: 1630/1504,
  45250. bottom: 25/1655
  45251. }
  45252. },
  45253. },
  45254. [
  45255. {
  45256. name: "Normal",
  45257. height: math.unit(19, "feet"),
  45258. default: true
  45259. },
  45260. ]
  45261. ))
  45262. characterMakers.push(() => makeCharacter(
  45263. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  45264. {
  45265. front: {
  45266. height: math.unit(5 + 4/12, "feet"),
  45267. name: "Front",
  45268. image: {
  45269. source: "./media/characters/artan/front.svg",
  45270. extra: 1618/1535,
  45271. bottom: 46/1664
  45272. }
  45273. },
  45274. back: {
  45275. height: math.unit(5 + 4/12, "feet"),
  45276. name: "Back",
  45277. image: {
  45278. source: "./media/characters/artan/back.svg",
  45279. extra: 1618/1543,
  45280. bottom: 31/1649
  45281. }
  45282. },
  45283. },
  45284. [
  45285. {
  45286. name: "Normal",
  45287. height: math.unit(5 + 4/12, "feet"),
  45288. default: true
  45289. },
  45290. ]
  45291. ))
  45292. characterMakers.push(() => makeCharacter(
  45293. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  45294. {
  45295. side: {
  45296. height: math.unit(182, "cm"),
  45297. weight: math.unit(1000, "lb"),
  45298. name: "Side",
  45299. image: {
  45300. source: "./media/characters/silver-dragon/side.svg",
  45301. extra: 710/287,
  45302. bottom: 88/798
  45303. }
  45304. },
  45305. },
  45306. [
  45307. {
  45308. name: "Normal",
  45309. height: math.unit(182, "cm"),
  45310. default: true
  45311. },
  45312. ]
  45313. ))
  45314. characterMakers.push(() => makeCharacter(
  45315. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  45316. {
  45317. side: {
  45318. height: math.unit(6 + 6/12, "feet"),
  45319. weight: math.unit(1.5, "tons"),
  45320. name: "Side",
  45321. image: {
  45322. source: "./media/characters/zephyr/side.svg",
  45323. extra: 1436/603,
  45324. bottom: 105/1541
  45325. }
  45326. },
  45327. },
  45328. [
  45329. {
  45330. name: "Normal",
  45331. height: math.unit(6 + 6/12, "feet"),
  45332. default: true
  45333. },
  45334. ]
  45335. ))
  45336. characterMakers.push(() => makeCharacter(
  45337. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  45338. {
  45339. side: {
  45340. height: math.unit(1, "feet"),
  45341. name: "Side",
  45342. image: {
  45343. source: "./media/characters/vixye/side.svg",
  45344. extra: 632/541,
  45345. bottom: 0/632
  45346. }
  45347. },
  45348. },
  45349. [
  45350. {
  45351. name: "Normal",
  45352. height: math.unit(1, "feet"),
  45353. default: true
  45354. },
  45355. {
  45356. name: "True",
  45357. height: math.unit(1e15, "multiverses")
  45358. },
  45359. ]
  45360. ))
  45361. characterMakers.push(() => makeCharacter(
  45362. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  45363. {
  45364. front: {
  45365. height: math.unit(8 + 2/12, "feet"),
  45366. weight: math.unit(650, "lb"),
  45367. name: "Front",
  45368. image: {
  45369. source: "./media/characters/darla-mac-lochlainn/front.svg",
  45370. extra: 1174/1137,
  45371. bottom: 82/1256
  45372. }
  45373. },
  45374. back: {
  45375. height: math.unit(8 + 2/12, "feet"),
  45376. weight: math.unit(650, "lb"),
  45377. name: "Back",
  45378. image: {
  45379. source: "./media/characters/darla-mac-lochlainn/back.svg",
  45380. extra: 1204/1157,
  45381. bottom: 46/1250
  45382. }
  45383. },
  45384. },
  45385. [
  45386. {
  45387. name: "Wildform",
  45388. height: math.unit(8 + 2/12, "feet"),
  45389. default: true
  45390. },
  45391. ]
  45392. ))
  45393. characterMakers.push(() => makeCharacter(
  45394. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  45395. {
  45396. front: {
  45397. height: math.unit(18, "feet"),
  45398. name: "Front",
  45399. image: {
  45400. source: "./media/characters/cyphin/front.svg",
  45401. extra: 970/886,
  45402. bottom: 42/1012
  45403. }
  45404. },
  45405. back: {
  45406. height: math.unit(18, "feet"),
  45407. name: "Back",
  45408. image: {
  45409. source: "./media/characters/cyphin/back.svg",
  45410. extra: 1009/894,
  45411. bottom: 24/1033
  45412. }
  45413. },
  45414. head: {
  45415. height: math.unit(5.05, "feet"),
  45416. name: "Head",
  45417. image: {
  45418. source: "./media/characters/cyphin/head.svg"
  45419. }
  45420. },
  45421. tailbud: {
  45422. height: math.unit(5, "feet"),
  45423. name: "Tailbud",
  45424. image: {
  45425. source: "./media/characters/cyphin/tailbud.svg"
  45426. }
  45427. },
  45428. },
  45429. [
  45430. ]
  45431. ))
  45432. characterMakers.push(() => makeCharacter(
  45433. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  45434. {
  45435. side: {
  45436. height: math.unit(10, "feet"),
  45437. weight: math.unit(6, "tons"),
  45438. name: "Side",
  45439. image: {
  45440. source: "./media/characters/raijin/side.svg",
  45441. extra: 1529/613,
  45442. bottom: 337/1866
  45443. }
  45444. },
  45445. },
  45446. [
  45447. {
  45448. name: "Normal",
  45449. height: math.unit(10, "feet"),
  45450. default: true
  45451. },
  45452. ]
  45453. ))
  45454. characterMakers.push(() => makeCharacter(
  45455. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  45456. {
  45457. side: {
  45458. height: math.unit(9, "feet"),
  45459. name: "Side",
  45460. image: {
  45461. source: "./media/characters/nilghais/side.svg",
  45462. extra: 1047/744,
  45463. bottom: 91/1138
  45464. }
  45465. },
  45466. head: {
  45467. height: math.unit(3.14, "feet"),
  45468. name: "Head",
  45469. image: {
  45470. source: "./media/characters/nilghais/head.svg"
  45471. }
  45472. },
  45473. mouth: {
  45474. height: math.unit(4.6, "feet"),
  45475. name: "Mouth",
  45476. image: {
  45477. source: "./media/characters/nilghais/mouth.svg"
  45478. }
  45479. },
  45480. wings: {
  45481. height: math.unit(24, "feet"),
  45482. name: "Wings",
  45483. image: {
  45484. source: "./media/characters/nilghais/wings.svg"
  45485. }
  45486. },
  45487. ass: {
  45488. height: math.unit(6.12, "feet"),
  45489. name: "Ass",
  45490. image: {
  45491. source: "./media/characters/nilghais/ass.svg"
  45492. }
  45493. },
  45494. },
  45495. [
  45496. {
  45497. name: "Normal",
  45498. height: math.unit(9, "feet"),
  45499. default: true
  45500. },
  45501. ]
  45502. ))
  45503. characterMakers.push(() => makeCharacter(
  45504. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  45505. {
  45506. regular: {
  45507. height: math.unit(16 + 2/12, "feet"),
  45508. weight: math.unit(2300, "lb"),
  45509. name: "Regular",
  45510. image: {
  45511. source: "./media/characters/zolgar/regular.svg",
  45512. extra: 1246/1004,
  45513. bottom: 124/1370
  45514. }
  45515. },
  45516. boxers: {
  45517. height: math.unit(16 + 2/12, "feet"),
  45518. weight: math.unit(2300, "lb"),
  45519. name: "Boxers",
  45520. image: {
  45521. source: "./media/characters/zolgar/boxers.svg",
  45522. extra: 1246/1004,
  45523. bottom: 124/1370
  45524. }
  45525. },
  45526. armored: {
  45527. height: math.unit(16 + 2/12, "feet"),
  45528. weight: math.unit(2300, "lb"),
  45529. name: "Armored",
  45530. image: {
  45531. source: "./media/characters/zolgar/armored.svg",
  45532. extra: 1246/1004,
  45533. bottom: 124/1370
  45534. }
  45535. },
  45536. goth: {
  45537. height: math.unit(16 + 2/12, "feet"),
  45538. weight: math.unit(2300, "lb"),
  45539. name: "Goth",
  45540. image: {
  45541. source: "./media/characters/zolgar/goth.svg",
  45542. extra: 1246/1004,
  45543. bottom: 124/1370
  45544. }
  45545. },
  45546. },
  45547. [
  45548. {
  45549. name: "Shrunken Down",
  45550. height: math.unit(9 + 2/12, "feet")
  45551. },
  45552. {
  45553. name: "Normal",
  45554. height: math.unit(16 + 2/12, "feet"),
  45555. default: true
  45556. },
  45557. ]
  45558. ))
  45559. characterMakers.push(() => makeCharacter(
  45560. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  45561. {
  45562. front: {
  45563. height: math.unit(6, "feet"),
  45564. weight: math.unit(168, "lb"),
  45565. name: "Front",
  45566. image: {
  45567. source: "./media/characters/luca/front.svg",
  45568. extra: 841/667,
  45569. bottom: 102/943
  45570. }
  45571. },
  45572. },
  45573. [
  45574. {
  45575. name: "Normal",
  45576. height: math.unit(6, "feet"),
  45577. default: true
  45578. },
  45579. ]
  45580. ))
  45581. characterMakers.push(() => makeCharacter(
  45582. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  45583. {
  45584. side: {
  45585. height: math.unit(7 + 3/12, "feet"),
  45586. weight: math.unit(312, "lb"),
  45587. name: "Side",
  45588. image: {
  45589. source: "./media/characters/zezo/side.svg",
  45590. extra: 1192/1067,
  45591. bottom: 63/1255
  45592. }
  45593. },
  45594. },
  45595. [
  45596. {
  45597. name: "Normal",
  45598. height: math.unit(7 + 3/12, "feet"),
  45599. default: true
  45600. },
  45601. ]
  45602. ))
  45603. characterMakers.push(() => makeCharacter(
  45604. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  45605. {
  45606. front: {
  45607. height: math.unit(5 + 5/12, "feet"),
  45608. weight: math.unit(170, "lb"),
  45609. name: "Front",
  45610. image: {
  45611. source: "./media/characters/mayso/front.svg",
  45612. extra: 1215/1108,
  45613. bottom: 16/1231
  45614. }
  45615. },
  45616. },
  45617. [
  45618. {
  45619. name: "Normal",
  45620. height: math.unit(5 + 5/12, "feet"),
  45621. default: true
  45622. },
  45623. ]
  45624. ))
  45625. characterMakers.push(() => makeCharacter(
  45626. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  45627. {
  45628. front: {
  45629. height: math.unit(4 + 3/12, "feet"),
  45630. weight: math.unit(80, "lb"),
  45631. name: "Front",
  45632. image: {
  45633. source: "./media/characters/hess/front.svg",
  45634. extra: 1200/1123,
  45635. bottom: 16/1216
  45636. }
  45637. },
  45638. },
  45639. [
  45640. {
  45641. name: "Normal",
  45642. height: math.unit(4 + 3/12, "feet"),
  45643. default: true
  45644. },
  45645. ]
  45646. ))
  45647. characterMakers.push(() => makeCharacter(
  45648. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  45649. {
  45650. front: {
  45651. height: math.unit(1.9, "meters"),
  45652. name: "Front",
  45653. image: {
  45654. source: "./media/characters/ashgar/front.svg",
  45655. extra: 1177/1146,
  45656. bottom: 99/1276
  45657. }
  45658. },
  45659. back: {
  45660. height: math.unit(1.9, "meters"),
  45661. name: "Back",
  45662. image: {
  45663. source: "./media/characters/ashgar/back.svg",
  45664. extra: 1201/1183,
  45665. bottom: 53/1254
  45666. }
  45667. },
  45668. feral: {
  45669. height: math.unit(1.4, "meters"),
  45670. name: "Feral",
  45671. image: {
  45672. source: "./media/characters/ashgar/feral.svg",
  45673. extra: 370/345,
  45674. bottom: 45/415
  45675. }
  45676. },
  45677. },
  45678. [
  45679. {
  45680. name: "Normal",
  45681. height: math.unit(1.9, "meters"),
  45682. default: true
  45683. },
  45684. ]
  45685. ))
  45686. characterMakers.push(() => makeCharacter(
  45687. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  45688. {
  45689. regular: {
  45690. height: math.unit(6, "feet"),
  45691. weight: math.unit(220, "lb"),
  45692. name: "Regular",
  45693. image: {
  45694. source: "./media/characters/phillip/regular.svg",
  45695. extra: 1373/1277,
  45696. bottom: 75/1448
  45697. }
  45698. },
  45699. dressed: {
  45700. height: math.unit(6, "feet"),
  45701. weight: math.unit(220, "lb"),
  45702. name: "Dressed",
  45703. image: {
  45704. source: "./media/characters/phillip/dressed.svg",
  45705. extra: 1373/1277,
  45706. bottom: 75/1448
  45707. }
  45708. },
  45709. paw: {
  45710. height: math.unit(1.44, "feet"),
  45711. name: "Paw",
  45712. image: {
  45713. source: "./media/characters/phillip/paw.svg"
  45714. }
  45715. },
  45716. },
  45717. [
  45718. {
  45719. name: "Normal",
  45720. height: math.unit(6, "feet"),
  45721. default: true
  45722. },
  45723. ]
  45724. ))
  45725. characterMakers.push(() => makeCharacter(
  45726. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  45727. {
  45728. side: {
  45729. height: math.unit(42, "feet"),
  45730. name: "Side",
  45731. image: {
  45732. source: "./media/characters/uvula/side.svg",
  45733. extra: 683/586,
  45734. bottom: 60/743
  45735. }
  45736. },
  45737. front: {
  45738. height: math.unit(42, "feet"),
  45739. name: "Front",
  45740. image: {
  45741. source: "./media/characters/uvula/front.svg",
  45742. extra: 705/613,
  45743. bottom: 54/759
  45744. }
  45745. },
  45746. maw: {
  45747. height: math.unit(23.5, "feet"),
  45748. name: "Maw",
  45749. image: {
  45750. source: "./media/characters/uvula/maw.svg"
  45751. }
  45752. },
  45753. },
  45754. [
  45755. {
  45756. name: "Original Size",
  45757. height: math.unit(14, "inches")
  45758. },
  45759. {
  45760. name: "Human Size",
  45761. height: math.unit(6, "feet")
  45762. },
  45763. {
  45764. name: "Big",
  45765. height: math.unit(42, "feet"),
  45766. default: true
  45767. },
  45768. {
  45769. name: "Bigger",
  45770. height: math.unit(100, "feet")
  45771. },
  45772. ]
  45773. ))
  45774. characterMakers.push(() => makeCharacter(
  45775. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  45776. {
  45777. front: {
  45778. height: math.unit(5 + 11/12, "feet"),
  45779. name: "Front",
  45780. image: {
  45781. source: "./media/characters/lannah/front.svg",
  45782. extra: 1208/1113,
  45783. bottom: 97/1305
  45784. }
  45785. },
  45786. },
  45787. [
  45788. {
  45789. name: "Normal",
  45790. height: math.unit(5 + 11/12, "feet"),
  45791. default: true
  45792. },
  45793. ]
  45794. ))
  45795. characterMakers.push(() => makeCharacter(
  45796. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  45797. {
  45798. front: {
  45799. height: math.unit(6 + 3/12, "feet"),
  45800. weight: math.unit(3.5, "tons"),
  45801. name: "Front",
  45802. image: {
  45803. source: "./media/characters/emberflame/front.svg",
  45804. extra: 1198/672,
  45805. bottom: 82/1280
  45806. }
  45807. },
  45808. side: {
  45809. height: math.unit(6 + 3/12, "feet"),
  45810. weight: math.unit(3.5, "tons"),
  45811. name: "Side",
  45812. image: {
  45813. source: "./media/characters/emberflame/side.svg",
  45814. extra: 938/527,
  45815. bottom: 56/994
  45816. }
  45817. },
  45818. },
  45819. [
  45820. {
  45821. name: "Normal",
  45822. height: math.unit(6 + 3/12, "feet"),
  45823. default: true
  45824. },
  45825. ]
  45826. ))
  45827. characterMakers.push(() => makeCharacter(
  45828. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  45829. {
  45830. side: {
  45831. height: math.unit(17.5, "feet"),
  45832. weight: math.unit(35, "tons"),
  45833. name: "Side",
  45834. image: {
  45835. source: "./media/characters/sophie-ambrose/side.svg",
  45836. extra: 1573/1242,
  45837. bottom: 71/1644
  45838. }
  45839. },
  45840. maw: {
  45841. height: math.unit(7.4, "feet"),
  45842. name: "Maw",
  45843. image: {
  45844. source: "./media/characters/sophie-ambrose/maw.svg"
  45845. }
  45846. },
  45847. },
  45848. [
  45849. {
  45850. name: "Normal",
  45851. height: math.unit(17.5, "feet"),
  45852. default: true
  45853. },
  45854. ]
  45855. ))
  45856. characterMakers.push(() => makeCharacter(
  45857. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  45858. {
  45859. front: {
  45860. height: math.unit(280, "feet"),
  45861. weight: math.unit(550, "tons"),
  45862. name: "Front",
  45863. image: {
  45864. source: "./media/characters/king-mugi/front.svg",
  45865. extra: 1102/947,
  45866. bottom: 104/1206
  45867. }
  45868. },
  45869. },
  45870. [
  45871. {
  45872. name: "King Mugi",
  45873. height: math.unit(280, "feet"),
  45874. default: true
  45875. },
  45876. ]
  45877. ))
  45878. characterMakers.push(() => makeCharacter(
  45879. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  45880. {
  45881. female: {
  45882. height: math.unit(300, "meters"),
  45883. name: "Front",
  45884. image: {
  45885. source: "./media/characters/nova-fox/female.svg",
  45886. extra: 664/632,
  45887. bottom: 51/715
  45888. },
  45889. form: "female",
  45890. default: true
  45891. },
  45892. male: {
  45893. height: math.unit(300, "meters"),
  45894. name: "Front",
  45895. image: {
  45896. source: "./media/characters/nova-fox/male.svg",
  45897. extra: 663/631,
  45898. bottom: 30/693
  45899. },
  45900. form: "male",
  45901. default: true
  45902. },
  45903. },
  45904. [
  45905. {
  45906. name: "Macro",
  45907. height: math.unit(300, "meters"),
  45908. default: true,
  45909. allForms: true
  45910. },
  45911. ],
  45912. {
  45913. "female": {
  45914. name: "Female",
  45915. default: true
  45916. },
  45917. "male": {
  45918. name: "Male",
  45919. },
  45920. }
  45921. ))
  45922. characterMakers.push(() => makeCharacter(
  45923. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  45924. {
  45925. front: {
  45926. height: math.unit(6 + 3/12, "feet"),
  45927. weight: math.unit(170, "lb"),
  45928. name: "Front",
  45929. image: {
  45930. source: "./media/characters/sam-bat/front.svg",
  45931. extra: 1601/1411,
  45932. bottom: 125/1726
  45933. }
  45934. },
  45935. back: {
  45936. height: math.unit(6 + 3/12, "feet"),
  45937. weight: math.unit(170, "lb"),
  45938. name: "Back",
  45939. image: {
  45940. source: "./media/characters/sam-bat/back.svg",
  45941. extra: 1577/1405,
  45942. bottom: 58/1635
  45943. }
  45944. },
  45945. },
  45946. [
  45947. {
  45948. name: "Normal",
  45949. height: math.unit(6 + 3/12, "feet"),
  45950. default: true
  45951. },
  45952. ]
  45953. ))
  45954. characterMakers.push(() => makeCharacter(
  45955. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  45956. {
  45957. front: {
  45958. height: math.unit(59, "feet"),
  45959. weight: math.unit(40000, "lb"),
  45960. name: "Front",
  45961. image: {
  45962. source: "./media/characters/inari/front.svg",
  45963. extra: 1884/1350,
  45964. bottom: 95/1979
  45965. }
  45966. },
  45967. },
  45968. [
  45969. {
  45970. name: "Gigantamax",
  45971. height: math.unit(59, "feet"),
  45972. default: true
  45973. },
  45974. ]
  45975. ))
  45976. characterMakers.push(() => makeCharacter(
  45977. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  45978. {
  45979. front: {
  45980. height: math.unit(5 + 8/12, "feet"),
  45981. name: "Front",
  45982. image: {
  45983. source: "./media/characters/elizabeth/front.svg",
  45984. extra: 1395/1298,
  45985. bottom: 54/1449
  45986. }
  45987. },
  45988. mouth: {
  45989. height: math.unit(1.97, "feet"),
  45990. name: "Mouth",
  45991. image: {
  45992. source: "./media/characters/elizabeth/mouth.svg"
  45993. }
  45994. },
  45995. foot: {
  45996. height: math.unit(1.17, "feet"),
  45997. name: "Foot",
  45998. image: {
  45999. source: "./media/characters/elizabeth/foot.svg"
  46000. }
  46001. },
  46002. },
  46003. [
  46004. {
  46005. name: "Normal",
  46006. height: math.unit(5 + 8/12, "feet"),
  46007. default: true
  46008. },
  46009. {
  46010. name: "Minimacro",
  46011. height: math.unit(18, "feet")
  46012. },
  46013. {
  46014. name: "Macro",
  46015. height: math.unit(180, "feet")
  46016. },
  46017. ]
  46018. ))
  46019. characterMakers.push(() => makeCharacter(
  46020. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  46021. {
  46022. front: {
  46023. height: math.unit(5 + 2/12, "feet"),
  46024. name: "Front",
  46025. image: {
  46026. source: "./media/characters/october-gossamer/front.svg",
  46027. extra: 505/454,
  46028. bottom: 7/512
  46029. }
  46030. },
  46031. back: {
  46032. height: math.unit(5 + 2/12, "feet"),
  46033. name: "Back",
  46034. image: {
  46035. source: "./media/characters/october-gossamer/back.svg",
  46036. extra: 501/454,
  46037. bottom: 11/512
  46038. }
  46039. },
  46040. },
  46041. [
  46042. {
  46043. name: "Normal",
  46044. height: math.unit(5 + 2/12, "feet"),
  46045. default: true
  46046. },
  46047. ]
  46048. ))
  46049. characterMakers.push(() => makeCharacter(
  46050. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  46051. {
  46052. front: {
  46053. height: math.unit(5, "feet"),
  46054. name: "Front",
  46055. image: {
  46056. source: "./media/characters/epiglottis/front.svg",
  46057. extra: 923/849,
  46058. bottom: 17/940
  46059. }
  46060. },
  46061. },
  46062. [
  46063. {
  46064. name: "Original Size",
  46065. height: math.unit(10, "inches")
  46066. },
  46067. {
  46068. name: "Human Size",
  46069. height: math.unit(5, "feet"),
  46070. default: true
  46071. },
  46072. {
  46073. name: "Big",
  46074. height: math.unit(25, "feet")
  46075. },
  46076. {
  46077. name: "Bigger",
  46078. height: math.unit(50, "feet")
  46079. },
  46080. {
  46081. name: "oh lawd",
  46082. height: math.unit(75, "feet")
  46083. },
  46084. ]
  46085. ))
  46086. characterMakers.push(() => makeCharacter(
  46087. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  46088. {
  46089. front: {
  46090. height: math.unit(2 + 4/12, "feet"),
  46091. weight: math.unit(60, "lb"),
  46092. name: "Front",
  46093. image: {
  46094. source: "./media/characters/lerm/front.svg",
  46095. extra: 796/790,
  46096. bottom: 79/875
  46097. }
  46098. },
  46099. },
  46100. [
  46101. {
  46102. name: "Normal",
  46103. height: math.unit(2 + 4/12, "feet"),
  46104. default: true
  46105. },
  46106. ]
  46107. ))
  46108. characterMakers.push(() => makeCharacter(
  46109. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  46110. {
  46111. front: {
  46112. height: math.unit(5.5, "feet"),
  46113. weight: math.unit(130, "lb"),
  46114. name: "Front",
  46115. image: {
  46116. source: "./media/characters/xena-nebadon/front.svg",
  46117. extra: 1828/1730,
  46118. bottom: 79/1907
  46119. }
  46120. },
  46121. },
  46122. [
  46123. {
  46124. name: "Tiny Puppy",
  46125. height: math.unit(3, "inches")
  46126. },
  46127. {
  46128. name: "Normal",
  46129. height: math.unit(5.5, "feet"),
  46130. default: true
  46131. },
  46132. {
  46133. name: "Lotta Lady",
  46134. height: math.unit(12, "feet")
  46135. },
  46136. {
  46137. name: "Pretty Big",
  46138. height: math.unit(100, "feet")
  46139. },
  46140. {
  46141. name: "Big",
  46142. height: math.unit(500, "feet")
  46143. },
  46144. {
  46145. name: "Skyscraper Toys",
  46146. height: math.unit(2500, "feet")
  46147. },
  46148. {
  46149. name: "Plane Catcher",
  46150. height: math.unit(8, "miles")
  46151. },
  46152. {
  46153. name: "Planet Toys",
  46154. height: math.unit(15, "earths")
  46155. },
  46156. {
  46157. name: "Stardust",
  46158. height: math.unit(0.25, "galaxies")
  46159. },
  46160. {
  46161. name: "Snacks",
  46162. height: math.unit(70, "universes")
  46163. },
  46164. ]
  46165. ))
  46166. characterMakers.push(() => makeCharacter(
  46167. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  46168. {
  46169. front: {
  46170. height: math.unit(1.6, "meters"),
  46171. weight: math.unit(60, "kg"),
  46172. name: "Front",
  46173. image: {
  46174. source: "./media/characters/bounty/front.svg",
  46175. extra: 1426/1308,
  46176. bottom: 15/1441
  46177. }
  46178. },
  46179. back: {
  46180. height: math.unit(1.6, "meters"),
  46181. weight: math.unit(60, "kg"),
  46182. name: "Back",
  46183. image: {
  46184. source: "./media/characters/bounty/back.svg",
  46185. extra: 1417/1307,
  46186. bottom: 8/1425
  46187. }
  46188. },
  46189. },
  46190. [
  46191. {
  46192. name: "Normal",
  46193. height: math.unit(1.6, "meters"),
  46194. default: true
  46195. },
  46196. {
  46197. name: "Macro",
  46198. height: math.unit(300, "meters")
  46199. },
  46200. ]
  46201. ))
  46202. characterMakers.push(() => makeCharacter(
  46203. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  46204. {
  46205. front: {
  46206. height: math.unit(2 + 8/12, "feet"),
  46207. weight: math.unit(15, "lb"),
  46208. name: "Front",
  46209. image: {
  46210. source: "./media/characters/mochi/front.svg",
  46211. extra: 1022/852,
  46212. bottom: 435/1457
  46213. }
  46214. },
  46215. back: {
  46216. height: math.unit(2 + 8/12, "feet"),
  46217. weight: math.unit(15, "lb"),
  46218. name: "Back",
  46219. image: {
  46220. source: "./media/characters/mochi/back.svg",
  46221. extra: 1335/1119,
  46222. bottom: 39/1374
  46223. }
  46224. },
  46225. bird: {
  46226. height: math.unit(2 + 8/12, "feet"),
  46227. weight: math.unit(15, "lb"),
  46228. name: "Bird",
  46229. image: {
  46230. source: "./media/characters/mochi/bird.svg",
  46231. extra: 1251/1113,
  46232. bottom: 178/1429
  46233. }
  46234. },
  46235. kaiju: {
  46236. height: math.unit(154, "feet"),
  46237. weight: math.unit(1e7, "lb"),
  46238. name: "Kaiju",
  46239. image: {
  46240. source: "./media/characters/mochi/kaiju.svg",
  46241. extra: 460/324,
  46242. bottom: 40/500
  46243. }
  46244. },
  46245. head: {
  46246. height: math.unit(1.21, "feet"),
  46247. name: "Head",
  46248. image: {
  46249. source: "./media/characters/mochi/head.svg"
  46250. }
  46251. },
  46252. alternateTail: {
  46253. height: math.unit(2 + 8/12, "feet"),
  46254. weight: math.unit(45, "lb"),
  46255. name: "Alternate Tail",
  46256. image: {
  46257. source: "./media/characters/mochi/alternate-tail.svg",
  46258. extra: 139/76,
  46259. bottom: 45/184
  46260. }
  46261. },
  46262. },
  46263. [
  46264. {
  46265. name: "Micro",
  46266. height: math.unit(2, "inches")
  46267. },
  46268. {
  46269. name: "Normal",
  46270. height: math.unit(2 + 8/12, "feet"),
  46271. default: true
  46272. },
  46273. {
  46274. name: "Macro",
  46275. height: math.unit(106, "feet")
  46276. },
  46277. ]
  46278. ))
  46279. characterMakers.push(() => makeCharacter(
  46280. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  46281. {
  46282. front: {
  46283. height: math.unit(5.67, "feet"),
  46284. weight: math.unit(135, "lb"),
  46285. name: "Front",
  46286. image: {
  46287. source: "./media/characters/sarel/front.svg",
  46288. extra: 865/788,
  46289. bottom: 97/962
  46290. }
  46291. },
  46292. back: {
  46293. height: math.unit(5.67, "feet"),
  46294. weight: math.unit(135, "lb"),
  46295. name: "Back",
  46296. image: {
  46297. source: "./media/characters/sarel/back.svg",
  46298. extra: 857/777,
  46299. bottom: 32/889
  46300. }
  46301. },
  46302. chozoan: {
  46303. height: math.unit(5.67, "feet"),
  46304. weight: math.unit(135, "lb"),
  46305. name: "Chozoan",
  46306. image: {
  46307. source: "./media/characters/sarel/chozoan.svg",
  46308. extra: 865/788,
  46309. bottom: 97/962
  46310. }
  46311. },
  46312. current: {
  46313. height: math.unit(5.67, "feet"),
  46314. weight: math.unit(135, "lb"),
  46315. name: "Current",
  46316. image: {
  46317. source: "./media/characters/sarel/current.svg",
  46318. extra: 865/788,
  46319. bottom: 97/962
  46320. }
  46321. },
  46322. head: {
  46323. height: math.unit(1.77, "feet"),
  46324. name: "Head",
  46325. image: {
  46326. source: "./media/characters/sarel/head.svg"
  46327. }
  46328. },
  46329. claws: {
  46330. height: math.unit(1.8, "feet"),
  46331. name: "Claws",
  46332. image: {
  46333. source: "./media/characters/sarel/claws.svg"
  46334. }
  46335. },
  46336. clawsAlt: {
  46337. height: math.unit(1.8, "feet"),
  46338. name: "Claws (Alt)",
  46339. image: {
  46340. source: "./media/characters/sarel/claws-alt.svg"
  46341. }
  46342. },
  46343. },
  46344. [
  46345. {
  46346. name: "Normal",
  46347. height: math.unit(5.67, "feet"),
  46348. default: true
  46349. },
  46350. ]
  46351. ))
  46352. characterMakers.push(() => makeCharacter(
  46353. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  46354. {
  46355. front: {
  46356. height: math.unit(5500, "feet"),
  46357. name: "Front",
  46358. image: {
  46359. source: "./media/characters/alyonia/front.svg",
  46360. extra: 1200/1135,
  46361. bottom: 29/1229
  46362. }
  46363. },
  46364. back: {
  46365. height: math.unit(5500, "feet"),
  46366. name: "Back",
  46367. image: {
  46368. source: "./media/characters/alyonia/back.svg",
  46369. extra: 1205/1138,
  46370. bottom: 10/1215
  46371. }
  46372. },
  46373. },
  46374. [
  46375. {
  46376. name: "Small",
  46377. height: math.unit(10, "feet")
  46378. },
  46379. {
  46380. name: "Macro",
  46381. height: math.unit(500, "feet")
  46382. },
  46383. {
  46384. name: "Mega Macro",
  46385. height: math.unit(5500, "feet"),
  46386. default: true
  46387. },
  46388. {
  46389. name: "Mega Macro+",
  46390. height: math.unit(500000, "feet")
  46391. },
  46392. {
  46393. name: "Giga Macro",
  46394. height: math.unit(3000, "miles")
  46395. },
  46396. {
  46397. name: "Tera Macro",
  46398. height: math.unit(2.8e6, "miles")
  46399. },
  46400. {
  46401. name: "Galactic",
  46402. height: math.unit(120000, "lightyears")
  46403. },
  46404. ]
  46405. ))
  46406. characterMakers.push(() => makeCharacter(
  46407. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  46408. {
  46409. werewolf: {
  46410. height: math.unit(8, "feet"),
  46411. weight: math.unit(425, "lb"),
  46412. name: "Werewolf",
  46413. image: {
  46414. source: "./media/characters/autumn/werewolf.svg",
  46415. extra: 2154/2031,
  46416. bottom: 160/2314
  46417. }
  46418. },
  46419. human: {
  46420. height: math.unit(5 + 8/12, "feet"),
  46421. weight: math.unit(150, "lb"),
  46422. name: "Human",
  46423. image: {
  46424. source: "./media/characters/autumn/human.svg",
  46425. extra: 1200/1149,
  46426. bottom: 30/1230
  46427. }
  46428. },
  46429. },
  46430. [
  46431. {
  46432. name: "Normal",
  46433. height: math.unit(8, "feet"),
  46434. default: true
  46435. },
  46436. ]
  46437. ))
  46438. characterMakers.push(() => makeCharacter(
  46439. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  46440. {
  46441. front: {
  46442. height: math.unit(8 + 5/12, "feet"),
  46443. weight: math.unit(825, "lb"),
  46444. name: "Front",
  46445. image: {
  46446. source: "./media/characters/cobalt-charizard/front.svg",
  46447. extra: 1268/1155,
  46448. bottom: 122/1390
  46449. }
  46450. },
  46451. side: {
  46452. height: math.unit(8 + 5/12, "feet"),
  46453. weight: math.unit(825, "lb"),
  46454. name: "Side",
  46455. image: {
  46456. source: "./media/characters/cobalt-charizard/side.svg",
  46457. extra: 1348/1257,
  46458. bottom: 58/1406
  46459. }
  46460. },
  46461. gMax: {
  46462. height: math.unit(134 + 11/12, "feet"),
  46463. name: "G-Max",
  46464. image: {
  46465. source: "./media/characters/cobalt-charizard/g-max.svg",
  46466. extra: 1835/1541,
  46467. bottom: 151/1986
  46468. }
  46469. },
  46470. },
  46471. [
  46472. {
  46473. name: "Normal",
  46474. height: math.unit(8 + 5/12, "feet"),
  46475. default: true
  46476. },
  46477. ]
  46478. ))
  46479. characterMakers.push(() => makeCharacter(
  46480. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  46481. {
  46482. front: {
  46483. height: math.unit(6 + 3/12, "feet"),
  46484. weight: math.unit(210, "lb"),
  46485. name: "Front",
  46486. image: {
  46487. source: "./media/characters/stella/front.svg",
  46488. extra: 3549/3335,
  46489. bottom: 51/3600
  46490. }
  46491. },
  46492. },
  46493. [
  46494. {
  46495. name: "Normal",
  46496. height: math.unit(6 + 3/12, "feet"),
  46497. default: true
  46498. },
  46499. ]
  46500. ))
  46501. characterMakers.push(() => makeCharacter(
  46502. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  46503. {
  46504. front: {
  46505. height: math.unit(5, "feet"),
  46506. weight: math.unit(90, "lb"),
  46507. name: "Front",
  46508. image: {
  46509. source: "./media/characters/riley-bishop/front.svg",
  46510. extra: 1450/1428,
  46511. bottom: 152/1602
  46512. }
  46513. },
  46514. },
  46515. [
  46516. {
  46517. name: "Normal",
  46518. height: math.unit(5, "feet"),
  46519. default: true
  46520. },
  46521. ]
  46522. ))
  46523. characterMakers.push(() => makeCharacter(
  46524. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  46525. {
  46526. side: {
  46527. height: math.unit(8 + 2/12, "feet"),
  46528. weight: math.unit(500, "kg"),
  46529. name: "Side",
  46530. image: {
  46531. source: "./media/characters/theo-arcanine/side.svg",
  46532. extra: 1342/1074,
  46533. bottom: 111/1453
  46534. }
  46535. },
  46536. },
  46537. [
  46538. {
  46539. name: "Normal",
  46540. height: math.unit(8 + 2/12, "feet"),
  46541. default: true
  46542. },
  46543. ]
  46544. ))
  46545. characterMakers.push(() => makeCharacter(
  46546. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  46547. {
  46548. front: {
  46549. height: math.unit(4, "feet"),
  46550. name: "Front",
  46551. image: {
  46552. source: "./media/characters/kali/front.svg",
  46553. extra: 1074/867,
  46554. bottom: 34/1108
  46555. }
  46556. },
  46557. back: {
  46558. height: math.unit(4, "feet"),
  46559. name: "Back",
  46560. image: {
  46561. source: "./media/characters/kali/back.svg",
  46562. extra: 1068/863,
  46563. bottom: 26/1094
  46564. }
  46565. },
  46566. frontAlt: {
  46567. height: math.unit(4, "feet"),
  46568. name: "Front (Alt)",
  46569. image: {
  46570. source: "./media/characters/kali/front-alt.svg",
  46571. extra: 1921/1357,
  46572. bottom: 70/1991
  46573. }
  46574. },
  46575. },
  46576. [
  46577. {
  46578. name: "Normal",
  46579. height: math.unit(4, "feet"),
  46580. default: true
  46581. },
  46582. {
  46583. name: "Big'vali",
  46584. height: math.unit(11, "feet")
  46585. },
  46586. {
  46587. name: "Macro",
  46588. height: math.unit(32, "meters")
  46589. },
  46590. {
  46591. name: "Macro+",
  46592. height: math.unit(150, "meters")
  46593. },
  46594. {
  46595. name: "Megamacro",
  46596. height: math.unit(7500, "meters")
  46597. },
  46598. {
  46599. name: "Megamacro+",
  46600. height: math.unit(80, "kilometers")
  46601. },
  46602. ]
  46603. ))
  46604. characterMakers.push(() => makeCharacter(
  46605. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  46606. {
  46607. side: {
  46608. height: math.unit(5 + 11/12, "feet"),
  46609. weight: math.unit(236, "lb"),
  46610. name: "Side",
  46611. image: {
  46612. source: "./media/characters/gapp/side.svg",
  46613. extra: 775/340,
  46614. bottom: 58/833
  46615. }
  46616. },
  46617. mouth: {
  46618. height: math.unit(2.98, "feet"),
  46619. name: "Mouth",
  46620. image: {
  46621. source: "./media/characters/gapp/mouth.svg"
  46622. }
  46623. },
  46624. },
  46625. [
  46626. {
  46627. name: "Normal",
  46628. height: math.unit(5 + 1/12, "feet"),
  46629. default: true
  46630. },
  46631. ]
  46632. ))
  46633. characterMakers.push(() => makeCharacter(
  46634. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  46635. {
  46636. front: {
  46637. height: math.unit(6, "feet"),
  46638. name: "Front",
  46639. image: {
  46640. source: "./media/characters/persephone/front.svg",
  46641. extra: 1895/1717,
  46642. bottom: 96/1991
  46643. }
  46644. },
  46645. back: {
  46646. height: math.unit(6, "feet"),
  46647. name: "Back",
  46648. image: {
  46649. source: "./media/characters/persephone/back.svg",
  46650. extra: 1868/1679,
  46651. bottom: 26/1894
  46652. }
  46653. },
  46654. casual: {
  46655. height: math.unit(6, "feet"),
  46656. name: "Casual",
  46657. image: {
  46658. source: "./media/characters/persephone/casual.svg",
  46659. extra: 1713/1541,
  46660. bottom: 76/1789
  46661. }
  46662. },
  46663. gaming: {
  46664. height: math.unit(3.55, "feet"),
  46665. name: "Gaming",
  46666. image: {
  46667. source: "./media/characters/persephone/gaming.svg",
  46668. extra: 1242/1038,
  46669. bottom: 66/1308
  46670. }
  46671. },
  46672. head: {
  46673. height: math.unit(2.15, "feet"),
  46674. name: "😐",
  46675. image: {
  46676. source: "./media/characters/persephone/head.svg"
  46677. }
  46678. },
  46679. talking: {
  46680. height: math.unit(2.5, "feet"),
  46681. name: "💬",
  46682. image: {
  46683. source: "./media/characters/persephone/talking.svg"
  46684. }
  46685. },
  46686. hmm: {
  46687. height: math.unit(2.28, "feet"),
  46688. name: "🤨",
  46689. image: {
  46690. source: "./media/characters/persephone/hmm.svg"
  46691. }
  46692. },
  46693. },
  46694. [
  46695. {
  46696. name: "Human Size",
  46697. height: math.unit(6, "feet")
  46698. },
  46699. {
  46700. name: "Big Steppy",
  46701. height: math.unit(600, "meters"),
  46702. default: true
  46703. },
  46704. {
  46705. name: "Galaxy Brain",
  46706. height: math.unit(1, "zettameter")
  46707. },
  46708. ]
  46709. ))
  46710. characterMakers.push(() => makeCharacter(
  46711. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  46712. {
  46713. front: {
  46714. height: math.unit(1.85, "meters"),
  46715. name: "Front",
  46716. image: {
  46717. source: "./media/characters/riley-foxthing/front.svg",
  46718. extra: 1495/1354,
  46719. bottom: 122/1617
  46720. }
  46721. },
  46722. frontAlt: {
  46723. height: math.unit(1.85, "meters"),
  46724. name: "Front (Alt)",
  46725. image: {
  46726. source: "./media/characters/riley-foxthing/front-alt.svg",
  46727. extra: 1572/1389,
  46728. bottom: 116/1688
  46729. }
  46730. },
  46731. },
  46732. [
  46733. {
  46734. name: "Normal Sized",
  46735. height: math.unit(1.85, "meters"),
  46736. default: true
  46737. },
  46738. {
  46739. name: "Quite Sizable",
  46740. height: math.unit(5, "meters")
  46741. },
  46742. {
  46743. name: "Rather Large",
  46744. height: math.unit(20, "meters")
  46745. },
  46746. {
  46747. name: "Macro",
  46748. height: math.unit(450, "meters")
  46749. },
  46750. {
  46751. name: "Giga",
  46752. height: math.unit(5, "km")
  46753. },
  46754. ]
  46755. ))
  46756. characterMakers.push(() => makeCharacter(
  46757. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  46758. {
  46759. front: {
  46760. height: math.unit(6, "feet"),
  46761. weight: math.unit(200, "lb"),
  46762. name: "Front",
  46763. image: {
  46764. source: "./media/characters/blizzard/front.svg",
  46765. extra: 1136/990,
  46766. bottom: 136/1272
  46767. }
  46768. },
  46769. back: {
  46770. height: math.unit(6, "feet"),
  46771. weight: math.unit(200, "lb"),
  46772. name: "Back",
  46773. image: {
  46774. source: "./media/characters/blizzard/back.svg",
  46775. extra: 1175/1034,
  46776. bottom: 97/1272
  46777. }
  46778. },
  46779. sitting: {
  46780. height: math.unit(3.725, "feet"),
  46781. weight: math.unit(200, "lb"),
  46782. name: "Sitting",
  46783. image: {
  46784. source: "./media/characters/blizzard/sitting.svg",
  46785. extra: 581/485,
  46786. bottom: 90/671
  46787. }
  46788. },
  46789. frontWizard: {
  46790. height: math.unit(7.9, "feet"),
  46791. weight: math.unit(200, "lb"),
  46792. name: "Front (Wizard)",
  46793. image: {
  46794. source: "./media/characters/blizzard/front-wizard.svg"
  46795. }
  46796. },
  46797. backWizard: {
  46798. height: math.unit(7.9, "feet"),
  46799. weight: math.unit(200, "lb"),
  46800. name: "Back (Wizard)",
  46801. image: {
  46802. source: "./media/characters/blizzard/back-wizard.svg"
  46803. }
  46804. },
  46805. frontNsfw: {
  46806. height: math.unit(6, "feet"),
  46807. weight: math.unit(200, "lb"),
  46808. name: "Front (NSFW)",
  46809. image: {
  46810. source: "./media/characters/blizzard/front-nsfw.svg",
  46811. extra: 1136/990,
  46812. bottom: 136/1272
  46813. }
  46814. },
  46815. backNsfw: {
  46816. height: math.unit(6, "feet"),
  46817. weight: math.unit(200, "lb"),
  46818. name: "Back (NSFW)",
  46819. image: {
  46820. source: "./media/characters/blizzard/back-nsfw.svg",
  46821. extra: 1175/1034,
  46822. bottom: 97/1272
  46823. }
  46824. },
  46825. sittingNsfw: {
  46826. height: math.unit(3.725, "feet"),
  46827. weight: math.unit(200, "lb"),
  46828. name: "Sitting (NSFW)",
  46829. image: {
  46830. source: "./media/characters/blizzard/sitting-nsfw.svg",
  46831. extra: 581/485,
  46832. bottom: 90/671
  46833. }
  46834. },
  46835. wizardFrontNsfw: {
  46836. height: math.unit(7.9, "feet"),
  46837. weight: math.unit(200, "lb"),
  46838. name: "Wizard (Front, NSFW)",
  46839. image: {
  46840. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  46841. }
  46842. },
  46843. },
  46844. [
  46845. {
  46846. name: "Normal",
  46847. height: math.unit(6, "feet"),
  46848. default: true
  46849. },
  46850. ]
  46851. ))
  46852. characterMakers.push(() => makeCharacter(
  46853. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  46854. {
  46855. front: {
  46856. height: math.unit(5 + 2/12, "feet"),
  46857. name: "Front",
  46858. image: {
  46859. source: "./media/characters/lumi/front.svg",
  46860. extra: 1328/1268,
  46861. bottom: 103/1431
  46862. }
  46863. },
  46864. back: {
  46865. height: math.unit(5 + 2/12, "feet"),
  46866. name: "Back",
  46867. image: {
  46868. source: "./media/characters/lumi/back.svg",
  46869. extra: 1381/1327,
  46870. bottom: 43/1424
  46871. }
  46872. },
  46873. },
  46874. [
  46875. {
  46876. name: "Normal",
  46877. height: math.unit(5 + 2/12, "feet"),
  46878. default: true
  46879. },
  46880. ]
  46881. ))
  46882. characterMakers.push(() => makeCharacter(
  46883. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  46884. {
  46885. front: {
  46886. height: math.unit(5 + 9/12, "feet"),
  46887. name: "Front",
  46888. image: {
  46889. source: "./media/characters/aliya-cotton/front.svg",
  46890. extra: 577/564,
  46891. bottom: 29/606
  46892. }
  46893. },
  46894. },
  46895. [
  46896. {
  46897. name: "Normal",
  46898. height: math.unit(5 + 9/12, "feet"),
  46899. default: true
  46900. },
  46901. ]
  46902. ))
  46903. characterMakers.push(() => makeCharacter(
  46904. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  46905. {
  46906. front: {
  46907. height: math.unit(2.7, "meters"),
  46908. weight: math.unit(25000, "lb"),
  46909. name: "Front",
  46910. image: {
  46911. source: "./media/characters/noah-luxray/front.svg",
  46912. extra: 1644/825,
  46913. bottom: 339/1983
  46914. }
  46915. },
  46916. side: {
  46917. height: math.unit(2.97, "meters"),
  46918. weight: math.unit(25000, "lb"),
  46919. name: "Side",
  46920. image: {
  46921. source: "./media/characters/noah-luxray/side.svg",
  46922. extra: 1319/650,
  46923. bottom: 163/1482
  46924. }
  46925. },
  46926. dick: {
  46927. height: math.unit(7.4, "feet"),
  46928. weight: math.unit(2500, "lb"),
  46929. name: "Dick",
  46930. image: {
  46931. source: "./media/characters/noah-luxray/dick.svg"
  46932. }
  46933. },
  46934. dickAlt: {
  46935. height: math.unit(10.83, "feet"),
  46936. weight: math.unit(2500, "lb"),
  46937. name: "Dick (Alt)",
  46938. image: {
  46939. source: "./media/characters/noah-luxray/dick-alt.svg"
  46940. }
  46941. },
  46942. },
  46943. [
  46944. {
  46945. name: "BIG",
  46946. height: math.unit(2.7, "meters"),
  46947. default: true
  46948. },
  46949. ]
  46950. ))
  46951. characterMakers.push(() => makeCharacter(
  46952. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  46953. {
  46954. standing: {
  46955. height: math.unit(183, "cm"),
  46956. weight: math.unit(68, "kg"),
  46957. name: "Standing",
  46958. image: {
  46959. source: "./media/characters/arion/standing.svg",
  46960. extra: 1869/1807,
  46961. bottom: 93/1962
  46962. }
  46963. },
  46964. reclining: {
  46965. height: math.unit(70.5, "cm"),
  46966. weight: math.unit(68, "lb"),
  46967. name: "Reclining",
  46968. image: {
  46969. source: "./media/characters/arion/reclining.svg",
  46970. extra: 937/870,
  46971. bottom: 63/1000
  46972. }
  46973. },
  46974. },
  46975. [
  46976. {
  46977. name: "Colossus Size, Low",
  46978. height: math.unit(33, "meters"),
  46979. default: true
  46980. },
  46981. {
  46982. name: "Colossus Size, Mid",
  46983. height: math.unit(52, "meters")
  46984. },
  46985. {
  46986. name: "Colossus Size, High",
  46987. height: math.unit(60, "meters")
  46988. },
  46989. {
  46990. name: "Titan Size, Low",
  46991. height: math.unit(91, "meters"),
  46992. },
  46993. {
  46994. name: "Titan Size, Mid",
  46995. height: math.unit(122, "meters")
  46996. },
  46997. {
  46998. name: "Titan Size, High",
  46999. height: math.unit(162, "meters")
  47000. },
  47001. ]
  47002. ))
  47003. characterMakers.push(() => makeCharacter(
  47004. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  47005. {
  47006. front: {
  47007. height: math.unit(53, "meters"),
  47008. name: "Front",
  47009. image: {
  47010. source: "./media/characters/stellar-marbey/front.svg",
  47011. extra: 1913/1805,
  47012. bottom: 92/2005
  47013. }
  47014. },
  47015. back: {
  47016. height: math.unit(53, "meters"),
  47017. name: "Back",
  47018. image: {
  47019. source: "./media/characters/stellar-marbey/back.svg",
  47020. extra: 1960/1851,
  47021. bottom: 28/1988
  47022. }
  47023. },
  47024. mouth: {
  47025. height: math.unit(3.5, "meters"),
  47026. name: "Mouth",
  47027. image: {
  47028. source: "./media/characters/stellar-marbey/mouth.svg"
  47029. }
  47030. },
  47031. },
  47032. [
  47033. {
  47034. name: "Macro",
  47035. height: math.unit(53, "meters"),
  47036. default: true
  47037. },
  47038. ]
  47039. ))
  47040. characterMakers.push(() => makeCharacter(
  47041. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  47042. {
  47043. front: {
  47044. height: math.unit(8 + 1/12, "feet"),
  47045. weight: math.unit(233, "lb"),
  47046. name: "Front",
  47047. image: {
  47048. source: "./media/characters/matsu/front.svg",
  47049. extra: 832/772,
  47050. bottom: 40/872
  47051. }
  47052. },
  47053. back: {
  47054. height: math.unit(8 + 1/12, "feet"),
  47055. weight: math.unit(233, "lb"),
  47056. name: "Back",
  47057. image: {
  47058. source: "./media/characters/matsu/back.svg",
  47059. extra: 839/780,
  47060. bottom: 47/886
  47061. }
  47062. },
  47063. },
  47064. [
  47065. {
  47066. name: "Normal",
  47067. height: math.unit(8 + 1/12, "feet"),
  47068. default: true
  47069. },
  47070. ]
  47071. ))
  47072. characterMakers.push(() => makeCharacter(
  47073. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  47074. {
  47075. front: {
  47076. height: math.unit(4, "feet"),
  47077. weight: math.unit(148, "lb"),
  47078. name: "Front",
  47079. image: {
  47080. source: "./media/characters/thiz/front.svg",
  47081. extra: 1913/1748,
  47082. bottom: 62/1975
  47083. }
  47084. },
  47085. },
  47086. [
  47087. {
  47088. name: "Normal",
  47089. height: math.unit(4, "feet"),
  47090. default: true
  47091. },
  47092. ]
  47093. ))
  47094. characterMakers.push(() => makeCharacter(
  47095. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  47096. {
  47097. front: {
  47098. height: math.unit(7 + 6/12, "feet"),
  47099. weight: math.unit(267, "lb"),
  47100. name: "Front",
  47101. image: {
  47102. source: "./media/characters/marcel/front.svg",
  47103. extra: 1221/1096,
  47104. bottom: 76/1297
  47105. }
  47106. },
  47107. },
  47108. [
  47109. {
  47110. name: "Normal",
  47111. height: math.unit(7 + 6/12, "feet"),
  47112. default: true
  47113. },
  47114. ]
  47115. ))
  47116. characterMakers.push(() => makeCharacter(
  47117. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  47118. {
  47119. side: {
  47120. height: math.unit(42, "meters"),
  47121. name: "Side",
  47122. image: {
  47123. source: "./media/characters/flake/side.svg",
  47124. extra: 1525/1306,
  47125. bottom: 209/1734
  47126. }
  47127. },
  47128. },
  47129. [
  47130. {
  47131. name: "Normal",
  47132. height: math.unit(42, "meters"),
  47133. default: true
  47134. },
  47135. ]
  47136. ))
  47137. characterMakers.push(() => makeCharacter(
  47138. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  47139. {
  47140. dressed: {
  47141. height: math.unit(6 + 4/12, "feet"),
  47142. weight: math.unit(520, "lb"),
  47143. name: "Dressed",
  47144. image: {
  47145. source: "./media/characters/someonne/dressed.svg",
  47146. extra: 1020/1010,
  47147. bottom: 178/1198
  47148. }
  47149. },
  47150. undressed: {
  47151. height: math.unit(6 + 4/12, "feet"),
  47152. weight: math.unit(520, "lb"),
  47153. name: "Undressed",
  47154. image: {
  47155. source: "./media/characters/someonne/undressed.svg",
  47156. extra: 1019/1014,
  47157. bottom: 169/1188
  47158. }
  47159. },
  47160. },
  47161. [
  47162. {
  47163. name: "Normal",
  47164. height: math.unit(6 + 4/12, "feet"),
  47165. default: true
  47166. },
  47167. ]
  47168. ))
  47169. characterMakers.push(() => makeCharacter(
  47170. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  47171. {
  47172. front: {
  47173. height: math.unit(3, "feet"),
  47174. weight: math.unit(30, "lb"),
  47175. name: "Front",
  47176. image: {
  47177. source: "./media/characters/till/front.svg",
  47178. extra: 892/823,
  47179. bottom: 55/947
  47180. }
  47181. },
  47182. },
  47183. [
  47184. {
  47185. name: "Normal",
  47186. height: math.unit(3, "feet"),
  47187. default: true
  47188. },
  47189. ]
  47190. ))
  47191. characterMakers.push(() => makeCharacter(
  47192. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  47193. {
  47194. front: {
  47195. height: math.unit(9 + 8/12, "feet"),
  47196. weight: math.unit(800, "lb"),
  47197. name: "Front",
  47198. image: {
  47199. source: "./media/characters/sydney-heki/front.svg",
  47200. extra: 1360/1300,
  47201. bottom: 22/1382
  47202. }
  47203. },
  47204. back: {
  47205. height: math.unit(9 + 8/12, "feet"),
  47206. weight: math.unit(800, "lb"),
  47207. name: "Back",
  47208. image: {
  47209. source: "./media/characters/sydney-heki/back.svg",
  47210. extra: 1356/1293,
  47211. bottom: 12/1368
  47212. }
  47213. },
  47214. frontDressed: {
  47215. height: math.unit(9 + 8/12, "feet"),
  47216. weight: math.unit(800, "lb"),
  47217. name: "Front (Dressed)",
  47218. image: {
  47219. source: "./media/characters/sydney-heki/front-dressed.svg",
  47220. extra: 1360/1300,
  47221. bottom: 22/1382
  47222. }
  47223. },
  47224. },
  47225. [
  47226. {
  47227. name: "Normal",
  47228. height: math.unit(9 + 8/12, "feet"),
  47229. default: true
  47230. },
  47231. {
  47232. name: "Macro",
  47233. height: math.unit(500, "feet")
  47234. },
  47235. {
  47236. name: "Megamacro",
  47237. height: math.unit(3.6, "miles")
  47238. },
  47239. ]
  47240. ))
  47241. characterMakers.push(() => makeCharacter(
  47242. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  47243. {
  47244. front: {
  47245. height: math.unit(200, "cm"),
  47246. weight: math.unit(250, "lb"),
  47247. name: "Front",
  47248. image: {
  47249. source: "./media/characters/fowler-karlsson/front.svg",
  47250. extra: 897/845,
  47251. bottom: 123/1020
  47252. }
  47253. },
  47254. back: {
  47255. height: math.unit(200, "cm"),
  47256. weight: math.unit(250, "lb"),
  47257. name: "Back",
  47258. image: {
  47259. source: "./media/characters/fowler-karlsson/back.svg",
  47260. extra: 999/944,
  47261. bottom: 26/1025
  47262. }
  47263. },
  47264. dick: {
  47265. height: math.unit(1.92, "feet"),
  47266. weight: math.unit(150, "lb"),
  47267. name: "Dick",
  47268. image: {
  47269. source: "./media/characters/fowler-karlsson/dick.svg"
  47270. }
  47271. },
  47272. },
  47273. [
  47274. {
  47275. name: "Normal",
  47276. height: math.unit(200, "cm"),
  47277. default: true
  47278. },
  47279. {
  47280. name: "Smaller Macro",
  47281. height: math.unit(90, "m")
  47282. },
  47283. {
  47284. name: "Macro",
  47285. height: math.unit(150, "m")
  47286. },
  47287. {
  47288. name: "Bigger Macro",
  47289. height: math.unit(300, "m")
  47290. },
  47291. ]
  47292. ))
  47293. characterMakers.push(() => makeCharacter(
  47294. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  47295. {
  47296. side: {
  47297. height: math.unit(8 + 2/12, "feet"),
  47298. weight: math.unit(1, "tonne"),
  47299. name: "Side",
  47300. image: {
  47301. source: "./media/characters/rylide/side.svg",
  47302. extra: 1318/1034,
  47303. bottom: 106/1424
  47304. }
  47305. },
  47306. sitting: {
  47307. height: math.unit(303, "cm"),
  47308. weight: math.unit(1, "tonne"),
  47309. name: "Sitting",
  47310. image: {
  47311. source: "./media/characters/rylide/sitting.svg",
  47312. extra: 1303/1103,
  47313. bottom: 36/1339
  47314. }
  47315. },
  47316. },
  47317. [
  47318. {
  47319. name: "Normal",
  47320. height: math.unit(8 + 2/12, "feet"),
  47321. default: true
  47322. },
  47323. ]
  47324. ))
  47325. characterMakers.push(() => makeCharacter(
  47326. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  47327. {
  47328. front: {
  47329. height: math.unit(5 + 10/12, "feet"),
  47330. weight: math.unit(160, "lb"),
  47331. name: "Front",
  47332. image: {
  47333. source: "./media/characters/pudask/front.svg",
  47334. extra: 1616/1590,
  47335. bottom: 161/1777
  47336. }
  47337. },
  47338. },
  47339. [
  47340. {
  47341. name: "Ferret Height",
  47342. height: math.unit(2 + 5/12, "feet")
  47343. },
  47344. {
  47345. name: "Canon Height",
  47346. height: math.unit(5 + 10/12, "feet"),
  47347. default: true
  47348. },
  47349. ]
  47350. ))
  47351. characterMakers.push(() => makeCharacter(
  47352. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  47353. {
  47354. front: {
  47355. height: math.unit(3 + 6/12, "feet"),
  47356. weight: math.unit(60, "lb"),
  47357. name: "Front",
  47358. image: {
  47359. source: "./media/characters/ramita/front.svg",
  47360. extra: 1402/1232,
  47361. bottom: 62/1464
  47362. }
  47363. },
  47364. dressed: {
  47365. height: math.unit(3 + 6/12, "feet"),
  47366. weight: math.unit(60, "lb"),
  47367. name: "Dressed",
  47368. image: {
  47369. source: "./media/characters/ramita/dressed.svg",
  47370. extra: 1534/1249,
  47371. bottom: 50/1584
  47372. }
  47373. },
  47374. },
  47375. [
  47376. {
  47377. name: "Normal",
  47378. height: math.unit(3 + 6/12, "feet"),
  47379. default: true
  47380. },
  47381. ]
  47382. ))
  47383. characterMakers.push(() => makeCharacter(
  47384. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  47385. {
  47386. front: {
  47387. height: math.unit(8, "feet"),
  47388. name: "Front",
  47389. image: {
  47390. source: "./media/characters/ark/front.svg",
  47391. extra: 772/693,
  47392. bottom: 45/817
  47393. }
  47394. },
  47395. },
  47396. [
  47397. {
  47398. name: "Normal",
  47399. height: math.unit(8, "feet"),
  47400. default: true
  47401. },
  47402. ]
  47403. ))
  47404. characterMakers.push(() => makeCharacter(
  47405. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  47406. {
  47407. front: {
  47408. height: math.unit(6, "feet"),
  47409. weight: math.unit(250, "lb"),
  47410. volume: math.unit(5/8, "gallons"),
  47411. name: "Front",
  47412. image: {
  47413. source: "./media/characters/ludwig-horn/front.svg",
  47414. extra: 1782/1635,
  47415. bottom: 96/1878
  47416. }
  47417. },
  47418. back: {
  47419. height: math.unit(6, "feet"),
  47420. weight: math.unit(250, "lb"),
  47421. volume: math.unit(5/8, "gallons"),
  47422. name: "Back",
  47423. image: {
  47424. source: "./media/characters/ludwig-horn/back.svg",
  47425. extra: 1874/1729,
  47426. bottom: 27/1901
  47427. }
  47428. },
  47429. dick: {
  47430. height: math.unit(1.05, "feet"),
  47431. weight: math.unit(15, "lb"),
  47432. volume: math.unit(5/8, "gallons"),
  47433. name: "Dick",
  47434. image: {
  47435. source: "./media/characters/ludwig-horn/dick.svg"
  47436. }
  47437. },
  47438. },
  47439. [
  47440. {
  47441. name: "Small",
  47442. height: math.unit(6, "feet")
  47443. },
  47444. {
  47445. name: "Typical",
  47446. height: math.unit(12, "feet"),
  47447. default: true
  47448. },
  47449. {
  47450. name: "Building",
  47451. height: math.unit(80, "feet")
  47452. },
  47453. {
  47454. name: "Town",
  47455. height: math.unit(800, "feet")
  47456. },
  47457. {
  47458. name: "Kingdom",
  47459. height: math.unit(80000, "feet")
  47460. },
  47461. {
  47462. name: "Planet",
  47463. height: math.unit(8000000, "feet")
  47464. },
  47465. {
  47466. name: "Universe",
  47467. height: math.unit(8000000000, "feet")
  47468. },
  47469. {
  47470. name: "Transcended",
  47471. height: math.unit(8e27, "feet")
  47472. },
  47473. ]
  47474. ))
  47475. characterMakers.push(() => makeCharacter(
  47476. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  47477. {
  47478. front: {
  47479. height: math.unit(5, "feet"),
  47480. weight: math.unit(50, "kg"),
  47481. name: "Front",
  47482. image: {
  47483. source: "./media/characters/biot-avery/front.svg",
  47484. extra: 1295/1232,
  47485. bottom: 86/1381
  47486. }
  47487. },
  47488. },
  47489. [
  47490. {
  47491. name: "Normal",
  47492. height: math.unit(5, "feet"),
  47493. default: true
  47494. },
  47495. ]
  47496. ))
  47497. characterMakers.push(() => makeCharacter(
  47498. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  47499. {
  47500. front: {
  47501. height: math.unit(6, "feet"),
  47502. name: "Front",
  47503. image: {
  47504. source: "./media/characters/kitsune-kiro/front.svg",
  47505. extra: 1270/1158,
  47506. bottom: 42/1312
  47507. }
  47508. },
  47509. frontAlt: {
  47510. height: math.unit(6, "feet"),
  47511. name: "Front (Alt)",
  47512. image: {
  47513. source: "./media/characters/kitsune-kiro/front-alt.svg",
  47514. extra: 1130/1081,
  47515. bottom: 36/1166
  47516. }
  47517. },
  47518. },
  47519. [
  47520. {
  47521. name: "Smol",
  47522. height: math.unit(3, "feet")
  47523. },
  47524. {
  47525. name: "Normal",
  47526. height: math.unit(6, "feet"),
  47527. default: true
  47528. },
  47529. ]
  47530. ))
  47531. characterMakers.push(() => makeCharacter(
  47532. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  47533. {
  47534. front: {
  47535. height: math.unit(6, "feet"),
  47536. weight: math.unit(125, "lb"),
  47537. name: "Front",
  47538. image: {
  47539. source: "./media/characters/jack-thatcher/front.svg",
  47540. extra: 1474/1370,
  47541. bottom: 26/1500
  47542. }
  47543. },
  47544. back: {
  47545. height: math.unit(6, "feet"),
  47546. weight: math.unit(125, "lb"),
  47547. name: "Back",
  47548. image: {
  47549. source: "./media/characters/jack-thatcher/back.svg",
  47550. extra: 1489/1384,
  47551. bottom: 18/1507
  47552. }
  47553. },
  47554. },
  47555. [
  47556. {
  47557. name: "Normal",
  47558. height: math.unit(6, "feet"),
  47559. default: true
  47560. },
  47561. {
  47562. name: "Macro",
  47563. height: math.unit(75, "feet")
  47564. },
  47565. {
  47566. name: "Macro-er",
  47567. height: math.unit(250, "feet")
  47568. },
  47569. ]
  47570. ))
  47571. characterMakers.push(() => makeCharacter(
  47572. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  47573. {
  47574. front: {
  47575. height: math.unit(7, "feet"),
  47576. weight: math.unit(110, "kg"),
  47577. name: "Front",
  47578. image: {
  47579. source: "./media/characters/max-hyper/front.svg",
  47580. extra: 1969/1881,
  47581. bottom: 49/2018
  47582. }
  47583. },
  47584. },
  47585. [
  47586. {
  47587. name: "Normal",
  47588. height: math.unit(7, "feet"),
  47589. default: true
  47590. },
  47591. ]
  47592. ))
  47593. characterMakers.push(() => makeCharacter(
  47594. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  47595. {
  47596. front: {
  47597. height: math.unit(5 + 5/12, "feet"),
  47598. weight: math.unit(160, "lb"),
  47599. name: "Front",
  47600. image: {
  47601. source: "./media/characters/spook/front.svg",
  47602. extra: 794/791,
  47603. bottom: 54/848
  47604. }
  47605. },
  47606. back: {
  47607. height: math.unit(5 + 5/12, "feet"),
  47608. weight: math.unit(160, "lb"),
  47609. name: "Back",
  47610. image: {
  47611. source: "./media/characters/spook/back.svg",
  47612. extra: 812/798,
  47613. bottom: 32/844
  47614. }
  47615. },
  47616. },
  47617. [
  47618. {
  47619. name: "Normal",
  47620. height: math.unit(5 + 5/12, "feet"),
  47621. default: true
  47622. },
  47623. ]
  47624. ))
  47625. characterMakers.push(() => makeCharacter(
  47626. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  47627. {
  47628. front: {
  47629. height: math.unit(18, "feet"),
  47630. name: "Front",
  47631. image: {
  47632. source: "./media/characters/xeaduulix/front.svg",
  47633. extra: 1380/1166,
  47634. bottom: 110/1490
  47635. }
  47636. },
  47637. back: {
  47638. height: math.unit(18, "feet"),
  47639. name: "Back",
  47640. image: {
  47641. source: "./media/characters/xeaduulix/back.svg",
  47642. extra: 1592/1170,
  47643. bottom: 128/1720
  47644. }
  47645. },
  47646. frontNsfw: {
  47647. height: math.unit(18, "feet"),
  47648. name: "Front (NSFW)",
  47649. image: {
  47650. source: "./media/characters/xeaduulix/front-nsfw.svg",
  47651. extra: 1380/1166,
  47652. bottom: 110/1490
  47653. }
  47654. },
  47655. backNsfw: {
  47656. height: math.unit(18, "feet"),
  47657. name: "Back (NSFW)",
  47658. image: {
  47659. source: "./media/characters/xeaduulix/back-nsfw.svg",
  47660. extra: 1592/1170,
  47661. bottom: 128/1720
  47662. }
  47663. },
  47664. },
  47665. [
  47666. {
  47667. name: "Normal",
  47668. height: math.unit(18, "feet"),
  47669. default: true
  47670. },
  47671. ]
  47672. ))
  47673. characterMakers.push(() => makeCharacter(
  47674. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  47675. {
  47676. spreadWings: {
  47677. height: math.unit(20, "feet"),
  47678. name: "Spread Wings",
  47679. image: {
  47680. source: "./media/characters/fledge/spread-wings.svg",
  47681. extra: 693/635,
  47682. bottom: 26/719
  47683. }
  47684. },
  47685. front: {
  47686. height: math.unit(20, "feet"),
  47687. name: "Front",
  47688. image: {
  47689. source: "./media/characters/fledge/front.svg",
  47690. extra: 684/637,
  47691. bottom: 18/702
  47692. }
  47693. },
  47694. frontAlt: {
  47695. height: math.unit(20, "feet"),
  47696. name: "Front (Alt)",
  47697. image: {
  47698. source: "./media/characters/fledge/front-alt.svg",
  47699. extra: 708/664,
  47700. bottom: 13/721
  47701. }
  47702. },
  47703. back: {
  47704. height: math.unit(20, "feet"),
  47705. name: "Back",
  47706. image: {
  47707. source: "./media/characters/fledge/back.svg",
  47708. extra: 718/634,
  47709. bottom: 22/740
  47710. }
  47711. },
  47712. head: {
  47713. height: math.unit(5.55, "feet"),
  47714. name: "Head",
  47715. image: {
  47716. source: "./media/characters/fledge/head.svg"
  47717. }
  47718. },
  47719. headAlt: {
  47720. height: math.unit(5.1, "feet"),
  47721. name: "Head (Alt)",
  47722. image: {
  47723. source: "./media/characters/fledge/head-alt.svg"
  47724. }
  47725. },
  47726. },
  47727. [
  47728. {
  47729. name: "Small",
  47730. height: math.unit(6 + 2/12, "feet")
  47731. },
  47732. {
  47733. name: "Big",
  47734. height: math.unit(20, "feet"),
  47735. default: true
  47736. },
  47737. {
  47738. name: "Giant",
  47739. height: math.unit(100, "feet")
  47740. },
  47741. {
  47742. name: "Macro",
  47743. height: math.unit(200, "feet")
  47744. },
  47745. ]
  47746. ))
  47747. characterMakers.push(() => makeCharacter(
  47748. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  47749. {
  47750. front: {
  47751. height: math.unit(1, "meter"),
  47752. name: "Front",
  47753. image: {
  47754. source: "./media/characters/atlas-morenai/front.svg",
  47755. extra: 1275/1043,
  47756. bottom: 19/1294
  47757. }
  47758. },
  47759. back: {
  47760. height: math.unit(1, "meter"),
  47761. name: "Back",
  47762. image: {
  47763. source: "./media/characters/atlas-morenai/back.svg",
  47764. extra: 1141/1001,
  47765. bottom: 25/1166
  47766. }
  47767. },
  47768. },
  47769. [
  47770. {
  47771. name: "Normal",
  47772. height: math.unit(1, "meter"),
  47773. default: true
  47774. },
  47775. {
  47776. name: "Magic-Infused",
  47777. height: math.unit(5, "meters")
  47778. },
  47779. ]
  47780. ))
  47781. characterMakers.push(() => makeCharacter(
  47782. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  47783. {
  47784. front: {
  47785. height: math.unit(5, "meters"),
  47786. name: "Front",
  47787. image: {
  47788. source: "./media/characters/cintia/front.svg",
  47789. extra: 1312/1228,
  47790. bottom: 38/1350
  47791. }
  47792. },
  47793. back: {
  47794. height: math.unit(5, "meters"),
  47795. name: "Back",
  47796. image: {
  47797. source: "./media/characters/cintia/back.svg",
  47798. extra: 1260/1166,
  47799. bottom: 98/1358
  47800. }
  47801. },
  47802. frontDick: {
  47803. height: math.unit(5, "meters"),
  47804. name: "Front (Dick)",
  47805. image: {
  47806. source: "./media/characters/cintia/front-dick.svg",
  47807. extra: 1312/1228,
  47808. bottom: 38/1350
  47809. }
  47810. },
  47811. backDick: {
  47812. height: math.unit(5, "meters"),
  47813. name: "Back (Dick)",
  47814. image: {
  47815. source: "./media/characters/cintia/back-dick.svg",
  47816. extra: 1260/1166,
  47817. bottom: 98/1358
  47818. }
  47819. },
  47820. bust: {
  47821. height: math.unit(1.97, "meters"),
  47822. name: "Bust",
  47823. image: {
  47824. source: "./media/characters/cintia/bust.svg",
  47825. extra: 617/565,
  47826. bottom: 0/617
  47827. }
  47828. },
  47829. },
  47830. [
  47831. {
  47832. name: "Normal",
  47833. height: math.unit(5, "meters"),
  47834. default: true
  47835. },
  47836. ]
  47837. ))
  47838. characterMakers.push(() => makeCharacter(
  47839. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  47840. {
  47841. side: {
  47842. height: math.unit(100, "feet"),
  47843. name: "Side",
  47844. image: {
  47845. source: "./media/characters/denora/side.svg",
  47846. extra: 875/803,
  47847. bottom: 9/884
  47848. }
  47849. },
  47850. },
  47851. [
  47852. {
  47853. name: "Standard",
  47854. height: math.unit(100, "feet"),
  47855. default: true
  47856. },
  47857. {
  47858. name: "Grand",
  47859. height: math.unit(1000, "feet")
  47860. },
  47861. {
  47862. name: "Conquering",
  47863. height: math.unit(10000, "feet")
  47864. },
  47865. ]
  47866. ))
  47867. characterMakers.push(() => makeCharacter(
  47868. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  47869. {
  47870. dressed: {
  47871. height: math.unit(8 + 5/12, "feet"),
  47872. weight: math.unit(700, "lb"),
  47873. name: "Dressed",
  47874. image: {
  47875. source: "./media/characters/kiva/dressed.svg",
  47876. extra: 1102/1055,
  47877. bottom: 60/1162
  47878. }
  47879. },
  47880. nude: {
  47881. height: math.unit(8 + 5/12, "feet"),
  47882. weight: math.unit(700, "lb"),
  47883. name: "Nude",
  47884. image: {
  47885. source: "./media/characters/kiva/nude.svg",
  47886. extra: 1102/1055,
  47887. bottom: 60/1162
  47888. }
  47889. },
  47890. },
  47891. [
  47892. {
  47893. name: "Base Height",
  47894. height: math.unit(8 + 5/12, "feet"),
  47895. default: true
  47896. },
  47897. {
  47898. name: "Macro",
  47899. height: math.unit(100, "feet")
  47900. },
  47901. {
  47902. name: "Max",
  47903. height: math.unit(3280, "feet")
  47904. },
  47905. ]
  47906. ))
  47907. characterMakers.push(() => makeCharacter(
  47908. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  47909. {
  47910. front: {
  47911. height: math.unit(6 + 8/12, "feet"),
  47912. weight: math.unit(250, "lb"),
  47913. name: "Front",
  47914. image: {
  47915. source: "./media/characters/ztragon/front.svg",
  47916. extra: 1825/1684,
  47917. bottom: 98/1923
  47918. }
  47919. },
  47920. },
  47921. [
  47922. {
  47923. name: "Normal",
  47924. height: math.unit(6 + 8/12, "feet"),
  47925. default: true
  47926. },
  47927. {
  47928. name: "Macro",
  47929. height: math.unit(80, "feet")
  47930. },
  47931. ]
  47932. ))
  47933. characterMakers.push(() => makeCharacter(
  47934. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  47935. {
  47936. front: {
  47937. height: math.unit(10.4, "feet"),
  47938. weight: math.unit(2, "tons"),
  47939. name: "Front",
  47940. image: {
  47941. source: "./media/characters/yesenia/front.svg",
  47942. extra: 1479/1474,
  47943. bottom: 233/1712
  47944. }
  47945. },
  47946. },
  47947. [
  47948. {
  47949. name: "Normal",
  47950. height: math.unit(10.4, "feet"),
  47951. default: true
  47952. },
  47953. ]
  47954. ))
  47955. characterMakers.push(() => makeCharacter(
  47956. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  47957. {
  47958. normal: {
  47959. height: math.unit(6 + 1/12, "feet"),
  47960. weight: math.unit(180, "lb"),
  47961. name: "Normal",
  47962. image: {
  47963. source: "./media/characters/leanne-lycheborne/normal.svg",
  47964. extra: 1748/1660,
  47965. bottom: 98/1846
  47966. }
  47967. },
  47968. were: {
  47969. height: math.unit(12, "feet"),
  47970. weight: math.unit(1600, "lb"),
  47971. name: "Were",
  47972. image: {
  47973. source: "./media/characters/leanne-lycheborne/were.svg",
  47974. extra: 1485/1432,
  47975. bottom: 66/1551
  47976. }
  47977. },
  47978. },
  47979. [
  47980. {
  47981. name: "Normal",
  47982. height: math.unit(6 + 1/12, "feet"),
  47983. default: true
  47984. },
  47985. ]
  47986. ))
  47987. characterMakers.push(() => makeCharacter(
  47988. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  47989. {
  47990. side: {
  47991. height: math.unit(13, "feet"),
  47992. name: "Side",
  47993. image: {
  47994. source: "./media/characters/kira-tyler/side.svg",
  47995. extra: 693/393,
  47996. bottom: 58/751
  47997. }
  47998. },
  47999. },
  48000. [
  48001. {
  48002. name: "Normal",
  48003. height: math.unit(13, "feet"),
  48004. default: true
  48005. },
  48006. ]
  48007. ))
  48008. characterMakers.push(() => makeCharacter(
  48009. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  48010. {
  48011. front: {
  48012. height: math.unit(10.3, "feet"),
  48013. weight: math.unit(150, "lb"),
  48014. name: "Front",
  48015. image: {
  48016. source: "./media/characters/blaze/front.svg",
  48017. extra: 1378/1286,
  48018. bottom: 172/1550
  48019. }
  48020. },
  48021. },
  48022. [
  48023. {
  48024. name: "Normal",
  48025. height: math.unit(10.3, "feet"),
  48026. default: true
  48027. },
  48028. ]
  48029. ))
  48030. characterMakers.push(() => makeCharacter(
  48031. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  48032. {
  48033. side: {
  48034. height: math.unit(2, "meters"),
  48035. weight: math.unit(400, "kg"),
  48036. name: "Side",
  48037. image: {
  48038. source: "./media/characters/anu/side.svg",
  48039. extra: 506/394,
  48040. bottom: 18/524
  48041. }
  48042. },
  48043. },
  48044. [
  48045. {
  48046. name: "Humanoid",
  48047. height: math.unit(2, "meters")
  48048. },
  48049. {
  48050. name: "Normal",
  48051. height: math.unit(5, "meters"),
  48052. default: true
  48053. },
  48054. ]
  48055. ))
  48056. characterMakers.push(() => makeCharacter(
  48057. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  48058. {
  48059. front: {
  48060. height: math.unit(5 + 5/12, "feet"),
  48061. weight: math.unit(170, "lb"),
  48062. name: "Front",
  48063. image: {
  48064. source: "./media/characters/synx-the-lynx/front.svg",
  48065. extra: 1893/1745,
  48066. bottom: 17/1910
  48067. }
  48068. },
  48069. side: {
  48070. height: math.unit(5 + 5/12, "feet"),
  48071. weight: math.unit(170, "lb"),
  48072. name: "Side",
  48073. image: {
  48074. source: "./media/characters/synx-the-lynx/side.svg",
  48075. extra: 1884/1740,
  48076. bottom: 39/1923
  48077. }
  48078. },
  48079. back: {
  48080. height: math.unit(5 + 5/12, "feet"),
  48081. weight: math.unit(170, "lb"),
  48082. name: "Back",
  48083. image: {
  48084. source: "./media/characters/synx-the-lynx/back.svg",
  48085. extra: 1903/1755,
  48086. bottom: 14/1917
  48087. }
  48088. },
  48089. },
  48090. [
  48091. {
  48092. name: "Normal",
  48093. height: math.unit(5 + 5/12, "feet"),
  48094. default: true
  48095. },
  48096. ]
  48097. ))
  48098. characterMakers.push(() => makeCharacter(
  48099. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  48100. {
  48101. back: {
  48102. height: math.unit(15, "feet"),
  48103. name: "Back",
  48104. image: {
  48105. source: "./media/characters/nadezda-fex/back.svg",
  48106. extra: 1695/1481,
  48107. bottom: 25/1720
  48108. }
  48109. },
  48110. },
  48111. [
  48112. {
  48113. name: "Normal",
  48114. height: math.unit(15, "feet"),
  48115. default: true
  48116. },
  48117. {
  48118. name: "Macro",
  48119. height: math.unit(2.5, "miles")
  48120. },
  48121. {
  48122. name: "Goddess",
  48123. height: math.unit(2, "multiverses")
  48124. },
  48125. ]
  48126. ))
  48127. characterMakers.push(() => makeCharacter(
  48128. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  48129. {
  48130. front: {
  48131. height: math.unit(216, "cm"),
  48132. name: "Front",
  48133. image: {
  48134. source: "./media/characters/lev/front.svg",
  48135. extra: 1728/1670,
  48136. bottom: 82/1810
  48137. }
  48138. },
  48139. back: {
  48140. height: math.unit(216, "cm"),
  48141. name: "Back",
  48142. image: {
  48143. source: "./media/characters/lev/back.svg",
  48144. extra: 1738/1675,
  48145. bottom: 24/1762
  48146. }
  48147. },
  48148. dressed: {
  48149. height: math.unit(216, "cm"),
  48150. name: "Dressed",
  48151. image: {
  48152. source: "./media/characters/lev/dressed.svg",
  48153. extra: 1397/1351,
  48154. bottom: 73/1470
  48155. }
  48156. },
  48157. head: {
  48158. height: math.unit(0.51, "meter"),
  48159. name: "Head",
  48160. image: {
  48161. source: "./media/characters/lev/head.svg"
  48162. }
  48163. },
  48164. },
  48165. [
  48166. {
  48167. name: "Normal",
  48168. height: math.unit(216, "cm"),
  48169. default: true
  48170. },
  48171. {
  48172. name: "Relatively Macro",
  48173. height: math.unit(80, "meters")
  48174. },
  48175. {
  48176. name: "Megamacro",
  48177. height: math.unit(21600, "meters")
  48178. },
  48179. {
  48180. name: "Megamacro+",
  48181. height: math.unit(64800, "meters")
  48182. },
  48183. ]
  48184. ))
  48185. characterMakers.push(() => makeCharacter(
  48186. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  48187. {
  48188. front: {
  48189. height: math.unit(2, "meters"),
  48190. weight: math.unit(80, "kg"),
  48191. name: "Front",
  48192. image: {
  48193. source: "./media/characters/moka/front.svg",
  48194. extra: 1337/1255,
  48195. bottom: 58/1395
  48196. }
  48197. },
  48198. },
  48199. [
  48200. {
  48201. name: "Micro",
  48202. height: math.unit(15, "cm")
  48203. },
  48204. {
  48205. name: "Normal",
  48206. height: math.unit(2, "meters"),
  48207. default: true
  48208. },
  48209. {
  48210. name: "Macro",
  48211. height: math.unit(20, "meters"),
  48212. },
  48213. ]
  48214. ))
  48215. characterMakers.push(() => makeCharacter(
  48216. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  48217. {
  48218. front: {
  48219. height: math.unit(9, "feet"),
  48220. weight: math.unit(240, "lb"),
  48221. name: "Front",
  48222. image: {
  48223. source: "./media/characters/kuzco/front.svg",
  48224. extra: 1593/1487,
  48225. bottom: 32/1625
  48226. }
  48227. },
  48228. side: {
  48229. height: math.unit(9, "feet"),
  48230. weight: math.unit(240, "lb"),
  48231. name: "Side",
  48232. image: {
  48233. source: "./media/characters/kuzco/side.svg",
  48234. extra: 1575/1485,
  48235. bottom: 30/1605
  48236. }
  48237. },
  48238. back: {
  48239. height: math.unit(9, "feet"),
  48240. weight: math.unit(240, "lb"),
  48241. name: "Back",
  48242. image: {
  48243. source: "./media/characters/kuzco/back.svg",
  48244. extra: 1603/1514,
  48245. bottom: 14/1617
  48246. }
  48247. },
  48248. },
  48249. [
  48250. {
  48251. name: "Normal",
  48252. height: math.unit(9, "feet"),
  48253. default: true
  48254. },
  48255. ]
  48256. ))
  48257. characterMakers.push(() => makeCharacter(
  48258. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  48259. {
  48260. side: {
  48261. height: math.unit(2, "meters"),
  48262. weight: math.unit(300, "kg"),
  48263. name: "Side",
  48264. image: {
  48265. source: "./media/characters/ceruleus/side.svg",
  48266. extra: 1068/974,
  48267. bottom: 126/1194
  48268. }
  48269. },
  48270. maw: {
  48271. height: math.unit(0.8125, "meter"),
  48272. name: "Maw",
  48273. image: {
  48274. source: "./media/characters/ceruleus/maw.svg"
  48275. }
  48276. },
  48277. },
  48278. [
  48279. {
  48280. name: "Normal",
  48281. height: math.unit(16, "meters"),
  48282. default: true
  48283. },
  48284. ]
  48285. ))
  48286. characterMakers.push(() => makeCharacter(
  48287. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  48288. {
  48289. front: {
  48290. height: math.unit(9, "feet"),
  48291. weight: math.unit(500, "kg"),
  48292. name: "Front",
  48293. image: {
  48294. source: "./media/characters/acouya/front.svg",
  48295. extra: 1660/1473,
  48296. bottom: 28/1688
  48297. }
  48298. },
  48299. },
  48300. [
  48301. {
  48302. name: "Normal",
  48303. height: math.unit(9, "feet"),
  48304. default: true
  48305. },
  48306. ]
  48307. ))
  48308. characterMakers.push(() => makeCharacter(
  48309. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  48310. {
  48311. front: {
  48312. height: math.unit(5 + 6/12, "feet"),
  48313. weight: math.unit(195, "lb"),
  48314. name: "Front",
  48315. image: {
  48316. source: "./media/characters/vant/front.svg",
  48317. extra: 1396/1320,
  48318. bottom: 20/1416
  48319. }
  48320. },
  48321. back: {
  48322. height: math.unit(5 + 6/12, "feet"),
  48323. weight: math.unit(195, "lb"),
  48324. name: "Back",
  48325. image: {
  48326. source: "./media/characters/vant/back.svg",
  48327. extra: 1396/1320,
  48328. bottom: 20/1416
  48329. }
  48330. },
  48331. maw: {
  48332. height: math.unit(0.75, "feet"),
  48333. name: "Maw",
  48334. image: {
  48335. source: "./media/characters/vant/maw.svg"
  48336. }
  48337. },
  48338. paw: {
  48339. height: math.unit(1.07, "feet"),
  48340. name: "Paw",
  48341. image: {
  48342. source: "./media/characters/vant/paw.svg"
  48343. }
  48344. },
  48345. },
  48346. [
  48347. {
  48348. name: "Micro",
  48349. height: math.unit(0.25, "inches")
  48350. },
  48351. {
  48352. name: "Normal",
  48353. height: math.unit(5 + 6/12, "feet"),
  48354. default: true
  48355. },
  48356. {
  48357. name: "Macro",
  48358. height: math.unit(75, "feet")
  48359. },
  48360. ]
  48361. ))
  48362. characterMakers.push(() => makeCharacter(
  48363. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  48364. {
  48365. front: {
  48366. height: math.unit(30, "meters"),
  48367. weight: math.unit(363, "tons"),
  48368. name: "Front",
  48369. image: {
  48370. source: "./media/characters/ahra/front.svg",
  48371. extra: 1914/1814,
  48372. bottom: 46/1960
  48373. }
  48374. },
  48375. },
  48376. [
  48377. {
  48378. name: "Macro",
  48379. height: math.unit(30, "meters"),
  48380. default: true
  48381. },
  48382. ]
  48383. ))
  48384. characterMakers.push(() => makeCharacter(
  48385. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  48386. {
  48387. undressed: {
  48388. height: math.unit(2, "m"),
  48389. weight: math.unit(250, "kg"),
  48390. name: "Undressed",
  48391. image: {
  48392. source: "./media/characters/coriander/undressed.svg",
  48393. extra: 1757/1606,
  48394. bottom: 107/1864
  48395. }
  48396. },
  48397. dressed: {
  48398. height: math.unit(2, "m"),
  48399. weight: math.unit(250, "kg"),
  48400. name: "Dressed",
  48401. image: {
  48402. source: "./media/characters/coriander/dressed.svg",
  48403. extra: 1757/1606,
  48404. bottom: 107/1864
  48405. }
  48406. },
  48407. },
  48408. [
  48409. {
  48410. name: "Normal",
  48411. height: math.unit(4, "meters"),
  48412. default: true
  48413. },
  48414. {
  48415. name: "XL",
  48416. height: math.unit(6, "meters")
  48417. },
  48418. {
  48419. name: "XXL",
  48420. height: math.unit(8, "meters")
  48421. },
  48422. ]
  48423. ))
  48424. characterMakers.push(() => makeCharacter(
  48425. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  48426. {
  48427. front: {
  48428. height: math.unit(6, "feet"),
  48429. name: "Front",
  48430. image: {
  48431. source: "./media/characters/syrinx/front.svg",
  48432. extra: 1557/1259,
  48433. bottom: 171/1728
  48434. }
  48435. },
  48436. },
  48437. [
  48438. {
  48439. name: "Normal",
  48440. height: math.unit(6 + 3/12, "feet"),
  48441. default: true
  48442. },
  48443. ]
  48444. ))
  48445. characterMakers.push(() => makeCharacter(
  48446. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  48447. {
  48448. front: {
  48449. height: math.unit(11 + 6/12, "feet"),
  48450. weight: math.unit(1.5, "tons"),
  48451. name: "Front",
  48452. image: {
  48453. source: "./media/characters/bor/front.svg",
  48454. extra: 1189/1109,
  48455. bottom: 170/1359
  48456. }
  48457. },
  48458. },
  48459. [
  48460. {
  48461. name: "Normal",
  48462. height: math.unit(11 + 6/12, "feet"),
  48463. default: true
  48464. },
  48465. {
  48466. name: "Macro",
  48467. height: math.unit(32 + 9/12, "feet")
  48468. },
  48469. ]
  48470. ))
  48471. characterMakers.push(() => makeCharacter(
  48472. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  48473. {
  48474. anthro: {
  48475. height: math.unit(9, "feet"),
  48476. weight: math.unit(2076, "lb"),
  48477. name: "Anthro",
  48478. image: {
  48479. source: "./media/characters/abacus/anthro.svg",
  48480. extra: 1540/1494,
  48481. bottom: 233/1773
  48482. }
  48483. },
  48484. pigeon: {
  48485. height: math.unit(1, "feet"),
  48486. name: "Pigeon",
  48487. image: {
  48488. source: "./media/characters/abacus/pigeon.svg",
  48489. extra: 528/525,
  48490. bottom: 46/574
  48491. }
  48492. },
  48493. },
  48494. [
  48495. {
  48496. name: "Normal",
  48497. height: math.unit(9, "feet"),
  48498. default: true
  48499. },
  48500. ]
  48501. ))
  48502. characterMakers.push(() => makeCharacter(
  48503. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  48504. {
  48505. side: {
  48506. height: math.unit(6, "feet"),
  48507. name: "Side",
  48508. image: {
  48509. source: "./media/characters/delkhan/side.svg",
  48510. extra: 1884/1786,
  48511. bottom: 308/2192
  48512. }
  48513. },
  48514. head: {
  48515. height: math.unit(3.38, "feet"),
  48516. name: "Head",
  48517. image: {
  48518. source: "./media/characters/delkhan/head.svg"
  48519. }
  48520. },
  48521. },
  48522. [
  48523. {
  48524. name: "Normal",
  48525. height: math.unit(72, "feet"),
  48526. default: true
  48527. },
  48528. {
  48529. name: "Giant",
  48530. height: math.unit(172, "feet")
  48531. },
  48532. ]
  48533. ))
  48534. characterMakers.push(() => makeCharacter(
  48535. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  48536. {
  48537. standing: {
  48538. height: math.unit(6, "feet"),
  48539. name: "Standing",
  48540. image: {
  48541. source: "./media/characters/euchidat/standing.svg",
  48542. extra: 1612/1553,
  48543. bottom: 116/1728
  48544. }
  48545. },
  48546. leaning: {
  48547. height: math.unit(6, "feet"),
  48548. name: "Leaning",
  48549. image: {
  48550. source: "./media/characters/euchidat/leaning.svg",
  48551. extra: 1719/1674,
  48552. bottom: 27/1746
  48553. }
  48554. },
  48555. },
  48556. [
  48557. {
  48558. name: "Normal",
  48559. height: math.unit(175, "feet"),
  48560. default: true
  48561. },
  48562. {
  48563. name: "Megamacro",
  48564. height: math.unit(190, "miles")
  48565. },
  48566. {
  48567. name: "Gigamacro",
  48568. height: math.unit(190000, "miles")
  48569. },
  48570. ]
  48571. ))
  48572. characterMakers.push(() => makeCharacter(
  48573. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  48574. {
  48575. front: {
  48576. height: math.unit(6, "feet"),
  48577. weight: math.unit(150, "lb"),
  48578. name: "Front",
  48579. image: {
  48580. source: "./media/characters/rebecca-stack/front.svg",
  48581. extra: 1256/1201,
  48582. bottom: 18/1274
  48583. }
  48584. },
  48585. },
  48586. [
  48587. {
  48588. name: "Normal",
  48589. height: math.unit(5 + 8/12, "feet"),
  48590. default: true
  48591. },
  48592. {
  48593. name: "Demolitionist",
  48594. height: math.unit(200, "feet")
  48595. },
  48596. {
  48597. name: "Out of Control",
  48598. height: math.unit(2, "miles")
  48599. },
  48600. {
  48601. name: "Giga",
  48602. height: math.unit(7200, "miles")
  48603. },
  48604. ]
  48605. ))
  48606. characterMakers.push(() => makeCharacter(
  48607. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  48608. {
  48609. front: {
  48610. height: math.unit(6, "feet"),
  48611. weight: math.unit(150, "lb"),
  48612. name: "Front",
  48613. image: {
  48614. source: "./media/characters/jenny-cartwright/front.svg",
  48615. extra: 1384/1376,
  48616. bottom: 58/1442
  48617. }
  48618. },
  48619. },
  48620. [
  48621. {
  48622. name: "Normal",
  48623. height: math.unit(6 + 7/12, "feet"),
  48624. default: true
  48625. },
  48626. {
  48627. name: "Librarian",
  48628. height: math.unit(55, "feet")
  48629. },
  48630. {
  48631. name: "Sightseer",
  48632. height: math.unit(50, "miles")
  48633. },
  48634. {
  48635. name: "Giga",
  48636. height: math.unit(30000, "miles")
  48637. },
  48638. ]
  48639. ))
  48640. characterMakers.push(() => makeCharacter(
  48641. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  48642. {
  48643. nude: {
  48644. height: math.unit(8, "feet"),
  48645. weight: math.unit(225, "lb"),
  48646. name: "Nude",
  48647. image: {
  48648. source: "./media/characters/marvy/nude.svg",
  48649. extra: 1900/1683,
  48650. bottom: 89/1989
  48651. }
  48652. },
  48653. dressed: {
  48654. height: math.unit(8, "feet"),
  48655. weight: math.unit(225, "lb"),
  48656. name: "Dressed",
  48657. image: {
  48658. source: "./media/characters/marvy/dressed.svg",
  48659. extra: 1900/1683,
  48660. bottom: 89/1989
  48661. }
  48662. },
  48663. head: {
  48664. height: math.unit(2.85, "feet"),
  48665. name: "Head",
  48666. image: {
  48667. source: "./media/characters/marvy/head.svg"
  48668. }
  48669. },
  48670. },
  48671. [
  48672. {
  48673. name: "Normal",
  48674. height: math.unit(8, "feet"),
  48675. default: true
  48676. },
  48677. ]
  48678. ))
  48679. characterMakers.push(() => makeCharacter(
  48680. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  48681. {
  48682. front: {
  48683. height: math.unit(8, "feet"),
  48684. weight: math.unit(250, "lb"),
  48685. name: "Front",
  48686. image: {
  48687. source: "./media/characters/leah/front.svg",
  48688. extra: 1257/1149,
  48689. bottom: 109/1366
  48690. }
  48691. },
  48692. },
  48693. [
  48694. {
  48695. name: "Normal",
  48696. height: math.unit(8, "feet"),
  48697. default: true
  48698. },
  48699. {
  48700. name: "Minimacro",
  48701. height: math.unit(40, "feet")
  48702. },
  48703. {
  48704. name: "Macro",
  48705. height: math.unit(124, "feet")
  48706. },
  48707. {
  48708. name: "Megamacro",
  48709. height: math.unit(850, "feet")
  48710. },
  48711. ]
  48712. ))
  48713. characterMakers.push(() => makeCharacter(
  48714. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  48715. {
  48716. side: {
  48717. height: math.unit(13 + 6/12, "feet"),
  48718. weight: math.unit(3200, "lb"),
  48719. name: "Side",
  48720. image: {
  48721. source: "./media/characters/alvir/side.svg",
  48722. extra: 896/589,
  48723. bottom: 26/922
  48724. }
  48725. },
  48726. },
  48727. [
  48728. {
  48729. name: "Normal",
  48730. height: math.unit(13 + 6/12, "feet"),
  48731. default: true
  48732. },
  48733. ]
  48734. ))
  48735. characterMakers.push(() => makeCharacter(
  48736. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  48737. {
  48738. front: {
  48739. height: math.unit(5 + 4/12, "feet"),
  48740. weight: math.unit(236, "lb"),
  48741. name: "Front",
  48742. image: {
  48743. source: "./media/characters/zaina-khalil/front.svg",
  48744. extra: 1533/1485,
  48745. bottom: 94/1627
  48746. }
  48747. },
  48748. side: {
  48749. height: math.unit(5 + 4/12, "feet"),
  48750. weight: math.unit(236, "lb"),
  48751. name: "Side",
  48752. image: {
  48753. source: "./media/characters/zaina-khalil/side.svg",
  48754. extra: 1537/1498,
  48755. bottom: 66/1603
  48756. }
  48757. },
  48758. back: {
  48759. height: math.unit(5 + 4/12, "feet"),
  48760. weight: math.unit(236, "lb"),
  48761. name: "Back",
  48762. image: {
  48763. source: "./media/characters/zaina-khalil/back.svg",
  48764. extra: 1546/1494,
  48765. bottom: 89/1635
  48766. }
  48767. },
  48768. },
  48769. [
  48770. {
  48771. name: "Normal",
  48772. height: math.unit(5 + 4/12, "feet"),
  48773. default: true
  48774. },
  48775. ]
  48776. ))
  48777. characterMakers.push(() => makeCharacter(
  48778. { name: "Terry", species: ["husky"], tags: ["taur"] },
  48779. {
  48780. side: {
  48781. height: math.unit(12, "feet"),
  48782. weight: math.unit(4000, "lb"),
  48783. name: "Side",
  48784. image: {
  48785. source: "./media/characters/terry/side.svg",
  48786. extra: 1518/1439,
  48787. bottom: 149/1667
  48788. }
  48789. },
  48790. },
  48791. [
  48792. {
  48793. name: "Normal",
  48794. height: math.unit(12, "feet"),
  48795. default: true
  48796. },
  48797. ]
  48798. ))
  48799. characterMakers.push(() => makeCharacter(
  48800. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  48801. {
  48802. front: {
  48803. height: math.unit(12, "feet"),
  48804. weight: math.unit(1500, "lb"),
  48805. name: "Front",
  48806. image: {
  48807. source: "./media/characters/kahea/front.svg",
  48808. extra: 1722/1617,
  48809. bottom: 179/1901
  48810. }
  48811. },
  48812. },
  48813. [
  48814. {
  48815. name: "Normal",
  48816. height: math.unit(12, "feet"),
  48817. default: true
  48818. },
  48819. ]
  48820. ))
  48821. characterMakers.push(() => makeCharacter(
  48822. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  48823. {
  48824. demonFront: {
  48825. height: math.unit(36, "feet"),
  48826. name: "Front",
  48827. image: {
  48828. source: "./media/characters/alex-xuria/demon-front.svg",
  48829. extra: 1705/1673,
  48830. bottom: 198/1903
  48831. },
  48832. form: "demon",
  48833. default: true
  48834. },
  48835. demonBack: {
  48836. height: math.unit(36, "feet"),
  48837. name: "Back",
  48838. image: {
  48839. source: "./media/characters/alex-xuria/demon-back.svg",
  48840. extra: 1725/1693,
  48841. bottom: 70/1795
  48842. },
  48843. form: "demon"
  48844. },
  48845. demonHead: {
  48846. height: math.unit(2.14, "meters"),
  48847. name: "Head",
  48848. image: {
  48849. source: "./media/characters/alex-xuria/demon-head.svg"
  48850. },
  48851. form: "demon"
  48852. },
  48853. demonHand: {
  48854. height: math.unit(1.61, "meters"),
  48855. name: "Hand",
  48856. image: {
  48857. source: "./media/characters/alex-xuria/demon-hand.svg"
  48858. },
  48859. form: "demon"
  48860. },
  48861. demonPaw: {
  48862. height: math.unit(1.35, "meters"),
  48863. name: "Paw",
  48864. image: {
  48865. source: "./media/characters/alex-xuria/demon-paw.svg"
  48866. },
  48867. form: "demon"
  48868. },
  48869. demonFoot: {
  48870. height: math.unit(2.2, "meters"),
  48871. name: "Foot",
  48872. image: {
  48873. source: "./media/characters/alex-xuria/demon-foot.svg"
  48874. },
  48875. form: "demon"
  48876. },
  48877. demonCock: {
  48878. height: math.unit(1.74, "meters"),
  48879. name: "Cock",
  48880. image: {
  48881. source: "./media/characters/alex-xuria/demon-cock.svg"
  48882. },
  48883. form: "demon"
  48884. },
  48885. demonTailClosed: {
  48886. height: math.unit(1.47, "meters"),
  48887. name: "Tail (Closed)",
  48888. image: {
  48889. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  48890. },
  48891. form: "demon"
  48892. },
  48893. demonTailOpen: {
  48894. height: math.unit(2.85, "meters"),
  48895. name: "Tail (Open)",
  48896. image: {
  48897. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  48898. },
  48899. form: "demon"
  48900. },
  48901. incubusFront: {
  48902. height: math.unit(12, "feet"),
  48903. name: "Front",
  48904. image: {
  48905. source: "./media/characters/alex-xuria/incubus-front.svg",
  48906. extra: 1754/1677,
  48907. bottom: 125/1879
  48908. },
  48909. form: "incubus",
  48910. default: true
  48911. },
  48912. incubusBack: {
  48913. height: math.unit(12, "feet"),
  48914. name: "Back",
  48915. image: {
  48916. source: "./media/characters/alex-xuria/incubus-back.svg",
  48917. extra: 1702/1647,
  48918. bottom: 30/1732
  48919. },
  48920. form: "incubus"
  48921. },
  48922. incubusHead: {
  48923. height: math.unit(3.45, "feet"),
  48924. name: "Head",
  48925. image: {
  48926. source: "./media/characters/alex-xuria/incubus-head.svg"
  48927. },
  48928. form: "incubus"
  48929. },
  48930. rabbitFront: {
  48931. height: math.unit(6, "feet"),
  48932. name: "Front",
  48933. image: {
  48934. source: "./media/characters/alex-xuria/rabbit-front.svg",
  48935. extra: 1369/1349,
  48936. bottom: 45/1414
  48937. },
  48938. form: "rabbit",
  48939. default: true
  48940. },
  48941. rabbitSide: {
  48942. height: math.unit(6, "feet"),
  48943. name: "Side",
  48944. image: {
  48945. source: "./media/characters/alex-xuria/rabbit-side.svg",
  48946. extra: 1370/1356,
  48947. bottom: 37/1407
  48948. },
  48949. form: "rabbit"
  48950. },
  48951. rabbitBack: {
  48952. height: math.unit(6, "feet"),
  48953. name: "Back",
  48954. image: {
  48955. source: "./media/characters/alex-xuria/rabbit-back.svg",
  48956. extra: 1375/1358,
  48957. bottom: 43/1418
  48958. },
  48959. form: "rabbit"
  48960. },
  48961. },
  48962. [
  48963. {
  48964. name: "Normal",
  48965. height: math.unit(6, "feet"),
  48966. default: true,
  48967. form: "rabbit"
  48968. },
  48969. {
  48970. name: "Incubus",
  48971. height: math.unit(12, "feet"),
  48972. default: true,
  48973. form: "incubus"
  48974. },
  48975. {
  48976. name: "Demon",
  48977. height: math.unit(36, "feet"),
  48978. default: true,
  48979. form: "demon"
  48980. }
  48981. ],
  48982. {
  48983. "demon": {
  48984. name: "Demon",
  48985. default: true
  48986. },
  48987. "incubus": {
  48988. name: "Incubus",
  48989. },
  48990. "rabbit": {
  48991. name: "Rabbit"
  48992. }
  48993. }
  48994. ))
  48995. characterMakers.push(() => makeCharacter(
  48996. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  48997. {
  48998. front: {
  48999. height: math.unit(7 + 5/12, "feet"),
  49000. weight: math.unit(510, "lb"),
  49001. name: "Front",
  49002. image: {
  49003. source: "./media/characters/syrup/front.svg",
  49004. extra: 932/916,
  49005. bottom: 26/958
  49006. }
  49007. },
  49008. },
  49009. [
  49010. {
  49011. name: "Normal",
  49012. height: math.unit(7 + 5/12, "feet"),
  49013. default: true
  49014. },
  49015. {
  49016. name: "Big",
  49017. height: math.unit(50, "feet")
  49018. },
  49019. {
  49020. name: "Macro",
  49021. height: math.unit(300, "feet")
  49022. },
  49023. {
  49024. name: "Megamacro",
  49025. height: math.unit(1, "mile")
  49026. },
  49027. ]
  49028. ))
  49029. characterMakers.push(() => makeCharacter(
  49030. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  49031. {
  49032. front: {
  49033. height: math.unit(6 + 9/12, "feet"),
  49034. name: "Front",
  49035. image: {
  49036. source: "./media/characters/zeimne/front.svg",
  49037. extra: 1969/1806,
  49038. bottom: 53/2022
  49039. }
  49040. },
  49041. },
  49042. [
  49043. {
  49044. name: "Normal",
  49045. height: math.unit(6 + 9/12, "feet"),
  49046. default: true
  49047. },
  49048. {
  49049. name: "Giant",
  49050. height: math.unit(550, "feet")
  49051. },
  49052. {
  49053. name: "Mega",
  49054. height: math.unit(3, "miles")
  49055. },
  49056. {
  49057. name: "Giga",
  49058. height: math.unit(250, "miles")
  49059. },
  49060. {
  49061. name: "Tera",
  49062. height: math.unit(1, "AU")
  49063. },
  49064. ]
  49065. ))
  49066. characterMakers.push(() => makeCharacter(
  49067. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  49068. {
  49069. front: {
  49070. height: math.unit(5 + 2/12, "feet"),
  49071. name: "Front",
  49072. image: {
  49073. source: "./media/characters/grar/front.svg",
  49074. extra: 1331/1119,
  49075. bottom: 60/1391
  49076. }
  49077. },
  49078. back: {
  49079. height: math.unit(5 + 2/12, "feet"),
  49080. name: "Back",
  49081. image: {
  49082. source: "./media/characters/grar/back.svg",
  49083. extra: 1385/1169,
  49084. bottom: 23/1408
  49085. }
  49086. },
  49087. },
  49088. [
  49089. {
  49090. name: "Normal",
  49091. height: math.unit(5 + 2/12, "feet"),
  49092. default: true
  49093. },
  49094. ]
  49095. ))
  49096. characterMakers.push(() => makeCharacter(
  49097. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  49098. {
  49099. front: {
  49100. height: math.unit(13 + 7/12, "feet"),
  49101. weight: math.unit(2200, "lb"),
  49102. name: "Front",
  49103. image: {
  49104. source: "./media/characters/endraya/front.svg",
  49105. extra: 1289/1215,
  49106. bottom: 50/1339
  49107. }
  49108. },
  49109. nude: {
  49110. height: math.unit(13 + 7/12, "feet"),
  49111. weight: math.unit(2200, "lb"),
  49112. name: "Nude",
  49113. image: {
  49114. source: "./media/characters/endraya/nude.svg",
  49115. extra: 1247/1171,
  49116. bottom: 40/1287
  49117. }
  49118. },
  49119. head: {
  49120. height: math.unit(2.6, "feet"),
  49121. name: "Head",
  49122. image: {
  49123. source: "./media/characters/endraya/head.svg"
  49124. }
  49125. },
  49126. slit: {
  49127. height: math.unit(3.4, "feet"),
  49128. name: "Slit",
  49129. image: {
  49130. source: "./media/characters/endraya/slit.svg"
  49131. }
  49132. },
  49133. },
  49134. [
  49135. {
  49136. name: "Normal",
  49137. height: math.unit(13 + 7/12, "feet"),
  49138. default: true
  49139. },
  49140. {
  49141. name: "Macro",
  49142. height: math.unit(200, "feet")
  49143. },
  49144. ]
  49145. ))
  49146. characterMakers.push(() => makeCharacter(
  49147. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  49148. {
  49149. front: {
  49150. height: math.unit(1.81, "meters"),
  49151. weight: math.unit(69, "kg"),
  49152. name: "Front",
  49153. image: {
  49154. source: "./media/characters/rodryana/front.svg",
  49155. extra: 2002/1921,
  49156. bottom: 53/2055
  49157. }
  49158. },
  49159. back: {
  49160. height: math.unit(1.81, "meters"),
  49161. weight: math.unit(69, "kg"),
  49162. name: "Back",
  49163. image: {
  49164. source: "./media/characters/rodryana/back.svg",
  49165. extra: 1993/1926,
  49166. bottom: 48/2041
  49167. }
  49168. },
  49169. maw: {
  49170. height: math.unit(0.19769417475, "meters"),
  49171. name: "Maw",
  49172. image: {
  49173. source: "./media/characters/rodryana/maw.svg"
  49174. }
  49175. },
  49176. slit: {
  49177. height: math.unit(0.31631067961, "meters"),
  49178. name: "Slit",
  49179. image: {
  49180. source: "./media/characters/rodryana/slit.svg"
  49181. }
  49182. },
  49183. },
  49184. [
  49185. {
  49186. name: "Normal",
  49187. height: math.unit(1.81, "meters")
  49188. },
  49189. {
  49190. name: "Mini Macro",
  49191. height: math.unit(181, "meters")
  49192. },
  49193. {
  49194. name: "Macro",
  49195. height: math.unit(452, "meters"),
  49196. default: true
  49197. },
  49198. {
  49199. name: "Mega Macro",
  49200. height: math.unit(1.375, "km")
  49201. },
  49202. {
  49203. name: "Giga Macro",
  49204. height: math.unit(13.575, "km")
  49205. },
  49206. ]
  49207. ))
  49208. characterMakers.push(() => makeCharacter(
  49209. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  49210. {
  49211. front: {
  49212. height: math.unit(6, "feet"),
  49213. weight: math.unit(1000, "lb"),
  49214. name: "Front",
  49215. image: {
  49216. source: "./media/characters/asaya/front.svg",
  49217. extra: 1460/1200,
  49218. bottom: 71/1531
  49219. }
  49220. },
  49221. },
  49222. [
  49223. {
  49224. name: "Normal",
  49225. height: math.unit(8, "km"),
  49226. default: true
  49227. },
  49228. ]
  49229. ))
  49230. characterMakers.push(() => makeCharacter(
  49231. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  49232. {
  49233. front: {
  49234. height: math.unit(3.5, "meters"),
  49235. name: "Front",
  49236. image: {
  49237. source: "./media/characters/sarzu-and-israz/front.svg",
  49238. extra: 1570/1558,
  49239. bottom: 150/1720
  49240. },
  49241. },
  49242. back: {
  49243. height: math.unit(3.5, "meters"),
  49244. name: "Back",
  49245. image: {
  49246. source: "./media/characters/sarzu-and-israz/back.svg",
  49247. extra: 1523/1509,
  49248. bottom: 132/1655
  49249. },
  49250. },
  49251. frontFemale: {
  49252. height: math.unit(3.5, "meters"),
  49253. name: "Front (Female)",
  49254. image: {
  49255. source: "./media/characters/sarzu-and-israz/front-female.svg",
  49256. extra: 1570/1558,
  49257. bottom: 150/1720
  49258. },
  49259. },
  49260. frontHerm: {
  49261. height: math.unit(3.5, "meters"),
  49262. name: "Front (Herm)",
  49263. image: {
  49264. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  49265. extra: 1570/1558,
  49266. bottom: 150/1720
  49267. },
  49268. },
  49269. },
  49270. [
  49271. {
  49272. name: "Normal",
  49273. height: math.unit(3.5, "meters"),
  49274. default: true,
  49275. },
  49276. {
  49277. name: "Macro",
  49278. height: math.unit(65.5, "meters"),
  49279. },
  49280. ],
  49281. ))
  49282. characterMakers.push(() => makeCharacter(
  49283. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  49284. {
  49285. front: {
  49286. height: math.unit(6, "feet"),
  49287. weight: math.unit(250, "lb"),
  49288. name: "Front",
  49289. image: {
  49290. source: "./media/characters/zenimma/front.svg",
  49291. extra: 1346/1320,
  49292. bottom: 58/1404
  49293. }
  49294. },
  49295. back: {
  49296. height: math.unit(6, "feet"),
  49297. weight: math.unit(250, "lb"),
  49298. name: "Back",
  49299. image: {
  49300. source: "./media/characters/zenimma/back.svg",
  49301. extra: 1324/1308,
  49302. bottom: 44/1368
  49303. }
  49304. },
  49305. dick: {
  49306. height: math.unit(1.44, "feet"),
  49307. name: "Dick",
  49308. image: {
  49309. source: "./media/characters/zenimma/dick.svg"
  49310. }
  49311. },
  49312. },
  49313. [
  49314. {
  49315. name: "Canon Height",
  49316. height: math.unit(66, "miles"),
  49317. default: true
  49318. },
  49319. ]
  49320. ))
  49321. characterMakers.push(() => makeCharacter(
  49322. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  49323. {
  49324. nude: {
  49325. height: math.unit(6, "feet"),
  49326. weight: math.unit(150, "lb"),
  49327. name: "Nude",
  49328. image: {
  49329. source: "./media/characters/shavon/nude.svg",
  49330. extra: 1242/1096,
  49331. bottom: 98/1340
  49332. }
  49333. },
  49334. dressed: {
  49335. height: math.unit(6, "feet"),
  49336. weight: math.unit(150, "lb"),
  49337. name: "Dressed",
  49338. image: {
  49339. source: "./media/characters/shavon/dressed.svg",
  49340. extra: 1242/1096,
  49341. bottom: 98/1340
  49342. }
  49343. },
  49344. },
  49345. [
  49346. {
  49347. name: "Macro",
  49348. height: math.unit(255, "feet"),
  49349. default: true
  49350. },
  49351. ]
  49352. ))
  49353. characterMakers.push(() => makeCharacter(
  49354. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  49355. {
  49356. front: {
  49357. height: math.unit(6, "feet"),
  49358. name: "Front",
  49359. image: {
  49360. source: "./media/characters/steph/front.svg",
  49361. extra: 1430/1330,
  49362. bottom: 54/1484
  49363. }
  49364. },
  49365. },
  49366. [
  49367. {
  49368. name: "Normal",
  49369. height: math.unit(6, "feet"),
  49370. default: true
  49371. },
  49372. ]
  49373. ))
  49374. characterMakers.push(() => makeCharacter(
  49375. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  49376. {
  49377. front: {
  49378. height: math.unit(9, "feet"),
  49379. weight: math.unit(400, "lb"),
  49380. name: "Front",
  49381. image: {
  49382. source: "./media/characters/kil'aman/front.svg",
  49383. extra: 1210/1159,
  49384. bottom: 109/1319
  49385. }
  49386. },
  49387. head: {
  49388. height: math.unit(2.14, "feet"),
  49389. name: "Head",
  49390. image: {
  49391. source: "./media/characters/kil'aman/head.svg"
  49392. }
  49393. },
  49394. maw: {
  49395. height: math.unit(1.21, "feet"),
  49396. name: "Maw",
  49397. image: {
  49398. source: "./media/characters/kil'aman/maw.svg"
  49399. }
  49400. },
  49401. foot: {
  49402. height: math.unit(1.7, "feet"),
  49403. name: "Foot",
  49404. image: {
  49405. source: "./media/characters/kil'aman/foot.svg"
  49406. }
  49407. },
  49408. dick: {
  49409. height: math.unit(2.1, "feet"),
  49410. name: "Dick",
  49411. image: {
  49412. source: "./media/characters/kil'aman/dick.svg"
  49413. }
  49414. },
  49415. },
  49416. [
  49417. {
  49418. name: "Normal",
  49419. height: math.unit(9, "feet")
  49420. },
  49421. {
  49422. name: "Canon Height",
  49423. height: math.unit(10, "miles"),
  49424. default: true
  49425. },
  49426. {
  49427. name: "Maximum",
  49428. height: math.unit(6e9, "miles")
  49429. },
  49430. ]
  49431. ))
  49432. characterMakers.push(() => makeCharacter(
  49433. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  49434. {
  49435. front: {
  49436. height: math.unit(90, "feet"),
  49437. weight: math.unit(675000, "lb"),
  49438. name: "Front",
  49439. image: {
  49440. source: "./media/characters/qadan/front.svg",
  49441. extra: 1012/1004,
  49442. bottom: 78/1090
  49443. }
  49444. },
  49445. back: {
  49446. height: math.unit(90, "feet"),
  49447. weight: math.unit(675000, "lb"),
  49448. name: "Back",
  49449. image: {
  49450. source: "./media/characters/qadan/back.svg",
  49451. extra: 1042/1031,
  49452. bottom: 55/1097
  49453. }
  49454. },
  49455. armored: {
  49456. height: math.unit(90, "feet"),
  49457. weight: math.unit(675000, "lb"),
  49458. name: "Armored",
  49459. image: {
  49460. source: "./media/characters/qadan/armored.svg",
  49461. extra: 1047/1037,
  49462. bottom: 48/1095
  49463. }
  49464. },
  49465. },
  49466. [
  49467. {
  49468. name: "Normal",
  49469. height: math.unit(90, "feet"),
  49470. default: true
  49471. },
  49472. ]
  49473. ))
  49474. characterMakers.push(() => makeCharacter(
  49475. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  49476. {
  49477. front: {
  49478. height: math.unit(6, "feet"),
  49479. weight: math.unit(225, "lb"),
  49480. name: "Front",
  49481. image: {
  49482. source: "./media/characters/brooke/front.svg",
  49483. extra: 1050/1010,
  49484. bottom: 66/1116
  49485. }
  49486. },
  49487. back: {
  49488. height: math.unit(6, "feet"),
  49489. weight: math.unit(225, "lb"),
  49490. name: "Back",
  49491. image: {
  49492. source: "./media/characters/brooke/back.svg",
  49493. extra: 1053/1013,
  49494. bottom: 41/1094
  49495. }
  49496. },
  49497. dressed: {
  49498. height: math.unit(6, "feet"),
  49499. weight: math.unit(225, "lb"),
  49500. name: "Dressed",
  49501. image: {
  49502. source: "./media/characters/brooke/dressed.svg",
  49503. extra: 1050/1010,
  49504. bottom: 66/1116
  49505. }
  49506. },
  49507. },
  49508. [
  49509. {
  49510. name: "Canon Height",
  49511. height: math.unit(500, "miles"),
  49512. default: true
  49513. },
  49514. ]
  49515. ))
  49516. characterMakers.push(() => makeCharacter(
  49517. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  49518. {
  49519. front: {
  49520. height: math.unit(6 + 2/12, "feet"),
  49521. weight: math.unit(210, "lb"),
  49522. name: "Front",
  49523. image: {
  49524. source: "./media/characters/wubs/front.svg",
  49525. extra: 1345/1325,
  49526. bottom: 70/1415
  49527. }
  49528. },
  49529. back: {
  49530. height: math.unit(6 + 2/12, "feet"),
  49531. weight: math.unit(210, "lb"),
  49532. name: "Back",
  49533. image: {
  49534. source: "./media/characters/wubs/back.svg",
  49535. extra: 1296/1275,
  49536. bottom: 58/1354
  49537. }
  49538. },
  49539. },
  49540. [
  49541. {
  49542. name: "Normal",
  49543. height: math.unit(6 + 2/12, "feet"),
  49544. default: true
  49545. },
  49546. {
  49547. name: "Macro",
  49548. height: math.unit(1000, "feet")
  49549. },
  49550. {
  49551. name: "Megamacro",
  49552. height: math.unit(1, "mile")
  49553. },
  49554. ]
  49555. ))
  49556. characterMakers.push(() => makeCharacter(
  49557. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  49558. {
  49559. front: {
  49560. height: math.unit(4, "feet"),
  49561. weight: math.unit(120, "lb"),
  49562. name: "Front",
  49563. image: {
  49564. source: "./media/characters/blue/front.svg",
  49565. extra: 1636/1525,
  49566. bottom: 43/1679
  49567. }
  49568. },
  49569. back: {
  49570. height: math.unit(4, "feet"),
  49571. weight: math.unit(120, "lb"),
  49572. name: "Back",
  49573. image: {
  49574. source: "./media/characters/blue/back.svg",
  49575. extra: 1660/1560,
  49576. bottom: 57/1717
  49577. }
  49578. },
  49579. paws: {
  49580. height: math.unit(0.826, "feet"),
  49581. name: "Paws",
  49582. image: {
  49583. source: "./media/characters/blue/paws.svg"
  49584. }
  49585. },
  49586. },
  49587. [
  49588. {
  49589. name: "Micro",
  49590. height: math.unit(3, "inches")
  49591. },
  49592. {
  49593. name: "Normal",
  49594. height: math.unit(4, "feet"),
  49595. default: true
  49596. },
  49597. {
  49598. name: "Femenine Form",
  49599. height: math.unit(14, "feet")
  49600. },
  49601. {
  49602. name: "Werebat Form",
  49603. height: math.unit(18, "feet")
  49604. },
  49605. ]
  49606. ))
  49607. characterMakers.push(() => makeCharacter(
  49608. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  49609. {
  49610. female: {
  49611. height: math.unit(7 + 4/12, "feet"),
  49612. weight: math.unit(243, "lb"),
  49613. name: "Female",
  49614. image: {
  49615. source: "./media/characters/kaya/female.svg",
  49616. extra: 975/898,
  49617. bottom: 34/1009
  49618. }
  49619. },
  49620. herm: {
  49621. height: math.unit(7 + 4/12, "feet"),
  49622. weight: math.unit(243, "lb"),
  49623. name: "Herm",
  49624. image: {
  49625. source: "./media/characters/kaya/herm.svg",
  49626. extra: 975/898,
  49627. bottom: 34/1009
  49628. }
  49629. },
  49630. },
  49631. [
  49632. {
  49633. name: "Normal",
  49634. height: math.unit(7 + 4/12, "feet"),
  49635. default: true
  49636. },
  49637. ]
  49638. ))
  49639. characterMakers.push(() => makeCharacter(
  49640. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  49641. {
  49642. female: {
  49643. height: math.unit(9 + 4/12, "feet"),
  49644. weight: math.unit(398, "lb"),
  49645. name: "Female",
  49646. image: {
  49647. source: "./media/characters/kassandra/female.svg",
  49648. extra: 908/839,
  49649. bottom: 61/969
  49650. }
  49651. },
  49652. intersex: {
  49653. height: math.unit(9 + 4/12, "feet"),
  49654. weight: math.unit(398, "lb"),
  49655. name: "Intersex",
  49656. image: {
  49657. source: "./media/characters/kassandra/intersex.svg",
  49658. extra: 908/839,
  49659. bottom: 61/969
  49660. }
  49661. },
  49662. },
  49663. [
  49664. {
  49665. name: "Normal",
  49666. height: math.unit(9 + 4/12, "feet"),
  49667. default: true
  49668. },
  49669. ]
  49670. ))
  49671. characterMakers.push(() => makeCharacter(
  49672. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  49673. {
  49674. front: {
  49675. height: math.unit(3, "meters"),
  49676. name: "Front",
  49677. image: {
  49678. source: "./media/characters/amy/front.svg",
  49679. extra: 1380/1343,
  49680. bottom: 70/1450
  49681. }
  49682. },
  49683. back: {
  49684. height: math.unit(3, "meters"),
  49685. name: "Back",
  49686. image: {
  49687. source: "./media/characters/amy/back.svg",
  49688. extra: 1380/1347,
  49689. bottom: 66/1446
  49690. }
  49691. },
  49692. },
  49693. [
  49694. {
  49695. name: "Normal",
  49696. height: math.unit(3, "meters"),
  49697. default: true
  49698. },
  49699. ]
  49700. ))
  49701. characterMakers.push(() => makeCharacter(
  49702. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  49703. {
  49704. side: {
  49705. height: math.unit(47, "cm"),
  49706. weight: math.unit(10.8, "kg"),
  49707. name: "Side",
  49708. image: {
  49709. source: "./media/characters/alphaschakal/side.svg",
  49710. extra: 1058/568,
  49711. bottom: 62/1120
  49712. }
  49713. },
  49714. back: {
  49715. height: math.unit(78, "cm"),
  49716. weight: math.unit(10.8, "kg"),
  49717. name: "Back",
  49718. image: {
  49719. source: "./media/characters/alphaschakal/back.svg",
  49720. extra: 1102/942,
  49721. bottom: 185/1287
  49722. }
  49723. },
  49724. head: {
  49725. height: math.unit(28, "cm"),
  49726. name: "Head",
  49727. image: {
  49728. source: "./media/characters/alphaschakal/head.svg",
  49729. extra: 696/508,
  49730. bottom: 0/696
  49731. }
  49732. },
  49733. paw: {
  49734. height: math.unit(16, "cm"),
  49735. name: "Paw",
  49736. image: {
  49737. source: "./media/characters/alphaschakal/paw.svg"
  49738. }
  49739. },
  49740. },
  49741. [
  49742. {
  49743. name: "Normal",
  49744. height: math.unit(47, "cm"),
  49745. default: true
  49746. },
  49747. {
  49748. name: "Macro",
  49749. height: math.unit(340, "cm")
  49750. },
  49751. ]
  49752. ))
  49753. characterMakers.push(() => makeCharacter(
  49754. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  49755. {
  49756. front: {
  49757. height: math.unit(36, "earths"),
  49758. name: "Front",
  49759. image: {
  49760. source: "./media/characters/ecobyss/front.svg",
  49761. extra: 1282/1215,
  49762. bottom: 11/1293
  49763. }
  49764. },
  49765. back: {
  49766. height: math.unit(36, "earths"),
  49767. name: "Back",
  49768. image: {
  49769. source: "./media/characters/ecobyss/back.svg",
  49770. extra: 1291/1222,
  49771. bottom: 8/1299
  49772. }
  49773. },
  49774. },
  49775. [
  49776. {
  49777. name: "Normal",
  49778. height: math.unit(36, "earths"),
  49779. default: true
  49780. },
  49781. ]
  49782. ))
  49783. characterMakers.push(() => makeCharacter(
  49784. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  49785. {
  49786. front: {
  49787. height: math.unit(12, "feet"),
  49788. name: "Front",
  49789. image: {
  49790. source: "./media/characters/vasuk/front.svg",
  49791. extra: 1326/1207,
  49792. bottom: 64/1390
  49793. }
  49794. },
  49795. },
  49796. [
  49797. {
  49798. name: "Normal",
  49799. height: math.unit(12, "feet"),
  49800. default: true
  49801. },
  49802. ]
  49803. ))
  49804. characterMakers.push(() => makeCharacter(
  49805. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  49806. {
  49807. side: {
  49808. height: math.unit(100, "feet"),
  49809. name: "Side",
  49810. image: {
  49811. source: "./media/characters/linneaus/side.svg",
  49812. extra: 987/807,
  49813. bottom: 47/1034
  49814. }
  49815. },
  49816. },
  49817. [
  49818. {
  49819. name: "Macro",
  49820. height: math.unit(100, "feet"),
  49821. default: true
  49822. },
  49823. ]
  49824. ))
  49825. characterMakers.push(() => makeCharacter(
  49826. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  49827. {
  49828. front: {
  49829. height: math.unit(8, "feet"),
  49830. weight: math.unit(1200, "lb"),
  49831. name: "Front",
  49832. image: {
  49833. source: "./media/characters/nyterious-daligdig/front.svg",
  49834. extra: 1284/1094,
  49835. bottom: 84/1368
  49836. }
  49837. },
  49838. back: {
  49839. height: math.unit(8, "feet"),
  49840. weight: math.unit(1200, "lb"),
  49841. name: "Back",
  49842. image: {
  49843. source: "./media/characters/nyterious-daligdig/back.svg",
  49844. extra: 1301/1121,
  49845. bottom: 129/1430
  49846. }
  49847. },
  49848. mouth: {
  49849. height: math.unit(1.464, "feet"),
  49850. name: "Mouth",
  49851. image: {
  49852. source: "./media/characters/nyterious-daligdig/mouth.svg"
  49853. }
  49854. },
  49855. },
  49856. [
  49857. {
  49858. name: "Small",
  49859. height: math.unit(8, "feet"),
  49860. default: true
  49861. },
  49862. {
  49863. name: "Normal",
  49864. height: math.unit(15, "feet")
  49865. },
  49866. {
  49867. name: "Macro",
  49868. height: math.unit(90, "feet")
  49869. },
  49870. ]
  49871. ))
  49872. characterMakers.push(() => makeCharacter(
  49873. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  49874. {
  49875. front: {
  49876. height: math.unit(7 + 4/12, "feet"),
  49877. weight: math.unit(252, "lb"),
  49878. name: "Front",
  49879. image: {
  49880. source: "./media/characters/bandel/front.svg",
  49881. extra: 1946/1775,
  49882. bottom: 26/1972
  49883. }
  49884. },
  49885. back: {
  49886. height: math.unit(7 + 4/12, "feet"),
  49887. weight: math.unit(252, "lb"),
  49888. name: "Back",
  49889. image: {
  49890. source: "./media/characters/bandel/back.svg",
  49891. extra: 1940/1770,
  49892. bottom: 25/1965
  49893. }
  49894. },
  49895. maw: {
  49896. height: math.unit(2.15, "feet"),
  49897. name: "Maw",
  49898. image: {
  49899. source: "./media/characters/bandel/maw.svg"
  49900. }
  49901. },
  49902. stomach: {
  49903. height: math.unit(1.95, "feet"),
  49904. name: "Stomach",
  49905. image: {
  49906. source: "./media/characters/bandel/stomach.svg"
  49907. }
  49908. },
  49909. },
  49910. [
  49911. {
  49912. name: "Normal",
  49913. height: math.unit(7 + 4/12, "feet"),
  49914. default: true
  49915. },
  49916. ]
  49917. ))
  49918. characterMakers.push(() => makeCharacter(
  49919. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  49920. {
  49921. front: {
  49922. height: math.unit(10 + 5/12, "feet"),
  49923. weight: math.unit(773.5, "kg"),
  49924. name: "Front",
  49925. image: {
  49926. source: "./media/characters/zed/front.svg",
  49927. extra: 987/941,
  49928. bottom: 52/1039
  49929. }
  49930. },
  49931. },
  49932. [
  49933. {
  49934. name: "Short",
  49935. height: math.unit(5 + 4/12, "feet")
  49936. },
  49937. {
  49938. name: "Average",
  49939. height: math.unit(10 + 5/12, "feet"),
  49940. default: true
  49941. },
  49942. {
  49943. name: "Mini-Macro",
  49944. height: math.unit(24 + 9/12, "feet")
  49945. },
  49946. {
  49947. name: "Macro",
  49948. height: math.unit(249, "feet")
  49949. },
  49950. {
  49951. name: "Mega-Macro",
  49952. height: math.unit(12490, "feet")
  49953. },
  49954. {
  49955. name: "Giga-Macro",
  49956. height: math.unit(24.9, "miles")
  49957. },
  49958. {
  49959. name: "Tera-Macro",
  49960. height: math.unit(24900, "miles")
  49961. },
  49962. {
  49963. name: "Cosmic Scale",
  49964. height: math.unit(38.9, "lightyears")
  49965. },
  49966. {
  49967. name: "Universal Scale",
  49968. height: math.unit(138e12, "lightyears")
  49969. },
  49970. ]
  49971. ))
  49972. characterMakers.push(() => makeCharacter(
  49973. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  49974. {
  49975. front: {
  49976. height: math.unit(1561, "inches"),
  49977. name: "Front",
  49978. image: {
  49979. source: "./media/characters/ivan/front.svg",
  49980. extra: 1126/1071,
  49981. bottom: 26/1152
  49982. }
  49983. },
  49984. back: {
  49985. height: math.unit(1561, "inches"),
  49986. name: "Back",
  49987. image: {
  49988. source: "./media/characters/ivan/back.svg",
  49989. extra: 1134/1079,
  49990. bottom: 30/1164
  49991. }
  49992. },
  49993. },
  49994. [
  49995. {
  49996. name: "Normal",
  49997. height: math.unit(1561, "inches"),
  49998. default: true
  49999. },
  50000. ]
  50001. ))
  50002. characterMakers.push(() => makeCharacter(
  50003. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  50004. {
  50005. front: {
  50006. height: math.unit(5 + 7/12, "feet"),
  50007. weight: math.unit(150, "lb"),
  50008. name: "Front",
  50009. image: {
  50010. source: "./media/characters/robin-arctic-hare/front.svg",
  50011. extra: 1148/974,
  50012. bottom: 20/1168
  50013. }
  50014. },
  50015. },
  50016. [
  50017. {
  50018. name: "Normal",
  50019. height: math.unit(5 + 7/12, "feet"),
  50020. default: true
  50021. },
  50022. ]
  50023. ))
  50024. characterMakers.push(() => makeCharacter(
  50025. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  50026. {
  50027. side: {
  50028. height: math.unit(5, "feet"),
  50029. name: "Side",
  50030. image: {
  50031. source: "./media/characters/birch/side.svg",
  50032. extra: 985/796,
  50033. bottom: 111/1096
  50034. }
  50035. },
  50036. },
  50037. [
  50038. {
  50039. name: "Normal",
  50040. height: math.unit(5, "feet"),
  50041. default: true
  50042. },
  50043. ]
  50044. ))
  50045. characterMakers.push(() => makeCharacter(
  50046. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  50047. {
  50048. front: {
  50049. height: math.unit(4, "feet"),
  50050. name: "Front",
  50051. image: {
  50052. source: "./media/characters/rasp/front.svg",
  50053. extra: 561/478,
  50054. bottom: 74/635
  50055. }
  50056. },
  50057. },
  50058. [
  50059. {
  50060. name: "Normal",
  50061. height: math.unit(4, "feet"),
  50062. default: true
  50063. },
  50064. ]
  50065. ))
  50066. characterMakers.push(() => makeCharacter(
  50067. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  50068. {
  50069. front: {
  50070. height: math.unit(4 + 6/12, "feet"),
  50071. name: "Front",
  50072. image: {
  50073. source: "./media/characters/agatha/front.svg",
  50074. extra: 947/933,
  50075. bottom: 42/989
  50076. }
  50077. },
  50078. back: {
  50079. height: math.unit(4 + 6/12, "feet"),
  50080. name: "Back",
  50081. image: {
  50082. source: "./media/characters/agatha/back.svg",
  50083. extra: 935/922,
  50084. bottom: 48/983
  50085. }
  50086. },
  50087. },
  50088. [
  50089. {
  50090. name: "Normal",
  50091. height: math.unit(4 + 6 /12, "feet"),
  50092. default: true
  50093. },
  50094. {
  50095. name: "Max Size",
  50096. height: math.unit(500, "feet")
  50097. },
  50098. ]
  50099. ))
  50100. characterMakers.push(() => makeCharacter(
  50101. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  50102. {
  50103. side: {
  50104. height: math.unit(30, "feet"),
  50105. name: "Side",
  50106. image: {
  50107. source: "./media/characters/roggy/side.svg",
  50108. extra: 909/643,
  50109. bottom: 63/972
  50110. }
  50111. },
  50112. lounging: {
  50113. height: math.unit(20, "feet"),
  50114. name: "Lounging",
  50115. image: {
  50116. source: "./media/characters/roggy/lounging.svg",
  50117. extra: 643/479,
  50118. bottom: 145/788
  50119. }
  50120. },
  50121. handpaw: {
  50122. height: math.unit(13.1, "feet"),
  50123. name: "Handpaw",
  50124. image: {
  50125. source: "./media/characters/roggy/handpaw.svg"
  50126. }
  50127. },
  50128. footpaw: {
  50129. height: math.unit(15.8, "feet"),
  50130. name: "Footpaw",
  50131. image: {
  50132. source: "./media/characters/roggy/footpaw.svg"
  50133. }
  50134. },
  50135. },
  50136. [
  50137. {
  50138. name: "Menacing",
  50139. height: math.unit(30, "feet"),
  50140. default: true
  50141. },
  50142. ]
  50143. ))
  50144. characterMakers.push(() => makeCharacter(
  50145. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  50146. {
  50147. front: {
  50148. height: math.unit(5 + 7/12, "feet"),
  50149. weight: math.unit(135, "lb"),
  50150. name: "Front",
  50151. image: {
  50152. source: "./media/characters/naomi/front.svg",
  50153. extra: 1209/1154,
  50154. bottom: 129/1338
  50155. }
  50156. },
  50157. back: {
  50158. height: math.unit(5 + 7/12, "feet"),
  50159. weight: math.unit(135, "lb"),
  50160. name: "Back",
  50161. image: {
  50162. source: "./media/characters/naomi/back.svg",
  50163. extra: 1252/1190,
  50164. bottom: 23/1275
  50165. }
  50166. },
  50167. },
  50168. [
  50169. {
  50170. name: "Normal",
  50171. height: math.unit(5 + 7 /12, "feet"),
  50172. default: true
  50173. },
  50174. ]
  50175. ))
  50176. characterMakers.push(() => makeCharacter(
  50177. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  50178. {
  50179. side: {
  50180. height: math.unit(35, "meters"),
  50181. name: "Side",
  50182. image: {
  50183. source: "./media/characters/kimpi/side.svg",
  50184. extra: 419/382,
  50185. bottom: 63/482
  50186. }
  50187. },
  50188. hand: {
  50189. height: math.unit(8.96, "meters"),
  50190. name: "Hand",
  50191. image: {
  50192. source: "./media/characters/kimpi/hand.svg"
  50193. }
  50194. },
  50195. },
  50196. [
  50197. {
  50198. name: "Normal",
  50199. height: math.unit(35, "meters"),
  50200. default: true
  50201. },
  50202. ]
  50203. ))
  50204. characterMakers.push(() => makeCharacter(
  50205. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  50206. {
  50207. front: {
  50208. height: math.unit(4 + 4/12, "feet"),
  50209. name: "Front",
  50210. image: {
  50211. source: "./media/characters/pepper-purrloin/front.svg",
  50212. extra: 1141/1024,
  50213. bottom: 21/1162
  50214. }
  50215. },
  50216. },
  50217. [
  50218. {
  50219. name: "Normal",
  50220. height: math.unit(4 + 4/12, "feet"),
  50221. default: true
  50222. },
  50223. ]
  50224. ))
  50225. characterMakers.push(() => makeCharacter(
  50226. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  50227. {
  50228. front: {
  50229. height: math.unit(6 + 2/12, "feet"),
  50230. name: "Front",
  50231. image: {
  50232. source: "./media/characters/raphael/front.svg",
  50233. extra: 1101/962,
  50234. bottom: 59/1160
  50235. }
  50236. },
  50237. },
  50238. [
  50239. {
  50240. name: "Normal",
  50241. height: math.unit(6 + 2/12, "feet"),
  50242. default: true
  50243. },
  50244. ]
  50245. ))
  50246. characterMakers.push(() => makeCharacter(
  50247. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  50248. {
  50249. front: {
  50250. height: math.unit(6, "feet"),
  50251. weight: math.unit(150, "lb"),
  50252. name: "Front",
  50253. image: {
  50254. source: "./media/characters/victor-williams/front.svg",
  50255. extra: 1894/1825,
  50256. bottom: 67/1961
  50257. }
  50258. },
  50259. },
  50260. [
  50261. {
  50262. name: "Normal",
  50263. height: math.unit(6, "feet"),
  50264. default: true
  50265. },
  50266. ]
  50267. ))
  50268. characterMakers.push(() => makeCharacter(
  50269. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  50270. {
  50271. front: {
  50272. height: math.unit(5 + 8/12, "feet"),
  50273. weight: math.unit(150, "lb"),
  50274. name: "Front",
  50275. image: {
  50276. source: "./media/characters/rachel/front.svg",
  50277. extra: 1902/1787,
  50278. bottom: 46/1948
  50279. }
  50280. },
  50281. },
  50282. [
  50283. {
  50284. name: "Base Height",
  50285. height: math.unit(5 + 8/12, "feet"),
  50286. default: true
  50287. },
  50288. {
  50289. name: "Macro",
  50290. height: math.unit(200, "feet")
  50291. },
  50292. {
  50293. name: "Mega Macro",
  50294. height: math.unit(1, "mile")
  50295. },
  50296. {
  50297. name: "Giga Macro",
  50298. height: math.unit(1500, "miles")
  50299. },
  50300. {
  50301. name: "Tera Macro",
  50302. height: math.unit(8000, "miles")
  50303. },
  50304. {
  50305. name: "Tera Macro+",
  50306. height: math.unit(2e5, "miles")
  50307. },
  50308. ]
  50309. ))
  50310. characterMakers.push(() => makeCharacter(
  50311. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  50312. {
  50313. front: {
  50314. height: math.unit(6.5, "feet"),
  50315. name: "Front",
  50316. image: {
  50317. source: "./media/characters/svetlana-rozovskaya/front.svg",
  50318. extra: 860/819,
  50319. bottom: 307/1167
  50320. }
  50321. },
  50322. back: {
  50323. height: math.unit(6.5, "feet"),
  50324. name: "Back",
  50325. image: {
  50326. source: "./media/characters/svetlana-rozovskaya/back.svg",
  50327. extra: 880/837,
  50328. bottom: 395/1275
  50329. }
  50330. },
  50331. sleeping: {
  50332. height: math.unit(2.79, "feet"),
  50333. name: "Sleeping",
  50334. image: {
  50335. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  50336. extra: 465/383,
  50337. bottom: 263/728
  50338. }
  50339. },
  50340. maw: {
  50341. height: math.unit(2.52, "feet"),
  50342. name: "Maw",
  50343. image: {
  50344. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  50345. }
  50346. },
  50347. },
  50348. [
  50349. {
  50350. name: "Normal",
  50351. height: math.unit(6.5, "feet"),
  50352. default: true
  50353. },
  50354. ]
  50355. ))
  50356. characterMakers.push(() => makeCharacter(
  50357. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  50358. {
  50359. front: {
  50360. height: math.unit(5, "feet"),
  50361. name: "Front",
  50362. image: {
  50363. source: "./media/characters/nova-nerium/front.svg",
  50364. extra: 1548/1392,
  50365. bottom: 374/1922
  50366. }
  50367. },
  50368. back: {
  50369. height: math.unit(5, "feet"),
  50370. name: "Back",
  50371. image: {
  50372. source: "./media/characters/nova-nerium/back.svg",
  50373. extra: 1658/1468,
  50374. bottom: 257/1915
  50375. }
  50376. },
  50377. },
  50378. [
  50379. {
  50380. name: "Normal",
  50381. height: math.unit(5, "feet"),
  50382. default: true
  50383. },
  50384. ]
  50385. ))
  50386. characterMakers.push(() => makeCharacter(
  50387. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  50388. {
  50389. front: {
  50390. height: math.unit(5 + 4/12, "feet"),
  50391. name: "Front",
  50392. image: {
  50393. source: "./media/characters/ashe-pyriph/front.svg",
  50394. extra: 1935/1747,
  50395. bottom: 60/1995
  50396. }
  50397. },
  50398. },
  50399. [
  50400. {
  50401. name: "Normal",
  50402. height: math.unit(5 + 4/12, "feet"),
  50403. default: true
  50404. },
  50405. ]
  50406. ))
  50407. characterMakers.push(() => makeCharacter(
  50408. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  50409. {
  50410. front: {
  50411. height: math.unit(8.7, "feet"),
  50412. name: "Front",
  50413. image: {
  50414. source: "./media/characters/flicker-wisp/front.svg",
  50415. extra: 1835/1613,
  50416. bottom: 449/2284
  50417. }
  50418. },
  50419. side: {
  50420. height: math.unit(8.7, "feet"),
  50421. name: "Side",
  50422. image: {
  50423. source: "./media/characters/flicker-wisp/side.svg",
  50424. extra: 1841/1642,
  50425. bottom: 336/2177
  50426. },
  50427. default: true
  50428. },
  50429. maw: {
  50430. height: math.unit(3.35, "feet"),
  50431. name: "Maw",
  50432. image: {
  50433. source: "./media/characters/flicker-wisp/maw.svg",
  50434. extra: 2338/1506,
  50435. bottom: 0/2338
  50436. }
  50437. },
  50438. ovipositor: {
  50439. height: math.unit(4.95, "feet"),
  50440. name: "Ovipositor",
  50441. image: {
  50442. source: "./media/characters/flicker-wisp/ovipositor.svg"
  50443. }
  50444. },
  50445. egg: {
  50446. height: math.unit(0.385, "feet"),
  50447. weight: math.unit(2, "lb"),
  50448. name: "Egg",
  50449. image: {
  50450. source: "./media/characters/flicker-wisp/egg.svg"
  50451. }
  50452. },
  50453. },
  50454. [
  50455. {
  50456. name: "Normal",
  50457. height: math.unit(8.7, "feet"),
  50458. default: true
  50459. },
  50460. ]
  50461. ))
  50462. characterMakers.push(() => makeCharacter(
  50463. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  50464. {
  50465. side: {
  50466. height: math.unit(11, "feet"),
  50467. name: "Side",
  50468. image: {
  50469. source: "./media/characters/faefnul/side.svg",
  50470. extra: 1100/1007,
  50471. bottom: 0/1100
  50472. }
  50473. },
  50474. },
  50475. [
  50476. {
  50477. name: "Normal",
  50478. height: math.unit(11, "feet"),
  50479. default: true
  50480. },
  50481. ]
  50482. ))
  50483. characterMakers.push(() => makeCharacter(
  50484. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  50485. {
  50486. front: {
  50487. height: math.unit(6 + 2/12, "feet"),
  50488. name: "Front",
  50489. image: {
  50490. source: "./media/characters/shady/front.svg",
  50491. extra: 502/461,
  50492. bottom: 9/511
  50493. }
  50494. },
  50495. kneeling: {
  50496. height: math.unit(4.6, "feet"),
  50497. name: "Kneeling",
  50498. image: {
  50499. source: "./media/characters/shady/kneeling.svg",
  50500. extra: 1328/1219,
  50501. bottom: 117/1445
  50502. }
  50503. },
  50504. maw: {
  50505. height: math.unit(2, "feet"),
  50506. name: "Maw",
  50507. image: {
  50508. source: "./media/characters/shady/maw.svg"
  50509. }
  50510. },
  50511. },
  50512. [
  50513. {
  50514. name: "Nano",
  50515. height: math.unit(1, "mm")
  50516. },
  50517. {
  50518. name: "Micro",
  50519. height: math.unit(12, "mm")
  50520. },
  50521. {
  50522. name: "Tiny",
  50523. height: math.unit(3, "inches")
  50524. },
  50525. {
  50526. name: "Normal",
  50527. height: math.unit(6 + 2/12, "feet"),
  50528. default: true
  50529. },
  50530. {
  50531. name: "Big",
  50532. height: math.unit(15, "feet")
  50533. },
  50534. {
  50535. name: "Macro",
  50536. height: math.unit(150, "feet")
  50537. },
  50538. {
  50539. name: "Titanic",
  50540. height: math.unit(500, "feet")
  50541. },
  50542. ]
  50543. ))
  50544. characterMakers.push(() => makeCharacter(
  50545. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  50546. {
  50547. front: {
  50548. height: math.unit(12, "feet"),
  50549. name: "Front",
  50550. image: {
  50551. source: "./media/characters/fenrir/front.svg",
  50552. extra: 968/875,
  50553. bottom: 22/990
  50554. }
  50555. },
  50556. },
  50557. [
  50558. {
  50559. name: "Big",
  50560. height: math.unit(12, "feet"),
  50561. default: true
  50562. },
  50563. ]
  50564. ))
  50565. characterMakers.push(() => makeCharacter(
  50566. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  50567. {
  50568. front: {
  50569. height: math.unit(5 + 4/12, "feet"),
  50570. name: "Front",
  50571. image: {
  50572. source: "./media/characters/makar/front.svg",
  50573. extra: 1181/1112,
  50574. bottom: 78/1259
  50575. }
  50576. },
  50577. },
  50578. [
  50579. {
  50580. name: "Normal",
  50581. height: math.unit(5 + 4/12, "feet"),
  50582. default: true
  50583. },
  50584. ]
  50585. ))
  50586. characterMakers.push(() => makeCharacter(
  50587. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  50588. {
  50589. front: {
  50590. height: math.unit(5 + 7/12, "feet"),
  50591. name: "Front",
  50592. image: {
  50593. source: "./media/characters/callow/front.svg",
  50594. extra: 1482/1304,
  50595. bottom: 23/1505
  50596. }
  50597. },
  50598. back: {
  50599. height: math.unit(5 + 7/12, "feet"),
  50600. name: "Back",
  50601. image: {
  50602. source: "./media/characters/callow/back.svg",
  50603. extra: 1484/1296,
  50604. bottom: 25/1509
  50605. }
  50606. },
  50607. },
  50608. [
  50609. {
  50610. name: "Micro",
  50611. height: math.unit(3, "inches"),
  50612. default: true
  50613. },
  50614. {
  50615. name: "Normal",
  50616. height: math.unit(5 + 7/12, "feet")
  50617. },
  50618. ]
  50619. ))
  50620. characterMakers.push(() => makeCharacter(
  50621. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  50622. {
  50623. front: {
  50624. height: math.unit(6 + 2/12, "feet"),
  50625. name: "Front",
  50626. image: {
  50627. source: "./media/characters/natel/front.svg",
  50628. extra: 1833/1692,
  50629. bottom: 166/1999
  50630. }
  50631. },
  50632. },
  50633. [
  50634. {
  50635. name: "Normal",
  50636. height: math.unit(6 + 2/12, "feet"),
  50637. default: true
  50638. },
  50639. ]
  50640. ))
  50641. characterMakers.push(() => makeCharacter(
  50642. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  50643. {
  50644. front: {
  50645. height: math.unit(1.75, "meters"),
  50646. name: "Front",
  50647. image: {
  50648. source: "./media/characters/misu/front.svg",
  50649. extra: 1690/1558,
  50650. bottom: 234/1924
  50651. }
  50652. },
  50653. back: {
  50654. height: math.unit(1.75, "meters"),
  50655. name: "Back",
  50656. image: {
  50657. source: "./media/characters/misu/back.svg",
  50658. extra: 1762/1618,
  50659. bottom: 146/1908
  50660. }
  50661. },
  50662. frontNude: {
  50663. height: math.unit(1.75, "meters"),
  50664. name: "Front (Nude)",
  50665. image: {
  50666. source: "./media/characters/misu/front-nude.svg",
  50667. extra: 1690/1558,
  50668. bottom: 234/1924
  50669. }
  50670. },
  50671. backNude: {
  50672. height: math.unit(1.75, "meters"),
  50673. name: "Back (Nude)",
  50674. image: {
  50675. source: "./media/characters/misu/back-nude.svg",
  50676. extra: 1762/1618,
  50677. bottom: 146/1908
  50678. }
  50679. },
  50680. frontErect: {
  50681. height: math.unit(1.75, "meters"),
  50682. name: "Front (Erect)",
  50683. image: {
  50684. source: "./media/characters/misu/front-erect.svg",
  50685. extra: 1690/1558,
  50686. bottom: 234/1924
  50687. }
  50688. },
  50689. maw: {
  50690. height: math.unit(0.47, "meters"),
  50691. name: "Maw",
  50692. image: {
  50693. source: "./media/characters/misu/maw.svg"
  50694. }
  50695. },
  50696. head: {
  50697. height: math.unit(0.35, "meters"),
  50698. name: "Head",
  50699. image: {
  50700. source: "./media/characters/misu/head.svg"
  50701. }
  50702. },
  50703. rear: {
  50704. height: math.unit(0.47, "meters"),
  50705. name: "Rear",
  50706. image: {
  50707. source: "./media/characters/misu/rear.svg"
  50708. }
  50709. },
  50710. },
  50711. [
  50712. {
  50713. name: "Normal",
  50714. height: math.unit(1.75, "meters")
  50715. },
  50716. {
  50717. name: "Not good for the people",
  50718. height: math.unit(42, "meters")
  50719. },
  50720. {
  50721. name: "Not good for the neighborhood",
  50722. height: math.unit(135, "meters")
  50723. },
  50724. {
  50725. name: "Bit bigger problem",
  50726. height: math.unit(380, "meters"),
  50727. default: true
  50728. },
  50729. {
  50730. name: "Not good for the city",
  50731. height: math.unit(1.5, "km")
  50732. },
  50733. {
  50734. name: "Not good for the county",
  50735. height: math.unit(5.5, "km")
  50736. },
  50737. {
  50738. name: "Not good for the state",
  50739. height: math.unit(25, "km")
  50740. },
  50741. {
  50742. name: "Not good for the country",
  50743. height: math.unit(125, "km")
  50744. },
  50745. {
  50746. name: "Not good for the continent",
  50747. height: math.unit(2100, "km")
  50748. },
  50749. {
  50750. name: "Not good for the planet",
  50751. height: math.unit(35000, "km")
  50752. },
  50753. {
  50754. name: "Just no",
  50755. height: math.unit(8.5e18, "km")
  50756. },
  50757. ]
  50758. ))
  50759. characterMakers.push(() => makeCharacter(
  50760. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  50761. {
  50762. front: {
  50763. height: math.unit(6.5, "feet"),
  50764. name: "Front",
  50765. image: {
  50766. source: "./media/characters/poppy/front.svg",
  50767. extra: 1878/1812,
  50768. bottom: 43/1921
  50769. }
  50770. },
  50771. feet: {
  50772. height: math.unit(1.06, "feet"),
  50773. name: "Feet",
  50774. image: {
  50775. source: "./media/characters/poppy/feet.svg",
  50776. extra: 1083/1083,
  50777. bottom: 87/1170
  50778. }
  50779. },
  50780. },
  50781. [
  50782. {
  50783. name: "Human",
  50784. height: math.unit(6.5, "feet")
  50785. },
  50786. {
  50787. name: "Default",
  50788. height: math.unit(300, "feet"),
  50789. default: true
  50790. },
  50791. {
  50792. name: "Huge",
  50793. height: math.unit(850, "feet")
  50794. },
  50795. {
  50796. name: "Mega",
  50797. height: math.unit(8000, "feet")
  50798. },
  50799. {
  50800. name: "Giga",
  50801. height: math.unit(300, "miles")
  50802. },
  50803. ]
  50804. ))
  50805. characterMakers.push(() => makeCharacter(
  50806. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  50807. {
  50808. bipedal: {
  50809. height: math.unit(7, "feet"),
  50810. name: "Bipedal",
  50811. image: {
  50812. source: "./media/characters/zener/bipedal.svg",
  50813. extra: 874/805,
  50814. bottom: 109/983
  50815. }
  50816. },
  50817. quadrupedal: {
  50818. height: math.unit(4.64, "feet"),
  50819. name: "Quadrupedal",
  50820. image: {
  50821. source: "./media/characters/zener/quadrupedal.svg",
  50822. extra: 638/507,
  50823. bottom: 190/828
  50824. }
  50825. },
  50826. cock: {
  50827. height: math.unit(18, "inches"),
  50828. name: "Cock",
  50829. image: {
  50830. source: "./media/characters/zener/cock.svg"
  50831. }
  50832. },
  50833. },
  50834. [
  50835. {
  50836. name: "Normal",
  50837. height: math.unit(7, "feet"),
  50838. default: true
  50839. },
  50840. ]
  50841. ))
  50842. characterMakers.push(() => makeCharacter(
  50843. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  50844. {
  50845. nude: {
  50846. height: math.unit(5 + 6/12, "feet"),
  50847. name: "Nude",
  50848. image: {
  50849. source: "./media/characters/charlie-dog/nude.svg",
  50850. extra: 768/734,
  50851. bottom: 26/794
  50852. }
  50853. },
  50854. dressed: {
  50855. height: math.unit(5 + 6/12, "feet"),
  50856. name: "Dressed",
  50857. image: {
  50858. source: "./media/characters/charlie-dog/dressed.svg",
  50859. extra: 768/734,
  50860. bottom: 26/794
  50861. }
  50862. },
  50863. },
  50864. [
  50865. {
  50866. name: "Normal",
  50867. height: math.unit(5 + 6/12, "feet"),
  50868. default: true
  50869. },
  50870. ]
  50871. ))
  50872. characterMakers.push(() => makeCharacter(
  50873. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  50874. {
  50875. front: {
  50876. height: math.unit(6 + 4/12, "feet"),
  50877. name: "Front",
  50878. image: {
  50879. source: "./media/characters/ir'istrasz/front.svg",
  50880. extra: 1014/977,
  50881. bottom: 65/1079
  50882. }
  50883. },
  50884. back: {
  50885. height: math.unit(6 + 4/12, "feet"),
  50886. name: "Back",
  50887. image: {
  50888. source: "./media/characters/ir'istrasz/back.svg",
  50889. extra: 1024/992,
  50890. bottom: 34/1058
  50891. }
  50892. },
  50893. },
  50894. [
  50895. {
  50896. name: "Normal",
  50897. height: math.unit(6 + 4/12, "feet"),
  50898. default: true
  50899. },
  50900. ]
  50901. ))
  50902. characterMakers.push(() => makeCharacter(
  50903. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  50904. {
  50905. front: {
  50906. height: math.unit(5 + 8/12, "feet"),
  50907. name: "Front",
  50908. image: {
  50909. source: "./media/characters/dee-ditto/front.svg",
  50910. extra: 1874/1785,
  50911. bottom: 68/1942
  50912. }
  50913. },
  50914. back: {
  50915. height: math.unit(5 + 8/12, "feet"),
  50916. name: "Back",
  50917. image: {
  50918. source: "./media/characters/dee-ditto/back.svg",
  50919. extra: 1870/1783,
  50920. bottom: 77/1947
  50921. }
  50922. },
  50923. },
  50924. [
  50925. {
  50926. name: "Normal",
  50927. height: math.unit(5 + 8/12, "feet"),
  50928. default: true
  50929. },
  50930. ]
  50931. ))
  50932. characterMakers.push(() => makeCharacter(
  50933. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  50934. {
  50935. front: {
  50936. height: math.unit(7 + 6/12, "feet"),
  50937. name: "Front",
  50938. image: {
  50939. source: "./media/characters/fey/front.svg",
  50940. extra: 995/979,
  50941. bottom: 30/1025
  50942. }
  50943. },
  50944. back: {
  50945. height: math.unit(7 + 6/12, "feet"),
  50946. name: "Back",
  50947. image: {
  50948. source: "./media/characters/fey/back.svg",
  50949. extra: 1079/1008,
  50950. bottom: 5/1084
  50951. }
  50952. },
  50953. dressed: {
  50954. height: math.unit(7 + 6/12, "feet"),
  50955. name: "Dressed",
  50956. image: {
  50957. source: "./media/characters/fey/dressed.svg",
  50958. extra: 995/979,
  50959. bottom: 30/1025
  50960. }
  50961. },
  50962. },
  50963. [
  50964. {
  50965. name: "Normal",
  50966. height: math.unit(7 + 6/12, "feet"),
  50967. default: true
  50968. },
  50969. ]
  50970. ))
  50971. characterMakers.push(() => makeCharacter(
  50972. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  50973. {
  50974. standing: {
  50975. height: math.unit(17, "feet"),
  50976. name: "Standing",
  50977. image: {
  50978. source: "./media/characters/aster/standing.svg",
  50979. extra: 1798/1598,
  50980. bottom: 117/1915
  50981. }
  50982. },
  50983. },
  50984. [
  50985. {
  50986. name: "Normal",
  50987. height: math.unit(17, "feet"),
  50988. default: true
  50989. },
  50990. {
  50991. name: "Homewrecker",
  50992. height: math.unit(95, "feet")
  50993. },
  50994. {
  50995. name: "Planet Devourer",
  50996. height: math.unit(1008000, "miles")
  50997. },
  50998. ]
  50999. ))
  51000. characterMakers.push(() => makeCharacter(
  51001. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  51002. {
  51003. front: {
  51004. height: math.unit(6 + 5/12, "feet"),
  51005. weight: math.unit(265, "lb"),
  51006. name: "Front",
  51007. image: {
  51008. source: "./media/characters/devon-childs/front.svg",
  51009. extra: 1795/1721,
  51010. bottom: 41/1836
  51011. }
  51012. },
  51013. side: {
  51014. height: math.unit(6 + 5/12, "feet"),
  51015. weight: math.unit(265, "lb"),
  51016. name: "Side",
  51017. image: {
  51018. source: "./media/characters/devon-childs/side.svg",
  51019. extra: 1812/1738,
  51020. bottom: 30/1842
  51021. }
  51022. },
  51023. back: {
  51024. height: math.unit(6 + 5/12, "feet"),
  51025. weight: math.unit(265, "lb"),
  51026. name: "Back",
  51027. image: {
  51028. source: "./media/characters/devon-childs/back.svg",
  51029. extra: 1808/1735,
  51030. bottom: 23/1831
  51031. }
  51032. },
  51033. hand: {
  51034. height: math.unit(1.464, "feet"),
  51035. name: "Hand",
  51036. image: {
  51037. source: "./media/characters/devon-childs/hand.svg"
  51038. }
  51039. },
  51040. foot: {
  51041. height: math.unit(1.6, "feet"),
  51042. name: "Foot",
  51043. image: {
  51044. source: "./media/characters/devon-childs/foot.svg"
  51045. }
  51046. },
  51047. },
  51048. [
  51049. {
  51050. name: "Micro",
  51051. height: math.unit(7, "cm")
  51052. },
  51053. {
  51054. name: "Normal",
  51055. height: math.unit(6 + 5/12, "feet"),
  51056. default: true
  51057. },
  51058. {
  51059. name: "Macro",
  51060. height: math.unit(154, "feet")
  51061. },
  51062. ]
  51063. ))
  51064. characterMakers.push(() => makeCharacter(
  51065. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  51066. {
  51067. front: {
  51068. height: math.unit(6, "feet"),
  51069. weight: math.unit(180, "lb"),
  51070. name: "Front",
  51071. image: {
  51072. source: "./media/characters/lydemox-vir/front.svg",
  51073. extra: 1632/1435,
  51074. bottom: 58/1690
  51075. }
  51076. },
  51077. frontSFW: {
  51078. height: math.unit(6, "feet"),
  51079. weight: math.unit(180, "lb"),
  51080. name: "Front (SFW)",
  51081. image: {
  51082. source: "./media/characters/lydemox-vir/front-sfw.svg",
  51083. extra: 1632/1435,
  51084. bottom: 58/1690
  51085. }
  51086. },
  51087. back: {
  51088. height: math.unit(6, "feet"),
  51089. weight: math.unit(180, "lb"),
  51090. name: "Back",
  51091. image: {
  51092. source: "./media/characters/lydemox-vir/back.svg",
  51093. extra: 1593/1408,
  51094. bottom: 31/1624
  51095. }
  51096. },
  51097. paw: {
  51098. height: math.unit(1.85, "feet"),
  51099. name: "Paw",
  51100. image: {
  51101. source: "./media/characters/lydemox-vir/paw.svg"
  51102. }
  51103. },
  51104. dick: {
  51105. height: math.unit(1.8, "feet"),
  51106. name: "Dick",
  51107. image: {
  51108. source: "./media/characters/lydemox-vir/dick.svg"
  51109. }
  51110. },
  51111. },
  51112. [
  51113. {
  51114. name: "Macro",
  51115. height: math.unit(100, "feet"),
  51116. default: true
  51117. },
  51118. {
  51119. name: "Teramacro",
  51120. height: math.unit(1, "earth")
  51121. },
  51122. {
  51123. name: "Planetary",
  51124. height: math.unit(20, "earths")
  51125. },
  51126. ]
  51127. ))
  51128. characterMakers.push(() => makeCharacter(
  51129. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  51130. {
  51131. front: {
  51132. height: math.unit(15 + 8/12, "feet"),
  51133. weight: math.unit(1237, "kg"),
  51134. name: "Front",
  51135. image: {
  51136. source: "./media/characters/mia/front.svg",
  51137. extra: 1573/1446,
  51138. bottom: 58/1631
  51139. }
  51140. },
  51141. },
  51142. [
  51143. {
  51144. name: "Small",
  51145. height: math.unit(9 + 5/12, "feet")
  51146. },
  51147. {
  51148. name: "Normal",
  51149. height: math.unit(15 + 8/12, "feet"),
  51150. default: true
  51151. },
  51152. ]
  51153. ))
  51154. characterMakers.push(() => makeCharacter(
  51155. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  51156. {
  51157. front: {
  51158. height: math.unit(10 + 6/12, "feet"),
  51159. weight: math.unit(1.3, "tons"),
  51160. name: "Front",
  51161. image: {
  51162. source: "./media/characters/mr-graves/front.svg",
  51163. extra: 1779/1695,
  51164. bottom: 198/1977
  51165. }
  51166. },
  51167. },
  51168. [
  51169. {
  51170. name: "Normal",
  51171. height: math.unit(10 + 6 /12, "feet"),
  51172. default: true
  51173. },
  51174. ]
  51175. ))
  51176. characterMakers.push(() => makeCharacter(
  51177. { name: "Jess", species: ["human"], tags: ["anthro"] },
  51178. {
  51179. dressedFront: {
  51180. height: math.unit(5 + 8/12, "feet"),
  51181. weight: math.unit(125, "lb"),
  51182. name: "Dressed (Front)",
  51183. image: {
  51184. source: "./media/characters/jess/dressed-front.svg",
  51185. extra: 1176/1152,
  51186. bottom: 42/1218
  51187. }
  51188. },
  51189. dressedSide: {
  51190. height: math.unit(5 + 8/12, "feet"),
  51191. weight: math.unit(125, "lb"),
  51192. name: "Dressed (Side)",
  51193. image: {
  51194. source: "./media/characters/jess/dressed-side.svg",
  51195. extra: 1204/1190,
  51196. bottom: 6/1210
  51197. }
  51198. },
  51199. nudeFront: {
  51200. height: math.unit(5 + 8/12, "feet"),
  51201. weight: math.unit(125, "lb"),
  51202. name: "Nude (Front)",
  51203. image: {
  51204. source: "./media/characters/jess/nude-front.svg",
  51205. extra: 1176/1152,
  51206. bottom: 42/1218
  51207. }
  51208. },
  51209. nudeSide: {
  51210. height: math.unit(5 + 8/12, "feet"),
  51211. weight: math.unit(125, "lb"),
  51212. name: "Nude (Side)",
  51213. image: {
  51214. source: "./media/characters/jess/nude-side.svg",
  51215. extra: 1204/1190,
  51216. bottom: 6/1210
  51217. }
  51218. },
  51219. organsFront: {
  51220. height: math.unit(2.83799342105, "feet"),
  51221. name: "Organs (Front)",
  51222. image: {
  51223. source: "./media/characters/jess/organs-front.svg"
  51224. }
  51225. },
  51226. organsSide: {
  51227. height: math.unit(2.64225290474, "feet"),
  51228. name: "Organs (Side)",
  51229. image: {
  51230. source: "./media/characters/jess/organs-side.svg"
  51231. }
  51232. },
  51233. digestiveTractFront: {
  51234. height: math.unit(2.8106580871, "feet"),
  51235. name: "Digestive Tract (Front)",
  51236. image: {
  51237. source: "./media/characters/jess/digestive-tract-front.svg"
  51238. }
  51239. },
  51240. digestiveTractSide: {
  51241. height: math.unit(2.54365045014, "feet"),
  51242. name: "Digestive Tract (Side)",
  51243. image: {
  51244. source: "./media/characters/jess/digestive-tract-side.svg"
  51245. }
  51246. },
  51247. respiratorySystemFront: {
  51248. height: math.unit(1.11196233456, "feet"),
  51249. name: "Respiratory System (Front)",
  51250. image: {
  51251. source: "./media/characters/jess/respiratory-system-front.svg"
  51252. }
  51253. },
  51254. respiratorySystemSide: {
  51255. height: math.unit(0.89327966297, "feet"),
  51256. name: "Respiratory System (Side)",
  51257. image: {
  51258. source: "./media/characters/jess/respiratory-system-side.svg"
  51259. }
  51260. },
  51261. urinaryTractFront: {
  51262. height: math.unit(1.16126356186, "feet"),
  51263. name: "Urinary Tract (Front)",
  51264. image: {
  51265. source: "./media/characters/jess/urinary-tract-front.svg"
  51266. }
  51267. },
  51268. urinaryTractSide: {
  51269. height: math.unit(1.20910039627, "feet"),
  51270. name: "Urinary Tract (Side)",
  51271. image: {
  51272. source: "./media/characters/jess/urinary-tract-side.svg"
  51273. }
  51274. },
  51275. reproductiveOrgansFront: {
  51276. height: math.unit(0.48422591566, "feet"),
  51277. name: "Reproductive Organs (Front)",
  51278. image: {
  51279. source: "./media/characters/jess/reproductive-organs-front.svg"
  51280. }
  51281. },
  51282. reproductiveOrgansSide: {
  51283. height: math.unit(0.61553314481, "feet"),
  51284. name: "Reproductive Organs (Side)",
  51285. image: {
  51286. source: "./media/characters/jess/reproductive-organs-side.svg"
  51287. }
  51288. },
  51289. breastsFront: {
  51290. height: math.unit(0.47690395121, "feet"),
  51291. name: "Breasts (Front)",
  51292. image: {
  51293. source: "./media/characters/jess/breasts-front.svg"
  51294. }
  51295. },
  51296. breastsSide: {
  51297. height: math.unit(0.30556998307, "feet"),
  51298. name: "Breasts (Side)",
  51299. image: {
  51300. source: "./media/characters/jess/breasts-side.svg"
  51301. }
  51302. },
  51303. heartFront: {
  51304. height: math.unit(0.53011022622, "feet"),
  51305. name: "Heart (Front)",
  51306. image: {
  51307. source: "./media/characters/jess/heart-front.svg"
  51308. }
  51309. },
  51310. heartSide: {
  51311. height: math.unit(0.51790695213, "feet"),
  51312. name: "Heart (Side)",
  51313. image: {
  51314. source: "./media/characters/jess/heart-side.svg"
  51315. }
  51316. },
  51317. earsAndNoseFront: {
  51318. height: math.unit(0.29385483995, "feet"),
  51319. name: "Ears and Nose (Front)",
  51320. image: {
  51321. source: "./media/characters/jess/ears-and-nose-front.svg"
  51322. }
  51323. },
  51324. earsAndNoseSide: {
  51325. height: math.unit(0.18109658741, "feet"),
  51326. name: "Ears and Nose (Side)",
  51327. image: {
  51328. source: "./media/characters/jess/ears-and-nose-side.svg"
  51329. }
  51330. },
  51331. },
  51332. [
  51333. {
  51334. name: "Normal",
  51335. height: math.unit(5 + 8/12, "feet"),
  51336. default: true
  51337. },
  51338. ]
  51339. ))
  51340. characterMakers.push(() => makeCharacter(
  51341. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  51342. {
  51343. front: {
  51344. height: math.unit(6, "feet"),
  51345. weight: math.unit(6.64467e-7, "grams"),
  51346. name: "Front",
  51347. image: {
  51348. source: "./media/characters/wimpering/front.svg",
  51349. extra: 597/587,
  51350. bottom: 34/631
  51351. }
  51352. },
  51353. },
  51354. [
  51355. {
  51356. name: "Micro",
  51357. height: math.unit(0.4, "mm"),
  51358. default: true
  51359. },
  51360. ]
  51361. ))
  51362. characterMakers.push(() => makeCharacter(
  51363. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  51364. {
  51365. front: {
  51366. height: math.unit(5 + 2/12, "feet"),
  51367. weight: math.unit(110, "lb"),
  51368. name: "Front",
  51369. image: {
  51370. source: "./media/characters/keltre/front.svg",
  51371. extra: 1099/1057,
  51372. bottom: 22/1121
  51373. }
  51374. },
  51375. back: {
  51376. height: math.unit(5 + 2/12, "feet"),
  51377. weight: math.unit(110, "lb"),
  51378. name: "Back",
  51379. image: {
  51380. source: "./media/characters/keltre/back.svg",
  51381. extra: 1095/1053,
  51382. bottom: 17/1112
  51383. }
  51384. },
  51385. dressed: {
  51386. height: math.unit(5 + 2/12, "feet"),
  51387. weight: math.unit(110, "lb"),
  51388. name: "Dressed",
  51389. image: {
  51390. source: "./media/characters/keltre/dressed.svg",
  51391. extra: 1099/1057,
  51392. bottom: 22/1121
  51393. }
  51394. },
  51395. winter: {
  51396. height: math.unit(5 + 2/12, "feet"),
  51397. weight: math.unit(110, "lb"),
  51398. name: "Winter",
  51399. image: {
  51400. source: "./media/characters/keltre/winter.svg",
  51401. extra: 1099/1057,
  51402. bottom: 22/1121
  51403. }
  51404. },
  51405. head: {
  51406. height: math.unit(1.61 * 0.86, "feet"),
  51407. name: "Head",
  51408. image: {
  51409. source: "./media/characters/keltre/head.svg",
  51410. extra: 534/421,
  51411. bottom: 0/534
  51412. }
  51413. },
  51414. hand: {
  51415. height: math.unit(1.3 * 0.86, "feet"),
  51416. name: "Hand",
  51417. image: {
  51418. source: "./media/characters/keltre/hand.svg"
  51419. }
  51420. },
  51421. foot: {
  51422. height: math.unit(1.8 * 0.86, "feet"),
  51423. name: "Foot",
  51424. image: {
  51425. source: "./media/characters/keltre/foot.svg"
  51426. }
  51427. },
  51428. },
  51429. [
  51430. {
  51431. name: "Fine",
  51432. height: math.unit(1, "inch")
  51433. },
  51434. {
  51435. name: "Dimnutive",
  51436. height: math.unit(4, "inches")
  51437. },
  51438. {
  51439. name: "Tiny",
  51440. height: math.unit(1, "foot")
  51441. },
  51442. {
  51443. name: "Small",
  51444. height: math.unit(3, "feet")
  51445. },
  51446. {
  51447. name: "Normal",
  51448. height: math.unit(5 + 2/12, "feet"),
  51449. default: true
  51450. },
  51451. ]
  51452. ))
  51453. characterMakers.push(() => makeCharacter(
  51454. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  51455. {
  51456. front: {
  51457. height: math.unit(6 + 2/12, "feet"),
  51458. name: "Front",
  51459. image: {
  51460. source: "./media/characters/nox/front.svg",
  51461. extra: 1917/1830,
  51462. bottom: 74/1991
  51463. }
  51464. },
  51465. back: {
  51466. height: math.unit(6 + 2/12, "feet"),
  51467. name: "Back",
  51468. image: {
  51469. source: "./media/characters/nox/back.svg",
  51470. extra: 1896/1815,
  51471. bottom: 21/1917
  51472. }
  51473. },
  51474. head: {
  51475. height: math.unit(1.1, "feet"),
  51476. name: "Head",
  51477. image: {
  51478. source: "./media/characters/nox/head.svg",
  51479. extra: 874/704,
  51480. bottom: 0/874
  51481. }
  51482. },
  51483. tattoo: {
  51484. height: math.unit(0.729, "feet"),
  51485. name: "Tattoo",
  51486. image: {
  51487. source: "./media/characters/nox/tattoo.svg"
  51488. }
  51489. },
  51490. },
  51491. [
  51492. {
  51493. name: "Normal",
  51494. height: math.unit(6 + 2/12, "feet")
  51495. },
  51496. {
  51497. name: "Gigamacro",
  51498. height: math.unit(2, "earths"),
  51499. default: true
  51500. },
  51501. {
  51502. name: "Cosmic",
  51503. height: math.unit(867, "yottameters")
  51504. },
  51505. ]
  51506. ))
  51507. characterMakers.push(() => makeCharacter(
  51508. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  51509. {
  51510. front: {
  51511. height: math.unit(6, "feet"),
  51512. weight: math.unit(150, "lb"),
  51513. name: "Front",
  51514. image: {
  51515. source: "./media/characters/caspian/front.svg",
  51516. extra: 1443/1359,
  51517. bottom: 0/1443
  51518. }
  51519. },
  51520. back: {
  51521. height: math.unit(6, "feet"),
  51522. weight: math.unit(150, "lb"),
  51523. name: "Back",
  51524. image: {
  51525. source: "./media/characters/caspian/back.svg",
  51526. extra: 1379/1309,
  51527. bottom: 0/1379
  51528. }
  51529. },
  51530. head: {
  51531. height: math.unit(0.9, "feet"),
  51532. name: "Head",
  51533. image: {
  51534. source: "./media/characters/caspian/head.svg",
  51535. extra: 692/492,
  51536. bottom: 0/692
  51537. }
  51538. },
  51539. headAlt: {
  51540. height: math.unit(0.95, "feet"),
  51541. name: "Head (Alt)",
  51542. image: {
  51543. source: "./media/characters/caspian/head-alt.svg",
  51544. extra: 668/508,
  51545. bottom: 0/668
  51546. }
  51547. },
  51548. hand: {
  51549. height: math.unit(0.8, "feet"),
  51550. name: "Hand",
  51551. image: {
  51552. source: "./media/characters/caspian/hand.svg"
  51553. }
  51554. },
  51555. paw: {
  51556. height: math.unit(0.95, "feet"),
  51557. name: "Paw",
  51558. image: {
  51559. source: "./media/characters/caspian/paw.svg"
  51560. }
  51561. },
  51562. },
  51563. [
  51564. {
  51565. name: "Normal",
  51566. height: math.unit(162, "feet"),
  51567. default: true
  51568. },
  51569. ]
  51570. ))
  51571. characterMakers.push(() => makeCharacter(
  51572. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  51573. {
  51574. front: {
  51575. height: math.unit(6, "feet"),
  51576. name: "Front",
  51577. image: {
  51578. source: "./media/characters/myra-aisling/front.svg",
  51579. extra: 1268/1166,
  51580. bottom: 73/1341
  51581. }
  51582. },
  51583. back: {
  51584. height: math.unit(6, "feet"),
  51585. name: "Back",
  51586. image: {
  51587. source: "./media/characters/myra-aisling/back.svg",
  51588. extra: 1249/1149,
  51589. bottom: 79/1328
  51590. }
  51591. },
  51592. dressed: {
  51593. height: math.unit(6, "feet"),
  51594. name: "Dressed",
  51595. image: {
  51596. source: "./media/characters/myra-aisling/dressed.svg",
  51597. extra: 1290/1189,
  51598. bottom: 47/1337
  51599. }
  51600. },
  51601. hand: {
  51602. height: math.unit(1.1, "feet"),
  51603. name: "Hand",
  51604. image: {
  51605. source: "./media/characters/myra-aisling/hand.svg"
  51606. }
  51607. },
  51608. paw: {
  51609. height: math.unit(1.23, "feet"),
  51610. name: "Paw",
  51611. image: {
  51612. source: "./media/characters/myra-aisling/paw.svg"
  51613. }
  51614. },
  51615. },
  51616. [
  51617. {
  51618. name: "Normal",
  51619. height: math.unit(160, "feet"),
  51620. default: true
  51621. },
  51622. ]
  51623. ))
  51624. characterMakers.push(() => makeCharacter(
  51625. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  51626. {
  51627. front: {
  51628. height: math.unit(6, "feet"),
  51629. name: "Front",
  51630. image: {
  51631. source: "./media/characters/tenley-sidero/front.svg",
  51632. extra: 1365/1276,
  51633. bottom: 47/1412
  51634. }
  51635. },
  51636. back: {
  51637. height: math.unit(6, "feet"),
  51638. name: "Back",
  51639. image: {
  51640. source: "./media/characters/tenley-sidero/back.svg",
  51641. extra: 1383/1283,
  51642. bottom: 35/1418
  51643. }
  51644. },
  51645. dressed: {
  51646. height: math.unit(6, "feet"),
  51647. name: "Dressed",
  51648. image: {
  51649. source: "./media/characters/tenley-sidero/dressed.svg",
  51650. extra: 1364/1275,
  51651. bottom: 42/1406
  51652. }
  51653. },
  51654. head: {
  51655. height: math.unit(1.47, "feet"),
  51656. name: "Head",
  51657. image: {
  51658. source: "./media/characters/tenley-sidero/head.svg",
  51659. extra: 610/490,
  51660. bottom: 0/610
  51661. }
  51662. },
  51663. },
  51664. [
  51665. {
  51666. name: "Normal",
  51667. height: math.unit(154, "feet"),
  51668. default: true
  51669. },
  51670. ]
  51671. ))
  51672. characterMakers.push(() => makeCharacter(
  51673. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  51674. {
  51675. front: {
  51676. height: math.unit(5, "inches"),
  51677. name: "Front",
  51678. image: {
  51679. source: "./media/characters/mallory/front.svg",
  51680. extra: 1919/1678,
  51681. bottom: 29/1948
  51682. }
  51683. },
  51684. hand: {
  51685. height: math.unit(0.73, "inches"),
  51686. name: "Hand",
  51687. image: {
  51688. source: "./media/characters/mallory/hand.svg"
  51689. }
  51690. },
  51691. paw: {
  51692. height: math.unit(0.68, "inches"),
  51693. name: "Paw",
  51694. image: {
  51695. source: "./media/characters/mallory/paw.svg"
  51696. }
  51697. },
  51698. },
  51699. [
  51700. {
  51701. name: "Small",
  51702. height: math.unit(5, "inches"),
  51703. default: true
  51704. },
  51705. ]
  51706. ))
  51707. characterMakers.push(() => makeCharacter(
  51708. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  51709. {
  51710. naked: {
  51711. height: math.unit(6, "feet"),
  51712. name: "Naked",
  51713. image: {
  51714. source: "./media/characters/mab/naked.svg",
  51715. extra: 1855/1757,
  51716. bottom: 208/2063
  51717. }
  51718. },
  51719. outside: {
  51720. height: math.unit(6, "feet"),
  51721. name: "Outside",
  51722. image: {
  51723. source: "./media/characters/mab/outside.svg",
  51724. extra: 1855/1757,
  51725. bottom: 208/2063
  51726. }
  51727. },
  51728. party: {
  51729. height: math.unit(6, "feet"),
  51730. name: "Party",
  51731. image: {
  51732. source: "./media/characters/mab/party.svg",
  51733. extra: 1855/1757,
  51734. bottom: 208/2063
  51735. }
  51736. },
  51737. },
  51738. [
  51739. {
  51740. name: "Normal",
  51741. height: math.unit(165, "feet"),
  51742. default: true
  51743. },
  51744. ]
  51745. ))
  51746. characterMakers.push(() => makeCharacter(
  51747. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  51748. {
  51749. feral: {
  51750. height: math.unit(12, "feet"),
  51751. weight: math.unit(20000, "lb"),
  51752. name: "Side",
  51753. image: {
  51754. source: "./media/characters/winter/feral.svg",
  51755. extra: 1286/943,
  51756. bottom: 112/1398
  51757. },
  51758. form: "feral",
  51759. default: true
  51760. },
  51761. feralNsfw: {
  51762. height: math.unit(12, "feet"),
  51763. weight: math.unit(20000, "lb"),
  51764. name: "Side (NSFW)",
  51765. image: {
  51766. source: "./media/characters/winter/feral-nsfw.svg",
  51767. extra: 1286/943,
  51768. bottom: 112/1398
  51769. },
  51770. form: "feral"
  51771. },
  51772. dick: {
  51773. height: math.unit(3.79, "feet"),
  51774. name: "Dick",
  51775. image: {
  51776. source: "./media/characters/winter/dick.svg"
  51777. },
  51778. form: "feral"
  51779. },
  51780. anthro: {
  51781. height: math.unit(12, "feet"),
  51782. weight: math.unit(10, "tons"),
  51783. name: "Anthro",
  51784. image: {
  51785. source: "./media/characters/winter/anthro.svg",
  51786. extra: 1701/1553,
  51787. bottom: 64/1765
  51788. },
  51789. form: "anthro",
  51790. default: true
  51791. },
  51792. },
  51793. [
  51794. {
  51795. name: "Big",
  51796. height: math.unit(12, "feet"),
  51797. default: true,
  51798. form: "feral"
  51799. },
  51800. {
  51801. name: "Big",
  51802. height: math.unit(12, "feet"),
  51803. default: true,
  51804. form: "anthro"
  51805. },
  51806. ],
  51807. {
  51808. "feral": {
  51809. name: "Feral",
  51810. default: true
  51811. },
  51812. "anthro": {
  51813. name: "Anthro"
  51814. }
  51815. }
  51816. ))
  51817. characterMakers.push(() => makeCharacter(
  51818. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  51819. {
  51820. front: {
  51821. height: math.unit(4.1, "inches"),
  51822. name: "Front",
  51823. image: {
  51824. source: "./media/characters/alto/front.svg",
  51825. extra: 736/627,
  51826. bottom: 90/826
  51827. }
  51828. },
  51829. },
  51830. [
  51831. {
  51832. name: "Normal",
  51833. height: math.unit(4.1, "inches"),
  51834. default: true
  51835. },
  51836. ]
  51837. ))
  51838. characterMakers.push(() => makeCharacter(
  51839. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  51840. {
  51841. sitting: {
  51842. height: math.unit(3, "feet"),
  51843. name: "Sitting",
  51844. image: {
  51845. source: "./media/characters/ratstrid-v/sitting.svg",
  51846. extra: 355/310,
  51847. bottom: 136/491
  51848. }
  51849. },
  51850. },
  51851. [
  51852. {
  51853. name: "Normal",
  51854. height: math.unit(3, "feet"),
  51855. default: true
  51856. },
  51857. ]
  51858. ))
  51859. characterMakers.push(() => makeCharacter(
  51860. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  51861. {
  51862. back: {
  51863. height: math.unit(6, "feet"),
  51864. weight: math.unit(450, "lb"),
  51865. name: "Back",
  51866. image: {
  51867. source: "./media/characters/siz/back.svg",
  51868. extra: 1449/1274,
  51869. bottom: 13/1462
  51870. }
  51871. },
  51872. },
  51873. [
  51874. {
  51875. name: "Smallest",
  51876. height: math.unit(18 + 3/12, "feet")
  51877. },
  51878. {
  51879. name: "Modest",
  51880. height: math.unit(56 + 8/12, "feet"),
  51881. default: true
  51882. },
  51883. {
  51884. name: "Largest",
  51885. height: math.unit(3590, "feet")
  51886. },
  51887. ]
  51888. ))
  51889. characterMakers.push(() => makeCharacter(
  51890. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  51891. {
  51892. front: {
  51893. height: math.unit(5 + 9/12, "feet"),
  51894. weight: math.unit(150, "lb"),
  51895. name: "Front",
  51896. image: {
  51897. source: "./media/characters/ven/front.svg",
  51898. extra: 1372/1320,
  51899. bottom: 73/1445
  51900. }
  51901. },
  51902. side: {
  51903. height: math.unit(5 + 9/12, "feet"),
  51904. weight: math.unit(1150, "lb"),
  51905. name: "Side",
  51906. image: {
  51907. source: "./media/characters/ven/side.svg",
  51908. extra: 1119/1070,
  51909. bottom: 42/1161
  51910. },
  51911. default: true
  51912. },
  51913. },
  51914. [
  51915. {
  51916. name: "Normal",
  51917. height: math.unit(5 + 9/12, "feet"),
  51918. default: true
  51919. },
  51920. ]
  51921. ))
  51922. characterMakers.push(() => makeCharacter(
  51923. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  51924. {
  51925. front: {
  51926. height: math.unit(12, "feet"),
  51927. weight: math.unit(1000, "kg"),
  51928. name: "Front",
  51929. image: {
  51930. source: "./media/characters/maple/front.svg",
  51931. extra: 1193/1081,
  51932. bottom: 22/1215
  51933. }
  51934. },
  51935. },
  51936. [
  51937. {
  51938. name: "Compressed",
  51939. height: math.unit(7, "feet")
  51940. },
  51941. {
  51942. name: "Normal",
  51943. height: math.unit(12, "feet"),
  51944. default: true
  51945. },
  51946. ]
  51947. ))
  51948. characterMakers.push(() => makeCharacter(
  51949. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  51950. {
  51951. front: {
  51952. height: math.unit(9, "feet"),
  51953. weight: math.unit(1500, "lb"),
  51954. name: "Front",
  51955. image: {
  51956. source: "./media/characters/nora/front.svg",
  51957. extra: 1348/1286,
  51958. bottom: 218/1566
  51959. }
  51960. },
  51961. erect: {
  51962. height: math.unit(9, "feet"),
  51963. weight: math.unit(11500, "lb"),
  51964. name: "Erect",
  51965. image: {
  51966. source: "./media/characters/nora/erect.svg",
  51967. extra: 1488/1433,
  51968. bottom: 133/1621
  51969. }
  51970. },
  51971. },
  51972. [
  51973. {
  51974. name: "Normal",
  51975. height: math.unit(9, "feet"),
  51976. default: true
  51977. },
  51978. ]
  51979. ))
  51980. characterMakers.push(() => makeCharacter(
  51981. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  51982. {
  51983. front: {
  51984. height: math.unit(25, "feet"),
  51985. weight: math.unit(27500, "lb"),
  51986. name: "Front",
  51987. image: {
  51988. source: "./media/characters/north-caudin/front.svg",
  51989. extra: 1184/1082,
  51990. bottom: 23/1207
  51991. }
  51992. },
  51993. },
  51994. [
  51995. {
  51996. name: "Compressed",
  51997. height: math.unit(10, "feet")
  51998. },
  51999. {
  52000. name: "Normal",
  52001. height: math.unit(25, "feet"),
  52002. default: true
  52003. },
  52004. ]
  52005. ))
  52006. characterMakers.push(() => makeCharacter(
  52007. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  52008. {
  52009. front: {
  52010. height: math.unit(9, "feet"),
  52011. weight: math.unit(1250, "lb"),
  52012. name: "Front",
  52013. image: {
  52014. source: "./media/characters/merrian/front.svg",
  52015. extra: 2393/2304,
  52016. bottom: 40/2433
  52017. }
  52018. },
  52019. },
  52020. [
  52021. {
  52022. name: "Normal",
  52023. height: math.unit(9, "feet"),
  52024. default: true
  52025. },
  52026. ]
  52027. ))
  52028. characterMakers.push(() => makeCharacter(
  52029. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  52030. {
  52031. front: {
  52032. height: math.unit(9, "feet"),
  52033. weight: math.unit(1000, "lb"),
  52034. name: "Front",
  52035. image: {
  52036. source: "./media/characters/hazel/front.svg",
  52037. extra: 2351/2298,
  52038. bottom: 38/2389
  52039. }
  52040. },
  52041. },
  52042. [
  52043. {
  52044. name: "Normal",
  52045. height: math.unit(9, "feet"),
  52046. default: true
  52047. },
  52048. ]
  52049. ))
  52050. characterMakers.push(() => makeCharacter(
  52051. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  52052. {
  52053. front: {
  52054. height: math.unit(13, "feet"),
  52055. weight: math.unit(3200, "lb"),
  52056. name: "Front",
  52057. image: {
  52058. source: "./media/characters/emma/front.svg",
  52059. extra: 2263/2029,
  52060. bottom: 68/2331
  52061. }
  52062. },
  52063. },
  52064. [
  52065. {
  52066. name: "Normal",
  52067. height: math.unit(13, "feet"),
  52068. default: true
  52069. },
  52070. ]
  52071. ))
  52072. characterMakers.push(() => makeCharacter(
  52073. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  52074. {
  52075. front: {
  52076. height: math.unit(11 + 9/12, "feet"),
  52077. weight: math.unit(2500, "lb"),
  52078. name: "Front",
  52079. image: {
  52080. source: "./media/characters/ilumina/front.svg",
  52081. extra: 2248/2209,
  52082. bottom: 164/2412
  52083. }
  52084. },
  52085. },
  52086. [
  52087. {
  52088. name: "Normal",
  52089. height: math.unit(11 + 9/12, "feet"),
  52090. default: true
  52091. },
  52092. ]
  52093. ))
  52094. characterMakers.push(() => makeCharacter(
  52095. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  52096. {
  52097. front: {
  52098. height: math.unit(8 + 10/12, "feet"),
  52099. weight: math.unit(1350, "lb"),
  52100. name: "Front",
  52101. image: {
  52102. source: "./media/characters/moonshine/front.svg",
  52103. extra: 2395/2288,
  52104. bottom: 40/2435
  52105. }
  52106. },
  52107. },
  52108. [
  52109. {
  52110. name: "Normal",
  52111. height: math.unit(8 + 10/12, "feet"),
  52112. default: true
  52113. },
  52114. ]
  52115. ))
  52116. characterMakers.push(() => makeCharacter(
  52117. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  52118. {
  52119. front: {
  52120. height: math.unit(14, "feet"),
  52121. weight: math.unit(3400, "lb"),
  52122. name: "Front",
  52123. image: {
  52124. source: "./media/characters/aletia/front.svg",
  52125. extra: 1185/1052,
  52126. bottom: 21/1206
  52127. }
  52128. },
  52129. },
  52130. [
  52131. {
  52132. name: "Compressed",
  52133. height: math.unit(8, "feet")
  52134. },
  52135. {
  52136. name: "Normal",
  52137. height: math.unit(14, "feet"),
  52138. default: true
  52139. },
  52140. ]
  52141. ))
  52142. characterMakers.push(() => makeCharacter(
  52143. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  52144. {
  52145. front: {
  52146. height: math.unit(17, "feet"),
  52147. weight: math.unit(6500, "lb"),
  52148. name: "Front",
  52149. image: {
  52150. source: "./media/characters/deidra/front.svg",
  52151. extra: 1201/1081,
  52152. bottom: 16/1217
  52153. }
  52154. },
  52155. },
  52156. [
  52157. {
  52158. name: "Compressed",
  52159. height: math.unit(9 + 6/12, "feet")
  52160. },
  52161. {
  52162. name: "Normal",
  52163. height: math.unit(17, "feet"),
  52164. default: true
  52165. },
  52166. ]
  52167. ))
  52168. characterMakers.push(() => makeCharacter(
  52169. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  52170. {
  52171. front: {
  52172. height: math.unit(7 + 4/12, "feet"),
  52173. weight: math.unit(280, "lb"),
  52174. name: "Front",
  52175. image: {
  52176. source: "./media/characters/freki-yrmori/front.svg",
  52177. extra: 1286/1182,
  52178. bottom: 29/1315
  52179. }
  52180. },
  52181. maw: {
  52182. height: math.unit(0.9, "feet"),
  52183. name: "Maw",
  52184. image: {
  52185. source: "./media/characters/freki-yrmori/maw.svg"
  52186. }
  52187. },
  52188. },
  52189. [
  52190. {
  52191. name: "Normal",
  52192. height: math.unit(7 + 4/12, "feet"),
  52193. default: true
  52194. },
  52195. {
  52196. name: "Macro",
  52197. height: math.unit(38.5, "meters")
  52198. },
  52199. ]
  52200. ))
  52201. characterMakers.push(() => makeCharacter(
  52202. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  52203. {
  52204. side: {
  52205. height: math.unit(47.2, "meters"),
  52206. weight: math.unit(10000, "tons"),
  52207. name: "Side",
  52208. image: {
  52209. source: "./media/characters/aetherios/side.svg",
  52210. extra: 2363/642,
  52211. bottom: 221/2584
  52212. }
  52213. },
  52214. top: {
  52215. height: math.unit(240, "meters"),
  52216. weight: math.unit(10000, "tons"),
  52217. name: "Top",
  52218. image: {
  52219. source: "./media/characters/aetherios/top.svg"
  52220. }
  52221. },
  52222. bottom: {
  52223. height: math.unit(240, "meters"),
  52224. weight: math.unit(10000, "tons"),
  52225. name: "Bottom",
  52226. image: {
  52227. source: "./media/characters/aetherios/bottom.svg"
  52228. }
  52229. },
  52230. head: {
  52231. height: math.unit(38.6, "meters"),
  52232. name: "Head",
  52233. image: {
  52234. source: "./media/characters/aetherios/head.svg",
  52235. extra: 1335/1112,
  52236. bottom: 0/1335
  52237. }
  52238. },
  52239. front: {
  52240. height: math.unit(29, "meters"),
  52241. name: "Front",
  52242. image: {
  52243. source: "./media/characters/aetherios/front.svg",
  52244. extra: 1266/953,
  52245. bottom: 158/1424
  52246. }
  52247. },
  52248. maw: {
  52249. height: math.unit(16.37, "meters"),
  52250. name: "Maw",
  52251. image: {
  52252. source: "./media/characters/aetherios/maw.svg",
  52253. extra: 748/637,
  52254. bottom: 0/748
  52255. },
  52256. extraAttributes: {
  52257. preyCapacity: {
  52258. name: "Capacity",
  52259. power: 3,
  52260. type: "volume",
  52261. base: math.unit(1000, "people")
  52262. },
  52263. tongueSize: {
  52264. name: "Tongue Size",
  52265. power: 2,
  52266. type: "area",
  52267. base: math.unit(21, "m^2")
  52268. }
  52269. }
  52270. },
  52271. forepaw: {
  52272. height: math.unit(18, "meters"),
  52273. name: "Forepaw",
  52274. image: {
  52275. source: "./media/characters/aetherios/forepaw.svg"
  52276. }
  52277. },
  52278. hindpaw: {
  52279. height: math.unit(23, "meters"),
  52280. name: "Hindpaw",
  52281. image: {
  52282. source: "./media/characters/aetherios/hindpaw.svg"
  52283. }
  52284. },
  52285. genitals: {
  52286. height: math.unit(42, "meters"),
  52287. name: "Genitals",
  52288. image: {
  52289. source: "./media/characters/aetherios/genitals.svg"
  52290. }
  52291. },
  52292. },
  52293. [
  52294. {
  52295. name: "Normal",
  52296. height: math.unit(47.2, "meters"),
  52297. default: true
  52298. },
  52299. {
  52300. name: "Macro",
  52301. height: math.unit(160, "meters")
  52302. },
  52303. {
  52304. name: "Mega",
  52305. height: math.unit(1.87, "km")
  52306. },
  52307. {
  52308. name: "Giga",
  52309. height: math.unit(40000, "km")
  52310. },
  52311. {
  52312. name: "Stellar",
  52313. height: math.unit(158000000, "km")
  52314. },
  52315. {
  52316. name: "Cosmic",
  52317. height: math.unit(9.46e12, "km")
  52318. },
  52319. ]
  52320. ))
  52321. characterMakers.push(() => makeCharacter(
  52322. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  52323. {
  52324. front: {
  52325. height: math.unit(5 + 4/12, "feet"),
  52326. weight: math.unit(80, "lb"),
  52327. name: "Front",
  52328. image: {
  52329. source: "./media/characters/mizu-gieeg/front.svg",
  52330. extra: 850/709,
  52331. bottom: 52/902
  52332. }
  52333. },
  52334. back: {
  52335. height: math.unit(5 + 4/12, "feet"),
  52336. weight: math.unit(80, "lb"),
  52337. name: "Back",
  52338. image: {
  52339. source: "./media/characters/mizu-gieeg/back.svg",
  52340. extra: 882/745,
  52341. bottom: 25/907
  52342. }
  52343. },
  52344. },
  52345. [
  52346. {
  52347. name: "Normal",
  52348. height: math.unit(5 + 4/12, "feet"),
  52349. default: true
  52350. },
  52351. ]
  52352. ))
  52353. characterMakers.push(() => makeCharacter(
  52354. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  52355. {
  52356. front: {
  52357. height: math.unit(6, "feet"),
  52358. name: "Front",
  52359. image: {
  52360. source: "./media/characters/roselle-st-papier/front.svg",
  52361. extra: 1430/1280,
  52362. bottom: 37/1467
  52363. }
  52364. },
  52365. back: {
  52366. height: math.unit(6, "feet"),
  52367. name: "Back",
  52368. image: {
  52369. source: "./media/characters/roselle-st-papier/back.svg",
  52370. extra: 1491/1296,
  52371. bottom: 23/1514
  52372. }
  52373. },
  52374. ear: {
  52375. height: math.unit(1.26, "feet"),
  52376. name: "Ear",
  52377. image: {
  52378. source: "./media/characters/roselle-st-papier/ear.svg"
  52379. }
  52380. },
  52381. },
  52382. [
  52383. {
  52384. name: "Normal",
  52385. height: math.unit(150, "feet"),
  52386. default: true
  52387. },
  52388. ]
  52389. ))
  52390. characterMakers.push(() => makeCharacter(
  52391. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  52392. {
  52393. front: {
  52394. height: math.unit(1, "inches"),
  52395. name: "Front",
  52396. image: {
  52397. source: "./media/characters/valargent/front.svg",
  52398. extra: 1825/1694,
  52399. bottom: 62/1887
  52400. }
  52401. },
  52402. back: {
  52403. height: math.unit(1, "inches"),
  52404. name: "Back",
  52405. image: {
  52406. source: "./media/characters/valargent/back.svg",
  52407. extra: 1775/1682,
  52408. bottom: 88/1863
  52409. }
  52410. },
  52411. },
  52412. [
  52413. {
  52414. name: "Micro",
  52415. height: math.unit(1, "inch"),
  52416. default: true
  52417. },
  52418. ]
  52419. ))
  52420. characterMakers.push(() => makeCharacter(
  52421. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  52422. {
  52423. front: {
  52424. height: math.unit(3.4, "meters"),
  52425. name: "Front",
  52426. image: {
  52427. source: "./media/characters/zarina/front.svg",
  52428. extra: 1733/1425,
  52429. bottom: 93/1826
  52430. }
  52431. },
  52432. squatting: {
  52433. height: math.unit(2.14, "meters"),
  52434. name: "Squatting",
  52435. image: {
  52436. source: "./media/characters/zarina/squatting.svg",
  52437. extra: 1073/788,
  52438. bottom: 63/1136
  52439. }
  52440. },
  52441. back: {
  52442. height: math.unit(2.14, "meters"),
  52443. name: "Back",
  52444. image: {
  52445. source: "./media/characters/zarina/back.svg",
  52446. extra: 1128/885,
  52447. bottom: 0/1128
  52448. }
  52449. },
  52450. },
  52451. [
  52452. {
  52453. name: "Normal",
  52454. height: math.unit(3.4, "meters"),
  52455. default: true
  52456. },
  52457. {
  52458. name: "Big",
  52459. height: math.unit(5, "meters")
  52460. },
  52461. {
  52462. name: "Macro",
  52463. height: math.unit(110, "meters")
  52464. },
  52465. ]
  52466. ))
  52467. characterMakers.push(() => makeCharacter(
  52468. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  52469. {
  52470. front: {
  52471. height: math.unit(7, "feet"),
  52472. name: "Front",
  52473. image: {
  52474. source: "./media/characters/ventus-astro-fox/front.svg",
  52475. extra: 1792/1623,
  52476. bottom: 28/1820
  52477. }
  52478. },
  52479. back: {
  52480. height: math.unit(7, "feet"),
  52481. name: "Back",
  52482. image: {
  52483. source: "./media/characters/ventus-astro-fox/back.svg",
  52484. extra: 1789/1620,
  52485. bottom: 31/1820
  52486. }
  52487. },
  52488. outfit: {
  52489. height: math.unit(7, "feet"),
  52490. name: "Outfit",
  52491. image: {
  52492. source: "./media/characters/ventus-astro-fox/outfit.svg",
  52493. extra: 1054/925,
  52494. bottom: 15/1069
  52495. }
  52496. },
  52497. head: {
  52498. height: math.unit(1.12, "feet"),
  52499. name: "Head",
  52500. image: {
  52501. source: "./media/characters/ventus-astro-fox/head.svg",
  52502. extra: 866/504,
  52503. bottom: 0/866
  52504. }
  52505. },
  52506. hand: {
  52507. height: math.unit(1, "feet"),
  52508. name: "Hand",
  52509. image: {
  52510. source: "./media/characters/ventus-astro-fox/hand.svg"
  52511. }
  52512. },
  52513. paw: {
  52514. height: math.unit(1.5, "feet"),
  52515. name: "Paw",
  52516. image: {
  52517. source: "./media/characters/ventus-astro-fox/paw.svg"
  52518. }
  52519. },
  52520. },
  52521. [
  52522. {
  52523. name: "Normal",
  52524. height: math.unit(7, "feet"),
  52525. default: true
  52526. },
  52527. {
  52528. name: "Macro",
  52529. height: math.unit(200, "feet")
  52530. },
  52531. {
  52532. name: "Cosmic",
  52533. height: math.unit(3, "universes")
  52534. },
  52535. ]
  52536. ))
  52537. characterMakers.push(() => makeCharacter(
  52538. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  52539. {
  52540. front: {
  52541. height: math.unit(3, "meters"),
  52542. weight: math.unit(7000, "lb"),
  52543. name: "Front",
  52544. image: {
  52545. source: "./media/characters/core-t/front.svg",
  52546. extra: 5729/4941,
  52547. bottom: 1129/6858
  52548. }
  52549. },
  52550. },
  52551. [
  52552. {
  52553. name: "Big",
  52554. height: math.unit(3, "meters"),
  52555. default: true
  52556. },
  52557. ]
  52558. ))
  52559. characterMakers.push(() => makeCharacter(
  52560. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  52561. {
  52562. normal: {
  52563. height: math.unit(6 + 6/12, "feet"),
  52564. weight: math.unit(275, "lb"),
  52565. name: "Front",
  52566. image: {
  52567. source: "./media/characters/cadbunny/normal.svg",
  52568. extra: 1129/947,
  52569. bottom: 93/1222
  52570. },
  52571. default: true,
  52572. form: "normal"
  52573. },
  52574. gigantamax: {
  52575. height: math.unit(26, "feet"),
  52576. weight: math.unit(16000, "lb"),
  52577. name: "Front",
  52578. image: {
  52579. source: "./media/characters/cadbunny/gigantamax.svg",
  52580. extra: 1133/944,
  52581. bottom: 90/1223
  52582. },
  52583. default: true,
  52584. form: "gigantamax"
  52585. },
  52586. },
  52587. [
  52588. {
  52589. name: "Normal",
  52590. height: math.unit(6 + 6/12, "feet"),
  52591. default: true,
  52592. form: "normal"
  52593. },
  52594. {
  52595. name: "Small",
  52596. height: math.unit(26, "feet"),
  52597. default: true,
  52598. form: "gigantamax"
  52599. },
  52600. {
  52601. name: "Large",
  52602. height: math.unit(78, "feet"),
  52603. form: "gigantamax"
  52604. },
  52605. ],
  52606. {
  52607. "normal": {
  52608. name: "Normal",
  52609. default: true
  52610. },
  52611. "gigantamax": {
  52612. name: "Gigantamax"
  52613. }
  52614. }
  52615. ))
  52616. characterMakers.push(() => makeCharacter(
  52617. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  52618. {
  52619. anthroFront: {
  52620. height: math.unit(8, "feet"),
  52621. weight: math.unit(300, "lb"),
  52622. name: "Front",
  52623. image: {
  52624. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  52625. extra: 1272/1176,
  52626. bottom: 53/1325
  52627. },
  52628. form: "anthro",
  52629. default: true
  52630. },
  52631. feralSide: {
  52632. height: math.unit(4, "feet"),
  52633. weight: math.unit(250, "lb"),
  52634. name: "Side",
  52635. image: {
  52636. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  52637. extra: 731/621,
  52638. bottom: 0/731
  52639. },
  52640. form: "feral",
  52641. default: true
  52642. },
  52643. },
  52644. [
  52645. {
  52646. name: "Regular",
  52647. height: math.unit(8, "feet"),
  52648. form: "anthro"
  52649. },
  52650. {
  52651. name: "Macro",
  52652. height: math.unit(250, "feet"),
  52653. form: "anthro",
  52654. default: true
  52655. },
  52656. {
  52657. name: "Regular",
  52658. height: math.unit(4, "feet"),
  52659. form: "feral"
  52660. },
  52661. {
  52662. name: "Macro",
  52663. height: math.unit(125, "feet"),
  52664. form: "feral",
  52665. default: true
  52666. },
  52667. ],
  52668. {
  52669. "anthro": {
  52670. name: "Anthro",
  52671. default: true
  52672. },
  52673. "feral": {
  52674. name: "Feral",
  52675. },
  52676. }
  52677. ))
  52678. characterMakers.push(() => makeCharacter(
  52679. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  52680. {
  52681. front: {
  52682. height: math.unit(11 + 10/12, "feet"),
  52683. weight: math.unit(1587, "kg"),
  52684. name: "Front",
  52685. image: {
  52686. source: "./media/characters/maple-javira-dragon/front.svg",
  52687. extra: 1136/744,
  52688. bottom: 73/1209
  52689. }
  52690. },
  52691. side: {
  52692. height: math.unit(11 + 10/12, "feet"),
  52693. weight: math.unit(1587, "kg"),
  52694. name: "Side",
  52695. image: {
  52696. source: "./media/characters/maple-javira-dragon/side.svg",
  52697. extra: 712/505,
  52698. bottom: 17/729
  52699. }
  52700. },
  52701. head: {
  52702. height: math.unit(8.05, "feet"),
  52703. name: "Head",
  52704. image: {
  52705. source: "./media/characters/maple-javira-dragon/head.svg",
  52706. extra: 1420/1344,
  52707. bottom: 0/1420
  52708. }
  52709. },
  52710. },
  52711. [
  52712. {
  52713. name: "Normal",
  52714. height: math.unit(11 + 10/12, "feet"),
  52715. default: true
  52716. },
  52717. ]
  52718. ))
  52719. characterMakers.push(() => makeCharacter(
  52720. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  52721. {
  52722. front: {
  52723. height: math.unit(117, "cm"),
  52724. weight: math.unit(50, "kg"),
  52725. name: "Front",
  52726. image: {
  52727. source: "./media/characters/sonia-wyverntail/front.svg",
  52728. extra: 708/592,
  52729. bottom: 25/733
  52730. }
  52731. },
  52732. },
  52733. [
  52734. {
  52735. name: "Normal",
  52736. height: math.unit(117, "cm"),
  52737. default: true
  52738. },
  52739. ]
  52740. ))
  52741. characterMakers.push(() => makeCharacter(
  52742. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  52743. {
  52744. front: {
  52745. height: math.unit(6 + 5/12, "feet"),
  52746. name: "Front",
  52747. image: {
  52748. source: "./media/characters/micah/front.svg",
  52749. extra: 1758/1546,
  52750. bottom: 214/1972
  52751. }
  52752. },
  52753. },
  52754. [
  52755. {
  52756. name: "Normal",
  52757. height: math.unit(6 + 5/12, "feet"),
  52758. default: true
  52759. },
  52760. ]
  52761. ))
  52762. characterMakers.push(() => makeCharacter(
  52763. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  52764. {
  52765. front: {
  52766. height: math.unit(1.75, "meters"),
  52767. weight: math.unit(100, "kg"),
  52768. name: "Front",
  52769. image: {
  52770. source: "./media/characters/zarya/front.svg",
  52771. extra: 741/735,
  52772. bottom: 44/785
  52773. },
  52774. extraAttributes: {
  52775. "tailLength": {
  52776. name: "Tail Length",
  52777. power: 1,
  52778. type: "length",
  52779. base: math.unit(180, "cm")
  52780. },
  52781. "pawLength": {
  52782. name: "Paw Length",
  52783. power: 1,
  52784. type: "length",
  52785. base: math.unit(31, "cm")
  52786. },
  52787. }
  52788. },
  52789. side: {
  52790. height: math.unit(1.75, "meters"),
  52791. weight: math.unit(100, "kg"),
  52792. name: "Side",
  52793. image: {
  52794. source: "./media/characters/zarya/side.svg",
  52795. extra: 776/770,
  52796. bottom: 17/793
  52797. },
  52798. extraAttributes: {
  52799. "tailLength": {
  52800. name: "Tail Length",
  52801. power: 1,
  52802. type: "length",
  52803. base: math.unit(180, "cm")
  52804. },
  52805. "pawLength": {
  52806. name: "Paw Length",
  52807. power: 1,
  52808. type: "length",
  52809. base: math.unit(31, "cm")
  52810. },
  52811. }
  52812. },
  52813. back: {
  52814. height: math.unit(1.75, "meters"),
  52815. weight: math.unit(100, "kg"),
  52816. name: "Back",
  52817. image: {
  52818. source: "./media/characters/zarya/back.svg",
  52819. extra: 741/735,
  52820. bottom: 44/785
  52821. },
  52822. extraAttributes: {
  52823. "tailLength": {
  52824. name: "Tail Length",
  52825. power: 1,
  52826. type: "length",
  52827. base: math.unit(180, "cm")
  52828. },
  52829. "pawLength": {
  52830. name: "Paw Length",
  52831. power: 1,
  52832. type: "length",
  52833. base: math.unit(31, "cm")
  52834. },
  52835. }
  52836. },
  52837. frontNoTail: {
  52838. height: math.unit(1.75, "meters"),
  52839. weight: math.unit(100, "kg"),
  52840. name: "Front (No Tail)",
  52841. image: {
  52842. source: "./media/characters/zarya/front-no-tail.svg",
  52843. extra: 741/735,
  52844. bottom: 44/785
  52845. },
  52846. extraAttributes: {
  52847. "tailLength": {
  52848. name: "Tail Length",
  52849. power: 1,
  52850. type: "length",
  52851. base: math.unit(180, "cm")
  52852. },
  52853. "pawLength": {
  52854. name: "Paw Length",
  52855. power: 1,
  52856. type: "length",
  52857. base: math.unit(31, "cm")
  52858. },
  52859. }
  52860. },
  52861. dressed: {
  52862. height: math.unit(1.75, "meters"),
  52863. weight: math.unit(100, "kg"),
  52864. name: "Dressed",
  52865. image: {
  52866. source: "./media/characters/zarya/dressed.svg",
  52867. extra: 683/672,
  52868. bottom: 79/762
  52869. },
  52870. extraAttributes: {
  52871. "tailLength": {
  52872. name: "Tail Length",
  52873. power: 1,
  52874. type: "length",
  52875. base: math.unit(180, "cm")
  52876. },
  52877. "pawLength": {
  52878. name: "Paw Length",
  52879. power: 1,
  52880. type: "length",
  52881. base: math.unit(31, "cm")
  52882. },
  52883. }
  52884. },
  52885. },
  52886. [
  52887. {
  52888. name: "Micro",
  52889. height: math.unit(5, "cm")
  52890. },
  52891. {
  52892. name: "Normal",
  52893. height: math.unit(1.75, "meters"),
  52894. default: true
  52895. },
  52896. {
  52897. name: "Macro",
  52898. height: math.unit(122, "meters")
  52899. },
  52900. ]
  52901. ))
  52902. characterMakers.push(() => makeCharacter(
  52903. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  52904. {
  52905. front: {
  52906. height: math.unit(7.5, "feet"),
  52907. name: "Front",
  52908. image: {
  52909. source: "./media/characters/sven-hatisson/front.svg",
  52910. extra: 917/857,
  52911. bottom: 42/959
  52912. }
  52913. },
  52914. back: {
  52915. height: math.unit(7.5, "feet"),
  52916. name: "Back",
  52917. image: {
  52918. source: "./media/characters/sven-hatisson/back.svg",
  52919. extra: 903/856,
  52920. bottom: 15/918
  52921. }
  52922. },
  52923. },
  52924. [
  52925. {
  52926. name: "Base Height",
  52927. height: math.unit(7.5, "feet")
  52928. },
  52929. {
  52930. name: "Usual Height",
  52931. height: math.unit(13.5, "feet"),
  52932. default: true
  52933. },
  52934. {
  52935. name: "Smaller Macro",
  52936. height: math.unit(85, "feet")
  52937. },
  52938. {
  52939. name: "Moderate Macro",
  52940. height: math.unit(320, "feet")
  52941. },
  52942. {
  52943. name: "Large Macro",
  52944. height: math.unit(1000, "feet")
  52945. },
  52946. {
  52947. name: "Largest Size",
  52948. height: math.unit(2, "miles")
  52949. },
  52950. ]
  52951. ))
  52952. characterMakers.push(() => makeCharacter(
  52953. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  52954. {
  52955. side: {
  52956. height: math.unit(1.8, "meters"),
  52957. weight: math.unit(275, "kg"),
  52958. name: "Side",
  52959. image: {
  52960. source: "./media/characters/terra/side.svg",
  52961. extra: 1273/1147,
  52962. bottom: 0/1273
  52963. }
  52964. },
  52965. },
  52966. [
  52967. {
  52968. name: "Normal",
  52969. height: math.unit(16.2, "meters"),
  52970. default: true
  52971. },
  52972. ]
  52973. ))
  52974. characterMakers.push(() => makeCharacter(
  52975. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  52976. {
  52977. borzoiFront: {
  52978. height: math.unit(6 + 9/12, "feet"),
  52979. name: "Front",
  52980. image: {
  52981. source: "./media/characters/rae/borzoi-front.svg",
  52982. extra: 1161/1098,
  52983. bottom: 31/1192
  52984. },
  52985. form: "borzoi",
  52986. default: true
  52987. },
  52988. werewolfFront: {
  52989. height: math.unit(8 + 7/12, "feet"),
  52990. name: "Front",
  52991. image: {
  52992. source: "./media/characters/rae/werewolf-front.svg",
  52993. extra: 1411/1334,
  52994. bottom: 127/1538
  52995. },
  52996. form: "werewolf",
  52997. default: true
  52998. },
  52999. },
  53000. [
  53001. {
  53002. name: "Normal",
  53003. height: math.unit(6 + 9/12, "feet"),
  53004. default: true,
  53005. form: "borzoi"
  53006. },
  53007. {
  53008. name: "Normal",
  53009. height: math.unit(8 + 7/12, "feet"),
  53010. default: true,
  53011. form: "werewolf"
  53012. },
  53013. ],
  53014. {
  53015. "borzoi": {
  53016. name: "Borzoi",
  53017. default: true
  53018. },
  53019. "werewolf": {
  53020. name: "Werewolf",
  53021. },
  53022. }
  53023. ))
  53024. characterMakers.push(() => makeCharacter(
  53025. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  53026. {
  53027. front: {
  53028. height: math.unit(8 + 7/12, "feet"),
  53029. weight: math.unit(482, "lb"),
  53030. name: "Front",
  53031. image: {
  53032. source: "./media/characters/kit/front.svg",
  53033. extra: 1247/1103,
  53034. bottom: 41/1288
  53035. }
  53036. },
  53037. back: {
  53038. height: math.unit(8 + 7/12, "feet"),
  53039. weight: math.unit(482, "lb"),
  53040. name: "Back",
  53041. image: {
  53042. source: "./media/characters/kit/back.svg",
  53043. extra: 1252/1123,
  53044. bottom: 21/1273
  53045. }
  53046. },
  53047. paw: {
  53048. height: math.unit(1.46, "feet"),
  53049. name: "Paw",
  53050. image: {
  53051. source: "./media/characters/kit/paw.svg"
  53052. }
  53053. },
  53054. },
  53055. [
  53056. {
  53057. name: "Normal",
  53058. height: math.unit(2.61, "meters"),
  53059. default: true
  53060. },
  53061. {
  53062. name: "\"Tall\"",
  53063. height: math.unit(8.21, "meters")
  53064. },
  53065. {
  53066. name: "Tall",
  53067. height: math.unit(19.6, "meters")
  53068. },
  53069. {
  53070. name: "Very Tall",
  53071. height: math.unit(57.91, "meters")
  53072. },
  53073. {
  53074. name: "Semi-Macro",
  53075. height: math.unit(138.64, "meters")
  53076. },
  53077. {
  53078. name: "Macro",
  53079. height: math.unit(831.99, "meters")
  53080. },
  53081. {
  53082. name: "EX-Macro",
  53083. height: math.unit(96451121, "meters")
  53084. },
  53085. {
  53086. name: "S1-Omnipotent",
  53087. height: math.unit(4.42074e+9, "meters")
  53088. },
  53089. {
  53090. name: "S2-Omnipotent",
  53091. height: math.unit(9.42074e+17, "meters")
  53092. },
  53093. {
  53094. name: "Omnipotent",
  53095. height: math.unit(4.23112e+24, "meters")
  53096. },
  53097. {
  53098. name: "Hypergod",
  53099. height: math.unit(5.05176e+27, "meters")
  53100. },
  53101. {
  53102. name: "Hypergod-EX",
  53103. height: math.unit(9.45532e+49, "meters")
  53104. },
  53105. {
  53106. name: "Hypergod-SP",
  53107. height: math.unit(9.45532e+195, "meters")
  53108. },
  53109. ]
  53110. ))
  53111. characterMakers.push(() => makeCharacter(
  53112. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  53113. {
  53114. side: {
  53115. height: math.unit(0.6, "meters"),
  53116. weight: math.unit(24, "kg"),
  53117. name: "Side",
  53118. image: {
  53119. source: "./media/characters/celeste/side.svg",
  53120. extra: 810/517,
  53121. bottom: 53/863
  53122. }
  53123. },
  53124. },
  53125. [
  53126. {
  53127. name: "Velociraptor",
  53128. height: math.unit(0.6, "meters"),
  53129. default: true
  53130. },
  53131. {
  53132. name: "Utahraptor",
  53133. height: math.unit(1.8, "meters")
  53134. },
  53135. {
  53136. name: "Gallimimus",
  53137. height: math.unit(4.0, "meters")
  53138. },
  53139. {
  53140. name: "Large",
  53141. height: math.unit(20, "meters")
  53142. },
  53143. {
  53144. name: "Planetary",
  53145. height: math.unit(50, "megameters")
  53146. },
  53147. {
  53148. name: "Stellar",
  53149. height: math.unit(1.5, "gigameters")
  53150. },
  53151. {
  53152. name: "Galactic",
  53153. height: math.unit(100, "exameters")
  53154. },
  53155. ]
  53156. ))
  53157. characterMakers.push(() => makeCharacter(
  53158. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  53159. {
  53160. front: {
  53161. height: math.unit(6, "feet"),
  53162. weight: math.unit(210, "lb"),
  53163. name: "Front",
  53164. image: {
  53165. source: "./media/characters/glacia/front.svg",
  53166. extra: 958/901,
  53167. bottom: 45/1003
  53168. }
  53169. },
  53170. },
  53171. [
  53172. {
  53173. name: "Macro",
  53174. height: math.unit(1000, "meters"),
  53175. default: true
  53176. },
  53177. ]
  53178. ))
  53179. characterMakers.push(() => makeCharacter(
  53180. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  53181. {
  53182. front: {
  53183. height: math.unit(4, "meters"),
  53184. name: "Front",
  53185. image: {
  53186. source: "./media/characters/giri/front.svg",
  53187. extra: 966/894,
  53188. bottom: 21/987
  53189. }
  53190. },
  53191. },
  53192. [
  53193. {
  53194. name: "Normal",
  53195. height: math.unit(4, "meters"),
  53196. default: true
  53197. },
  53198. ]
  53199. ))
  53200. characterMakers.push(() => makeCharacter(
  53201. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  53202. {
  53203. back: {
  53204. height: math.unit(4, "feet"),
  53205. weight: math.unit(37, "lb"),
  53206. name: "Back",
  53207. image: {
  53208. source: "./media/characters/tin/back.svg",
  53209. extra: 845/780,
  53210. bottom: 28/873
  53211. }
  53212. },
  53213. },
  53214. [
  53215. {
  53216. name: "Normal",
  53217. height: math.unit(4, "feet"),
  53218. default: true
  53219. },
  53220. ]
  53221. ))
  53222. characterMakers.push(() => makeCharacter(
  53223. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  53224. {
  53225. front: {
  53226. height: math.unit(25, "feet"),
  53227. name: "Front",
  53228. image: {
  53229. source: "./media/characters/cadenza-vivace/front.svg",
  53230. extra: 1842/1578,
  53231. bottom: 30/1872
  53232. }
  53233. },
  53234. },
  53235. [
  53236. {
  53237. name: "Macro",
  53238. height: math.unit(25, "feet"),
  53239. default: true
  53240. },
  53241. ]
  53242. ))
  53243. characterMakers.push(() => makeCharacter(
  53244. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  53245. {
  53246. front: {
  53247. height: math.unit(10, "feet"),
  53248. weight: math.unit(625, "kg"),
  53249. name: "Front",
  53250. image: {
  53251. source: "./media/characters/zain/front.svg",
  53252. extra: 1682/1498,
  53253. bottom: 223/1905
  53254. }
  53255. },
  53256. back: {
  53257. height: math.unit(10, "feet"),
  53258. weight: math.unit(625, "kg"),
  53259. name: "Back",
  53260. image: {
  53261. source: "./media/characters/zain/back.svg",
  53262. extra: 1814/1657,
  53263. bottom: 152/1966
  53264. }
  53265. },
  53266. head: {
  53267. height: math.unit(10, "feet"),
  53268. weight: math.unit(625, "kg"),
  53269. name: "Head",
  53270. image: {
  53271. source: "./media/characters/zain/head.svg",
  53272. extra: 1059/762,
  53273. bottom: 0/1059
  53274. }
  53275. },
  53276. },
  53277. [
  53278. {
  53279. name: "Normal",
  53280. height: math.unit(10, "feet"),
  53281. default: true
  53282. },
  53283. ]
  53284. ))
  53285. characterMakers.push(() => makeCharacter(
  53286. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  53287. {
  53288. front: {
  53289. height: math.unit(6 + 5/12, "feet"),
  53290. weight: math.unit(750, "lb"),
  53291. name: "Front",
  53292. image: {
  53293. source: "./media/characters/ruchex/front.svg",
  53294. extra: 877/820,
  53295. bottom: 17/894
  53296. },
  53297. extraAttributes: {
  53298. "width": {
  53299. name: "Width",
  53300. power: 1,
  53301. type: "length",
  53302. base: math.unit(4.757, "feet")
  53303. },
  53304. }
  53305. },
  53306. },
  53307. [
  53308. {
  53309. name: "Normal",
  53310. height: math.unit(6 + 5/12, "feet"),
  53311. default: true
  53312. },
  53313. ]
  53314. ))
  53315. characterMakers.push(() => makeCharacter(
  53316. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  53317. {
  53318. dressedFront: {
  53319. height: math.unit(191, "cm"),
  53320. weight: math.unit(80, "kg"),
  53321. name: "Front",
  53322. image: {
  53323. source: "./media/characters/buster/dressed-front.svg",
  53324. extra: 1022/973,
  53325. bottom: 69/1091
  53326. }
  53327. },
  53328. dressedBack: {
  53329. height: math.unit(191, "cm"),
  53330. weight: math.unit(80, "kg"),
  53331. name: "Back",
  53332. image: {
  53333. source: "./media/characters/buster/dressed-back.svg",
  53334. extra: 1018/970,
  53335. bottom: 55/1073
  53336. }
  53337. },
  53338. nudeFront: {
  53339. height: math.unit(191, "cm"),
  53340. weight: math.unit(80, "kg"),
  53341. name: "Front (Nude)",
  53342. image: {
  53343. source: "./media/characters/buster/nude-front.svg",
  53344. extra: 1022/973,
  53345. bottom: 69/1091
  53346. }
  53347. },
  53348. nudeBack: {
  53349. height: math.unit(191, "cm"),
  53350. weight: math.unit(80, "kg"),
  53351. name: "Back (Nude)",
  53352. image: {
  53353. source: "./media/characters/buster/nude-back.svg",
  53354. extra: 1018/970,
  53355. bottom: 55/1073
  53356. }
  53357. },
  53358. dick: {
  53359. height: math.unit(2.59, "feet"),
  53360. name: "Dick",
  53361. image: {
  53362. source: "./media/characters/buster/dick.svg"
  53363. }
  53364. },
  53365. ass: {
  53366. height: math.unit(1.2, "feet"),
  53367. name: "Ass",
  53368. image: {
  53369. source: "./media/characters/buster/ass.svg"
  53370. }
  53371. },
  53372. },
  53373. [
  53374. {
  53375. name: "Normal",
  53376. height: math.unit(191, "cm"),
  53377. default: true
  53378. },
  53379. ]
  53380. ))
  53381. characterMakers.push(() => makeCharacter(
  53382. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  53383. {
  53384. side: {
  53385. height: math.unit(8.1, "feet"),
  53386. weight: math.unit(3500, "lb"),
  53387. name: "Side",
  53388. image: {
  53389. source: "./media/characters/sonya/side.svg",
  53390. extra: 1730/1317,
  53391. bottom: 86/1816
  53392. }
  53393. },
  53394. },
  53395. [
  53396. {
  53397. name: "Normal",
  53398. height: math.unit(8.1, "feet"),
  53399. default: true
  53400. },
  53401. ]
  53402. ))
  53403. characterMakers.push(() => makeCharacter(
  53404. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  53405. {
  53406. front: {
  53407. height: math.unit(6, "feet"),
  53408. weight: math.unit(150, "lb"),
  53409. name: "Front",
  53410. image: {
  53411. source: "./media/characters/cadence-andrysiak/front.svg",
  53412. extra: 1164/1121,
  53413. bottom: 60/1224
  53414. }
  53415. },
  53416. back: {
  53417. height: math.unit(6, "feet"),
  53418. weight: math.unit(150, "lb"),
  53419. name: "Back",
  53420. image: {
  53421. source: "./media/characters/cadence-andrysiak/back.svg",
  53422. extra: 1200/1165,
  53423. bottom: 9/1209
  53424. }
  53425. },
  53426. dressed: {
  53427. height: math.unit(6, "feet"),
  53428. weight: math.unit(150, "lb"),
  53429. name: "Dressed",
  53430. image: {
  53431. source: "./media/characters/cadence-andrysiak/dressed.svg",
  53432. extra: 1164/1121,
  53433. bottom: 60/1224
  53434. }
  53435. },
  53436. },
  53437. [
  53438. {
  53439. name: "Micro",
  53440. height: math.unit(1, "mm")
  53441. },
  53442. {
  53443. name: "Normal",
  53444. height: math.unit(6, "feet"),
  53445. default: true
  53446. },
  53447. ]
  53448. ))
  53449. characterMakers.push(() => makeCharacter(
  53450. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  53451. {
  53452. front: {
  53453. height: math.unit(60, "inches"),
  53454. weight: math.unit(16, "lb"),
  53455. preyCapacity: math.unit(80, "liters"),
  53456. name: "Front",
  53457. image: {
  53458. source: "./media/characters/penny-lynx/front.svg",
  53459. extra: 1959/1769,
  53460. bottom: 49/2008
  53461. }
  53462. },
  53463. },
  53464. [
  53465. {
  53466. name: "Nokia",
  53467. height: math.unit(2, "inches")
  53468. },
  53469. {
  53470. name: "Desktop",
  53471. height: math.unit(24, "inches")
  53472. },
  53473. {
  53474. name: "TV",
  53475. height: math.unit(60, "inches")
  53476. },
  53477. {
  53478. name: "Jumbotron",
  53479. height: math.unit(12, "feet")
  53480. },
  53481. {
  53482. name: "Billboard",
  53483. height: math.unit(48, "feet"),
  53484. default: true
  53485. },
  53486. {
  53487. name: "IMAX",
  53488. height: math.unit(96, "feet")
  53489. },
  53490. {
  53491. name: "SINGULARITY",
  53492. height: math.unit(864938, "miles")
  53493. },
  53494. ]
  53495. ))
  53496. characterMakers.push(() => makeCharacter(
  53497. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  53498. {
  53499. front: {
  53500. height: math.unit(5 + 4/12, "feet"),
  53501. weight: math.unit(230, "lb"),
  53502. name: "Front",
  53503. image: {
  53504. source: "./media/characters/sukebe/front.svg",
  53505. extra: 2130/2038,
  53506. bottom: 90/2220
  53507. }
  53508. },
  53509. back: {
  53510. height: math.unit(3.48, "feet"),
  53511. weight: math.unit(230, "lb"),
  53512. name: "Back",
  53513. image: {
  53514. source: "./media/characters/sukebe/back.svg",
  53515. extra: 1670/1604,
  53516. bottom: 0/1670
  53517. }
  53518. },
  53519. },
  53520. [
  53521. {
  53522. name: "Normal",
  53523. height: math.unit(5 + 4/12, "feet"),
  53524. default: true
  53525. },
  53526. ]
  53527. ))
  53528. characterMakers.push(() => makeCharacter(
  53529. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  53530. {
  53531. front: {
  53532. height: math.unit(6, "feet"),
  53533. name: "Front",
  53534. image: {
  53535. source: "./media/characters/nylla/front.svg",
  53536. extra: 1868/1699,
  53537. bottom: 97/1965
  53538. }
  53539. },
  53540. back: {
  53541. height: math.unit(6, "feet"),
  53542. name: "Back",
  53543. image: {
  53544. source: "./media/characters/nylla/back.svg",
  53545. extra: 1889/1712,
  53546. bottom: 93/1982
  53547. }
  53548. },
  53549. frontNsfw: {
  53550. height: math.unit(6, "feet"),
  53551. name: "Front (NSFW)",
  53552. image: {
  53553. source: "./media/characters/nylla/front-nsfw.svg",
  53554. extra: 1868/1699,
  53555. bottom: 97/1965
  53556. },
  53557. extraAttributes: {
  53558. "dickLength": {
  53559. name: "Dick Length",
  53560. power: 1,
  53561. type: "length",
  53562. base: math.unit(1.4, "feet")
  53563. },
  53564. "cumVolume": {
  53565. name: "Cum Volume",
  53566. power: 3,
  53567. type: "volume",
  53568. base: math.unit(100, "mL")
  53569. },
  53570. }
  53571. },
  53572. backNsfw: {
  53573. height: math.unit(6, "feet"),
  53574. name: "Back (NSFW)",
  53575. image: {
  53576. source: "./media/characters/nylla/back-nsfw.svg",
  53577. extra: 1889/1712,
  53578. bottom: 93/1982
  53579. }
  53580. },
  53581. maw: {
  53582. height: math.unit(2.10, "feet"),
  53583. name: "Maw",
  53584. image: {
  53585. source: "./media/characters/nylla/maw.svg"
  53586. }
  53587. },
  53588. paws: {
  53589. height: math.unit(2.06, "feet"),
  53590. name: "Paws",
  53591. image: {
  53592. source: "./media/characters/nylla/paws.svg"
  53593. }
  53594. },
  53595. muzzle: {
  53596. height: math.unit(0.61, "feet"),
  53597. name: "Muzzle",
  53598. image: {
  53599. source: "./media/characters/nylla/muzzle.svg"
  53600. }
  53601. },
  53602. sheath: {
  53603. height: math.unit(1.305, "feet"),
  53604. name: "Sheath",
  53605. image: {
  53606. source: "./media/characters/nylla/sheath.svg"
  53607. }
  53608. },
  53609. },
  53610. [
  53611. {
  53612. name: "Micro",
  53613. height: math.unit(7.5, "inches")
  53614. },
  53615. {
  53616. name: "Normal",
  53617. height: math.unit(7, "feet"),
  53618. default: true
  53619. },
  53620. {
  53621. name: "Macro",
  53622. height: math.unit(60, "feet")
  53623. },
  53624. {
  53625. name: "Mega",
  53626. height: math.unit(200, "feet")
  53627. },
  53628. ]
  53629. ))
  53630. characterMakers.push(() => makeCharacter(
  53631. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  53632. {
  53633. front: {
  53634. height: math.unit(10, "feet"),
  53635. weight: math.unit(2300, "lb"),
  53636. name: "Front",
  53637. image: {
  53638. source: "./media/characters/hunt3r/front.svg",
  53639. extra: 1909/1742,
  53640. bottom: 46/1955
  53641. }
  53642. },
  53643. },
  53644. [
  53645. {
  53646. name: "Normal",
  53647. height: math.unit(10, "feet"),
  53648. default: true
  53649. },
  53650. ]
  53651. ))
  53652. characterMakers.push(() => makeCharacter(
  53653. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  53654. {
  53655. dressed: {
  53656. height: math.unit(11, "feet"),
  53657. weight: math.unit(18500, "lb"),
  53658. preyCapacity: math.unit(9, "people"),
  53659. name: "Dressed",
  53660. image: {
  53661. source: "./media/characters/cylphis/dressed.svg",
  53662. extra: 1028/1003,
  53663. bottom: 75/1103
  53664. },
  53665. },
  53666. undressed: {
  53667. height: math.unit(11, "feet"),
  53668. weight: math.unit(18500, "lb"),
  53669. preyCapacity: math.unit(9, "people"),
  53670. name: "Undressed",
  53671. image: {
  53672. source: "./media/characters/cylphis/undressed.svg",
  53673. extra: 1028/1003,
  53674. bottom: 75/1103
  53675. }
  53676. },
  53677. full: {
  53678. height: math.unit(11, "feet"),
  53679. weight: math.unit(18500 + 150*9, "lb"),
  53680. preyCapacity: math.unit(9, "people"),
  53681. name: "Full",
  53682. image: {
  53683. source: "./media/characters/cylphis/full.svg",
  53684. extra: 1028/1003,
  53685. bottom: 75/1103
  53686. }
  53687. },
  53688. },
  53689. [
  53690. {
  53691. name: "Small",
  53692. height: math.unit(8, "feet")
  53693. },
  53694. {
  53695. name: "Normal",
  53696. height: math.unit(11, "feet"),
  53697. default: true
  53698. },
  53699. ]
  53700. ))
  53701. characterMakers.push(() => makeCharacter(
  53702. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  53703. {
  53704. front: {
  53705. height: math.unit(2 + 7/12, "feet"),
  53706. name: "Front",
  53707. image: {
  53708. source: "./media/characters/orishan/front.svg",
  53709. extra: 1058/1023,
  53710. bottom: 23/1081
  53711. }
  53712. },
  53713. back: {
  53714. height: math.unit(2 + 7/12, "feet"),
  53715. name: "Back",
  53716. image: {
  53717. source: "./media/characters/orishan/back.svg",
  53718. extra: 1058/1023,
  53719. bottom: 23/1081
  53720. }
  53721. },
  53722. },
  53723. [
  53724. {
  53725. name: "Micro",
  53726. height: math.unit(2, "cm")
  53727. },
  53728. {
  53729. name: "Normal",
  53730. height: math.unit(2 + 7/12, "feet"),
  53731. default: true
  53732. },
  53733. ]
  53734. ))
  53735. characterMakers.push(() => makeCharacter(
  53736. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  53737. {
  53738. front: {
  53739. height: math.unit(3, "meters"),
  53740. weight: math.unit(508, "kg"),
  53741. name: "Front",
  53742. image: {
  53743. source: "./media/characters/seranis/front.svg",
  53744. extra: 1478/1454,
  53745. bottom: 41/1519
  53746. }
  53747. },
  53748. },
  53749. [
  53750. {
  53751. name: "Normal",
  53752. height: math.unit(3, "meters"),
  53753. default: true
  53754. },
  53755. {
  53756. name: "Macro",
  53757. height: math.unit(108, "meters")
  53758. },
  53759. {
  53760. name: "Megamacro",
  53761. height: math.unit(1250, "meters")
  53762. },
  53763. ]
  53764. ))
  53765. characterMakers.push(() => makeCharacter(
  53766. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  53767. {
  53768. undressed: {
  53769. height: math.unit(5 + 3/12, "feet"),
  53770. name: "Undressed",
  53771. image: {
  53772. source: "./media/characters/ankou/undressed.svg",
  53773. extra: 1301/1213,
  53774. bottom: 87/1388
  53775. }
  53776. },
  53777. dressed: {
  53778. height: math.unit(5 + 3/12, "feet"),
  53779. name: "Dressed",
  53780. image: {
  53781. source: "./media/characters/ankou/dressed.svg",
  53782. extra: 1301/1213,
  53783. bottom: 87/1388
  53784. }
  53785. },
  53786. head: {
  53787. height: math.unit(1.61, "feet"),
  53788. name: "Head",
  53789. image: {
  53790. source: "./media/characters/ankou/head.svg"
  53791. }
  53792. },
  53793. },
  53794. [
  53795. {
  53796. name: "Normal",
  53797. height: math.unit(5 + 3/12, "feet"),
  53798. default: true
  53799. },
  53800. ]
  53801. ))
  53802. characterMakers.push(() => makeCharacter(
  53803. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  53804. {
  53805. side: {
  53806. height: math.unit(6 + 3/12, "feet"),
  53807. weight: math.unit(200, "kg"),
  53808. name: "Side",
  53809. image: {
  53810. source: "./media/characters/juniper-skunktaur/side.svg",
  53811. extra: 1574/1229,
  53812. bottom: 38/1612
  53813. }
  53814. },
  53815. front: {
  53816. height: math.unit(6 + 3/12, "feet"),
  53817. weight: math.unit(200, "kg"),
  53818. name: "Front",
  53819. image: {
  53820. source: "./media/characters/juniper-skunktaur/front.svg",
  53821. extra: 1337/1278,
  53822. bottom: 22/1359
  53823. }
  53824. },
  53825. back: {
  53826. height: math.unit(6 + 3/12, "feet"),
  53827. weight: math.unit(200, "kg"),
  53828. name: "Back",
  53829. image: {
  53830. source: "./media/characters/juniper-skunktaur/back.svg",
  53831. extra: 1618/1273,
  53832. bottom: 13/1631
  53833. }
  53834. },
  53835. top: {
  53836. height: math.unit(2.62, "feet"),
  53837. weight: math.unit(200, "kg"),
  53838. name: "Top",
  53839. image: {
  53840. source: "./media/characters/juniper-skunktaur/top.svg"
  53841. }
  53842. },
  53843. },
  53844. [
  53845. {
  53846. name: "Normal",
  53847. height: math.unit(6 + 3/12, "feet"),
  53848. default: true
  53849. },
  53850. ]
  53851. ))
  53852. characterMakers.push(() => makeCharacter(
  53853. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  53854. {
  53855. front: {
  53856. height: math.unit(20.5, "feet"),
  53857. name: "Front",
  53858. image: {
  53859. source: "./media/characters/rei/front.svg",
  53860. extra: 1349/1195,
  53861. bottom: 31/1380
  53862. }
  53863. },
  53864. back: {
  53865. height: math.unit(20.5, "feet"),
  53866. name: "Back",
  53867. image: {
  53868. source: "./media/characters/rei/back.svg",
  53869. extra: 1358/1204,
  53870. bottom: 22/1380
  53871. }
  53872. },
  53873. pawsDigi: {
  53874. height: math.unit(3.45, "feet"),
  53875. name: "Paws (Digi)",
  53876. image: {
  53877. source: "./media/characters/rei/paws-digi.svg"
  53878. }
  53879. },
  53880. pawsPlanti: {
  53881. height: math.unit(3.45, "feet"),
  53882. name: "Paws (Planti)",
  53883. image: {
  53884. source: "./media/characters/rei/paws-planti.svg"
  53885. }
  53886. },
  53887. },
  53888. [
  53889. {
  53890. name: "Normal",
  53891. height: math.unit(20.5, "feet"),
  53892. default: true
  53893. },
  53894. ]
  53895. ))
  53896. characterMakers.push(() => makeCharacter(
  53897. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  53898. {
  53899. front: {
  53900. height: math.unit(5 + 11/12, "feet"),
  53901. name: "Front",
  53902. image: {
  53903. source: "./media/characters/carina/front.svg",
  53904. extra: 1720/1449,
  53905. bottom: 14/1734
  53906. }
  53907. },
  53908. back: {
  53909. height: math.unit(5 + 11/12, "feet"),
  53910. name: "Back",
  53911. image: {
  53912. source: "./media/characters/carina/back.svg",
  53913. extra: 1493/1445,
  53914. bottom: 17/1510
  53915. }
  53916. },
  53917. paw: {
  53918. height: math.unit(0.92, "feet"),
  53919. name: "Paw",
  53920. image: {
  53921. source: "./media/characters/carina/paw.svg"
  53922. }
  53923. },
  53924. },
  53925. [
  53926. {
  53927. name: "Normal",
  53928. height: math.unit(5 + 11/12, "feet"),
  53929. default: true
  53930. },
  53931. ]
  53932. ))
  53933. characterMakers.push(() => makeCharacter(
  53934. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  53935. {
  53936. normal_front: {
  53937. height: math.unit(4.88, "meters"),
  53938. name: "Front",
  53939. image: {
  53940. source: "./media/characters/maya/normal-front.svg",
  53941. extra: 1222/1145,
  53942. bottom: 57/1279
  53943. },
  53944. form: "normal",
  53945. default: true
  53946. },
  53947. monstrous_front: {
  53948. height: math.unit(10, "meters"),
  53949. name: "Front",
  53950. image: {
  53951. source: "./media/characters/maya/monstrous-front.svg",
  53952. extra: 1523/1109,
  53953. bottom: 113/1636
  53954. },
  53955. form: "monstrous",
  53956. extraAttributes: {
  53957. "swallowSize": {
  53958. name: "Tailmaw Bite Size",
  53959. power: 3,
  53960. type: "volume",
  53961. base: math.unit(43000, "liters")
  53962. },
  53963. }
  53964. },
  53965. taur_front: {
  53966. height: math.unit(10, "meters"),
  53967. name: "Front",
  53968. image: {
  53969. source: "./media/characters/maya/taur-front.svg",
  53970. extra: 743/506,
  53971. bottom: 101/844
  53972. },
  53973. form: "taur",
  53974. },
  53975. },
  53976. [
  53977. {
  53978. name: "Normal",
  53979. height: math.unit(4.88, "meters"),
  53980. default: true,
  53981. form: "normal"
  53982. },
  53983. {
  53984. name: "Macro",
  53985. height: math.unit(38.1, "meters"),
  53986. form: "normal"
  53987. },
  53988. {
  53989. name: "Macro+",
  53990. height: math.unit(152.4, "meters"),
  53991. form: "normal"
  53992. },
  53993. {
  53994. name: "Macro++",
  53995. height: math.unit(16.09, "km"),
  53996. form: "normal"
  53997. },
  53998. {
  53999. name: "Mega-macro",
  54000. height: math.unit(700, "megameters"),
  54001. form: "normal"
  54002. },
  54003. {
  54004. name: "Satiated",
  54005. height: math.unit(10, "meters"),
  54006. default: true,
  54007. form: "monstrous"
  54008. },
  54009. {
  54010. name: "Hungry",
  54011. height: math.unit(75, "meters"),
  54012. form: "monstrous"
  54013. },
  54014. {
  54015. name: "Ravenous",
  54016. height: math.unit(500, "meters"),
  54017. form: "monstrous"
  54018. },
  54019. {
  54020. name: "\"Normal\"",
  54021. height: math.unit(10, "meters"),
  54022. form: "taur"
  54023. },
  54024. {
  54025. name: "Macro",
  54026. height: math.unit(50, "meters"),
  54027. form: "taur"
  54028. },
  54029. ],
  54030. {
  54031. "normal": {
  54032. name: "Normal",
  54033. default: true
  54034. },
  54035. "monstrous": {
  54036. name: "Monstrous",
  54037. },
  54038. "taur": {
  54039. name: "Taur",
  54040. },
  54041. }
  54042. ))
  54043. characterMakers.push(() => makeCharacter(
  54044. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  54045. {
  54046. front: {
  54047. height: math.unit(6 + 2/12, "feet"),
  54048. weight: math.unit(500, "lb"),
  54049. preyCapacity: math.unit(4, "people"),
  54050. name: "Front",
  54051. image: {
  54052. source: "./media/characters/yepir/front.svg"
  54053. }
  54054. },
  54055. side: {
  54056. height: math.unit(6 + 2/12, "feet"),
  54057. weight: math.unit(500, "lb"),
  54058. preyCapacity: math.unit(4, "people"),
  54059. name: "Side",
  54060. image: {
  54061. source: "./media/characters/yepir/side.svg"
  54062. }
  54063. },
  54064. paw: {
  54065. height: math.unit(1.05, "feet"),
  54066. name: "Paw",
  54067. image: {
  54068. source: "./media/characters/yepir/paw.svg"
  54069. }
  54070. },
  54071. },
  54072. [
  54073. {
  54074. name: "Normal",
  54075. height: math.unit(6 + 2/12, "feet"),
  54076. default: true
  54077. },
  54078. ]
  54079. ))
  54080. characterMakers.push(() => makeCharacter(
  54081. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  54082. {
  54083. front: {
  54084. height: math.unit(5 + 4/12, "feet"),
  54085. name: "Front",
  54086. image: {
  54087. source: "./media/characters/russec/front.svg",
  54088. extra: 1926/1626,
  54089. bottom: 72/1998
  54090. }
  54091. },
  54092. back: {
  54093. height: math.unit(5 + 4/12, "feet"),
  54094. name: "Back",
  54095. image: {
  54096. source: "./media/characters/russec/back.svg",
  54097. extra: 1910/1591,
  54098. bottom: 48/1958
  54099. }
  54100. },
  54101. },
  54102. [
  54103. {
  54104. name: "Small",
  54105. height: math.unit(5 + 4/12, "feet")
  54106. },
  54107. {
  54108. name: "Normal",
  54109. height: math.unit(72, "feet"),
  54110. default: true
  54111. },
  54112. ]
  54113. ))
  54114. characterMakers.push(() => makeCharacter(
  54115. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  54116. {
  54117. side: {
  54118. height: math.unit(12, "feet"),
  54119. name: "Side",
  54120. image: {
  54121. source: "./media/characters/cianus/side.svg",
  54122. extra: 808/526,
  54123. bottom: 61/869
  54124. }
  54125. },
  54126. },
  54127. [
  54128. {
  54129. name: "Normal",
  54130. height: math.unit(12, "feet"),
  54131. default: true
  54132. },
  54133. ]
  54134. ))
  54135. characterMakers.push(() => makeCharacter(
  54136. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  54137. {
  54138. front: {
  54139. height: math.unit(9 + 6/12, "feet"),
  54140. weight: math.unit(300, "lb"),
  54141. name: "Front",
  54142. image: {
  54143. source: "./media/characters/ahab/front.svg",
  54144. extra: 1897/1868,
  54145. bottom: 121/2018
  54146. }
  54147. },
  54148. frontNsfw: {
  54149. height: math.unit(9 + 6/12, "feet"),
  54150. weight: math.unit(300, "lb"),
  54151. name: "Front (NSFW)",
  54152. image: {
  54153. source: "./media/characters/ahab/front-nsfw.svg",
  54154. extra: 1897/1868,
  54155. bottom: 121/2018
  54156. }
  54157. },
  54158. },
  54159. [
  54160. {
  54161. name: "Normal",
  54162. height: math.unit(9 + 6/12, "feet")
  54163. },
  54164. {
  54165. name: "Macro",
  54166. height: math.unit(657, "feet"),
  54167. default: true
  54168. },
  54169. ]
  54170. ))
  54171. characterMakers.push(() => makeCharacter(
  54172. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  54173. {
  54174. front: {
  54175. height: math.unit(2.69, "meters"),
  54176. weight: math.unit(132, "kg"),
  54177. name: "Front",
  54178. image: {
  54179. source: "./media/characters/aarkus/front.svg",
  54180. extra: 1400/1231,
  54181. bottom: 34/1434
  54182. }
  54183. },
  54184. back: {
  54185. height: math.unit(2.69, "meters"),
  54186. weight: math.unit(132, "kg"),
  54187. name: "Back",
  54188. image: {
  54189. source: "./media/characters/aarkus/back.svg",
  54190. extra: 1381/1218,
  54191. bottom: 30/1411
  54192. }
  54193. },
  54194. frontNsfw: {
  54195. height: math.unit(2.69, "meters"),
  54196. weight: math.unit(132, "kg"),
  54197. name: "Front (NSFW)",
  54198. image: {
  54199. source: "./media/characters/aarkus/front-nsfw.svg",
  54200. extra: 1400/1231,
  54201. bottom: 34/1434
  54202. }
  54203. },
  54204. foot: {
  54205. height: math.unit(1.45, "feet"),
  54206. name: "Foot",
  54207. image: {
  54208. source: "./media/characters/aarkus/foot.svg"
  54209. }
  54210. },
  54211. head: {
  54212. height: math.unit(2.85, "feet"),
  54213. name: "Head",
  54214. image: {
  54215. source: "./media/characters/aarkus/head.svg"
  54216. }
  54217. },
  54218. headAlt: {
  54219. height: math.unit(3.07, "feet"),
  54220. name: "Head (Alt)",
  54221. image: {
  54222. source: "./media/characters/aarkus/head-alt.svg"
  54223. }
  54224. },
  54225. mouth: {
  54226. height: math.unit(1.25, "feet"),
  54227. name: "Mouth",
  54228. image: {
  54229. source: "./media/characters/aarkus/mouth.svg"
  54230. }
  54231. },
  54232. dick: {
  54233. height: math.unit(1.77, "feet"),
  54234. name: "Dick",
  54235. image: {
  54236. source: "./media/characters/aarkus/dick.svg"
  54237. }
  54238. },
  54239. },
  54240. [
  54241. {
  54242. name: "Normal",
  54243. height: math.unit(2.69, "meters"),
  54244. default: true
  54245. },
  54246. {
  54247. name: "Macro",
  54248. height: math.unit(269, "meters")
  54249. },
  54250. {
  54251. name: "Macro+",
  54252. height: math.unit(672.5, "meters")
  54253. },
  54254. {
  54255. name: "Megamacro",
  54256. height: math.unit(2.017, "km")
  54257. },
  54258. ]
  54259. ))
  54260. characterMakers.push(() => makeCharacter(
  54261. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  54262. {
  54263. front: {
  54264. height: math.unit(23.47, "cm"),
  54265. weight: math.unit(600, "grams"),
  54266. name: "Front",
  54267. image: {
  54268. source: "./media/characters/diode/front.svg",
  54269. extra: 1778/1396,
  54270. bottom: 95/1873
  54271. }
  54272. },
  54273. side: {
  54274. height: math.unit(23.47, "cm"),
  54275. weight: math.unit(600, "grams"),
  54276. name: "Side",
  54277. image: {
  54278. source: "./media/characters/diode/side.svg",
  54279. extra: 1831/1404,
  54280. bottom: 86/1917
  54281. }
  54282. },
  54283. wings: {
  54284. height: math.unit(0.683, "feet"),
  54285. name: "Wings",
  54286. image: {
  54287. source: "./media/characters/diode/wings.svg"
  54288. }
  54289. },
  54290. },
  54291. [
  54292. {
  54293. name: "Normal",
  54294. height: math.unit(23.47, "cm"),
  54295. default: true
  54296. },
  54297. ]
  54298. ))
  54299. characterMakers.push(() => makeCharacter(
  54300. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  54301. {
  54302. front: {
  54303. height: math.unit(6 + 3/12, "feet"),
  54304. weight: math.unit(250, "lb"),
  54305. name: "Front",
  54306. image: {
  54307. source: "./media/characters/reika/front.svg",
  54308. extra: 1120/1078,
  54309. bottom: 86/1206
  54310. }
  54311. },
  54312. },
  54313. [
  54314. {
  54315. name: "Normal",
  54316. height: math.unit(6 + 3/12, "feet"),
  54317. default: true
  54318. },
  54319. ]
  54320. ))
  54321. characterMakers.push(() => makeCharacter(
  54322. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  54323. {
  54324. front: {
  54325. height: math.unit(16 + 8/12, "feet"),
  54326. weight: math.unit(9000, "lb"),
  54327. name: "Front",
  54328. image: {
  54329. source: "./media/characters/lokuto-takama/front.svg",
  54330. extra: 1774/1632,
  54331. bottom: 147/1921
  54332. },
  54333. extraAttributes: {
  54334. "bustWidth": {
  54335. name: "Bust Width",
  54336. power: 1,
  54337. type: "length",
  54338. base: math.unit(2.4, "meters")
  54339. },
  54340. "breastWeight": {
  54341. name: "Breast Weight",
  54342. power: 3,
  54343. type: "mass",
  54344. base: math.unit(1000, "kg")
  54345. },
  54346. }
  54347. },
  54348. },
  54349. [
  54350. {
  54351. name: "Normal",
  54352. height: math.unit(16 + 8/12, "feet"),
  54353. default: true
  54354. },
  54355. ]
  54356. ))
  54357. characterMakers.push(() => makeCharacter(
  54358. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  54359. {
  54360. front: {
  54361. height: math.unit(10, "cm"),
  54362. weight: math.unit(850, "grams"),
  54363. name: "Front",
  54364. image: {
  54365. source: "./media/characters/owak-bone/front.svg",
  54366. extra: 1965/1801,
  54367. bottom: 31/1996
  54368. }
  54369. },
  54370. },
  54371. [
  54372. {
  54373. name: "Normal",
  54374. height: math.unit(10, "cm"),
  54375. default: true
  54376. },
  54377. ]
  54378. ))
  54379. characterMakers.push(() => makeCharacter(
  54380. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  54381. {
  54382. front: {
  54383. height: math.unit(2 + 6/12, "feet"),
  54384. weight: math.unit(9, "lb"),
  54385. name: "Front",
  54386. image: {
  54387. source: "./media/characters/muffin/front.svg",
  54388. extra: 1220/1195,
  54389. bottom: 84/1304
  54390. }
  54391. },
  54392. },
  54393. [
  54394. {
  54395. name: "Normal",
  54396. height: math.unit(2 + 6/12, "feet"),
  54397. default: true
  54398. },
  54399. ]
  54400. ))
  54401. characterMakers.push(() => makeCharacter(
  54402. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  54403. {
  54404. front: {
  54405. height: math.unit(7, "feet"),
  54406. name: "Front",
  54407. image: {
  54408. source: "./media/characters/chimera/front.svg",
  54409. extra: 1752/1614,
  54410. bottom: 68/1820
  54411. }
  54412. },
  54413. },
  54414. [
  54415. {
  54416. name: "Normal",
  54417. height: math.unit(7, "feet")
  54418. },
  54419. {
  54420. name: "Gigamacro",
  54421. height: math.unit(2.9, "gigameters"),
  54422. default: true
  54423. },
  54424. {
  54425. name: "Universal",
  54426. height: math.unit(1.56e26, "yottameters")
  54427. },
  54428. ]
  54429. ))
  54430. characterMakers.push(() => makeCharacter(
  54431. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  54432. {
  54433. front: {
  54434. height: math.unit(3, "feet"),
  54435. weight: math.unit(20, "lb"),
  54436. name: "Front",
  54437. image: {
  54438. source: "./media/characters/kit-fennec-fox/front.svg",
  54439. extra: 1027/932,
  54440. bottom: 16/1043
  54441. }
  54442. },
  54443. back: {
  54444. height: math.unit(3, "feet"),
  54445. weight: math.unit(20, "lb"),
  54446. name: "Back",
  54447. image: {
  54448. source: "./media/characters/kit-fennec-fox/back.svg",
  54449. extra: 1027/932,
  54450. bottom: 16/1043
  54451. }
  54452. },
  54453. },
  54454. [
  54455. {
  54456. name: "Normal",
  54457. height: math.unit(3, "feet"),
  54458. default: true
  54459. },
  54460. ]
  54461. ))
  54462. characterMakers.push(() => makeCharacter(
  54463. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  54464. {
  54465. front: {
  54466. height: math.unit(167, "cm"),
  54467. name: "Front",
  54468. image: {
  54469. source: "./media/characters/blue-otter/front.svg",
  54470. extra: 1951/1920,
  54471. bottom: 31/1982
  54472. }
  54473. },
  54474. },
  54475. [
  54476. {
  54477. name: "Otter-Sized",
  54478. height: math.unit(100, "cm")
  54479. },
  54480. {
  54481. name: "Normal",
  54482. height: math.unit(167, "cm"),
  54483. default: true
  54484. },
  54485. ]
  54486. ))
  54487. characterMakers.push(() => makeCharacter(
  54488. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  54489. {
  54490. front: {
  54491. height: math.unit(4 + 4/12, "feet"),
  54492. name: "Front",
  54493. image: {
  54494. source: "./media/characters/maverick-leopard-gecko/front.svg",
  54495. extra: 1072/1067,
  54496. bottom: 117/1189
  54497. }
  54498. },
  54499. back: {
  54500. height: math.unit(4 + 4/12, "feet"),
  54501. name: "Back",
  54502. image: {
  54503. source: "./media/characters/maverick-leopard-gecko/back.svg",
  54504. extra: 1135/1129,
  54505. bottom: 57/1192
  54506. }
  54507. },
  54508. head: {
  54509. height: math.unit(1.77, "feet"),
  54510. name: "Head",
  54511. image: {
  54512. source: "./media/characters/maverick-leopard-gecko/head.svg"
  54513. }
  54514. },
  54515. },
  54516. [
  54517. {
  54518. name: "Normal",
  54519. height: math.unit(4 + 4/12, "feet"),
  54520. default: true
  54521. },
  54522. ]
  54523. ))
  54524. characterMakers.push(() => makeCharacter(
  54525. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  54526. {
  54527. front: {
  54528. height: math.unit(2, "inches"),
  54529. name: "Front",
  54530. image: {
  54531. source: "./media/characters/carley-hartford/front.svg",
  54532. extra: 1035/988,
  54533. bottom: 23/1058
  54534. }
  54535. },
  54536. back: {
  54537. height: math.unit(2, "inches"),
  54538. name: "Back",
  54539. image: {
  54540. source: "./media/characters/carley-hartford/back.svg",
  54541. extra: 1035/988,
  54542. bottom: 23/1058
  54543. }
  54544. },
  54545. dressed: {
  54546. height: math.unit(2, "inches"),
  54547. name: "Dressed",
  54548. image: {
  54549. source: "./media/characters/carley-hartford/dressed.svg",
  54550. extra: 651/620,
  54551. bottom: 0/651
  54552. }
  54553. },
  54554. },
  54555. [
  54556. {
  54557. name: "Micro",
  54558. height: math.unit(2, "inches"),
  54559. default: true
  54560. },
  54561. {
  54562. name: "Macro",
  54563. height: math.unit(6 + 3/12, "feet")
  54564. },
  54565. ]
  54566. ))
  54567. characterMakers.push(() => makeCharacter(
  54568. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  54569. {
  54570. front: {
  54571. height: math.unit(2 + 3/12, "feet"),
  54572. weight: math.unit(15 + 7/16, "lb"),
  54573. name: "Front",
  54574. image: {
  54575. source: "./media/characters/duke/front.svg",
  54576. extra: 910/815,
  54577. bottom: 30/940
  54578. }
  54579. },
  54580. },
  54581. [
  54582. {
  54583. name: "Normal",
  54584. height: math.unit(2 + 3/12, "feet"),
  54585. default: true
  54586. },
  54587. ]
  54588. ))
  54589. characterMakers.push(() => makeCharacter(
  54590. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  54591. {
  54592. front: {
  54593. height: math.unit(5 + 4/12, "feet"),
  54594. weight: math.unit(156, "lb"),
  54595. name: "Front",
  54596. image: {
  54597. source: "./media/characters/dein/front.svg",
  54598. extra: 855/815,
  54599. bottom: 48/903
  54600. }
  54601. },
  54602. side: {
  54603. height: math.unit(5 + 4/12, "feet"),
  54604. weight: math.unit(156, "lb"),
  54605. name: "side",
  54606. image: {
  54607. source: "./media/characters/dein/side.svg",
  54608. extra: 846/803,
  54609. bottom: 25/871
  54610. }
  54611. },
  54612. maw: {
  54613. height: math.unit(1.45, "feet"),
  54614. name: "Maw",
  54615. image: {
  54616. source: "./media/characters/dein/maw.svg"
  54617. }
  54618. },
  54619. },
  54620. [
  54621. {
  54622. name: "Ferret Sized",
  54623. height: math.unit(2 + 5/12, "feet")
  54624. },
  54625. {
  54626. name: "Normal",
  54627. height: math.unit(5 + 4/12, "feet"),
  54628. default: true
  54629. },
  54630. ]
  54631. ))
  54632. characterMakers.push(() => makeCharacter(
  54633. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  54634. {
  54635. front: {
  54636. height: math.unit(84 + 8/12, "feet"),
  54637. weight: math.unit(942180, "lb"),
  54638. name: "Front",
  54639. image: {
  54640. source: "./media/characters/daurine-arima/front.svg",
  54641. extra: 1989/1782,
  54642. bottom: 37/2026
  54643. }
  54644. },
  54645. side: {
  54646. height: math.unit(84 + 8/12, "feet"),
  54647. weight: math.unit(942180, "lb"),
  54648. name: "Side",
  54649. image: {
  54650. source: "./media/characters/daurine-arima/side.svg",
  54651. extra: 1997/1790,
  54652. bottom: 21/2018
  54653. }
  54654. },
  54655. back: {
  54656. height: math.unit(84 + 8/12, "feet"),
  54657. weight: math.unit(942180, "lb"),
  54658. name: "Back",
  54659. image: {
  54660. source: "./media/characters/daurine-arima/back.svg",
  54661. extra: 1992/1800,
  54662. bottom: 12/2004
  54663. }
  54664. },
  54665. head: {
  54666. height: math.unit(15.5, "feet"),
  54667. name: "Head",
  54668. image: {
  54669. source: "./media/characters/daurine-arima/head.svg"
  54670. }
  54671. },
  54672. headAlt: {
  54673. height: math.unit(19.19, "feet"),
  54674. name: "Head (Alt)",
  54675. image: {
  54676. source: "./media/characters/daurine-arima/head-alt.svg"
  54677. }
  54678. },
  54679. },
  54680. [
  54681. {
  54682. name: "Minimum height",
  54683. height: math.unit(8 + 10/12, "feet")
  54684. },
  54685. {
  54686. name: "Comfort height",
  54687. height: math.unit(19 + 6 /12, "feet")
  54688. },
  54689. {
  54690. name: "\"Normal\" height",
  54691. height: math.unit(28 + 10/12, "feet")
  54692. },
  54693. {
  54694. name: "Base height",
  54695. height: math.unit(84 + 8/12, "feet"),
  54696. default: true
  54697. },
  54698. {
  54699. name: "Mini-macro",
  54700. height: math.unit(2360, "feet")
  54701. },
  54702. {
  54703. name: "Macro",
  54704. height: math.unit(10, "miles")
  54705. },
  54706. {
  54707. name: "Goddess",
  54708. height: math.unit(9.99e40, "yottameters")
  54709. },
  54710. ]
  54711. ))
  54712. characterMakers.push(() => makeCharacter(
  54713. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  54714. {
  54715. front: {
  54716. height: math.unit(2.3, "meters"),
  54717. name: "Front",
  54718. image: {
  54719. source: "./media/characters/cilenomon/front.svg",
  54720. extra: 1963/1778,
  54721. bottom: 54/2017
  54722. }
  54723. },
  54724. },
  54725. [
  54726. {
  54727. name: "Normal",
  54728. height: math.unit(2.3, "meters"),
  54729. default: true
  54730. },
  54731. {
  54732. name: "Big",
  54733. height: math.unit(5, "meters")
  54734. },
  54735. {
  54736. name: "Macro",
  54737. height: math.unit(30, "meters")
  54738. },
  54739. {
  54740. name: "True",
  54741. height: math.unit(1, "universe")
  54742. },
  54743. ]
  54744. ))
  54745. characterMakers.push(() => makeCharacter(
  54746. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  54747. {
  54748. front: {
  54749. height: math.unit(5, "feet"),
  54750. name: "Front",
  54751. image: {
  54752. source: "./media/characters/sen-mink/front.svg",
  54753. extra: 1727/1675,
  54754. bottom: 35/1762
  54755. }
  54756. },
  54757. },
  54758. [
  54759. {
  54760. name: "Normal",
  54761. height: math.unit(5, "feet"),
  54762. default: true
  54763. },
  54764. ]
  54765. ))
  54766. characterMakers.push(() => makeCharacter(
  54767. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  54768. {
  54769. front: {
  54770. height: math.unit(5.42999, "feet"),
  54771. weight: math.unit(100, "lb"),
  54772. name: "Front",
  54773. image: {
  54774. source: "./media/characters/ophois/front.svg",
  54775. extra: 1429/1286,
  54776. bottom: 60/1489
  54777. }
  54778. },
  54779. },
  54780. [
  54781. {
  54782. name: "Normal",
  54783. height: math.unit(5.42999, "feet"),
  54784. default: true
  54785. },
  54786. ]
  54787. ))
  54788. characterMakers.push(() => makeCharacter(
  54789. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  54790. {
  54791. front: {
  54792. height: math.unit(2, "meters"),
  54793. name: "Front",
  54794. image: {
  54795. source: "./media/characters/riley/front.svg",
  54796. extra: 1779/1754,
  54797. bottom: 139/1918
  54798. }
  54799. },
  54800. },
  54801. [
  54802. {
  54803. name: "Normal",
  54804. height: math.unit(2, "meters"),
  54805. default: true
  54806. },
  54807. ]
  54808. ))
  54809. characterMakers.push(() => makeCharacter(
  54810. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  54811. {
  54812. front: {
  54813. height: math.unit(6 + 2/12, "feet"),
  54814. weight: math.unit(195, "lb"),
  54815. preyCapacity: math.unit(6, "people"),
  54816. name: "Front",
  54817. image: {
  54818. source: "./media/characters/shuken-flash/front.svg",
  54819. extra: 1905/1739,
  54820. bottom: 65/1970
  54821. }
  54822. },
  54823. back: {
  54824. height: math.unit(6 + 2/12, "feet"),
  54825. weight: math.unit(195, "lb"),
  54826. preyCapacity: math.unit(6, "people"),
  54827. name: "Back",
  54828. image: {
  54829. source: "./media/characters/shuken-flash/back.svg",
  54830. extra: 1912/1751,
  54831. bottom: 13/1925
  54832. }
  54833. },
  54834. },
  54835. [
  54836. {
  54837. name: "Normal",
  54838. height: math.unit(6 + 2/12, "feet"),
  54839. default: true
  54840. },
  54841. ]
  54842. ))
  54843. characterMakers.push(() => makeCharacter(
  54844. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  54845. {
  54846. front: {
  54847. height: math.unit(5 + 9/12, "feet"),
  54848. weight: math.unit(150, "lb"),
  54849. name: "Front",
  54850. image: {
  54851. source: "./media/characters/plat/front.svg",
  54852. extra: 1816/1703,
  54853. bottom: 43/1859
  54854. }
  54855. },
  54856. side: {
  54857. height: math.unit(5 + 9/12, "feet"),
  54858. weight: math.unit(300, "lb"),
  54859. name: "Side",
  54860. image: {
  54861. source: "./media/characters/plat/side.svg",
  54862. extra: 1824/1699,
  54863. bottom: 18/1842
  54864. }
  54865. },
  54866. },
  54867. [
  54868. {
  54869. name: "Normal",
  54870. height: math.unit(5 + 9/12, "feet"),
  54871. default: true
  54872. },
  54873. ]
  54874. ))
  54875. characterMakers.push(() => makeCharacter(
  54876. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  54877. {
  54878. front: {
  54879. height: math.unit(9, "feet"),
  54880. weight: math.unit(1800, "lb"),
  54881. name: "Front",
  54882. image: {
  54883. source: "./media/characters/elaine/front.svg",
  54884. extra: 1833/1354,
  54885. bottom: 25/1858
  54886. }
  54887. },
  54888. back: {
  54889. height: math.unit(8.8, "feet"),
  54890. weight: math.unit(1800, "lb"),
  54891. name: "Back",
  54892. image: {
  54893. source: "./media/characters/elaine/back.svg",
  54894. extra: 1641/1233,
  54895. bottom: 53/1694
  54896. }
  54897. },
  54898. },
  54899. [
  54900. {
  54901. name: "Normal",
  54902. height: math.unit(9, "feet"),
  54903. default: true
  54904. },
  54905. ]
  54906. ))
  54907. characterMakers.push(() => makeCharacter(
  54908. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  54909. {
  54910. front: {
  54911. height: math.unit(17 + 9/12, "feet"),
  54912. weight: math.unit(8000, "lb"),
  54913. name: "Front",
  54914. image: {
  54915. source: "./media/characters/vera-raven/front.svg",
  54916. extra: 1457/1412,
  54917. bottom: 121/1578
  54918. }
  54919. },
  54920. side: {
  54921. height: math.unit(17 + 9/12, "feet"),
  54922. weight: math.unit(8000, "lb"),
  54923. name: "Side",
  54924. image: {
  54925. source: "./media/characters/vera-raven/side.svg",
  54926. extra: 1510/1464,
  54927. bottom: 54/1564
  54928. }
  54929. },
  54930. },
  54931. [
  54932. {
  54933. name: "Normal",
  54934. height: math.unit(17 + 9/12, "feet"),
  54935. default: true
  54936. },
  54937. ]
  54938. ))
  54939. characterMakers.push(() => makeCharacter(
  54940. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  54941. {
  54942. dressed: {
  54943. height: math.unit(6 + 9/12, "feet"),
  54944. name: "Dressed",
  54945. image: {
  54946. source: "./media/characters/nakisha/dressed.svg",
  54947. extra: 1909/1757,
  54948. bottom: 48/1957
  54949. }
  54950. },
  54951. nude: {
  54952. height: math.unit(6 + 9/12, "feet"),
  54953. name: "Nude",
  54954. image: {
  54955. source: "./media/characters/nakisha/nude.svg",
  54956. extra: 1917/1765,
  54957. bottom: 34/1951
  54958. }
  54959. },
  54960. },
  54961. [
  54962. {
  54963. name: "Normal",
  54964. height: math.unit(6 + 9/12, "feet"),
  54965. default: true
  54966. },
  54967. ]
  54968. ))
  54969. characterMakers.push(() => makeCharacter(
  54970. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  54971. {
  54972. front: {
  54973. height: math.unit(87, "meters"),
  54974. name: "Front",
  54975. image: {
  54976. source: "./media/characters/serafin/front.svg",
  54977. extra: 1919/1776,
  54978. bottom: 65/1984
  54979. }
  54980. },
  54981. },
  54982. [
  54983. {
  54984. name: "Normal",
  54985. height: math.unit(87, "meters"),
  54986. default: true
  54987. },
  54988. ]
  54989. ))
  54990. characterMakers.push(() => makeCharacter(
  54991. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  54992. {
  54993. front: {
  54994. height: math.unit(6, "feet"),
  54995. weight: math.unit(200, "lb"),
  54996. name: "Front",
  54997. image: {
  54998. source: "./media/characters/poptart/front.svg",
  54999. extra: 615/583,
  55000. bottom: 23/638
  55001. }
  55002. },
  55003. back: {
  55004. height: math.unit(6, "feet"),
  55005. weight: math.unit(200, "lb"),
  55006. name: "Back",
  55007. image: {
  55008. source: "./media/characters/poptart/back.svg",
  55009. extra: 617/584,
  55010. bottom: 22/639
  55011. }
  55012. },
  55013. frontNsfw: {
  55014. height: math.unit(6, "feet"),
  55015. weight: math.unit(200, "lb"),
  55016. name: "Front (NSFW)",
  55017. image: {
  55018. source: "./media/characters/poptart/front-nsfw.svg",
  55019. extra: 615/583,
  55020. bottom: 23/638
  55021. }
  55022. },
  55023. backNsfw: {
  55024. height: math.unit(6, "feet"),
  55025. weight: math.unit(200, "lb"),
  55026. name: "Back (NSFW)",
  55027. image: {
  55028. source: "./media/characters/poptart/back-nsfw.svg",
  55029. extra: 617/584,
  55030. bottom: 22/639
  55031. }
  55032. },
  55033. hand: {
  55034. height: math.unit(1.14, "feet"),
  55035. name: "Hand",
  55036. image: {
  55037. source: "./media/characters/poptart/hand.svg"
  55038. }
  55039. },
  55040. foot: {
  55041. height: math.unit(1.5, "feet"),
  55042. name: "Foot",
  55043. image: {
  55044. source: "./media/characters/poptart/foot.svg"
  55045. }
  55046. },
  55047. },
  55048. [
  55049. {
  55050. name: "Normal",
  55051. height: math.unit(6, "feet"),
  55052. default: true
  55053. },
  55054. {
  55055. name: "Grande",
  55056. height: math.unit(350, "feet")
  55057. },
  55058. {
  55059. name: "Massif",
  55060. height: math.unit(967, "feet")
  55061. },
  55062. ]
  55063. ))
  55064. characterMakers.push(() => makeCharacter(
  55065. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  55066. {
  55067. hyenaSide: {
  55068. height: math.unit(120, "cm"),
  55069. weight: math.unit(120, "lb"),
  55070. name: "Side",
  55071. image: {
  55072. source: "./media/characters/trance/hyena-side.svg",
  55073. extra: 998/904,
  55074. bottom: 76/1074
  55075. }
  55076. },
  55077. },
  55078. [
  55079. {
  55080. name: "Normal",
  55081. height: math.unit(120, "cm"),
  55082. default: true
  55083. },
  55084. {
  55085. name: "Dire",
  55086. height: math.unit(230, "cm")
  55087. },
  55088. {
  55089. name: "Macro",
  55090. height: math.unit(37, "feet")
  55091. },
  55092. ]
  55093. ))
  55094. characterMakers.push(() => makeCharacter(
  55095. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  55096. {
  55097. front: {
  55098. height: math.unit(6 + 3/12, "feet"),
  55099. name: "Front",
  55100. image: {
  55101. source: "./media/characters/michael-berretta/front.svg",
  55102. extra: 515/494,
  55103. bottom: 20/535
  55104. }
  55105. },
  55106. back: {
  55107. height: math.unit(6 + 3/12, "feet"),
  55108. name: "Back",
  55109. image: {
  55110. source: "./media/characters/michael-berretta/back.svg",
  55111. extra: 520/497,
  55112. bottom: 21/541
  55113. }
  55114. },
  55115. frontNsfw: {
  55116. height: math.unit(6 + 3/12, "feet"),
  55117. name: "Front (NSFW)",
  55118. image: {
  55119. source: "./media/characters/michael-berretta/front-nsfw.svg",
  55120. extra: 515/494,
  55121. bottom: 20/535
  55122. }
  55123. },
  55124. dick: {
  55125. height: math.unit(1, "feet"),
  55126. name: "Dick",
  55127. image: {
  55128. source: "./media/characters/michael-berretta/dick.svg"
  55129. }
  55130. },
  55131. },
  55132. [
  55133. {
  55134. name: "Normal",
  55135. height: math.unit(6 + 3/12, "feet"),
  55136. default: true
  55137. },
  55138. {
  55139. name: "Big",
  55140. height: math.unit(12, "feet")
  55141. },
  55142. {
  55143. name: "Macro",
  55144. height: math.unit(187.5, "feet")
  55145. },
  55146. ]
  55147. ))
  55148. characterMakers.push(() => makeCharacter(
  55149. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  55150. {
  55151. front: {
  55152. height: math.unit(9 + 9/12, "feet"),
  55153. weight: math.unit(1244, "lb"),
  55154. name: "Front",
  55155. image: {
  55156. source: "./media/characters/stella-edgecomb/front.svg",
  55157. extra: 1835/1706,
  55158. bottom: 49/1884
  55159. }
  55160. },
  55161. pen: {
  55162. height: math.unit(0.95, "feet"),
  55163. name: "Pen",
  55164. image: {
  55165. source: "./media/characters/stella-edgecomb/pen.svg"
  55166. }
  55167. },
  55168. },
  55169. [
  55170. {
  55171. name: "Cozy Bear",
  55172. height: math.unit(0.5, "inches")
  55173. },
  55174. {
  55175. name: "Normal",
  55176. height: math.unit(9 + 9/12, "feet"),
  55177. default: true
  55178. },
  55179. {
  55180. name: "Giga Bear",
  55181. height: math.unit(1, "mile")
  55182. },
  55183. {
  55184. name: "Great Bear",
  55185. height: math.unit(53, "miles")
  55186. },
  55187. {
  55188. name: "Goddess Bear",
  55189. height: math.unit(40000, "miles")
  55190. },
  55191. {
  55192. name: "Sun Bear",
  55193. height: math.unit(900000, "miles")
  55194. },
  55195. ]
  55196. ))
  55197. characterMakers.push(() => makeCharacter(
  55198. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  55199. {
  55200. anthroFront: {
  55201. height: math.unit(556, "cm"),
  55202. weight: math.unit(2650, "kg"),
  55203. preyCapacity: math.unit(3, "people"),
  55204. name: "Front",
  55205. image: {
  55206. source: "./media/characters/ash´iika/front.svg",
  55207. extra: 710/673,
  55208. bottom: 15/725
  55209. },
  55210. form: "anthro",
  55211. default: true
  55212. },
  55213. anthroSide: {
  55214. height: math.unit(556, "cm"),
  55215. weight: math.unit(2650, "kg"),
  55216. preyCapacity: math.unit(3, "people"),
  55217. name: "Side",
  55218. image: {
  55219. source: "./media/characters/ash´iika/side.svg",
  55220. extra: 696/676,
  55221. bottom: 13/709
  55222. },
  55223. form: "anthro"
  55224. },
  55225. anthroDressed: {
  55226. height: math.unit(556, "cm"),
  55227. weight: math.unit(2650, "kg"),
  55228. preyCapacity: math.unit(3, "people"),
  55229. name: "Dressed",
  55230. image: {
  55231. source: "./media/characters/ash´iika/dressed.svg",
  55232. extra: 710/673,
  55233. bottom: 15/725
  55234. },
  55235. form: "anthro"
  55236. },
  55237. anthroHead: {
  55238. height: math.unit(3.5, "feet"),
  55239. name: "Head",
  55240. image: {
  55241. source: "./media/characters/ash´iika/head.svg",
  55242. extra: 348/291,
  55243. bottom: 45/393
  55244. },
  55245. form: "anthro"
  55246. },
  55247. feralSide: {
  55248. height: math.unit(870, "cm"),
  55249. weight: math.unit(17500, "kg"),
  55250. preyCapacity: math.unit(15, "people"),
  55251. name: "Side",
  55252. image: {
  55253. source: "./media/characters/ash´iika/feral.svg",
  55254. extra: 595/199,
  55255. bottom: 7/602
  55256. },
  55257. form: "feral",
  55258. default: true,
  55259. },
  55260. },
  55261. [
  55262. {
  55263. name: "Normal",
  55264. height: math.unit(556, "cm"),
  55265. default: true,
  55266. form: "anthro"
  55267. },
  55268. {
  55269. name: "Macro",
  55270. height: math.unit(88, "meters"),
  55271. form: "anthro"
  55272. },
  55273. {
  55274. name: "Normal",
  55275. height: math.unit(870, "cm"),
  55276. default: true,
  55277. form: "feral"
  55278. },
  55279. {
  55280. name: "Large",
  55281. height: math.unit(25, "meters"),
  55282. form: "feral"
  55283. },
  55284. ],
  55285. {
  55286. "anthro": {
  55287. name: "Anthro",
  55288. default: true
  55289. },
  55290. "feral": {
  55291. name: "Feral",
  55292. },
  55293. }
  55294. ))
  55295. characterMakers.push(() => makeCharacter(
  55296. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  55297. {
  55298. front: {
  55299. height: math.unit(10, "feet"),
  55300. weight: math.unit(800, "lb"),
  55301. name: "Front",
  55302. image: {
  55303. source: "./media/characters/yen/front.svg",
  55304. extra: 443/411,
  55305. bottom: 6/449
  55306. }
  55307. },
  55308. sleeping: {
  55309. height: math.unit(10, "feet"),
  55310. weight: math.unit(800, "lb"),
  55311. name: "Sleeping",
  55312. image: {
  55313. source: "./media/characters/yen/sleeping.svg",
  55314. extra: 470/422,
  55315. bottom: 0/470
  55316. }
  55317. },
  55318. head: {
  55319. height: math.unit(2.2, "feet"),
  55320. name: "Head",
  55321. image: {
  55322. source: "./media/characters/yen/head.svg"
  55323. }
  55324. },
  55325. headAlt: {
  55326. height: math.unit(2.1, "feet"),
  55327. name: "Head (Alt)",
  55328. image: {
  55329. source: "./media/characters/yen/head-alt.svg"
  55330. }
  55331. },
  55332. },
  55333. [
  55334. {
  55335. name: "Normal",
  55336. height: math.unit(10, "feet"),
  55337. default: true
  55338. },
  55339. ]
  55340. ))
  55341. characterMakers.push(() => makeCharacter(
  55342. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  55343. {
  55344. front: {
  55345. height: math.unit(12, "feet"),
  55346. name: "Front",
  55347. image: {
  55348. source: "./media/characters/citra/front.svg",
  55349. extra: 1950/1710,
  55350. bottom: 47/1997
  55351. }
  55352. },
  55353. },
  55354. [
  55355. {
  55356. name: "Normal",
  55357. height: math.unit(12, "feet"),
  55358. default: true
  55359. },
  55360. ]
  55361. ))
  55362. characterMakers.push(() => makeCharacter(
  55363. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  55364. {
  55365. side: {
  55366. height: math.unit(7 + 10/12, "feet"),
  55367. name: "Side",
  55368. image: {
  55369. source: "./media/characters/sholstim/side.svg",
  55370. extra: 786/682,
  55371. bottom: 40/826
  55372. }
  55373. },
  55374. },
  55375. [
  55376. {
  55377. name: "Normal",
  55378. height: math.unit(7 + 10/12, "feet"),
  55379. default: true
  55380. },
  55381. ]
  55382. ))
  55383. characterMakers.push(() => makeCharacter(
  55384. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  55385. {
  55386. front: {
  55387. height: math.unit(3.10, "meters"),
  55388. name: "Front",
  55389. image: {
  55390. source: "./media/characters/aggyn/front.svg",
  55391. extra: 1188/963,
  55392. bottom: 24/1212
  55393. }
  55394. },
  55395. },
  55396. [
  55397. {
  55398. name: "Normal",
  55399. height: math.unit(3.10, "meters"),
  55400. default: true
  55401. },
  55402. ]
  55403. ))
  55404. characterMakers.push(() => makeCharacter(
  55405. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  55406. {
  55407. front: {
  55408. height: math.unit(7 + 5/12, "feet"),
  55409. weight: math.unit(687, "lb"),
  55410. name: "Front",
  55411. image: {
  55412. source: "./media/characters/alsandair-hergenroether/front.svg",
  55413. extra: 1251/1186,
  55414. bottom: 75/1326
  55415. }
  55416. },
  55417. back: {
  55418. height: math.unit(7 + 5/12, "feet"),
  55419. weight: math.unit(687, "lb"),
  55420. name: "Back",
  55421. image: {
  55422. source: "./media/characters/alsandair-hergenroether/back.svg",
  55423. extra: 1290/1229,
  55424. bottom: 17/1307
  55425. }
  55426. },
  55427. },
  55428. [
  55429. {
  55430. name: "Max Compression",
  55431. height: math.unit(7 + 5/12, "feet"),
  55432. default: true
  55433. },
  55434. {
  55435. name: "\"Normal\"",
  55436. height: math.unit(2, "universes")
  55437. },
  55438. ]
  55439. ))
  55440. characterMakers.push(() => makeCharacter(
  55441. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  55442. {
  55443. front: {
  55444. height: math.unit(4 + 1/12, "feet"),
  55445. weight: math.unit(92, "lb"),
  55446. name: "Front",
  55447. image: {
  55448. source: "./media/characters/ie/front.svg",
  55449. extra: 1585/1352,
  55450. bottom: 91/1676
  55451. }
  55452. },
  55453. },
  55454. [
  55455. {
  55456. name: "Normal",
  55457. height: math.unit(4 + 1/12, "feet"),
  55458. default: true
  55459. },
  55460. ]
  55461. ))
  55462. characterMakers.push(() => makeCharacter(
  55463. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  55464. {
  55465. anthro: {
  55466. height: math.unit(6, "feet"),
  55467. weight: math.unit(150, "lb"),
  55468. name: "Front",
  55469. image: {
  55470. source: "./media/characters/willow/anthro.svg",
  55471. extra: 1073/986,
  55472. bottom: 34/1107
  55473. },
  55474. form: "anthro",
  55475. default: true
  55476. },
  55477. taur: {
  55478. height: math.unit(6, "feet"),
  55479. weight: math.unit(150, "lb"),
  55480. name: "Side",
  55481. image: {
  55482. source: "./media/characters/willow/taur.svg",
  55483. extra: 647/512,
  55484. bottom: 136/783
  55485. },
  55486. form: "taur",
  55487. default: true
  55488. },
  55489. },
  55490. [
  55491. {
  55492. name: "Humanoid",
  55493. height: math.unit(2.7, "meters"),
  55494. form: "anthro"
  55495. },
  55496. {
  55497. name: "Normal",
  55498. height: math.unit(9, "meters"),
  55499. form: "anthro",
  55500. default: true
  55501. },
  55502. {
  55503. name: "Humanoid",
  55504. height: math.unit(2.1, "meters"),
  55505. form: "taur"
  55506. },
  55507. {
  55508. name: "Normal",
  55509. height: math.unit(7, "meters"),
  55510. form: "taur",
  55511. default: true
  55512. },
  55513. ],
  55514. {
  55515. "anthro": {
  55516. name: "Anthro",
  55517. default: true
  55518. },
  55519. "taur": {
  55520. name: "Taur",
  55521. },
  55522. }
  55523. ))
  55524. characterMakers.push(() => makeCharacter(
  55525. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  55526. {
  55527. front: {
  55528. height: math.unit(2 + 5/12, "feet"),
  55529. name: "Front",
  55530. image: {
  55531. source: "./media/characters/kyan/front.svg",
  55532. extra: 460/334,
  55533. bottom: 23/483
  55534. },
  55535. extraAttributes: {
  55536. "toeLength": {
  55537. name: "Toe Length",
  55538. power: 1,
  55539. type: "length",
  55540. base: math.unit(7, "cm")
  55541. },
  55542. "toeclawLength": {
  55543. name: "Toeclaw Length",
  55544. power: 1,
  55545. type: "length",
  55546. base: math.unit(4.7, "cm")
  55547. },
  55548. "earHeight": {
  55549. name: "Ear Height",
  55550. power: 1,
  55551. type: "length",
  55552. base: math.unit(14.1, "cm")
  55553. },
  55554. }
  55555. },
  55556. paws: {
  55557. height: math.unit(0.45, "feet"),
  55558. name: "Paws",
  55559. image: {
  55560. source: "./media/characters/kyan/paws.svg",
  55561. extra: 581/581,
  55562. bottom: 114/695
  55563. }
  55564. },
  55565. },
  55566. [
  55567. {
  55568. name: "Normal",
  55569. height: math.unit(2 + 5/12, "feet"),
  55570. default: true
  55571. },
  55572. ]
  55573. ))
  55574. characterMakers.push(() => makeCharacter(
  55575. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  55576. {
  55577. front: {
  55578. height: math.unit(2 + 2/3, "feet"),
  55579. name: "Front",
  55580. image: {
  55581. source: "./media/characters/xazzon/front.svg",
  55582. extra: 1109/984,
  55583. bottom: 42/1151
  55584. }
  55585. },
  55586. back: {
  55587. height: math.unit(2 + 2/3, "feet"),
  55588. name: "Back",
  55589. image: {
  55590. source: "./media/characters/xazzon/back.svg",
  55591. extra: 1095/971,
  55592. bottom: 23/1118
  55593. }
  55594. },
  55595. },
  55596. [
  55597. {
  55598. name: "Normal",
  55599. height: math.unit(2 + 2/3, "feet"),
  55600. default: true
  55601. },
  55602. ]
  55603. ))
  55604. characterMakers.push(() => makeCharacter(
  55605. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  55606. {
  55607. front: {
  55608. height: math.unit(8, "feet"),
  55609. weight: math.unit(300, "lb"),
  55610. name: "Front",
  55611. image: {
  55612. source: "./media/characters/khyla-shadowsong/front.svg",
  55613. extra: 861/798,
  55614. bottom: 32/893
  55615. }
  55616. },
  55617. side: {
  55618. height: math.unit(8, "feet"),
  55619. weight: math.unit(300, "lb"),
  55620. name: "Side",
  55621. image: {
  55622. source: "./media/characters/khyla-shadowsong/side.svg",
  55623. extra: 790/750,
  55624. bottom: 87/877
  55625. }
  55626. },
  55627. back: {
  55628. height: math.unit(8, "feet"),
  55629. weight: math.unit(300, "lb"),
  55630. name: "Back",
  55631. image: {
  55632. source: "./media/characters/khyla-shadowsong/back.svg",
  55633. extra: 855/808,
  55634. bottom: 14/869
  55635. }
  55636. },
  55637. head: {
  55638. height: math.unit(2.7, "feet"),
  55639. name: "Head",
  55640. image: {
  55641. source: "./media/characters/khyla-shadowsong/head.svg"
  55642. }
  55643. },
  55644. },
  55645. [
  55646. {
  55647. name: "Micro",
  55648. height: math.unit(6, "inches")
  55649. },
  55650. {
  55651. name: "Normal",
  55652. height: math.unit(8, "feet"),
  55653. default: true
  55654. },
  55655. ]
  55656. ))
  55657. characterMakers.push(() => makeCharacter(
  55658. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  55659. {
  55660. hyperFront: {
  55661. height: math.unit(9 + 4/12, "feet"),
  55662. weight: math.unit(2000, "lb"),
  55663. name: "Front",
  55664. image: {
  55665. source: "./media/characters/tiden/hyper-front.svg",
  55666. extra: 400/382,
  55667. bottom: 6/406
  55668. },
  55669. form: "hyper",
  55670. },
  55671. regularFront: {
  55672. height: math.unit(7 + 10/12, "feet"),
  55673. weight: math.unit(470, "lb"),
  55674. name: "Front",
  55675. image: {
  55676. source: "./media/characters/tiden/regular-front.svg",
  55677. extra: 468/442,
  55678. bottom: 6/474
  55679. },
  55680. form: "regular",
  55681. },
  55682. },
  55683. [
  55684. {
  55685. name: "Normal",
  55686. height: math.unit(9 + 4/12, "feet"),
  55687. default: true,
  55688. form: "hyper"
  55689. },
  55690. {
  55691. name: "Normal",
  55692. height: math.unit(7 + 10/12, "feet"),
  55693. default: true,
  55694. form: "regular"
  55695. },
  55696. ],
  55697. {
  55698. "hyper": {
  55699. name: "Hyper",
  55700. default: true
  55701. },
  55702. "regular": {
  55703. name: "Regular",
  55704. },
  55705. }
  55706. ))
  55707. characterMakers.push(() => makeCharacter(
  55708. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  55709. {
  55710. side: {
  55711. height: math.unit(6, "feet"),
  55712. weight: math.unit(150, "lb"),
  55713. name: "Side",
  55714. image: {
  55715. source: "./media/characters/jason-crowe/side.svg",
  55716. extra: 1771/766,
  55717. bottom: 219/1990
  55718. }
  55719. },
  55720. },
  55721. [
  55722. {
  55723. name: "Pocket Gryphon",
  55724. height: math.unit(6, "cm")
  55725. },
  55726. {
  55727. name: "Raven",
  55728. height: math.unit(60, "cm")
  55729. },
  55730. {
  55731. name: "Normal",
  55732. height: math.unit(1, "meter"),
  55733. default: true
  55734. },
  55735. ]
  55736. ))
  55737. characterMakers.push(() => makeCharacter(
  55738. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  55739. {
  55740. front: {
  55741. height: math.unit(9 + 6/12, "feet"),
  55742. weight: math.unit(1100, "lb"),
  55743. name: "Front",
  55744. image: {
  55745. source: "./media/characters/django/front.svg",
  55746. extra: 1231/1136,
  55747. bottom: 34/1265
  55748. }
  55749. },
  55750. side: {
  55751. height: math.unit(9 + 6/12, "feet"),
  55752. weight: math.unit(1100, "lb"),
  55753. name: "Side",
  55754. image: {
  55755. source: "./media/characters/django/side.svg",
  55756. extra: 1267/1174,
  55757. bottom: 9/1276
  55758. }
  55759. },
  55760. },
  55761. [
  55762. {
  55763. name: "Normal",
  55764. height: math.unit(9 + 6/12, "feet"),
  55765. default: true
  55766. },
  55767. {
  55768. name: "Macro 1",
  55769. height: math.unit(50, "feet")
  55770. },
  55771. {
  55772. name: "Macro 2",
  55773. height: math.unit(500, "feet")
  55774. },
  55775. {
  55776. name: "Mega Macro",
  55777. height: math.unit(5300, "feet")
  55778. },
  55779. ]
  55780. ))
  55781. characterMakers.push(() => makeCharacter(
  55782. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  55783. {
  55784. frontSfw: {
  55785. height: math.unit(120, "cm"),
  55786. weight: math.unit(15, "kg"),
  55787. name: "Front (SFW)",
  55788. image: {
  55789. source: "./media/characters/eri/front-sfw.svg",
  55790. extra: 1014/939,
  55791. bottom: 37/1051
  55792. },
  55793. form: "moth",
  55794. },
  55795. frontNsfw: {
  55796. height: math.unit(120, "cm"),
  55797. weight: math.unit(15, "kg"),
  55798. name: "Front (NSFW)",
  55799. image: {
  55800. source: "./media/characters/eri/front-nsfw.svg",
  55801. extra: 1014/939,
  55802. bottom: 37/1051
  55803. },
  55804. form: "moth",
  55805. default: true
  55806. },
  55807. egg: {
  55808. height: math.unit(10, "cm"),
  55809. name: "Egg",
  55810. image: {
  55811. source: "./media/characters/eri/egg.svg"
  55812. },
  55813. form: "egg",
  55814. default: true
  55815. },
  55816. },
  55817. [
  55818. {
  55819. name: "Normal",
  55820. height: math.unit(120, "cm"),
  55821. default: true,
  55822. form: "moth"
  55823. },
  55824. {
  55825. name: "Normal",
  55826. height: math.unit(10, "cm"),
  55827. default: true,
  55828. form: "egg"
  55829. },
  55830. ],
  55831. {
  55832. "moth": {
  55833. name: "Moth",
  55834. default: true
  55835. },
  55836. "egg": {
  55837. name: "Egg",
  55838. },
  55839. }
  55840. ))
  55841. characterMakers.push(() => makeCharacter(
  55842. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  55843. {
  55844. front: {
  55845. height: math.unit(200, "feet"),
  55846. name: "Front",
  55847. image: {
  55848. source: "./media/characters/bishop-dowser/front.svg",
  55849. extra: 933/868,
  55850. bottom: 106/1039
  55851. }
  55852. },
  55853. },
  55854. [
  55855. {
  55856. name: "Giant",
  55857. height: math.unit(200, "feet"),
  55858. default: true
  55859. },
  55860. ]
  55861. ))
  55862. characterMakers.push(() => makeCharacter(
  55863. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  55864. {
  55865. front: {
  55866. height: math.unit(2, "meters"),
  55867. preyCapacity: math.unit(3, "people"),
  55868. name: "Front",
  55869. image: {
  55870. source: "./media/characters/fryra/front.svg",
  55871. extra: 1025/948,
  55872. bottom: 30/1055
  55873. },
  55874. extraAttributes: {
  55875. "breastVolume": {
  55876. name: "Breast Volume",
  55877. power: 3,
  55878. type: "volume",
  55879. base: math.unit(8, "liters")
  55880. },
  55881. }
  55882. },
  55883. back: {
  55884. height: math.unit(2, "meters"),
  55885. preyCapacity: math.unit(3, "people"),
  55886. name: "Back",
  55887. image: {
  55888. source: "./media/characters/fryra/back.svg",
  55889. extra: 993/938,
  55890. bottom: 38/1031
  55891. },
  55892. extraAttributes: {
  55893. "breastVolume": {
  55894. name: "Breast Volume",
  55895. power: 3,
  55896. type: "volume",
  55897. base: math.unit(8, "liters")
  55898. },
  55899. }
  55900. },
  55901. head: {
  55902. height: math.unit(1.33, "feet"),
  55903. name: "Head",
  55904. image: {
  55905. source: "./media/characters/fryra/head.svg"
  55906. }
  55907. },
  55908. maw: {
  55909. height: math.unit(0.56, "feet"),
  55910. name: "Maw",
  55911. image: {
  55912. source: "./media/characters/fryra/maw.svg"
  55913. }
  55914. },
  55915. },
  55916. [
  55917. {
  55918. name: "Micro",
  55919. height: math.unit(5, "cm")
  55920. },
  55921. {
  55922. name: "Normal",
  55923. height: math.unit(2, "meters"),
  55924. default: true
  55925. },
  55926. {
  55927. name: "Small Macro",
  55928. height: math.unit(8, "meters")
  55929. },
  55930. {
  55931. name: "Macro",
  55932. height: math.unit(50, "meters")
  55933. },
  55934. {
  55935. name: "Megamacro",
  55936. height: math.unit(1, "km")
  55937. },
  55938. {
  55939. name: "Planetary",
  55940. height: math.unit(300000, "km")
  55941. },
  55942. {
  55943. name: "Universal",
  55944. height: math.unit(250, "lightyears")
  55945. },
  55946. {
  55947. name: "Fabric of Reality",
  55948. height: math.unit(1000, "multiverses")
  55949. },
  55950. ]
  55951. ))
  55952. characterMakers.push(() => makeCharacter(
  55953. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  55954. {
  55955. frontDressed: {
  55956. height: math.unit(6 + 2/12, "feet"),
  55957. name: "Front (Dressed)",
  55958. image: {
  55959. source: "./media/characters/fiera/front-dressed.svg",
  55960. extra: 1883/1793,
  55961. bottom: 70/1953
  55962. }
  55963. },
  55964. backDressed: {
  55965. height: math.unit(6 + 2/12, "feet"),
  55966. name: "Back (Dressed)",
  55967. image: {
  55968. source: "./media/characters/fiera/back-dressed.svg",
  55969. extra: 1847/1780,
  55970. bottom: 70/1917
  55971. }
  55972. },
  55973. frontNude: {
  55974. height: math.unit(6 + 2/12, "feet"),
  55975. name: "Front (Nude)",
  55976. image: {
  55977. source: "./media/characters/fiera/front-nude.svg",
  55978. extra: 1875/1785,
  55979. bottom: 66/1941
  55980. }
  55981. },
  55982. backNude: {
  55983. height: math.unit(6 + 2/12, "feet"),
  55984. name: "Back (Nude)",
  55985. image: {
  55986. source: "./media/characters/fiera/back-nude.svg",
  55987. extra: 1855/1788,
  55988. bottom: 44/1899
  55989. }
  55990. },
  55991. maw: {
  55992. height: math.unit(1.3, "feet"),
  55993. name: "Maw",
  55994. image: {
  55995. source: "./media/characters/fiera/maw.svg"
  55996. }
  55997. },
  55998. paw: {
  55999. height: math.unit(1, "feet"),
  56000. name: "Paw",
  56001. image: {
  56002. source: "./media/characters/fiera/paw.svg"
  56003. }
  56004. },
  56005. shoe: {
  56006. height: math.unit(1.05, "feet"),
  56007. name: "Shoe",
  56008. image: {
  56009. source: "./media/characters/fiera/shoe.svg"
  56010. }
  56011. },
  56012. },
  56013. [
  56014. {
  56015. name: "Normal",
  56016. height: math.unit(6 + 2/12, "feet"),
  56017. default: true
  56018. },
  56019. {
  56020. name: "Size Difference",
  56021. height: math.unit(13, "feet")
  56022. },
  56023. {
  56024. name: "Macro",
  56025. height: math.unit(60, "feet")
  56026. },
  56027. {
  56028. name: "Mega Macro",
  56029. height: math.unit(200, "feet")
  56030. },
  56031. ]
  56032. ))
  56033. characterMakers.push(() => makeCharacter(
  56034. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  56035. {
  56036. back: {
  56037. height: math.unit(6, "feet"),
  56038. name: "Back",
  56039. image: {
  56040. source: "./media/characters/flare/back.svg",
  56041. extra: 1883/1765,
  56042. bottom: 32/1915
  56043. }
  56044. },
  56045. },
  56046. [
  56047. {
  56048. name: "Normal",
  56049. height: math.unit(6 + 2/12, "feet"),
  56050. default: true
  56051. },
  56052. {
  56053. name: "Size Difference",
  56054. height: math.unit(13, "feet")
  56055. },
  56056. {
  56057. name: "Macro",
  56058. height: math.unit(60, "feet")
  56059. },
  56060. {
  56061. name: "Macro 2",
  56062. height: math.unit(100, "feet")
  56063. },
  56064. {
  56065. name: "Mega Macro",
  56066. height: math.unit(200, "feet")
  56067. },
  56068. ]
  56069. ))
  56070. characterMakers.push(() => makeCharacter(
  56071. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  56072. {
  56073. front: {
  56074. height: math.unit(2.2, "m"),
  56075. weight: math.unit(300, "kg"),
  56076. name: "Front",
  56077. image: {
  56078. source: "./media/characters/hanna/front.svg",
  56079. extra: 1696/1502,
  56080. bottom: 206/1902
  56081. }
  56082. },
  56083. },
  56084. [
  56085. {
  56086. name: "Humanoid",
  56087. height: math.unit(2.2, "meters")
  56088. },
  56089. {
  56090. name: "Normal",
  56091. height: math.unit(4.8, "meters"),
  56092. default: true
  56093. },
  56094. ]
  56095. ))
  56096. characterMakers.push(() => makeCharacter(
  56097. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  56098. {
  56099. front: {
  56100. height: math.unit(2.8, "meters"),
  56101. name: "Front",
  56102. image: {
  56103. source: "./media/characters/argo/front.svg",
  56104. extra: 731/518,
  56105. bottom: 84/815
  56106. }
  56107. },
  56108. },
  56109. [
  56110. {
  56111. name: "Normal",
  56112. height: math.unit(3, "meters"),
  56113. default: true
  56114. },
  56115. ]
  56116. ))
  56117. characterMakers.push(() => makeCharacter(
  56118. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  56119. {
  56120. side: {
  56121. height: math.unit(3.8, "meters"),
  56122. name: "Side",
  56123. image: {
  56124. source: "./media/characters/sybil/side.svg",
  56125. extra: 382/361,
  56126. bottom: 25/407
  56127. }
  56128. },
  56129. },
  56130. [
  56131. {
  56132. name: "Normal",
  56133. height: math.unit(3.8, "meters"),
  56134. default: true
  56135. },
  56136. ]
  56137. ))
  56138. characterMakers.push(() => makeCharacter(
  56139. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  56140. {
  56141. side: {
  56142. height: math.unit(6, "meters"),
  56143. name: "Side",
  56144. image: {
  56145. source: "./media/characters/plum/side.svg",
  56146. extra: 858/755,
  56147. bottom: 45/903
  56148. },
  56149. form: "taur",
  56150. default: true
  56151. },
  56152. back: {
  56153. height: math.unit(6.3, "meters"),
  56154. name: "Back",
  56155. image: {
  56156. source: "./media/characters/plum/back.svg",
  56157. extra: 887/813,
  56158. bottom: 32/919
  56159. },
  56160. form: "taur",
  56161. },
  56162. feral: {
  56163. height: math.unit(5.5, "meter"),
  56164. name: "Front",
  56165. image: {
  56166. source: "./media/characters/plum/feral.svg",
  56167. extra: 568/403,
  56168. bottom: 51/619
  56169. },
  56170. form: "feral",
  56171. default: true
  56172. },
  56173. head: {
  56174. height: math.unit(1.46, "meter"),
  56175. name: "Head",
  56176. image: {
  56177. source: "./media/characters/plum/head.svg"
  56178. },
  56179. form: "taur"
  56180. },
  56181. tailTop: {
  56182. height: math.unit(5.6, "meter"),
  56183. name: "Tail (Top)",
  56184. image: {
  56185. source: "./media/characters/plum/tail-top.svg"
  56186. },
  56187. form: "taur",
  56188. },
  56189. tailBottom: {
  56190. height: math.unit(5.6, "meter"),
  56191. name: "Tail (Bottom)",
  56192. image: {
  56193. source: "./media/characters/plum/tail-bottom.svg"
  56194. },
  56195. form: "taur",
  56196. },
  56197. feralHead: {
  56198. height: math.unit(2.56549521, "meter"),
  56199. name: "Head",
  56200. image: {
  56201. source: "./media/characters/plum/head.svg"
  56202. },
  56203. form: "feral"
  56204. },
  56205. feralTailTop: {
  56206. height: math.unit(5.44728435, "meter"),
  56207. name: "Tail (Top)",
  56208. image: {
  56209. source: "./media/characters/plum/tail-top.svg"
  56210. },
  56211. form: "feral",
  56212. },
  56213. feralTailBottom: {
  56214. height: math.unit(5.44728435, "meter"),
  56215. name: "Tail (Bottom)",
  56216. image: {
  56217. source: "./media/characters/plum/tail-bottom.svg"
  56218. },
  56219. form: "feral",
  56220. },
  56221. },
  56222. [
  56223. {
  56224. name: "Normal",
  56225. height: math.unit(6, "meters"),
  56226. default: true,
  56227. form: "taur"
  56228. },
  56229. {
  56230. name: "Normal",
  56231. height: math.unit(5.5, "meters"),
  56232. default: true,
  56233. form: "feral"
  56234. },
  56235. ],
  56236. {
  56237. "taur": {
  56238. name: "Taur",
  56239. default: true
  56240. },
  56241. "feral": {
  56242. name: "Feral",
  56243. },
  56244. }
  56245. ))
  56246. characterMakers.push(() => makeCharacter(
  56247. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  56248. {
  56249. front: {
  56250. height: math.unit(6, "feet"),
  56251. weight: math.unit(115, "lb"),
  56252. name: "Front",
  56253. image: {
  56254. source: "./media/characters/celeste-kitsune/front.svg",
  56255. extra: 393/366,
  56256. bottom: 7/400
  56257. }
  56258. },
  56259. side: {
  56260. height: math.unit(6, "feet"),
  56261. weight: math.unit(115, "lb"),
  56262. name: "Side",
  56263. image: {
  56264. source: "./media/characters/celeste-kitsune/side.svg",
  56265. extra: 818/765,
  56266. bottom: 40/858
  56267. }
  56268. },
  56269. },
  56270. [
  56271. {
  56272. name: "Megamacro",
  56273. height: math.unit(1500, "miles"),
  56274. default: true
  56275. },
  56276. ]
  56277. ))
  56278. characterMakers.push(() => makeCharacter(
  56279. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  56280. {
  56281. front: {
  56282. height: math.unit(8, "meters"),
  56283. name: "Front",
  56284. image: {
  56285. source: "./media/characters/io/front.svg",
  56286. extra: 865/722,
  56287. bottom: 58/923
  56288. }
  56289. },
  56290. back: {
  56291. height: math.unit(8, "meters"),
  56292. name: "Back",
  56293. image: {
  56294. source: "./media/characters/io/back.svg",
  56295. extra: 920/776,
  56296. bottom: 42/962
  56297. }
  56298. },
  56299. head: {
  56300. height: math.unit(5.09, "meters"),
  56301. name: "Head",
  56302. image: {
  56303. source: "./media/characters/io/head.svg"
  56304. }
  56305. },
  56306. hand: {
  56307. height: math.unit(1.6, "meters"),
  56308. name: "Hand",
  56309. image: {
  56310. source: "./media/characters/io/hand.svg"
  56311. }
  56312. },
  56313. foot: {
  56314. height: math.unit(2.4, "meters"),
  56315. name: "Foot",
  56316. image: {
  56317. source: "./media/characters/io/foot.svg"
  56318. }
  56319. },
  56320. },
  56321. [
  56322. {
  56323. name: "Normal",
  56324. height: math.unit(8, "meters"),
  56325. default: true
  56326. },
  56327. ]
  56328. ))
  56329. characterMakers.push(() => makeCharacter(
  56330. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  56331. {
  56332. side: {
  56333. height: math.unit(6 + 3/12, "feet"),
  56334. weight: math.unit(225, "lb"),
  56335. name: "Side",
  56336. image: {
  56337. source: "./media/characters/silas/side.svg",
  56338. extra: 703/653,
  56339. bottom: 23/726
  56340. },
  56341. extraAttributes: {
  56342. "pawLength": {
  56343. name: "Paw Length",
  56344. power: 1,
  56345. type: "length",
  56346. base: math.unit(12, "inches")
  56347. },
  56348. "pawWidth": {
  56349. name: "Paw Width",
  56350. power: 1,
  56351. type: "length",
  56352. base: math.unit(4.5, "inches")
  56353. },
  56354. "pawArea": {
  56355. name: "Paw Area",
  56356. power: 2,
  56357. type: "area",
  56358. base: math.unit(12 * 4.5, "inches^2")
  56359. },
  56360. }
  56361. },
  56362. },
  56363. [
  56364. {
  56365. name: "Normal",
  56366. height: math.unit(6 + 3/12, "feet"),
  56367. default: true
  56368. },
  56369. ]
  56370. ))
  56371. characterMakers.push(() => makeCharacter(
  56372. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  56373. {
  56374. back: {
  56375. height: math.unit(1.6, "meters"),
  56376. weight: math.unit(150, "lb"),
  56377. name: "Back",
  56378. image: {
  56379. source: "./media/characters/zari/back.svg",
  56380. extra: 424/411,
  56381. bottom: 32/456
  56382. },
  56383. extraAttributes: {
  56384. "bladderCapacity": {
  56385. name: "Bladder Size",
  56386. power: 3,
  56387. type: "volume",
  56388. base: math.unit(500, "mL")
  56389. },
  56390. "bladderFlow": {
  56391. name: "Flow Rate",
  56392. power: 3,
  56393. type: "volume",
  56394. base: math.unit(25, "mL")
  56395. },
  56396. }
  56397. },
  56398. },
  56399. [
  56400. {
  56401. name: "Normal",
  56402. height: math.unit(1.6, "meters"),
  56403. default: true
  56404. },
  56405. ]
  56406. ))
  56407. characterMakers.push(() => makeCharacter(
  56408. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  56409. {
  56410. front: {
  56411. height: math.unit(25, "feet"),
  56412. weight: math.unit(5, "tons"),
  56413. name: "Front",
  56414. image: {
  56415. source: "./media/characters/charlie-human/front.svg",
  56416. extra: 1870/1740,
  56417. bottom: 102/1972
  56418. },
  56419. extraAttributes: {
  56420. "dickLength": {
  56421. name: "Dick Length",
  56422. power: 1,
  56423. type: "length",
  56424. base: math.unit(9, "feet")
  56425. },
  56426. }
  56427. },
  56428. back: {
  56429. height: math.unit(25, "feet"),
  56430. weight: math.unit(5, "tons"),
  56431. name: "Back",
  56432. image: {
  56433. source: "./media/characters/charlie-human/back.svg",
  56434. extra: 1858/1733,
  56435. bottom: 105/1963
  56436. },
  56437. extraAttributes: {
  56438. "dickLength": {
  56439. name: "Dick Length",
  56440. power: 1,
  56441. type: "length",
  56442. base: math.unit(9, "feet")
  56443. },
  56444. }
  56445. },
  56446. },
  56447. [
  56448. {
  56449. name: "\"Normal\"",
  56450. height: math.unit(6 + 4/12, "feet")
  56451. },
  56452. {
  56453. name: "Big",
  56454. height: math.unit(25, "feet"),
  56455. default: true
  56456. },
  56457. ]
  56458. ))
  56459. characterMakers.push(() => makeCharacter(
  56460. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  56461. {
  56462. front: {
  56463. height: math.unit(6 + 4/12, "feet"),
  56464. weight: math.unit(320, "lb"),
  56465. name: "Front",
  56466. image: {
  56467. source: "./media/characters/ookitsu/front.svg",
  56468. extra: 1160/976,
  56469. bottom: 38/1198
  56470. }
  56471. },
  56472. frontNsfw: {
  56473. height: math.unit(6 + 4/12, "feet"),
  56474. weight: math.unit(320, "lb"),
  56475. name: "Front (NSFW)",
  56476. image: {
  56477. source: "./media/characters/ookitsu/front-nsfw.svg",
  56478. extra: 1160/976,
  56479. bottom: 38/1198
  56480. }
  56481. },
  56482. back: {
  56483. height: math.unit(6 + 4/12, "feet"),
  56484. weight: math.unit(320, "lb"),
  56485. name: "Back",
  56486. image: {
  56487. source: "./media/characters/ookitsu/back.svg",
  56488. extra: 1030/975,
  56489. bottom: 70/1100
  56490. }
  56491. },
  56492. head: {
  56493. height: math.unit(1.79, "feet"),
  56494. name: "Head",
  56495. image: {
  56496. source: "./media/characters/ookitsu/head.svg"
  56497. }
  56498. },
  56499. hand: {
  56500. height: math.unit(0.92, "feet"),
  56501. name: "Hand",
  56502. image: {
  56503. source: "./media/characters/ookitsu/hand.svg"
  56504. }
  56505. },
  56506. tails: {
  56507. height: math.unit(3.3, "feet"),
  56508. name: "Tails",
  56509. image: {
  56510. source: "./media/characters/ookitsu/tails.svg"
  56511. }
  56512. },
  56513. dick: {
  56514. height: math.unit(1.10833, "feet"),
  56515. name: "Dick",
  56516. image: {
  56517. source: "./media/characters/ookitsu/dick.svg"
  56518. }
  56519. },
  56520. },
  56521. [
  56522. {
  56523. name: "Normal",
  56524. height: math.unit(6 + 4/12, "feet"),
  56525. default: true
  56526. },
  56527. {
  56528. name: "Macro",
  56529. height: math.unit(30, "feet")
  56530. },
  56531. ]
  56532. ))
  56533. characterMakers.push(() => makeCharacter(
  56534. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  56535. {
  56536. anthroFront: {
  56537. height: math.unit(6, "feet"),
  56538. weight: math.unit(250, "lb"),
  56539. name: "Front",
  56540. image: {
  56541. source: "./media/characters/jhusky/anthro-front.svg",
  56542. extra: 474/439,
  56543. bottom: 7/481
  56544. },
  56545. form: "anthro",
  56546. default: true
  56547. },
  56548. taurSideSfw: {
  56549. height: math.unit(6 + 4/12, "feet"),
  56550. weight: math.unit(500, "lb"),
  56551. name: "Side (SFW)",
  56552. image: {
  56553. source: "./media/characters/jhusky/taur-side-sfw.svg",
  56554. extra: 1741/1629,
  56555. bottom: 196/1937
  56556. },
  56557. form: "taur",
  56558. default: true
  56559. },
  56560. taurSideNsfw: {
  56561. height: math.unit(6 + 4/12, "feet"),
  56562. weight: math.unit(500, "lb"),
  56563. name: "Taur (NSFW)",
  56564. image: {
  56565. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  56566. extra: 1741/1629,
  56567. bottom: 196/1937
  56568. },
  56569. form: "taur",
  56570. },
  56571. },
  56572. [
  56573. {
  56574. name: "Huge",
  56575. height: math.unit(500, "feet"),
  56576. form: "anthro"
  56577. },
  56578. {
  56579. name: "Macro",
  56580. height: math.unit(1000, "feet"),
  56581. default: true,
  56582. form: "anthro"
  56583. },
  56584. {
  56585. name: "Megamacro",
  56586. height: math.unit(10000, "feet"),
  56587. form: "anthro"
  56588. },
  56589. {
  56590. name: "Huge",
  56591. height: math.unit(528, "feet"),
  56592. form: "taur"
  56593. },
  56594. {
  56595. name: "Macro",
  56596. height: math.unit(1056, "feet"),
  56597. default: true,
  56598. form: "taur"
  56599. },
  56600. {
  56601. name: "Megamacro",
  56602. height: math.unit(10556, "feet"),
  56603. form: "taur"
  56604. },
  56605. ],
  56606. {
  56607. "anthro": {
  56608. name: "Anthro",
  56609. default: true
  56610. },
  56611. "taur": {
  56612. name: "Taur",
  56613. },
  56614. }
  56615. ))
  56616. characterMakers.push(() => makeCharacter(
  56617. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  56618. {
  56619. front: {
  56620. height: math.unit(8, "feet"),
  56621. weight: math.unit(500, "lb"),
  56622. name: "Front",
  56623. image: {
  56624. source: "./media/characters/armail/front.svg",
  56625. extra: 1753/1669,
  56626. bottom: 155/1908
  56627. }
  56628. },
  56629. back: {
  56630. height: math.unit(8, "feet"),
  56631. weight: math.unit(500, "lb"),
  56632. name: "Back",
  56633. image: {
  56634. source: "./media/characters/armail/back.svg",
  56635. extra: 1872/1803,
  56636. bottom: 63/1935
  56637. }
  56638. },
  56639. },
  56640. [
  56641. {
  56642. name: "Micro",
  56643. height: math.unit(0.25, "feet")
  56644. },
  56645. {
  56646. name: "Normal",
  56647. height: math.unit(8, "feet"),
  56648. default: true
  56649. },
  56650. {
  56651. name: "Mini-macro",
  56652. height: math.unit(30, "feet")
  56653. },
  56654. {
  56655. name: "Macro",
  56656. height: math.unit(400, "feet")
  56657. },
  56658. {
  56659. name: "Mega-macro",
  56660. height: math.unit(6000, "feet")
  56661. },
  56662. ]
  56663. ))
  56664. characterMakers.push(() => makeCharacter(
  56665. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  56666. {
  56667. front: {
  56668. height: math.unit(6 + 7/12, "feet"),
  56669. weight: math.unit(210, "lb"),
  56670. name: "Front",
  56671. image: {
  56672. source: "./media/characters/wilfred-t-buxton/front.svg",
  56673. extra: 1068/882,
  56674. bottom: 28/1096
  56675. }
  56676. },
  56677. },
  56678. [
  56679. {
  56680. name: "Normal",
  56681. height: math.unit(6 + 7/12, "feet"),
  56682. default: true
  56683. },
  56684. ]
  56685. ))
  56686. characterMakers.push(() => makeCharacter(
  56687. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  56688. {
  56689. front: {
  56690. height: math.unit(5 + 2/12, "feet"),
  56691. weight: math.unit(120, "lb"),
  56692. name: "Front",
  56693. image: {
  56694. source: "./media/characters/leighton-marrow/front.svg",
  56695. extra: 441/409,
  56696. bottom: 37/478
  56697. }
  56698. },
  56699. },
  56700. [
  56701. {
  56702. name: "Normal",
  56703. height: math.unit(5 + 2/12, "feet"),
  56704. default: true
  56705. },
  56706. ]
  56707. ))
  56708. characterMakers.push(() => makeCharacter(
  56709. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  56710. {
  56711. front: {
  56712. height: math.unit(4, "meters"),
  56713. weight: math.unit(1200, "kg"),
  56714. name: "Front",
  56715. image: {
  56716. source: "./media/characters/licos/front.svg",
  56717. extra: 1727/1604,
  56718. bottom: 101/1828
  56719. },
  56720. form: "anthro",
  56721. default: true
  56722. },
  56723. taur_side: {
  56724. height: math.unit(20, "meters"),
  56725. weight: math.unit(1100000, "kg"),
  56726. name: "Side",
  56727. image: {
  56728. source: "./media/characters/licos/taur.svg",
  56729. extra: 1158/1091,
  56730. bottom: 80/1238
  56731. },
  56732. form: "taur",
  56733. default: true
  56734. },
  56735. },
  56736. [
  56737. {
  56738. name: "Normal",
  56739. height: math.unit(4, "meters"),
  56740. default: true,
  56741. form: "anthro"
  56742. },
  56743. {
  56744. name: "Normal",
  56745. height: math.unit(20, "meters"),
  56746. default: true,
  56747. form: "taur"
  56748. },
  56749. ],
  56750. {
  56751. "anthro": {
  56752. name: "Anthro",
  56753. default: true
  56754. },
  56755. "taur": {
  56756. name: "Taur",
  56757. },
  56758. }
  56759. ))
  56760. characterMakers.push(() => makeCharacter(
  56761. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  56762. {
  56763. front: {
  56764. height: math.unit(10 + 3/12, "feet"),
  56765. name: "Front",
  56766. image: {
  56767. source: "./media/characters/theo-monkey/front.svg",
  56768. extra: 1735/1658,
  56769. bottom: 73/1808
  56770. }
  56771. },
  56772. back: {
  56773. height: math.unit(10 + 3/12, "feet"),
  56774. name: "Back",
  56775. image: {
  56776. source: "./media/characters/theo-monkey/back.svg",
  56777. extra: 1742/1664,
  56778. bottom: 33/1775
  56779. }
  56780. },
  56781. head: {
  56782. height: math.unit(2.29, "feet"),
  56783. name: "Head",
  56784. image: {
  56785. source: "./media/characters/theo-monkey/head.svg"
  56786. }
  56787. },
  56788. handPalm: {
  56789. height: math.unit(1.73, "feet"),
  56790. name: "Hand (Palm)",
  56791. image: {
  56792. source: "./media/characters/theo-monkey/hand-palm.svg"
  56793. }
  56794. },
  56795. handBack: {
  56796. height: math.unit(1.63, "feet"),
  56797. name: "Hand (Back)",
  56798. image: {
  56799. source: "./media/characters/theo-monkey/hand-back.svg"
  56800. }
  56801. },
  56802. footSole: {
  56803. height: math.unit(2.15, "feet"),
  56804. name: "Foot (Sole)",
  56805. image: {
  56806. source: "./media/characters/theo-monkey/foot-sole.svg"
  56807. }
  56808. },
  56809. footSide: {
  56810. height: math.unit(1.6, "feet"),
  56811. name: "Foot (Side)",
  56812. image: {
  56813. source: "./media/characters/theo-monkey/foot-side.svg"
  56814. }
  56815. },
  56816. },
  56817. [
  56818. {
  56819. name: "Normal",
  56820. height: math.unit(10 + 3/12, "feet"),
  56821. default: true
  56822. },
  56823. ]
  56824. ))
  56825. characterMakers.push(() => makeCharacter(
  56826. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  56827. {
  56828. front: {
  56829. height: math.unit(11, "feet"),
  56830. weight: math.unit(3000, "lb"),
  56831. preyCapacity: math.unit(10, "people"),
  56832. name: "Front",
  56833. image: {
  56834. source: "./media/characters/brook/front.svg",
  56835. extra: 909/835,
  56836. bottom: 108/1017
  56837. }
  56838. },
  56839. back: {
  56840. height: math.unit(11, "feet"),
  56841. weight: math.unit(3000, "lb"),
  56842. preyCapacity: math.unit(10, "people"),
  56843. name: "Back",
  56844. image: {
  56845. source: "./media/characters/brook/back.svg",
  56846. extra: 976/916,
  56847. bottom: 34/1010
  56848. }
  56849. },
  56850. backAlt: {
  56851. height: math.unit(11, "feet"),
  56852. weight: math.unit(3000, "lb"),
  56853. preyCapacity: math.unit(10, "people"),
  56854. name: "Back (Alt)",
  56855. image: {
  56856. source: "./media/characters/brook/back-alt.svg",
  56857. extra: 1283/1213,
  56858. bottom: 35/1318
  56859. }
  56860. },
  56861. bust: {
  56862. height: math.unit(9.0859030837, "feet"),
  56863. weight: math.unit(3000, "lb"),
  56864. preyCapacity: math.unit(10, "people"),
  56865. name: "Bust",
  56866. image: {
  56867. source: "./media/characters/brook/bust.svg",
  56868. extra: 2043/1923,
  56869. bottom: 0/2043
  56870. }
  56871. },
  56872. },
  56873. [
  56874. {
  56875. name: "Small",
  56876. height: math.unit(11, "feet"),
  56877. default: true
  56878. },
  56879. {
  56880. name: "Towering",
  56881. height: math.unit(5, "km")
  56882. },
  56883. {
  56884. name: "Enormous",
  56885. height: math.unit(25, "earths")
  56886. },
  56887. ]
  56888. ))
  56889. characterMakers.push(() => makeCharacter(
  56890. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  56891. {
  56892. front: {
  56893. height: math.unit(4, "feet"),
  56894. weight: math.unit(150, "lb"),
  56895. name: "Front",
  56896. image: {
  56897. source: "./media/characters/squishi/front.svg",
  56898. extra: 1428/1271,
  56899. bottom: 30/1458
  56900. },
  56901. extraAttributes: {
  56902. "pawSize": {
  56903. name: "Paw Size",
  56904. power: 1,
  56905. type: "length",
  56906. base: math.unit(14, "ShoeSizeMensUS"),
  56907. defaultUnit: "ShoeSizeMensUS"
  56908. },
  56909. }
  56910. },
  56911. side: {
  56912. height: math.unit(4, "feet"),
  56913. weight: math.unit(150, "lb"),
  56914. name: "Side",
  56915. image: {
  56916. source: "./media/characters/squishi/side.svg",
  56917. extra: 1428/1271,
  56918. bottom: 30/1458
  56919. },
  56920. extraAttributes: {
  56921. "pawSize": {
  56922. name: "Paw Size",
  56923. power: 1,
  56924. type: "length",
  56925. base: math.unit(14, "ShoeSizeMensUS"),
  56926. defaultUnit: "ShoeSizeMensUS"
  56927. },
  56928. }
  56929. },
  56930. back: {
  56931. height: math.unit(4, "feet"),
  56932. weight: math.unit(150, "lb"),
  56933. name: "Back",
  56934. image: {
  56935. source: "./media/characters/squishi/back.svg",
  56936. extra: 1428/1271,
  56937. bottom: 30/1458
  56938. },
  56939. extraAttributes: {
  56940. "pawSize": {
  56941. name: "Paw Size",
  56942. power: 1,
  56943. type: "length",
  56944. base: math.unit(14, "ShoeSizeMensUS"),
  56945. defaultUnit: "ShoeSizeMensUS"
  56946. },
  56947. }
  56948. },
  56949. },
  56950. [
  56951. {
  56952. name: "Normal",
  56953. height: math.unit(4, "feet"),
  56954. default: true
  56955. },
  56956. ]
  56957. ))
  56958. characterMakers.push(() => makeCharacter(
  56959. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  56960. {
  56961. front: {
  56962. height: math.unit(7 + 8/12, "feet"),
  56963. weight: math.unit(333, "lb"),
  56964. name: "Front",
  56965. image: {
  56966. source: "./media/characters/vincent-vasroc/front.svg",
  56967. extra: 1962/1860,
  56968. bottom: 41/2003
  56969. }
  56970. },
  56971. back: {
  56972. height: math.unit(7 + 8/12, "feet"),
  56973. weight: math.unit(333, "lb"),
  56974. name: "Back",
  56975. image: {
  56976. source: "./media/characters/vincent-vasroc/back.svg",
  56977. extra: 1952/1815,
  56978. bottom: 33/1985
  56979. }
  56980. },
  56981. paw: {
  56982. height: math.unit(1.24, "feet"),
  56983. name: "Paw",
  56984. image: {
  56985. source: "./media/characters/vincent-vasroc/paw.svg"
  56986. }
  56987. },
  56988. ear: {
  56989. height: math.unit(0.75, "feet"),
  56990. name: "Ear",
  56991. image: {
  56992. source: "./media/characters/vincent-vasroc/ear.svg"
  56993. }
  56994. },
  56995. },
  56996. [
  56997. {
  56998. name: "Nano",
  56999. height: math.unit(92, "micrometers")
  57000. },
  57001. {
  57002. name: "Normal",
  57003. height: math.unit(7 + 8/12, "feet"),
  57004. default: true
  57005. },
  57006. ]
  57007. ))
  57008. characterMakers.push(() => makeCharacter(
  57009. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  57010. {
  57011. frontNsfw: {
  57012. height: math.unit(40, "feet"),
  57013. weight: math.unit(58, "tons"),
  57014. name: "Front (NSFW)",
  57015. image: {
  57016. source: "./media/characters/ru-kahn/front-nsfw.svg",
  57017. extra: 1265/965,
  57018. bottom: 155/1420
  57019. }
  57020. },
  57021. frontSfw: {
  57022. height: math.unit(40, "feet"),
  57023. weight: math.unit(58, "tons"),
  57024. name: "Front (SFW)",
  57025. image: {
  57026. source: "./media/characters/ru-kahn/front-sfw.svg",
  57027. extra: 1265/965,
  57028. bottom: 80/1345
  57029. }
  57030. },
  57031. },
  57032. [
  57033. {
  57034. name: "Small",
  57035. height: math.unit(4, "feet")
  57036. },
  57037. {
  57038. name: "Normal",
  57039. height: math.unit(40, "feet"),
  57040. default: true
  57041. },
  57042. {
  57043. name: "Macro",
  57044. height: math.unit(400, "feet")
  57045. },
  57046. ]
  57047. ))
  57048. characterMakers.push(() => makeCharacter(
  57049. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  57050. {
  57051. frontNude: {
  57052. height: math.unit(6 + 5/12, "feet"),
  57053. name: "Front (Nude)",
  57054. image: {
  57055. source: "./media/characters/sylvie-laforge/front-nude.svg",
  57056. extra: 1369/1366,
  57057. bottom: 68/1437
  57058. }
  57059. },
  57060. frontDressed: {
  57061. height: math.unit(6 + 5/12, "feet"),
  57062. name: "Front (Dressed)",
  57063. image: {
  57064. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  57065. extra: 1369/1366,
  57066. bottom: 68/1437
  57067. }
  57068. },
  57069. },
  57070. [
  57071. {
  57072. name: "Normal",
  57073. height: math.unit(6 + 5/12, "feet"),
  57074. default: true
  57075. },
  57076. {
  57077. name: "Maximum",
  57078. height: math.unit(1930, "feet")
  57079. },
  57080. ]
  57081. ))
  57082. characterMakers.push(() => makeCharacter(
  57083. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  57084. {
  57085. front: {
  57086. height: math.unit(5 + 6/12, "feet"),
  57087. name: "Front",
  57088. image: {
  57089. source: "./media/characters/kaja/front.svg",
  57090. extra: 1874/1514,
  57091. bottom: 117/1991
  57092. }
  57093. },
  57094. },
  57095. [
  57096. {
  57097. name: "Normal",
  57098. height: math.unit(5 + 6/12, "feet"),
  57099. default: true
  57100. },
  57101. ]
  57102. ))
  57103. characterMakers.push(() => makeCharacter(
  57104. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  57105. {
  57106. front: {
  57107. height: math.unit(5 + 9/12, "feet"),
  57108. weight: math.unit(200, "lb"),
  57109. name: "Front",
  57110. image: {
  57111. source: "./media/characters/mark-smith/front.svg",
  57112. extra: 1004/943,
  57113. bottom: 58/1062
  57114. }
  57115. },
  57116. back: {
  57117. height: math.unit(5 + 9/12, "feet"),
  57118. weight: math.unit(200, "lb"),
  57119. name: "Back",
  57120. image: {
  57121. source: "./media/characters/mark-smith/back.svg",
  57122. extra: 1023/953,
  57123. bottom: 24/1047
  57124. }
  57125. },
  57126. head: {
  57127. height: math.unit(1.82, "feet"),
  57128. name: "Head",
  57129. image: {
  57130. source: "./media/characters/mark-smith/head.svg"
  57131. }
  57132. },
  57133. hand: {
  57134. height: math.unit(1.4, "feet"),
  57135. name: "Hand",
  57136. image: {
  57137. source: "./media/characters/mark-smith/hand.svg"
  57138. }
  57139. },
  57140. paw: {
  57141. height: math.unit(1.69, "feet"),
  57142. name: "Paw",
  57143. image: {
  57144. source: "./media/characters/mark-smith/paw.svg"
  57145. }
  57146. },
  57147. },
  57148. [
  57149. {
  57150. name: "Micro",
  57151. height: math.unit(0.25, "inches")
  57152. },
  57153. {
  57154. name: "Normal",
  57155. height: math.unit(5 + 9/12, "feet"),
  57156. default: true
  57157. },
  57158. {
  57159. name: "Macro",
  57160. height: math.unit(500, "feet")
  57161. },
  57162. ]
  57163. ))
  57164. characterMakers.push(() => makeCharacter(
  57165. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  57166. {
  57167. frontNude: {
  57168. height: math.unit(6, "feet"),
  57169. name: "Front (Nude)",
  57170. image: {
  57171. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  57172. extra: 1384/1321,
  57173. bottom: 57/1441
  57174. }
  57175. },
  57176. frontDressed: {
  57177. height: math.unit(6, "feet"),
  57178. name: "Front (Dressed)",
  57179. image: {
  57180. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  57181. extra: 1384/1321,
  57182. bottom: 57/1441
  57183. }
  57184. },
  57185. },
  57186. [
  57187. {
  57188. name: "Normal",
  57189. height: math.unit(6, "feet"),
  57190. default: true
  57191. },
  57192. {
  57193. name: "Maximum",
  57194. height: math.unit(1776, "feet")
  57195. },
  57196. ]
  57197. ))
  57198. characterMakers.push(() => makeCharacter(
  57199. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  57200. {
  57201. front: {
  57202. height: math.unit(2 + 4/12, "feet"),
  57203. weight: math.unit(350, "lb"),
  57204. name: "Front",
  57205. image: {
  57206. source: "./media/characters/devos/front.svg",
  57207. extra: 958/852,
  57208. bottom: 143/1101
  57209. }
  57210. },
  57211. },
  57212. [
  57213. {
  57214. name: "Base",
  57215. height: math.unit(2 + 4/12, "feet"),
  57216. default: true
  57217. },
  57218. ]
  57219. ))
  57220. characterMakers.push(() => makeCharacter(
  57221. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  57222. {
  57223. front: {
  57224. height: math.unit(9 + 2/12, "feet"),
  57225. name: "Front",
  57226. image: {
  57227. source: "./media/characters/hiveheart/front.svg",
  57228. extra: 394/364,
  57229. bottom: 65/459
  57230. }
  57231. },
  57232. back: {
  57233. height: math.unit(9 + 2/12, "feet"),
  57234. name: "Back",
  57235. image: {
  57236. source: "./media/characters/hiveheart/back.svg",
  57237. extra: 374/357,
  57238. bottom: 63/437
  57239. }
  57240. },
  57241. },
  57242. [
  57243. {
  57244. name: "Base",
  57245. height: math.unit(9 + 2/12, "feet"),
  57246. default: true
  57247. },
  57248. ]
  57249. ))
  57250. characterMakers.push(() => makeCharacter(
  57251. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  57252. {
  57253. front: {
  57254. height: math.unit(2.5, "inches"),
  57255. weight: math.unit(0.6, "oz"),
  57256. name: "Front",
  57257. image: {
  57258. source: "./media/characters/bryn/front.svg",
  57259. extra: 1484/1119,
  57260. bottom: 66/1550
  57261. }
  57262. },
  57263. back: {
  57264. height: math.unit(2.5, "inches"),
  57265. weight: math.unit(0.6, "oz"),
  57266. name: "Back",
  57267. image: {
  57268. source: "./media/characters/bryn/back.svg",
  57269. extra: 1472/1170,
  57270. bottom: 32/1504
  57271. }
  57272. },
  57273. wings: {
  57274. height: math.unit(2.5, "inches"),
  57275. weight: math.unit(0.6, "oz"),
  57276. name: "Wings",
  57277. image: {
  57278. source: "./media/characters/bryn/wings.svg",
  57279. extra: 567/448,
  57280. bottom: 10/577
  57281. }
  57282. },
  57283. dressed: {
  57284. height: math.unit(2.5, "inches"),
  57285. weight: math.unit(0.6, "oz"),
  57286. name: "Dressed",
  57287. image: {
  57288. source: "./media/characters/bryn/dressed.svg",
  57289. extra: 719/589,
  57290. bottom: 54/773
  57291. }
  57292. },
  57293. head: {
  57294. height: math.unit(1.75, "inches"),
  57295. name: "Head",
  57296. image: {
  57297. source: "./media/characters/bryn/head.svg"
  57298. }
  57299. },
  57300. foot: {
  57301. height: math.unit(0.4, "inches"),
  57302. name: "Foot",
  57303. image: {
  57304. source: "./media/characters/bryn/foot.svg"
  57305. }
  57306. },
  57307. },
  57308. [
  57309. {
  57310. name: "Normal",
  57311. height: math.unit(2.5, "inches"),
  57312. default: true
  57313. },
  57314. ]
  57315. ))
  57316. characterMakers.push(() => makeCharacter(
  57317. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  57318. {
  57319. side: {
  57320. height: math.unit(7, "feet"),
  57321. weight: math.unit(657, "kg"),
  57322. name: "Side",
  57323. image: {
  57324. source: "./media/characters/delta/side.svg",
  57325. extra: 781/212,
  57326. bottom: 7/788
  57327. },
  57328. extraAttributes: {
  57329. "wingspan": {
  57330. name: "Wingspan",
  57331. power: 1,
  57332. type: "length",
  57333. base: math.unit(48, "feet")
  57334. },
  57335. "length": {
  57336. name: "Length",
  57337. power: 1,
  57338. type: "length",
  57339. base: math.unit(21, "feet")
  57340. },
  57341. "pawSize": {
  57342. name: "Paw Size",
  57343. power: 2,
  57344. type: "area",
  57345. base: math.unit(1.5*1.4, "feet^2")
  57346. },
  57347. }
  57348. },
  57349. },
  57350. [
  57351. {
  57352. name: "Normal",
  57353. height: math.unit(6, "feet"),
  57354. default: true
  57355. },
  57356. ]
  57357. ))
  57358. characterMakers.push(() => makeCharacter(
  57359. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  57360. {
  57361. front: {
  57362. height: math.unit(6, "feet"),
  57363. name: "Front",
  57364. image: {
  57365. source: "./media/characters/pyrow/front.svg",
  57366. extra: 513/486,
  57367. bottom: 14/527
  57368. }
  57369. },
  57370. frontWing: {
  57371. height: math.unit(6, "feet"),
  57372. name: "Front (Wing)",
  57373. image: {
  57374. source: "./media/characters/pyrow/front-wing.svg",
  57375. extra: 539/383,
  57376. bottom: 20/559
  57377. }
  57378. },
  57379. back: {
  57380. height: math.unit(6, "feet"),
  57381. name: "Back",
  57382. image: {
  57383. source: "./media/characters/pyrow/back.svg",
  57384. extra: 500/473,
  57385. bottom: 9/509
  57386. }
  57387. },
  57388. },
  57389. [
  57390. {
  57391. name: "Normal",
  57392. height: math.unit(6, "feet"),
  57393. default: true
  57394. },
  57395. ]
  57396. ))
  57397. characterMakers.push(() => makeCharacter(
  57398. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  57399. {
  57400. front: {
  57401. height: math.unit(5, "meters"),
  57402. weight: math.unit(3, "tonnes"),
  57403. name: "Front",
  57404. image: {
  57405. source: "./media/characters/velikan/front.svg",
  57406. extra: 867/744,
  57407. bottom: 71/938
  57408. },
  57409. extraAttributes: {
  57410. "shoeSize": {
  57411. name: "Shoe Size",
  57412. power: 1,
  57413. type: "length",
  57414. base: math.unit(135, "ShoeSizeUK"),
  57415. defaultUnit: "ShoeSizeUK"
  57416. },
  57417. }
  57418. },
  57419. },
  57420. [
  57421. {
  57422. name: "Normal",
  57423. height: math.unit(5, "meters"),
  57424. default: true
  57425. },
  57426. {
  57427. name: "Macro",
  57428. height: math.unit(1, "km")
  57429. },
  57430. {
  57431. name: "Mega Macro",
  57432. height: math.unit(100, "km")
  57433. },
  57434. {
  57435. name: "Giga Macro",
  57436. height: math.unit(2, "megameters")
  57437. },
  57438. {
  57439. name: "Planetary",
  57440. height: math.unit(22, "megameters")
  57441. },
  57442. {
  57443. name: "Solar",
  57444. height: math.unit(8, "gigameters")
  57445. },
  57446. {
  57447. name: "Cosmic",
  57448. height: math.unit(10, "zettameters")
  57449. },
  57450. {
  57451. name: "Omni",
  57452. height: math.unit(9e260, "multiverses")
  57453. },
  57454. ]
  57455. ))
  57456. characterMakers.push(() => makeCharacter(
  57457. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  57458. {
  57459. front: {
  57460. height: math.unit(4 + 3/12, "feet"),
  57461. weight: math.unit(90, "lb"),
  57462. name: "Front",
  57463. image: {
  57464. source: "./media/characters/sabiki/front.svg",
  57465. extra: 1662/1423,
  57466. bottom: 65/1727
  57467. }
  57468. },
  57469. },
  57470. [
  57471. {
  57472. name: "Normal",
  57473. height: math.unit(4 + 3/12, "feet"),
  57474. default: true
  57475. },
  57476. ]
  57477. ))
  57478. characterMakers.push(() => makeCharacter(
  57479. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  57480. {
  57481. frontSfw: {
  57482. height: math.unit(2, "mm"),
  57483. name: "Front (SFW)",
  57484. image: {
  57485. source: "./media/characters/carmel/front-sfw.svg",
  57486. extra: 1131/1006,
  57487. bottom: 66/1197
  57488. }
  57489. },
  57490. frontNsfw: {
  57491. height: math.unit(2, "mm"),
  57492. name: "Front (NSFW)",
  57493. image: {
  57494. source: "./media/characters/carmel/front-nsfw.svg",
  57495. extra: 1131/1006,
  57496. bottom: 66/1197
  57497. }
  57498. },
  57499. foot: {
  57500. height: math.unit(0.3, "mm"),
  57501. name: "Foot",
  57502. image: {
  57503. source: "./media/characters/carmel/foot.svg"
  57504. }
  57505. },
  57506. tongue: {
  57507. height: math.unit(0.71, "mm"),
  57508. name: "Tongue",
  57509. image: {
  57510. source: "./media/characters/carmel/tongue.svg"
  57511. }
  57512. },
  57513. dick: {
  57514. height: math.unit(0.085, "mm"),
  57515. name: "Dick",
  57516. image: {
  57517. source: "./media/characters/carmel/dick.svg"
  57518. }
  57519. },
  57520. },
  57521. [
  57522. {
  57523. name: "Micro",
  57524. height: math.unit(2, "mm"),
  57525. default: true
  57526. },
  57527. {
  57528. name: "Normal",
  57529. height: math.unit(4 + 8/12, "feet")
  57530. },
  57531. {
  57532. name: "Mega Macro",
  57533. height: math.unit(250, "feet")
  57534. },
  57535. {
  57536. name: "BIGGER",
  57537. height: math.unit(1000, "feet")
  57538. },
  57539. {
  57540. name: "BIGGEST",
  57541. height: math.unit(2, "miles")
  57542. },
  57543. ]
  57544. ))
  57545. characterMakers.push(() => makeCharacter(
  57546. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  57547. {
  57548. front: {
  57549. height: math.unit(6.5, "feet"),
  57550. weight: math.unit(198, "lb"),
  57551. name: "Front",
  57552. image: {
  57553. source: "./media/characters/tamani/anthro.svg",
  57554. extra: 930/890,
  57555. bottom: 34/964
  57556. },
  57557. form: "anthro",
  57558. default: true
  57559. },
  57560. side: {
  57561. height: math.unit(6, "feet"),
  57562. weight: math.unit(198*2, "lb"),
  57563. name: "Side",
  57564. image: {
  57565. source: "./media/characters/tamani/feral.svg",
  57566. extra: 559/519,
  57567. bottom: 43/602
  57568. },
  57569. form: "feral"
  57570. },
  57571. },
  57572. [
  57573. {
  57574. name: "Normal",
  57575. height: math.unit(6.5, "feet"),
  57576. default: true,
  57577. form: "anthro"
  57578. },
  57579. {
  57580. name: "Normal",
  57581. height: math.unit(6, "feet"),
  57582. default: true,
  57583. form: "feral"
  57584. },
  57585. ],
  57586. {
  57587. "anthro": {
  57588. name: "Anthro",
  57589. default: true
  57590. },
  57591. "feral": {
  57592. name: "Feral",
  57593. },
  57594. }
  57595. ))
  57596. characterMakers.push(() => makeCharacter(
  57597. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  57598. {
  57599. front: {
  57600. height: math.unit(4 + 1/12, "feet"),
  57601. weight: math.unit(114, "lb"),
  57602. name: "Front",
  57603. image: {
  57604. source: "./media/characters/dex/front.svg",
  57605. extra: 787/680,
  57606. bottom: 18/805
  57607. }
  57608. },
  57609. side: {
  57610. height: math.unit(4 + 1/12, "feet"),
  57611. weight: math.unit(114, "lb"),
  57612. name: "Side",
  57613. image: {
  57614. source: "./media/characters/dex/side.svg",
  57615. extra: 785/680,
  57616. bottom: 12/797
  57617. }
  57618. },
  57619. back: {
  57620. height: math.unit(4 + 1/12, "feet"),
  57621. weight: math.unit(114, "lb"),
  57622. name: "Back",
  57623. image: {
  57624. source: "./media/characters/dex/back.svg",
  57625. extra: 785/681,
  57626. bottom: 17/802
  57627. }
  57628. },
  57629. loungewear: {
  57630. height: math.unit(4 + 1/12, "feet"),
  57631. weight: math.unit(114, "lb"),
  57632. name: "Loungewear",
  57633. image: {
  57634. source: "./media/characters/dex/loungewear.svg",
  57635. extra: 787/680,
  57636. bottom: 18/805
  57637. }
  57638. },
  57639. workout: {
  57640. height: math.unit(4 + 1/12, "feet"),
  57641. weight: math.unit(114, "lb"),
  57642. name: "Workout",
  57643. image: {
  57644. source: "./media/characters/dex/workout.svg",
  57645. extra: 787/680,
  57646. bottom: 18/805
  57647. }
  57648. },
  57649. schoolUniform: {
  57650. height: math.unit(4 + 1/12, "feet"),
  57651. weight: math.unit(114, "lb"),
  57652. name: "School Uniform",
  57653. image: {
  57654. source: "./media/characters/dex/school-uniform.svg",
  57655. extra: 787/680,
  57656. bottom: 18/805
  57657. }
  57658. },
  57659. maw: {
  57660. height: math.unit(0.55, "feet"),
  57661. name: "Maw",
  57662. image: {
  57663. source: "./media/characters/dex/maw.svg"
  57664. }
  57665. },
  57666. paw: {
  57667. height: math.unit(0.87, "feet"),
  57668. name: "Paw",
  57669. image: {
  57670. source: "./media/characters/dex/paw.svg"
  57671. }
  57672. },
  57673. bust: {
  57674. height: math.unit(1.67, "feet"),
  57675. name: "Bust",
  57676. image: {
  57677. source: "./media/characters/dex/bust.svg"
  57678. }
  57679. },
  57680. },
  57681. [
  57682. {
  57683. name: "Normal",
  57684. height: math.unit(4 + 1/12, "feet"),
  57685. default: true
  57686. },
  57687. ]
  57688. ))
  57689. characterMakers.push(() => makeCharacter(
  57690. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  57691. {
  57692. front: {
  57693. height: math.unit(4 + 3/12, "feet"),
  57694. weight: math.unit(60, "lb"),
  57695. name: "Front",
  57696. image: {
  57697. source: "./media/characters/silke/front.svg",
  57698. extra: 1334/1122,
  57699. bottom: 21/1355
  57700. }
  57701. },
  57702. back: {
  57703. height: math.unit(4 + 3/12, "feet"),
  57704. weight: math.unit(60, "lb"),
  57705. name: "Back",
  57706. image: {
  57707. source: "./media/characters/silke/back.svg",
  57708. extra: 1328/1092,
  57709. bottom: 16/1344
  57710. }
  57711. },
  57712. dressed: {
  57713. height: math.unit(4 + 3/12, "feet"),
  57714. weight: math.unit(60, "lb"),
  57715. name: "Dressed",
  57716. image: {
  57717. source: "./media/characters/silke/dressed.svg",
  57718. extra: 1334/1122,
  57719. bottom: 43/1377
  57720. }
  57721. },
  57722. },
  57723. [
  57724. {
  57725. name: "Normal",
  57726. height: math.unit(4 + 3/12, "feet"),
  57727. default: true
  57728. },
  57729. ]
  57730. ))
  57731. characterMakers.push(() => makeCharacter(
  57732. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  57733. {
  57734. front: {
  57735. height: math.unit(1.58, "meters"),
  57736. weight: math.unit(47, "kg"),
  57737. name: "Front",
  57738. image: {
  57739. source: "./media/characters/wireshark/front.svg",
  57740. extra: 883/838,
  57741. bottom: 66/949
  57742. }
  57743. },
  57744. },
  57745. [
  57746. {
  57747. name: "Normal",
  57748. height: math.unit(1.58, "meters"),
  57749. default: true
  57750. },
  57751. ]
  57752. ))
  57753. characterMakers.push(() => makeCharacter(
  57754. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  57755. {
  57756. front: {
  57757. height: math.unit(6, "meters"),
  57758. weight: math.unit(15000, "kg"),
  57759. name: "Front",
  57760. image: {
  57761. source: "./media/characters/gallagher/front.svg",
  57762. extra: 532/493,
  57763. bottom: 0/532
  57764. }
  57765. },
  57766. },
  57767. [
  57768. {
  57769. name: "Normal",
  57770. height: math.unit(6, "meters"),
  57771. default: true
  57772. },
  57773. ]
  57774. ))
  57775. characterMakers.push(() => makeCharacter(
  57776. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  57777. {
  57778. front: {
  57779. height: math.unit(2.4, "meters"),
  57780. weight: math.unit(270, "kg"),
  57781. name: "Front",
  57782. image: {
  57783. source: "./media/characters/alice/front.svg",
  57784. extra: 950/900,
  57785. bottom: 36/986
  57786. }
  57787. },
  57788. side: {
  57789. height: math.unit(2.4, "meters"),
  57790. weight: math.unit(270, "kg"),
  57791. name: "Side",
  57792. image: {
  57793. source: "./media/characters/alice/side.svg",
  57794. extra: 921/876,
  57795. bottom: 19/940
  57796. }
  57797. },
  57798. dressed: {
  57799. height: math.unit(2.4, "meters"),
  57800. weight: math.unit(270, "kg"),
  57801. name: "Dressed",
  57802. image: {
  57803. source: "./media/characters/alice/dressed.svg",
  57804. extra: 905/850,
  57805. bottom: 81/986
  57806. }
  57807. },
  57808. fishnet: {
  57809. height: math.unit(2.4, "meters"),
  57810. weight: math.unit(270, "kg"),
  57811. name: "Fishnet",
  57812. image: {
  57813. source: "./media/characters/alice/fishnet.svg",
  57814. extra: 905/850,
  57815. bottom: 81/986
  57816. }
  57817. },
  57818. },
  57819. [
  57820. {
  57821. name: "Normal",
  57822. height: math.unit(2.4, "meters"),
  57823. default: true
  57824. },
  57825. ]
  57826. ))
  57827. characterMakers.push(() => makeCharacter(
  57828. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  57829. {
  57830. front: {
  57831. height: math.unit(175.25, "feet"),
  57832. name: "Front",
  57833. image: {
  57834. source: "./media/characters/fio/front.svg",
  57835. extra: 1883/1591,
  57836. bottom: 34/1917
  57837. }
  57838. },
  57839. },
  57840. [
  57841. {
  57842. name: "Normal",
  57843. height: math.unit(175.25, "cm"),
  57844. default: true
  57845. },
  57846. ]
  57847. ))
  57848. characterMakers.push(() => makeCharacter(
  57849. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  57850. {
  57851. side: {
  57852. height: math.unit(6, "meters"),
  57853. weight: math.unit(3400, "kg"),
  57854. preyCapacity: math.unit(1700, "liters"),
  57855. name: "Side",
  57856. image: {
  57857. source: "./media/characters/hass/side.svg",
  57858. extra: 1058/997,
  57859. bottom: 177/1235
  57860. }
  57861. },
  57862. feeding: {
  57863. height: math.unit(6*0.63, "meters"),
  57864. weight: math.unit(3400, "kg"),
  57865. preyCapacity: math.unit(1700, "liters"),
  57866. name: "Feeding",
  57867. image: {
  57868. source: "./media/characters/hass/feeding.svg",
  57869. extra: 689/579,
  57870. bottom: 146/835
  57871. }
  57872. },
  57873. guts: {
  57874. height: math.unit(6, "meters"),
  57875. weight: math.unit(3400, "kg"),
  57876. name: "Guts",
  57877. image: {
  57878. source: "./media/characters/hass/guts.svg",
  57879. extra: 1223/1198,
  57880. bottom: 182/1405
  57881. }
  57882. },
  57883. dickFront: {
  57884. height: math.unit(1.4, "meters"),
  57885. name: "Dick (Front)",
  57886. image: {
  57887. source: "./media/characters/hass/dick-front.svg"
  57888. }
  57889. },
  57890. dickSide: {
  57891. height: math.unit(1.3, "meters"),
  57892. name: "Dick (Side)",
  57893. image: {
  57894. source: "./media/characters/hass/dick-side.svg"
  57895. }
  57896. },
  57897. dickBack: {
  57898. height: math.unit(1.4, "meters"),
  57899. name: "Dick (Back)",
  57900. image: {
  57901. source: "./media/characters/hass/dick-back.svg"
  57902. }
  57903. },
  57904. },
  57905. [
  57906. {
  57907. name: "Normal",
  57908. height: math.unit(6, "meters"),
  57909. default: true
  57910. },
  57911. ]
  57912. ))
  57913. characterMakers.push(() => makeCharacter(
  57914. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  57915. {
  57916. front: {
  57917. height: math.unit(4, "feet"),
  57918. weight: math.unit(60, "lb"),
  57919. name: "Front",
  57920. image: {
  57921. source: "./media/characters/hickory-finnegan/front.svg",
  57922. extra: 444/411,
  57923. bottom: 10/454
  57924. }
  57925. },
  57926. side: {
  57927. height: math.unit(4, "feet"),
  57928. weight: math.unit(60, "lb"),
  57929. name: "Side",
  57930. image: {
  57931. source: "./media/characters/hickory-finnegan/side.svg",
  57932. extra: 444/411,
  57933. bottom: 10/454
  57934. }
  57935. },
  57936. back: {
  57937. height: math.unit(4, "feet"),
  57938. weight: math.unit(60, "lb"),
  57939. name: "Back",
  57940. image: {
  57941. source: "./media/characters/hickory-finnegan/back.svg",
  57942. extra: 444/411,
  57943. bottom: 10/454
  57944. }
  57945. },
  57946. },
  57947. [
  57948. {
  57949. name: "Normal",
  57950. height: math.unit(4, "feet"),
  57951. default: true
  57952. },
  57953. ]
  57954. ))
  57955. characterMakers.push(() => makeCharacter(
  57956. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  57957. {
  57958. snivy_front: {
  57959. height: math.unit(2, "feet"),
  57960. weight: math.unit(17.9, "lb"),
  57961. name: "Front",
  57962. image: {
  57963. source: "./media/characters/robin-phox/snivy-front.svg",
  57964. extra: 569/504,
  57965. bottom: 33/602
  57966. },
  57967. form: "snivy",
  57968. default: true
  57969. },
  57970. snivy_frontNsfw: {
  57971. height: math.unit(2, "feet"),
  57972. weight: math.unit(17.9, "lb"),
  57973. name: "Front (NSFW)",
  57974. image: {
  57975. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  57976. extra: 569/504,
  57977. bottom: 33/602
  57978. },
  57979. form: "snivy",
  57980. },
  57981. snivy_back: {
  57982. height: math.unit(2, "feet"),
  57983. weight: math.unit(17.9, "lb"),
  57984. name: "Back",
  57985. image: {
  57986. source: "./media/characters/robin-phox/snivy-back.svg",
  57987. extra: 577/508,
  57988. bottom: 21/598
  57989. },
  57990. form: "snivy",
  57991. },
  57992. snivy_foot: {
  57993. height: math.unit(0.68, "feet"),
  57994. name: "Foot",
  57995. image: {
  57996. source: "./media/characters/robin-phox/snivy-foot.svg"
  57997. },
  57998. form: "snivy",
  57999. },
  58000. snivy_sole: {
  58001. height: math.unit(0.68, "feet"),
  58002. name: "Sole",
  58003. image: {
  58004. source: "./media/characters/robin-phox/snivy-sole.svg"
  58005. },
  58006. form: "snivy",
  58007. },
  58008. yoshi_front: {
  58009. height: math.unit(6, "feet"),
  58010. weight: math.unit(150, "lb"),
  58011. name: "Front",
  58012. image: {
  58013. source: "./media/characters/robin-phox/yoshi-front.svg",
  58014. extra: 890/792,
  58015. bottom: 29/919
  58016. },
  58017. form: "yoshi",
  58018. default: true
  58019. },
  58020. yoshi_frontNsfw: {
  58021. height: math.unit(6, "feet"),
  58022. weight: math.unit(150, "lb"),
  58023. name: "Front (NSFW)",
  58024. image: {
  58025. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  58026. extra: 890/792,
  58027. bottom: 29/919
  58028. },
  58029. form: "yoshi",
  58030. },
  58031. yoshi_back: {
  58032. height: math.unit(6, "feet"),
  58033. weight: math.unit(150, "lb"),
  58034. name: "Back",
  58035. image: {
  58036. source: "./media/characters/robin-phox/yoshi-back.svg",
  58037. extra: 890/792,
  58038. bottom: 29/919
  58039. },
  58040. form: "yoshi",
  58041. },
  58042. yoshi_foot: {
  58043. height: math.unit(1.5, "feet"),
  58044. name: "Foot",
  58045. image: {
  58046. source: "./media/characters/robin-phox/yoshi-foot.svg"
  58047. },
  58048. form: "yoshi",
  58049. },
  58050. delphox_front: {
  58051. height: math.unit(4 + 11/12, "feet"),
  58052. weight: math.unit(86, "lb"),
  58053. name: "Front",
  58054. image: {
  58055. source: "./media/characters/robin-phox/delphox-front.svg",
  58056. extra: 1266/1069,
  58057. bottom: 32/1298
  58058. },
  58059. form: "delphox",
  58060. default: true
  58061. },
  58062. delphox_frontNsfw: {
  58063. height: math.unit(4 + 11/12, "feet"),
  58064. weight: math.unit(86, "lb"),
  58065. name: "Front (NSFW)",
  58066. image: {
  58067. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  58068. extra: 1266/1069,
  58069. bottom: 32/1298
  58070. },
  58071. form: "delphox",
  58072. },
  58073. delphox_back: {
  58074. height: math.unit(4 + 11/12, "feet"),
  58075. weight: math.unit(86, "lb"),
  58076. name: "Back",
  58077. image: {
  58078. source: "./media/characters/robin-phox/delphox-back.svg",
  58079. extra: 1269/1083,
  58080. bottom: 15/1284
  58081. },
  58082. form: "delphox",
  58083. },
  58084. mienshao_front: {
  58085. height: math.unit(4 + 7/12, "feet"),
  58086. weight: math.unit(78.3, "lb"),
  58087. name: "Front",
  58088. image: {
  58089. source: "./media/characters/robin-phox/mienshao-front.svg",
  58090. extra: 1052/970,
  58091. bottom: 108/1160
  58092. },
  58093. form: "mienshao",
  58094. default: true
  58095. },
  58096. mienshao_frontNsfw: {
  58097. height: math.unit(4 + 7/12, "feet"),
  58098. weight: math.unit(78.3, "lb"),
  58099. name: "Front (NSFW)",
  58100. image: {
  58101. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  58102. extra: 1052/970,
  58103. bottom: 108/1160
  58104. },
  58105. form: "mienshao",
  58106. },
  58107. mienshao_back: {
  58108. height: math.unit(4 + 7/12, "feet"),
  58109. weight: math.unit(78.3, "lb"),
  58110. name: "Back",
  58111. image: {
  58112. source: "./media/characters/robin-phox/mienshao-back.svg",
  58113. extra: 1102/982,
  58114. bottom: 32/1134
  58115. },
  58116. form: "mienshao",
  58117. },
  58118. inteleon_front: {
  58119. height: math.unit(6 + 3/12, "feet"),
  58120. weight: math.unit(99.6, "lb"),
  58121. name: "Front",
  58122. image: {
  58123. source: "./media/characters/robin-phox/inteleon-front.svg",
  58124. extra: 910/799,
  58125. bottom: 76/986
  58126. },
  58127. form: "inteleon",
  58128. default: true
  58129. },
  58130. inteleon_frontNsfw: {
  58131. height: math.unit(6 + 3/12, "feet"),
  58132. weight: math.unit(99.6, "lb"),
  58133. name: "Front (NSFW)",
  58134. image: {
  58135. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  58136. extra: 910/799,
  58137. bottom: 76/986
  58138. },
  58139. form: "inteleon",
  58140. },
  58141. inteleon_back: {
  58142. height: math.unit(6 + 3/12, "feet"),
  58143. weight: math.unit(99.6, "lb"),
  58144. name: "Back",
  58145. image: {
  58146. source: "./media/characters/robin-phox/inteleon-back.svg",
  58147. extra: 907/796,
  58148. bottom: 25/932
  58149. },
  58150. form: "inteleon",
  58151. },
  58152. reshiram_front: {
  58153. height: math.unit(10 + 6/12, "feet"),
  58154. weight: math.unit(727.5, "lb"),
  58155. name: "Front",
  58156. image: {
  58157. source: "./media/characters/robin-phox/reshiram-front.svg",
  58158. extra: 1198/940,
  58159. bottom: 123/1321
  58160. },
  58161. form: "reshiram",
  58162. },
  58163. reshiram_frontNsfw: {
  58164. height: math.unit(10 + 6/12, "feet"),
  58165. weight: math.unit(727.5, "lb"),
  58166. name: "Front (NSFW)",
  58167. image: {
  58168. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  58169. extra: 1198/940,
  58170. bottom: 123/1321
  58171. },
  58172. form: "reshiram",
  58173. },
  58174. reshiram_back: {
  58175. height: math.unit(10 + 6/12, "feet"),
  58176. weight: math.unit(727.5, "lb"),
  58177. name: "Back",
  58178. image: {
  58179. source: "./media/characters/robin-phox/reshiram-back.svg",
  58180. extra: 1024/904,
  58181. bottom: 85/1109
  58182. },
  58183. form: "reshiram",
  58184. },
  58185. samurott_front: {
  58186. height: math.unit(8, "feet"),
  58187. weight: math.unit(208.6, "lb"),
  58188. name: "Front",
  58189. image: {
  58190. source: "./media/characters/robin-phox/samurott-front.svg",
  58191. extra: 1048/984,
  58192. bottom: 100/1148
  58193. },
  58194. form: "samurott",
  58195. },
  58196. samurott_frontNsfw: {
  58197. height: math.unit(8, "feet"),
  58198. weight: math.unit(208.6, "lb"),
  58199. name: "Front NSFW",
  58200. image: {
  58201. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  58202. extra: 1048/984,
  58203. bottom: 100/1148
  58204. },
  58205. form: "samurott",
  58206. },
  58207. samurott_back: {
  58208. height: math.unit(8, "feet"),
  58209. weight: math.unit(208.6, "lb"),
  58210. name: "Back",
  58211. image: {
  58212. source: "./media/characters/robin-phox/samurott-back.svg",
  58213. extra: 1110/1042,
  58214. bottom: 12/1122
  58215. },
  58216. form: "samurott",
  58217. },
  58218. samurott_feral: {
  58219. height: math.unit(4 + 11/12, "feet"),
  58220. weight: math.unit(208.6, "lb"),
  58221. name: "Feral",
  58222. image: {
  58223. source: "./media/characters/robin-phox/samurott-feral.svg",
  58224. extra: 766/681,
  58225. bottom: 108/874
  58226. },
  58227. form: "samurott",
  58228. },
  58229. },
  58230. [
  58231. {
  58232. name: "Normal",
  58233. height: math.unit(2, "feet"),
  58234. default: true,
  58235. form: "snivy"
  58236. },
  58237. {
  58238. name: "Normal",
  58239. height: math.unit(6, "feet"),
  58240. default: true,
  58241. form: "yoshi"
  58242. },
  58243. {
  58244. name: "Normal",
  58245. height: math.unit(4 + 11/12, "feet"),
  58246. default: true,
  58247. form: "delphox"
  58248. },
  58249. {
  58250. name: "Normal",
  58251. height: math.unit(4 + 7/12, "feet"),
  58252. default: true,
  58253. form: "mienshao"
  58254. },
  58255. {
  58256. name: "Normal",
  58257. height: math.unit(6 + 3/12, "feet"),
  58258. default: true,
  58259. form: "inteleon"
  58260. },
  58261. {
  58262. name: "Normal",
  58263. height: math.unit(10 + 6/12, "feet"),
  58264. default: true,
  58265. form: "reshiram"
  58266. },
  58267. {
  58268. name: "Normal",
  58269. height: math.unit(8, "feet"),
  58270. default: true,
  58271. form: "samurott"
  58272. },
  58273. {
  58274. name: "Macro",
  58275. height: math.unit(500, "feet"),
  58276. allForms: true
  58277. },
  58278. {
  58279. name: "Mega Macro",
  58280. height: math.unit(10, "earths"),
  58281. allForms: true
  58282. },
  58283. {
  58284. name: "Giga Macro",
  58285. height: math.unit(1, "galaxy"),
  58286. allForms: true
  58287. },
  58288. {
  58289. name: "Godly Macro",
  58290. height: math.unit(1e10, "multiverses"),
  58291. allForms: true
  58292. },
  58293. ],
  58294. {
  58295. "snivy": {
  58296. name: "Snivy",
  58297. default: true
  58298. },
  58299. "yoshi": {
  58300. name: "Yoshi",
  58301. },
  58302. "delphox": {
  58303. name: "Delphox",
  58304. },
  58305. "mienshao": {
  58306. name: "Mienshao",
  58307. },
  58308. "inteleon": {
  58309. name: "Inteleon",
  58310. },
  58311. "reshiram": {
  58312. name: "Reshiram",
  58313. },
  58314. "samurott": {
  58315. name: "Samurott",
  58316. },
  58317. }
  58318. ))
  58319. characterMakers.push(() => makeCharacter(
  58320. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  58321. {
  58322. front: {
  58323. height: math.unit(4, "feet"),
  58324. name: "Front",
  58325. image: {
  58326. source: "./media/characters/ash-leung/front.svg",
  58327. extra: 1916/1792,
  58328. bottom: 50/1966
  58329. }
  58330. },
  58331. },
  58332. [
  58333. {
  58334. name: "Atomic",
  58335. height: math.unit(1, "angstrom")
  58336. },
  58337. {
  58338. name: "Microscopic",
  58339. height: math.unit(4000, "angstroms")
  58340. },
  58341. {
  58342. name: "Speck",
  58343. height: math.unit(1, "mm")
  58344. },
  58345. {
  58346. name: "Small",
  58347. height: math.unit(1, "inch")
  58348. },
  58349. {
  58350. name: "Normal",
  58351. height: math.unit(4, "feet"),
  58352. default: true
  58353. },
  58354. ]
  58355. ))
  58356. characterMakers.push(() => makeCharacter(
  58357. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  58358. {
  58359. frontDressed: {
  58360. height: math.unit(2.08, "meters"),
  58361. weight: math.unit(175, "lb"),
  58362. name: "Front (Dressed)",
  58363. image: {
  58364. source: "./media/characters/carie/front-dressed.svg",
  58365. extra: 456/417,
  58366. bottom: 7/463
  58367. }
  58368. },
  58369. backDressed: {
  58370. height: math.unit(2.08, "meters"),
  58371. weight: math.unit(175, "lb"),
  58372. name: "Back (Dressed)",
  58373. image: {
  58374. source: "./media/characters/carie/back-dressed.svg",
  58375. extra: 455/414,
  58376. bottom: 11/466
  58377. }
  58378. },
  58379. front: {
  58380. height: math.unit(2, "meters"),
  58381. weight: math.unit(175, "lb"),
  58382. name: "Front",
  58383. image: {
  58384. source: "./media/characters/carie/front.svg",
  58385. extra: 438/399,
  58386. bottom: 12/450
  58387. }
  58388. },
  58389. back: {
  58390. height: math.unit(2, "meters"),
  58391. weight: math.unit(175, "lb"),
  58392. name: "Back",
  58393. image: {
  58394. source: "./media/characters/carie/back.svg",
  58395. extra: 438/397,
  58396. bottom: 7/445
  58397. }
  58398. },
  58399. },
  58400. [
  58401. {
  58402. name: "Normal",
  58403. height: math.unit(2.08, "meters"),
  58404. default: true
  58405. },
  58406. {
  58407. name: "Macro",
  58408. height: math.unit(2.08e3, "meters")
  58409. },
  58410. {
  58411. name: "Mega Macro",
  58412. height: math.unit(2.08e6, "meters")
  58413. },
  58414. {
  58415. name: "Giga Macro",
  58416. height: math.unit(2.08e9, "meters")
  58417. },
  58418. {
  58419. name: "Tera Macro",
  58420. height: math.unit(2.08e12, "meters")
  58421. },
  58422. {
  58423. name: "Peta Macro",
  58424. height: math.unit(2.08e15, "meters")
  58425. },
  58426. {
  58427. name: "Exa Macro",
  58428. height: math.unit(2.08e18, "meters")
  58429. },
  58430. {
  58431. name: "Zetta Macro",
  58432. height: math.unit(2.08e21, "meters")
  58433. },
  58434. {
  58435. name: "Yotta Macro",
  58436. height: math.unit(2.08e24, "meters")
  58437. },
  58438. ]
  58439. ))
  58440. characterMakers.push(() => makeCharacter(
  58441. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  58442. {
  58443. front: {
  58444. height: math.unit(5 + 2/12, "feet"),
  58445. weight: math.unit(120, "lb"),
  58446. name: "Front",
  58447. image: {
  58448. source: "./media/characters/sai-bree/front.svg",
  58449. extra: 1843/1702,
  58450. bottom: 91/1934
  58451. }
  58452. },
  58453. back: {
  58454. height: math.unit(5 + 2/12, "feet"),
  58455. weight: math.unit(120, "lb"),
  58456. name: "Back",
  58457. image: {
  58458. source: "./media/characters/sai-bree/back.svg",
  58459. extra: 1809/1637,
  58460. bottom: 56/1865
  58461. }
  58462. },
  58463. },
  58464. [
  58465. {
  58466. name: "Normal",
  58467. height: math.unit(5 + 2/12, "feet"),
  58468. default: true
  58469. },
  58470. {
  58471. name: "Macro",
  58472. height: math.unit(500, "feet")
  58473. },
  58474. ]
  58475. ))
  58476. characterMakers.push(() => makeCharacter(
  58477. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  58478. {
  58479. side: {
  58480. height: math.unit(0.77, "meters"),
  58481. weight: math.unit(120, "lb"),
  58482. name: "Side",
  58483. image: {
  58484. source: "./media/characters/davwyn/side.svg",
  58485. extra: 1557/1225,
  58486. bottom: 131/1688
  58487. }
  58488. },
  58489. front: {
  58490. height: math.unit(0.835410, "meters"),
  58491. weight: math.unit(120, "lb"),
  58492. name: "Front",
  58493. image: {
  58494. source: "./media/characters/davwyn/front.svg",
  58495. extra: 870/843,
  58496. bottom: 175/1045
  58497. }
  58498. },
  58499. },
  58500. [
  58501. {
  58502. name: "Minidrake",
  58503. height: math.unit(0.77/4, "meters")
  58504. },
  58505. {
  58506. name: "Normal",
  58507. height: math.unit(0.77, "meters"),
  58508. default: true
  58509. },
  58510. ]
  58511. ))
  58512. characterMakers.push(() => makeCharacter(
  58513. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  58514. {
  58515. front: {
  58516. height: math.unit(10 + 3/12, "feet"),
  58517. weight: math.unit(2857, "lb"),
  58518. name: "Front",
  58519. image: {
  58520. source: "./media/characters/balans/front.svg",
  58521. extra: 427/402,
  58522. bottom: 26/453
  58523. }
  58524. },
  58525. side: {
  58526. height: math.unit(10 + 3/12, "feet"),
  58527. weight: math.unit(2857, "lb"),
  58528. name: "Side",
  58529. image: {
  58530. source: "./media/characters/balans/side.svg",
  58531. extra: 397/371,
  58532. bottom: 17/414
  58533. }
  58534. },
  58535. back: {
  58536. height: math.unit(10 + 3/12, "feet"),
  58537. weight: math.unit(2857, "lb"),
  58538. name: "Back",
  58539. image: {
  58540. source: "./media/characters/balans/back.svg",
  58541. extra: 408/381,
  58542. bottom: 14/422
  58543. }
  58544. },
  58545. hand: {
  58546. height: math.unit(1.15, "feet"),
  58547. name: "Hand",
  58548. image: {
  58549. source: "./media/characters/balans/hand.svg"
  58550. }
  58551. },
  58552. footRest: {
  58553. height: math.unit(3.1, "feet"),
  58554. name: "Foot (Rest)",
  58555. image: {
  58556. source: "./media/characters/balans/foot-rest.svg"
  58557. }
  58558. },
  58559. footActive: {
  58560. height: math.unit(3.5, "feet"),
  58561. name: "Foot (Active)",
  58562. image: {
  58563. source: "./media/characters/balans/foot-active.svg"
  58564. }
  58565. },
  58566. },
  58567. [
  58568. {
  58569. name: "Normal",
  58570. height: math.unit(10 + 3/12, "feet"),
  58571. default: true
  58572. },
  58573. ]
  58574. ))
  58575. characterMakers.push(() => makeCharacter(
  58576. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  58577. {
  58578. side: {
  58579. height: math.unit(9, "meters"),
  58580. weight: math.unit(114, "tonnes"),
  58581. name: "Side",
  58582. image: {
  58583. source: "./media/characters/eldkveikir/side.svg",
  58584. extra: 1927/338,
  58585. bottom: 42/1969
  58586. }
  58587. },
  58588. sitting: {
  58589. height: math.unit(13.4, "meters"),
  58590. weight: math.unit(114, "tonnes"),
  58591. name: "Sitting",
  58592. image: {
  58593. source: "./media/characters/eldkveikir/sitting.svg",
  58594. extra: 1108/963,
  58595. bottom: 610/1718
  58596. }
  58597. },
  58598. maw: {
  58599. height: math.unit(8.36, "meters"),
  58600. name: "Maw",
  58601. image: {
  58602. source: "./media/characters/eldkveikir/maw.svg"
  58603. }
  58604. },
  58605. hand: {
  58606. height: math.unit(4.84, "meters"),
  58607. name: "Hand",
  58608. image: {
  58609. source: "./media/characters/eldkveikir/hand.svg"
  58610. }
  58611. },
  58612. foot: {
  58613. height: math.unit(6.9, "meters"),
  58614. name: "Foot",
  58615. image: {
  58616. source: "./media/characters/eldkveikir/foot.svg"
  58617. }
  58618. },
  58619. genitals: {
  58620. height: math.unit(9.6, "meters"),
  58621. name: "Genitals",
  58622. image: {
  58623. source: "./media/characters/eldkveikir/genitals.svg"
  58624. }
  58625. },
  58626. },
  58627. [
  58628. {
  58629. name: "Normal",
  58630. height: math.unit(9, "meters"),
  58631. default: true
  58632. },
  58633. ]
  58634. ))
  58635. characterMakers.push(() => makeCharacter(
  58636. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  58637. {
  58638. front: {
  58639. height: math.unit(14, "feet"),
  58640. weight: math.unit(4100, "lb"),
  58641. name: "Front",
  58642. image: {
  58643. source: "./media/characters/arrow/front.svg",
  58644. extra: 330/318,
  58645. bottom: 56/386
  58646. }
  58647. },
  58648. },
  58649. [
  58650. {
  58651. name: "Normal",
  58652. height: math.unit(14, "feet"),
  58653. default: true
  58654. },
  58655. {
  58656. name: "Minimacro",
  58657. height: math.unit(63, "feet")
  58658. },
  58659. {
  58660. name: "Macro",
  58661. height: math.unit(630, "feet")
  58662. },
  58663. {
  58664. name: "Megamacro",
  58665. height: math.unit(12600, "feet")
  58666. },
  58667. {
  58668. name: "Gigamacro",
  58669. height: math.unit(18000, "miles")
  58670. },
  58671. ]
  58672. ))
  58673. characterMakers.push(() => makeCharacter(
  58674. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  58675. {
  58676. front: {
  58677. height: math.unit(10, "feet"),
  58678. weight: math.unit(2.4, "tons"),
  58679. name: "Front",
  58680. image: {
  58681. source: "./media/characters/3yk-k0-unit/front.svg",
  58682. extra: 573/561,
  58683. bottom: 33/606
  58684. }
  58685. },
  58686. back: {
  58687. height: math.unit(10, "feet"),
  58688. weight: math.unit(2.4, "tons"),
  58689. name: "Back",
  58690. image: {
  58691. source: "./media/characters/3yk-k0-unit/back.svg",
  58692. extra: 614/573,
  58693. bottom: 32/646
  58694. }
  58695. },
  58696. maw: {
  58697. height: math.unit(2.15, "feet"),
  58698. name: "Maw",
  58699. image: {
  58700. source: "./media/characters/3yk-k0-unit/maw.svg"
  58701. }
  58702. },
  58703. },
  58704. [
  58705. {
  58706. name: "Normal",
  58707. height: math.unit(10, "feet"),
  58708. default: true
  58709. },
  58710. ]
  58711. ))
  58712. characterMakers.push(() => makeCharacter(
  58713. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  58714. {
  58715. front: {
  58716. height: math.unit(8 + 8/12, "feet"),
  58717. name: "Front",
  58718. image: {
  58719. source: "./media/characters/nemo/front.svg",
  58720. extra: 1308/1217,
  58721. bottom: 57/1365
  58722. }
  58723. },
  58724. },
  58725. [
  58726. {
  58727. name: "Normal",
  58728. height: math.unit(8 + 8/12, "feet"),
  58729. default: true
  58730. },
  58731. ]
  58732. ))
  58733. characterMakers.push(() => makeCharacter(
  58734. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  58735. {
  58736. front: {
  58737. height: math.unit(8, "feet"),
  58738. weight: math.unit(760, "lb"),
  58739. name: "Front",
  58740. image: {
  58741. source: "./media/characters/rexx/front.svg",
  58742. extra: 786/750,
  58743. bottom: 17/803
  58744. },
  58745. extraAttributes: {
  58746. "pawLength": {
  58747. name: "Paw Length",
  58748. power: 1,
  58749. type: "length",
  58750. base: math.unit(27, "inches")
  58751. },
  58752. }
  58753. },
  58754. },
  58755. [
  58756. {
  58757. name: "Micro",
  58758. height: math.unit(2, "inches")
  58759. },
  58760. {
  58761. name: "Normal",
  58762. height: math.unit(8, "feet"),
  58763. default: true
  58764. },
  58765. {
  58766. name: "Macro",
  58767. height: math.unit(150, "feet")
  58768. },
  58769. ]
  58770. ))
  58771. characterMakers.push(() => makeCharacter(
  58772. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  58773. {
  58774. front: {
  58775. height: math.unit(18, "feet"),
  58776. weight: math.unit(1975, "lb"),
  58777. name: "Front",
  58778. image: {
  58779. source: "./media/characters/draco/front.svg",
  58780. extra: 1325/1241,
  58781. bottom: 83/1408
  58782. }
  58783. },
  58784. back: {
  58785. height: math.unit(18, "feet"),
  58786. weight: math.unit(1975, "lb"),
  58787. name: "Back",
  58788. image: {
  58789. source: "./media/characters/draco/back.svg",
  58790. extra: 1332/1250,
  58791. bottom: 43/1375
  58792. }
  58793. },
  58794. dick: {
  58795. height: math.unit(7.5, "feet"),
  58796. name: "Dick",
  58797. image: {
  58798. source: "./media/characters/draco/dick.svg"
  58799. }
  58800. },
  58801. },
  58802. [
  58803. {
  58804. name: "Normal",
  58805. height: math.unit(18, "feet"),
  58806. default: true
  58807. },
  58808. ]
  58809. ))
  58810. characterMakers.push(() => makeCharacter(
  58811. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  58812. {
  58813. front: {
  58814. height: math.unit(3.2, "meters"),
  58815. name: "Front",
  58816. image: {
  58817. source: "./media/characters/harriett/front.svg",
  58818. extra: 1966/1915,
  58819. bottom: 9/1975
  58820. }
  58821. },
  58822. },
  58823. [
  58824. {
  58825. name: "Normal",
  58826. height: math.unit(3.2, "meters"),
  58827. default: true
  58828. },
  58829. ]
  58830. ))
  58831. characterMakers.push(() => makeCharacter(
  58832. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  58833. {
  58834. standing: {
  58835. height: math.unit(180, "cm"),
  58836. weight: math.unit(185, "lb"),
  58837. name: "Standing",
  58838. image: {
  58839. source: "./media/characters/serpentus/standing.svg",
  58840. extra: 882/878,
  58841. bottom: 16/898
  58842. }
  58843. },
  58844. sitting: {
  58845. height: math.unit(0.8, "meter"),
  58846. weight: math.unit(155, "lb"),
  58847. name: "Sitting",
  58848. image: {
  58849. source: "./media/characters/serpentus/sitting.svg",
  58850. extra: 293/290,
  58851. bottom: 140/433
  58852. }
  58853. },
  58854. },
  58855. [
  58856. {
  58857. name: "Normal",
  58858. height: math.unit(1.8, "meter"),
  58859. default: true
  58860. },
  58861. ]
  58862. ))
  58863. characterMakers.push(() => makeCharacter(
  58864. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  58865. {
  58866. front: {
  58867. height: math.unit(5.7174385736, "feet"),
  58868. name: "Front",
  58869. image: {
  58870. source: "./media/characters/nova-polecat/front.svg",
  58871. extra: 1317/1216,
  58872. bottom: 92/1409
  58873. }
  58874. },
  58875. },
  58876. [
  58877. {
  58878. name: "Normal",
  58879. height: math.unit(5.7174385736, "feet"),
  58880. default: true
  58881. },
  58882. ]
  58883. ))
  58884. characterMakers.push(() => makeCharacter(
  58885. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  58886. {
  58887. front: {
  58888. height: math.unit(5 + 4/12, "feet"),
  58889. weight: math.unit(250, "lb"),
  58890. name: "Front",
  58891. image: {
  58892. source: "./media/characters/mook/front.svg",
  58893. extra: 1088/1037,
  58894. bottom: 132/1220
  58895. }
  58896. },
  58897. back: {
  58898. height: math.unit(5 + 1/12, "feet"),
  58899. weight: math.unit(250, "lb"),
  58900. name: "Back",
  58901. image: {
  58902. source: "./media/characters/mook/back.svg",
  58903. extra: 1184/905,
  58904. bottom: 96/1280
  58905. }
  58906. },
  58907. head: {
  58908. height: math.unit(1.85, "feet"),
  58909. name: "Head",
  58910. image: {
  58911. source: "./media/characters/mook/head.svg"
  58912. }
  58913. },
  58914. hand: {
  58915. height: math.unit(1.9, "feet"),
  58916. name: "Hand",
  58917. image: {
  58918. source: "./media/characters/mook/hand.svg"
  58919. }
  58920. },
  58921. palm: {
  58922. height: math.unit(1.84, "feet"),
  58923. name: "Palm",
  58924. image: {
  58925. source: "./media/characters/mook/palm.svg"
  58926. }
  58927. },
  58928. foot: {
  58929. height: math.unit(1.44, "feet"),
  58930. name: "Foot",
  58931. image: {
  58932. source: "./media/characters/mook/foot.svg"
  58933. }
  58934. },
  58935. sole: {
  58936. height: math.unit(1.44, "feet"),
  58937. name: "Sole",
  58938. image: {
  58939. source: "./media/characters/mook/sole.svg"
  58940. }
  58941. },
  58942. },
  58943. [
  58944. {
  58945. name: "Normal",
  58946. height: math.unit(5 + 4/12, "feet"),
  58947. default: true
  58948. },
  58949. {
  58950. name: "Big",
  58951. height: math.unit(12, "feet")
  58952. },
  58953. ]
  58954. ))
  58955. characterMakers.push(() => makeCharacter(
  58956. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  58957. {
  58958. front: {
  58959. height: math.unit(6 + 10/12, "feet"),
  58960. weight: math.unit(233, "lb"),
  58961. name: "Front",
  58962. image: {
  58963. source: "./media/characters/kayla/front.svg",
  58964. extra: 1850/1775,
  58965. bottom: 65/1915
  58966. }
  58967. },
  58968. },
  58969. [
  58970. {
  58971. name: "Normal",
  58972. height: math.unit(6 + 10/12, "feet"),
  58973. default: true
  58974. },
  58975. {
  58976. name: "Amazonian",
  58977. height: math.unit(12 + 5/12, "feet")
  58978. },
  58979. {
  58980. name: "Mini Giantess",
  58981. height: math.unit(26, "feet")
  58982. },
  58983. {
  58984. name: "Giantess",
  58985. height: math.unit(200, "feet")
  58986. },
  58987. {
  58988. name: "Mega Giantess",
  58989. height: math.unit(2500, "feet")
  58990. },
  58991. {
  58992. name: "City Sized",
  58993. height: math.unit(50, "miles")
  58994. },
  58995. {
  58996. name: "Country Sized",
  58997. height: math.unit(500, "miles")
  58998. },
  58999. {
  59000. name: "Continent Sized",
  59001. height: math.unit(2500, "miles")
  59002. },
  59003. {
  59004. name: "Planet Sized",
  59005. height: math.unit(10000, "miles")
  59006. },
  59007. {
  59008. name: "Star Sized",
  59009. height: math.unit(5e6, "miles")
  59010. },
  59011. {
  59012. name: "Solar System Sized",
  59013. height: math.unit(125, "AU")
  59014. },
  59015. {
  59016. name: "Galaxy Sized",
  59017. height: math.unit(300e3, "lightyears")
  59018. },
  59019. {
  59020. name: "Universe Sized",
  59021. height: math.unit(200e9, "lightyears")
  59022. },
  59023. {
  59024. name: "Multiverse Sized",
  59025. height: math.unit(20, "exauniverses")
  59026. },
  59027. {
  59028. name: "Mother of Existence",
  59029. height: math.unit(1e6, "yottauniverses")
  59030. },
  59031. ]
  59032. ))
  59033. characterMakers.push(() => makeCharacter(
  59034. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  59035. {
  59036. side: {
  59037. height: math.unit(9.5, "meters"),
  59038. name: "Side",
  59039. image: {
  59040. source: "./media/characters/kulve-ragnarok/side.svg",
  59041. extra: 364/326,
  59042. bottom: 50/414
  59043. }
  59044. },
  59045. },
  59046. [
  59047. {
  59048. name: "Normal",
  59049. height: math.unit(9.5, "meters"),
  59050. default: true
  59051. },
  59052. ]
  59053. ))
  59054. characterMakers.push(() => makeCharacter(
  59055. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  59056. {
  59057. front: {
  59058. height: math.unit(8 + 9/12, "feet"),
  59059. name: "Front",
  59060. image: {
  59061. source: "./media/characters/atlas-goat/front.svg",
  59062. extra: 1462/1323,
  59063. bottom: 12/1474
  59064. }
  59065. },
  59066. },
  59067. [
  59068. {
  59069. name: "Normal",
  59070. height: math.unit(8 + 9/12, "feet"),
  59071. default: true
  59072. },
  59073. {
  59074. name: "Skyline",
  59075. height: math.unit(845, "feet")
  59076. },
  59077. {
  59078. name: "Orbital",
  59079. height: math.unit(93000, "miles")
  59080. },
  59081. {
  59082. name: "Constellation",
  59083. height: math.unit(27000, "lightyears")
  59084. },
  59085. ]
  59086. ))
  59087. characterMakers.push(() => makeCharacter(
  59088. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  59089. {
  59090. side: {
  59091. height: math.unit(1.8, "meters"),
  59092. weight: math.unit(120, "kg"),
  59093. name: "Side",
  59094. image: {
  59095. source: "./media/characters/xie-ling/side.svg",
  59096. extra: 646/574,
  59097. bottom: 44/690
  59098. }
  59099. },
  59100. },
  59101. [
  59102. {
  59103. name: "Tiny",
  59104. height: math.unit(1.80, "meters")
  59105. },
  59106. {
  59107. name: "Small",
  59108. height: math.unit(6, "meters")
  59109. },
  59110. {
  59111. name: "Medium",
  59112. height: math.unit(15, "meters")
  59113. },
  59114. {
  59115. name: "Normal",
  59116. height: math.unit(30, "meters"),
  59117. default: true
  59118. },
  59119. {
  59120. name: "Above Normal",
  59121. height: math.unit(60, "meters")
  59122. },
  59123. {
  59124. name: "Big",
  59125. height: math.unit(220, "meters")
  59126. },
  59127. {
  59128. name: "Giant",
  59129. height: math.unit(2.2, "km")
  59130. },
  59131. {
  59132. name: "Macro",
  59133. height: math.unit(25, "km")
  59134. },
  59135. {
  59136. name: "Mega Macro",
  59137. height: math.unit(350, "km")
  59138. },
  59139. {
  59140. name: "Mega Macro+",
  59141. height: math.unit(5000, "km")
  59142. },
  59143. {
  59144. name: "Goddess",
  59145. height: math.unit(3, "multiverses")
  59146. },
  59147. ]
  59148. ))
  59149. characterMakers.push(() => makeCharacter(
  59150. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  59151. {
  59152. frontSfw: {
  59153. height: math.unit(5 + 11/12, "feet"),
  59154. weight: math.unit(210, "lb"),
  59155. name: "Front",
  59156. image: {
  59157. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  59158. extra: 1928/1821,
  59159. bottom: 45/1973
  59160. }
  59161. },
  59162. backSfw: {
  59163. height: math.unit(5 + 11/12, "feet"),
  59164. weight: math.unit(210, "lb"),
  59165. name: "Back",
  59166. image: {
  59167. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  59168. extra: 1920/1813,
  59169. bottom: 34/1954
  59170. }
  59171. },
  59172. frontNsfw: {
  59173. height: math.unit(5 + 11/12, "feet"),
  59174. weight: math.unit(210, "lb"),
  59175. name: "Front (NSFW)",
  59176. image: {
  59177. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  59178. extra: 1928/1821,
  59179. bottom: 45/1973
  59180. }
  59181. },
  59182. backNsfw: {
  59183. height: math.unit(5 + 11/12, "feet"),
  59184. weight: math.unit(210, "lb"),
  59185. name: "Back (NSFW)",
  59186. image: {
  59187. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  59188. extra: 1920/1813,
  59189. bottom: 34/1954
  59190. }
  59191. },
  59192. },
  59193. [
  59194. {
  59195. name: "Normal",
  59196. height: math.unit(5 + 11/12, "feet"),
  59197. default: true
  59198. },
  59199. {
  59200. name: "Goddess",
  59201. height: math.unit(20 + 3/12, "feet")
  59202. },
  59203. {
  59204. name: "Breaker of Man",
  59205. height: math.unit(329 + 9/12, "feet")
  59206. },
  59207. {
  59208. name: "Solar Justice",
  59209. height: math.unit(0.6, "solarradii")
  59210. },
  59211. {
  59212. name: "She Who Judges",
  59213. height: math.unit(1, "universe")
  59214. },
  59215. ]
  59216. ))
  59217. characterMakers.push(() => makeCharacter(
  59218. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  59219. {
  59220. casual_front: {
  59221. height: math.unit(6 + 1/12, "feet"),
  59222. weight: math.unit(190, "lb"),
  59223. preyCapacity: math.unit(1, "people"),
  59224. name: "Front",
  59225. image: {
  59226. source: "./media/characters/managarmr/casual-front.svg",
  59227. extra: 411/381,
  59228. bottom: 15/426
  59229. },
  59230. extraAttributes: {
  59231. "pawSize": {
  59232. name: "Paw Size",
  59233. power: 1,
  59234. type: "length",
  59235. base: math.unit(0.2, "meters")
  59236. },
  59237. },
  59238. form: "casual",
  59239. },
  59240. casual_back: {
  59241. height: math.unit(6 + 1/12, "feet"),
  59242. weight: math.unit(190, "lb"),
  59243. preyCapacity: math.unit(1, "people"),
  59244. name: "Back",
  59245. image: {
  59246. source: "./media/characters/managarmr/casual-back.svg",
  59247. extra: 413/383,
  59248. bottom: 13/426
  59249. },
  59250. extraAttributes: {
  59251. "pawSize": {
  59252. name: "Paw Size",
  59253. power: 1,
  59254. type: "length",
  59255. base: math.unit(0.2, "meters")
  59256. },
  59257. },
  59258. form: "casual",
  59259. },
  59260. base_front: {
  59261. height: math.unit(7, "feet"),
  59262. weight: math.unit(210, "lb"),
  59263. preyCapacity: math.unit(2, "people"),
  59264. name: "Front",
  59265. image: {
  59266. source: "./media/characters/managarmr/base-front.svg",
  59267. extra: 580/485,
  59268. bottom: 32/612
  59269. },
  59270. extraAttributes: {
  59271. "wingspan": {
  59272. name: "Wingspan",
  59273. power: 1,
  59274. type: "length",
  59275. base: math.unit(4, "meters")
  59276. },
  59277. "pawSize": {
  59278. name: "Paw Size",
  59279. power: 1,
  59280. type: "length",
  59281. base: math.unit(0.2, "meters")
  59282. },
  59283. },
  59284. form: "base",
  59285. },
  59286. "true-divine_front": {
  59287. height: math.unit(40, "feet"),
  59288. weight: math.unit(39000, "lb"),
  59289. preyCapacity: math.unit(375, "people"),
  59290. name: "Front",
  59291. image: {
  59292. source: "./media/characters/managarmr/true-divine-front.svg",
  59293. extra: 725/573,
  59294. bottom: 120/845
  59295. },
  59296. extraAttributes: {
  59297. "wingspan": {
  59298. name: "Wingspan",
  59299. power: 1,
  59300. type: "length",
  59301. base: math.unit(20, "meters")
  59302. },
  59303. "pawSize": {
  59304. name: "Paw Size",
  59305. power: 1,
  59306. type: "length",
  59307. base: math.unit(1.5, "meters")
  59308. },
  59309. },
  59310. form: "true-divine",
  59311. },
  59312. },
  59313. [
  59314. {
  59315. name: "Normal",
  59316. height: math.unit(6 + 1/12, "feet"),
  59317. form: "casual",
  59318. default: true
  59319. },
  59320. {
  59321. name: "Normal",
  59322. height: math.unit(7, "feet"),
  59323. form: "base",
  59324. default: true
  59325. },
  59326. ],
  59327. {
  59328. "casual": {
  59329. name: "Casual",
  59330. default: true
  59331. },
  59332. "base": {
  59333. name: "Base",
  59334. },
  59335. "true-divine": {
  59336. name: "True Divine",
  59337. },
  59338. }
  59339. ))
  59340. characterMakers.push(() => makeCharacter(
  59341. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  59342. {
  59343. front: {
  59344. height: math.unit(1.8, "meters"),
  59345. weight: math.unit(110, "kg"),
  59346. name: "Front",
  59347. image: {
  59348. source: "./media/characters/mystra/front.svg",
  59349. extra: 529/442,
  59350. bottom: 31/560
  59351. }
  59352. },
  59353. frontLewd: {
  59354. height: math.unit(1.8, "meters"),
  59355. weight: math.unit(110, "kg"),
  59356. name: "Front (Lewd)",
  59357. image: {
  59358. source: "./media/characters/mystra/front-lewd.svg",
  59359. extra: 529/442,
  59360. bottom: 31/560
  59361. }
  59362. },
  59363. head: {
  59364. height: math.unit(1.63, "feet"),
  59365. name: "Head",
  59366. image: {
  59367. source: "./media/characters/mystra/head.svg"
  59368. }
  59369. },
  59370. paw: {
  59371. height: math.unit(1.9, "feet"),
  59372. name: "Paw",
  59373. image: {
  59374. source: "./media/characters/mystra/paw.svg"
  59375. }
  59376. },
  59377. },
  59378. [
  59379. {
  59380. name: "Incognito",
  59381. height: math.unit(2.3, "meters")
  59382. },
  59383. {
  59384. name: "Small Macro",
  59385. height: math.unit(300, "meters")
  59386. },
  59387. {
  59388. name: "Small Mega",
  59389. height: math.unit(2, "km")
  59390. },
  59391. {
  59392. name: "Mega",
  59393. height: math.unit(30, "km")
  59394. },
  59395. {
  59396. name: "Small Giga",
  59397. height: math.unit(100, "km")
  59398. },
  59399. {
  59400. name: "Giga",
  59401. height: math.unit(1000, "km"),
  59402. default: true
  59403. },
  59404. {
  59405. name: "Continental",
  59406. height: math.unit(5000, "km")
  59407. },
  59408. {
  59409. name: "Terra",
  59410. height: math.unit(20000, "km")
  59411. },
  59412. {
  59413. name: "Solar",
  59414. height: math.unit(2e6, "km")
  59415. },
  59416. {
  59417. name: "Galactic",
  59418. height: math.unit(528502, "lightyears")
  59419. },
  59420. {
  59421. name: "Universal",
  59422. height: math.unit(20, "universes")
  59423. },
  59424. ]
  59425. ))
  59426. characterMakers.push(() => makeCharacter(
  59427. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  59428. {
  59429. front: {
  59430. height: math.unit(2, "meters"),
  59431. weight: math.unit(140, "kg"),
  59432. name: "Front",
  59433. image: {
  59434. source: "./media/characters/caleb/front.svg",
  59435. extra: 873/817,
  59436. bottom: 47/920
  59437. }
  59438. },
  59439. back: {
  59440. height: math.unit(2, "meters"),
  59441. weight: math.unit(140, "kg"),
  59442. name: "Back",
  59443. image: {
  59444. source: "./media/characters/caleb/back.svg",
  59445. extra: 877/828,
  59446. bottom: 24/901
  59447. }
  59448. },
  59449. snakeTail: {
  59450. height: math.unit(1.44, "feet"),
  59451. name: "Snake Tail",
  59452. image: {
  59453. source: "./media/characters/caleb/snake-tail.svg"
  59454. }
  59455. },
  59456. dick: {
  59457. height: math.unit(2.6, "feet"),
  59458. name: "Dick",
  59459. image: {
  59460. source: "./media/characters/caleb/dick.svg"
  59461. }
  59462. },
  59463. },
  59464. [
  59465. {
  59466. name: "Incognito",
  59467. height: math.unit(3, "meters")
  59468. },
  59469. {
  59470. name: "Home Size",
  59471. height: math.unit(200, "meters"),
  59472. default: true
  59473. },
  59474. {
  59475. name: "Macro",
  59476. height: math.unit(500, "meters")
  59477. },
  59478. {
  59479. name: "Big Macro",
  59480. height: math.unit(5, "km")
  59481. },
  59482. {
  59483. name: "Giga",
  59484. height: math.unit(250, "km")
  59485. },
  59486. {
  59487. name: "Giga+",
  59488. height: math.unit(5000, "km")
  59489. },
  59490. {
  59491. name: "Small Terra",
  59492. height: math.unit(35e3, "km")
  59493. },
  59494. {
  59495. name: "Terra",
  59496. height: math.unit(2e6, "km")
  59497. },
  59498. {
  59499. name: "Terra+",
  59500. height: math.unit(1.5e6, "km")
  59501. },
  59502. ]
  59503. ))
  59504. characterMakers.push(() => makeCharacter(
  59505. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  59506. {
  59507. front: {
  59508. height: math.unit(2, "meters"),
  59509. weight: math.unit(120, "kg"),
  59510. name: "Front",
  59511. image: {
  59512. source: "./media/characters/gilirian/front.svg",
  59513. extra: 805/737,
  59514. bottom: 13/818
  59515. }
  59516. },
  59517. side: {
  59518. height: math.unit(2, "meters"),
  59519. weight: math.unit(120, "kg"),
  59520. name: "Side",
  59521. image: {
  59522. source: "./media/characters/gilirian/side.svg",
  59523. extra: 810/746,
  59524. bottom: 6/816
  59525. }
  59526. },
  59527. back: {
  59528. height: math.unit(2, "meters"),
  59529. weight: math.unit(120, "kg"),
  59530. name: "Back",
  59531. image: {
  59532. source: "./media/characters/gilirian/back.svg",
  59533. extra: 815/745,
  59534. bottom: 15/830
  59535. }
  59536. },
  59537. frontNsfw: {
  59538. height: math.unit(2, "meters"),
  59539. weight: math.unit(120, "kg"),
  59540. name: "Front (NSFW)",
  59541. image: {
  59542. source: "./media/characters/gilirian/front-nsfw.svg",
  59543. extra: 805/737,
  59544. bottom: 13/818
  59545. }
  59546. },
  59547. sideNsfw: {
  59548. height: math.unit(2, "meters"),
  59549. weight: math.unit(120, "kg"),
  59550. name: "Side (NSFW)",
  59551. image: {
  59552. source: "./media/characters/gilirian/side-nsfw.svg",
  59553. extra: 810/746,
  59554. bottom: 6/816
  59555. }
  59556. },
  59557. },
  59558. [
  59559. {
  59560. name: "Incognito",
  59561. height: math.unit(2, "meters"),
  59562. default: true
  59563. },
  59564. {
  59565. name: "Macro",
  59566. height: math.unit(250, "meters")
  59567. },
  59568. {
  59569. name: "Big Macro",
  59570. height: math.unit(1500, "meters")
  59571. },
  59572. {
  59573. name: "Mega",
  59574. height: math.unit(40, "km")
  59575. },
  59576. {
  59577. name: "Giga",
  59578. height: math.unit(300, "km")
  59579. },
  59580. {
  59581. name: "Extra Giga",
  59582. height: math.unit(5000, "km")
  59583. },
  59584. {
  59585. name: "Small Terra",
  59586. height: math.unit(10e3, "km")
  59587. },
  59588. {
  59589. name: "Terra",
  59590. height: math.unit(3e5, "km")
  59591. },
  59592. {
  59593. name: "Galactic",
  59594. height: math.unit(369950, "lightyears")
  59595. },
  59596. ]
  59597. ))
  59598. characterMakers.push(() => makeCharacter(
  59599. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  59600. {
  59601. front: {
  59602. height: math.unit(2.5, "meters"),
  59603. weight: math.unit(230, "lb"),
  59604. name: "Front",
  59605. image: {
  59606. source: "./media/characters/tarken/front.svg",
  59607. extra: 764/720,
  59608. bottom: 49/813
  59609. }
  59610. },
  59611. back: {
  59612. height: math.unit(2.5, "meters"),
  59613. weight: math.unit(230, "lb"),
  59614. name: "Back",
  59615. image: {
  59616. source: "./media/characters/tarken/back.svg",
  59617. extra: 756/720,
  59618. bottom: 35/791
  59619. }
  59620. },
  59621. frontNsfw: {
  59622. height: math.unit(2.5, "meters"),
  59623. weight: math.unit(230, "lb"),
  59624. name: "Front (NSFW)",
  59625. image: {
  59626. source: "./media/characters/tarken/front-nsfw.svg",
  59627. extra: 764/720,
  59628. bottom: 49/813
  59629. }
  59630. },
  59631. backNsfw: {
  59632. height: math.unit(2.5, "meters"),
  59633. weight: math.unit(230, "lb"),
  59634. name: "Back (NSFW)",
  59635. image: {
  59636. source: "./media/characters/tarken/back-nsfw.svg",
  59637. extra: 756/720,
  59638. bottom: 35/791
  59639. }
  59640. },
  59641. head: {
  59642. height: math.unit(2.22, "feet"),
  59643. name: "Head",
  59644. image: {
  59645. source: "./media/characters/tarken/head.svg"
  59646. }
  59647. },
  59648. tail: {
  59649. height: math.unit(5.25, "feet"),
  59650. name: "Tail",
  59651. image: {
  59652. source: "./media/characters/tarken/tail.svg"
  59653. }
  59654. },
  59655. dick: {
  59656. height: math.unit(1.95, "feet"),
  59657. name: "Dick",
  59658. image: {
  59659. source: "./media/characters/tarken/dick.svg"
  59660. }
  59661. },
  59662. hand: {
  59663. height: math.unit(1.78, "feet"),
  59664. name: "Hand",
  59665. image: {
  59666. source: "./media/characters/tarken/hand.svg"
  59667. }
  59668. },
  59669. beam: {
  59670. height: math.unit(1.5, "feet"),
  59671. name: "Beam",
  59672. image: {
  59673. source: "./media/characters/tarken/beam.svg"
  59674. }
  59675. },
  59676. },
  59677. [
  59678. {
  59679. name: "Original Size",
  59680. height: math.unit(2.5, "meters")
  59681. },
  59682. {
  59683. name: "Macro",
  59684. height: math.unit(150, "meters"),
  59685. default: true
  59686. },
  59687. {
  59688. name: "Macro+",
  59689. height: math.unit(300, "meters")
  59690. },
  59691. {
  59692. name: "Mega",
  59693. height: math.unit(2, "km")
  59694. },
  59695. {
  59696. name: "Mega+",
  59697. height: math.unit(35, "km")
  59698. },
  59699.  {
  59700. name: "Mega++",
  59701. height: math.unit(60, "km")
  59702. },
  59703. {
  59704. name: "Giga",
  59705. height: math.unit(200, "km")
  59706. },
  59707. {
  59708. name: "Giga+",
  59709. height: math.unit(2500, "km")
  59710. },
  59711. {
  59712. name: "Giga++",
  59713. height: math.unit(6600, "km")
  59714. },
  59715. {
  59716. name: "Terra",
  59717. height: math.unit(20000, "km")
  59718. },
  59719. {
  59720. name: "Terra+",
  59721. height: math.unit(300000, "km")
  59722. },
  59723. ]
  59724. ))
  59725. characterMakers.push(() => makeCharacter(
  59726. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  59727. {
  59728. magpie_dressed: {
  59729. height: math.unit(1.7, "meters"),
  59730. weight: math.unit(70, "kg"),
  59731. name: "Dressed",
  59732. image: {
  59733. source: "./media/characters/otreus/magpie-dressed.svg",
  59734. extra: 691/672,
  59735. bottom: 116/807
  59736. },
  59737. form: "magpie",
  59738. default: true
  59739. },
  59740. magpie_nude: {
  59741. height: math.unit(1.7, "meters"),
  59742. weight: math.unit(70, "kg"),
  59743. name: "Nude",
  59744. image: {
  59745. source: "./media/characters/otreus/magpie-nude.svg",
  59746. extra: 691/672,
  59747. bottom: 116/807
  59748. },
  59749. form: "magpie",
  59750. },
  59751. magpie_dressedLewd: {
  59752. height: math.unit(1.7, "meters"),
  59753. weight: math.unit(70, "kg"),
  59754. name: "Dressed (Lewd)",
  59755. image: {
  59756. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  59757. extra: 691/672,
  59758. bottom: 116/807
  59759. },
  59760. form: "magpie",
  59761. },
  59762. magpie_nudeLewd: {
  59763. height: math.unit(1.7, "meters"),
  59764. weight: math.unit(70, "kg"),
  59765. name: "Nude (Lewd)",
  59766. image: {
  59767. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  59768. extra: 691/672,
  59769. bottom: 116/807
  59770. },
  59771. form: "magpie",
  59772. },
  59773. magpie_leftFoot: {
  59774. height: math.unit(1.58, "feet"),
  59775. name: "Left Foot",
  59776. image: {
  59777. source: "./media/characters/otreus/magpie-left-foot.svg"
  59778. },
  59779. form: "magpie",
  59780. },
  59781. magpie_rightFoot: {
  59782. height: math.unit(1.58, "feet"),
  59783. name: "Right Foot",
  59784. image: {
  59785. source: "./media/characters/otreus/magpie-right-foot.svg"
  59786. },
  59787. form: "magpie",
  59788. },
  59789. magpie_wingspan: {
  59790. height: math.unit(2, "meters"),
  59791. weight: math.unit(70, "kg"),
  59792. name: "Wingspan",
  59793. image: {
  59794. source: "./media/characters/otreus/magpie-wingspan.svg"
  59795. },
  59796. extraAttributes: {
  59797. "wingspan": {
  59798. name: "Wingspan",
  59799. power: 1,
  59800. type: "length",
  59801. base: math.unit(3.35, "meters")
  59802. },
  59803. },
  59804. form: "magpie",
  59805. },
  59806. hippogriff_dressed: {
  59807. height: math.unit(1.7, "meters"),
  59808. weight: math.unit(70, "kg"),
  59809. name: "Dressed",
  59810. image: {
  59811. source: "./media/characters/otreus/hippogriff-dressed.svg",
  59812. extra: 710/689,
  59813. bottom: 67/777
  59814. },
  59815. form: "hippogriff",
  59816. default: true
  59817. },
  59818. hippogriff_nude: {
  59819. height: math.unit(1.7, "meters"),
  59820. weight: math.unit(70, "kg"),
  59821. name: "Nude",
  59822. image: {
  59823. source: "./media/characters/otreus/hippogriff-nude.svg",
  59824. extra: 710/689,
  59825. bottom: 67/777
  59826. },
  59827. form: "hippogriff",
  59828. },
  59829. hippogriff_dressedLewd: {
  59830. height: math.unit(1.7, "meters"),
  59831. weight: math.unit(70, "kg"),
  59832. name: "Dressed (Lewd)",
  59833. image: {
  59834. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  59835. extra: 710/689,
  59836. bottom: 67/777
  59837. },
  59838. form: "hippogriff",
  59839. },
  59840. hippogriff_nudeLewd: {
  59841. height: math.unit(1.7, "meters"),
  59842. weight: math.unit(70, "kg"),
  59843. name: "Nude (Lewd)",
  59844. image: {
  59845. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  59846. extra: 710/689,
  59847. bottom: 67/777
  59848. },
  59849. form: "hippogriff",
  59850. },
  59851. },
  59852. [
  59853. {
  59854. name: "Original Size",
  59855. height: math.unit(1.7, "meters"),
  59856. allForms: true
  59857. },
  59858. {
  59859. name: "Incognito Size",
  59860. height: math.unit(2, "meters"),
  59861. allForms: true
  59862. },
  59863. {
  59864. name: "Mega",
  59865. height: math.unit(2, "km"),
  59866. allForms: true
  59867. },
  59868. {
  59869. name: "Mega+",
  59870. height: math.unit(40, "km"),
  59871. allForms: true
  59872. },
  59873. {
  59874. name: "Giga",
  59875. height: math.unit(250, "km"),
  59876. allForms: true
  59877. },
  59878. {
  59879. name: "Giga+",
  59880. height: math.unit(3000, "km"),
  59881. allForms: true
  59882. },
  59883. {
  59884. name: "Terra",
  59885. height: math.unit(20000, "km"),
  59886. allForms: true
  59887. },
  59888. {
  59889. name: "Solar (Home Size)",
  59890. height: math.unit(3e6, "km"),
  59891. allForms: true,
  59892. default: true
  59893. },
  59894. ],
  59895. {
  59896. "magpie": {
  59897. name: "Magpie",
  59898. default: true
  59899. },
  59900. "hippogriff": {
  59901. name: "Hippogriff",
  59902. },
  59903. }
  59904. ))
  59905. characterMakers.push(() => makeCharacter(
  59906. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  59907. {
  59908. frontDressed: {
  59909. height: math.unit(1.8, "meters"),
  59910. weight: math.unit(90, "kg"),
  59911. name: "Front (Dressed)",
  59912. image: {
  59913. source: "./media/characters/thalia/front-dressed.svg",
  59914. extra: 478/402,
  59915. bottom: 55/533
  59916. }
  59917. },
  59918. backDressed: {
  59919. height: math.unit(1.8, "meters"),
  59920. weight: math.unit(90, "kg"),
  59921. name: "Back (Dressed)",
  59922. image: {
  59923. source: "./media/characters/thalia/back-dressed.svg",
  59924. extra: 500/424,
  59925. bottom: 15/515
  59926. }
  59927. },
  59928. frontNude: {
  59929. height: math.unit(1.8, "meters"),
  59930. weight: math.unit(90, "kg"),
  59931. name: "Front (Nude)",
  59932. image: {
  59933. source: "./media/characters/thalia/front-nude.svg",
  59934. extra: 478/402,
  59935. bottom: 55/533
  59936. }
  59937. },
  59938. backNude: {
  59939. height: math.unit(1.8, "meters"),
  59940. weight: math.unit(90, "kg"),
  59941. name: "Back (Nude)",
  59942. image: {
  59943. source: "./media/characters/thalia/back-nude.svg",
  59944. extra: 500/424,
  59945. bottom: 15/515
  59946. }
  59947. },
  59948. },
  59949. [
  59950. {
  59951. name: "Incognito",
  59952. height: math.unit(3, "meters")
  59953. },
  59954. {
  59955. name: "Macro",
  59956. height: math.unit(500, "meters")
  59957. },
  59958. {
  59959. name: "Mega",
  59960. height: math.unit(5, "km")
  59961. },
  59962. {
  59963. name: "Mega+",
  59964. height: math.unit(30, "km")
  59965. },
  59966. {
  59967. name: "Giga",
  59968. height: math.unit(350, "km")
  59969. },
  59970. {
  59971. name: "Giga+",
  59972. height: math.unit(4000, "km")
  59973. },
  59974. {
  59975. name: "Terra",
  59976. height: math.unit(35000, "km")
  59977. },
  59978. {
  59979. name: "Original Size",
  59980. height: math.unit(130000, "km")
  59981. },
  59982. {
  59983. name: "Solar (Home Size)",
  59984. height: math.unit(4e6, "km"),
  59985. default: true
  59986. },
  59987. ]
  59988. ))
  59989. characterMakers.push(() => makeCharacter(
  59990. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  59991. {
  59992. front: {
  59993. height: math.unit(1.8, "meters"),
  59994. weight: math.unit(95, "kg"),
  59995. name: "Front",
  59996. image: {
  59997. source: "./media/characters/shango/front.svg",
  59998. extra: 1925/1774,
  59999. bottom: 67/1992
  60000. }
  60001. },
  60002. back: {
  60003. height: math.unit(1.8, "meters"),
  60004. weight: math.unit(95, "kg"),
  60005. name: "Back",
  60006. image: {
  60007. source: "./media/characters/shango/back.svg",
  60008. extra: 1915/1766,
  60009. bottom: 52/1967
  60010. }
  60011. },
  60012. frontLewd: {
  60013. height: math.unit(1.8, "meters"),
  60014. weight: math.unit(95, "kg"),
  60015. name: "Front (Lewd)",
  60016. image: {
  60017. source: "./media/characters/shango/front-lewd.svg",
  60018. extra: 1925/1774,
  60019. bottom: 67/1992
  60020. }
  60021. },
  60022. backLewd: {
  60023. height: math.unit(1.8, "meters"),
  60024. weight: math.unit(95, "kg"),
  60025. name: "Back (Lewd)",
  60026. image: {
  60027. source: "./media/characters/shango/back-lewd.svg",
  60028. extra: 1915/1766,
  60029. bottom: 52/1967
  60030. }
  60031. },
  60032. maw: {
  60033. height: math.unit(1.64, "feet"),
  60034. name: "Maw",
  60035. image: {
  60036. source: "./media/characters/shango/maw.svg"
  60037. }
  60038. },
  60039. dick: {
  60040. height: math.unit(2.14, "feet"),
  60041. name: "Dick",
  60042. image: {
  60043. source: "./media/characters/shango/dick.svg"
  60044. }
  60045. },
  60046. },
  60047. [
  60048. {
  60049. name: "Incognito",
  60050. height: math.unit(1.8, "meters")
  60051. },
  60052. {
  60053. name: "Home Size",
  60054. height: math.unit(60, "meters"),
  60055. default: true
  60056. },
  60057. {
  60058. name: "Macro",
  60059. height: math.unit(450, "meters")
  60060. },
  60061. {
  60062. name: "Mega",
  60063. height: math.unit(6, "km")
  60064. },
  60065. {
  60066. name: "Mega+",
  60067. height: math.unit(35, "km")
  60068. },
  60069. {
  60070. name: "Giga",
  60071. height: math.unit(500, "km")
  60072. },
  60073. {
  60074. name: "Giga+",
  60075. height: math.unit(5000, "km")
  60076. },
  60077. {
  60078. name: "Terra",
  60079. height: math.unit(60000, "km")
  60080. },
  60081. {
  60082. name: "Terra+",
  60083. height: math.unit(400000, "km")
  60084. },
  60085. ]
  60086. ))
  60087. characterMakers.push(() => makeCharacter(
  60088. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  60089. {
  60090. front: {
  60091. height: math.unit(2, "meters"),
  60092. weight: math.unit(95, "kg"),
  60093. name: "Front",
  60094. image: {
  60095. source: "./media/characters/osiris-gryphon/front.svg",
  60096. extra: 1508/1313,
  60097. bottom: 87/1595
  60098. }
  60099. },
  60100. back: {
  60101. height: math.unit(2, "meters"),
  60102. weight: math.unit(95, "kg"),
  60103. name: "Back",
  60104. image: {
  60105. source: "./media/characters/osiris-gryphon/back.svg",
  60106. extra: 1436/1309,
  60107. bottom: 64/1500
  60108. }
  60109. },
  60110. frontLewd: {
  60111. height: math.unit(2, "meters"),
  60112. weight: math.unit(95, "kg"),
  60113. name: "Front (Lewd)",
  60114. image: {
  60115. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  60116. extra: 1508/1313,
  60117. bottom: 87/1595
  60118. }
  60119. },
  60120. wing: {
  60121. height: math.unit(6.3333, "feet"),
  60122. name: "Wing",
  60123. image: {
  60124. source: "./media/characters/osiris-gryphon/wing.svg"
  60125. }
  60126. },
  60127. },
  60128. [
  60129. {
  60130. name: "Incognito",
  60131. height: math.unit(2, "meters")
  60132. },
  60133. {
  60134. name: "Home Size",
  60135. height: math.unit(30, "meters"),
  60136. default: true
  60137. },
  60138. {
  60139. name: "Macro",
  60140. height: math.unit(100, "meters")
  60141. },
  60142. {
  60143. name: "Macro+",
  60144. height: math.unit(350, "meters")
  60145. },
  60146. {
  60147. name: "Mega",
  60148. height: math.unit(40, "km")
  60149. },
  60150. {
  60151. name: "Giga",
  60152. height: math.unit(300, "km")
  60153. },
  60154. {
  60155. name: "Giga+",
  60156. height: math.unit(2000, "km")
  60157. },
  60158. {
  60159. name: "Terra",
  60160. height: math.unit(30000, "km")
  60161. },
  60162. ]
  60163. ))
  60164. characterMakers.push(() => makeCharacter(
  60165. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  60166. {
  60167. front: {
  60168. height: math.unit(2.5, "meters"),
  60169. weight: math.unit(200, "kg"),
  60170. name: "Front",
  60171. image: {
  60172. source: "./media/characters/atlas-dragon/front.svg",
  60173. extra: 745/462,
  60174. bottom: 36/781
  60175. }
  60176. },
  60177. back: {
  60178. height: math.unit(2.5, "meters"),
  60179. weight: math.unit(200, "kg"),
  60180. name: "Back",
  60181. image: {
  60182. source: "./media/characters/atlas-dragon/back.svg",
  60183. extra: 848/822,
  60184. bottom: 57/905
  60185. }
  60186. },
  60187. frontLewd: {
  60188. height: math.unit(2.5, "meters"),
  60189. weight: math.unit(200, "kg"),
  60190. name: "Front (Lewd)",
  60191. image: {
  60192. source: "./media/characters/atlas-dragon/front-lewd.svg",
  60193. extra: 745/462,
  60194. bottom: 36/781
  60195. }
  60196. },
  60197. backLewd: {
  60198. height: math.unit(2.5, "meters"),
  60199. weight: math.unit(200, "kg"),
  60200. name: "Back (Lewd)",
  60201. image: {
  60202. source: "./media/characters/atlas-dragon/back-lewd.svg",
  60203. extra: 848/822,
  60204. bottom: 57/905
  60205. }
  60206. },
  60207. },
  60208. [
  60209. {
  60210. name: "Incognito",
  60211. height: math.unit(2.5, "meters")
  60212. },
  60213. {
  60214. name: "Small Macro",
  60215. height: math.unit(50, "meters")
  60216. },
  60217. {
  60218. name: "Macro",
  60219. height: math.unit(350, "meters")
  60220. },
  60221. {
  60222. name: "Mega",
  60223. height: math.unit(5.5, "kilometers")
  60224. },
  60225. {
  60226. name: "Mega+",
  60227. height: math.unit(50, "km")
  60228. },
  60229. {
  60230. name: "Giga",
  60231. height: math.unit(350, "km")
  60232. },
  60233. {
  60234. name: "Giga+",
  60235. height: math.unit(2000, "km")
  60236. },
  60237. {
  60238. name: "Giga++",
  60239. height: math.unit(6500, "km")
  60240. },
  60241. {
  60242. name: "Terra",
  60243. height: math.unit(30000, "km")
  60244. },
  60245. {
  60246. name: "Terra+",
  60247. height: math.unit(250000, "km")
  60248. },
  60249. {
  60250. name: "True Size",
  60251. height: math.unit(100, "multiverses"),
  60252. default: true
  60253. },
  60254. ]
  60255. ))
  60256. characterMakers.push(() => makeCharacter(
  60257. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  60258. {
  60259. front: {
  60260. height: math.unit(1.8, "m"),
  60261. weight: math.unit(120, "kg"),
  60262. name: "Front",
  60263. image: {
  60264. source: "./media/characters/chey/front.svg",
  60265. extra: 1359/1270,
  60266. bottom: 18/1377
  60267. }
  60268. },
  60269. arm: {
  60270. height: math.unit(2.05, "feet"),
  60271. name: "Arm",
  60272. image: {
  60273. source: "./media/characters/chey/arm.svg"
  60274. }
  60275. },
  60276. head: {
  60277. height: math.unit(1.89, "feet"),
  60278. name: "Head",
  60279. image: {
  60280. source: "./media/characters/chey/head.svg"
  60281. }
  60282. },
  60283. },
  60284. [
  60285. {
  60286. name: "Original Size",
  60287. height: math.unit(5, "cm")
  60288. },
  60289. {
  60290. name: "Incognito Size",
  60291. height: math.unit(2.4, "m")
  60292. },
  60293. {
  60294. name: "Home Size",
  60295. height: math.unit(200, "meters"),
  60296. default: true
  60297. },
  60298. {
  60299. name: "Mega",
  60300. height: math.unit(2, "km")
  60301. },
  60302. {
  60303. name: "Giga (Preferred Size)",
  60304. height: math.unit(2000, "km")
  60305. },
  60306. {
  60307. name: "Giga+",
  60308. height: math.unit(6000, "km")
  60309. },
  60310. {
  60311. name: "Terra",
  60312. height: math.unit(17000, "km")
  60313. },
  60314. {
  60315. name: "Terra+",
  60316. height: math.unit(75000, "km")
  60317. },
  60318. {
  60319. name: "Terra++",
  60320. height: math.unit(225000, "km")
  60321. },
  60322. ]
  60323. ))
  60324. characterMakers.push(() => makeCharacter(
  60325. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  60326. {
  60327. side: {
  60328. height: math.unit(7.8, "meters"),
  60329. name: "Side",
  60330. image: {
  60331. source: "./media/characters/ragnarok/side.svg",
  60332. extra: 725/621,
  60333. bottom: 72/797
  60334. }
  60335. },
  60336. },
  60337. [
  60338. {
  60339. name: "Normal",
  60340. height: math.unit(7.8, "meters"),
  60341. default: true
  60342. },
  60343. ]
  60344. ))
  60345. characterMakers.push(() => makeCharacter(
  60346. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  60347. {
  60348. hyena_front: {
  60349. height: math.unit(2.1, "meters"),
  60350. weight: math.unit(110, "kg"),
  60351. name: "Front",
  60352. image: {
  60353. source: "./media/characters/nima/hyena-front.svg",
  60354. extra: 1904/1796,
  60355. bottom: 67/1971
  60356. },
  60357. form: "hyena",
  60358. },
  60359. hyena_back: {
  60360. height: math.unit(2.1, "meters"),
  60361. weight: math.unit(110, "kg"),
  60362. name: "Back",
  60363. image: {
  60364. source: "./media/characters/nima/hyena-back.svg",
  60365. extra: 1964/1884,
  60366. bottom: 35/1999
  60367. },
  60368. form: "hyena",
  60369. },
  60370. shark_front: {
  60371. height: math.unit(1.95, "meters"),
  60372. weight: math.unit(110, "kg"),
  60373. name: "Front",
  60374. image: {
  60375. source: "./media/characters/nima/shark-front.svg",
  60376. extra: 2238/2013,
  60377. bottom: 0/223
  60378. },
  60379. form: "shark",
  60380. },
  60381. paw: {
  60382. height: math.unit(1, "feet"),
  60383. name: "Paw",
  60384. image: {
  60385. source: "./media/characters/nima/paw.svg"
  60386. }
  60387. },
  60388. circlet: {
  60389. height: math.unit(0.3, "feet"),
  60390. name: "Circlet",
  60391. image: {
  60392. source: "./media/characters/nima/circlet.svg"
  60393. }
  60394. },
  60395. necklace: {
  60396. height: math.unit(1.2, "feet"),
  60397. name: "Necklace",
  60398. image: {
  60399. source: "./media/characters/nima/necklace.svg"
  60400. }
  60401. },
  60402. bracelet: {
  60403. height: math.unit(0.51, "feet"),
  60404. name: "Bracelet",
  60405. image: {
  60406. source: "./media/characters/nima/bracelet.svg"
  60407. }
  60408. },
  60409. armband: {
  60410. height: math.unit(1.3, "feet"),
  60411. name: "Armband",
  60412. image: {
  60413. source: "./media/characters/nima/armband.svg"
  60414. }
  60415. },
  60416. },
  60417. [
  60418. {
  60419. name: "Incognito",
  60420. height: math.unit(2.1, "meters"),
  60421. allForms: true
  60422. },
  60423. {
  60424. name: "Small Macro",
  60425. height: math.unit(50, "meters"),
  60426. allForms: true
  60427. },
  60428. {
  60429. name: "Macro",
  60430. height: math.unit(200, "meters"),
  60431. allForms: true
  60432. },
  60433. {
  60434. name: "Mega",
  60435. height: math.unit(2.5, "km"),
  60436. allForms: true
  60437. },
  60438. {
  60439. name: "Mega+",
  60440. height: math.unit(30, "km"),
  60441. allForms: true
  60442. },
  60443. {
  60444. name: "Giga (Home Size)",
  60445. height: math.unit(400, "km"),
  60446. allForms: true,
  60447. default: true
  60448. },
  60449. {
  60450. name: "Giga+",
  60451. height: math.unit(2500, "km"),
  60452. allForms: true
  60453. },
  60454. {
  60455. name: "Giga++",
  60456. height: math.unit(8000, "km"),
  60457. allForms: true
  60458. },
  60459. {
  60460. name: "Terra",
  60461. height: math.unit(20000, "km"),
  60462. allForms: true
  60463. },
  60464. {
  60465. name: "Terra+",
  60466. height: math.unit(70000, "km"),
  60467. allForms: true
  60468. },
  60469. {
  60470. name: "Terra++",
  60471. height: math.unit(600000, "km"),
  60472. allForms: true
  60473. },
  60474. {
  60475. name: "Galactic",
  60476. height: math.unit(40, "galaxies"),
  60477. allForms: true
  60478. },
  60479. {
  60480. name: "Universal",
  60481. height: math.unit(40, "universes"),
  60482. allForms: true
  60483. },
  60484. ],
  60485. {
  60486. "hyena": {
  60487. name: "Hyena",
  60488. default: true
  60489. },
  60490. "shark": {
  60491. name: "Shark",
  60492. },
  60493. }
  60494. ))
  60495. characterMakers.push(() => makeCharacter(
  60496. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  60497. {
  60498. anthro_front: {
  60499. height: math.unit(1.5, "meters"),
  60500. name: "Front",
  60501. image: {
  60502. source: "./media/characters/adelaide/anthro-front.svg",
  60503. extra: 860/783,
  60504. bottom: 60/920
  60505. },
  60506. form: "anthro",
  60507. default: true
  60508. },
  60509. hand: {
  60510. height: math.unit(0.65, "feet"),
  60511. name: "Hand",
  60512. image: {
  60513. source: "./media/characters/adelaide/hand.svg"
  60514. },
  60515. form: "anthro"
  60516. },
  60517. foot: {
  60518. height: math.unit(1.38 * 259 / 314, "feet"),
  60519. name: "Foot",
  60520. image: {
  60521. source: "./media/characters/adelaide/foot.svg",
  60522. extra: 259/259,
  60523. bottom: 55/314
  60524. },
  60525. form: "anthro"
  60526. },
  60527. feather: {
  60528. height: math.unit(0.85, "feet"),
  60529. name: "Feather",
  60530. image: {
  60531. source: "./media/characters/adelaide/feather.svg"
  60532. },
  60533. form: "anthro"
  60534. },
  60535. feral_side: {
  60536. height: math.unit(1, "meters"),
  60537. name: "Side",
  60538. image: {
  60539. source: "./media/characters/adelaide/feral-side.svg",
  60540. extra: 550/467,
  60541. bottom: 37/587
  60542. },
  60543. form: "feral",
  60544. default: true
  60545. },
  60546. feral_hand: {
  60547. height: math.unit(0.58, "feet"),
  60548. name: "Hand",
  60549. image: {
  60550. source: "./media/characters/adelaide/hand.svg"
  60551. },
  60552. form: "feral"
  60553. },
  60554. feral_foot: {
  60555. height: math.unit(1.2 * 259 / 314, "feet"),
  60556. name: "Foot",
  60557. image: {
  60558. source: "./media/characters/adelaide/foot.svg",
  60559. extra: 259/259,
  60560. bottom: 55/314
  60561. },
  60562. form: "feral"
  60563. },
  60564. feral_feather: {
  60565. height: math.unit(0.63, "feet"),
  60566. name: "Feather",
  60567. image: {
  60568. source: "./media/characters/adelaide/feather.svg"
  60569. },
  60570. form: "feral"
  60571. },
  60572. },
  60573. [
  60574. {
  60575. name: "Normal",
  60576. height: math.unit(1.5, "meters"),
  60577. form: "anthro",
  60578. default: true
  60579. },
  60580. {
  60581. name: "Normal",
  60582. height: math.unit(1, "meters"),
  60583. form: "feral",
  60584. default: true
  60585. },
  60586. ],
  60587. {
  60588. "anthro": {
  60589. name: "Anthro",
  60590. default: true
  60591. },
  60592. "feral": {
  60593. name: "Feral",
  60594. },
  60595. }
  60596. ))
  60597. characterMakers.push(() => makeCharacter(
  60598. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  60599. {
  60600. front: {
  60601. height: math.unit(2.5, "meters"),
  60602. name: "Front",
  60603. image: {
  60604. source: "./media/characters/goa/front.svg",
  60605. extra: 1109/1013,
  60606. bottom: 150/1259
  60607. }
  60608. },
  60609. },
  60610. [
  60611. {
  60612. name: "Normal",
  60613. height: math.unit(2.5, "meters"),
  60614. default: true
  60615. },
  60616. ]
  60617. ))
  60618. characterMakers.push(() => makeCharacter(
  60619. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  60620. {
  60621. front: {
  60622. height: math.unit(2, "meters"),
  60623. weight: math.unit(100, "kg"),
  60624. name: "Front",
  60625. image: {
  60626. source: "./media/characters/kiki-weavile/front.svg",
  60627. extra: 357/332,
  60628. bottom: 60/417
  60629. }
  60630. },
  60631. },
  60632. [
  60633. {
  60634. name: "Normal",
  60635. height: math.unit(2, "meters"),
  60636. default: true
  60637. },
  60638. ]
  60639. ))
  60640. characterMakers.push(() => makeCharacter(
  60641. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  60642. {
  60643. side: {
  60644. height: math.unit(1.6, "meters"),
  60645. name: "Side",
  60646. image: {
  60647. source: "./media/characters/liza/side.svg",
  60648. extra: 943/915,
  60649. bottom: 72/1015
  60650. }
  60651. },
  60652. },
  60653. [
  60654. {
  60655. name: "Normal",
  60656. height: math.unit(1.6, "meters"),
  60657. default: true
  60658. },
  60659. ]
  60660. ))
  60661. characterMakers.push(() => makeCharacter(
  60662. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  60663. {
  60664. side: {
  60665. height: math.unit(2.5, "meters"),
  60666. preyCapacity: math.unit(1, "people"),
  60667. name: "Side",
  60668. image: {
  60669. source: "./media/characters/persephone-sweetbreath/side.svg",
  60670. extra: 796/700,
  60671. bottom: 44/840
  60672. }
  60673. },
  60674. sideVore: {
  60675. height: math.unit(2.5, "meters"),
  60676. preyCapacity: math.unit(1, "people"),
  60677. name: "Side (Full)",
  60678. image: {
  60679. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  60680. extra: 796/700,
  60681. bottom: 44/840
  60682. }
  60683. },
  60684. },
  60685. [
  60686. {
  60687. name: "Normal",
  60688. height: math.unit(2.5, "meters"),
  60689. default: true
  60690. },
  60691. ]
  60692. ))
  60693. characterMakers.push(() => makeCharacter(
  60694. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  60695. {
  60696. front: {
  60697. height: math.unit(32, "meters"),
  60698. name: "Front",
  60699. image: {
  60700. source: "./media/characters/pierce/front.svg",
  60701. extra: 1695/1475,
  60702. bottom: 185/1880
  60703. }
  60704. },
  60705. side: {
  60706. height: math.unit(32, "meters"),
  60707. name: "Side",
  60708. image: {
  60709. source: "./media/characters/pierce/side.svg",
  60710. extra: 974/859,
  60711. bottom: 43/1017
  60712. }
  60713. },
  60714. frontWingless: {
  60715. height: math.unit(32, "meters"),
  60716. name: "Front (Wingless)",
  60717. image: {
  60718. source: "./media/characters/pierce/front-wingless.svg",
  60719. extra: 1695/1475,
  60720. bottom: 185/1880
  60721. }
  60722. },
  60723. sideWingless: {
  60724. height: math.unit(32, "meters"),
  60725. name: "Side (Wingless)",
  60726. image: {
  60727. source: "./media/characters/pierce/side-wingless.svg",
  60728. extra: 974/859,
  60729. bottom: 43/1017
  60730. }
  60731. },
  60732. maw: {
  60733. height: math.unit(19.3, "meters"),
  60734. name: "Maw",
  60735. image: {
  60736. source: "./media/characters/pierce/maw.svg"
  60737. }
  60738. },
  60739. },
  60740. [
  60741. {
  60742. name: "Small",
  60743. height: math.unit(8.5, "meters")
  60744. },
  60745. {
  60746. name: "Normal",
  60747. height: math.unit(32, "meters"),
  60748. default: true
  60749. },
  60750. ]
  60751. ))
  60752. characterMakers.push(() => makeCharacter(
  60753. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  60754. {
  60755. front: {
  60756. height: math.unit(2.3, "meters"),
  60757. weight: math.unit(165, "kg"),
  60758. name: "Front",
  60759. image: {
  60760. source: "./media/characters/shira/front.svg",
  60761. extra: 924/919,
  60762. bottom: 17/941
  60763. },
  60764. form: "cobra",
  60765. default: true
  60766. },
  60767. back: {
  60768. height: math.unit(2.3, "meters"),
  60769. weight: math.unit(165, "kg"),
  60770. name: "Back",
  60771. image: {
  60772. source: "./media/characters/shira/back.svg",
  60773. extra: 928/922,
  60774. bottom: 18/946
  60775. },
  60776. form: "cobra"
  60777. },
  60778. frontLewd: {
  60779. height: math.unit(2.3, "meters"),
  60780. weight: math.unit(165, "kg"),
  60781. name: "Front (Lewd)",
  60782. image: {
  60783. source: "./media/characters/shira/front-lewd.svg",
  60784. extra: 924/919,
  60785. bottom: 17/941
  60786. },
  60787. form: "cobra"
  60788. },
  60789. backLewd: {
  60790. height: math.unit(2.3, "meters"),
  60791. weight: math.unit(165, "kg"),
  60792. name: "Back (Lewd)",
  60793. image: {
  60794. source: "./media/characters/shira/back-lewd.svg",
  60795. extra: 928/922,
  60796. bottom: 18/946
  60797. },
  60798. form: "cobra"
  60799. },
  60800. maw: {
  60801. height: math.unit(1.14, "feet"),
  60802. name: "Maw",
  60803. image: {
  60804. source: "./media/characters/shira/maw.svg"
  60805. },
  60806. form: "cobra"
  60807. },
  60808. magma_front: {
  60809. height: math.unit(2.3, "meters"),
  60810. weight: math.unit(165, "kg"),
  60811. name: "Front",
  60812. image: {
  60813. source: "./media/characters/shira/magma-front.svg",
  60814. extra: 1870/1693,
  60815. bottom: 24/1894
  60816. },
  60817. form: "magma",
  60818. },
  60819. magma_back: {
  60820. height: math.unit(2.3, "meters"),
  60821. weight: math.unit(165, "kg"),
  60822. name: "Back",
  60823. image: {
  60824. source: "./media/characters/shira/magma-back.svg",
  60825. extra: 1918/1756,
  60826. bottom: 46/1964
  60827. },
  60828. form: "magma",
  60829. },
  60830. },
  60831. [
  60832. {
  60833. name: "Incognito",
  60834. height: math.unit(2.3, "meters"),
  60835. allForms: true
  60836. },
  60837. {
  60838. name: "Home Size",
  60839. height: math.unit(150, "meters"),
  60840. default: true,
  60841. allForms: true
  60842. },
  60843. {
  60844. name: "Macro",
  60845. height: math.unit(2, "km"),
  60846. allForms: true
  60847. },
  60848. {
  60849. name: "Mega",
  60850. height: math.unit(30, "km"),
  60851. allForms: true
  60852. },
  60853. {
  60854. name: "Giga",
  60855. height: math.unit(450, "km"),
  60856. allForms: true
  60857. },
  60858. {
  60859. name: "Giga+",
  60860. height: math.unit(3000, "km"),
  60861. allForms: true
  60862. },
  60863. {
  60864. name: "Giga++",
  60865. height: math.unit(6000, "km"),
  60866. allForms: true
  60867. },
  60868. {
  60869. name: "Terra",
  60870. height: math.unit(80000, "km"),
  60871. allForms: true
  60872. },
  60873. {
  60874. name: "Terra+",
  60875. height: math.unit(350000, "km"),
  60876. allForms: true
  60877. },
  60878. {
  60879. name: "Solar",
  60880. height: math.unit(1e6, "km"),
  60881. allForms: true
  60882. },
  60883. ],
  60884. {
  60885. "cobra": {
  60886. name: "Cobra",
  60887. default: true
  60888. },
  60889. "magma": {
  60890. name: "Magma Dragon",
  60891. },
  60892. }
  60893. ))
  60894. characterMakers.push(() => makeCharacter(
  60895. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  60896. {
  60897. front: {
  60898. height: math.unit(2, "meters"),
  60899. weight: math.unit(160, "kg"),
  60900. name: "Front",
  60901. image: {
  60902. source: "./media/characters/daxerios/front.svg",
  60903. extra: 1334/1277,
  60904. bottom: 45/1379
  60905. }
  60906. },
  60907. frontLewd: {
  60908. height: math.unit(2, "meters"),
  60909. weight: math.unit(160, "kg"),
  60910. name: "Front (Lewd)",
  60911. image: {
  60912. source: "./media/characters/daxerios/front-lewd.svg",
  60913. extra: 1334/1277,
  60914. bottom: 45/1379
  60915. }
  60916. },
  60917. dick: {
  60918. height: math.unit(2.35, "feet"),
  60919. name: "Dick",
  60920. image: {
  60921. source: "./media/characters/daxerios/dick.svg"
  60922. }
  60923. },
  60924. },
  60925. [
  60926. {
  60927. name: "\"Small\"",
  60928. height: math.unit(5, "meters")
  60929. },
  60930. {
  60931. name: "Original Size",
  60932. height: math.unit(500, "meters"),
  60933. default: true
  60934. },
  60935. {
  60936. name: "Mega",
  60937. height: math.unit(2, "km")
  60938. },
  60939. {
  60940. name: "Mega+",
  60941. height: math.unit(35, "km")
  60942. },
  60943. {
  60944. name: "Giga",
  60945. height: math.unit(250, "km")
  60946. },
  60947. {
  60948. name: "Giga+",
  60949. height: math.unit(3000, "km")
  60950. },
  60951. {
  60952. name: "Terra",
  60953. height: math.unit(25000, "km")
  60954. },
  60955. {
  60956. name: "Terra+",
  60957. height: math.unit(300000, "km")
  60958. },
  60959. {
  60960. name: "Solar",
  60961. height: math.unit(1e6, "km")
  60962. },
  60963. ]
  60964. ))
  60965. characterMakers.push(() => makeCharacter(
  60966. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  60967. {
  60968. front: {
  60969. height: math.unit(8 + 4/12, "feet"),
  60970. weight: math.unit(464, "lb"),
  60971. name: "Front",
  60972. image: {
  60973. source: "./media/characters/caveat/front.svg",
  60974. extra: 1861/1678,
  60975. bottom: 40/1901
  60976. }
  60977. },
  60978. },
  60979. [
  60980. {
  60981. name: "Normal",
  60982. height: math.unit(8 + 4/12, "feet"),
  60983. default: true
  60984. },
  60985. ]
  60986. ))
  60987. characterMakers.push(() => makeCharacter(
  60988. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  60989. {
  60990. front: {
  60991. height: math.unit(12, "feet"),
  60992. weight: math.unit(1800, "lb"),
  60993. name: "Front",
  60994. image: {
  60995. source: "./media/characters/centbair/front.svg",
  60996. extra: 781/663,
  60997. bottom: 25/806
  60998. }
  60999. },
  61000. frontNsfw: {
  61001. height: math.unit(12, "feet"),
  61002. weight: math.unit(1800, "lb"),
  61003. name: "Front (NSFW)",
  61004. image: {
  61005. source: "./media/characters/centbair/front-nsfw.svg",
  61006. extra: 781/663,
  61007. bottom: 25/806
  61008. }
  61009. },
  61010. back: {
  61011. height: math.unit(12, "feet"),
  61012. weight: math.unit(1800, "lb"),
  61013. name: "Back",
  61014. image: {
  61015. source: "./media/characters/centbair/back.svg",
  61016. extra: 808/761,
  61017. bottom: 19/827
  61018. }
  61019. },
  61020. dick: {
  61021. height: math.unit(6.5, "feet"),
  61022. name: "Dick",
  61023. image: {
  61024. source: "./media/characters/centbair/dick.svg"
  61025. }
  61026. },
  61027. slit: {
  61028. height: math.unit(3.25, "feet"),
  61029. name: "Slit",
  61030. image: {
  61031. source: "./media/characters/centbair/slit.svg"
  61032. }
  61033. },
  61034. },
  61035. [
  61036. {
  61037. name: "Normal",
  61038. height: math.unit(12, "feet"),
  61039. default: true
  61040. },
  61041. ]
  61042. ))
  61043. characterMakers.push(() => makeCharacter(
  61044. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  61045. {
  61046. front: {
  61047. height: math.unit(5 + 7/12, "feet"),
  61048. name: "Front",
  61049. image: {
  61050. source: "./media/characters/andy/front.svg",
  61051. extra: 634/588,
  61052. bottom: 36/670
  61053. },
  61054. extraAttributes: {
  61055. "pawLength": {
  61056. name: "Paw Length",
  61057. power: 1,
  61058. type: "length",
  61059. base: math.unit(1, "feet")
  61060. },
  61061. }
  61062. },
  61063. side: {
  61064. height: math.unit(5 + 7/12, "feet"),
  61065. name: "Side",
  61066. image: {
  61067. source: "./media/characters/andy/side.svg",
  61068. extra: 641/596,
  61069. bottom: 34/675
  61070. },
  61071. extraAttributes: {
  61072. "pawLength": {
  61073. name: "Paw Length",
  61074. power: 1,
  61075. type: "length",
  61076. base: math.unit(1, "feet")
  61077. },
  61078. }
  61079. },
  61080. back: {
  61081. height: math.unit(5 + 7/12, "feet"),
  61082. name: "Back",
  61083. image: {
  61084. source: "./media/characters/andy/back.svg",
  61085. extra: 618/583,
  61086. bottom: 39/657
  61087. },
  61088. extraAttributes: {
  61089. "pawLength": {
  61090. name: "Paw Length",
  61091. power: 1,
  61092. type: "length",
  61093. base: math.unit(1, "feet")
  61094. },
  61095. }
  61096. },
  61097. paw: {
  61098. height: math.unit(1.13, "feet"),
  61099. name: "Paw",
  61100. image: {
  61101. source: "./media/characters/andy/paw.svg"
  61102. }
  61103. },
  61104. },
  61105. [
  61106. {
  61107. name: "Micro",
  61108. height: math.unit(4, "inches")
  61109. },
  61110. {
  61111. name: "Normal",
  61112. height: math.unit(5 + 7/12, "feet"),
  61113. default: true
  61114. },
  61115. {
  61116. name: "Macro",
  61117. height: math.unit(390.42, "feet")
  61118. },
  61119. ]
  61120. ))
  61121. characterMakers.push(() => makeCharacter(
  61122. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  61123. {
  61124. front: {
  61125. height: math.unit(7, "feet"),
  61126. weight: math.unit(250, "lb"),
  61127. name: "Front",
  61128. image: {
  61129. source: "./media/characters/vix-titan/front.svg",
  61130. extra: 460/428,
  61131. bottom: 15/475
  61132. },
  61133. extraAttributes: {
  61134. "pawWidth": {
  61135. name: "Paw Width",
  61136. power: 1,
  61137. type: "length",
  61138. base: math.unit(0.75, "feet")
  61139. },
  61140. }
  61141. },
  61142. },
  61143. [
  61144. {
  61145. name: "Normal",
  61146. height: math.unit(7, "feet"),
  61147. default: true
  61148. },
  61149. {
  61150. name: "Giant",
  61151. height: math.unit(1500, "feet")
  61152. },
  61153. {
  61154. name: "Mega",
  61155. height: math.unit(10, "miles")
  61156. },
  61157. {
  61158. name: "Giga",
  61159. height: math.unit(150, "miles")
  61160. },
  61161. {
  61162. name: "Tera",
  61163. height: math.unit(144000, "miles")
  61164. },
  61165. ]
  61166. ))
  61167. characterMakers.push(() => makeCharacter(
  61168. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  61169. {
  61170. front: {
  61171. height: math.unit(6 + 2/12, "feet"),
  61172. name: "Front",
  61173. image: {
  61174. source: "./media/characters/reiku/front.svg",
  61175. extra: 1910/1757,
  61176. bottom: 103/2013
  61177. },
  61178. extraAttributes: {
  61179. "thighThickness": {
  61180. name: "Thigh Thickness",
  61181. power: 1,
  61182. type: "length",
  61183. base: math.unit(1.12, "feet")
  61184. },
  61185. "assThickness": {
  61186. name: "Ass Thickness",
  61187. power: 1,
  61188. type: "length",
  61189. base: math.unit(1.12*2, "feet")
  61190. },
  61191. }
  61192. },
  61193. side: {
  61194. height: math.unit(6 + 2/12, "feet"),
  61195. name: "Side",
  61196. image: {
  61197. source: "./media/characters/reiku/side.svg",
  61198. extra: 1846/1748,
  61199. bottom: 99/1945
  61200. },
  61201. extraAttributes: {
  61202. "thighThickness": {
  61203. name: "Thigh Thickness",
  61204. power: 1,
  61205. type: "length",
  61206. base: math.unit(1.12, "feet")
  61207. },
  61208. "assThickness": {
  61209. name: "Ass Thickness",
  61210. power: 1,
  61211. type: "length",
  61212. base: math.unit(1.12*2, "feet")
  61213. },
  61214. }
  61215. },
  61216. back: {
  61217. height: math.unit(6 + 2/12, "feet"),
  61218. name: "Back",
  61219. image: {
  61220. source: "./media/characters/reiku/back.svg",
  61221. extra: 1941/1786,
  61222. bottom: 34/1975
  61223. },
  61224. extraAttributes: {
  61225. "thighThickness": {
  61226. name: "Thigh Thickness",
  61227. power: 1,
  61228. type: "length",
  61229. base: math.unit(1.12, "feet")
  61230. },
  61231. "assThickness": {
  61232. name: "Ass Thickness",
  61233. power: 1,
  61234. type: "length",
  61235. base: math.unit(1.12*2, "feet")
  61236. },
  61237. }
  61238. },
  61239. head: {
  61240. height: math.unit(1.8, "feet"),
  61241. name: "Head",
  61242. image: {
  61243. source: "./media/characters/reiku/head.svg"
  61244. }
  61245. },
  61246. tailTop: {
  61247. height: math.unit(8.4, "feet"),
  61248. name: "Tail (Top)",
  61249. image: {
  61250. source: "./media/characters/reiku/tail-top.svg"
  61251. }
  61252. },
  61253. tailBottom: {
  61254. height: math.unit(8.4, "feet"),
  61255. name: "Tail (Bottom)",
  61256. image: {
  61257. source: "./media/characters/reiku/tail-bottom.svg"
  61258. }
  61259. },
  61260. foot: {
  61261. height: math.unit(2.6, "feet"),
  61262. name: "Foot",
  61263. image: {
  61264. source: "./media/characters/reiku/foot.svg"
  61265. }
  61266. },
  61267. footCurled: {
  61268. height: math.unit(2.3, "feet"),
  61269. name: "Foot (Curled)",
  61270. image: {
  61271. source: "./media/characters/reiku/foot-curled.svg"
  61272. }
  61273. },
  61274. footSide: {
  61275. height: math.unit(1.26, "feet"),
  61276. name: "Foot (Side)",
  61277. image: {
  61278. source: "./media/characters/reiku/foot-side.svg"
  61279. }
  61280. },
  61281. },
  61282. [
  61283. {
  61284. name: "Normal",
  61285. height: math.unit(6 + 2/12, "feet"),
  61286. default: true
  61287. },
  61288. ]
  61289. ))
  61290. characterMakers.push(() => makeCharacter(
  61291. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  61292. {
  61293. front: {
  61294. height: math.unit(7, "feet"),
  61295. weight: math.unit(500, "kg"),
  61296. name: "Front",
  61297. image: {
  61298. source: "./media/characters/cialda/front.svg",
  61299. extra: 912/745,
  61300. bottom: 55/967
  61301. }
  61302. },
  61303. },
  61304. [
  61305. {
  61306. name: "Normal",
  61307. height: math.unit(7, "feet"),
  61308. default: true
  61309. },
  61310. ]
  61311. ))
  61312. characterMakers.push(() => makeCharacter(
  61313. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  61314. {
  61315. side: {
  61316. height: math.unit(6, "feet"),
  61317. weight: math.unit(600, "lb"),
  61318. preyCapacity: math.unit(25, "liters"),
  61319. name: "Side",
  61320. image: {
  61321. source: "./media/characters/darkkin/side.svg",
  61322. extra: 1597/1447,
  61323. bottom: 101/1698
  61324. }
  61325. },
  61326. },
  61327. [
  61328. {
  61329. name: "Canon Height",
  61330. height: math.unit(568, "feet"),
  61331. default: true
  61332. },
  61333. ]
  61334. ))
  61335. characterMakers.push(() => makeCharacter(
  61336. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  61337. {
  61338. front: {
  61339. height: math.unit(6, "feet"),
  61340. weight: math.unit(1500, "lb"),
  61341. preyCapacity: math.unit(3, "people"),
  61342. name: "Front",
  61343. image: {
  61344. source: "./media/characters/livnia/front.svg",
  61345. extra: 934/932,
  61346. bottom: 83/1017
  61347. }
  61348. },
  61349. back: {
  61350. height: math.unit(6, "feet"),
  61351. weight: math.unit(1500, "lb"),
  61352. preyCapacity: math.unit(3, "people"),
  61353. name: "Back",
  61354. image: {
  61355. source: "./media/characters/livnia/back.svg",
  61356. extra: 916/915,
  61357. bottom: 58/974
  61358. }
  61359. },
  61360. head: {
  61361. height: math.unit(1.53, "feet"),
  61362. name: "Head",
  61363. image: {
  61364. source: "./media/characters/livnia/head.svg"
  61365. }
  61366. },
  61367. maw: {
  61368. height: math.unit(0.78, "feet"),
  61369. name: "Maw",
  61370. image: {
  61371. source: "./media/characters/livnia/maw.svg"
  61372. }
  61373. },
  61374. genitals: {
  61375. height: math.unit(0.35, "feet"),
  61376. name: "Genitals",
  61377. image: {
  61378. source: "./media/characters/livnia/genitals.svg"
  61379. }
  61380. },
  61381. },
  61382. [
  61383. {
  61384. name: "Normal",
  61385. height: math.unit(1000, "feet"),
  61386. default: true
  61387. },
  61388. ]
  61389. ))
  61390. characterMakers.push(() => makeCharacter(
  61391. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  61392. {
  61393. front: {
  61394. height: math.unit(4, "feet"),
  61395. weight: math.unit(73, "lb"),
  61396. name: "Front",
  61397. image: {
  61398. source: "./media/characters/hayaku/front.svg",
  61399. extra: 1011/888,
  61400. bottom: 33/1044
  61401. }
  61402. },
  61403. back: {
  61404. height: math.unit(4, "feet"),
  61405. weight: math.unit(73, "lb"),
  61406. name: "Back",
  61407. image: {
  61408. source: "./media/characters/hayaku/back.svg",
  61409. extra: 1040/930,
  61410. bottom: 20/1060
  61411. }
  61412. },
  61413. },
  61414. [
  61415. {
  61416. name: "Normal",
  61417. height: math.unit(4, "feet"),
  61418. default: true
  61419. },
  61420. ]
  61421. ))
  61422. characterMakers.push(() => makeCharacter(
  61423. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  61424. {
  61425. front: {
  61426. height: math.unit(6 + 7/12, "feet"),
  61427. weight: math.unit(300, "lb"),
  61428. name: "Front",
  61429. image: {
  61430. source: "./media/characters/athena-bryzant/front.svg",
  61431. extra: 870/835,
  61432. bottom: 33/903
  61433. }
  61434. },
  61435. back: {
  61436. height: math.unit(6 + 7/12, "feet"),
  61437. weight: math.unit(300, "lb"),
  61438. name: "Back",
  61439. image: {
  61440. source: "./media/characters/athena-bryzant/back.svg",
  61441. extra: 858/823,
  61442. bottom: 30/888
  61443. }
  61444. },
  61445. head: {
  61446. height: math.unit(2.38, "feet"),
  61447. name: "Head",
  61448. image: {
  61449. source: "./media/characters/athena-bryzant/head.svg"
  61450. }
  61451. },
  61452. wings: {
  61453. height: math.unit(2.85, "feet"),
  61454. name: "Wings",
  61455. image: {
  61456. source: "./media/characters/athena-bryzant/wings.svg"
  61457. }
  61458. },
  61459. },
  61460. [
  61461. {
  61462. name: "Normal",
  61463. height: math.unit(6 + 7/12, "feet"),
  61464. default: true
  61465. },
  61466. {
  61467. name: "Big",
  61468. height: math.unit(8, "feet")
  61469. },
  61470. {
  61471. name: "Very Big",
  61472. height: math.unit(11, "feet")
  61473. },
  61474. ]
  61475. ))
  61476. characterMakers.push(() => makeCharacter(
  61477. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  61478. {
  61479. side: {
  61480. height: math.unit(3, "meters"),
  61481. weight: math.unit(7500, "kg"),
  61482. preyCapacity: math.unit(1e12, "people"),
  61483. name: "Side",
  61484. image: {
  61485. source: "./media/characters/zel-kesh/side.svg",
  61486. extra: 910/407,
  61487. bottom: 147/1057
  61488. }
  61489. },
  61490. },
  61491. [
  61492. {
  61493. name: "Normal",
  61494. height: math.unit(3, "meters"),
  61495. default: true
  61496. },
  61497. ]
  61498. ))
  61499. characterMakers.push(() => makeCharacter(
  61500. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  61501. {
  61502. front: {
  61503. height: math.unit(2, "meters"),
  61504. weight: math.unit(95, "kg"),
  61505. name: "Front",
  61506. image: {
  61507. source: "./media/characters/kane-fox/front.svg",
  61508. extra: 945/888,
  61509. bottom: 27/972
  61510. }
  61511. },
  61512. back: {
  61513. height: math.unit(2, "meters"),
  61514. weight: math.unit(95, "kg"),
  61515. name: "Back",
  61516. image: {
  61517. source: "./media/characters/kane-fox/back.svg",
  61518. extra: 959/914,
  61519. bottom: 15/974
  61520. }
  61521. },
  61522. frontLewd: {
  61523. height: math.unit(2, "meters"),
  61524. weight: math.unit(95, "kg"),
  61525. name: "Front (Lewd)",
  61526. image: {
  61527. source: "./media/characters/kane-fox/front-lewd.svg",
  61528. extra: 945/888,
  61529. bottom: 27/972
  61530. }
  61531. },
  61532. },
  61533. [
  61534. {
  61535. name: "Home Size",
  61536. height: math.unit(2, "meters"),
  61537. default: true
  61538. },
  61539. {
  61540. name: "Macro",
  61541. height: math.unit(200, "meters")
  61542. },
  61543. {
  61544. name: "Small Mega",
  61545. height: math.unit(3, "km")
  61546. },
  61547. {
  61548. name: "Mega",
  61549. height: math.unit(50, "km")
  61550. },
  61551. {
  61552. name: "Giga",
  61553. height: math.unit(200, "km")
  61554. },
  61555. {
  61556. name: "Giga+",
  61557. height: math.unit(2500, "km")
  61558. },
  61559. {
  61560. name: "Terra",
  61561. height: math.unit(70000, "km")
  61562. },
  61563. {
  61564. name: "Terra+",
  61565. height: math.unit(150000, "km")
  61566. },
  61567. {
  61568. name: "Terra++",
  61569. height: math.unit(400000, "km")
  61570. },
  61571. ]
  61572. ))
  61573. characterMakers.push(() => makeCharacter(
  61574. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  61575. {
  61576. otter_front: {
  61577. height: math.unit(1.8, "meters"),
  61578. weight: math.unit(90, "kg"),
  61579. name: "Front",
  61580. image: {
  61581. source: "./media/characters/ayranus/otter-front.svg",
  61582. extra: 468/452,
  61583. bottom: 43/511
  61584. },
  61585. form: "otter",
  61586. },
  61587. otter_frontLewd: {
  61588. height: math.unit(1.8, "meters"),
  61589. weight: math.unit(90, "kg"),
  61590. name: "Front (Lewd)",
  61591. image: {
  61592. source: "./media/characters/ayranus/otter-front-lewd.svg",
  61593. extra: 468/452,
  61594. bottom: 43/511
  61595. },
  61596. form: "otter",
  61597. },
  61598. lionbat_front: {
  61599. height: math.unit(1.8, "meters"),
  61600. weight: math.unit(90, "kg"),
  61601. name: "Front (Lewd)",
  61602. image: {
  61603. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  61604. extra: 797/740,
  61605. bottom: 78/875
  61606. },
  61607. form: "lionbat",
  61608. },
  61609. paw: {
  61610. height: math.unit(1.5, "feet"),
  61611. name: "Paw",
  61612. image: {
  61613. source: "./media/characters/ayranus/paw.svg"
  61614. },
  61615. },
  61616. },
  61617. [
  61618. {
  61619. name: "Incognito",
  61620. height: math.unit(1.8, "meters"),
  61621. allForms: true
  61622. },
  61623. {
  61624. name: "Macro",
  61625. height: math.unit(60, "meters"),
  61626. allForms: true
  61627. },
  61628. {
  61629. name: "Macro+",
  61630. height: math.unit(200, "meters"),
  61631. allForms: true
  61632. },
  61633. {
  61634. name: "Mega",
  61635. height: math.unit(35, "km"),
  61636. allForms: true
  61637. },
  61638. {
  61639. name: "Giga",
  61640. height: math.unit(220, "km"),
  61641. allForms: true
  61642. },
  61643. {
  61644. name: "Giga+",
  61645. height: math.unit(1500, "km"),
  61646. allForms: true
  61647. },
  61648. {
  61649. name: "Terra",
  61650. height: math.unit(13000, "km"),
  61651. allForms: true
  61652. },
  61653. {
  61654. name: "Terra+",
  61655. height: math.unit(500000, "km"),
  61656. allForms: true
  61657. },
  61658. {
  61659. name: "Galactic",
  61660. height: math.unit(486080, "parsecs"),
  61661. default: true,
  61662. allForms: true
  61663. },
  61664. ],
  61665. {
  61666. "otter": {
  61667. name: "Otter",
  61668. default: true
  61669. },
  61670. "lionbat": {
  61671. name: "Lionbat",
  61672. },
  61673. }
  61674. ))
  61675. characterMakers.push(() => makeCharacter(
  61676. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  61677. {
  61678. front: {
  61679. height: math.unit(7 + 4/12, "feet"),
  61680. weight: math.unit(400, "lb"),
  61681. name: "Front",
  61682. image: {
  61683. source: "./media/characters/proxy/front.svg",
  61684. extra: 1605/1542,
  61685. bottom: 55/1660
  61686. }
  61687. },
  61688. side: {
  61689. height: math.unit(7 + 4/12, "feet"),
  61690. weight: math.unit(400, "lb"),
  61691. name: "Side",
  61692. image: {
  61693. source: "./media/characters/proxy/side.svg",
  61694. extra: 794/759,
  61695. bottom: 6/800
  61696. }
  61697. },
  61698. hand: {
  61699. height: math.unit(1.54, "feet"),
  61700. name: "Hand",
  61701. image: {
  61702. source: "./media/characters/proxy/hand.svg"
  61703. }
  61704. },
  61705. paw: {
  61706. height: math.unit(1.53, "feet"),
  61707. name: "Paw",
  61708. image: {
  61709. source: "./media/characters/proxy/paw.svg"
  61710. }
  61711. },
  61712. maw: {
  61713. height: math.unit(1.9, "feet"),
  61714. name: "Maw",
  61715. image: {
  61716. source: "./media/characters/proxy/maw.svg"
  61717. }
  61718. },
  61719. },
  61720. [
  61721. {
  61722. name: "Normal",
  61723. height: math.unit(7 + 4/12, "feet"),
  61724. default: true
  61725. },
  61726. ]
  61727. ))
  61728. characterMakers.push(() => makeCharacter(
  61729. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  61730. {
  61731. front: {
  61732. height: math.unit(4, "meters"),
  61733. name: "Front",
  61734. image: {
  61735. source: "./media/characters/crocozilla/front.svg",
  61736. extra: 1790/1742,
  61737. bottom: 78/1868
  61738. }
  61739. },
  61740. },
  61741. [
  61742. {
  61743. name: "Normal",
  61744. height: math.unit(4, "meters"),
  61745. default: true
  61746. },
  61747. ]
  61748. ))
  61749. characterMakers.push(() => makeCharacter(
  61750. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  61751. {
  61752. front: {
  61753. height: math.unit(1.8, "meters"),
  61754. weight: math.unit(120, "kg"),
  61755. name: "Front",
  61756. image: {
  61757. source: "./media/characters/kurz/front.svg",
  61758. extra: 1960/1824,
  61759. bottom: 41/2001
  61760. }
  61761. },
  61762. back: {
  61763. height: math.unit(1.8, "meters"),
  61764. weight: math.unit(120, "kg"),
  61765. name: "Back",
  61766. image: {
  61767. source: "./media/characters/kurz/back.svg",
  61768. extra: 1906/1787,
  61769. bottom: 60/1966
  61770. }
  61771. },
  61772. frontLewd: {
  61773. height: math.unit(1.8, "meters"),
  61774. weight: math.unit(120, "kg"),
  61775. name: "Front (Lewd)",
  61776. image: {
  61777. source: "./media/characters/kurz/front-lewd.svg",
  61778. extra: 1960/1824,
  61779. bottom: 41/2001
  61780. }
  61781. },
  61782. maw: {
  61783. height: math.unit(0.69, "meters"),
  61784. name: "Maw",
  61785. image: {
  61786. source: "./media/characters/kurz/maw.svg"
  61787. }
  61788. },
  61789. },
  61790. [
  61791. {
  61792. name: "Original Size",
  61793. height: math.unit(1.8, "meters")
  61794. },
  61795. {
  61796. name: "Incognito Size",
  61797. height: math.unit(2.4, "meters"),
  61798. default: true
  61799. },
  61800. {
  61801. name: "Macro",
  61802. height: math.unit(30, "meters")
  61803. },
  61804. {
  61805. name: "Macro+",
  61806. height: math.unit(250, "meters")
  61807. },
  61808. {
  61809. name: "Mega",
  61810. height: math.unit(2, "km")
  61811. },
  61812. {
  61813. name: "Mega+",
  61814. height: math.unit(35, "km")
  61815. },
  61816. {
  61817. name: "Mega++",
  61818. height: math.unit(75, "km")
  61819. },
  61820. {
  61821. name: "Giga",
  61822. height: math.unit(250, "km")
  61823. },
  61824. {
  61825. name: "Terra",
  61826. height: math.unit(15000, "km")
  61827. },
  61828. {
  61829. name: "Terra+",
  61830. height: math.unit(2250000, "km")
  61831. },
  61832. ]
  61833. ))
  61834. characterMakers.push(() => makeCharacter(
  61835. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  61836. {
  61837. front: {
  61838. height: math.unit(16 + 3/12, "feet"),
  61839. weight: math.unit(3575, "lb"),
  61840. name: "Front",
  61841. image: {
  61842. source: "./media/characters/nikita/front.svg",
  61843. extra: 1064/955,
  61844. bottom: 47/1111
  61845. }
  61846. },
  61847. },
  61848. [
  61849. {
  61850. name: "Normal",
  61851. height: math.unit(16 + 3/12, "feet"),
  61852. default: true
  61853. },
  61854. {
  61855. name: "Big",
  61856. height: math.unit(21, "feet")
  61857. },
  61858. {
  61859. name: "Biggest",
  61860. height: math.unit(50, "feet")
  61861. },
  61862. ]
  61863. ))
  61864. characterMakers.push(() => makeCharacter(
  61865. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  61866. {
  61867. front: {
  61868. height: math.unit(1.92, "m"),
  61869. weight: math.unit(76, "kg"),
  61870. name: "Front",
  61871. image: {
  61872. source: "./media/characters/kyara/front.svg",
  61873. extra: 1550/1438,
  61874. bottom: 139/1689
  61875. }
  61876. },
  61877. back: {
  61878. height: math.unit(1.92, "m"),
  61879. weight: math.unit(76, "kg"),
  61880. name: "Back",
  61881. image: {
  61882. source: "./media/characters/kyara/back.svg",
  61883. extra: 1523/1427,
  61884. bottom: 83/1606
  61885. }
  61886. },
  61887. head: {
  61888. height: math.unit(1.22, "feet"),
  61889. name: "Head",
  61890. image: {
  61891. source: "./media/characters/kyara/head.svg"
  61892. }
  61893. },
  61894. maw: {
  61895. height: math.unit(0.73, "feet"),
  61896. name: "Maw",
  61897. image: {
  61898. source: "./media/characters/kyara/maw.svg"
  61899. }
  61900. },
  61901. paws: {
  61902. height: math.unit(0.95, "feet"),
  61903. name: "Paws",
  61904. image: {
  61905. source: "./media/characters/kyara/paws.svg"
  61906. }
  61907. },
  61908. },
  61909. [
  61910. {
  61911. name: "Normal",
  61912. height: math.unit(1.92, "meters"),
  61913. default: true
  61914. },
  61915. {
  61916. name: "Mini Macro",
  61917. height: math.unit(192, "meters")
  61918. },
  61919. {
  61920. name: "Macro",
  61921. height: math.unit(480, "meters")
  61922. },
  61923. {
  61924. name: "Mega Macro",
  61925. height: math.unit(1440, "meters")
  61926. },
  61927. ]
  61928. ))
  61929. characterMakers.push(() => makeCharacter(
  61930. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  61931. {
  61932. front: {
  61933. height: math.unit(6, "feet"),
  61934. weight: math.unit(160, "lbs"),
  61935. preyCapacity: math.unit(0.05, "people"),
  61936. name: "Front",
  61937. image: {
  61938. source: "./media/characters/layla-amari/front.svg",
  61939. extra: 1922/1723,
  61940. bottom: 90/2012
  61941. }
  61942. },
  61943. back: {
  61944. height: math.unit(6, "feet"),
  61945. weight: math.unit(160, "lbs"),
  61946. preyCapacity: math.unit(0.05, "people"),
  61947. name: "Back",
  61948. image: {
  61949. source: "./media/characters/layla-amari/back.svg",
  61950. extra: 1917/1718,
  61951. bottom: 50/1967
  61952. }
  61953. },
  61954. frontDressed: {
  61955. height: math.unit(6, "feet"),
  61956. weight: math.unit(160, "lbs"),
  61957. preyCapacity: math.unit(0.05, "people"),
  61958. name: "Front (Dressed)",
  61959. image: {
  61960. source: "./media/characters/layla-amari/front-dressed.svg",
  61961. extra: 1922/1723,
  61962. bottom: 90/2012
  61963. }
  61964. },
  61965. face: {
  61966. height: math.unit(0.93, "feet"),
  61967. name: "Face",
  61968. image: {
  61969. source: "./media/characters/layla-amari/face.svg"
  61970. }
  61971. },
  61972. hand: {
  61973. height: math.unit(0.66 , "feet"),
  61974. name: "Hand",
  61975. image: {
  61976. source: "./media/characters/layla-amari/hand.svg"
  61977. }
  61978. },
  61979. foot: {
  61980. height: math.unit(1, "feet"),
  61981. name: "Foot",
  61982. image: {
  61983. source: "./media/characters/layla-amari/foot.svg"
  61984. }
  61985. },
  61986. necklace: {
  61987. height: math.unit(0.32, "feet"),
  61988. name: "Necklace",
  61989. image: {
  61990. source: "./media/characters/layla-amari/necklace.svg"
  61991. }
  61992. },
  61993. nipple: {
  61994. height: math.unit(0.2, "feet"),
  61995. name: "Nipple",
  61996. image: {
  61997. source: "./media/characters/layla-amari/nipple.svg"
  61998. }
  61999. },
  62000. slit: {
  62001. height: math.unit(0.26, "feet"),
  62002. name: "Slit",
  62003. image: {
  62004. source: "./media/characters/layla-amari/slit.svg"
  62005. }
  62006. },
  62007. },
  62008. [
  62009. {
  62010. name: "Natural",
  62011. height: math.unit(825, "feet"),
  62012. default: true
  62013. },
  62014. {
  62015. name: "Enhanced",
  62016. height: math.unit(8250, "feet")
  62017. },
  62018. {
  62019. name: "Apparent Size",
  62020. height: math.unit(9.04363e+8, "meters")
  62021. },
  62022. ]
  62023. ))
  62024. characterMakers.push(() => makeCharacter(
  62025. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  62026. {
  62027. front: {
  62028. height: math.unit(1.3, "meters"),
  62029. name: "Front",
  62030. image: {
  62031. source: "./media/characters/percy/front.svg",
  62032. extra: 1444/1289,
  62033. bottom: 54/1498
  62034. }
  62035. },
  62036. },
  62037. [
  62038. {
  62039. name: "Normal",
  62040. height: math.unit(1.3, "meters"),
  62041. default: true
  62042. },
  62043. ]
  62044. ))
  62045. characterMakers.push(() => makeCharacter(
  62046. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  62047. {
  62048. side: {
  62049. height: math.unit(10, "meters"),
  62050. name: "Side",
  62051. image: {
  62052. source: "./media/characters/grev/side.svg",
  62053. extra: 653/266,
  62054. bottom: 77/730
  62055. }
  62056. },
  62057. head: {
  62058. height: math.unit(16.2, "m"),
  62059. name: "Head",
  62060. image: {
  62061. source: "./media/characters/grev/head.svg"
  62062. }
  62063. },
  62064. dick: {
  62065. height: math.unit(2.8135932034, "m"),
  62066. name: "Dick",
  62067. image: {
  62068. source: "./media/characters/grev/dick.svg"
  62069. }
  62070. },
  62071. },
  62072. [
  62073. {
  62074. name: "Friend-Sized",
  62075. height: math.unit(80, "cm")
  62076. },
  62077. {
  62078. name: "Normal",
  62079. height: math.unit(10, "meters"),
  62080. default: true
  62081. },
  62082. {
  62083. name: "Macro",
  62084. height: math.unit(200, "meters")
  62085. },
  62086. ]
  62087. ))
  62088. characterMakers.push(() => makeCharacter(
  62089. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  62090. {
  62091. front: {
  62092. height: math.unit(19.75, "feet"),
  62093. weight: math.unit(20000, "lb"),
  62094. name: "Front",
  62095. image: {
  62096. source: "./media/characters/azuuca/front.svg",
  62097. extra: 1593/1511,
  62098. bottom: 55/1648
  62099. }
  62100. },
  62101. },
  62102. [
  62103. {
  62104. name: "Normal",
  62105. height: math.unit(19.75, "feet"),
  62106. default: true
  62107. },
  62108. ]
  62109. ))
  62110. characterMakers.push(() => makeCharacter(
  62111. { name: "Valuria", species: ["vesempress"], tags: ["anthro"] },
  62112. {
  62113. front: {
  62114. height: math.unit(15, "feet"),
  62115. weight: math.unit(1500, "lb"),
  62116. name: "Front",
  62117. image: {
  62118. source: "./media/characters/valuria/front.svg",
  62119. extra: 1588/1486,
  62120. bottom: 31/1619
  62121. }
  62122. },
  62123. },
  62124. [
  62125. {
  62126. name: "Normal",
  62127. height: math.unit(15, "feet"),
  62128. default: true
  62129. },
  62130. {
  62131. name: "Small",
  62132. height: math.unit(500, "feet")
  62133. },
  62134. {
  62135. name: "Macro",
  62136. height: math.unit(4000, "feet")
  62137. },
  62138. {
  62139. name: "Mega Macro",
  62140. height: math.unit(2000, "miles")
  62141. },
  62142. {
  62143. name: "Giga Macro",
  62144. height: math.unit(3e6, "miles")
  62145. },
  62146. ]
  62147. ))
  62148. characterMakers.push(() => makeCharacter(
  62149. { name: "Terigaia", species: ["gaelterranian"], tags: ["anthro"] },
  62150. {
  62151. front: {
  62152. height: math.unit(3500, "solarradii"),
  62153. name: "Front",
  62154. image: {
  62155. source: "./media/characters/terigaia/front.svg",
  62156. extra: 1531/1451,
  62157. bottom: 98/1629
  62158. }
  62159. },
  62160. },
  62161. [
  62162. {
  62163. name: "Normal",
  62164. height: math.unit(3500, "solarradii"),
  62165. default: true
  62166. },
  62167. ]
  62168. ))
  62169. characterMakers.push(() => makeCharacter(
  62170. { name: "Blair (Blaziken)", species: ["blaziken"], tags: ["anthro"] },
  62171. {
  62172. front: {
  62173. height: math.unit(9.34, "feet"),
  62174. weight: math.unit(600, "lb"),
  62175. name: "Front",
  62176. image: {
  62177. source: "./media/characters/blair-blaziken/front.svg",
  62178. extra: 1557/1462,
  62179. bottom: 55/1612
  62180. }
  62181. },
  62182. },
  62183. [
  62184. {
  62185. name: "Normal",
  62186. height: math.unit(9.34, "feet"),
  62187. default: true
  62188. },
  62189. ]
  62190. ))
  62191. characterMakers.push(() => makeCharacter(
  62192. { name: "Braxia", species: ["pistrogre", "human"], tags: ["anthro"] },
  62193. {
  62194. pistrogre_front: {
  62195. height: math.unit(10, "feet"),
  62196. weight: math.unit(10, "tons"),
  62197. name: "Front",
  62198. image: {
  62199. source: "./media/characters/braxia/pistrogre-front.svg",
  62200. extra: 1531/1334,
  62201. bottom: 114/1645
  62202. },
  62203. form: "pistrogre",
  62204. default: true
  62205. },
  62206. human_front: {
  62207. height: math.unit(10, "feet"),
  62208. weight: math.unit(10, "tons"),
  62209. name: "Front",
  62210. image: {
  62211. source: "./media/characters/braxia/human-front.svg",
  62212. extra: 1574/1501,
  62213. bottom: 37/1611
  62214. },
  62215. form: "human",
  62216. default: true
  62217. },
  62218. },
  62219. [
  62220. {
  62221. name: "Normal",
  62222. height: math.unit(10, "feet"),
  62223. default: true,
  62224. allForms: true
  62225. },
  62226. {
  62227. name: "Macro",
  62228. height: math.unit(1000, "feet"),
  62229. allForms: true
  62230. },
  62231. {
  62232. name: "Mega Macro",
  62233. height: math.unit(100, "miles"),
  62234. allForms: true
  62235. },
  62236. {
  62237. name: "Cosmic",
  62238. height: math.unit(1000000, "lightyears"),
  62239. allForms: true
  62240. },
  62241. {
  62242. name: "ϐѮԆԬӁꭍϞԢ",
  62243. height: math.unit(1000, "multiverses"),
  62244. allForms: true
  62245. },
  62246. ],
  62247. {
  62248. "pistrogre": {
  62249. name: "Pistrogre",
  62250. default: true
  62251. },
  62252. "human": {
  62253. name: "Human",
  62254. },
  62255. }
  62256. ))
  62257. characterMakers.push(() => makeCharacter(
  62258. { name: "Kiriga Yato", species: ["zorgoia"], tags: ["anthro"] },
  62259. {
  62260. front: {
  62261. height: math.unit(6 + 1/12, "feet"),
  62262. weight: math.unit(280, "lb"),
  62263. name: "Front",
  62264. image: {
  62265. source: "./media/characters/kiriga-yato/front.svg",
  62266. extra: 445/394,
  62267. bottom: 11/456
  62268. }
  62269. },
  62270. },
  62271. [
  62272. {
  62273. name: "Descended",
  62274. height: math.unit(3, "feet")
  62275. },
  62276. {
  62277. name: "Average",
  62278. height: math.unit(6 + 1/12, "feet"),
  62279. default: true
  62280. },
  62281. {
  62282. name: "Ascended",
  62283. height: math.unit(9 + 2/12, "feet")
  62284. },
  62285. ]
  62286. ))
  62287. characterMakers.push(() => makeCharacter(
  62288. { name: "Kylie", species: ["giraffe"], tags: ["anthro"] },
  62289. {
  62290. front: {
  62291. height: math.unit(6, "feet"),
  62292. weight: math.unit(150, "lb"),
  62293. name: "Front",
  62294. image: {
  62295. source: "./media/characters/kylie/front.svg",
  62296. extra: 1114/1046,
  62297. bottom: 65/1179
  62298. },
  62299. extraAttributes: {
  62300. "hoofSize": {
  62301. name: "Hoof Size",
  62302. power: 2,
  62303. type: "area",
  62304. base: math.unit(0.034, "m^2")
  62305. },
  62306. "footSize": {
  62307. name: "Foot Size",
  62308. power: 2,
  62309. type: "area",
  62310. base: math.unit(0.75, "m^2")
  62311. },
  62312. }
  62313. },
  62314. side: {
  62315. height: math.unit(6, "feet"),
  62316. weight: math.unit(150, "lb"),
  62317. name: "Side",
  62318. image: {
  62319. source: "./media/characters/kylie/side.svg",
  62320. extra: 1178/1110,
  62321. bottom: 21/1199
  62322. },
  62323. extraAttributes: {
  62324. "hoofSize": {
  62325. name: "Hoof Size",
  62326. power: 2,
  62327. type: "area",
  62328. base: math.unit(0.034, "m^2")
  62329. },
  62330. "footSize": {
  62331. name: "Foot Size",
  62332. power: 2,
  62333. type: "area",
  62334. base: math.unit(0.75, "m^2")
  62335. },
  62336. }
  62337. },
  62338. back: {
  62339. height: math.unit(6, "feet"),
  62340. weight: math.unit(150, "lb"),
  62341. name: "Back",
  62342. image: {
  62343. source: "./media/characters/kylie/back.svg",
  62344. extra: 1115/1047,
  62345. bottom: 66/1181
  62346. },
  62347. extraAttributes: {
  62348. "hoofSize": {
  62349. name: "Hoof Size",
  62350. power: 2,
  62351. type: "area",
  62352. base: math.unit(0.034, "m^2")
  62353. },
  62354. "footSize": {
  62355. name: "Foot Size",
  62356. power: 2,
  62357. type: "area",
  62358. base: math.unit(0.75, "m^2")
  62359. },
  62360. }
  62361. },
  62362. head: {
  62363. height: math.unit(1.85, "feet"),
  62364. name: "Head",
  62365. image: {
  62366. source: "./media/characters/kylie/head.svg"
  62367. }
  62368. },
  62369. },
  62370. [
  62371. {
  62372. name: "Normal",
  62373. height: math.unit(90, "meters"),
  62374. default: true
  62375. },
  62376. ]
  62377. ))
  62378. characterMakers.push(() => makeCharacter(
  62379. { name: "Sabado", species: ["suicune"], tags: ["anthro"] },
  62380. {
  62381. front: {
  62382. height: math.unit(245, "feet"),
  62383. weight: math.unit(400000, "lb"),
  62384. name: "Front",
  62385. image: {
  62386. source: "./media/characters/sabado/front.svg",
  62387. extra: 1309/1164,
  62388. bottom: 29/1338
  62389. }
  62390. },
  62391. },
  62392. [
  62393. {
  62394. name: "Normal",
  62395. height: math.unit(245, "feet"),
  62396. default: true
  62397. },
  62398. ]
  62399. ))
  62400. characterMakers.push(() => makeCharacter(
  62401. { name: "Zechal", species: ["shark", "dragon", "deity"], tags: ["anthro"] },
  62402. {
  62403. shark_front: {
  62404. height: math.unit(2, "meters"),
  62405. weight: math.unit(200, "kg"),
  62406. name: "Front",
  62407. image: {
  62408. source: "./media/characters/zechal/shark-front.svg",
  62409. extra: 969/925,
  62410. bottom: 74/1043
  62411. },
  62412. form: "shark",
  62413. },
  62414. shark_back: {
  62415. height: math.unit(2, "meters"),
  62416. weight: math.unit(200, "kg"),
  62417. name: "Back",
  62418. image: {
  62419. source: "./media/characters/zechal/shark-back.svg",
  62420. extra: 994/949,
  62421. bottom: 176/1170
  62422. },
  62423. form: "shark",
  62424. },
  62425. shark_frontLewd: {
  62426. height: math.unit(2, "meters"),
  62427. weight: math.unit(200, "kg"),
  62428. name: "Front (Lewd)",
  62429. image: {
  62430. source: "./media/characters/zechal/shark-front-lewd.svg",
  62431. extra: 969/925,
  62432. bottom: 74/1043
  62433. },
  62434. form: "shark",
  62435. },
  62436. shark_side: {
  62437. height: math.unit(1.56, "meters"),
  62438. weight: math.unit(200, "kg"),
  62439. name: "Side",
  62440. image: {
  62441. source: "./media/characters/zechal/shark-side.svg"
  62442. },
  62443. form: "shark",
  62444. },
  62445. dragon_front: {
  62446. height: math.unit(2, "meters"),
  62447. weight: math.unit(200, "kg"),
  62448. name: "Front",
  62449. image: {
  62450. source: "./media/characters/zechal/dragon-front.svg",
  62451. extra: 1041/925,
  62452. bottom: 74/1115
  62453. },
  62454. form: "dragon",
  62455. },
  62456. dragon_back: {
  62457. height: math.unit(2, "meters"),
  62458. weight: math.unit(200, "kg"),
  62459. name: "Back",
  62460. image: {
  62461. source: "./media/characters/zechal/dragon-back.svg",
  62462. extra: 1061/949,
  62463. bottom: 176/1237
  62464. },
  62465. form: "dragon",
  62466. },
  62467. dragon_frontLewd: {
  62468. height: math.unit(2, "meters"),
  62469. weight: math.unit(200, "kg"),
  62470. name: "Front (Lewd)",
  62471. image: {
  62472. source: "./media/characters/zechal/dragon-front-lewd.svg",
  62473. extra: 1041/925,
  62474. bottom: 74/1115
  62475. },
  62476. form: "dragon",
  62477. },
  62478. dragon_side: {
  62479. height: math.unit(1.56, "meters"),
  62480. weight: math.unit(200, "kg"),
  62481. name: "Side",
  62482. image: {
  62483. source: "./media/characters/zechal/dragon-side.svg"
  62484. },
  62485. form: "dragon",
  62486. },
  62487. foot: {
  62488. height: math.unit(0.5, "meters"),
  62489. name: "Foot",
  62490. image: {
  62491. source: "./media/characters/zechal/foot.svg"
  62492. }
  62493. },
  62494. sheathFront: {
  62495. height: math.unit(0.45, "meters"),
  62496. name: "Sheath (Front)",
  62497. image: {
  62498. source: "./media/characters/zechal/sheath-front.svg"
  62499. }
  62500. },
  62501. sheathSide: {
  62502. height: math.unit(0.45, "meters"),
  62503. name: "Sheath (Side)",
  62504. image: {
  62505. source: "./media/characters/zechal/sheath-side.svg"
  62506. }
  62507. },
  62508. },
  62509. [
  62510. {
  62511. name: "Incognito",
  62512. height: math.unit(2, "meters"),
  62513. allForms: true
  62514. },
  62515. {
  62516. name: "Small Rampage",
  62517. height: math.unit(25, "meters"),
  62518. allForms: true
  62519. },
  62520. {
  62521. name: "Home Size",
  62522. height: math.unit(250, "meters"),
  62523. allForms: true,
  62524. default: true
  62525. },
  62526. {
  62527. name: "Macro+",
  62528. height: math.unit(700, "meters"),
  62529. allForms: true
  62530. },
  62531. {
  62532. name: "Small Mega",
  62533. height: math.unit(3, "km"),
  62534. allForms: true
  62535. },
  62536. {
  62537. name: "Mega",
  62538. height: math.unit(15, "km"),
  62539. allForms: true
  62540. },
  62541. {
  62542. name: "Giga",
  62543. height: math.unit(300, "km"),
  62544. allForms: true
  62545. },
  62546. {
  62547. name: "Giga+",
  62548. height: math.unit(1750, "km"),
  62549. allForms: true
  62550. },
  62551. {
  62552. name: "Continental",
  62553. height: math.unit(5000, "km"),
  62554. allForms: true
  62555. },
  62556. {
  62557. name: "Terra",
  62558. height: math.unit(20000, "km"),
  62559. allForms: true
  62560. },
  62561. {
  62562. name: "Terra+",
  62563. height: math.unit(300000, "km"),
  62564. allForms: true
  62565. },
  62566. {
  62567. name: "Solar",
  62568. height: math.unit(40000000, "km"),
  62569. allForms: true
  62570. },
  62571. {
  62572. name: "Galactic",
  62573. height: math.unit(810133, "parsecs"),
  62574. allForms: true
  62575. },
  62576. {
  62577. name: "Universal",
  62578. height: math.unit(25, "universes"),
  62579. allForms: true
  62580. },
  62581. ],
  62582. {
  62583. "shark": {
  62584. name: "Shark",
  62585. default: true
  62586. },
  62587. "dragon": {
  62588. name: "Dragon",
  62589. },
  62590. }
  62591. ))
  62592. characterMakers.push(() => makeCharacter(
  62593. { name: "Sergis", species: ["komodo-dragon", "deity"], tags: ["anthro"] },
  62594. {
  62595. front: {
  62596. height: math.unit(2.2, "meters"),
  62597. weight: math.unit(150, "kg"),
  62598. name: "Front",
  62599. image: {
  62600. source: "./media/characters/sergis/front.svg",
  62601. extra: 1314/1312,
  62602. bottom: 112/1426
  62603. }
  62604. },
  62605. back: {
  62606. height: math.unit(2.2, "meters"),
  62607. weight: math.unit(150, "kg"),
  62608. name: "Back",
  62609. image: {
  62610. source: "./media/characters/sergis/back.svg",
  62611. extra: 1335/1333,
  62612. bottom: 19/1354
  62613. }
  62614. },
  62615. frontLewd: {
  62616. height: math.unit(2.2, "meters"),
  62617. weight: math.unit(150, "kg"),
  62618. name: "Front (Lewd)",
  62619. image: {
  62620. source: "./media/characters/sergis/front-lewd.svg",
  62621. extra: 1314/1312,
  62622. bottom: 112/1426
  62623. }
  62624. },
  62625. frontDressed: {
  62626. height: math.unit(2.2, "meters"),
  62627. weight: math.unit(150, "kg"),
  62628. name: "Front (Dressed)",
  62629. image: {
  62630. source: "./media/characters/sergis/front-dressed.svg",
  62631. extra: 1330/1328,
  62632. bottom: 95/1425
  62633. }
  62634. },
  62635. frontDressedLewd: {
  62636. height: math.unit(2.2, "meters"),
  62637. weight: math.unit(150, "kg"),
  62638. name: "Front (Dressed, Lewd)",
  62639. image: {
  62640. source: "./media/characters/sergis/front-dressed-lewd.svg",
  62641. extra: 1330/1328,
  62642. bottom: 95/1425
  62643. }
  62644. },
  62645. maw: {
  62646. height: math.unit(0.48, "meters"),
  62647. name: "Maw",
  62648. image: {
  62649. source: "./media/characters/sergis/maw.svg"
  62650. }
  62651. },
  62652. sheath: {
  62653. height: math.unit(0.38, "meters"),
  62654. name: "Sheath",
  62655. image: {
  62656. source: "./media/characters/sergis/sheath.svg"
  62657. }
  62658. },
  62659. },
  62660. [
  62661. {
  62662. name: "Incognito Size",
  62663. height: math.unit(2.2, "meters")
  62664. },
  62665. {
  62666. name: "Small Macro",
  62667. height: math.unit(40, "meters")
  62668. },
  62669. {
  62670. name: "Macro",
  62671. height: math.unit(150, "meters")
  62672. },
  62673. {
  62674. name: "Macro+",
  62675. height: math.unit(300, "meters")
  62676. },
  62677. {
  62678. name: "Mega",
  62679. height: math.unit(2.5, "km")
  62680. },
  62681. {
  62682. name: "Mega+",
  62683. height: math.unit(30, "km")
  62684. },
  62685. {
  62686. name: "Home Size",
  62687. height: math.unit(300, "km"),
  62688. default: true
  62689. },
  62690. {
  62691. name: "Giga+",
  62692. height: math.unit(1000, "km")
  62693. },
  62694. {
  62695. name: "Giga++",
  62696. height: math.unit(6000, "km")
  62697. },
  62698. {
  62699. name: "Terra",
  62700. height: math.unit(70000, "km")
  62701. },
  62702. {
  62703. name: "Terra+",
  62704. height: math.unit(200000, "km")
  62705. },
  62706. {
  62707. name: "Galactic",
  62708. height: math.unit(634200, "lightyears")
  62709. },
  62710. ]
  62711. ))
  62712. characterMakers.push(() => makeCharacter(
  62713. { name: "Spade", species: ["demon", "mouse"], tags: ["anthro"] },
  62714. {
  62715. standard: {
  62716. height: math.unit(1 + 5/12, "feet"),
  62717. name: "Standard",
  62718. image: {
  62719. source: "./media/characters/spade/standard.svg",
  62720. extra: 1794/1703,
  62721. bottom: 115/1909
  62722. }
  62723. },
  62724. disguised: {
  62725. height: math.unit(1 + 5/12, "feet"),
  62726. name: "Disguised",
  62727. image: {
  62728. source: "./media/characters/spade/disguised.svg",
  62729. extra: 1794/1700,
  62730. bottom: 98/1892
  62731. }
  62732. },
  62733. },
  62734. [
  62735. {
  62736. name: "Normal",
  62737. height: math.unit(1 + 5/12, "feet"),
  62738. default: true
  62739. },
  62740. ]
  62741. ))
  62742. characterMakers.push(() => makeCharacter(
  62743. { name: "Zeanlain", species: ["harpy-eagle"], tags: ["anthro"] },
  62744. {
  62745. frontNsfw: {
  62746. height: math.unit(5, "meters"),
  62747. weight: math.unit(2000, "kg"),
  62748. preyCapacity: math.unit(5, "people"),
  62749. name: "Front (NSFW)",
  62750. image: {
  62751. source: "./media/characters/zeanlain/front-nsfw.svg",
  62752. extra: 1087/938,
  62753. bottom: 93/1180
  62754. },
  62755. extraAttributes: {
  62756. "wingspan": {
  62757. name: "Wingspan",
  62758. power: 1,
  62759. type: "length",
  62760. base: math.unit(10, "meters")
  62761. },
  62762. "footSize": {
  62763. name: "Foot Size",
  62764. power: 1,
  62765. type: "length",
  62766. base: math.unit(0.68, "meters")
  62767. },
  62768. "cockLength": {
  62769. name: "Cock Length",
  62770. power: 1,
  62771. type: "length",
  62772. base: math.unit(1.69, "meters")
  62773. },
  62774. "ballVolume": {
  62775. name: "Ball Volume",
  62776. power: 3,
  62777. type: "volume",
  62778. base: math.unit(0.028, "m^3")
  62779. },
  62780. }
  62781. },
  62782. front: {
  62783. height: math.unit(5, "meters"),
  62784. weight: math.unit(2000, "kg"),
  62785. preyCapacity: math.unit(3, "people"),
  62786. name: "Front",
  62787. image: {
  62788. source: "./media/characters/zeanlain/front.svg",
  62789. extra: 1087/938,
  62790. bottom: 93/1180
  62791. },
  62792. extraAttributes: {
  62793. "wingspan": {
  62794. name: "Wingspan",
  62795. power: 1,
  62796. type: "length",
  62797. base: math.unit(10, "meters")
  62798. },
  62799. "footSize": {
  62800. name: "Foot Size",
  62801. power: 1,
  62802. type: "length",
  62803. base: math.unit(0.68, "meters")
  62804. },
  62805. }
  62806. },
  62807. dick: {
  62808. height: math.unit(5.15, "feet"),
  62809. name: "Dick",
  62810. image: {
  62811. source: "./media/characters/zeanlain/dick.svg"
  62812. }
  62813. },
  62814. },
  62815. [
  62816. {
  62817. name: "Normal",
  62818. height: math.unit(5, "meters"),
  62819. default: true
  62820. },
  62821. ]
  62822. ))
  62823. characterMakers.push(() => makeCharacter(
  62824. { name: "Airamis", species: ["aeromorph", "dragon"], tags: ["anthro"] },
  62825. {
  62826. front: {
  62827. height: math.unit(10, "meters"),
  62828. weight: math.unit(250000, "kg"),
  62829. name: "Front",
  62830. image: {
  62831. source: "./media/characters/airamis/front.svg",
  62832. extra: 865/835,
  62833. bottom: 13/878
  62834. }
  62835. },
  62836. },
  62837. [
  62838. {
  62839. name: "Normal",
  62840. height: math.unit(10, "meters"),
  62841. default: true
  62842. },
  62843. ]
  62844. ))
  62845. characterMakers.push(() => makeCharacter(
  62846. { name: "Corra Tourmaline", species: ["vaporeon"], tags: ["anthro"] },
  62847. {
  62848. front: {
  62849. height: math.unit(3 + 3/12, "feet"),
  62850. weight: math.unit(75, "lb"),
  62851. name: "Front",
  62852. image: {
  62853. source: "./media/characters/corra-tourmaline/front.svg",
  62854. extra: 1037/864,
  62855. bottom: 39/1076
  62856. }
  62857. },
  62858. back: {
  62859. height: math.unit(3 + 3/12, "feet"),
  62860. weight: math.unit(75, "lb"),
  62861. name: "Back",
  62862. image: {
  62863. source: "./media/characters/corra-tourmaline/back.svg",
  62864. extra: 1022/849,
  62865. bottom: 26/1048
  62866. }
  62867. },
  62868. dressed: {
  62869. height: math.unit(3 + 3/12, "feet"),
  62870. weight: math.unit(75, "lb"),
  62871. name: "Dressed",
  62872. image: {
  62873. source: "./media/characters/corra-tourmaline/dressed.svg",
  62874. extra: 1037/864,
  62875. bottom: 39/1076
  62876. }
  62877. },
  62878. beans: {
  62879. height: math.unit(0.37, "feet"),
  62880. name: "Beans",
  62881. image: {
  62882. source: "./media/characters/corra-tourmaline/beans.svg"
  62883. }
  62884. },
  62885. },
  62886. [
  62887. {
  62888. name: "Normal",
  62889. height: math.unit(3 + 3/12, "feet"),
  62890. default: true
  62891. },
  62892. {
  62893. name: "Macro",
  62894. height: math.unit(32, "feet")
  62895. },
  62896. ]
  62897. ))
  62898. characterMakers.push(() => makeCharacter(
  62899. { name: "Maki Kawa", species: ["sabertooth-tiger", "serval"], tags: ["anthro"] },
  62900. {
  62901. front: {
  62902. height: math.unit(6 + 2/12, "feet"),
  62903. weight: math.unit(203, "lb"),
  62904. name: "Front",
  62905. image: {
  62906. source: "./media/characters/maki-kawa/front.svg",
  62907. extra: 950/890,
  62908. bottom: 62/1012
  62909. }
  62910. },
  62911. back: {
  62912. height: math.unit(6 + 2/12, "feet"),
  62913. weight: math.unit(203, "lb"),
  62914. name: "Back",
  62915. image: {
  62916. source: "./media/characters/maki-kawa/back.svg",
  62917. extra: 953/878,
  62918. bottom: 49/1002
  62919. }
  62920. },
  62921. frontBarista: {
  62922. height: math.unit(6 + 2/12, "feet"),
  62923. weight: math.unit(203, "lb"),
  62924. name: "Front (Barista)",
  62925. image: {
  62926. source: "./media/characters/maki-kawa/front-barista.svg",
  62927. extra: 943/883,
  62928. bottom: 69/1012
  62929. }
  62930. },
  62931. backBarista: {
  62932. height: math.unit(6 + 2/12, "feet"),
  62933. weight: math.unit(203, "lb"),
  62934. name: "Back (Barista)",
  62935. image: {
  62936. source: "./media/characters/maki-kawa/back-barista.svg",
  62937. extra: 953/878,
  62938. bottom: 49/1002
  62939. }
  62940. },
  62941. frontWrestler: {
  62942. height: math.unit(6 + 2/12, "feet"),
  62943. weight: math.unit(203, "lb"),
  62944. name: "Front (Wrestler)",
  62945. image: {
  62946. source: "./media/characters/maki-kawa/front-wrestler.svg",
  62947. extra: 950/890,
  62948. bottom: 62/1012
  62949. }
  62950. },
  62951. backWrestler: {
  62952. height: math.unit(6 + 2/12, "feet"),
  62953. weight: math.unit(203, "lb"),
  62954. name: "Back (Wrestler)",
  62955. image: {
  62956. source: "./media/characters/maki-kawa/back-wrestler.svg",
  62957. extra: 953/878,
  62958. bottom: 49/1002
  62959. }
  62960. },
  62961. headFront: {
  62962. height: math.unit(1.64, "feet"),
  62963. name: "Head (Front)",
  62964. image: {
  62965. source: "./media/characters/maki-kawa/head-front.svg"
  62966. }
  62967. },
  62968. headSide: {
  62969. height: math.unit(1.59, "feet"),
  62970. name: "Head (Side)",
  62971. image: {
  62972. source: "./media/characters/maki-kawa/head-side.svg"
  62973. }
  62974. },
  62975. paw: {
  62976. height: math.unit(0.9, "feet"),
  62977. name: "Paw",
  62978. image: {
  62979. source: "./media/characters/maki-kawa/paw.svg"
  62980. }
  62981. },
  62982. },
  62983. [
  62984. {
  62985. name: "Normal",
  62986. height: math.unit(6 + 2/12, "feet"),
  62987. default: true
  62988. },
  62989. {
  62990. name: "Macro",
  62991. height: math.unit(617, "feet")
  62992. },
  62993. ]
  62994. ))
  62995. characterMakers.push(() => makeCharacter(
  62996. { name: "Lennox", species: ["wolf"], tags: ["anthro"] },
  62997. {
  62998. frontNsfw: {
  62999. height: math.unit(10, "feet"),
  63000. weight: math.unit(1500, "lb"),
  63001. name: "Front (NSFW)",
  63002. image: {
  63003. source: "./media/characters/lennox/front-nsfw.svg",
  63004. extra: 1623/1496,
  63005. bottom: 18/1641
  63006. },
  63007. extraAttributes: {
  63008. "cumVolume": {
  63009. name: "Cum Volume",
  63010. power: 3,
  63011. type: "volume",
  63012. base: math.unit(75, "liters")
  63013. },
  63014. }
  63015. },
  63016. backNsfw: {
  63017. height: math.unit(10, "feet"),
  63018. weight: math.unit(1500, "lb"),
  63019. name: "Back (NSFW)",
  63020. image: {
  63021. source: "./media/characters/lennox/back-nsfw.svg",
  63022. extra: 1641/1481,
  63023. bottom: 13/1654
  63024. },
  63025. extraAttributes: {
  63026. "cumVolume": {
  63027. name: "Cum Volume",
  63028. power: 3,
  63029. type: "volume",
  63030. base: math.unit(75, "liters")
  63031. },
  63032. }
  63033. },
  63034. frontSfw: {
  63035. height: math.unit(10, "feet"),
  63036. weight: math.unit(1500, "lb"),
  63037. name: "Front (SFW)",
  63038. image: {
  63039. source: "./media/characters/lennox/front-sfw.svg",
  63040. extra: 1623/1496,
  63041. bottom: 18/1641
  63042. }
  63043. },
  63044. backSfw: {
  63045. height: math.unit(10, "feet"),
  63046. weight: math.unit(1500, "lb"),
  63047. name: "Back (SFW)",
  63048. image: {
  63049. source: "./media/characters/lennox/back-sfw.svg",
  63050. extra: 1641/1481,
  63051. bottom: 13/1654
  63052. }
  63053. },
  63054. maw: {
  63055. height: math.unit(2.94, "feet"),
  63056. name: "Maw",
  63057. image: {
  63058. source: "./media/characters/lennox/maw.svg"
  63059. }
  63060. },
  63061. dick: {
  63062. height: math.unit(0.8323, "meters"),
  63063. weight: math.unit(0.07315728637*1000, "kg"),
  63064. name: "Dick",
  63065. image: {
  63066. source: "./media/characters/lennox/dick.svg"
  63067. },
  63068. extraAttributes: {
  63069. "thickness": {
  63070. name: "Thickness",
  63071. power: 1,
  63072. type: "length",
  63073. base: math.unit(0.330, "meters")
  63074. },
  63075. "length": {
  63076. name: "Length",
  63077. power: 1,
  63078. type: "length",
  63079. base: math.unit(0.8, "meters")
  63080. },
  63081. "cumVolume": {
  63082. name: "Cum Volume",
  63083. power: 3,
  63084. type: "volume",
  63085. base: math.unit(75, "liters")
  63086. },
  63087. }
  63088. },
  63089. },
  63090. [
  63091. {
  63092. name: "Micro",
  63093. height: math.unit(1, "inch")
  63094. },
  63095. {
  63096. name: "Normal",
  63097. height: math.unit(10, "feet"),
  63098. default: true
  63099. },
  63100. {
  63101. name: "Macro",
  63102. height: math.unit(200, "feet")
  63103. },
  63104. ]
  63105. ))
  63106. characterMakers.push(() => makeCharacter(
  63107. { name: "Vyse Iron-Thunder", species: ["luxray", "shiny"], tags: ["anthro"] },
  63108. {
  63109. frontDressed: {
  63110. height: math.unit(15 + 7/12, "feet"),
  63111. weight: math.unit(5000, "lb"),
  63112. name: "Front (Dressed)",
  63113. image: {
  63114. source: "./media/characters/vyse-iron-thunder/front-dressed.svg",
  63115. extra: 1136/1023,
  63116. bottom: 51/1187
  63117. }
  63118. },
  63119. backDressed: {
  63120. height: math.unit(15 + 7/12, "feet"),
  63121. weight: math.unit(5000, "lb"),
  63122. name: "Back (Dressed)",
  63123. image: {
  63124. source: "./media/characters/vyse-iron-thunder/back-dressed.svg",
  63125. extra: 2359/2143,
  63126. bottom: 103/2462
  63127. }
  63128. },
  63129. front: {
  63130. height: math.unit(15 + 7/12, "feet"),
  63131. weight: math.unit(5000, "lb"),
  63132. name: "Front",
  63133. image: {
  63134. source: "./media/characters/vyse-iron-thunder/front.svg",
  63135. extra: 1136/1023,
  63136. bottom: 51/1187
  63137. }
  63138. },
  63139. hand: {
  63140. height: math.unit(2.36, "feet"),
  63141. name: "Hand",
  63142. image: {
  63143. source: "./media/characters/vyse-iron-thunder/hand.svg"
  63144. }
  63145. },
  63146. foot: {
  63147. height: math.unit(1.72, "feet"),
  63148. name: "Foot",
  63149. image: {
  63150. source: "./media/characters/vyse-iron-thunder/foot.svg"
  63151. }
  63152. },
  63153. mouth: {
  63154. height: math.unit(2, "feet"),
  63155. name: "Mouth",
  63156. image: {
  63157. source: "./media/characters/vyse-iron-thunder/mouth.svg"
  63158. }
  63159. },
  63160. eye: {
  63161. height: math.unit(0.58, "feet"),
  63162. name: "Eye",
  63163. image: {
  63164. source: "./media/characters/vyse-iron-thunder/eye.svg"
  63165. }
  63166. },
  63167. },
  63168. [
  63169. {
  63170. name: "Normal",
  63171. height: math.unit(15 + 7/12, "feet"),
  63172. default: true
  63173. },
  63174. {
  63175. name: "Macro",
  63176. height: math.unit(157, "feet")
  63177. },
  63178. {
  63179. name: "Macro+",
  63180. height: math.unit(1570, "feet")
  63181. },
  63182. {
  63183. name: "Macro++",
  63184. height: math.unit(15700, "feet")
  63185. },
  63186. {
  63187. name: "Macro+++",
  63188. height: math.unit(157000, "feet")
  63189. },
  63190. {
  63191. name: "Macro++++",
  63192. height: math.unit(1570000, "feet")
  63193. },
  63194. ]
  63195. ))
  63196. characterMakers.push(() => makeCharacter(
  63197. { name: "Moonbeam", species: ["latex", "wolf"], tags: ["feral"] },
  63198. {
  63199. side: {
  63200. height: math.unit(6, "feet"),
  63201. weight: math.unit(115, "lb"),
  63202. name: "Side",
  63203. image: {
  63204. source: "./media/characters/moonbeam/side.svg",
  63205. extra: 839/485,
  63206. bottom: 60/899
  63207. }
  63208. },
  63209. },
  63210. [
  63211. {
  63212. name: "Normal",
  63213. height: math.unit(6, "feet"),
  63214. default: true
  63215. },
  63216. ]
  63217. ))
  63218. characterMakers.push(() => makeCharacter(
  63219. { name: "Baltica", species: ["orca"], tags: ["anthro"] },
  63220. {
  63221. front: {
  63222. height: math.unit(3500, "miles"),
  63223. weight: math.unit(1659, "petatonnes"),
  63224. name: "Front",
  63225. image: {
  63226. source: "./media/characters/baltica/front.svg",
  63227. extra: 429/428,
  63228. bottom: 41/470
  63229. }
  63230. },
  63231. back: {
  63232. height: math.unit(3500, "miles"),
  63233. weight: math.unit(1659, "petatonnes"),
  63234. name: "Back",
  63235. image: {
  63236. source: "./media/characters/baltica/back.svg",
  63237. extra: 452/451,
  63238. bottom: 8/460
  63239. }
  63240. },
  63241. },
  63242. [
  63243. {
  63244. name: "Gigamacro",
  63245. height: math.unit(3500, "miles"),
  63246. default: true
  63247. },
  63248. ]
  63249. ))
  63250. characterMakers.push(() => makeCharacter(
  63251. { name: "Shadow (Wolf)", species: ["wolf", "demi"], tags: ["anthro"] },
  63252. {
  63253. front: {
  63254. height: math.unit(6 + 10/12, "feet"),
  63255. weight: math.unit(200, "lb"),
  63256. name: "Front",
  63257. image: {
  63258. source: "./media/characters/shadow-wolf/front.svg",
  63259. extra: 1931/1760,
  63260. bottom: 88/2019
  63261. }
  63262. },
  63263. },
  63264. [
  63265. {
  63266. name: "Normal",
  63267. height: math.unit(6 + 10/12, "feet"),
  63268. default: true
  63269. },
  63270. ]
  63271. ))
  63272. characterMakers.push(() => makeCharacter(
  63273. { name: "Quincy (Praying Mantis)", species: ["praying-mantis"], tags: ["anthro"] },
  63274. {
  63275. front: {
  63276. height: math.unit(5 + 10/12, "feet"),
  63277. name: "Front",
  63278. image: {
  63279. source: "./media/characters/quincy-praying-mantis/front.svg",
  63280. extra: 1055/891,
  63281. bottom: 92/1147
  63282. }
  63283. },
  63284. soles: {
  63285. height: math.unit(0.85, "feet"),
  63286. name: "Soles",
  63287. image: {
  63288. source: "./media/characters/quincy-praying-mantis/soles.svg",
  63289. extra: 429/324,
  63290. bottom: 89/518
  63291. },
  63292. extraAttributes: {
  63293. "shoeSize": {
  63294. name: "Shoe Size",
  63295. power: 1,
  63296. type: "length",
  63297. base: math.unit(23, "ShoeSizeMensUS"),
  63298. defaultUnit: "ShoeSizeMensUS"
  63299. },
  63300. }
  63301. },
  63302. foot: {
  63303. height: math.unit(0.72, "feet"),
  63304. name: "Foot",
  63305. image: {
  63306. source: "./media/characters/quincy-praying-mantis/foot.svg",
  63307. extra: 349/349,
  63308. bottom: 76/425
  63309. }
  63310. },
  63311. },
  63312. [
  63313. {
  63314. name: "Normal",
  63315. height: math.unit(5 + 10/12, "feet"),
  63316. default: true
  63317. },
  63318. ]
  63319. ))
  63320. characterMakers.push(() => makeCharacter(
  63321. { name: "Christopher Redwood", species: ["gray-wolf"], tags: ["anthro"] },
  63322. {
  63323. front: {
  63324. height: math.unit(6, "feet"),
  63325. name: "Front",
  63326. image: {
  63327. source: "./media/characters/christopher-redwood/front.svg",
  63328. extra: 1402/1341,
  63329. bottom: 23/1425
  63330. }
  63331. },
  63332. back: {
  63333. height: math.unit(6, "feet"),
  63334. name: "Back",
  63335. image: {
  63336. source: "./media/characters/christopher-redwood/back.svg",
  63337. extra: 1406/1345,
  63338. bottom: 36/1442
  63339. }
  63340. },
  63341. head: {
  63342. height: math.unit(1.685, "feet"),
  63343. name: "Head",
  63344. image: {
  63345. source: "./media/characters/christopher-redwood/head.svg"
  63346. }
  63347. },
  63348. },
  63349. [
  63350. {
  63351. name: "Normal",
  63352. height: math.unit(6, "feet"),
  63353. default: true
  63354. },
  63355. ]
  63356. ))
  63357. characterMakers.push(() => makeCharacter(
  63358. { name: "Kara (Fox)", species: ["fox"], tags: ["anthro"] },
  63359. {
  63360. front: {
  63361. height: math.unit(1.9, "meters"),
  63362. weight: math.unit(140, "lb"),
  63363. name: "Front",
  63364. image: {
  63365. source: "./media/characters/kara-fox/front.svg",
  63366. extra: 766/711,
  63367. bottom: 41/807
  63368. }
  63369. },
  63370. back: {
  63371. height: math.unit(1.9, "meters"),
  63372. weight: math.unit(140, "lb"),
  63373. name: "Back",
  63374. image: {
  63375. source: "./media/characters/kara-fox/back.svg",
  63376. extra: 766/596,
  63377. bottom: 29/795
  63378. }
  63379. },
  63380. maw: {
  63381. height: math.unit(0.78, "feet"),
  63382. name: "Maw",
  63383. image: {
  63384. source: "./media/characters/kara-fox/maw.svg"
  63385. }
  63386. },
  63387. pawpads: {
  63388. height: math.unit(0.96, "feet"),
  63389. name: "Pawpads",
  63390. image: {
  63391. source: "./media/characters/kara-fox/pawpads.svg"
  63392. }
  63393. },
  63394. },
  63395. [
  63396. {
  63397. name: "Normal",
  63398. height: math.unit(1.9, "meters"),
  63399. default: true
  63400. },
  63401. {
  63402. name: "Giantess",
  63403. height: math.unit(80, "meters")
  63404. },
  63405. ]
  63406. ))
  63407. characterMakers.push(() => makeCharacter(
  63408. { name: "Naomi (Espeon)", species: ["espeon"], tags: ["anthro"] },
  63409. {
  63410. front: {
  63411. height: math.unit(12, "feet"),
  63412. name: "Front",
  63413. image: {
  63414. source: "./media/characters/naomi-espeon/front.svg",
  63415. extra: 892/797,
  63416. bottom: 5/897
  63417. }
  63418. },
  63419. back: {
  63420. height: math.unit(12, "feet"),
  63421. name: "Back",
  63422. image: {
  63423. source: "./media/characters/naomi-espeon/back.svg",
  63424. extra: 890/785,
  63425. bottom: 12/902
  63426. }
  63427. },
  63428. },
  63429. [
  63430. {
  63431. name: "Normal",
  63432. height: math.unit(12, "feet"),
  63433. default: true
  63434. },
  63435. ]
  63436. ))
  63437. characterMakers.push(() => makeCharacter(
  63438. { name: "Asher Heulfyrn", species: ["skullwolf"], tags: ["anthro", "taur"] },
  63439. {
  63440. anthro_front: {
  63441. height: math.unit(8, "feet"),
  63442. weight: math.unit(625, "lb"),
  63443. name: "Front",
  63444. image: {
  63445. source: "./media/characters/asher-heulfyrn/anthro-front.svg",
  63446. extra: 638/574,
  63447. bottom: 73/711
  63448. },
  63449. form: "anthro",
  63450. default: true
  63451. },
  63452. anthro_back: {
  63453. height: math.unit(8, "feet"),
  63454. weight: math.unit(625, "lb"),
  63455. name: "Back",
  63456. image: {
  63457. source: "./media/characters/asher-heulfyrn/anthro-back.svg",
  63458. extra: 674/614,
  63459. bottom: 7/681
  63460. },
  63461. form: "anthro",
  63462. },
  63463. taur_side: {
  63464. height: math.unit(16, "feet"),
  63465. weight: math.unit(4.5, "tons"),
  63466. name: "Side",
  63467. image: {
  63468. source: "./media/characters/asher-heulfyrn/taur-side.svg",
  63469. extra: 704/646,
  63470. bottom: 132/836
  63471. },
  63472. form: "taur",
  63473. default: true
  63474. },
  63475. },
  63476. [
  63477. {
  63478. name: "Normal",
  63479. height: math.unit(8, "feet"),
  63480. default: true,
  63481. form: "anthro"
  63482. },
  63483. {
  63484. name: "Normal",
  63485. height: math.unit(16, "feet"),
  63486. default: true,
  63487. form: "taur"
  63488. },
  63489. ],
  63490. {
  63491. "anthro": {
  63492. name: "Anthro",
  63493. default: true
  63494. },
  63495. "taur": {
  63496. name: "Taur",
  63497. },
  63498. }
  63499. ))
  63500. characterMakers.push(() => makeCharacter(
  63501. { name: "Amelie", species: ["ferrin"], tags: ["anthro"] },
  63502. {
  63503. front: {
  63504. height: math.unit(190, "cm"),
  63505. weight: math.unit(110, "kg"),
  63506. name: "Front",
  63507. image: {
  63508. source: "./media/characters/amelie/front.svg",
  63509. extra: 530/442,
  63510. bottom: 35/565
  63511. }
  63512. },
  63513. },
  63514. [
  63515. {
  63516. name: "Normal",
  63517. height: math.unit(190, "cm"),
  63518. default: true
  63519. },
  63520. ]
  63521. ))
  63522. characterMakers.push(() => makeCharacter(
  63523. { name: "Valence", species: ["skulldragon"], tags: ["anthro"] },
  63524. {
  63525. front: {
  63526. height: math.unit(21, "feet"),
  63527. weight: math.unit(30000, "lb"),
  63528. name: "Front",
  63529. image: {
  63530. source: "./media/characters/valence/front.svg",
  63531. extra: 1430/1306,
  63532. bottom: 51/1481
  63533. }
  63534. },
  63535. },
  63536. [
  63537. {
  63538. name: "Normal",
  63539. height: math.unit(21, "feet"),
  63540. default: true
  63541. },
  63542. ]
  63543. ))
  63544. characterMakers.push(() => makeCharacter(
  63545. { name: "Aurora Adkins", species: ["rusty-spotted-cat"], tags: ["anthro"] },
  63546. {
  63547. front: {
  63548. height: math.unit(5 + 9/12, "feet"),
  63549. weight: math.unit(170, "lb"),
  63550. name: "Front",
  63551. image: {
  63552. source: "./media/characters/aurora-adkins/front.svg",
  63553. extra: 1141/1089,
  63554. bottom: 41/1182
  63555. }
  63556. },
  63557. },
  63558. [
  63559. {
  63560. name: "Tiny",
  63561. height: math.unit(7, "mm")
  63562. },
  63563. {
  63564. name: "Small",
  63565. height: math.unit(3.4, "inches")
  63566. },
  63567. {
  63568. name: "Normal",
  63569. height: math.unit(5 + 9/12, "feet"),
  63570. default: true
  63571. },
  63572. {
  63573. name: "Big",
  63574. height: math.unit(31, "feet")
  63575. },
  63576. {
  63577. name: "Giant",
  63578. height: math.unit(300, "feet")
  63579. },
  63580. ]
  63581. ))
  63582. characterMakers.push(() => makeCharacter(
  63583. { name: "Cyber", species: ["maned-wolf", "lynx", "deity"], tags: ["anthro"] },
  63584. {
  63585. front: {
  63586. height: math.unit(5 + 6/12, "feet"),
  63587. weight: math.unit(210, "lb"),
  63588. name: "Front",
  63589. image: {
  63590. source: "./media/characters/cyber/front.svg",
  63591. extra: 1968/1798,
  63592. bottom: 10/1978
  63593. },
  63594. extraAttributes: {
  63595. "shoeSize": {
  63596. name: "Shoe Size",
  63597. power: 1,
  63598. type: "length",
  63599. base: math.unit(30, "ShoeSizeMensUS")
  63600. },
  63601. }
  63602. },
  63603. },
  63604. [
  63605. {
  63606. name: "Normal",
  63607. height: math.unit(5 + 6/12, "feet"),
  63608. default: true
  63609. },
  63610. ]
  63611. ))
  63612. characterMakers.push(() => makeCharacter(
  63613. { name: "Sapphire Wairimea", species: ["elf"], tags: ["anthro"] },
  63614. {
  63615. front: {
  63616. height: math.unit(6 + 6/12, "feet"),
  63617. weight: math.unit(140, "lb"),
  63618. name: "Front",
  63619. image: {
  63620. source: "./media/characters/sapphire-wairimea/front.svg",
  63621. extra: 475/458,
  63622. bottom: 14/489
  63623. }
  63624. },
  63625. },
  63626. [
  63627. {
  63628. name: "Normal",
  63629. height: math.unit(6 + 6/12, "feet")
  63630. },
  63631. {
  63632. name: "Macro",
  63633. height: math.unit(132, "feet"),
  63634. default: true
  63635. },
  63636. ]
  63637. ))
  63638. characterMakers.push(() => makeCharacter(
  63639. { name: "Cirkazi", species: ["elf"], tags: ["anthro"] },
  63640. {
  63641. front: {
  63642. height: math.unit(1.6, "meters"),
  63643. weight: math.unit(100, "lb"),
  63644. name: "Front",
  63645. image: {
  63646. source: "./media/characters/cirkazi/front.svg",
  63647. extra: 489/477,
  63648. bottom: 0/489
  63649. }
  63650. },
  63651. },
  63652. [
  63653. {
  63654. name: "Normal",
  63655. height: math.unit(1.6, "meters")
  63656. },
  63657. {
  63658. name: "Macro",
  63659. height: math.unit(800, "feet"),
  63660. default: true
  63661. },
  63662. ]
  63663. ))
  63664. characterMakers.push(() => makeCharacter(
  63665. { name: "Corrin Cavelli", species: ["human"], tags: ["anthro"] },
  63666. {
  63667. front: {
  63668. height: math.unit(5 + 10/12, "feet"),
  63669. weight: math.unit(145, "lb"),
  63670. name: "Front",
  63671. image: {
  63672. source: "./media/characters/corrin-cavelli/front.svg",
  63673. extra: 483/464,
  63674. bottom: 6/489
  63675. }
  63676. },
  63677. },
  63678. [
  63679. {
  63680. name: "Human",
  63681. height: math.unit(5 + 10/12, "feet")
  63682. },
  63683. {
  63684. name: "Giant",
  63685. height: math.unit(210, "feet"),
  63686. default: true
  63687. },
  63688. ]
  63689. ))
  63690. characterMakers.push(() => makeCharacter(
  63691. { name: "Lori Lopez", species: ["human"], tags: ["anthro"] },
  63692. {
  63693. back: {
  63694. height: math.unit(5 + 6/12, "feet"),
  63695. weight: math.unit(115, "lb"),
  63696. name: "Back",
  63697. image: {
  63698. source: "./media/characters/lori-lopez/back.svg",
  63699. extra: 483/474,
  63700. bottom: 6/489
  63701. }
  63702. },
  63703. },
  63704. [
  63705. {
  63706. name: "Human",
  63707. height: math.unit(5 + 6/12, "feet")
  63708. },
  63709. {
  63710. name: "Macro",
  63711. height: math.unit(198, "feet"),
  63712. default: true
  63713. },
  63714. ]
  63715. ))
  63716. characterMakers.push(() => makeCharacter(
  63717. { name: "Sylvia Beauregard", species: ["human"], tags: ["anthro"] },
  63718. {
  63719. front: {
  63720. height: math.unit(6, "feet"),
  63721. weight: math.unit(220, "lb"),
  63722. name: "Front",
  63723. image: {
  63724. source: "./media/characters/sylvia-beauregard/front.svg",
  63725. extra: 483/479,
  63726. bottom: 6/489
  63727. }
  63728. },
  63729. },
  63730. [
  63731. {
  63732. name: "Macro",
  63733. height: math.unit(2071, "feet"),
  63734. default: true
  63735. },
  63736. ]
  63737. ))
  63738. characterMakers.push(() => makeCharacter(
  63739. { name: "Akiko Takahashi", species: ["human"], tags: ["anthro"] },
  63740. {
  63741. back: {
  63742. height: math.unit(5 + 6/12, "feet"),
  63743. weight: math.unit(160, "lb"),
  63744. name: "Back",
  63745. image: {
  63746. source: "./media/characters/akiko-takahashi/back.svg",
  63747. extra: 459/454,
  63748. bottom: 27/486
  63749. }
  63750. },
  63751. },
  63752. [
  63753. {
  63754. name: "Human",
  63755. height: math.unit(5 + 6/12, "feet")
  63756. },
  63757. {
  63758. name: "Macro",
  63759. height: math.unit(198, "feet"),
  63760. default: true
  63761. },
  63762. {
  63763. name: "Megamacro",
  63764. height: math.unit(7128, "feet")
  63765. },
  63766. ]
  63767. ))
  63768. characterMakers.push(() => makeCharacter(
  63769. { name: "Velvet Garza", species: ["human"], tags: ["anthro"] },
  63770. {
  63771. front: {
  63772. height: math.unit(6, "feet"),
  63773. weight: math.unit(140, "lb"),
  63774. name: "Front",
  63775. image: {
  63776. source: "./media/characters/velvet-garza/front.svg",
  63777. extra: 480/462,
  63778. bottom: 7/487
  63779. }
  63780. },
  63781. },
  63782. [
  63783. {
  63784. name: "Macro",
  63785. height: math.unit(37, "feet"),
  63786. default: true
  63787. },
  63788. ]
  63789. ))
  63790. characterMakers.push(() => makeCharacter(
  63791. { name: "Gaia", species: ["deity", "human"], tags: ["anthro"] },
  63792. {
  63793. front: {
  63794. height: math.unit(7 + 6/12, "feet"),
  63795. weight: math.unit(400, "lb"),
  63796. name: "Front",
  63797. image: {
  63798. source: "./media/characters/gaia/front.svg",
  63799. extra: 474/463,
  63800. bottom: 13/487
  63801. }
  63802. },
  63803. },
  63804. [
  63805. {
  63806. name: "MiniMacro",
  63807. height: math.unit(7 + 6/12, "feet")
  63808. },
  63809. {
  63810. name: "GigaMacro",
  63811. height: math.unit(14500, "feet"),
  63812. default: true
  63813. },
  63814. ]
  63815. ))
  63816. characterMakers.push(() => makeCharacter(
  63817. { name: "Tim", species: ["rabbit"], tags: ["anthro"] },
  63818. {
  63819. front: {
  63820. height: math.unit(6, "feet"),
  63821. weight: math.unit(150, "lb"),
  63822. name: "Front",
  63823. image: {
  63824. source: "./media/characters/tim/front.svg",
  63825. extra: 1878/1743,
  63826. bottom: 9/1887
  63827. }
  63828. },
  63829. frontDressed: {
  63830. height: math.unit(6, "feet"),
  63831. weight: math.unit(150, "lb"),
  63832. name: "Front (Dressed)",
  63833. image: {
  63834. source: "./media/characters/tim/front-dressed.svg",
  63835. extra: 1765/1485,
  63836. bottom: 48/1813
  63837. }
  63838. },
  63839. backDressed: {
  63840. height: math.unit(6, "feet"),
  63841. weight: math.unit(150, "lb"),
  63842. name: "Back (Dressed)",
  63843. image: {
  63844. source: "./media/characters/tim/back-dressed.svg",
  63845. extra: 1750/1465,
  63846. bottom: 25/1775
  63847. }
  63848. },
  63849. dick: {
  63850. height: math.unit(1.5, "feet"),
  63851. weight: math.unit(6, "lb"),
  63852. name: "Dick",
  63853. image: {
  63854. source: "./media/characters/tim/dick.svg"
  63855. }
  63856. },
  63857. hand: {
  63858. height: math.unit(0.522, "feet"),
  63859. name: "Hand",
  63860. image: {
  63861. source: "./media/characters/tim/hand.svg"
  63862. }
  63863. },
  63864. palm: {
  63865. height: math.unit(0.48, "feet"),
  63866. name: "Palm",
  63867. image: {
  63868. source: "./media/characters/tim/palm.svg"
  63869. }
  63870. },
  63871. paw: {
  63872. height: math.unit(0.9, "feet"),
  63873. name: "Paw",
  63874. image: {
  63875. source: "./media/characters/tim/paw.svg"
  63876. }
  63877. },
  63878. sole: {
  63879. height: math.unit(0.88, "feet"),
  63880. name: "Sole",
  63881. image: {
  63882. source: "./media/characters/tim/sole.svg"
  63883. }
  63884. },
  63885. },
  63886. [
  63887. {
  63888. name: "Macro",
  63889. height: math.unit(1000, "feet")
  63890. },
  63891. {
  63892. name: "Megamacro",
  63893. height: math.unit(10000, "feet"),
  63894. default: true
  63895. },
  63896. {
  63897. name: "Megamacro+",
  63898. height: math.unit(50000, "feet")
  63899. },
  63900. {
  63901. name: "Gigamacro",
  63902. height: math.unit(150000, "km")
  63903. },
  63904. ]
  63905. ))
  63906. characterMakers.push(() => makeCharacter(
  63907. { name: "Abel Delreoux", species: ["maine-coon"], tags: ["anthro"] },
  63908. {
  63909. front: {
  63910. height: math.unit(5 + 8/12, "feet"),
  63911. weight: math.unit(170, "lb"),
  63912. name: "Front",
  63913. image: {
  63914. source: "./media/characters/abel-delreoux/front.svg",
  63915. extra: 1615/1500,
  63916. bottom: 82/1697
  63917. }
  63918. },
  63919. back: {
  63920. height: math.unit(5 + 8/12, "feet"),
  63921. weight: math.unit(170, "lb"),
  63922. name: "Back",
  63923. image: {
  63924. source: "./media/characters/abel-delreoux/back.svg",
  63925. extra: 1644/1534,
  63926. bottom: 24/1668
  63927. }
  63928. },
  63929. casual: {
  63930. height: math.unit(5 + 8/12, "feet"),
  63931. weight: math.unit(170, "lb"),
  63932. name: "Casual",
  63933. image: {
  63934. source: "./media/characters/abel-delreoux/casual.svg",
  63935. extra: 1716/1598,
  63936. bottom: 29/1745
  63937. }
  63938. },
  63939. sleepy: {
  63940. height: math.unit(5 + 8/12, "feet"),
  63941. weight: math.unit(170, "lb"),
  63942. name: "Sleepy",
  63943. image: {
  63944. source: "./media/characters/abel-delreoux/sleepy.svg",
  63945. extra: 1649/1573,
  63946. bottom: 22/1671
  63947. }
  63948. },
  63949. fem: {
  63950. height: math.unit(5 + 8/12, "feet"),
  63951. weight: math.unit(170, "lb"),
  63952. name: "Fem",
  63953. image: {
  63954. source: "./media/characters/abel-delreoux/fem.svg",
  63955. extra: 1680/1564,
  63956. bottom: 17/1697
  63957. }
  63958. },
  63959. hand: {
  63960. height: math.unit(0.78, "feet"),
  63961. name: "Hand",
  63962. image: {
  63963. source: "./media/characters/abel-delreoux/hand.svg"
  63964. }
  63965. },
  63966. paw: {
  63967. height: math.unit(0.78, "feet"),
  63968. name: "Paw",
  63969. image: {
  63970. source: "./media/characters/abel-delreoux/paw.svg"
  63971. }
  63972. },
  63973. },
  63974. [
  63975. {
  63976. name: "Normal",
  63977. height: math.unit(5 + 8/12, "feet"),
  63978. default: true
  63979. },
  63980. ]
  63981. ))
  63982. characterMakers.push(() => makeCharacter(
  63983. { name: "Meus", species: ["phoenix"], tags: ["anthro"] },
  63984. {
  63985. front: {
  63986. height: math.unit(6, "feet"),
  63987. weight: math.unit(159, "lb"),
  63988. name: "Front",
  63989. image: {
  63990. source: "./media/characters/meus/front.svg",
  63991. extra: 938/843,
  63992. bottom: 37/975
  63993. }
  63994. },
  63995. back: {
  63996. height: math.unit(6, "feet"),
  63997. weight: math.unit(159, "lb"),
  63998. name: "Back",
  63999. image: {
  64000. source: "./media/characters/meus/back.svg",
  64001. extra: 967/873,
  64002. bottom: 12/979
  64003. }
  64004. },
  64005. },
  64006. [
  64007. {
  64008. name: "Micro",
  64009. height: math.unit(2, "inches")
  64010. },
  64011. {
  64012. name: "Mini",
  64013. height: math.unit(6, "inches")
  64014. },
  64015. {
  64016. name: "Normal",
  64017. height: math.unit(6, "feet"),
  64018. default: true
  64019. },
  64020. {
  64021. name: "Macro",
  64022. height: math.unit(84, "feet")
  64023. },
  64024. ]
  64025. ))
  64026. characterMakers.push(() => makeCharacter(
  64027. { name: "Yamato", species: ["kobold"], tags: ["anthro"] },
  64028. {
  64029. front: {
  64030. height: math.unit(60, "cm"),
  64031. weight: math.unit(18, "kg"),
  64032. name: "Front",
  64033. image: {
  64034. source: "./media/characters/yamato/front.svg",
  64035. extra: 733/688,
  64036. bottom: 29/762
  64037. }
  64038. },
  64039. },
  64040. [
  64041. {
  64042. name: "Micro",
  64043. height: math.unit(6, "cm")
  64044. },
  64045. {
  64046. name: "Normal",
  64047. height: math.unit(60, "cm"),
  64048. default: true
  64049. },
  64050. ]
  64051. ))
  64052. characterMakers.push(() => makeCharacter(
  64053. { name: "Barus", species: ["deity"], tags: ["anthro"] },
  64054. {
  64055. front: {
  64056. height: math.unit(9, "feet"),
  64057. weight: math.unit(518, "lb"),
  64058. name: "Front",
  64059. image: {
  64060. source: "./media/characters/barus/front.svg",
  64061. extra: 1877/1795,
  64062. bottom: 55/1932
  64063. }
  64064. },
  64065. },
  64066. [
  64067. {
  64068. name: "Base Height",
  64069. height: math.unit(9, "feet"),
  64070. default: true
  64071. },
  64072. {
  64073. name: "Large",
  64074. height: math.unit(18, "feet")
  64075. },
  64076. {
  64077. name: "Giant",
  64078. height: math.unit(100, "feet")
  64079. },
  64080. {
  64081. name: "Huge",
  64082. height: math.unit(500, "feet")
  64083. },
  64084. {
  64085. name: "Enormous",
  64086. height: math.unit(300, "meters")
  64087. },
  64088. {
  64089. name: "Deity Among Man",
  64090. height: math.unit(3000, "meters")
  64091. },
  64092. ]
  64093. ))
  64094. characterMakers.push(() => makeCharacter(
  64095. { name: "Yari", species: ["sergal"], tags: ["anthro"] },
  64096. {
  64097. front: {
  64098. height: math.unit(1.7, "meters"),
  64099. name: "Front",
  64100. image: {
  64101. source: "./media/characters/yari/front.svg",
  64102. extra: 1210/1125,
  64103. bottom: 283/1493
  64104. }
  64105. },
  64106. back: {
  64107. height: math.unit(1.7, "meters"),
  64108. name: "Back",
  64109. image: {
  64110. source: "./media/characters/yari/back.svg",
  64111. extra: 1240/1195,
  64112. bottom: 180/1420
  64113. }
  64114. },
  64115. head: {
  64116. height: math.unit(1.26, "feet"),
  64117. name: "Head",
  64118. image: {
  64119. source: "./media/characters/yari/head.svg"
  64120. }
  64121. },
  64122. },
  64123. [
  64124. {
  64125. name: "Nano",
  64126. height: math.unit(0.5, "mm")
  64127. },
  64128. {
  64129. name: "Micro",
  64130. height: math.unit(3, "inches")
  64131. },
  64132. {
  64133. name: "Short",
  64134. height: math.unit(1.5, "meters")
  64135. },
  64136. {
  64137. name: "Norm",
  64138. height: math.unit(1.7, "meters"),
  64139. default: true
  64140. },
  64141. ]
  64142. ))
  64143. characterMakers.push(() => makeCharacter(
  64144. { name: "Salem", species: ["mouse"], tags: ["anthro"] },
  64145. {
  64146. front: {
  64147. height: math.unit(5 + 2/12, "feet"),
  64148. weight: math.unit(110, "lb"),
  64149. name: "Front",
  64150. image: {
  64151. source: "./media/characters/salem/front.svg",
  64152. extra: 1895/1800,
  64153. bottom: 23/1918
  64154. }
  64155. },
  64156. back: {
  64157. height: math.unit(5 + 2/12, "feet"),
  64158. weight: math.unit(110, "lb"),
  64159. name: "Back",
  64160. image: {
  64161. source: "./media/characters/salem/back.svg",
  64162. extra: 1875/1802,
  64163. bottom: 20/1895
  64164. }
  64165. },
  64166. head: {
  64167. height: math.unit(1, "feet"),
  64168. name: "Head",
  64169. image: {
  64170. source: "./media/characters/salem/head.svg"
  64171. }
  64172. },
  64173. paw: {
  64174. height: math.unit(0.59, "feet"),
  64175. name: "Paw",
  64176. image: {
  64177. source: "./media/characters/salem/paw.svg"
  64178. }
  64179. },
  64180. beans: {
  64181. height: math.unit(0.66, "feet"),
  64182. name: "Beans",
  64183. image: {
  64184. source: "./media/characters/salem/beans.svg"
  64185. }
  64186. },
  64187. eye: {
  64188. height: math.unit(0.224, "feet"),
  64189. name: "Eye",
  64190. image: {
  64191. source: "./media/characters/salem/eye.svg"
  64192. }
  64193. },
  64194. semiferal: {
  64195. height: math.unit(2.3, "feet"),
  64196. name: "Semiferal",
  64197. image: {
  64198. source: "./media/characters/salem/semiferal.svg",
  64199. extra: 914/839,
  64200. bottom: 32/946
  64201. }
  64202. },
  64203. },
  64204. [
  64205. {
  64206. name: "Micro",
  64207. height: math.unit(4, "inches")
  64208. },
  64209. {
  64210. name: "Normal",
  64211. height: math.unit(5 + 2/12, "feet"),
  64212. default: true
  64213. },
  64214. {
  64215. name: "Macro",
  64216. height: math.unit(108, "feet")
  64217. },
  64218. {
  64219. name: "Macro+",
  64220. height: math.unit(1500, "feet")
  64221. },
  64222. ]
  64223. ))
  64224. characterMakers.push(() => makeCharacter(
  64225. { name: "Kii", species: ["dragon", "dog"], tags: ["anthro"] },
  64226. {
  64227. front: {
  64228. height: math.unit(7 + 6/12, "feet"),
  64229. weight: math.unit(600, "kg"),
  64230. preyCapacity: math.unit(10, "people"),
  64231. name: "Front",
  64232. image: {
  64233. source: "./media/characters/kii/front.svg",
  64234. extra: 3296/3087,
  64235. bottom: 130/3426
  64236. }
  64237. },
  64238. },
  64239. [
  64240. {
  64241. name: "Normal",
  64242. height: math.unit(7 + 6/12, "feet"),
  64243. default: true
  64244. },
  64245. ]
  64246. ))
  64247. characterMakers.push(() => makeCharacter(
  64248. { name: "Taffy", species: ["saltwater-crocodile"], tags: ["anthro"] },
  64249. {
  64250. front: {
  64251. height: math.unit(2, "meters"),
  64252. weight: math.unit(200, "lb"),
  64253. name: "Front",
  64254. image: {
  64255. source: "./media/characters/taffy/front.svg",
  64256. extra: 1666/1618,
  64257. bottom: 157/1823
  64258. }
  64259. },
  64260. back: {
  64261. height: math.unit(2, "meters"),
  64262. weight: math.unit(200, "lb"),
  64263. name: "Back",
  64264. image: {
  64265. source: "./media/characters/taffy/back.svg",
  64266. extra: 1635/1583,
  64267. bottom: 153/1788
  64268. }
  64269. },
  64270. },
  64271. [
  64272. {
  64273. name: "Normal",
  64274. height: math.unit(2, "meters"),
  64275. default: true
  64276. },
  64277. ]
  64278. ))
  64279. characterMakers.push(() => makeCharacter(
  64280. { name: "Barley", species: ["eastern-grey-kangaroo"], tags: ["anthro"] },
  64281. {
  64282. front: {
  64283. height: math.unit(1.55, "meters"),
  64284. weight: math.unit(60, "kg"),
  64285. name: "Front",
  64286. image: {
  64287. source: "./media/characters/barley/front.svg",
  64288. extra: 1520/1340,
  64289. bottom: 47/1567
  64290. }
  64291. },
  64292. back: {
  64293. height: math.unit(1.55, "meters"),
  64294. weight: math.unit(60, "kg"),
  64295. name: "Back",
  64296. image: {
  64297. source: "./media/characters/barley/back.svg",
  64298. extra: 1543/1341,
  64299. bottom: 12/1555
  64300. }
  64301. },
  64302. feet: {
  64303. height: math.unit(2.18, "feet"),
  64304. name: "Feet",
  64305. image: {
  64306. source: "./media/characters/barley/feet.svg"
  64307. }
  64308. },
  64309. },
  64310. [
  64311. {
  64312. name: "Normal",
  64313. height: math.unit(1.55, "meters"),
  64314. default: true
  64315. },
  64316. ]
  64317. ))
  64318. characterMakers.push(() => makeCharacter(
  64319. { name: "Lydia Lopez", species: ["shark"], tags: ["anthro"] },
  64320. {
  64321. dressed: {
  64322. height: math.unit(6, "feet"),
  64323. name: "Dressed",
  64324. image: {
  64325. source: "./media/characters/lydia-lopez/dressed.svg",
  64326. extra: 1319/1277,
  64327. bottom: 90/1409
  64328. }
  64329. },
  64330. nude: {
  64331. height: math.unit(6, "feet"),
  64332. name: "Nude",
  64333. image: {
  64334. source: "./media/characters/lydia-lopez/nude.svg",
  64335. extra: 1319/1277,
  64336. bottom: 90/1409
  64337. }
  64338. },
  64339. },
  64340. [
  64341. {
  64342. name: "Normal",
  64343. height: math.unit(6, "feet"),
  64344. default: true
  64345. },
  64346. {
  64347. name: "Maximum",
  64348. height: math.unit(2101, "feet")
  64349. },
  64350. ]
  64351. ))
  64352. characterMakers.push(() => makeCharacter(
  64353. { name: "Kira (Slime)", species: ["slime"], tags: ["goo"] },
  64354. {
  64355. front: {
  64356. height: math.unit(5 + 4/12, "feet"),
  64357. weight: math.unit(250, "lb"),
  64358. volume: math.unit(20, "gallons"),
  64359. name: "Front",
  64360. image: {
  64361. source: "./media/characters/kira-slime/front.svg",
  64362. extra: 442/403,
  64363. bottom: 18/460
  64364. }
  64365. },
  64366. frontNsfw: {
  64367. height: math.unit(5 + 4/12, "feet"),
  64368. weight: math.unit(250, "lb"),
  64369. volume: math.unit(20, "gallons"),
  64370. name: "Front (NSFW)",
  64371. image: {
  64372. source: "./media/characters/kira-slime/front-nsfw.svg",
  64373. extra: 442/403,
  64374. bottom: 18/460
  64375. }
  64376. },
  64377. },
  64378. [
  64379. {
  64380. name: "Droplet",
  64381. height: math.unit(0.0464452, "feet")
  64382. },
  64383. {
  64384. name: "Pint",
  64385. height: math.unit(0.9824, "feet")
  64386. },
  64387. {
  64388. name: "Bucket",
  64389. height: math.unit(2.83, "feet")
  64390. },
  64391. {
  64392. name: "Normal",
  64393. height: math.unit(5 + 4/12, "feet"),
  64394. default: true
  64395. },
  64396. {
  64397. name: "Tub",
  64398. height: math.unit(8.46614, "feet")
  64399. },
  64400. {
  64401. name: "Pool",
  64402. height: math.unit(31.1895, "feet")
  64403. },
  64404. {
  64405. name: "Pond",
  64406. height: math.unit(170.349, "feet")
  64407. },
  64408. {
  64409. name: "Lake",
  64410. height: math.unit(289334, "feet")
  64411. },
  64412. {
  64413. name: "Ocean",
  64414. height: math.unit(1.11940e+7, "feet")
  64415. },
  64416. ]
  64417. ))
  64418. characterMakers.push(() => makeCharacter(
  64419. { name: "Holiday", species: ["fennec-fox", "deer"], tags: ["anthro"] },
  64420. {
  64421. front: {
  64422. height: math.unit(5 + 6/12, "feet"),
  64423. weight: math.unit(120, "lb"),
  64424. name: "Front",
  64425. image: {
  64426. source: "./media/characters/holiday/front.svg",
  64427. extra: 456/403,
  64428. bottom: 4/460
  64429. }
  64430. },
  64431. back: {
  64432. height: math.unit(5 + 6/12, "feet"),
  64433. weight: math.unit(120, "lb"),
  64434. name: "Back",
  64435. image: {
  64436. source: "./media/characters/holiday/back.svg",
  64437. extra: 450/404,
  64438. bottom: 12/462
  64439. }
  64440. },
  64441. head: {
  64442. height: math.unit(2.3, "feet"),
  64443. name: "Head",
  64444. image: {
  64445. source: "./media/characters/holiday/head.svg"
  64446. }
  64447. },
  64448. },
  64449. [
  64450. {
  64451. name: "Normal",
  64452. height: math.unit(5 + 6/12, "feet"),
  64453. default: true
  64454. },
  64455. {
  64456. name: "Macro",
  64457. height: math.unit(6574.25, "feet")
  64458. },
  64459. ]
  64460. ))
  64461. characterMakers.push(() => makeCharacter(
  64462. { name: "Camina", species: ["latenivenatrix"], tags: ["anthro"] },
  64463. {
  64464. front: {
  64465. height: math.unit(6 + 2/12, "feet"),
  64466. weight: math.unit(200, "lb"),
  64467. name: "Front",
  64468. image: {
  64469. source: "./media/characters/camina/front.svg",
  64470. extra: 1048/985,
  64471. bottom: 30/1078
  64472. }
  64473. },
  64474. },
  64475. [
  64476. {
  64477. name: "Normal",
  64478. height: math.unit(6 + 2/12, "feet"),
  64479. default: true
  64480. },
  64481. ]
  64482. ))
  64483. characterMakers.push(() => makeCharacter(
  64484. { name: "Smuck", species: ["duck"], tags: ["feral"] },
  64485. {
  64486. front: {
  64487. height: math.unit(30, "cm"),
  64488. weight: math.unit(420, "grams"),
  64489. name: "Front",
  64490. image: {
  64491. source: "./media/characters/smuck/front.svg",
  64492. extra: 379/345,
  64493. bottom: 36/415
  64494. }
  64495. },
  64496. },
  64497. [
  64498. {
  64499. name: "Smuck-Sized",
  64500. height: math.unit(30, "cm"),
  64501. default: true
  64502. },
  64503. ]
  64504. ))
  64505. characterMakers.push(() => makeCharacter(
  64506. { name: "Bylur", species: ["monster"], tags: ["anthro"] },
  64507. {
  64508. frontSfw: {
  64509. height: math.unit(10, "feet"),
  64510. weight: math.unit(1000, "kg"),
  64511. preyCapacity: math.unit(2, "people"),
  64512. name: "Front (SFW)",
  64513. image: {
  64514. source: "./media/characters/bylur/front-sfw.svg",
  64515. extra: 419/343,
  64516. bottom: 3/422
  64517. },
  64518. default: true
  64519. },
  64520. frontSheath: {
  64521. height: math.unit(10, "feet"),
  64522. weight: math.unit(1000, "kg"),
  64523. preyCapacity: math.unit(2, "people"),
  64524. name: "Front (Sheath)",
  64525. image: {
  64526. source: "./media/characters/bylur/front-sheath.svg",
  64527. extra: 419/343,
  64528. bottom: 3/422
  64529. }
  64530. },
  64531. frontErect: {
  64532. height: math.unit(10, "feet"),
  64533. weight: math.unit(1000, "kg"),
  64534. preyCapacity: math.unit(2, "people"),
  64535. name: "Front (Erect)",
  64536. image: {
  64537. source: "./media/characters/bylur/front-erect.svg",
  64538. extra: 419/343,
  64539. bottom: 3/422
  64540. }
  64541. },
  64542. back: {
  64543. height: math.unit(10, "feet"),
  64544. weight: math.unit(1000, "kg"),
  64545. preyCapacity: math.unit(2, "people"),
  64546. name: "Back",
  64547. image: {
  64548. source: "./media/characters/bylur/back.svg",
  64549. extra: 392/315,
  64550. bottom: 3/395
  64551. }
  64552. },
  64553. maw: {
  64554. height: math.unit(3.65, "feet"),
  64555. name: "Maw",
  64556. image: {
  64557. source: "./media/characters/bylur/maw.svg"
  64558. }
  64559. },
  64560. },
  64561. [
  64562. {
  64563. name: "Slightly Human Sized",
  64564. height: math.unit(10, "feet")
  64565. },
  64566. {
  64567. name: "Normal",
  64568. height: math.unit(35, "feet"),
  64569. default: true
  64570. },
  64571. {
  64572. name: "Macro",
  64573. height: math.unit(130, "feet")
  64574. },
  64575. ]
  64576. ))
  64577. characterMakers.push(() => makeCharacter(
  64578. { name: "Oarven", species: ["earless-monitor-lizard"], tags: ["anthro"] },
  64579. {
  64580. frontNsfw: {
  64581. height: math.unit(6, "feet"),
  64582. weight: math.unit(250, "lb"),
  64583. preyCapacity: math.unit(0.05, "people"),
  64584. name: "Front (NSFW)",
  64585. image: {
  64586. source: "./media/characters/oarven/front-nsfw.svg",
  64587. extra: 1795/1783,
  64588. bottom: 142/1937
  64589. }
  64590. },
  64591. frontSfw: {
  64592. height: math.unit(6, "feet"),
  64593. weight: math.unit(250, "lb"),
  64594. preyCapacity: math.unit(0.05, "people"),
  64595. name: "Front (SFW)",
  64596. image: {
  64597. source: "./media/characters/oarven/front-sfw.svg",
  64598. extra: 1795/1783,
  64599. bottom: 142/1937
  64600. }
  64601. },
  64602. },
  64603. [
  64604. {
  64605. name: "Megamacro",
  64606. height: math.unit(5, "miles"),
  64607. default: true
  64608. },
  64609. {
  64610. name: "Maximum Height",
  64611. height: math.unit(5, "AUs")
  64612. },
  64613. ]
  64614. ))
  64615. characterMakers.push(() => makeCharacter(
  64616. { name: "Solidarity", species: ["aerosynth"], tags: ["feral"] },
  64617. {
  64618. side: {
  64619. height: math.unit(1065, "meters"),
  64620. weight: math.unit(1e12, "kg"),
  64621. volume: math.unit(3265000000, "m^3"),
  64622. name: "Side",
  64623. image: {
  64624. source: "./media/characters/solidarity/side.svg"
  64625. }
  64626. },
  64627. front: {
  64628. height: math.unit(1065, "meters"),
  64629. weight: math.unit(3265000000000, "kg"),
  64630. volume: math.unit(3265000000, "m^3"),
  64631. name: "Front",
  64632. image: {
  64633. source: "./media/characters/solidarity/front.svg"
  64634. }
  64635. },
  64636. top: {
  64637. height: math.unit(5823, "meters"),
  64638. weight: math.unit(3265000000000, "kg"),
  64639. volume: math.unit(3265000000, "m^3"),
  64640. name: "Top",
  64641. image: {
  64642. source: "./media/characters/solidarity/top.svg"
  64643. }
  64644. },
  64645. },
  64646. [
  64647. {
  64648. name: "Normal",
  64649. height: math.unit(1065, "meters"),
  64650. default: true
  64651. },
  64652. ]
  64653. ))
  64654. characterMakers.push(() => makeCharacter(
  64655. { name: "Ani'szi", species: ["phenx"], tags: ["taur"] },
  64656. {
  64657. side: {
  64658. height: math.unit(18 + 4/12, "feet"),
  64659. weight: math.unit(13000, "kg"),
  64660. name: "Side",
  64661. image: {
  64662. source: "./media/characters/ani'szi/side.svg",
  64663. extra: 468/459,
  64664. bottom: 60/528
  64665. }
  64666. },
  64667. head: {
  64668. height: math.unit(4.8, "feet"),
  64669. name: "Head",
  64670. image: {
  64671. source: "./media/characters/ani'szi/head.svg"
  64672. }
  64673. },
  64674. jaws: {
  64675. height: math.unit(2.25, "feet"),
  64676. name: "Jaws",
  64677. image: {
  64678. source: "./media/characters/ani'szi/jaws.svg"
  64679. }
  64680. },
  64681. bust: {
  64682. height: math.unit(8.9, "feet"),
  64683. name: "Bust",
  64684. image: {
  64685. source: "./media/characters/ani'szi/bust.svg"
  64686. }
  64687. },
  64688. back: {
  64689. height: math.unit(13.53, "feet"),
  64690. name: "Back",
  64691. image: {
  64692. source: "./media/characters/ani'szi/back.svg"
  64693. }
  64694. },
  64695. eye: {
  64696. height: math.unit(0.44, "feet"),
  64697. name: "Eye",
  64698. image: {
  64699. source: "./media/characters/ani'szi/eye.svg"
  64700. }
  64701. },
  64702. },
  64703. [
  64704. {
  64705. name: "Normal",
  64706. height: math.unit(18 + 4/12, "feet"),
  64707. default: true
  64708. },
  64709. ]
  64710. ))
  64711. characterMakers.push(() => makeCharacter(
  64712. { name: "Rain", species: ["driger"], tags: ["anthro"] },
  64713. {
  64714. front: {
  64715. height: math.unit(7 + 6/12, "feet"),
  64716. weight: math.unit(300, "lb"),
  64717. name: "Front",
  64718. image: {
  64719. source: "./media/characters/rain/front.svg",
  64720. extra: 2955/2698,
  64721. bottom: 235/3190
  64722. }
  64723. },
  64724. dressed: {
  64725. height: math.unit(7 + 6/12, "feet"),
  64726. weight: math.unit(300, "lb"),
  64727. name: "Dressed",
  64728. image: {
  64729. source: "./media/characters/rain/dressed.svg",
  64730. extra: 2783/2572,
  64731. bottom: 430/3213
  64732. }
  64733. },
  64734. },
  64735. [
  64736. {
  64737. name: "Normal",
  64738. height: math.unit(7 + 6/12, "feet"),
  64739. default: true
  64740. },
  64741. {
  64742. name: "Macro",
  64743. height: math.unit(200, "feet")
  64744. },
  64745. {
  64746. name: "Macro+",
  64747. height: math.unit(500, "feet")
  64748. },
  64749. {
  64750. name: "Megamacro",
  64751. height: math.unit(5, "miles")
  64752. },
  64753. ]
  64754. ))
  64755. characterMakers.push(() => makeCharacter(
  64756. { name: "Anise", species: ["gryphon"], tags: ["feral", "taur"] },
  64757. {
  64758. taur_side: {
  64759. height: math.unit(3, "meters"),
  64760. name: "Side",
  64761. image: {
  64762. source: "./media/characters/anise/taur-side.svg",
  64763. extra: 1833/926,
  64764. bottom: 134/1967
  64765. },
  64766. form: "taur",
  64767. default: true
  64768. },
  64769. feral_side: {
  64770. height: math.unit(3, "meters"),
  64771. name: "Side",
  64772. image: {
  64773. source: "./media/characters/anise/feral-side.svg",
  64774. extra: 681/349,
  64775. bottom: 26/707
  64776. },
  64777. form: "feral"
  64778. },
  64779. },
  64780. [
  64781. {
  64782. name: "Normal",
  64783. height: math.unit(3, "meters"),
  64784. default: true,
  64785. allForms: true
  64786. },
  64787. ],
  64788. {
  64789. "taur": {
  64790. name: "Taur",
  64791. default: true
  64792. },
  64793. "feral": {
  64794. name: "Feral",
  64795. },
  64796. }
  64797. ))
  64798. characterMakers.push(() => makeCharacter(
  64799. { name: "Sarina", species: ["red-panda"], tags: ["anthro"] },
  64800. {
  64801. front: {
  64802. height: math.unit(1.9, "meters"),
  64803. weight: math.unit(75, "kg"),
  64804. name: "Front",
  64805. image: {
  64806. source: "./media/characters/sarina/front.svg",
  64807. extra: 1275/1200,
  64808. bottom: 49/1324
  64809. }
  64810. },
  64811. back: {
  64812. height: math.unit(1.9, "meters"),
  64813. weight: math.unit(75, "kg"),
  64814. name: "Back",
  64815. image: {
  64816. source: "./media/characters/sarina/back.svg",
  64817. extra: 1279/1209,
  64818. bottom: 14/1293
  64819. }
  64820. },
  64821. dressed: {
  64822. height: math.unit(1.9, "meters"),
  64823. weight: math.unit(75, "kg"),
  64824. name: "Dressed",
  64825. image: {
  64826. source: "./media/characters/sarina/dressed.svg",
  64827. extra: 1256/1187,
  64828. bottom: 56/1312
  64829. }
  64830. },
  64831. paw: {
  64832. height: math.unit(0.57, "feet"),
  64833. name: "Paw",
  64834. image: {
  64835. source: "./media/characters/sarina/paw.svg"
  64836. }
  64837. },
  64838. toering: {
  64839. height: math.unit(0.27, "feet"),
  64840. name: "Toering",
  64841. image: {
  64842. source: "./media/characters/sarina/toering.svg"
  64843. }
  64844. },
  64845. },
  64846. [
  64847. {
  64848. name: "Incognito",
  64849. height: math.unit(1.9, "meters")
  64850. },
  64851. {
  64852. name: "Home Size",
  64853. height: math.unit(160, "meters"),
  64854. default: true
  64855. },
  64856. {
  64857. name: "Mega",
  64858. height: math.unit(50, "km")
  64859. },
  64860. {
  64861. name: "Small Giga",
  64862. height: math.unit(250, "km")
  64863. },
  64864. {
  64865. name: "Giga (Preferred Size)",
  64866. height: math.unit(3000, "km")
  64867. },
  64868. {
  64869. name: "Terra",
  64870. height: math.unit(40000, "km")
  64871. },
  64872. {
  64873. name: "Terra+",
  64874. height: math.unit(400000, "km")
  64875. },
  64876. {
  64877. name: "Solar",
  64878. height: math.unit(35e6, "km")
  64879. },
  64880. {
  64881. name: "Galactic",
  64882. height: math.unit(648106, "parsecs")
  64883. },
  64884. {
  64885. name: "Universal",
  64886. height: math.unit(7, "universes")
  64887. },
  64888. {
  64889. name: "Universal+",
  64890. height: math.unit(30, "universes")
  64891. },
  64892. ]
  64893. ))
  64894. characterMakers.push(() => makeCharacter(
  64895. { name: "Sifray", species: ["homestuck-troll"], tags: ["anthro"] },
  64896. {
  64897. front: {
  64898. height: math.unit(5 + 6/12, "feet"),
  64899. name: "Front",
  64900. image: {
  64901. source: "./media/characters/sifray/front.svg",
  64902. extra: 722/691,
  64903. bottom: 64/786
  64904. }
  64905. },
  64906. },
  64907. [
  64908. {
  64909. name: "Normal",
  64910. height: math.unit(5 + 6/12, "feet"),
  64911. default: true
  64912. },
  64913. ]
  64914. ))
  64915. characterMakers.push(() => makeCharacter(
  64916. { name: "Spots", species: ["dog"], tags: ["feral"] },
  64917. {
  64918. side: {
  64919. height: math.unit(2.64, "feet"),
  64920. weight: math.unit(100, "lb"),
  64921. preyCapacity: math.unit(3, "people"),
  64922. name: "Side",
  64923. image: {
  64924. source: "./media/characters/spots/side.svg",
  64925. extra: 1859/977,
  64926. bottom: 19/1878
  64927. },
  64928. extraAttributes: {
  64929. "preyPerMinute": {
  64930. name: "Prey Per Minute",
  64931. power: 3,
  64932. type: "volume",
  64933. base: math.unit(6, "people"),
  64934. defaultUnit: "people"
  64935. },
  64936. "preyPerDay": {
  64937. name: "Prey Per Day",
  64938. power: 3,
  64939. type: "volume",
  64940. base: math.unit(6 * 60 * 24, "people"),
  64941. defaultUnit: "people"
  64942. },
  64943. }
  64944. },
  64945. },
  64946. [
  64947. {
  64948. name: "Normal",
  64949. height: math.unit(2.64, "feet"),
  64950. default: true
  64951. },
  64952. ]
  64953. ))
  64954. characterMakers.push(() => makeCharacter(
  64955. { name: "Mona", species: ["caudin"], tags: ["anthro"] },
  64956. {
  64957. front: {
  64958. height: math.unit(29 + 11/12, "feet"),
  64959. weight: math.unit(40, "tons"),
  64960. name: "Front",
  64961. image: {
  64962. source: "./media/characters/mona/front.svg",
  64963. extra: 1257/1116,
  64964. bottom: 34/1291
  64965. }
  64966. },
  64967. },
  64968. [
  64969. {
  64970. name: "Normal",
  64971. height: math.unit(29 + 11/12, "feet"),
  64972. default: true
  64973. },
  64974. ]
  64975. ))
  64976. characterMakers.push(() => makeCharacter(
  64977. { name: "FrostFire", species: ["dragon"], tags: ["anthro"] },
  64978. {
  64979. front: {
  64980. height: math.unit(15, "feet"),
  64981. weight: math.unit(3000, "kg"),
  64982. preyCapacity: math.unit(5, "people"),
  64983. name: "Front",
  64984. image: {
  64985. source: "./media/characters/frostfire/front.svg",
  64986. extra: 675/558,
  64987. bottom: 73/748
  64988. }
  64989. },
  64990. side: {
  64991. height: math.unit(15, "feet"),
  64992. weight: math.unit(3000, "kg"),
  64993. preyCapacity: math.unit(5, "people"),
  64994. name: "Side",
  64995. image: {
  64996. source: "./media/characters/frostfire/side.svg",
  64997. extra: 687/585,
  64998. bottom: 50/737
  64999. }
  65000. },
  65001. back: {
  65002. height: math.unit(15, "feet"),
  65003. weight: math.unit(3000, "kg"),
  65004. preyCapacity: math.unit(5, "people"),
  65005. name: "Back",
  65006. image: {
  65007. source: "./media/characters/frostfire/back.svg",
  65008. extra: 707/607,
  65009. bottom: 16/723
  65010. }
  65011. },
  65012. head: {
  65013. height: math.unit(9.35, "feet"),
  65014. name: "Head",
  65015. image: {
  65016. source: "./media/characters/frostfire/head.svg"
  65017. }
  65018. },
  65019. maw: {
  65020. height: math.unit(3.32, "feet"),
  65021. name: "Maw",
  65022. image: {
  65023. source: "./media/characters/frostfire/maw.svg"
  65024. }
  65025. },
  65026. hand: {
  65027. height: math.unit(3.7, "feet"),
  65028. name: "Hand",
  65029. image: {
  65030. source: "./media/characters/frostfire/hand.svg"
  65031. }
  65032. },
  65033. paw: {
  65034. height: math.unit(5.8, "feet"),
  65035. name: "Paw",
  65036. image: {
  65037. source: "./media/characters/frostfire/paw.svg"
  65038. }
  65039. },
  65040. },
  65041. [
  65042. {
  65043. name: "Normal",
  65044. height: math.unit(15, "feet"),
  65045. default: true
  65046. },
  65047. ]
  65048. ))
  65049. characterMakers.push(() => makeCharacter(
  65050. { name: "Valeroo", species: ["kangaroo"], tags: ["anthro"] },
  65051. {
  65052. front: {
  65053. height: math.unit(5 + 2/12, "feet"),
  65054. weight: math.unit(122, "lb"),
  65055. name: "Front",
  65056. image: {
  65057. source: "./media/characters/valeroo/front.svg",
  65058. extra: 1789/1534,
  65059. bottom: 66/1855
  65060. }
  65061. },
  65062. back: {
  65063. height: math.unit(5 + 2/12, "feet"),
  65064. weight: math.unit(122, "lb"),
  65065. name: "Back",
  65066. image: {
  65067. source: "./media/characters/valeroo/back.svg",
  65068. extra: 1848/1588,
  65069. bottom: 68/1916
  65070. }
  65071. },
  65072. head: {
  65073. height: math.unit(1.87, "feet"),
  65074. name: "Head",
  65075. image: {
  65076. source: "./media/characters/valeroo/head.svg"
  65077. }
  65078. },
  65079. hand: {
  65080. height: math.unit(0.82, "feet"),
  65081. name: "Hand",
  65082. image: {
  65083. source: "./media/characters/valeroo/hand.svg"
  65084. }
  65085. },
  65086. foot: {
  65087. height: math.unit(2.42, "feet"),
  65088. name: "Foot",
  65089. image: {
  65090. source: "./media/characters/valeroo/foot.svg"
  65091. }
  65092. },
  65093. },
  65094. [
  65095. {
  65096. name: "Normal",
  65097. height: math.unit(5 + 2/12, "feet"),
  65098. default: true
  65099. },
  65100. ]
  65101. ))
  65102. characterMakers.push(() => makeCharacter(
  65103. { name: "Corrin", species: ["secretary-bird"], tags: ["anthro"] },
  65104. {
  65105. front: {
  65106. height: math.unit(11 + 3/12, "feet"),
  65107. name: "Front",
  65108. image: {
  65109. source: "./media/characters/corrin/front.svg",
  65110. extra: 665/597,
  65111. bottom: 74/739
  65112. }
  65113. },
  65114. },
  65115. [
  65116. {
  65117. name: "Standard",
  65118. height: math.unit(11 + 3/12, "feet"),
  65119. default: true
  65120. },
  65121. {
  65122. name: "The Boss",
  65123. height: math.unit(110, "feet")
  65124. },
  65125. {
  65126. name: "Shipbreaker",
  65127. height: math.unit(38, "km")
  65128. },
  65129. ]
  65130. ))
  65131. characterMakers.push(() => makeCharacter(
  65132. { name: "Kiba Ulrich", species: ["dire-wolf"], tags: ["anthro"] },
  65133. {
  65134. front: {
  65135. height: math.unit(10, "feet"),
  65136. weight: math.unit(1750, "lb"),
  65137. name: "Front",
  65138. image: {
  65139. source: "./media/characters/kiba-ulrich/front.svg",
  65140. extra: 1037/973,
  65141. bottom: 36/1073
  65142. }
  65143. },
  65144. },
  65145. [
  65146. {
  65147. name: "Normal",
  65148. height: math.unit(10, "feet"),
  65149. default: true
  65150. },
  65151. {
  65152. name: "Minimacro",
  65153. height: math.unit(20, "feet")
  65154. },
  65155. {
  65156. name: "Macro",
  65157. height: math.unit(200, "feet")
  65158. },
  65159. {
  65160. name: "Megamacro",
  65161. height: math.unit(22500, "feet")
  65162. },
  65163. {
  65164. name: "Gigamacro",
  65165. height: math.unit(2700, "miles")
  65166. },
  65167. {
  65168. name: "Teramacro",
  65169. height: math.unit(10000, "miles")
  65170. },
  65171. ]
  65172. ))
  65173. characterMakers.push(() => makeCharacter(
  65174. { name: "Ceanoth", species: ["gryphon"], tags: ["anthro"] },
  65175. {
  65176. gryphon_front: {
  65177. height: math.unit(220, "cm"),
  65178. weight: math.unit(160, "kg"),
  65179. name: "Front",
  65180. image: {
  65181. source: "./media/characters/ceanoth/gryphon-front.svg",
  65182. extra: 616/552,
  65183. bottom: 33/649
  65184. },
  65185. form: "gryphon",
  65186. default: true
  65187. },
  65188. },
  65189. [
  65190. {
  65191. name: "Normal",
  65192. height: math.unit(220, "cm"),
  65193. form: "gryphon",
  65194. default: true
  65195. },
  65196. ],
  65197. {
  65198. "gryphon": {
  65199. name: "Grpyhon",
  65200. default: true
  65201. },
  65202. }
  65203. ))
  65204. characterMakers.push(() => makeCharacter(
  65205. { name: "Vanadiya Athelya", species: ["dragon"], tags: ["taur"] },
  65206. {
  65207. dressed: {
  65208. height: math.unit(2.2 * 0.79, "meters"),
  65209. weight: math.unit(0.5, "tonnes"),
  65210. name: "Dressed",
  65211. image: {
  65212. source: "./media/characters/vanadiya-athelya/dressed.svg",
  65213. extra: 665/315,
  65214. bottom: 106/771
  65215. },
  65216. extraAttributes: {
  65217. "bodyLength": {
  65218. name: "Body Length",
  65219. power: 1,
  65220. type: "length",
  65221. base: math.unit(2.5, "meters")
  65222. },
  65223. "tailLength": {
  65224. name: "Tail Length",
  65225. power: 1,
  65226. type: "length",
  65227. base: math.unit(4.5, "meters")
  65228. },
  65229. "wingspan": {
  65230. name: "Wingspan",
  65231. power: 1,
  65232. type: "length",
  65233. base: math.unit(6, "meters")
  65234. },
  65235. "taurStomachCapacity": {
  65236. name: "Taur Stomach Capacity",
  65237. power: 3,
  65238. type: "volume",
  65239. base: math.unit(4, "people"),
  65240. defaultUnit: "people"
  65241. },
  65242. "anthroStomachCapacity": {
  65243. name: "Anthro Stomach Capacity",
  65244. power: 3,
  65245. type: "volume",
  65246. base: math.unit(1, "people"),
  65247. defaultUnit: "people"
  65248. },
  65249. }
  65250. },
  65251. nude: {
  65252. height: math.unit(2.2 * 0.79, "meters"),
  65253. weight: math.unit(0.5, "tonnes"),
  65254. name: "Nude",
  65255. image: {
  65256. source: "./media/characters/vanadiya-athelya/nude.svg",
  65257. extra: 665/315,
  65258. bottom: 106/771
  65259. },
  65260. extraAttributes: {
  65261. "bodyLength": {
  65262. name: "Body Length",
  65263. power: 1,
  65264. type: "length",
  65265. base: math.unit(2.5, "meters")
  65266. },
  65267. "tailLength": {
  65268. name: "Tail Length",
  65269. power: 1,
  65270. type: "length",
  65271. base: math.unit(4.5, "meters")
  65272. },
  65273. "wingspan": {
  65274. name: "Wingspan",
  65275. power: 1,
  65276. type: "length",
  65277. base: math.unit(6, "meters")
  65278. },
  65279. "taurStomachCapacity": {
  65280. name: "Taur Stomach Capacity",
  65281. power: 3,
  65282. type: "volume",
  65283. base: math.unit(4, "people"),
  65284. defaultUnit: "people"
  65285. },
  65286. "anthroStomachCapacity": {
  65287. name: "Anthro Stomach Capacity",
  65288. power: 3,
  65289. type: "volume",
  65290. base: math.unit(1, "people"),
  65291. defaultUnit: "people"
  65292. },
  65293. }
  65294. },
  65295. },
  65296. [
  65297. {
  65298. name: "Handheld",
  65299. height: math.unit(0.79 * 0.06, "meters")
  65300. },
  65301. {
  65302. name: "Mini",
  65303. height: math.unit(0.79 * 0.7, "meters")
  65304. },
  65305. {
  65306. name: "Short",
  65307. height: math.unit(0.79 * 1.4, "meters")
  65308. },
  65309. {
  65310. name: "Imposing",
  65311. height: math.unit(0.79 * 2.2, "meters"),
  65312. default: true
  65313. },
  65314. {
  65315. name: "Big",
  65316. height: math.unit(0.79 * 3.8, "meters")
  65317. },
  65318. {
  65319. name: "Giant",
  65320. height: math.unit(0.79 * 6.7, "meters")
  65321. },
  65322. {
  65323. name: "Airliner",
  65324. height: math.unit(0.79 * 64, "meters")
  65325. },
  65326. {
  65327. name: "Skyscraper",
  65328. height: math.unit(0.79 * 220, "meters")
  65329. },
  65330. {
  65331. name: "Mountain",
  65332. height: math.unit(0.79 * 3.6, "km")
  65333. },
  65334. {
  65335. name: "Spacescraper",
  65336. height: math.unit(0.79 * 70, "km")
  65337. },
  65338. {
  65339. name: "Continental",
  65340. height: math.unit(0.79 * 1290, "km")
  65341. },
  65342. {
  65343. name: "Moon",
  65344. height: math.unit(0.79 * 32200, "km")
  65345. },
  65346. {
  65347. name: "Planetary",
  65348. height: math.unit(0.79 * 145000, "km")
  65349. },
  65350. {
  65351. name: "Stellar",
  65352. height: math.unit(0.79 * 19e6, "km")
  65353. },
  65354. {
  65355. name: "Solar",
  65356. height: math.unit(0.79 * 40, "AU")
  65357. },
  65358. {
  65359. name: "Intersteller",
  65360. height: math.unit(0.79 * 3, "lightyears")
  65361. },
  65362. {
  65363. name: "Star Cluster",
  65364. height: math.unit(0.79 * 80, "lightyears")
  65365. },
  65366. {
  65367. name: "Ecumenical",
  65368. height: math.unit(0.79 * 2e3, "lightyears")
  65369. },
  65370. {
  65371. name: "Galactic",
  65372. height: math.unit(0.79 * 175000, "lightyears")
  65373. },
  65374. {
  65375. name: "Galaxy Cluster",
  65376. height: math.unit(0.79 * 25e6, "lightyears")
  65377. },
  65378. ]
  65379. ))
  65380. characterMakers.push(() => makeCharacter(
  65381. { name: "Yana Amelin", species: ["russian-blue"], tags: ["anthro"] },
  65382. {
  65383. front: {
  65384. height: math.unit(6 + 2/12, "feet"),
  65385. weight: math.unit(160, "lb"),
  65386. name: "Front",
  65387. image: {
  65388. source: "./media/characters/yana-amelin/front.svg",
  65389. extra: 1413/1295,
  65390. bottom: 42/1455
  65391. }
  65392. },
  65393. back: {
  65394. height: math.unit(6 + 2/12, "feet"),
  65395. weight: math.unit(160, "lb"),
  65396. name: "Back",
  65397. image: {
  65398. source: "./media/characters/yana-amelin/back.svg",
  65399. extra: 1424/1310,
  65400. bottom: 24/1448
  65401. }
  65402. },
  65403. paws: {
  65404. height: math.unit(1.48, "feet"),
  65405. name: "Paws",
  65406. image: {
  65407. source: "./media/characters/yana-amelin/paws.svg",
  65408. extra: 304/304,
  65409. bottom: 49/353
  65410. }
  65411. },
  65412. },
  65413. [
  65414. {
  65415. name: "Micro",
  65416. height: math.unit(4, "inches")
  65417. },
  65418. {
  65419. name: "Normal",
  65420. height: math.unit(6 + 2/12, "feet"),
  65421. default: true
  65422. },
  65423. {
  65424. name: "Minimacro",
  65425. height: math.unit(20, "feet")
  65426. },
  65427. {
  65428. name: "Macro",
  65429. height: math.unit(70, "feet")
  65430. },
  65431. ]
  65432. ))
  65433. characterMakers.push(() => makeCharacter(
  65434. { name: "Titania", species: ["horse"], tags: ["anthro"] },
  65435. {
  65436. frontNsfw: {
  65437. height: math.unit(2.48, "meters"),
  65438. weight: math.unit(112, "kg"),
  65439. name: "Front (NSFW)",
  65440. image: {
  65441. source: "./media/characters/titania/front-nsfw.svg",
  65442. extra: 1302/1232,
  65443. bottom: 90/1392
  65444. }
  65445. },
  65446. backNsfw: {
  65447. height: math.unit(2.48, "meters"),
  65448. weight: math.unit(112, "kg"),
  65449. name: "Back (NSFW)",
  65450. image: {
  65451. source: "./media/characters/titania/back-nsfw.svg",
  65452. extra: 1355/1288,
  65453. bottom: 18/1373
  65454. }
  65455. },
  65456. frontSfw: {
  65457. height: math.unit(2.48, "meters"),
  65458. weight: math.unit(112, "kg"),
  65459. name: "Front (SFW)",
  65460. image: {
  65461. source: "./media/characters/titania/front-sfw.svg",
  65462. extra: 1302/1232,
  65463. bottom: 90/1392
  65464. }
  65465. },
  65466. backSfw: {
  65467. height: math.unit(2.48, "meters"),
  65468. weight: math.unit(112, "kg"),
  65469. name: "Back (SFW)",
  65470. image: {
  65471. source: "./media/characters/titania/back-sfw.svg",
  65472. extra: 1355/1288,
  65473. bottom: 18/1373
  65474. }
  65475. },
  65476. head: {
  65477. height: math.unit(2.06, "feet"),
  65478. name: "Head",
  65479. image: {
  65480. source: "./media/characters/titania/head.svg"
  65481. }
  65482. },
  65483. maw: {
  65484. height: math.unit(0.8, "feet"),
  65485. name: "Maw",
  65486. image: {
  65487. source: "./media/characters/titania/maw.svg"
  65488. }
  65489. },
  65490. foot: {
  65491. height: math.unit(1.65, "feet"),
  65492. name: "Foot",
  65493. image: {
  65494. source: "./media/characters/titania/foot.svg"
  65495. }
  65496. },
  65497. nethers: {
  65498. height: math.unit(1.7, "feet"),
  65499. name: "Nethers",
  65500. image: {
  65501. source: "./media/characters/titania/nethers.svg"
  65502. }
  65503. },
  65504. },
  65505. [
  65506. {
  65507. name: "Normal",
  65508. height: math.unit(2.48, "meters"),
  65509. default: true
  65510. },
  65511. {
  65512. name: "Mini Macro",
  65513. height: math.unit(248, "meters")
  65514. },
  65515. {
  65516. name: "Macro",
  65517. height: math.unit(620, "meters")
  65518. },
  65519. {
  65520. name: "Mega Macro",
  65521. height: math.unit(1860, "meters")
  65522. },
  65523. ]
  65524. ))
  65525. characterMakers.push(() => makeCharacter(
  65526. { name: "Tony Gray", species: ["wholphin"], tags: ["anthro"] },
  65527. {
  65528. front: {
  65529. height: math.unit(5 + 9/12, "feet"),
  65530. weight: math.unit(1500, "lb"),
  65531. name: "Front",
  65532. image: {
  65533. source: "./media/characters/tony-gray/front.svg",
  65534. extra: 700/575,
  65535. bottom: 71/771
  65536. }
  65537. },
  65538. },
  65539. [
  65540. {
  65541. name: "Normal",
  65542. height: math.unit(5 + 9/12, "feet"),
  65543. default: true
  65544. },
  65545. ]
  65546. ))
  65547. characterMakers.push(() => makeCharacter(
  65548. { name: "Kelby", species: ["sea-dragon"], tags: ["feral"] },
  65549. {
  65550. side: {
  65551. height: math.unit(8 + 2/12, "feet"),
  65552. name: "Side",
  65553. image: {
  65554. source: "./media/characters/kelby/side.svg",
  65555. extra: 804/578,
  65556. bottom: 70/874
  65557. },
  65558. form: "regular",
  65559. default: true
  65560. },
  65561. lounging: {
  65562. height: math.unit(12.41, "feet"),
  65563. name: "Lounging",
  65564. image: {
  65565. source: "./media/characters/kelby/lounging.svg"
  65566. },
  65567. form: "regular"
  65568. },
  65569. maw: {
  65570. height: math.unit(5, "feet"),
  65571. name: "Maw",
  65572. image: {
  65573. source: "./media/characters/kelby/maw.svg"
  65574. },
  65575. form: "regular"
  65576. },
  65577. dick: {
  65578. height: math.unit(2.4, "feet"),
  65579. name: "Dick",
  65580. image: {
  65581. source: "./media/characters/kelby/dick.svg"
  65582. },
  65583. form: "regular"
  65584. },
  65585. slit: {
  65586. height: math.unit(1.2, "feet"),
  65587. name: "Slit",
  65588. image: {
  65589. source: "./media/characters/kelby/slit.svg"
  65590. },
  65591. form: "regular"
  65592. },
  65593. chibi: {
  65594. height: math.unit(5, "feet"),
  65595. name: "Chibi",
  65596. image: {
  65597. source: "./media/characters/kelby/chibi.svg",
  65598. extra: 245/200,
  65599. bottom: 43/288
  65600. },
  65601. form: "chibi",
  65602. default: true
  65603. },
  65604. },
  65605. [
  65606. {
  65607. name: "Normal",
  65608. height: math.unit(8 + 2/12, "feet"),
  65609. default: true,
  65610. form: "regular"
  65611. },
  65612. {
  65613. name: "Normal",
  65614. height: math.unit(5, "feet"),
  65615. default: true,
  65616. form: "chibi"
  65617. },
  65618. ],
  65619. {
  65620. "regular": {
  65621. name: "Regular",
  65622. default: true
  65623. },
  65624. "chibi": {
  65625. name: "Chibi",
  65626. },
  65627. }
  65628. ))
  65629. characterMakers.push(() => makeCharacter(
  65630. { name: "Elisa Mitchell", species: ["brown-bear", "kaiju"], tags: ["anthro"] },
  65631. {
  65632. front: {
  65633. height: math.unit(7 + 10/12, "feet"),
  65634. weight: math.unit(300, "lb"),
  65635. name: "Front",
  65636. image: {
  65637. source: "./media/characters/elisa-mitchell/front.svg",
  65638. extra: 2562/2355,
  65639. bottom: 62/2624
  65640. }
  65641. },
  65642. maw: {
  65643. height: math.unit(2.37, "feet"),
  65644. name: "Maw",
  65645. image: {
  65646. source: "./media/characters/elisa-mitchell/maw.svg"
  65647. }
  65648. },
  65649. },
  65650. [
  65651. {
  65652. name: "Normal",
  65653. height: math.unit(7 + 10/12, "feet"),
  65654. default: true
  65655. },
  65656. {
  65657. name: "Macro",
  65658. height: math.unit(1490, "feet"),
  65659. default: true
  65660. },
  65661. ]
  65662. ))
  65663. characterMakers.push(() => makeCharacter(
  65664. { name: "Camia \"Vertigo\" Zott", species: ["vampire-bat", "kaiju"], tags: ["anthro"] },
  65665. {
  65666. front: {
  65667. height: math.unit(122, "cm"),
  65668. weight: math.unit(40, "lb"),
  65669. name: "Front",
  65670. image: {
  65671. source: "./media/characters/camia-vertigo-zott/front.svg",
  65672. extra: 2112/1902,
  65673. bottom: 21/2133
  65674. }
  65675. },
  65676. },
  65677. [
  65678. {
  65679. name: "Base Height",
  65680. height: math.unit(122, "cm")
  65681. },
  65682. {
  65683. name: "Macro Height",
  65684. height: math.unit(345, "meters"),
  65685. default: true
  65686. },
  65687. ]
  65688. ))
  65689. characterMakers.push(() => makeCharacter(
  65690. { name: "Dianne Elizabeth Heathers", species: ["saint-bernard"], tags: ["anthro"] },
  65691. {
  65692. front: {
  65693. height: math.unit(6 + 3/12, "feet"),
  65694. weight: math.unit(180, "lb"),
  65695. name: "Front",
  65696. image: {
  65697. source: "./media/characters/dianne-elizabeth-heathers/front.svg",
  65698. extra: 2580/2457,
  65699. bottom: 131/2711
  65700. }
  65701. },
  65702. },
  65703. [
  65704. {
  65705. name: "Normal",
  65706. height: math.unit(6 + 3/12, "feet"),
  65707. default: true
  65708. },
  65709. ]
  65710. ))
  65711. characterMakers.push(() => makeCharacter(
  65712. { name: "Sleeka", species: ["rat"], tags: ["anthro"] },
  65713. {
  65714. front: {
  65715. height: math.unit(165, "cm"),
  65716. weight: math.unit(130, "lb"),
  65717. name: "Front",
  65718. image: {
  65719. source: "./media/characters/sleeka/front.svg",
  65720. extra: 1252/1200,
  65721. bottom: 46/1298
  65722. }
  65723. },
  65724. },
  65725. [
  65726. {
  65727. name: "Normal",
  65728. height: math.unit(165, "cm")
  65729. },
  65730. {
  65731. name: "Galactic",
  65732. height: math.unit(5.8e22, "meters"),
  65733. default: true
  65734. },
  65735. {
  65736. name: "Universal",
  65737. height: math.unit(1.02e29, "meters")
  65738. },
  65739. ]
  65740. ))
  65741. characterMakers.push(() => makeCharacter(
  65742. { name: "Emily Whitetail", species: ["deer"], tags: ["anthro"] },
  65743. {
  65744. front: {
  65745. height: math.unit(5 + 11/12, "feet"),
  65746. weight: math.unit(145, "lb"),
  65747. name: "Front",
  65748. image: {
  65749. source: "./media/characters/emily-whitetail/front.svg",
  65750. extra: 2510/2280,
  65751. bottom: 128/2638
  65752. }
  65753. },
  65754. },
  65755. [
  65756. {
  65757. name: "Normal",
  65758. height: math.unit(5 + 11/12, "feet")
  65759. },
  65760. {
  65761. name: "Galactic",
  65762. height: math.unit(6.3e22, "meters"),
  65763. default: true
  65764. },
  65765. {
  65766. name: "Universal",
  65767. height: math.unit(1.12e29, "meters")
  65768. },
  65769. ]
  65770. ))
  65771. characterMakers.push(() => makeCharacter(
  65772. { name: "Buck Whitetail", species: ["deer"], tags: ["anthro"] },
  65773. {
  65774. front: {
  65775. height: math.unit(5 + 4/12, "feet"),
  65776. weight: math.unit(110, "lb"),
  65777. name: "Front",
  65778. image: {
  65779. source: "./media/characters/buck-whitetail/front.svg",
  65780. extra: 2430/2186,
  65781. bottom: 125/2555
  65782. }
  65783. },
  65784. },
  65785. [
  65786. {
  65787. name: "Normal",
  65788. height: math.unit(5 + 4/12, "feet")
  65789. },
  65790. {
  65791. name: "Galactic",
  65792. height: math.unit(5.4e22, "meters"),
  65793. default: true
  65794. },
  65795. {
  65796. name: "Universal",
  65797. height: math.unit(9.6e28, "meters")
  65798. },
  65799. ]
  65800. ))
  65801. characterMakers.push(() => makeCharacter(
  65802. { name: "Zoey Frisk", species: ["fox"], tags: ["anthro"] },
  65803. {
  65804. front: {
  65805. height: math.unit(5 + 3/12, "feet"),
  65806. name: "Front",
  65807. image: {
  65808. source: "./media/characters/zoey-frisk/front.svg",
  65809. extra: 2825/2646,
  65810. bottom: 57/2882
  65811. }
  65812. },
  65813. },
  65814. [
  65815. {
  65816. name: "Normal",
  65817. height: math.unit(5 + 3/12, "feet"),
  65818. default: true
  65819. },
  65820. {
  65821. name: "Macro",
  65822. height: math.unit(800, "feet")
  65823. },
  65824. ]
  65825. ))
  65826. characterMakers.push(() => makeCharacter(
  65827. { name: "Dhaeleena M'iar", species: ["siamese-cat"], tags: ["anthro"] },
  65828. {
  65829. front: {
  65830. height: math.unit(210, "cm"),
  65831. weight: math.unit(102, "kg"),
  65832. name: "Front",
  65833. image: {
  65834. source: "./media/characters/dhaeleena-m'iar/front.svg",
  65835. extra: 831/790,
  65836. bottom: 19/850
  65837. }
  65838. },
  65839. },
  65840. [
  65841. {
  65842. name: "Micro",
  65843. height: math.unit(1, "mm")
  65844. },
  65845. {
  65846. name: "Small",
  65847. height: math.unit(1, "cm")
  65848. },
  65849. {
  65850. name: "Short",
  65851. height: math.unit(1, "foot")
  65852. },
  65853. {
  65854. name: "Normal",
  65855. height: math.unit(210, "cm"),
  65856. default: true
  65857. },
  65858. {
  65859. name: "Big",
  65860. height: math.unit(15, "feet")
  65861. },
  65862. {
  65863. name: "Macro",
  65864. height: math.unit(50, "feet")
  65865. },
  65866. ]
  65867. ))
  65868. characterMakers.push(() => makeCharacter(
  65869. { name: "Trouble", species: ["wolf"], tags: ["anthro"] },
  65870. {
  65871. front: {
  65872. height: math.unit(80, "feet"),
  65873. weight: math.unit(410000, "lb"),
  65874. name: "Front",
  65875. image: {
  65876. source: "./media/characters/trouble/front.svg",
  65877. extra: 780/723,
  65878. bottom: 11/791
  65879. },
  65880. extraAttributes: {
  65881. "pawArea": {
  65882. name: "Paw Area",
  65883. power: 2,
  65884. type: "area",
  65885. base: math.unit(49, "feet^2")
  65886. },
  65887. }
  65888. },
  65889. },
  65890. [
  65891. {
  65892. name: "Normal",
  65893. height: math.unit(80, "feet"),
  65894. default: true
  65895. },
  65896. ]
  65897. ))
  65898. characterMakers.push(() => makeCharacter(
  65899. { name: "Bastion Aralus", species: ["wolf"], tags: ["anthro"] },
  65900. {
  65901. front: {
  65902. height: math.unit(5 + 7/12, "feet"),
  65903. weight: math.unit(140, "lb"),
  65904. name: "Front",
  65905. image: {
  65906. source: "./media/characters/bastion-aralus/front.svg",
  65907. extra: 1122/1045,
  65908. bottom: 24/1146
  65909. }
  65910. },
  65911. back: {
  65912. height: math.unit(5 + 7/12, "feet"),
  65913. weight: math.unit(140, "lb"),
  65914. name: "Back",
  65915. image: {
  65916. source: "./media/characters/bastion-aralus/back.svg",
  65917. extra: 1158/1078,
  65918. bottom: 39/1197
  65919. }
  65920. },
  65921. dick: {
  65922. height: math.unit(1.16, "feet"),
  65923. name: "Dick",
  65924. image: {
  65925. source: "./media/characters/bastion-aralus/dick.svg"
  65926. }
  65927. },
  65928. },
  65929. [
  65930. {
  65931. name: "Micro",
  65932. height: math.unit(1, "mm")
  65933. },
  65934. {
  65935. name: "Normal",
  65936. height: math.unit(5 + 7/12, "feet"),
  65937. default: true
  65938. },
  65939. {
  65940. name: "Macro",
  65941. height: math.unit(57, "feet")
  65942. },
  65943. ]
  65944. ))
  65945. characterMakers.push(() => makeCharacter(
  65946. { name: "Midnight Yamikidate", species: ["dragon"], tags: ["anthro"] },
  65947. {
  65948. sona_front: {
  65949. height: math.unit(6, "feet"),
  65950. weight: math.unit(350, "lb"),
  65951. name: "Front",
  65952. image: {
  65953. source: "./media/characters/midnight-yamikidate/sona-front.svg",
  65954. extra: 1099/1005,
  65955. bottom: 22/1121
  65956. },
  65957. form: "sona",
  65958. default: true
  65959. },
  65960. sona_side: {
  65961. height: math.unit(6, "feet"),
  65962. weight: math.unit(350, "lb"),
  65963. name: "Side",
  65964. image: {
  65965. source: "./media/characters/midnight-yamikidate/sona-side.svg",
  65966. extra: 1075/1017,
  65967. bottom: 20/1095
  65968. },
  65969. form: "sona",
  65970. },
  65971. character_front: {
  65972. height: math.unit(6, "feet"),
  65973. weight: math.unit(300, "lb"),
  65974. name: "Front",
  65975. image: {
  65976. source: "./media/characters/midnight-yamikidate/character-front.svg",
  65977. extra: 1099/1005,
  65978. bottom: 22/1121
  65979. },
  65980. form: "character",
  65981. default: true
  65982. },
  65983. character_side: {
  65984. height: math.unit(6, "feet"),
  65985. weight: math.unit(300, "lb"),
  65986. name: "Side",
  65987. image: {
  65988. source: "./media/characters/midnight-yamikidate/character-side.svg",
  65989. extra: 1075/1017,
  65990. bottom: 20/1095
  65991. },
  65992. form: "character",
  65993. },
  65994. },
  65995. [
  65996. {
  65997. name: "Normal",
  65998. height: math.unit(500, "feet"),
  65999. default: true,
  66000. form: "sona"
  66001. },
  66002. {
  66003. name: "Normal",
  66004. height: math.unit(50, "feet"),
  66005. default: true,
  66006. form: "character"
  66007. },
  66008. ],
  66009. {
  66010. "sona": {
  66011. name: "Sona",
  66012. default: true
  66013. },
  66014. "character": {
  66015. name: "Character",
  66016. },
  66017. }
  66018. ))
  66019. characterMakers.push(() => makeCharacter(
  66020. { name: "Hood", species: ["raptor"], tags: ["anthro"] },
  66021. {
  66022. front: {
  66023. height: math.unit(5 + 4/12, "feet"),
  66024. weight: math.unit(58, "kg"),
  66025. name: "Front",
  66026. image: {
  66027. source: "./media/characters/hood/front.svg",
  66028. extra: 1474/1309,
  66029. bottom: 0/1474
  66030. }
  66031. },
  66032. },
  66033. [
  66034. {
  66035. name: "Normal",
  66036. height: math.unit(5 + 4/12, "feet"),
  66037. default: true
  66038. },
  66039. ]
  66040. ))
  66041. characterMakers.push(() => makeCharacter(
  66042. { name: "Rena", species: ["wolf"], tags: ["anthro"] },
  66043. {
  66044. front: {
  66045. height: math.unit(8 + 2/12, "feet"),
  66046. name: "Front",
  66047. image: {
  66048. source: "./media/characters/rena/front.svg",
  66049. extra: 1768/1632,
  66050. bottom: 57/1825
  66051. }
  66052. },
  66053. },
  66054. [
  66055. {
  66056. name: "Normal",
  66057. height: math.unit(8 + 2/12, "feet"),
  66058. default: true
  66059. },
  66060. ]
  66061. ))
  66062. characterMakers.push(() => makeCharacter(
  66063. { name: "Taylor (Dilophosaurus)", species: ["dilophosaurus"], tags: ["anthro"] },
  66064. {
  66065. front: {
  66066. height: math.unit(5 + 3/12, "feet"),
  66067. name: "Front",
  66068. image: {
  66069. source: "./media/characters/taylor-dilophosaurus/front.svg",
  66070. extra: 1209/1159,
  66071. bottom: 33/1242
  66072. }
  66073. },
  66074. maw: {
  66075. height: math.unit(1.75, "feet"),
  66076. name: "Maw",
  66077. image: {
  66078. source: "./media/characters/taylor-dilophosaurus/maw.svg"
  66079. }
  66080. },
  66081. },
  66082. [
  66083. {
  66084. name: "Micro",
  66085. height: math.unit(3, "inches")
  66086. },
  66087. {
  66088. name: "Regular",
  66089. height: math.unit(5 + 3/12, "feet"),
  66090. default: true
  66091. },
  66092. {
  66093. name: "Imagined",
  66094. height: math.unit(90, "meters")
  66095. },
  66096. ]
  66097. ))
  66098. characterMakers.push(() => makeCharacter(
  66099. { name: "Suma Roo", species: ["nagainini"], tags: ["naga"] },
  66100. {
  66101. front: {
  66102. height: math.unit(11.75, "feet"),
  66103. weight: math.unit(4346, "lb"),
  66104. preyCapacity: math.unit(20, "people"),
  66105. name: "Front",
  66106. image: {
  66107. source: "./media/characters/suma-roo/front.svg",
  66108. extra: 1370/1365,
  66109. bottom: 164/1534
  66110. }
  66111. },
  66112. },
  66113. [
  66114. {
  66115. name: "Normal",
  66116. height: math.unit(11.75, "feet"),
  66117. default: true
  66118. },
  66119. ]
  66120. ))
  66121. characterMakers.push(() => makeCharacter(
  66122. { name: "Hymmanios", species: ["cat"], tags: ["anthro"] },
  66123. {
  66124. front: {
  66125. height: math.unit(2.35, "meters"),
  66126. weight: math.unit(240, "kg"),
  66127. name: "Front",
  66128. image: {
  66129. source: "./media/characters/hymmanios/front.svg",
  66130. extra: 2032/1994,
  66131. bottom: 194/2226
  66132. }
  66133. },
  66134. },
  66135. [
  66136. {
  66137. name: "Normal",
  66138. height: math.unit(2.35, "meters"),
  66139. default: true
  66140. },
  66141. {
  66142. name: "Macro",
  66143. height: math.unit(75, "meters")
  66144. },
  66145. {
  66146. name: "Mega",
  66147. height: math.unit(1250, "meters")
  66148. },
  66149. {
  66150. name: "Giga",
  66151. height: math.unit(235000, "meters")
  66152. },
  66153. ]
  66154. ))
  66155. characterMakers.push(() => makeCharacter(
  66156. { name: "Azalea", species: ["kaizleon"], tags: ["anthro"] },
  66157. {
  66158. front: {
  66159. height: math.unit(134, "feet"),
  66160. weight: math.unit(932.635, "tons"),
  66161. name: "Front",
  66162. image: {
  66163. source: "./media/characters/azalea/front.svg",
  66164. extra: 703/687,
  66165. bottom: 75/778
  66166. }
  66167. },
  66168. },
  66169. [
  66170. {
  66171. name: "Normal",
  66172. height: math.unit(134, "feet"),
  66173. default: true
  66174. },
  66175. ]
  66176. ))
  66177. characterMakers.push(() => makeCharacter(
  66178. { name: "Lizzy", species: ["otter"], tags: ["anthro"] },
  66179. {
  66180. front: {
  66181. height: math.unit(6.4, "feet"),
  66182. weight: math.unit(167.5, "lb"),
  66183. name: "Front",
  66184. image: {
  66185. source: "./media/characters/lizzy/front.svg",
  66186. extra: 1916/1791,
  66187. bottom: 103/2019
  66188. }
  66189. },
  66190. back: {
  66191. height: math.unit(6.4, "feet"),
  66192. weight: math.unit(167.5, "lb"),
  66193. name: "Back",
  66194. image: {
  66195. source: "./media/characters/lizzy/back.svg",
  66196. extra: 1995/1856,
  66197. bottom: 11/2006
  66198. }
  66199. },
  66200. },
  66201. [
  66202. {
  66203. name: "Normal",
  66204. height: math.unit(6.4, "feet"),
  66205. default: true
  66206. },
  66207. ]
  66208. ))
  66209. characterMakers.push(() => makeCharacter(
  66210. { name: "Sasha", species: ["bat"], tags: ["anthro"] },
  66211. {
  66212. front: {
  66213. height: math.unit(66, "inches"),
  66214. name: "Front",
  66215. image: {
  66216. source: "./media/characters/sasha/front.svg",
  66217. extra: 620/571,
  66218. bottom: 33/653
  66219. }
  66220. },
  66221. back: {
  66222. height: math.unit(66, "inches"),
  66223. name: "Back",
  66224. image: {
  66225. source: "./media/characters/sasha/back.svg",
  66226. extra: 615/564,
  66227. bottom: 38/653
  66228. }
  66229. },
  66230. },
  66231. [
  66232. {
  66233. name: "IRL",
  66234. height: math.unit(2, "inches")
  66235. },
  66236. {
  66237. name: "Normal",
  66238. height: math.unit(66, "inches"),
  66239. default: true
  66240. },
  66241. {
  66242. name: "Macro",
  66243. height: math.unit(400, "feet")
  66244. },
  66245. {
  66246. name: "Mega Macro",
  66247. height: math.unit(500000, "feet")
  66248. },
  66249. {
  66250. name: "Giga Macro",
  66251. height: math.unit(50000, "miles")
  66252. },
  66253. ]
  66254. ))
  66255. characterMakers.push(() => makeCharacter(
  66256. { name: "Autumn (Avali)", species: ["avali"], tags: ["anthro"] },
  66257. {
  66258. front: {
  66259. height: math.unit(52, "inches"),
  66260. name: "Front",
  66261. image: {
  66262. source: "./media/characters/autumn-avali/front.svg",
  66263. extra: 1031/908,
  66264. bottom: 38/1069
  66265. }
  66266. },
  66267. back: {
  66268. height: math.unit(52, "inches"),
  66269. name: "Back",
  66270. image: {
  66271. source: "./media/characters/autumn-avali/back.svg",
  66272. extra: 1047/923,
  66273. bottom: 11/1058
  66274. }
  66275. },
  66276. maw: {
  66277. height: math.unit(0.59, "feet"),
  66278. name: "Maw",
  66279. image: {
  66280. source: "./media/characters/autumn-avali/maw.svg"
  66281. }
  66282. },
  66283. },
  66284. [
  66285. {
  66286. name: "Normal",
  66287. height: math.unit(52, "inches"),
  66288. default: true
  66289. },
  66290. {
  66291. name: "Big'vali",
  66292. height: math.unit(3.5, "meters")
  66293. },
  66294. {
  66295. name: "Macro",
  66296. height: math.unit(35, "meters")
  66297. },
  66298. {
  66299. name: "Macro+",
  66300. height: math.unit(165, "meters")
  66301. },
  66302. {
  66303. name: "Megamacro",
  66304. height: math.unit(8250, "meters")
  66305. },
  66306. {
  66307. name: "Megamacro+",
  66308. height: math.unit(88000, "meters")
  66309. },
  66310. {
  66311. name: "Gigamacro",
  66312. height: math.unit(1.32, "megameters")
  66313. },
  66314. {
  66315. name: "Planet Cracker",
  66316. height: math.unit(77, "megameters")
  66317. },
  66318. ]
  66319. ))
  66320. characterMakers.push(() => makeCharacter(
  66321. { name: "Sophie", species: ["cow"], tags: ["anthro"] },
  66322. {
  66323. front: {
  66324. height: math.unit(200, "feet"),
  66325. name: "Front",
  66326. image: {
  66327. source: "./media/characters/sophie/front.svg",
  66328. extra: 710/680,
  66329. bottom: 3/713
  66330. },
  66331. extraAttributes: {
  66332. "milkProduction": {
  66333. name: "Milk Production",
  66334. power: 3,
  66335. type: "volume",
  66336. base: math.unit(27000, "liters")
  66337. },
  66338. }
  66339. },
  66340. },
  66341. [
  66342. {
  66343. name: "Normal",
  66344. height: math.unit(200, "feet"),
  66345. default: true
  66346. },
  66347. ]
  66348. ))
  66349. characterMakers.push(() => makeCharacter(
  66350. { name: "Adelaide (Spireborn)", species: ["spireborn"], tags: ["anthro"] },
  66351. {
  66352. front: {
  66353. height: math.unit(23, "feet"),
  66354. name: "Front",
  66355. image: {
  66356. source: "./media/characters/adelaide-spireborn/front.svg",
  66357. extra: 671/625,
  66358. bottom: 18/689
  66359. }
  66360. },
  66361. maw: {
  66362. height: math.unit(7.8, "feet"),
  66363. name: "Maw",
  66364. image: {
  66365. source: "./media/characters/adelaide-spireborn/maw.svg"
  66366. }
  66367. },
  66368. sword: {
  66369. height: math.unit(13.4, "feet"),
  66370. name: "Sword",
  66371. image: {
  66372. source: "./media/characters/adelaide-spireborn/sword.svg"
  66373. }
  66374. },
  66375. },
  66376. [
  66377. {
  66378. name: "Magically Induced",
  66379. height: math.unit(8.5, "feet")
  66380. },
  66381. {
  66382. name: "Normal",
  66383. height: math.unit(23, "feet"),
  66384. default: true
  66385. },
  66386. ]
  66387. ))
  66388. characterMakers.push(() => makeCharacter(
  66389. { name: "Artemus", species: ["zorgoia"], tags: ["feral"] },
  66390. {
  66391. side: {
  66392. height: math.unit(8, "feet"),
  66393. name: "Side",
  66394. image: {
  66395. source: "./media/characters/artemus/side.svg",
  66396. extra: 800/397,
  66397. bottom: 83/883
  66398. }
  66399. },
  66400. front: {
  66401. height: math.unit(8, "feet"),
  66402. name: "Front",
  66403. image: {
  66404. source: "./media/characters/artemus/front.svg",
  66405. extra: 763/348,
  66406. bottom: 89/852
  66407. }
  66408. },
  66409. maw: {
  66410. height: math.unit(5.63, "feet"),
  66411. name: "Maw",
  66412. image: {
  66413. source: "./media/characters/artemus/maw.svg"
  66414. }
  66415. },
  66416. forepaw: {
  66417. height: math.unit(3.13, "feet"),
  66418. name: "Forepaw",
  66419. image: {
  66420. source: "./media/characters/artemus/forepaw.svg"
  66421. }
  66422. },
  66423. hindpaw: {
  66424. height: math.unit(4.85, "feet"),
  66425. name: "Hindpaw",
  66426. image: {
  66427. source: "./media/characters/artemus/hindpaw.svg"
  66428. }
  66429. },
  66430. },
  66431. [
  66432. {
  66433. name: "Normal",
  66434. height: math.unit(8, "feet"),
  66435. default: true
  66436. },
  66437. ]
  66438. ))
  66439. characterMakers.push(() => makeCharacter(
  66440. { name: "Flynn", species: ["cross-fox"], tags: ["anthro"] },
  66441. {
  66442. front: {
  66443. height: math.unit(4, "feet"),
  66444. name: "Front",
  66445. image: {
  66446. source: "./media/characters/flynn/front.svg",
  66447. extra: 427/404,
  66448. bottom: 14/441
  66449. },
  66450. extraAttributes: {
  66451. "tailLength": {
  66452. name: "Tail Length",
  66453. power: 1,
  66454. type: "length",
  66455. base: math.unit(2.7, "feet")
  66456. },
  66457. }
  66458. },
  66459. frontNsfw: {
  66460. height: math.unit(4, "feet"),
  66461. name: "Front NSFW",
  66462. image: {
  66463. source: "./media/characters/flynn/front-nsfw.svg",
  66464. extra: 427/404,
  66465. bottom: 14/441
  66466. },
  66467. extraAttributes: {
  66468. "tailLength": {
  66469. name: "Tail Length",
  66470. power: 1,
  66471. type: "length",
  66472. base: math.unit(2.7, "feet")
  66473. },
  66474. "dickLength": {
  66475. name: "Dick Length",
  66476. power: 1,
  66477. type: "length",
  66478. base: math.unit(0.7, "feet")
  66479. },
  66480. }
  66481. },
  66482. back: {
  66483. height: math.unit(4, "feet"),
  66484. name: "Back",
  66485. image: {
  66486. source: "./media/characters/flynn/back.svg",
  66487. extra: 420/400,
  66488. bottom: 12/432
  66489. },
  66490. extraAttributes: {
  66491. "tailLength": {
  66492. name: "Tail Length",
  66493. power: 1,
  66494. type: "length",
  66495. base: math.unit(2.7, "feet")
  66496. },
  66497. }
  66498. },
  66499. },
  66500. [
  66501. {
  66502. name: "Normal",
  66503. height: math.unit(4, "feet"),
  66504. default: true
  66505. },
  66506. ]
  66507. ))
  66508. characterMakers.push(() => makeCharacter(
  66509. { name: "Orun", species: ["sabertooth-tiger"], tags: ["anthro"] },
  66510. {
  66511. frontSfw: {
  66512. height: math.unit(1.9, "meters"),
  66513. name: "Front (SFW)",
  66514. image: {
  66515. source: "./media/characters/orun/front-sfw.svg",
  66516. extra: 1684/1625,
  66517. bottom: 64/1748
  66518. }
  66519. },
  66520. frontNsfw: {
  66521. height: math.unit(1.9, "meters"),
  66522. name: "Front (NSFW)",
  66523. image: {
  66524. source: "./media/characters/orun/front-nsfw.svg",
  66525. extra: 1684/1625,
  66526. bottom: 64/1748
  66527. }
  66528. },
  66529. frontErect: {
  66530. height: math.unit(1.9, "meters"),
  66531. name: "Front (Erect)",
  66532. image: {
  66533. source: "./media/characters/orun/front-erect.svg",
  66534. extra: 1684/1625,
  66535. bottom: 64/1748
  66536. }
  66537. },
  66538. },
  66539. [
  66540. {
  66541. name: "Normal",
  66542. height: math.unit(1.9, "meters"),
  66543. default: true
  66544. },
  66545. {
  66546. name: "Giant",
  66547. height: math.unit(45, "meters")
  66548. },
  66549. {
  66550. name: "Bigger Giant",
  66551. height: math.unit(155, "meters")
  66552. },
  66553. {
  66554. name: "Macro",
  66555. height: math.unit(550, "meters")
  66556. },
  66557. {
  66558. name: "Bigger Macro",
  66559. height: math.unit(1050, "meters")
  66560. },
  66561. {
  66562. name: "Titan",
  66563. height: math.unit(5, "km")
  66564. },
  66565. {
  66566. name: "Bigger Titan",
  66567. height: math.unit(15, "km")
  66568. },
  66569. ]
  66570. ))
  66571. characterMakers.push(() => makeCharacter(
  66572. { name: "Catherine Busch", species: ["arctic-fox"], tags: ["anthro"] },
  66573. {
  66574. clothed: {
  66575. height: math.unit(5 + 6/12, "feet"),
  66576. name: "Clothed",
  66577. image: {
  66578. source: "./media/characters/catherine-busch/clothed.svg",
  66579. extra: 1330/1273,
  66580. bottom: 45/1375
  66581. }
  66582. },
  66583. nude: {
  66584. height: math.unit(5 + 6/12, "feet"),
  66585. name: "Nude",
  66586. image: {
  66587. source: "./media/characters/catherine-busch/nude.svg",
  66588. extra: 1330/1273,
  66589. bottom: 45/1375
  66590. }
  66591. },
  66592. },
  66593. [
  66594. {
  66595. name: "Normal",
  66596. height: math.unit(5 + 6/12, "feet"),
  66597. default: true
  66598. },
  66599. {
  66600. name: "Maximum",
  66601. height: math.unit(1644, "feet")
  66602. },
  66603. ]
  66604. ))
  66605. //characters
  66606. function makeCharacters() {
  66607. const results = [];
  66608. characterMakers.forEach(character => {
  66609. results.push(character());
  66610. });
  66611. return results;
  66612. }