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.
 
 
 

67062 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. }
  2447. //species
  2448. function getSpeciesInfo(speciesList) {
  2449. let result = new Set();
  2450. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2451. result.add(entry)
  2452. });
  2453. return Array.from(result);
  2454. };
  2455. function getSpeciesInfoHelper(species) {
  2456. if (!speciesData[species]) {
  2457. console.warn(species + " doesn't exist");
  2458. return [];
  2459. }
  2460. if (speciesData[species].parents) {
  2461. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2462. } else {
  2463. return [species];
  2464. }
  2465. }
  2466. characterMakers.push(() => makeCharacter(
  2467. {
  2468. name: "Fen",
  2469. species: ["crux"],
  2470. description: {
  2471. title: "Bio",
  2472. text: "Very furry. Sheds on everything."
  2473. },
  2474. tags: [
  2475. "anthro",
  2476. "goo"
  2477. ]
  2478. },
  2479. {
  2480. front: {
  2481. height: math.unit(12, "feet"),
  2482. weight: math.unit(2400, "lb"),
  2483. preyCapacity: math.unit(1, "people"),
  2484. name: "Front",
  2485. image: {
  2486. source: "./media/characters/fen/front.svg",
  2487. extra: 1804/1562,
  2488. bottom: 205/2009
  2489. },
  2490. extraAttributes: {
  2491. pawSize: {
  2492. name: "Paw Size",
  2493. power: 2,
  2494. type: "area",
  2495. base: math.unit(0.35, "m^2")
  2496. }
  2497. }
  2498. },
  2499. diving: {
  2500. height: math.unit(4.9, "meters"),
  2501. weight: math.unit(2400, "lb"),
  2502. name: "Diving",
  2503. image: {
  2504. source: "./media/characters/fen/diving.svg"
  2505. }
  2506. },
  2507. sleeby: {
  2508. height: math.unit(3.45, "meters"),
  2509. weight: math.unit(2400, "lb"),
  2510. name: "Sleeby",
  2511. image: {
  2512. source: "./media/characters/fen/sleeby.svg"
  2513. }
  2514. },
  2515. goo: {
  2516. height: math.unit(12, "feet"),
  2517. weight: math.unit(3600, "lb"),
  2518. volume: math.unit(1000, "liters"),
  2519. preyCapacity: math.unit(6, "people"),
  2520. name: "Goo",
  2521. image: {
  2522. source: "./media/characters/fen/goo.svg",
  2523. extra: 1307/1071,
  2524. bottom: 134/1441
  2525. }
  2526. },
  2527. horror: {
  2528. height: math.unit(13.6, "feet"),
  2529. weight: math.unit(2400, "lb"),
  2530. preyCapacity: math.unit(1, "people"),
  2531. name: "Horror",
  2532. image: {
  2533. source: "./media/characters/fen/horror.svg",
  2534. extra: 893/797,
  2535. bottom: 0/893
  2536. }
  2537. },
  2538. gooNsfw: {
  2539. height: math.unit(12, "feet"),
  2540. weight: math.unit(3750, "lb"),
  2541. volume: math.unit(1000, "liters"),
  2542. preyCapacity: math.unit(6, "people"),
  2543. name: "Goo (NSFW)",
  2544. image: {
  2545. source: "./media/characters/fen/goo-nsfw.svg",
  2546. extra: 1875/1734,
  2547. bottom: 122/1997
  2548. }
  2549. },
  2550. maw: {
  2551. height: math.unit(5.03, "feet"),
  2552. name: "Maw",
  2553. image: {
  2554. source: "./media/characters/fen/maw.svg"
  2555. }
  2556. },
  2557. gooCeiling: {
  2558. height: math.unit(6.6, "feet"),
  2559. weight: math.unit(3000, "lb"),
  2560. volume: math.unit(1000, "liters"),
  2561. preyCapacity: math.unit(6, "people"),
  2562. name: "Maw (Goo)",
  2563. image: {
  2564. source: "./media/characters/fen/goo-maw.svg"
  2565. }
  2566. },
  2567. paw: {
  2568. height: math.unit(3.77, "feet"),
  2569. name: "Paw",
  2570. image: {
  2571. source: "./media/characters/fen/paw.svg"
  2572. },
  2573. extraAttributes: {
  2574. "toeSize": {
  2575. name: "Toe Size",
  2576. power: 2,
  2577. type: "area",
  2578. base: math.unit(0.02875, "m^2")
  2579. },
  2580. "pawSize": {
  2581. name: "Paw Size",
  2582. power: 2,
  2583. type: "area",
  2584. base: math.unit(0.378, "m^2")
  2585. },
  2586. }
  2587. },
  2588. tail: {
  2589. height: math.unit(12.1, "feet"),
  2590. name: "Tail",
  2591. image: {
  2592. source: "./media/characters/fen/tail.svg"
  2593. }
  2594. },
  2595. tailFull: {
  2596. height: math.unit(12.1, "feet"),
  2597. name: "Full Tail",
  2598. image: {
  2599. source: "./media/characters/fen/tail-full.svg"
  2600. }
  2601. },
  2602. back: {
  2603. height: math.unit(12, "feet"),
  2604. weight: math.unit(2400, "lb"),
  2605. name: "Back",
  2606. image: {
  2607. source: "./media/characters/fen/back.svg",
  2608. },
  2609. info: {
  2610. description: {
  2611. mode: "append",
  2612. text: "\n\nHe is not currently looking at you."
  2613. }
  2614. }
  2615. },
  2616. full: {
  2617. height: math.unit(1.85, "meter"),
  2618. weight: math.unit(3200, "lb"),
  2619. preyCapacity: math.unit(3, "people"),
  2620. name: "Full",
  2621. image: {
  2622. source: "./media/characters/fen/full.svg",
  2623. extra: 1133/859,
  2624. bottom: 145/1278
  2625. },
  2626. info: {
  2627. description: {
  2628. mode: "append",
  2629. text: "\n\nMunch."
  2630. }
  2631. }
  2632. },
  2633. gooLounging: {
  2634. height: math.unit(4.53, "feet"),
  2635. weight: math.unit(3000, "lb"),
  2636. preyCapacity: math.unit(6, "people"),
  2637. name: "Goo (Lounging)",
  2638. image: {
  2639. source: "./media/characters/fen/goo-lounging.svg",
  2640. bottom: 116 / 613
  2641. }
  2642. },
  2643. lounging: {
  2644. height: math.unit(10.52, "feet"),
  2645. weight: math.unit(2400, "lb"),
  2646. name: "Lounging",
  2647. image: {
  2648. source: "./media/characters/fen/lounging.svg"
  2649. }
  2650. },
  2651. },
  2652. [
  2653. {
  2654. name: "Small",
  2655. height: math.unit(2.2428, "meter")
  2656. },
  2657. {
  2658. name: "Normal",
  2659. height: math.unit(12, "feet"),
  2660. default: true,
  2661. },
  2662. {
  2663. name: "Big",
  2664. height: math.unit(20, "feet")
  2665. },
  2666. {
  2667. name: "Minimacro",
  2668. height: math.unit(40, "feet"),
  2669. info: {
  2670. description: {
  2671. mode: "append",
  2672. text: "\n\nTOO DAMN BIG"
  2673. }
  2674. }
  2675. },
  2676. {
  2677. name: "Macro",
  2678. height: math.unit(100, "feet"),
  2679. info: {
  2680. description: {
  2681. mode: "append",
  2682. text: "\n\nTOO DAMN BIG"
  2683. }
  2684. }
  2685. },
  2686. {
  2687. name: "Megamacro",
  2688. height: math.unit(2, "miles")
  2689. },
  2690. {
  2691. name: "Gigamacro",
  2692. height: math.unit(10, "earths")
  2693. },
  2694. ]
  2695. ))
  2696. characterMakers.push(() => makeCharacter(
  2697. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2698. {
  2699. front: {
  2700. height: math.unit(183, "cm"),
  2701. weight: math.unit(80, "kg"),
  2702. name: "Front",
  2703. image: {
  2704. source: "./media/characters/sofia-fluttertail/front.svg",
  2705. bottom: 0.01,
  2706. extra: 2154 / 2081
  2707. }
  2708. },
  2709. frontAlt: {
  2710. height: math.unit(183, "cm"),
  2711. weight: math.unit(80, "kg"),
  2712. name: "Front (alt)",
  2713. image: {
  2714. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2715. }
  2716. },
  2717. back: {
  2718. height: math.unit(183, "cm"),
  2719. weight: math.unit(80, "kg"),
  2720. name: "Back",
  2721. image: {
  2722. source: "./media/characters/sofia-fluttertail/back.svg"
  2723. }
  2724. },
  2725. kneeling: {
  2726. height: math.unit(125, "cm"),
  2727. weight: math.unit(80, "kg"),
  2728. name: "Kneeling",
  2729. image: {
  2730. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2731. extra: 1033 / 977,
  2732. bottom: 23.7 / 1057
  2733. }
  2734. },
  2735. maw: {
  2736. height: math.unit(183 / 5, "cm"),
  2737. name: "Maw",
  2738. image: {
  2739. source: "./media/characters/sofia-fluttertail/maw.svg"
  2740. }
  2741. },
  2742. mawcloseup: {
  2743. height: math.unit(183 / 5 * 0.41, "cm"),
  2744. name: "Maw (Closeup)",
  2745. image: {
  2746. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2747. }
  2748. },
  2749. paws: {
  2750. height: math.unit(1.17, "feet"),
  2751. name: "Paws",
  2752. image: {
  2753. source: "./media/characters/sofia-fluttertail/paws.svg",
  2754. extra: 851 / 851,
  2755. bottom: 17 / 868
  2756. }
  2757. },
  2758. },
  2759. [
  2760. {
  2761. name: "Normal",
  2762. height: math.unit(1.83, "meter")
  2763. },
  2764. {
  2765. name: "Size Thief",
  2766. height: math.unit(18, "feet")
  2767. },
  2768. {
  2769. name: "50 Foot Collie",
  2770. height: math.unit(50, "feet")
  2771. },
  2772. {
  2773. name: "Macro",
  2774. height: math.unit(96, "feet"),
  2775. default: true
  2776. },
  2777. {
  2778. name: "Megamerger",
  2779. height: math.unit(650, "feet")
  2780. },
  2781. ]
  2782. ))
  2783. characterMakers.push(() => makeCharacter(
  2784. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2785. {
  2786. front: {
  2787. height: math.unit(7, "feet"),
  2788. weight: math.unit(100, "kg"),
  2789. name: "Front",
  2790. image: {
  2791. source: "./media/characters/march/front.svg",
  2792. extra: 1992/1851,
  2793. bottom: 39/2031
  2794. }
  2795. },
  2796. foot: {
  2797. height: math.unit(0.9, "feet"),
  2798. name: "Foot",
  2799. image: {
  2800. source: "./media/characters/march/foot.svg"
  2801. }
  2802. },
  2803. },
  2804. [
  2805. {
  2806. name: "Normal",
  2807. height: math.unit(7.9, "feet")
  2808. },
  2809. {
  2810. name: "Macro",
  2811. height: math.unit(220, "meters")
  2812. },
  2813. {
  2814. name: "Megamacro",
  2815. height: math.unit(2.98, "km"),
  2816. default: true
  2817. },
  2818. {
  2819. name: "Gigamacro",
  2820. height: math.unit(15963, "km")
  2821. },
  2822. {
  2823. name: "Teramacro",
  2824. height: math.unit(2980000000, "km")
  2825. },
  2826. {
  2827. name: "Examacro",
  2828. height: math.unit(250, "parsecs")
  2829. },
  2830. ]
  2831. ))
  2832. characterMakers.push(() => makeCharacter(
  2833. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2834. {
  2835. front: {
  2836. height: math.unit(6, "feet"),
  2837. weight: math.unit(60, "kg"),
  2838. name: "Front",
  2839. image: {
  2840. source: "./media/characters/noir/front.svg",
  2841. extra: 1,
  2842. bottom: 0.032
  2843. }
  2844. },
  2845. },
  2846. [
  2847. {
  2848. name: "Normal",
  2849. height: math.unit(6.6, "feet")
  2850. },
  2851. {
  2852. name: "Macro",
  2853. height: math.unit(500, "feet")
  2854. },
  2855. {
  2856. name: "Megamacro",
  2857. height: math.unit(2.5, "km"),
  2858. default: true
  2859. },
  2860. {
  2861. name: "Gigamacro",
  2862. height: math.unit(22500, "km")
  2863. },
  2864. {
  2865. name: "Teramacro",
  2866. height: math.unit(2500000000, "km")
  2867. },
  2868. {
  2869. name: "Examacro",
  2870. height: math.unit(200, "parsecs")
  2871. },
  2872. ]
  2873. ))
  2874. characterMakers.push(() => makeCharacter(
  2875. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2876. {
  2877. front: {
  2878. height: math.unit(7, "feet"),
  2879. weight: math.unit(100, "kg"),
  2880. name: "Front",
  2881. image: {
  2882. source: "./media/characters/okuri/front.svg",
  2883. extra: 739/665,
  2884. bottom: 39/778
  2885. }
  2886. },
  2887. back: {
  2888. height: math.unit(7, "feet"),
  2889. weight: math.unit(100, "kg"),
  2890. name: "Back",
  2891. image: {
  2892. source: "./media/characters/okuri/back.svg",
  2893. extra: 734/653,
  2894. bottom: 13/747
  2895. }
  2896. },
  2897. sitting: {
  2898. height: math.unit(2.95, "feet"),
  2899. weight: math.unit(100, "kg"),
  2900. name: "Sitting",
  2901. image: {
  2902. source: "./media/characters/okuri/sitting.svg",
  2903. extra: 370/318,
  2904. bottom: 99/469
  2905. }
  2906. },
  2907. },
  2908. [
  2909. {
  2910. name: "Smallest",
  2911. height: math.unit(5 + 2/12, "feet")
  2912. },
  2913. {
  2914. name: "Smaller",
  2915. height: math.unit(300, "feet")
  2916. },
  2917. {
  2918. name: "Small",
  2919. height: math.unit(1000, "feet")
  2920. },
  2921. {
  2922. name: "Macro",
  2923. height: math.unit(1, "mile")
  2924. },
  2925. {
  2926. name: "Mega Macro (Small)",
  2927. height: math.unit(20, "km")
  2928. },
  2929. {
  2930. name: "Mega Macro (Large)",
  2931. height: math.unit(600, "km")
  2932. },
  2933. {
  2934. name: "Giga Macro",
  2935. height: math.unit(10000, "km")
  2936. },
  2937. {
  2938. name: "Normal",
  2939. height: math.unit(577560, "km"),
  2940. default: true
  2941. },
  2942. {
  2943. name: "Large",
  2944. height: math.unit(4, "galaxies")
  2945. },
  2946. {
  2947. name: "Largest",
  2948. height: math.unit(15, "multiverses")
  2949. },
  2950. ]
  2951. ))
  2952. characterMakers.push(() => makeCharacter(
  2953. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2954. {
  2955. front: {
  2956. height: math.unit(7, "feet"),
  2957. weight: math.unit(100, "kg"),
  2958. name: "Front",
  2959. image: {
  2960. source: "./media/characters/manny/front.svg",
  2961. extra: 1,
  2962. bottom: 0.06
  2963. }
  2964. },
  2965. back: {
  2966. height: math.unit(7, "feet"),
  2967. weight: math.unit(100, "kg"),
  2968. name: "Back",
  2969. image: {
  2970. source: "./media/characters/manny/back.svg",
  2971. extra: 1,
  2972. bottom: 0.014
  2973. }
  2974. },
  2975. },
  2976. [
  2977. {
  2978. name: "Normal",
  2979. height: math.unit(7, "feet"),
  2980. },
  2981. {
  2982. name: "Macro",
  2983. height: math.unit(78, "feet"),
  2984. default: true
  2985. },
  2986. {
  2987. name: "Macro+",
  2988. height: math.unit(300, "meters")
  2989. },
  2990. {
  2991. name: "Macro++",
  2992. height: math.unit(2400, "meters")
  2993. },
  2994. {
  2995. name: "Megamacro",
  2996. height: math.unit(5167, "meters")
  2997. },
  2998. {
  2999. name: "Gigamacro",
  3000. height: math.unit(41769, "miles")
  3001. },
  3002. ]
  3003. ))
  3004. characterMakers.push(() => makeCharacter(
  3005. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  3006. {
  3007. front: {
  3008. height: math.unit(7, "feet"),
  3009. weight: math.unit(100, "kg"),
  3010. name: "Front",
  3011. image: {
  3012. source: "./media/characters/adake/front-1.svg"
  3013. }
  3014. },
  3015. frontAlt: {
  3016. height: math.unit(7, "feet"),
  3017. weight: math.unit(100, "kg"),
  3018. name: "Front (Alt)",
  3019. image: {
  3020. source: "./media/characters/adake/front-2.svg",
  3021. extra: 1,
  3022. bottom: 0.01
  3023. }
  3024. },
  3025. back: {
  3026. height: math.unit(7, "feet"),
  3027. weight: math.unit(100, "kg"),
  3028. name: "Back",
  3029. image: {
  3030. source: "./media/characters/adake/back.svg",
  3031. }
  3032. },
  3033. kneel: {
  3034. height: math.unit(5.385, "feet"),
  3035. weight: math.unit(100, "kg"),
  3036. name: "Kneeling",
  3037. image: {
  3038. source: "./media/characters/adake/kneel.svg",
  3039. bottom: 0.052
  3040. }
  3041. },
  3042. },
  3043. [
  3044. {
  3045. name: "Normal",
  3046. height: math.unit(7, "feet"),
  3047. },
  3048. {
  3049. name: "Macro",
  3050. height: math.unit(78, "feet"),
  3051. default: true
  3052. },
  3053. {
  3054. name: "Macro+",
  3055. height: math.unit(300, "meters")
  3056. },
  3057. {
  3058. name: "Macro++",
  3059. height: math.unit(2400, "meters")
  3060. },
  3061. {
  3062. name: "Megamacro",
  3063. height: math.unit(5167, "meters")
  3064. },
  3065. {
  3066. name: "Gigamacro",
  3067. height: math.unit(41769, "miles")
  3068. },
  3069. ]
  3070. ))
  3071. characterMakers.push(() => makeCharacter(
  3072. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  3073. {
  3074. front: {
  3075. height: math.unit(1.65, "meters"),
  3076. weight: math.unit(50, "kg"),
  3077. name: "Front",
  3078. image: {
  3079. source: "./media/characters/elijah/front.svg",
  3080. extra: 858 / 830,
  3081. bottom: 95.5 / 953.8559
  3082. }
  3083. },
  3084. back: {
  3085. height: math.unit(1.65, "meters"),
  3086. weight: math.unit(50, "kg"),
  3087. name: "Back",
  3088. image: {
  3089. source: "./media/characters/elijah/back.svg",
  3090. extra: 895 / 850,
  3091. bottom: 5.3 / 897.956
  3092. }
  3093. },
  3094. frontNsfw: {
  3095. height: math.unit(1.65, "meters"),
  3096. weight: math.unit(50, "kg"),
  3097. name: "Front (NSFW)",
  3098. image: {
  3099. source: "./media/characters/elijah/front-nsfw.svg",
  3100. extra: 858 / 830,
  3101. bottom: 95.5 / 953.8559
  3102. }
  3103. },
  3104. backNsfw: {
  3105. height: math.unit(1.65, "meters"),
  3106. weight: math.unit(50, "kg"),
  3107. name: "Back (NSFW)",
  3108. image: {
  3109. source: "./media/characters/elijah/back-nsfw.svg",
  3110. extra: 895 / 850,
  3111. bottom: 5.3 / 897.956
  3112. }
  3113. },
  3114. dick: {
  3115. height: math.unit(1, "feet"),
  3116. name: "Dick",
  3117. image: {
  3118. source: "./media/characters/elijah/dick.svg"
  3119. }
  3120. },
  3121. beakOpen: {
  3122. height: math.unit(1.25, "feet"),
  3123. name: "Beak (Open)",
  3124. image: {
  3125. source: "./media/characters/elijah/beak-open.svg"
  3126. }
  3127. },
  3128. beakShut: {
  3129. height: math.unit(1.25, "feet"),
  3130. name: "Beak (Shut)",
  3131. image: {
  3132. source: "./media/characters/elijah/beak-shut.svg"
  3133. }
  3134. },
  3135. footFlexing: {
  3136. height: math.unit(1.61, "feet"),
  3137. name: "Foot (Flexing)",
  3138. image: {
  3139. source: "./media/characters/elijah/foot-flexing.svg"
  3140. }
  3141. },
  3142. footStepping: {
  3143. height: math.unit(1.44, "feet"),
  3144. name: "Foot (Stepping)",
  3145. image: {
  3146. source: "./media/characters/elijah/foot-stepping.svg"
  3147. }
  3148. },
  3149. plantigradeLeg: {
  3150. height: math.unit(2.34, "feet"),
  3151. name: "Plantigrade Leg",
  3152. image: {
  3153. source: "./media/characters/elijah/plantigrade-leg.svg"
  3154. }
  3155. },
  3156. plantigradeFootLeft: {
  3157. height: math.unit(0.9, "feet"),
  3158. name: "Plantigrade Foot (Left)",
  3159. image: {
  3160. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3161. }
  3162. },
  3163. plantigradeFootRight: {
  3164. height: math.unit(0.9, "feet"),
  3165. name: "Plantigrade Foot (Right)",
  3166. image: {
  3167. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3168. }
  3169. },
  3170. },
  3171. [
  3172. {
  3173. name: "Normal",
  3174. height: math.unit(1.65, "meters")
  3175. },
  3176. {
  3177. name: "Macro",
  3178. height: math.unit(55, "meters"),
  3179. default: true
  3180. },
  3181. {
  3182. name: "Macro+",
  3183. height: math.unit(105, "meters")
  3184. },
  3185. ]
  3186. ))
  3187. characterMakers.push(() => makeCharacter(
  3188. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3189. {
  3190. front: {
  3191. height: math.unit(7 + 2/12, "feet"),
  3192. weight: math.unit(320, "kg"),
  3193. preyCapacity: math.unit(0.276549935, "people"),
  3194. name: "Front",
  3195. image: {
  3196. source: "./media/characters/rai/front.svg",
  3197. extra: 1802/1696,
  3198. bottom: 68/1870
  3199. },
  3200. form: "anthro",
  3201. default: true
  3202. },
  3203. frontDressed: {
  3204. height: math.unit(7 + 2/12, "feet"),
  3205. weight: math.unit(320, "kg"),
  3206. preyCapacity: math.unit(0.276549935, "people"),
  3207. name: "Front (Dressed)",
  3208. image: {
  3209. source: "./media/characters/rai/front-dressed.svg",
  3210. extra: 1802/1696,
  3211. bottom: 68/1870
  3212. },
  3213. form: "anthro"
  3214. },
  3215. side: {
  3216. height: math.unit(7 + 2/12, "feet"),
  3217. weight: math.unit(320, "kg"),
  3218. preyCapacity: math.unit(0.276549935, "people"),
  3219. name: "Side",
  3220. image: {
  3221. source: "./media/characters/rai/side.svg",
  3222. extra: 1789/1710,
  3223. bottom: 115/1904
  3224. },
  3225. form: "anthro"
  3226. },
  3227. back: {
  3228. height: math.unit(7 + 2/12, "feet"),
  3229. weight: math.unit(320, "kg"),
  3230. preyCapacity: math.unit(0.276549935, "people"),
  3231. name: "Back",
  3232. image: {
  3233. source: "./media/characters/rai/back.svg",
  3234. extra: 1770/1707,
  3235. bottom: 28/1798
  3236. },
  3237. form: "anthro"
  3238. },
  3239. feral: {
  3240. height: math.unit(9.5, "feet"),
  3241. weight: math.unit(640, "kg"),
  3242. preyCapacity: math.unit(4, "people"),
  3243. name: "Feral",
  3244. image: {
  3245. source: "./media/characters/rai/feral.svg",
  3246. extra: 945/553,
  3247. bottom: 176/1121
  3248. },
  3249. form: "feral",
  3250. default: true
  3251. },
  3252. dragon: {
  3253. height: math.unit(23, "feet"),
  3254. weight: math.unit(50000, "lb"),
  3255. name: "Dragon",
  3256. image: {
  3257. source: "./media/characters/rai/dragon.svg",
  3258. extra: 2498 / 2030,
  3259. bottom: 85.2 / 2584
  3260. },
  3261. form: "dragon",
  3262. default: true
  3263. },
  3264. maw: {
  3265. height: math.unit(1.69, "feet"),
  3266. name: "Maw",
  3267. image: {
  3268. source: "./media/characters/rai/maw.svg"
  3269. },
  3270. form: "anthro"
  3271. },
  3272. },
  3273. [
  3274. {
  3275. name: "Normal",
  3276. height: math.unit(7 + 2/12, "feet"),
  3277. form: "anthro"
  3278. },
  3279. {
  3280. name: "Big",
  3281. height: math.unit(11, "feet"),
  3282. form: "anthro"
  3283. },
  3284. {
  3285. name: "Minimacro",
  3286. height: math.unit(77, "feet"),
  3287. form: "anthro"
  3288. },
  3289. {
  3290. name: "Macro",
  3291. height: math.unit(302, "feet"),
  3292. default: true,
  3293. form: "anthro"
  3294. },
  3295. {
  3296. name: "Normal",
  3297. height: math.unit(9.5, "feet"),
  3298. form: "feral",
  3299. default: true
  3300. },
  3301. {
  3302. name: "Normal",
  3303. height: math.unit(23, "feet"),
  3304. form: "dragon",
  3305. default: true
  3306. }
  3307. ],
  3308. {
  3309. "anthro": {
  3310. name: "Anthro",
  3311. default: true
  3312. },
  3313. "feral": {
  3314. name: "Feral",
  3315. },
  3316. "dragon": {
  3317. name: "Dragon",
  3318. },
  3319. }
  3320. ))
  3321. characterMakers.push(() => makeCharacter(
  3322. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3323. {
  3324. frontDressed: {
  3325. height: math.unit(216, "feet"),
  3326. weight: math.unit(7000000, "lb"),
  3327. preyCapacity: math.unit(1321, "people"),
  3328. name: "Front (Dressed)",
  3329. image: {
  3330. source: "./media/characters/jazzy/front-dressed.svg",
  3331. extra: 2738 / 2651,
  3332. bottom: 41.8 / 2786
  3333. }
  3334. },
  3335. backDressed: {
  3336. height: math.unit(216, "feet"),
  3337. weight: math.unit(7000000, "lb"),
  3338. preyCapacity: math.unit(1321, "people"),
  3339. name: "Back (Dressed)",
  3340. image: {
  3341. source: "./media/characters/jazzy/back-dressed.svg",
  3342. extra: 2775 / 2673,
  3343. bottom: 36.8 / 2817
  3344. }
  3345. },
  3346. front: {
  3347. height: math.unit(216, "feet"),
  3348. weight: math.unit(7000000, "lb"),
  3349. preyCapacity: math.unit(1321, "people"),
  3350. name: "Front",
  3351. image: {
  3352. source: "./media/characters/jazzy/front.svg",
  3353. extra: 2738 / 2651,
  3354. bottom: 41.8 / 2786
  3355. }
  3356. },
  3357. back: {
  3358. height: math.unit(216, "feet"),
  3359. weight: math.unit(7000000, "lb"),
  3360. preyCapacity: math.unit(1321, "people"),
  3361. name: "Back",
  3362. image: {
  3363. source: "./media/characters/jazzy/back.svg",
  3364. extra: 2775 / 2673,
  3365. bottom: 36.8 / 2817
  3366. }
  3367. },
  3368. maw: {
  3369. height: math.unit(20, "feet"),
  3370. name: "Maw",
  3371. image: {
  3372. source: "./media/characters/jazzy/maw.svg"
  3373. }
  3374. },
  3375. paws: {
  3376. height: math.unit(27.5, "feet"),
  3377. name: "Paws",
  3378. image: {
  3379. source: "./media/characters/jazzy/paws.svg"
  3380. }
  3381. },
  3382. eye: {
  3383. height: math.unit(4.4, "feet"),
  3384. name: "Eye",
  3385. image: {
  3386. source: "./media/characters/jazzy/eye.svg"
  3387. }
  3388. },
  3389. droneOffense: {
  3390. height: math.unit(9.5, "inches"),
  3391. name: "Drone (Offense)",
  3392. image: {
  3393. source: "./media/characters/jazzy/drone-offense.svg"
  3394. }
  3395. },
  3396. droneRecon: {
  3397. height: math.unit(9.5, "inches"),
  3398. name: "Drone (Recon)",
  3399. image: {
  3400. source: "./media/characters/jazzy/drone-recon.svg"
  3401. }
  3402. },
  3403. droneDefense: {
  3404. height: math.unit(9.5, "inches"),
  3405. name: "Drone (Defense)",
  3406. image: {
  3407. source: "./media/characters/jazzy/drone-defense.svg"
  3408. }
  3409. },
  3410. },
  3411. [
  3412. {
  3413. name: "Macro",
  3414. height: math.unit(216, "feet"),
  3415. default: true
  3416. },
  3417. ]
  3418. ))
  3419. characterMakers.push(() => makeCharacter(
  3420. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3421. {
  3422. front: {
  3423. height: math.unit(9 + 6/12, "feet"),
  3424. weight: math.unit(700, "lb"),
  3425. name: "Front",
  3426. image: {
  3427. source: "./media/characters/flamm/front.svg",
  3428. extra: 1736/1596,
  3429. bottom: 93/1829
  3430. }
  3431. },
  3432. buff: {
  3433. height: math.unit(9 + 6/12, "feet"),
  3434. weight: math.unit(950, "lb"),
  3435. name: "Buff",
  3436. image: {
  3437. source: "./media/characters/flamm/buff.svg",
  3438. extra: 3018/2874,
  3439. bottom: 221/3239
  3440. }
  3441. },
  3442. },
  3443. [
  3444. {
  3445. name: "Normal",
  3446. height: math.unit(9.5, "feet")
  3447. },
  3448. {
  3449. name: "Macro",
  3450. height: math.unit(200, "feet"),
  3451. default: true
  3452. },
  3453. ]
  3454. ))
  3455. characterMakers.push(() => makeCharacter(
  3456. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3457. {
  3458. front: {
  3459. height: math.unit(5 + 3/12, "feet"),
  3460. weight: math.unit(60, "kg"),
  3461. name: "Front",
  3462. image: {
  3463. source: "./media/characters/zephiro/front.svg",
  3464. extra: 1873/1761,
  3465. bottom: 147/2020
  3466. }
  3467. },
  3468. side: {
  3469. height: math.unit(5 + 3/12, "feet"),
  3470. weight: math.unit(60, "kg"),
  3471. name: "Side",
  3472. image: {
  3473. source: "./media/characters/zephiro/side.svg",
  3474. extra: 1929/1827,
  3475. bottom: 65/1994
  3476. }
  3477. },
  3478. back: {
  3479. height: math.unit(5 + 3/12, "feet"),
  3480. weight: math.unit(60, "kg"),
  3481. name: "Back",
  3482. image: {
  3483. source: "./media/characters/zephiro/back.svg",
  3484. extra: 1926/1816,
  3485. bottom: 41/1967
  3486. }
  3487. },
  3488. hand: {
  3489. height: math.unit(0.68, "feet"),
  3490. name: "Hand",
  3491. image: {
  3492. source: "./media/characters/zephiro/hand.svg"
  3493. }
  3494. },
  3495. paw: {
  3496. height: math.unit(1, "feet"),
  3497. name: "Paw",
  3498. image: {
  3499. source: "./media/characters/zephiro/paw.svg"
  3500. }
  3501. },
  3502. beans: {
  3503. height: math.unit(0.93, "feet"),
  3504. name: "Beans",
  3505. image: {
  3506. source: "./media/characters/zephiro/beans.svg"
  3507. }
  3508. },
  3509. },
  3510. [
  3511. {
  3512. name: "Micro",
  3513. height: math.unit(3, "inches")
  3514. },
  3515. {
  3516. name: "Normal",
  3517. height: math.unit(5 + 3 / 12, "feet"),
  3518. default: true
  3519. },
  3520. {
  3521. name: "Macro",
  3522. height: math.unit(118, "feet")
  3523. },
  3524. ]
  3525. ))
  3526. characterMakers.push(() => makeCharacter(
  3527. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3528. {
  3529. front: {
  3530. height: math.unit(5, "feet"),
  3531. weight: math.unit(90, "kg"),
  3532. preyCapacity: math.unit(14, "people"),
  3533. name: "Front",
  3534. image: {
  3535. source: "./media/characters/fory/front.svg",
  3536. extra: 2862 / 2674,
  3537. bottom: 180 / 3043.8
  3538. },
  3539. form: "weaselbun",
  3540. default: true,
  3541. extraAttributes: {
  3542. "pawSize": {
  3543. name: "Paw Size",
  3544. power: 2,
  3545. type: "area",
  3546. base: math.unit(0.1596, "m^2")
  3547. },
  3548. "pawLength": {
  3549. name: "Paw Length",
  3550. power: 1,
  3551. type: "length",
  3552. base: math.unit(0.7, "m")
  3553. }
  3554. }
  3555. },
  3556. back: {
  3557. height: math.unit(5, "feet"),
  3558. weight: math.unit(90, "kg"),
  3559. preyCapacity: math.unit(14, "people"),
  3560. name: "Back",
  3561. image: {
  3562. source: "./media/characters/fory/back.svg",
  3563. extra: 1790/1672,
  3564. bottom: 84/1874
  3565. },
  3566. form: "weaselbun",
  3567. extraAttributes: {
  3568. "pawSize": {
  3569. name: "Paw Size",
  3570. power: 2,
  3571. type: "area",
  3572. base: math.unit(0.1596, "m^2")
  3573. },
  3574. "pawLength": {
  3575. name: "Paw Length",
  3576. power: 1,
  3577. type: "length",
  3578. base: math.unit(0.7, "m")
  3579. }
  3580. }
  3581. },
  3582. paw: {
  3583. height: math.unit(2.14, "feet"),
  3584. name: "Paw",
  3585. image: {
  3586. source: "./media/characters/fory/paw.svg"
  3587. },
  3588. form: "weaselbun",
  3589. extraAttributes: {
  3590. "pawSize": {
  3591. name: "Paw Size",
  3592. power: 2,
  3593. type: "area",
  3594. base: math.unit(0.1596, "m^2")
  3595. },
  3596. "pawLength": {
  3597. name: "Paw Length",
  3598. power: 1,
  3599. type: "length",
  3600. base: math.unit(0.48, "m")
  3601. }
  3602. }
  3603. },
  3604. bunBack: {
  3605. height: math.unit(3, "feet"),
  3606. weight: math.unit(20, "kg"),
  3607. preyCapacity: math.unit(3, "people"),
  3608. name: "Back",
  3609. image: {
  3610. source: "./media/characters/fory/bun-back.svg",
  3611. extra: 1749/1564,
  3612. bottom: 246/1995
  3613. },
  3614. form: "bun",
  3615. default: true,
  3616. extraAttributes: {
  3617. "pawSize": {
  3618. name: "Paw Size",
  3619. power: 2,
  3620. type: "area",
  3621. base: math.unit(0.072, "m^2")
  3622. },
  3623. "pawLength": {
  3624. name: "Paw Length",
  3625. power: 1,
  3626. type: "length",
  3627. base: math.unit(0.45, "m")
  3628. }
  3629. }
  3630. },
  3631. },
  3632. [
  3633. {
  3634. name: "Normal",
  3635. height: math.unit(5, "feet"),
  3636. form: "weaselbun"
  3637. },
  3638. {
  3639. name: "Macro",
  3640. height: math.unit(50, "feet"),
  3641. default: true,
  3642. form: "weaselbun"
  3643. },
  3644. {
  3645. name: "Megamacro",
  3646. height: math.unit(10, "miles"),
  3647. form: "weaselbun"
  3648. },
  3649. {
  3650. name: "Gigamacro",
  3651. height: math.unit(5, "earths"),
  3652. form: "weaselbun"
  3653. },
  3654. {
  3655. name: "Normal",
  3656. height: math.unit(3, "feet"),
  3657. default: true,
  3658. form: "bun"
  3659. },
  3660. {
  3661. name: "Fun-Size",
  3662. height: math.unit(12, "feet"),
  3663. form: "bun"
  3664. },
  3665. {
  3666. name: "Macro",
  3667. height: math.unit(100, "feet"),
  3668. form: "bun"
  3669. },
  3670. {
  3671. name: "Planetary",
  3672. height: math.unit(3, "earths"),
  3673. form: "bun"
  3674. },
  3675. ],
  3676. {
  3677. "weaselbun": {
  3678. name: "Weaselbun",
  3679. default: true
  3680. },
  3681. "bun": {
  3682. name: "Bun",
  3683. },
  3684. }
  3685. ))
  3686. characterMakers.push(() => makeCharacter(
  3687. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3688. {
  3689. front: {
  3690. height: math.unit(7, "feet"),
  3691. weight: math.unit(90, "kg"),
  3692. name: "Front",
  3693. image: {
  3694. source: "./media/characters/kurrikage/front.svg",
  3695. extra: 1845/1733,
  3696. bottom: 119/1964
  3697. }
  3698. },
  3699. back: {
  3700. height: math.unit(7, "feet"),
  3701. weight: math.unit(90, "kg"),
  3702. name: "Back",
  3703. image: {
  3704. source: "./media/characters/kurrikage/back.svg",
  3705. extra: 1790/1677,
  3706. bottom: 61/1851
  3707. }
  3708. },
  3709. dressed: {
  3710. height: math.unit(7, "feet"),
  3711. weight: math.unit(90, "kg"),
  3712. name: "Dressed",
  3713. image: {
  3714. source: "./media/characters/kurrikage/dressed.svg",
  3715. extra: 1845/1733,
  3716. bottom: 119/1964
  3717. }
  3718. },
  3719. foot: {
  3720. height: math.unit(1.5, "feet"),
  3721. name: "Foot",
  3722. image: {
  3723. source: "./media/characters/kurrikage/foot.svg"
  3724. }
  3725. },
  3726. staff: {
  3727. height: math.unit(6.7, "feet"),
  3728. name: "Staff",
  3729. image: {
  3730. source: "./media/characters/kurrikage/staff.svg"
  3731. }
  3732. },
  3733. peek: {
  3734. height: math.unit(1.05, "feet"),
  3735. name: "Peeking",
  3736. image: {
  3737. source: "./media/characters/kurrikage/peek.svg",
  3738. bottom: 0.08
  3739. }
  3740. },
  3741. },
  3742. [
  3743. {
  3744. name: "Normal",
  3745. height: math.unit(12, "feet"),
  3746. default: true
  3747. },
  3748. {
  3749. name: "Big",
  3750. height: math.unit(20, "feet")
  3751. },
  3752. {
  3753. name: "Macro",
  3754. height: math.unit(500, "feet")
  3755. },
  3756. {
  3757. name: "Megamacro",
  3758. height: math.unit(20, "miles")
  3759. },
  3760. ]
  3761. ))
  3762. characterMakers.push(() => makeCharacter(
  3763. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3764. {
  3765. front: {
  3766. height: math.unit(6, "feet"),
  3767. weight: math.unit(75, "kg"),
  3768. name: "Front",
  3769. image: {
  3770. source: "./media/characters/shingo/front.svg",
  3771. extra: 1900/1825,
  3772. bottom: 82/1982
  3773. }
  3774. },
  3775. side: {
  3776. height: math.unit(6, "feet"),
  3777. weight: math.unit(75, "kg"),
  3778. name: "Side",
  3779. image: {
  3780. source: "./media/characters/shingo/side.svg",
  3781. extra: 1930/1865,
  3782. bottom: 16/1946
  3783. }
  3784. },
  3785. back: {
  3786. height: math.unit(6, "feet"),
  3787. weight: math.unit(75, "kg"),
  3788. name: "Back",
  3789. image: {
  3790. source: "./media/characters/shingo/back.svg",
  3791. extra: 1922/1852,
  3792. bottom: 16/1938
  3793. }
  3794. },
  3795. frontDressed: {
  3796. height: math.unit(6, "feet"),
  3797. weight: math.unit(150, "lb"),
  3798. name: "Front-dressed",
  3799. image: {
  3800. source: "./media/characters/shingo/front-dressed.svg",
  3801. extra: 1900/1825,
  3802. bottom: 82/1982
  3803. }
  3804. },
  3805. paw: {
  3806. height: math.unit(1.29, "feet"),
  3807. name: "Paw",
  3808. image: {
  3809. source: "./media/characters/shingo/paw.svg"
  3810. }
  3811. },
  3812. hand: {
  3813. height: math.unit(1.07, "feet"),
  3814. name: "Hand",
  3815. image: {
  3816. source: "./media/characters/shingo/hand.svg"
  3817. }
  3818. },
  3819. frontAlt: {
  3820. height: math.unit(6, "feet"),
  3821. weight: math.unit(75, "kg"),
  3822. name: "Front (Alt)",
  3823. image: {
  3824. source: "./media/characters/shingo/front-alt.svg",
  3825. extra: 3511 / 3338,
  3826. bottom: 0.005
  3827. }
  3828. },
  3829. frontAlt2: {
  3830. height: math.unit(6, "feet"),
  3831. weight: math.unit(75, "kg"),
  3832. name: "Front (Alt 2)",
  3833. image: {
  3834. source: "./media/characters/shingo/front-alt-2.svg",
  3835. extra: 706/681,
  3836. bottom: 11/717
  3837. }
  3838. },
  3839. pawAlt: {
  3840. height: math.unit(1, "feet"),
  3841. name: "Paw (Alt)",
  3842. image: {
  3843. source: "./media/characters/shingo/paw-alt.svg"
  3844. }
  3845. },
  3846. },
  3847. [
  3848. {
  3849. name: "Micro",
  3850. height: math.unit(4, "inches")
  3851. },
  3852. {
  3853. name: "Normal",
  3854. height: math.unit(6, "feet"),
  3855. default: true
  3856. },
  3857. {
  3858. name: "Macro",
  3859. height: math.unit(108, "feet")
  3860. },
  3861. {
  3862. name: "Macro+",
  3863. height: math.unit(1500, "feet")
  3864. },
  3865. ]
  3866. ))
  3867. characterMakers.push(() => makeCharacter(
  3868. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3869. {
  3870. side: {
  3871. height: math.unit(6, "feet"),
  3872. weight: math.unit(75, "kg"),
  3873. name: "Side",
  3874. image: {
  3875. source: "./media/characters/aigey/side.svg"
  3876. }
  3877. },
  3878. },
  3879. [
  3880. {
  3881. name: "Macro",
  3882. height: math.unit(200, "feet"),
  3883. default: true
  3884. },
  3885. {
  3886. name: "Megamacro",
  3887. height: math.unit(100, "miles")
  3888. },
  3889. ]
  3890. )
  3891. )
  3892. characterMakers.push(() => makeCharacter(
  3893. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3894. {
  3895. front: {
  3896. height: math.unit(13, "feet"),
  3897. weight: math.unit(1036.80, "kg"),
  3898. name: "Front",
  3899. image: {
  3900. source: "./media/characters/natasha/front.svg",
  3901. extra: 1301/1210,
  3902. bottom: 39/1340
  3903. }
  3904. },
  3905. back: {
  3906. height: math.unit(13, "feet"),
  3907. weight: math.unit(1036.80, "kg"),
  3908. name: "Back",
  3909. image: {
  3910. source: "./media/characters/natasha/back.svg",
  3911. extra: 1342/1252,
  3912. bottom: 20/1362
  3913. }
  3914. },
  3915. head: {
  3916. height: math.unit(3.48, "feet"),
  3917. name: "Head",
  3918. image: {
  3919. source: "./media/characters/natasha/head.svg"
  3920. }
  3921. },
  3922. jaws: {
  3923. height: math.unit(3.52, "feet"),
  3924. name: "Jaws",
  3925. image: {
  3926. source: "./media/characters/natasha/jaws.svg"
  3927. }
  3928. },
  3929. paws: {
  3930. height: math.unit(2.7, "feet"),
  3931. name: "Paws",
  3932. image: {
  3933. source: "./media/characters/natasha/paws.svg"
  3934. }
  3935. },
  3936. collar: {
  3937. height: math.unit(0.89, "feet"),
  3938. name: "Collar",
  3939. image: {
  3940. source: "./media/characters/natasha/collar.svg"
  3941. }
  3942. },
  3943. gauge: {
  3944. height: math.unit(0.36, "feet"),
  3945. name: "Gauge",
  3946. image: {
  3947. source: "./media/characters/natasha/gauge.svg"
  3948. }
  3949. },
  3950. },
  3951. [
  3952. {
  3953. name: "Shortstack",
  3954. height: math.unit(3, "feet")
  3955. },
  3956. {
  3957. name: "Normal",
  3958. height: math.unit(13, "feet"),
  3959. default: true
  3960. },
  3961. {
  3962. name: "Macro",
  3963. height: math.unit(100, "feet")
  3964. },
  3965. {
  3966. name: "Macro+",
  3967. height: math.unit(260, "feet")
  3968. },
  3969. {
  3970. name: "Macro++",
  3971. height: math.unit(1, "mile")
  3972. },
  3973. ]
  3974. ))
  3975. characterMakers.push(() => makeCharacter(
  3976. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3977. {
  3978. front: {
  3979. height: math.unit(6, "feet"),
  3980. weight: math.unit(75, "kg"),
  3981. name: "Front",
  3982. image: {
  3983. source: "./media/characters/malik/front.svg",
  3984. extra: 1750/1561,
  3985. bottom: 80/1830
  3986. },
  3987. extraAttributes: {
  3988. "toeSize": {
  3989. name: "Toe Size",
  3990. power: 2,
  3991. type: "area",
  3992. base: math.unit(0.0159, "m^2")
  3993. },
  3994. "pawSize": {
  3995. name: "Paw Size",
  3996. power: 2,
  3997. type: "area",
  3998. base: math.unit(0.09834, "m^2")
  3999. },
  4000. }
  4001. },
  4002. side: {
  4003. height: math.unit(6, "feet"),
  4004. weight: math.unit(75, "kg"),
  4005. name: "Side",
  4006. image: {
  4007. source: "./media/characters/malik/side.svg",
  4008. extra: 1802/1685,
  4009. bottom: 42/1844
  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. back: {
  4027. height: math.unit(6, "feet"),
  4028. weight: math.unit(75, "kg"),
  4029. name: "Back",
  4030. image: {
  4031. source: "./media/characters/malik/back.svg",
  4032. extra: 1803/1607,
  4033. bottom: 33/1836
  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. },
  4051. [
  4052. {
  4053. name: "Macro",
  4054. height: math.unit(156, "feet"),
  4055. default: true
  4056. },
  4057. {
  4058. name: "Macro+",
  4059. height: math.unit(1188, "feet")
  4060. },
  4061. ]
  4062. ))
  4063. characterMakers.push(() => makeCharacter(
  4064. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  4065. {
  4066. front: {
  4067. height: math.unit(6, "feet"),
  4068. weight: math.unit(75, "kg"),
  4069. name: "Front",
  4070. image: {
  4071. source: "./media/characters/sefer/front.svg",
  4072. extra: 848 / 659,
  4073. bottom: 28.3 / 876.442
  4074. }
  4075. },
  4076. back: {
  4077. height: math.unit(6, "feet"),
  4078. weight: math.unit(75, "kg"),
  4079. name: "Back",
  4080. image: {
  4081. source: "./media/characters/sefer/back.svg",
  4082. extra: 864 / 695,
  4083. bottom: 10 / 871
  4084. }
  4085. },
  4086. frontDressed: {
  4087. height: math.unit(6, "feet"),
  4088. weight: math.unit(75, "kg"),
  4089. name: "Dressed",
  4090. image: {
  4091. source: "./media/characters/sefer/dressed.svg",
  4092. extra: 839 / 653,
  4093. bottom: 37.6 / 878
  4094. }
  4095. },
  4096. },
  4097. [
  4098. {
  4099. name: "Normal",
  4100. height: math.unit(6, "feet"),
  4101. default: true
  4102. },
  4103. {
  4104. name: "Big",
  4105. height: math.unit(8, "meters")
  4106. },
  4107. ]
  4108. ))
  4109. characterMakers.push(() => makeCharacter(
  4110. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  4111. {
  4112. body: {
  4113. height: math.unit(2.2428, "meter"),
  4114. weight: math.unit(124.738, "kg"),
  4115. name: "Body",
  4116. image: {
  4117. extra: 1225 / 1050,
  4118. source: "./media/characters/north/front.svg"
  4119. }
  4120. }
  4121. },
  4122. [
  4123. {
  4124. name: "Micro",
  4125. height: math.unit(4, "inches")
  4126. },
  4127. {
  4128. name: "Macro",
  4129. height: math.unit(63, "meters")
  4130. },
  4131. {
  4132. name: "Megamacro",
  4133. height: math.unit(101, "miles"),
  4134. default: true
  4135. }
  4136. ]
  4137. ))
  4138. characterMakers.push(() => makeCharacter(
  4139. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4140. {
  4141. angled: {
  4142. height: math.unit(4, "meter"),
  4143. weight: math.unit(150, "kg"),
  4144. name: "Angled",
  4145. image: {
  4146. source: "./media/characters/talan/angled-sfw.svg",
  4147. bottom: 29 / 3734
  4148. }
  4149. },
  4150. angledNsfw: {
  4151. height: math.unit(4, "meter"),
  4152. weight: math.unit(150, "kg"),
  4153. name: "Angled (NSFW)",
  4154. image: {
  4155. source: "./media/characters/talan/angled-nsfw.svg",
  4156. bottom: 29 / 3734
  4157. }
  4158. },
  4159. frontNsfw: {
  4160. height: math.unit(4, "meter"),
  4161. weight: math.unit(150, "kg"),
  4162. name: "Front (NSFW)",
  4163. image: {
  4164. source: "./media/characters/talan/front-nsfw.svg",
  4165. bottom: 29 / 3734
  4166. }
  4167. },
  4168. sideNsfw: {
  4169. height: math.unit(4, "meter"),
  4170. weight: math.unit(150, "kg"),
  4171. name: "Side (NSFW)",
  4172. image: {
  4173. source: "./media/characters/talan/side-nsfw.svg",
  4174. bottom: 29 / 3734
  4175. }
  4176. },
  4177. back: {
  4178. height: math.unit(4, "meter"),
  4179. weight: math.unit(150, "kg"),
  4180. name: "Back",
  4181. image: {
  4182. source: "./media/characters/talan/back.svg"
  4183. }
  4184. },
  4185. dickBottom: {
  4186. height: math.unit(0.621, "meter"),
  4187. name: "Dick (Bottom)",
  4188. image: {
  4189. source: "./media/characters/talan/dick-bottom.svg"
  4190. }
  4191. },
  4192. dickTop: {
  4193. height: math.unit(0.621, "meter"),
  4194. name: "Dick (Top)",
  4195. image: {
  4196. source: "./media/characters/talan/dick-top.svg"
  4197. }
  4198. },
  4199. dickSide: {
  4200. height: math.unit(0.305, "meter"),
  4201. name: "Dick (Side)",
  4202. image: {
  4203. source: "./media/characters/talan/dick-side.svg"
  4204. }
  4205. },
  4206. dickFront: {
  4207. height: math.unit(0.305, "meter"),
  4208. name: "Dick (Front)",
  4209. image: {
  4210. source: "./media/characters/talan/dick-front.svg"
  4211. }
  4212. },
  4213. },
  4214. [
  4215. {
  4216. name: "Normal",
  4217. height: math.unit(4, "meters")
  4218. },
  4219. {
  4220. name: "Macro",
  4221. height: math.unit(100, "meters")
  4222. },
  4223. {
  4224. name: "Megamacro",
  4225. height: math.unit(2, "miles"),
  4226. default: true
  4227. },
  4228. {
  4229. name: "Gigamacro",
  4230. height: math.unit(5000, "miles")
  4231. },
  4232. {
  4233. name: "Teramacro",
  4234. height: math.unit(100, "parsecs")
  4235. }
  4236. ]
  4237. ))
  4238. characterMakers.push(() => makeCharacter(
  4239. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4240. {
  4241. front: {
  4242. height: math.unit(2, "meter"),
  4243. weight: math.unit(90, "kg"),
  4244. name: "Front",
  4245. image: {
  4246. source: "./media/characters/gael'rathus/front.svg"
  4247. }
  4248. },
  4249. frontAlt: {
  4250. height: math.unit(2, "meter"),
  4251. weight: math.unit(90, "kg"),
  4252. name: "Front (alt)",
  4253. image: {
  4254. source: "./media/characters/gael'rathus/front-alt.svg"
  4255. }
  4256. },
  4257. frontAlt2: {
  4258. height: math.unit(2, "meter"),
  4259. weight: math.unit(90, "kg"),
  4260. name: "Front (alt 2)",
  4261. image: {
  4262. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4263. }
  4264. }
  4265. },
  4266. [
  4267. {
  4268. name: "Normal",
  4269. height: math.unit(9, "feet"),
  4270. default: true
  4271. },
  4272. {
  4273. name: "Large",
  4274. height: math.unit(25, "feet")
  4275. },
  4276. {
  4277. name: "Macro",
  4278. height: math.unit(0.25, "miles")
  4279. },
  4280. {
  4281. name: "Megamacro",
  4282. height: math.unit(10, "miles")
  4283. }
  4284. ]
  4285. ))
  4286. characterMakers.push(() => makeCharacter(
  4287. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4288. {
  4289. side: {
  4290. height: math.unit(2, "meter"),
  4291. weight: math.unit(140, "kg"),
  4292. name: "Side",
  4293. image: {
  4294. source: "./media/characters/sosha/side.svg",
  4295. extra: 1170/1006,
  4296. bottom: 94/1264
  4297. }
  4298. },
  4299. maw: {
  4300. height: math.unit(2.87, "feet"),
  4301. name: "Maw",
  4302. image: {
  4303. source: "./media/characters/sosha/maw.svg",
  4304. extra: 966/865,
  4305. bottom: 0/966
  4306. }
  4307. },
  4308. cooch: {
  4309. height: math.unit(5.6, "feet"),
  4310. name: "Cooch",
  4311. image: {
  4312. source: "./media/characters/sosha/cooch.svg"
  4313. }
  4314. },
  4315. },
  4316. [
  4317. {
  4318. name: "Normal",
  4319. height: math.unit(12, "feet"),
  4320. default: true
  4321. }
  4322. ]
  4323. ))
  4324. characterMakers.push(() => makeCharacter(
  4325. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4326. {
  4327. side: {
  4328. height: math.unit(5 + 5 / 12, "feet"),
  4329. weight: math.unit(170, "kg"),
  4330. name: "Side",
  4331. image: {
  4332. source: "./media/characters/runnola/side.svg",
  4333. extra: 741 / 448,
  4334. bottom: 0.05
  4335. }
  4336. },
  4337. },
  4338. [
  4339. {
  4340. name: "Small",
  4341. height: math.unit(3, "feet")
  4342. },
  4343. {
  4344. name: "Normal",
  4345. height: math.unit(5 + 5 / 12, "feet"),
  4346. default: true
  4347. },
  4348. {
  4349. name: "Big",
  4350. height: math.unit(10, "feet")
  4351. },
  4352. ]
  4353. ))
  4354. characterMakers.push(() => makeCharacter(
  4355. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4356. {
  4357. front: {
  4358. height: math.unit(2, "meter"),
  4359. weight: math.unit(50, "kg"),
  4360. name: "Front",
  4361. image: {
  4362. source: "./media/characters/kurribird/front.svg",
  4363. bottom: 0.015
  4364. }
  4365. },
  4366. frontAlt: {
  4367. height: math.unit(1.5, "meter"),
  4368. weight: math.unit(50, "kg"),
  4369. name: "Front (Alt)",
  4370. image: {
  4371. source: "./media/characters/kurribird/front-alt.svg",
  4372. extra: 1.45
  4373. }
  4374. },
  4375. },
  4376. [
  4377. {
  4378. name: "Normal",
  4379. height: math.unit(7, "feet")
  4380. },
  4381. {
  4382. name: "Big",
  4383. height: math.unit(12, "feet"),
  4384. default: true
  4385. },
  4386. {
  4387. name: "Macro",
  4388. height: math.unit(1500, "feet")
  4389. },
  4390. {
  4391. name: "Megamacro",
  4392. height: math.unit(2, "miles")
  4393. }
  4394. ]
  4395. ))
  4396. characterMakers.push(() => makeCharacter(
  4397. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4398. {
  4399. front: {
  4400. height: math.unit(2, "meter"),
  4401. weight: math.unit(80, "kg"),
  4402. name: "Front",
  4403. image: {
  4404. source: "./media/characters/elbial/front.svg",
  4405. extra: 1643 / 1556,
  4406. bottom: 60.2 / 1696
  4407. }
  4408. },
  4409. side: {
  4410. height: math.unit(2, "meter"),
  4411. weight: math.unit(80, "kg"),
  4412. name: "Side",
  4413. image: {
  4414. source: "./media/characters/elbial/side.svg",
  4415. extra: 1601/1528,
  4416. bottom: 97/1698
  4417. }
  4418. },
  4419. back: {
  4420. height: math.unit(2, "meter"),
  4421. weight: math.unit(80, "kg"),
  4422. name: "Back",
  4423. image: {
  4424. source: "./media/characters/elbial/back.svg",
  4425. extra: 1653/1569,
  4426. bottom: 20/1673
  4427. }
  4428. },
  4429. frontDressed: {
  4430. height: math.unit(2, "meter"),
  4431. weight: math.unit(80, "kg"),
  4432. name: "Front (Dressed)",
  4433. image: {
  4434. source: "./media/characters/elbial/front-dressed.svg",
  4435. extra: 1638/1569,
  4436. bottom: 70/1708
  4437. }
  4438. },
  4439. genitals: {
  4440. height: math.unit(2 / 3.367, "meter"),
  4441. name: "Genitals",
  4442. image: {
  4443. source: "./media/characters/elbial/genitals.svg"
  4444. }
  4445. },
  4446. },
  4447. [
  4448. {
  4449. name: "Large",
  4450. height: math.unit(100, "feet")
  4451. },
  4452. {
  4453. name: "Macro",
  4454. height: math.unit(500, "feet"),
  4455. default: true
  4456. },
  4457. {
  4458. name: "Megamacro",
  4459. height: math.unit(10, "miles")
  4460. },
  4461. {
  4462. name: "Gigamacro",
  4463. height: math.unit(25000, "miles")
  4464. },
  4465. {
  4466. name: "Full-Size",
  4467. height: math.unit(8000000, "gigaparsecs")
  4468. }
  4469. ]
  4470. ))
  4471. characterMakers.push(() => makeCharacter(
  4472. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4473. {
  4474. front: {
  4475. height: math.unit(2, "meter"),
  4476. weight: math.unit(60, "kg"),
  4477. name: "Front",
  4478. image: {
  4479. source: "./media/characters/noah/front.svg",
  4480. extra: 1383/1313,
  4481. bottom: 104/1487
  4482. }
  4483. },
  4484. hand: {
  4485. height: math.unit(0.6, "feet"),
  4486. name: "Hand",
  4487. image: {
  4488. source: "./media/characters/noah/hand.svg"
  4489. }
  4490. },
  4491. talons: {
  4492. height: math.unit(1.385, "feet"),
  4493. name: "Talons",
  4494. image: {
  4495. source: "./media/characters/noah/talons.svg"
  4496. }
  4497. },
  4498. beak: {
  4499. height: math.unit(0.43, "feet"),
  4500. name: "Beak",
  4501. image: {
  4502. source: "./media/characters/noah/beak.svg"
  4503. }
  4504. },
  4505. collar: {
  4506. height: math.unit(0.88, "feet"),
  4507. name: "Collar",
  4508. image: {
  4509. source: "./media/characters/noah/collar.svg"
  4510. }
  4511. },
  4512. eyeNarrow: {
  4513. height: math.unit(0.18, "feet"),
  4514. name: "Eye (Narrow)",
  4515. image: {
  4516. source: "./media/characters/noah/eye-narrow.svg"
  4517. }
  4518. },
  4519. eyeNormal: {
  4520. height: math.unit(0.18, "feet"),
  4521. name: "Eye (Normal)",
  4522. image: {
  4523. source: "./media/characters/noah/eye-normal.svg"
  4524. }
  4525. },
  4526. eyeWide: {
  4527. height: math.unit(0.18, "feet"),
  4528. name: "Eye (Wide)",
  4529. image: {
  4530. source: "./media/characters/noah/eye-wide.svg"
  4531. }
  4532. },
  4533. ear: {
  4534. height: math.unit(0.64, "feet"),
  4535. name: "Ear",
  4536. image: {
  4537. source: "./media/characters/noah/ear.svg"
  4538. }
  4539. },
  4540. },
  4541. [
  4542. {
  4543. name: "Large",
  4544. height: math.unit(50, "feet")
  4545. },
  4546. {
  4547. name: "Macro",
  4548. height: math.unit(750, "feet"),
  4549. default: true
  4550. },
  4551. {
  4552. name: "Megamacro",
  4553. height: math.unit(50, "miles")
  4554. },
  4555. {
  4556. name: "Gigamacro",
  4557. height: math.unit(100000, "miles")
  4558. },
  4559. {
  4560. name: "Full-Size",
  4561. height: math.unit(3000000000, "miles")
  4562. }
  4563. ]
  4564. ))
  4565. characterMakers.push(() => makeCharacter(
  4566. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4567. {
  4568. front: {
  4569. height: math.unit(2, "meter"),
  4570. weight: math.unit(80, "kg"),
  4571. name: "Front",
  4572. image: {
  4573. source: "./media/characters/natalya/front.svg"
  4574. }
  4575. },
  4576. back: {
  4577. height: math.unit(2, "meter"),
  4578. weight: math.unit(80, "kg"),
  4579. name: "Back",
  4580. image: {
  4581. source: "./media/characters/natalya/back.svg"
  4582. }
  4583. }
  4584. },
  4585. [
  4586. {
  4587. name: "Normal",
  4588. height: math.unit(150, "feet"),
  4589. default: true
  4590. },
  4591. {
  4592. name: "Megamacro",
  4593. height: math.unit(5, "miles")
  4594. },
  4595. {
  4596. name: "Full-Size",
  4597. height: math.unit(600, "kiloparsecs")
  4598. }
  4599. ]
  4600. ))
  4601. characterMakers.push(() => makeCharacter(
  4602. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4603. {
  4604. front: {
  4605. height: math.unit(2, "meter"),
  4606. weight: math.unit(50, "kg"),
  4607. name: "Front",
  4608. image: {
  4609. source: "./media/characters/erestrebah/front.svg",
  4610. extra: 1262/1162,
  4611. bottom: 96/1358
  4612. }
  4613. },
  4614. back: {
  4615. height: math.unit(2, "meter"),
  4616. weight: math.unit(50, "kg"),
  4617. name: "Back",
  4618. image: {
  4619. source: "./media/characters/erestrebah/back.svg",
  4620. extra: 1257/1139,
  4621. bottom: 13/1270
  4622. }
  4623. },
  4624. wing: {
  4625. height: math.unit(2, "meter"),
  4626. weight: math.unit(50, "kg"),
  4627. name: "Wing",
  4628. image: {
  4629. source: "./media/characters/erestrebah/wing.svg",
  4630. extra: 1262/1162,
  4631. bottom: 96/1358
  4632. }
  4633. },
  4634. mouth: {
  4635. height: math.unit(0.39, "feet"),
  4636. name: "Mouth",
  4637. image: {
  4638. source: "./media/characters/erestrebah/mouth.svg"
  4639. }
  4640. }
  4641. },
  4642. [
  4643. {
  4644. name: "Normal",
  4645. height: math.unit(10, "feet")
  4646. },
  4647. {
  4648. name: "Large",
  4649. height: math.unit(50, "feet"),
  4650. default: true
  4651. },
  4652. {
  4653. name: "Macro",
  4654. height: math.unit(300, "feet")
  4655. },
  4656. {
  4657. name: "Macro+",
  4658. height: math.unit(750, "feet")
  4659. },
  4660. {
  4661. name: "Megamacro",
  4662. height: math.unit(3, "miles")
  4663. }
  4664. ]
  4665. ))
  4666. characterMakers.push(() => makeCharacter(
  4667. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4668. {
  4669. front: {
  4670. height: math.unit(2, "meter"),
  4671. weight: math.unit(80, "kg"),
  4672. name: "Front",
  4673. image: {
  4674. source: "./media/characters/jennifer/front.svg",
  4675. bottom: 0.11,
  4676. extra: 1.16
  4677. }
  4678. },
  4679. frontAlt: {
  4680. height: math.unit(2, "meter"),
  4681. weight: math.unit(80, "kg"),
  4682. name: "Front (Alt)",
  4683. image: {
  4684. source: "./media/characters/jennifer/front-alt.svg"
  4685. }
  4686. }
  4687. },
  4688. [
  4689. {
  4690. name: "Canon Height",
  4691. height: math.unit(120, "feet"),
  4692. default: true
  4693. },
  4694. {
  4695. name: "Macro+",
  4696. height: math.unit(300, "feet")
  4697. },
  4698. {
  4699. name: "Megamacro",
  4700. height: math.unit(20000, "feet")
  4701. }
  4702. ]
  4703. ))
  4704. characterMakers.push(() => makeCharacter(
  4705. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4706. {
  4707. front: {
  4708. height: math.unit(2, "meter"),
  4709. weight: math.unit(50, "kg"),
  4710. name: "Front",
  4711. image: {
  4712. source: "./media/characters/kalista/front.svg",
  4713. extra: 1314/1145,
  4714. bottom: 101/1415
  4715. }
  4716. },
  4717. back: {
  4718. height: math.unit(2, "meter"),
  4719. weight: math.unit(50, "kg"),
  4720. name: "Back",
  4721. image: {
  4722. source: "./media/characters/kalista/back.svg",
  4723. extra: 1366 / 1156,
  4724. bottom: 33.9 / 1362.78
  4725. }
  4726. }
  4727. },
  4728. [
  4729. {
  4730. name: "Uncomfortably Small",
  4731. height: math.unit(10, "feet")
  4732. },
  4733. {
  4734. name: "Small",
  4735. height: math.unit(30, "feet")
  4736. },
  4737. {
  4738. name: "Macro",
  4739. height: math.unit(100, "feet"),
  4740. default: true
  4741. },
  4742. {
  4743. name: "Macro+",
  4744. height: math.unit(2000, "feet")
  4745. },
  4746. {
  4747. name: "True Form",
  4748. height: math.unit(8924, "miles")
  4749. }
  4750. ]
  4751. ))
  4752. characterMakers.push(() => makeCharacter(
  4753. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4754. {
  4755. front: {
  4756. height: math.unit(2, "meter"),
  4757. weight: math.unit(120, "kg"),
  4758. name: "Front",
  4759. image: {
  4760. source: "./media/characters/ggv/front.svg"
  4761. }
  4762. },
  4763. side: {
  4764. height: math.unit(2, "meter"),
  4765. weight: math.unit(120, "kg"),
  4766. name: "Side",
  4767. image: {
  4768. source: "./media/characters/ggv/side.svg"
  4769. }
  4770. }
  4771. },
  4772. [
  4773. {
  4774. name: "Extremely Puny",
  4775. height: math.unit(9 + 5 / 12, "feet")
  4776. },
  4777. {
  4778. name: "Horribly Small",
  4779. height: math.unit(47.7, "miles"),
  4780. default: true
  4781. },
  4782. {
  4783. name: "Reasonably Sized",
  4784. height: math.unit(25000, "parsecs")
  4785. },
  4786. {
  4787. name: "Slightly Uncompressed",
  4788. height: math.unit(7.77e31, "parsecs")
  4789. },
  4790. {
  4791. name: "Omniversal",
  4792. height: math.unit(1e300, "meters")
  4793. },
  4794. ]
  4795. ))
  4796. characterMakers.push(() => makeCharacter(
  4797. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4798. {
  4799. front: {
  4800. height: math.unit(2, "meter"),
  4801. weight: math.unit(75, "lb"),
  4802. name: "Front",
  4803. image: {
  4804. source: "./media/characters/napalm/front.svg"
  4805. }
  4806. },
  4807. back: {
  4808. height: math.unit(2, "meter"),
  4809. weight: math.unit(75, "lb"),
  4810. name: "Back",
  4811. image: {
  4812. source: "./media/characters/napalm/back.svg"
  4813. }
  4814. }
  4815. },
  4816. [
  4817. {
  4818. name: "Standard",
  4819. height: math.unit(55, "feet"),
  4820. default: true
  4821. }
  4822. ]
  4823. ))
  4824. characterMakers.push(() => makeCharacter(
  4825. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4826. {
  4827. front: {
  4828. height: math.unit(7 + 5 / 6, "feet"),
  4829. weight: math.unit(325, "lb"),
  4830. name: "Front",
  4831. image: {
  4832. source: "./media/characters/asana/front.svg",
  4833. extra: 1133 / 1060,
  4834. bottom: 15.2 / 1148.6
  4835. }
  4836. },
  4837. back: {
  4838. height: math.unit(7 + 5 / 6, "feet"),
  4839. weight: math.unit(325, "lb"),
  4840. name: "Back",
  4841. image: {
  4842. source: "./media/characters/asana/back.svg",
  4843. extra: 1114 / 1043,
  4844. bottom: 5 / 1120
  4845. }
  4846. },
  4847. dressedDark: {
  4848. height: math.unit(7 + 5 / 6, "feet"),
  4849. weight: math.unit(325, "lb"),
  4850. name: "Dressed (Dark)",
  4851. image: {
  4852. source: "./media/characters/asana/dressed-dark.svg",
  4853. extra: 1133 / 1060,
  4854. bottom: 15.2 / 1148.6
  4855. }
  4856. },
  4857. dressedLight: {
  4858. height: math.unit(7 + 5 / 6, "feet"),
  4859. weight: math.unit(325, "lb"),
  4860. name: "Dressed (Light)",
  4861. image: {
  4862. source: "./media/characters/asana/dressed-light.svg",
  4863. extra: 1133 / 1060,
  4864. bottom: 15.2 / 1148.6
  4865. }
  4866. },
  4867. },
  4868. [
  4869. {
  4870. name: "Standard",
  4871. height: math.unit(7 + 5 / 6, "feet"),
  4872. default: true
  4873. },
  4874. {
  4875. name: "Large",
  4876. height: math.unit(10, "meters")
  4877. },
  4878. {
  4879. name: "Macro",
  4880. height: math.unit(2500, "meters")
  4881. },
  4882. {
  4883. name: "Megamacro",
  4884. height: math.unit(5e6, "meters")
  4885. },
  4886. {
  4887. name: "Examacro",
  4888. height: math.unit(5e12, "lightyears")
  4889. },
  4890. {
  4891. name: "Max Size",
  4892. height: math.unit(1e31, "lightyears")
  4893. }
  4894. ]
  4895. ))
  4896. characterMakers.push(() => makeCharacter(
  4897. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4898. {
  4899. front: {
  4900. height: math.unit(2, "meter"),
  4901. weight: math.unit(60, "kg"),
  4902. name: "Front",
  4903. image: {
  4904. source: "./media/characters/ebony/front.svg",
  4905. bottom: 0.03,
  4906. extra: 1045 / 810 + 0.03
  4907. }
  4908. },
  4909. side: {
  4910. height: math.unit(2, "meter"),
  4911. weight: math.unit(60, "kg"),
  4912. name: "Side",
  4913. image: {
  4914. source: "./media/characters/ebony/side.svg",
  4915. bottom: 0.03,
  4916. extra: 1045 / 810 + 0.03
  4917. }
  4918. },
  4919. back: {
  4920. height: math.unit(2, "meter"),
  4921. weight: math.unit(60, "kg"),
  4922. name: "Back",
  4923. image: {
  4924. source: "./media/characters/ebony/back.svg",
  4925. bottom: 0.01,
  4926. extra: 1045 / 810 + 0.01
  4927. }
  4928. },
  4929. },
  4930. [
  4931. // TODO check why I did this lol
  4932. {
  4933. name: "Standard",
  4934. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4935. default: true
  4936. },
  4937. {
  4938. name: "Macro",
  4939. height: math.unit(200, "feet")
  4940. },
  4941. {
  4942. name: "Gigamacro",
  4943. height: math.unit(13000, "km")
  4944. }
  4945. ]
  4946. ))
  4947. characterMakers.push(() => makeCharacter(
  4948. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4949. {
  4950. front: {
  4951. height: math.unit(6, "feet"),
  4952. weight: math.unit(175, "lb"),
  4953. name: "Front",
  4954. image: {
  4955. source: "./media/characters/mountain/front.svg",
  4956. extra: 972 / 955,
  4957. bottom: 64 / 1036.6
  4958. }
  4959. },
  4960. back: {
  4961. height: math.unit(6, "feet"),
  4962. weight: math.unit(175, "lb"),
  4963. name: "Back",
  4964. image: {
  4965. source: "./media/characters/mountain/back.svg",
  4966. extra: 970 / 950,
  4967. bottom: 28.25 / 999
  4968. }
  4969. },
  4970. },
  4971. [
  4972. {
  4973. name: "Large",
  4974. height: math.unit(20, "meters")
  4975. },
  4976. {
  4977. name: "Macro",
  4978. height: math.unit(300, "meters")
  4979. },
  4980. {
  4981. name: "Gigamacro",
  4982. height: math.unit(10000, "km"),
  4983. default: true
  4984. },
  4985. {
  4986. name: "Examacro",
  4987. height: math.unit(10e9, "lightyears")
  4988. }
  4989. ]
  4990. ))
  4991. characterMakers.push(() => makeCharacter(
  4992. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4993. {
  4994. front: {
  4995. height: math.unit(8, "feet"),
  4996. weight: math.unit(500, "lb"),
  4997. name: "Front",
  4998. image: {
  4999. source: "./media/characters/rick/front.svg"
  5000. }
  5001. }
  5002. },
  5003. [
  5004. {
  5005. name: "Normal",
  5006. height: math.unit(8, "feet"),
  5007. default: true
  5008. },
  5009. {
  5010. name: "Macro",
  5011. height: math.unit(5, "km")
  5012. }
  5013. ]
  5014. ))
  5015. characterMakers.push(() => makeCharacter(
  5016. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  5017. {
  5018. front: {
  5019. height: math.unit(8, "feet"),
  5020. weight: math.unit(120, "lb"),
  5021. name: "Front",
  5022. image: {
  5023. source: "./media/characters/ona/front.svg"
  5024. }
  5025. },
  5026. frontAlt: {
  5027. height: math.unit(8, "feet"),
  5028. weight: math.unit(120, "lb"),
  5029. name: "Front (Alt)",
  5030. image: {
  5031. source: "./media/characters/ona/front-alt.svg"
  5032. }
  5033. },
  5034. back: {
  5035. height: math.unit(8, "feet"),
  5036. weight: math.unit(120, "lb"),
  5037. name: "Back",
  5038. image: {
  5039. source: "./media/characters/ona/back.svg"
  5040. }
  5041. },
  5042. foot: {
  5043. height: math.unit(1.1, "feet"),
  5044. name: "Foot",
  5045. image: {
  5046. source: "./media/characters/ona/foot.svg"
  5047. }
  5048. }
  5049. },
  5050. [
  5051. {
  5052. name: "Megamacro",
  5053. height: math.unit(70, "km"),
  5054. default: true
  5055. },
  5056. {
  5057. name: "Gigamacro",
  5058. height: math.unit(681818, "miles")
  5059. },
  5060. {
  5061. name: "Examacro",
  5062. height: math.unit(3800000, "lightyears")
  5063. },
  5064. ]
  5065. ))
  5066. characterMakers.push(() => makeCharacter(
  5067. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  5068. {
  5069. front: {
  5070. height: math.unit(12, "feet"),
  5071. weight: math.unit(3000, "lb"),
  5072. name: "Front",
  5073. image: {
  5074. source: "./media/characters/mech/front.svg",
  5075. extra: 2900 / 2770,
  5076. bottom: 110 / 3010
  5077. }
  5078. },
  5079. back: {
  5080. height: math.unit(12, "feet"),
  5081. weight: math.unit(3000, "lb"),
  5082. name: "Back",
  5083. image: {
  5084. source: "./media/characters/mech/back.svg",
  5085. extra: 3011 / 2890,
  5086. bottom: 94 / 3105
  5087. }
  5088. },
  5089. maw: {
  5090. height: math.unit(3.07, "feet"),
  5091. name: "Maw",
  5092. image: {
  5093. source: "./media/characters/mech/maw.svg"
  5094. }
  5095. },
  5096. head: {
  5097. height: math.unit(3.07, "feet"),
  5098. name: "Head",
  5099. image: {
  5100. source: "./media/characters/mech/head.svg"
  5101. }
  5102. },
  5103. dick: {
  5104. height: math.unit(1.43, "feet"),
  5105. name: "Dick",
  5106. image: {
  5107. source: "./media/characters/mech/dick.svg"
  5108. }
  5109. },
  5110. },
  5111. [
  5112. {
  5113. name: "Normal",
  5114. height: math.unit(12, "feet")
  5115. },
  5116. {
  5117. name: "Macro",
  5118. height: math.unit(300, "feet"),
  5119. default: true
  5120. },
  5121. {
  5122. name: "Macro+",
  5123. height: math.unit(1500, "feet")
  5124. },
  5125. ]
  5126. ))
  5127. characterMakers.push(() => makeCharacter(
  5128. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5129. {
  5130. front: {
  5131. height: math.unit(1.3, "meter"),
  5132. weight: math.unit(30, "kg"),
  5133. name: "Front",
  5134. image: {
  5135. source: "./media/characters/gregory/front.svg",
  5136. }
  5137. }
  5138. },
  5139. [
  5140. {
  5141. name: "Normal",
  5142. height: math.unit(1.3, "meter"),
  5143. default: true
  5144. },
  5145. {
  5146. name: "Macro",
  5147. height: math.unit(20, "meter")
  5148. }
  5149. ]
  5150. ))
  5151. characterMakers.push(() => makeCharacter(
  5152. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5153. {
  5154. front: {
  5155. height: math.unit(2.8, "meter"),
  5156. weight: math.unit(200, "kg"),
  5157. name: "Front",
  5158. image: {
  5159. source: "./media/characters/elory/front.svg",
  5160. }
  5161. }
  5162. },
  5163. [
  5164. {
  5165. name: "Normal",
  5166. height: math.unit(2.8, "meter"),
  5167. default: true
  5168. },
  5169. {
  5170. name: "Macro",
  5171. height: math.unit(38, "meter")
  5172. }
  5173. ]
  5174. ))
  5175. characterMakers.push(() => makeCharacter(
  5176. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5177. {
  5178. front: {
  5179. height: math.unit(470, "feet"),
  5180. weight: math.unit(924, "tons"),
  5181. name: "Front",
  5182. image: {
  5183. source: "./media/characters/angelpatamon/front.svg",
  5184. }
  5185. }
  5186. },
  5187. [
  5188. {
  5189. name: "Normal",
  5190. height: math.unit(470, "feet"),
  5191. default: true
  5192. },
  5193. {
  5194. name: "Deity Size I",
  5195. height: math.unit(28651.2, "km")
  5196. },
  5197. {
  5198. name: "Deity Size II",
  5199. height: math.unit(171907.2, "km")
  5200. }
  5201. ]
  5202. ))
  5203. characterMakers.push(() => makeCharacter(
  5204. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5205. {
  5206. side: {
  5207. height: math.unit(7.2, "meter"),
  5208. weight: math.unit(8.2, "tons"),
  5209. name: "Side",
  5210. image: {
  5211. source: "./media/characters/cryae/side.svg",
  5212. extra: 3500 / 1500
  5213. }
  5214. }
  5215. },
  5216. [
  5217. {
  5218. name: "Normal",
  5219. height: math.unit(7.2, "meter"),
  5220. default: true
  5221. }
  5222. ]
  5223. ))
  5224. characterMakers.push(() => makeCharacter(
  5225. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5226. {
  5227. front: {
  5228. height: math.unit(6, "feet"),
  5229. weight: math.unit(175, "lb"),
  5230. name: "Front",
  5231. image: {
  5232. source: "./media/characters/xera/front.svg",
  5233. extra: 2377 / 1972,
  5234. bottom: 75.5 / 2452
  5235. }
  5236. },
  5237. side: {
  5238. height: math.unit(6, "feet"),
  5239. weight: math.unit(175, "lb"),
  5240. name: "Side",
  5241. image: {
  5242. source: "./media/characters/xera/side.svg",
  5243. extra: 2345 / 2019,
  5244. bottom: 39.7 / 2384
  5245. }
  5246. },
  5247. back: {
  5248. height: math.unit(6, "feet"),
  5249. weight: math.unit(175, "lb"),
  5250. name: "Back",
  5251. image: {
  5252. source: "./media/characters/xera/back.svg",
  5253. extra: 2095 / 1984,
  5254. bottom: 67 / 2166
  5255. }
  5256. },
  5257. },
  5258. [
  5259. {
  5260. name: "Small",
  5261. height: math.unit(10, "feet")
  5262. },
  5263. {
  5264. name: "Macro",
  5265. height: math.unit(500, "meters"),
  5266. default: true
  5267. },
  5268. {
  5269. name: "Macro+",
  5270. height: math.unit(10, "km")
  5271. },
  5272. {
  5273. name: "Gigamacro",
  5274. height: math.unit(25000, "km")
  5275. },
  5276. {
  5277. name: "Teramacro",
  5278. height: math.unit(3e6, "km")
  5279. }
  5280. ]
  5281. ))
  5282. characterMakers.push(() => makeCharacter(
  5283. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5284. {
  5285. front: {
  5286. height: math.unit(6, "feet"),
  5287. weight: math.unit(175, "lb"),
  5288. name: "Front",
  5289. image: {
  5290. source: "./media/characters/nebula/front.svg",
  5291. extra: 2566 / 2362,
  5292. bottom: 81 / 2644
  5293. }
  5294. }
  5295. },
  5296. [
  5297. {
  5298. name: "Small",
  5299. height: math.unit(4.5, "meters")
  5300. },
  5301. {
  5302. name: "Macro",
  5303. height: math.unit(1500, "meters"),
  5304. default: true
  5305. },
  5306. {
  5307. name: "Megamacro",
  5308. height: math.unit(150, "km")
  5309. },
  5310. {
  5311. name: "Gigamacro",
  5312. height: math.unit(27000, "km")
  5313. }
  5314. ]
  5315. ))
  5316. characterMakers.push(() => makeCharacter(
  5317. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5318. {
  5319. front: {
  5320. height: math.unit(6, "feet"),
  5321. weight: math.unit(225, "lb"),
  5322. name: "Front",
  5323. image: {
  5324. source: "./media/characters/abysgar/front.svg",
  5325. extra: 1739/1614,
  5326. bottom: 71/1810
  5327. }
  5328. },
  5329. frontNsfw: {
  5330. height: math.unit(6, "feet"),
  5331. weight: math.unit(225, "lb"),
  5332. name: "Front (NSFW)",
  5333. image: {
  5334. source: "./media/characters/abysgar/front-nsfw.svg",
  5335. extra: 1739/1614,
  5336. bottom: 71/1810
  5337. }
  5338. },
  5339. back: {
  5340. height: math.unit(4.6, "feet"),
  5341. weight: math.unit(225, "lb"),
  5342. name: "Back",
  5343. image: {
  5344. source: "./media/characters/abysgar/back.svg",
  5345. extra: 1384/1327,
  5346. bottom: 0/1384
  5347. }
  5348. },
  5349. head: {
  5350. height: math.unit(1.25, "feet"),
  5351. name: "Head",
  5352. image: {
  5353. source: "./media/characters/abysgar/head.svg",
  5354. extra: 669/569,
  5355. bottom: 0/669
  5356. }
  5357. },
  5358. },
  5359. [
  5360. {
  5361. name: "Small",
  5362. height: math.unit(4.5, "meters")
  5363. },
  5364. {
  5365. name: "Macro",
  5366. height: math.unit(1250, "meters"),
  5367. default: true
  5368. },
  5369. {
  5370. name: "Megamacro",
  5371. height: math.unit(125, "km")
  5372. },
  5373. {
  5374. name: "Gigamacro",
  5375. height: math.unit(26000, "km")
  5376. }
  5377. ]
  5378. ))
  5379. characterMakers.push(() => makeCharacter(
  5380. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5381. {
  5382. front: {
  5383. height: math.unit(6, "feet"),
  5384. weight: math.unit(180, "lb"),
  5385. name: "Front",
  5386. image: {
  5387. source: "./media/characters/yakuz/front.svg"
  5388. }
  5389. }
  5390. },
  5391. [
  5392. {
  5393. name: "Small",
  5394. height: math.unit(5, "meters")
  5395. },
  5396. {
  5397. name: "Macro",
  5398. height: math.unit(1500, "meters"),
  5399. default: true
  5400. },
  5401. {
  5402. name: "Megamacro",
  5403. height: math.unit(200, "km")
  5404. },
  5405. {
  5406. name: "Gigamacro",
  5407. height: math.unit(100000, "km")
  5408. }
  5409. ]
  5410. ))
  5411. characterMakers.push(() => makeCharacter(
  5412. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5413. {
  5414. front: {
  5415. height: math.unit(6, "feet"),
  5416. weight: math.unit(175, "lb"),
  5417. name: "Front",
  5418. image: {
  5419. source: "./media/characters/mirova/front.svg",
  5420. extra: 3334 / 3071,
  5421. bottom: 42 / 3375.6
  5422. }
  5423. }
  5424. },
  5425. [
  5426. {
  5427. name: "Small",
  5428. height: math.unit(5, "meters")
  5429. },
  5430. {
  5431. name: "Macro",
  5432. height: math.unit(900, "meters"),
  5433. default: true
  5434. },
  5435. {
  5436. name: "Megamacro",
  5437. height: math.unit(135, "km")
  5438. },
  5439. {
  5440. name: "Gigamacro",
  5441. height: math.unit(20000, "km")
  5442. }
  5443. ]
  5444. ))
  5445. characterMakers.push(() => makeCharacter(
  5446. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5447. {
  5448. side: {
  5449. height: math.unit(28.35, "feet"),
  5450. weight: math.unit(99.75, "tons"),
  5451. name: "Side",
  5452. image: {
  5453. source: "./media/characters/asana-mech/side.svg",
  5454. extra: 923 / 699,
  5455. bottom: 50 / 975
  5456. }
  5457. },
  5458. chaingun: {
  5459. height: math.unit(7, "feet"),
  5460. weight: math.unit(2400, "lb"),
  5461. name: "Chaingun",
  5462. image: {
  5463. source: "./media/characters/asana-mech/chaingun.svg"
  5464. }
  5465. },
  5466. laser: {
  5467. height: math.unit(7.12, "feet"),
  5468. weight: math.unit(2000, "lb"),
  5469. name: "Laser",
  5470. image: {
  5471. source: "./media/characters/asana-mech/laser.svg"
  5472. }
  5473. },
  5474. },
  5475. [
  5476. {
  5477. name: "Normal",
  5478. height: math.unit(28.35, "feet"),
  5479. default: true
  5480. },
  5481. {
  5482. name: "Macro",
  5483. height: math.unit(2500, "feet")
  5484. },
  5485. {
  5486. name: "Megamacro",
  5487. height: math.unit(25, "miles")
  5488. },
  5489. {
  5490. name: "Examacro",
  5491. height: math.unit(6e8, "lightyears")
  5492. },
  5493. ]
  5494. ))
  5495. characterMakers.push(() => makeCharacter(
  5496. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5497. {
  5498. front: {
  5499. height: math.unit(5, "meters"),
  5500. weight: math.unit(1000, "kg"),
  5501. name: "Front",
  5502. image: {
  5503. source: "./media/characters/asche/front.svg",
  5504. extra: 1258 / 1190,
  5505. bottom: 47 / 1305
  5506. }
  5507. },
  5508. frontUnderwear: {
  5509. height: math.unit(5, "meters"),
  5510. weight: math.unit(1000, "kg"),
  5511. name: "Front (Underwear)",
  5512. image: {
  5513. source: "./media/characters/asche/front-underwear.svg",
  5514. extra: 1258 / 1190,
  5515. bottom: 47 / 1305
  5516. }
  5517. },
  5518. frontDressed: {
  5519. height: math.unit(5, "meters"),
  5520. weight: math.unit(1000, "kg"),
  5521. name: "Front (Dressed)",
  5522. image: {
  5523. source: "./media/characters/asche/front-dressed.svg",
  5524. extra: 1258 / 1190,
  5525. bottom: 47 / 1305
  5526. }
  5527. },
  5528. frontArmor: {
  5529. height: math.unit(5, "meters"),
  5530. weight: math.unit(1000, "kg"),
  5531. name: "Front (Armored)",
  5532. image: {
  5533. source: "./media/characters/asche/front-armored.svg",
  5534. extra: 1374 / 1308,
  5535. bottom: 23 / 1397
  5536. }
  5537. },
  5538. mp724: {
  5539. height: math.unit(0.96, "meters"),
  5540. weight: math.unit(38, "kg"),
  5541. name: "H&K MP724",
  5542. image: {
  5543. source: "./media/characters/asche/h&k-mp724.svg"
  5544. }
  5545. },
  5546. side: {
  5547. height: math.unit(5, "meters"),
  5548. weight: math.unit(1000, "kg"),
  5549. name: "Side",
  5550. image: {
  5551. source: "./media/characters/asche/side.svg",
  5552. extra: 1717 / 1609,
  5553. bottom: 0.005
  5554. }
  5555. },
  5556. back: {
  5557. height: math.unit(5, "meters"),
  5558. weight: math.unit(1000, "kg"),
  5559. name: "Back",
  5560. image: {
  5561. source: "./media/characters/asche/back.svg",
  5562. extra: 1570 / 1501
  5563. }
  5564. },
  5565. },
  5566. [
  5567. {
  5568. name: "DEFCON 5",
  5569. height: math.unit(5, "meters")
  5570. },
  5571. {
  5572. name: "DEFCON 4",
  5573. height: math.unit(500, "meters"),
  5574. default: true
  5575. },
  5576. {
  5577. name: "DEFCON 3",
  5578. height: math.unit(5, "km")
  5579. },
  5580. {
  5581. name: "DEFCON 2",
  5582. height: math.unit(500, "km")
  5583. },
  5584. {
  5585. name: "DEFCON 1",
  5586. height: math.unit(500000, "km")
  5587. },
  5588. {
  5589. name: "DEFCON 0",
  5590. height: math.unit(3, "gigaparsecs")
  5591. },
  5592. ]
  5593. ))
  5594. characterMakers.push(() => makeCharacter(
  5595. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5596. {
  5597. front: {
  5598. height: math.unit(7, "feet"),
  5599. weight: math.unit(92.7, "kg"),
  5600. name: "Front",
  5601. image: {
  5602. source: "./media/characters/gale/front.svg",
  5603. extra: 977/919,
  5604. bottom: 105/1082
  5605. }
  5606. },
  5607. side: {
  5608. height: math.unit(6.7, "feet"),
  5609. weight: math.unit(92.7, "kg"),
  5610. name: "Side",
  5611. image: {
  5612. source: "./media/characters/gale/side.svg",
  5613. extra: 978/922,
  5614. bottom: 140/1118
  5615. }
  5616. },
  5617. back: {
  5618. height: math.unit(7, "feet"),
  5619. weight: math.unit(92.7, "kg"),
  5620. name: "Back",
  5621. image: {
  5622. source: "./media/characters/gale/back.svg",
  5623. extra: 966/920,
  5624. bottom: 61/1027
  5625. }
  5626. },
  5627. maw: {
  5628. height: math.unit(2.23, "feet"),
  5629. name: "Maw",
  5630. image: {
  5631. source: "./media/characters/gale/maw.svg"
  5632. }
  5633. },
  5634. foot: {
  5635. height: math.unit(2.1, "feet"),
  5636. name: "Foot",
  5637. image: {
  5638. source: "./media/characters/gale/foot.svg"
  5639. }
  5640. },
  5641. },
  5642. [
  5643. {
  5644. name: "Normal",
  5645. height: math.unit(7, "feet")
  5646. },
  5647. {
  5648. name: "Macro",
  5649. height: math.unit(150, "feet"),
  5650. default: true
  5651. },
  5652. {
  5653. name: "Macro+",
  5654. height: math.unit(300, "feet")
  5655. },
  5656. ]
  5657. ))
  5658. characterMakers.push(() => makeCharacter(
  5659. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5660. {
  5661. front: {
  5662. height: math.unit(5 + 10/12, "feet"),
  5663. weight: math.unit(67, "kg"),
  5664. name: "Front",
  5665. image: {
  5666. source: "./media/characters/draylen/front.svg",
  5667. extra: 832/777,
  5668. bottom: 85/917
  5669. }
  5670. }
  5671. },
  5672. [
  5673. {
  5674. name: "Normal",
  5675. height: math.unit(5 + 10/12, "feet")
  5676. },
  5677. {
  5678. name: "Macro",
  5679. height: math.unit(150, "feet"),
  5680. default: true
  5681. }
  5682. ]
  5683. ))
  5684. characterMakers.push(() => makeCharacter(
  5685. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5686. {
  5687. front: {
  5688. height: math.unit(7 + 9 / 12, "feet"),
  5689. weight: math.unit(379, "lbs"),
  5690. name: "Front",
  5691. image: {
  5692. source: "./media/characters/chez/front.svg"
  5693. }
  5694. },
  5695. side: {
  5696. height: math.unit(7 + 9 / 12, "feet"),
  5697. weight: math.unit(379, "lbs"),
  5698. name: "Side",
  5699. image: {
  5700. source: "./media/characters/chez/side.svg"
  5701. }
  5702. }
  5703. },
  5704. [
  5705. {
  5706. name: "Normal",
  5707. height: math.unit(7 + 9 / 12, "feet"),
  5708. default: true
  5709. },
  5710. {
  5711. name: "God King",
  5712. height: math.unit(9750000, "meters")
  5713. }
  5714. ]
  5715. ))
  5716. characterMakers.push(() => makeCharacter(
  5717. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5718. {
  5719. front: {
  5720. height: math.unit(6, "feet"),
  5721. weight: math.unit(275, "lbs"),
  5722. name: "Front",
  5723. image: {
  5724. source: "./media/characters/kaylum/front.svg",
  5725. bottom: 0.01,
  5726. extra: 1166 / 1031
  5727. }
  5728. },
  5729. frontWingless: {
  5730. height: math.unit(6, "feet"),
  5731. weight: math.unit(275, "lbs"),
  5732. name: "Front (Wingless)",
  5733. image: {
  5734. source: "./media/characters/kaylum/front-wingless.svg",
  5735. bottom: 0.01,
  5736. extra: 1117 / 1031
  5737. }
  5738. }
  5739. },
  5740. [
  5741. {
  5742. name: "Normal",
  5743. height: math.unit(3.05, "meters")
  5744. },
  5745. {
  5746. name: "Master",
  5747. height: math.unit(5.5, "meters")
  5748. },
  5749. {
  5750. name: "Rampage",
  5751. height: math.unit(19, "meters")
  5752. },
  5753. {
  5754. name: "Macro Lite",
  5755. height: math.unit(37, "meters")
  5756. },
  5757. {
  5758. name: "Hyper Predator",
  5759. height: math.unit(61, "meters")
  5760. },
  5761. {
  5762. name: "Macro",
  5763. height: math.unit(138, "meters"),
  5764. default: true
  5765. }
  5766. ]
  5767. ))
  5768. characterMakers.push(() => makeCharacter(
  5769. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5770. {
  5771. front: {
  5772. height: math.unit(5 + 5 / 12, "feet"),
  5773. weight: math.unit(120, "lbs"),
  5774. name: "Front",
  5775. image: {
  5776. source: "./media/characters/geta/front.svg",
  5777. extra: 1003/933,
  5778. bottom: 21/1024
  5779. }
  5780. },
  5781. paw: {
  5782. height: math.unit(0.35, "feet"),
  5783. name: "Paw",
  5784. image: {
  5785. source: "./media/characters/geta/paw.svg"
  5786. }
  5787. },
  5788. },
  5789. [
  5790. {
  5791. name: "Micro",
  5792. height: math.unit(3, "inches"),
  5793. default: true
  5794. },
  5795. {
  5796. name: "Normal",
  5797. height: math.unit(5 + 5 / 12, "feet")
  5798. }
  5799. ]
  5800. ))
  5801. characterMakers.push(() => makeCharacter(
  5802. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5803. {
  5804. front: {
  5805. height: math.unit(6, "feet"),
  5806. weight: math.unit(300, "lbs"),
  5807. name: "Front",
  5808. image: {
  5809. source: "./media/characters/tyrnn/front.svg"
  5810. }
  5811. }
  5812. },
  5813. [
  5814. {
  5815. name: "Main Height",
  5816. height: math.unit(355, "feet"),
  5817. default: true
  5818. },
  5819. {
  5820. name: "Fave. Height",
  5821. height: math.unit(2400, "feet")
  5822. }
  5823. ]
  5824. ))
  5825. characterMakers.push(() => makeCharacter(
  5826. { name: "Apple", species: ["elephant"], 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/appledectomy/front.svg"
  5834. }
  5835. }
  5836. },
  5837. [
  5838. {
  5839. name: "Macro",
  5840. height: math.unit(2500, "feet")
  5841. },
  5842. {
  5843. name: "Megamacro",
  5844. height: math.unit(50, "miles"),
  5845. default: true
  5846. },
  5847. {
  5848. name: "Gigamacro",
  5849. height: math.unit(5000, "miles")
  5850. },
  5851. {
  5852. name: "Teramacro",
  5853. height: math.unit(250000, "miles")
  5854. },
  5855. ]
  5856. ))
  5857. characterMakers.push(() => makeCharacter(
  5858. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5859. {
  5860. front: {
  5861. height: math.unit(6, "feet"),
  5862. weight: math.unit(200, "lbs"),
  5863. name: "Front",
  5864. image: {
  5865. source: "./media/characters/vulpes/front.svg",
  5866. extra: 573 / 543,
  5867. bottom: 0.033
  5868. }
  5869. },
  5870. side: {
  5871. height: math.unit(6, "feet"),
  5872. weight: math.unit(200, "lbs"),
  5873. name: "Side",
  5874. image: {
  5875. source: "./media/characters/vulpes/side.svg",
  5876. extra: 577 / 549,
  5877. bottom: 11 / 588
  5878. }
  5879. },
  5880. back: {
  5881. height: math.unit(6, "feet"),
  5882. weight: math.unit(200, "lbs"),
  5883. name: "Back",
  5884. image: {
  5885. source: "./media/characters/vulpes/back.svg",
  5886. extra: 573 / 549,
  5887. bottom: 20 / 593
  5888. }
  5889. },
  5890. feet: {
  5891. height: math.unit(1.276, "feet"),
  5892. name: "Feet",
  5893. image: {
  5894. source: "./media/characters/vulpes/feet.svg"
  5895. }
  5896. },
  5897. maw: {
  5898. height: math.unit(1.18, "feet"),
  5899. name: "Maw",
  5900. image: {
  5901. source: "./media/characters/vulpes/maw.svg"
  5902. }
  5903. },
  5904. },
  5905. [
  5906. {
  5907. name: "Micro",
  5908. height: math.unit(2, "inches")
  5909. },
  5910. {
  5911. name: "Normal",
  5912. height: math.unit(6.3, "feet")
  5913. },
  5914. {
  5915. name: "Macro",
  5916. height: math.unit(850, "feet")
  5917. },
  5918. {
  5919. name: "Megamacro",
  5920. height: math.unit(7500, "feet"),
  5921. default: true
  5922. },
  5923. {
  5924. name: "Gigamacro",
  5925. height: math.unit(570000, "miles")
  5926. }
  5927. ]
  5928. ))
  5929. characterMakers.push(() => makeCharacter(
  5930. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5931. {
  5932. front: {
  5933. height: math.unit(6, "feet"),
  5934. weight: math.unit(210, "lbs"),
  5935. name: "Front",
  5936. image: {
  5937. source: "./media/characters/rain-fallen/front.svg"
  5938. }
  5939. },
  5940. side: {
  5941. height: math.unit(6, "feet"),
  5942. weight: math.unit(210, "lbs"),
  5943. name: "Side",
  5944. image: {
  5945. source: "./media/characters/rain-fallen/side.svg"
  5946. }
  5947. },
  5948. back: {
  5949. height: math.unit(6, "feet"),
  5950. weight: math.unit(210, "lbs"),
  5951. name: "Back",
  5952. image: {
  5953. source: "./media/characters/rain-fallen/back.svg"
  5954. }
  5955. },
  5956. feral: {
  5957. height: math.unit(9, "feet"),
  5958. weight: math.unit(700, "lbs"),
  5959. name: "Feral",
  5960. image: {
  5961. source: "./media/characters/rain-fallen/feral.svg"
  5962. }
  5963. },
  5964. },
  5965. [
  5966. {
  5967. name: "Meddling with Mortals",
  5968. height: math.unit(8 + 8/12, "feet")
  5969. },
  5970. {
  5971. name: "Normal",
  5972. height: math.unit(5, "meter")
  5973. },
  5974. {
  5975. name: "Macro",
  5976. height: math.unit(150, "meter"),
  5977. default: true
  5978. },
  5979. {
  5980. name: "Megamacro",
  5981. height: math.unit(278e6, "meter")
  5982. },
  5983. {
  5984. name: "Gigamacro",
  5985. height: math.unit(2e9, "meter")
  5986. },
  5987. {
  5988. name: "Teramacro",
  5989. height: math.unit(8e12, "meter")
  5990. },
  5991. {
  5992. name: "Devourer",
  5993. height: math.unit(14, "zettameters")
  5994. },
  5995. {
  5996. name: "Scarlet King",
  5997. height: math.unit(18, "yottameters")
  5998. },
  5999. {
  6000. name: "Void",
  6001. height: math.unit(1e88, "yottameters")
  6002. }
  6003. ]
  6004. ))
  6005. characterMakers.push(() => makeCharacter(
  6006. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  6007. {
  6008. standing: {
  6009. height: math.unit(6, "feet"),
  6010. weight: math.unit(180, "lbs"),
  6011. name: "Standing",
  6012. image: {
  6013. source: "./media/characters/zaakira/standing.svg",
  6014. extra: 1599/1504,
  6015. bottom: 39/1638
  6016. }
  6017. },
  6018. laying: {
  6019. height: math.unit(3.3, "feet"),
  6020. weight: math.unit(180, "lbs"),
  6021. name: "Laying",
  6022. image: {
  6023. source: "./media/characters/zaakira/laying.svg"
  6024. }
  6025. },
  6026. },
  6027. [
  6028. {
  6029. name: "Normal",
  6030. height: math.unit(12, "feet")
  6031. },
  6032. {
  6033. name: "Macro",
  6034. height: math.unit(279, "feet"),
  6035. default: true
  6036. }
  6037. ]
  6038. ))
  6039. characterMakers.push(() => makeCharacter(
  6040. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  6041. {
  6042. femSfw: {
  6043. height: math.unit(8, "feet"),
  6044. weight: math.unit(350, "lb"),
  6045. name: "Fem",
  6046. image: {
  6047. source: "./media/characters/sigvald/fem-sfw.svg",
  6048. extra: 182 / 164,
  6049. bottom: 8.7 / 190.5
  6050. }
  6051. },
  6052. femNsfw: {
  6053. height: math.unit(8, "feet"),
  6054. weight: math.unit(350, "lb"),
  6055. name: "Fem (NSFW)",
  6056. image: {
  6057. source: "./media/characters/sigvald/fem-nsfw.svg",
  6058. extra: 182 / 164,
  6059. bottom: 8.7 / 190.5
  6060. }
  6061. },
  6062. maleNsfw: {
  6063. height: math.unit(8, "feet"),
  6064. weight: math.unit(350, "lb"),
  6065. name: "Male (NSFW)",
  6066. image: {
  6067. source: "./media/characters/sigvald/male-nsfw.svg",
  6068. extra: 182 / 164,
  6069. bottom: 8.7 / 190.5
  6070. }
  6071. },
  6072. hermNsfw: {
  6073. height: math.unit(8, "feet"),
  6074. weight: math.unit(350, "lb"),
  6075. name: "Herm (NSFW)",
  6076. image: {
  6077. source: "./media/characters/sigvald/herm-nsfw.svg",
  6078. extra: 182 / 164,
  6079. bottom: 8.7 / 190.5
  6080. }
  6081. },
  6082. dick: {
  6083. height: math.unit(2.36, "feet"),
  6084. name: "Dick",
  6085. image: {
  6086. source: "./media/characters/sigvald/dick.svg"
  6087. }
  6088. },
  6089. eye: {
  6090. height: math.unit(0.31, "feet"),
  6091. name: "Eye",
  6092. image: {
  6093. source: "./media/characters/sigvald/eye.svg"
  6094. }
  6095. },
  6096. mouth: {
  6097. height: math.unit(0.92, "feet"),
  6098. name: "Mouth",
  6099. image: {
  6100. source: "./media/characters/sigvald/mouth.svg"
  6101. }
  6102. },
  6103. paws: {
  6104. height: math.unit(2.2, "feet"),
  6105. name: "Paws",
  6106. image: {
  6107. source: "./media/characters/sigvald/paws.svg"
  6108. }
  6109. }
  6110. },
  6111. [
  6112. {
  6113. name: "Normal",
  6114. height: math.unit(8, "feet")
  6115. },
  6116. {
  6117. name: "Large",
  6118. height: math.unit(12, "feet")
  6119. },
  6120. {
  6121. name: "Larger",
  6122. height: math.unit(20, "feet")
  6123. },
  6124. {
  6125. name: "Macro",
  6126. height: math.unit(150, "feet")
  6127. },
  6128. {
  6129. name: "Macro+",
  6130. height: math.unit(200, "feet"),
  6131. default: true
  6132. },
  6133. ]
  6134. ))
  6135. characterMakers.push(() => makeCharacter(
  6136. { name: "Scott", species: ["fox"], tags: ["anthro", "taur"] },
  6137. {
  6138. anthro_front: {
  6139. height: math.unit(5 + 11/12, "feet"),
  6140. weight: math.unit(250, "lb"),
  6141. name: "Front",
  6142. image: {
  6143. source: "./media/characters/scott/anthro-front.svg",
  6144. extra: 851/781,
  6145. bottom: 54/905
  6146. },
  6147. form: "anthro",
  6148. default: true
  6149. },
  6150. anthro_side: {
  6151. height: math.unit(5.1, "feet"),
  6152. weight: math.unit(250, "lb"),
  6153. name: "Side",
  6154. image: {
  6155. source: "./media/characters/scott/anthro-side.svg"
  6156. },
  6157. form: "anthro",
  6158. },
  6159. anthro_dick: {
  6160. height: math.unit(1.33, "feet"),
  6161. name: "Dick",
  6162. image: {
  6163. source: "./media/characters/scott/anthro-dick.svg"
  6164. },
  6165. form: "anthro",
  6166. },
  6167. side: {
  6168. height: math.unit(12, "feet"),
  6169. weight: math.unit(2000, "kg"),
  6170. name: "Side",
  6171. image: {
  6172. source: "./media/characters/scott/side.svg",
  6173. extra: 754 / 724,
  6174. bottom: 0.069
  6175. },
  6176. form: "taur",
  6177. default: true
  6178. },
  6179. upright: {
  6180. height: math.unit(12, "feet"),
  6181. weight: math.unit(2000, "kg"),
  6182. name: "Upright",
  6183. image: {
  6184. source: "./media/characters/scott/upright.svg",
  6185. extra: 3881 / 3722,
  6186. bottom: 0.05
  6187. },
  6188. form: "taur",
  6189. },
  6190. },
  6191. [
  6192. {
  6193. name: "Normal",
  6194. height: math.unit(5 + 11/12, "feet"),
  6195. default: true,
  6196. form: "anthro"
  6197. },
  6198. {
  6199. name: "Normal",
  6200. height: math.unit(12, "feet"),
  6201. default: true,
  6202. form: "taur"
  6203. },
  6204. ],
  6205. {
  6206. "anthro": {
  6207. name: "Anthro",
  6208. default: true
  6209. },
  6210. "taur": {
  6211. name: "Taur",
  6212. },
  6213. }
  6214. ))
  6215. characterMakers.push(() => makeCharacter(
  6216. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6217. {
  6218. side: {
  6219. height: math.unit(8, "meters"),
  6220. weight: math.unit(84755, "lbs"),
  6221. name: "Side",
  6222. image: {
  6223. source: "./media/characters/tobias/side.svg",
  6224. extra: 1474 / 1096,
  6225. bottom: 38.9 / 1513.1235
  6226. }
  6227. },
  6228. maw: {
  6229. height: math.unit(2.3, "meters"),
  6230. name: "Maw",
  6231. image: {
  6232. source: "./media/characters/tobias/maw.svg"
  6233. }
  6234. },
  6235. burp: {
  6236. height: math.unit(2.85, "meters"),
  6237. name: "Burp",
  6238. image: {
  6239. source: "./media/characters/tobias/burp.svg"
  6240. }
  6241. },
  6242. },
  6243. [
  6244. {
  6245. name: "Normal",
  6246. height: math.unit(8, "meters"),
  6247. default: true
  6248. },
  6249. ]
  6250. ))
  6251. characterMakers.push(() => makeCharacter(
  6252. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6253. {
  6254. front: {
  6255. height: math.unit(5.5, "feet"),
  6256. weight: math.unit(400, "lbs"),
  6257. name: "Front",
  6258. image: {
  6259. source: "./media/characters/kieran/front.svg",
  6260. extra: 2694 / 2364,
  6261. bottom: 217 / 2908
  6262. }
  6263. },
  6264. side: {
  6265. height: math.unit(5.5, "feet"),
  6266. weight: math.unit(400, "lbs"),
  6267. name: "Side",
  6268. image: {
  6269. source: "./media/characters/kieran/side.svg",
  6270. extra: 875 / 777,
  6271. bottom: 84.6 / 959
  6272. }
  6273. },
  6274. },
  6275. [
  6276. {
  6277. name: "Normal",
  6278. height: math.unit(5.5, "feet"),
  6279. default: true
  6280. },
  6281. ]
  6282. ))
  6283. characterMakers.push(() => makeCharacter(
  6284. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6285. {
  6286. side: {
  6287. height: math.unit(2, "meters"),
  6288. weight: math.unit(70, "kg"),
  6289. name: "Side",
  6290. image: {
  6291. source: "./media/characters/sanya/side.svg",
  6292. bottom: 0.02,
  6293. extra: 1.02
  6294. }
  6295. },
  6296. },
  6297. [
  6298. {
  6299. name: "Small",
  6300. height: math.unit(2, "meters")
  6301. },
  6302. {
  6303. name: "Normal",
  6304. height: math.unit(3, "meters")
  6305. },
  6306. {
  6307. name: "Macro",
  6308. height: math.unit(16, "meters"),
  6309. default: true
  6310. },
  6311. ]
  6312. ))
  6313. characterMakers.push(() => makeCharacter(
  6314. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6315. {
  6316. front: {
  6317. height: math.unit(2, "meters"),
  6318. weight: math.unit(120, "kg"),
  6319. name: "Front",
  6320. image: {
  6321. source: "./media/characters/miranda/front.svg",
  6322. extra: 195 / 185,
  6323. bottom: 10.9 / 206.5
  6324. }
  6325. },
  6326. back: {
  6327. height: math.unit(2, "meters"),
  6328. weight: math.unit(120, "kg"),
  6329. name: "Back",
  6330. image: {
  6331. source: "./media/characters/miranda/back.svg",
  6332. extra: 201 / 193,
  6333. bottom: 2.3 / 203.7
  6334. }
  6335. },
  6336. },
  6337. [
  6338. {
  6339. name: "Normal",
  6340. height: math.unit(10, "feet"),
  6341. default: true
  6342. }
  6343. ]
  6344. ))
  6345. characterMakers.push(() => makeCharacter(
  6346. { name: "James", species: ["deer"], tags: ["anthro"] },
  6347. {
  6348. side: {
  6349. height: math.unit(2, "meters"),
  6350. weight: math.unit(100, "kg"),
  6351. name: "Front",
  6352. image: {
  6353. source: "./media/characters/james/front.svg",
  6354. extra: 10 / 8.5
  6355. }
  6356. },
  6357. },
  6358. [
  6359. {
  6360. name: "Normal",
  6361. height: math.unit(8.5, "feet"),
  6362. default: true
  6363. }
  6364. ]
  6365. ))
  6366. characterMakers.push(() => makeCharacter(
  6367. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6368. {
  6369. side: {
  6370. height: math.unit(9.5, "feet"),
  6371. weight: math.unit(2500, "lbs"),
  6372. name: "Side",
  6373. image: {
  6374. source: "./media/characters/heather/side.svg"
  6375. }
  6376. },
  6377. },
  6378. [
  6379. {
  6380. name: "Normal",
  6381. height: math.unit(9.5, "feet"),
  6382. default: true
  6383. }
  6384. ]
  6385. ))
  6386. characterMakers.push(() => makeCharacter(
  6387. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6388. {
  6389. side: {
  6390. height: math.unit(6.5, "feet"),
  6391. weight: math.unit(400, "lbs"),
  6392. name: "Side",
  6393. image: {
  6394. source: "./media/characters/lukas/side.svg",
  6395. extra: 7.25 / 6.5
  6396. }
  6397. },
  6398. },
  6399. [
  6400. {
  6401. name: "Normal",
  6402. height: math.unit(6.5, "feet"),
  6403. default: true
  6404. }
  6405. ]
  6406. ))
  6407. characterMakers.push(() => makeCharacter(
  6408. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6409. {
  6410. side: {
  6411. height: math.unit(5, "feet"),
  6412. weight: math.unit(3000, "lbs"),
  6413. name: "Side",
  6414. image: {
  6415. source: "./media/characters/louise/side.svg"
  6416. }
  6417. },
  6418. },
  6419. [
  6420. {
  6421. name: "Normal",
  6422. height: math.unit(5, "feet"),
  6423. default: true
  6424. }
  6425. ]
  6426. ))
  6427. characterMakers.push(() => makeCharacter(
  6428. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6429. {
  6430. side: {
  6431. height: math.unit(6, "feet"),
  6432. weight: math.unit(150, "lbs"),
  6433. name: "Side",
  6434. image: {
  6435. source: "./media/characters/ramona/side.svg",
  6436. extra: 871/854,
  6437. bottom: 41/912
  6438. }
  6439. },
  6440. },
  6441. [
  6442. {
  6443. name: "Normal",
  6444. height: math.unit(6 + 4/12, "feet")
  6445. },
  6446. {
  6447. name: "Minimacro",
  6448. height: math.unit(5.3, "meters"),
  6449. default: true
  6450. },
  6451. {
  6452. name: "Macro",
  6453. height: math.unit(20, "stories")
  6454. },
  6455. {
  6456. name: "Macro+",
  6457. height: math.unit(50, "stories")
  6458. },
  6459. ]
  6460. ))
  6461. characterMakers.push(() => makeCharacter(
  6462. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6463. {
  6464. standing: {
  6465. height: math.unit(5.75, "feet"),
  6466. weight: math.unit(160, "lbs"),
  6467. name: "Standing",
  6468. image: {
  6469. source: "./media/characters/deerpuff/standing.svg",
  6470. extra: 682 / 624
  6471. }
  6472. },
  6473. sitting: {
  6474. height: math.unit(5.75 / 1.79, "feet"),
  6475. weight: math.unit(160, "lbs"),
  6476. name: "Sitting",
  6477. image: {
  6478. source: "./media/characters/deerpuff/sitting.svg",
  6479. bottom: 44 / 400,
  6480. extra: 1
  6481. }
  6482. },
  6483. taurLaying: {
  6484. height: math.unit(6, "feet"),
  6485. weight: math.unit(400, "lbs"),
  6486. name: "Taur (Laying)",
  6487. image: {
  6488. source: "./media/characters/deerpuff/taur-laying.svg"
  6489. }
  6490. },
  6491. },
  6492. [
  6493. {
  6494. name: "Puffball",
  6495. height: math.unit(6, "inches")
  6496. },
  6497. {
  6498. name: "Normalpuff",
  6499. height: math.unit(5.75, "feet")
  6500. },
  6501. {
  6502. name: "Macropuff",
  6503. height: math.unit(1500, "feet"),
  6504. default: true
  6505. },
  6506. {
  6507. name: "Megapuff",
  6508. height: math.unit(500, "miles")
  6509. },
  6510. {
  6511. name: "Gigapuff",
  6512. height: math.unit(250000, "miles")
  6513. },
  6514. {
  6515. name: "Omegapuff",
  6516. height: math.unit(1000, "lightyears")
  6517. },
  6518. ]
  6519. ))
  6520. characterMakers.push(() => makeCharacter(
  6521. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6522. {
  6523. stomping: {
  6524. height: math.unit(6, "feet"),
  6525. weight: math.unit(170, "lbs"),
  6526. name: "Stomping",
  6527. image: {
  6528. source: "./media/characters/vivian/stomping.svg"
  6529. }
  6530. },
  6531. sitting: {
  6532. height: math.unit(6 / 1.75, "feet"),
  6533. weight: math.unit(170, "lbs"),
  6534. name: "Sitting",
  6535. image: {
  6536. source: "./media/characters/vivian/sitting.svg",
  6537. bottom: 1 / 6.4,
  6538. extra: 1,
  6539. }
  6540. },
  6541. },
  6542. [
  6543. {
  6544. name: "Normal",
  6545. height: math.unit(7, "feet"),
  6546. default: true
  6547. },
  6548. {
  6549. name: "Macro",
  6550. height: math.unit(10, "stories")
  6551. },
  6552. {
  6553. name: "Macro+",
  6554. height: math.unit(30, "stories")
  6555. },
  6556. {
  6557. name: "Megamacro",
  6558. height: math.unit(10, "miles")
  6559. },
  6560. {
  6561. name: "Megamacro+",
  6562. height: math.unit(2750000, "meters")
  6563. },
  6564. ]
  6565. ))
  6566. characterMakers.push(() => makeCharacter(
  6567. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6568. {
  6569. front: {
  6570. height: math.unit(6, "feet"),
  6571. weight: math.unit(160, "lbs"),
  6572. name: "Front",
  6573. image: {
  6574. source: "./media/characters/prince/front.svg",
  6575. extra: 1938/1682,
  6576. bottom: 45/1983
  6577. }
  6578. },
  6579. back: {
  6580. height: math.unit(6, "feet"),
  6581. weight: math.unit(160, "lbs"),
  6582. name: "Back",
  6583. image: {
  6584. source: "./media/characters/prince/back.svg",
  6585. extra: 1955/1726,
  6586. bottom: 6/1961
  6587. }
  6588. },
  6589. },
  6590. [
  6591. {
  6592. name: "Normal",
  6593. height: math.unit(7.75, "feet"),
  6594. default: true
  6595. },
  6596. {
  6597. name: "Not cute",
  6598. height: math.unit(17, "feet")
  6599. },
  6600. {
  6601. name: "I said NOT",
  6602. height: math.unit(91, "feet")
  6603. },
  6604. {
  6605. name: "Please stop",
  6606. height: math.unit(560, "feet")
  6607. },
  6608. {
  6609. name: "What have you done",
  6610. height: math.unit(2200, "feet")
  6611. },
  6612. {
  6613. name: "Deer God",
  6614. height: math.unit(3.6, "miles")
  6615. },
  6616. ]
  6617. ))
  6618. characterMakers.push(() => makeCharacter(
  6619. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6620. {
  6621. standing: {
  6622. height: math.unit(6, "feet"),
  6623. weight: math.unit(300, "lbs"),
  6624. name: "Standing",
  6625. image: {
  6626. source: "./media/characters/psymon/standing.svg",
  6627. extra: 1888 / 1810,
  6628. bottom: 0.05
  6629. }
  6630. },
  6631. slithering: {
  6632. height: math.unit(6, "feet"),
  6633. weight: math.unit(300, "lbs"),
  6634. name: "Slithering",
  6635. image: {
  6636. source: "./media/characters/psymon/slithering.svg",
  6637. extra: 1330 / 1224
  6638. }
  6639. },
  6640. slitheringAlt: {
  6641. height: math.unit(6, "feet"),
  6642. weight: math.unit(300, "lbs"),
  6643. name: "Slithering (Alt)",
  6644. image: {
  6645. source: "./media/characters/psymon/slithering-alt.svg",
  6646. extra: 1330 / 1224
  6647. }
  6648. },
  6649. },
  6650. [
  6651. {
  6652. name: "Normal",
  6653. height: math.unit(11.25, "feet"),
  6654. default: true
  6655. },
  6656. {
  6657. name: "Large",
  6658. height: math.unit(27, "feet")
  6659. },
  6660. {
  6661. name: "Giant",
  6662. height: math.unit(87, "feet")
  6663. },
  6664. {
  6665. name: "Macro",
  6666. height: math.unit(365, "feet")
  6667. },
  6668. {
  6669. name: "Megamacro",
  6670. height: math.unit(3, "miles")
  6671. },
  6672. {
  6673. name: "World Serpent",
  6674. height: math.unit(8000, "miles")
  6675. },
  6676. ]
  6677. ))
  6678. characterMakers.push(() => makeCharacter(
  6679. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6680. {
  6681. front: {
  6682. height: math.unit(6, "feet"),
  6683. weight: math.unit(180, "lbs"),
  6684. name: "Front",
  6685. image: {
  6686. source: "./media/characters/daimos/front.svg",
  6687. extra: 4160 / 3897,
  6688. bottom: 0.021
  6689. }
  6690. }
  6691. },
  6692. [
  6693. {
  6694. name: "Normal",
  6695. height: math.unit(8, "feet"),
  6696. default: true
  6697. },
  6698. {
  6699. name: "Big Dog",
  6700. height: math.unit(22, "feet")
  6701. },
  6702. {
  6703. name: "Macro",
  6704. height: math.unit(127, "feet")
  6705. },
  6706. {
  6707. name: "Megamacro",
  6708. height: math.unit(3600, "feet")
  6709. },
  6710. ]
  6711. ))
  6712. characterMakers.push(() => makeCharacter(
  6713. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6714. {
  6715. side: {
  6716. height: math.unit(6, "feet"),
  6717. weight: math.unit(180, "lbs"),
  6718. name: "Side",
  6719. image: {
  6720. source: "./media/characters/blake/side.svg",
  6721. extra: 1212 / 1120,
  6722. bottom: 0.05
  6723. }
  6724. },
  6725. crouched: {
  6726. height: math.unit(6 * 0.57, "feet"),
  6727. weight: math.unit(180, "lbs"),
  6728. name: "Crouched",
  6729. image: {
  6730. source: "./media/characters/blake/crouched.svg",
  6731. extra: 840 / 587,
  6732. bottom: 0.04
  6733. }
  6734. },
  6735. bent: {
  6736. height: math.unit(6 * 0.75, "feet"),
  6737. weight: math.unit(180, "lbs"),
  6738. name: "Bent",
  6739. image: {
  6740. source: "./media/characters/blake/bent.svg",
  6741. extra: 592 / 544,
  6742. bottom: 0.035
  6743. }
  6744. },
  6745. },
  6746. [
  6747. {
  6748. name: "Normal",
  6749. height: math.unit(8 + 1 / 6, "feet"),
  6750. default: true
  6751. },
  6752. {
  6753. name: "Big Backside",
  6754. height: math.unit(37, "feet")
  6755. },
  6756. {
  6757. name: "Subway Shredder",
  6758. height: math.unit(72, "feet")
  6759. },
  6760. {
  6761. name: "City Carver",
  6762. height: math.unit(1675, "feet")
  6763. },
  6764. {
  6765. name: "Tectonic Tweaker",
  6766. height: math.unit(2300, "miles")
  6767. },
  6768. ]
  6769. ))
  6770. characterMakers.push(() => makeCharacter(
  6771. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6772. {
  6773. front: {
  6774. height: math.unit(6, "feet"),
  6775. weight: math.unit(180, "lbs"),
  6776. name: "Front",
  6777. image: {
  6778. source: "./media/characters/guisetto/front.svg",
  6779. extra: 856 / 817,
  6780. bottom: 0.06
  6781. }
  6782. },
  6783. airborne: {
  6784. height: math.unit(6, "feet"),
  6785. weight: math.unit(180, "lbs"),
  6786. name: "Airborne",
  6787. image: {
  6788. source: "./media/characters/guisetto/airborne.svg",
  6789. extra: 584 / 525
  6790. }
  6791. },
  6792. },
  6793. [
  6794. {
  6795. name: "Normal",
  6796. height: math.unit(10 + 11 / 12, "feet"),
  6797. default: true
  6798. },
  6799. {
  6800. name: "Large",
  6801. height: math.unit(35, "feet")
  6802. },
  6803. {
  6804. name: "Macro",
  6805. height: math.unit(475, "feet")
  6806. },
  6807. ]
  6808. ))
  6809. characterMakers.push(() => makeCharacter(
  6810. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6811. {
  6812. front: {
  6813. height: math.unit(6, "feet"),
  6814. weight: math.unit(180, "lbs"),
  6815. name: "Front",
  6816. image: {
  6817. source: "./media/characters/luxor/front.svg",
  6818. extra: 2940 / 2152
  6819. }
  6820. },
  6821. back: {
  6822. height: math.unit(6, "feet"),
  6823. weight: math.unit(180, "lbs"),
  6824. name: "Back",
  6825. image: {
  6826. source: "./media/characters/luxor/back.svg",
  6827. extra: 1083 / 960
  6828. }
  6829. },
  6830. },
  6831. [
  6832. {
  6833. name: "Normal",
  6834. height: math.unit(5 + 5 / 6, "feet"),
  6835. default: true
  6836. },
  6837. {
  6838. name: "Lamp",
  6839. height: math.unit(50, "feet")
  6840. },
  6841. {
  6842. name: "Lämp",
  6843. height: math.unit(300, "feet")
  6844. },
  6845. {
  6846. name: "The sun is a lamp",
  6847. height: math.unit(250000, "miles")
  6848. },
  6849. ]
  6850. ))
  6851. characterMakers.push(() => makeCharacter(
  6852. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6853. {
  6854. front: {
  6855. height: math.unit(6, "feet"),
  6856. weight: math.unit(50, "lbs"),
  6857. name: "Front",
  6858. image: {
  6859. source: "./media/characters/huoyan/front.svg"
  6860. }
  6861. },
  6862. side: {
  6863. height: math.unit(6, "feet"),
  6864. weight: math.unit(180, "lbs"),
  6865. name: "Side",
  6866. image: {
  6867. source: "./media/characters/huoyan/side.svg"
  6868. }
  6869. },
  6870. },
  6871. [
  6872. {
  6873. name: "Chef",
  6874. height: math.unit(9, "feet")
  6875. },
  6876. {
  6877. name: "Normal",
  6878. height: math.unit(65, "feet"),
  6879. default: true
  6880. },
  6881. {
  6882. name: "Macro",
  6883. height: math.unit(780, "feet")
  6884. },
  6885. {
  6886. name: "Flaming Mountain",
  6887. height: math.unit(4.8, "miles")
  6888. },
  6889. {
  6890. name: "Celestial",
  6891. height: math.unit(765000, "miles")
  6892. },
  6893. ]
  6894. ))
  6895. characterMakers.push(() => makeCharacter(
  6896. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6897. {
  6898. front: {
  6899. height: math.unit(5 + 3 / 4, "feet"),
  6900. weight: math.unit(120, "lbs"),
  6901. name: "Front",
  6902. image: {
  6903. source: "./media/characters/tails/front.svg"
  6904. }
  6905. }
  6906. },
  6907. [
  6908. {
  6909. name: "Normal",
  6910. height: math.unit(5 + 3 / 4, "feet"),
  6911. default: true
  6912. }
  6913. ]
  6914. ))
  6915. characterMakers.push(() => makeCharacter(
  6916. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6917. {
  6918. front: {
  6919. height: math.unit(4, "feet"),
  6920. weight: math.unit(50, "lbs"),
  6921. name: "Front",
  6922. image: {
  6923. source: "./media/characters/rainy/front.svg"
  6924. }
  6925. }
  6926. },
  6927. [
  6928. {
  6929. name: "Macro",
  6930. height: math.unit(800, "feet"),
  6931. default: true
  6932. }
  6933. ]
  6934. ))
  6935. characterMakers.push(() => makeCharacter(
  6936. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6937. {
  6938. front: {
  6939. height: math.unit(6, "feet"),
  6940. weight: math.unit(150, "lbs"),
  6941. name: "Front",
  6942. image: {
  6943. source: "./media/characters/rainier/front.svg"
  6944. }
  6945. }
  6946. },
  6947. [
  6948. {
  6949. name: "Micro",
  6950. height: math.unit(2, "mm"),
  6951. default: true
  6952. }
  6953. ]
  6954. ))
  6955. characterMakers.push(() => makeCharacter(
  6956. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6957. {
  6958. front: {
  6959. height: math.unit(8 + 4/12, "feet"),
  6960. weight: math.unit(450, "kilograms"),
  6961. name: "Front",
  6962. image: {
  6963. source: "./media/characters/andy-renard/front.svg",
  6964. extra: 862/809,
  6965. bottom: 85/947
  6966. },
  6967. extraAttributes: {
  6968. "pawSize": {
  6969. name: "Paw Size",
  6970. power: 2,
  6971. type: "area",
  6972. base: math.unit(0.45*0.3, "meters^2")
  6973. },
  6974. "handSize": {
  6975. name: "Hand Size",
  6976. power: 2,
  6977. type: "area",
  6978. base: math.unit(0.4 * 0.3, "meters^2")
  6979. },
  6980. "cockSize": {
  6981. name: "Cock Length",
  6982. power: 1,
  6983. type: "length",
  6984. base: math.unit(0.75, "meters")
  6985. },
  6986. "ballDiameter": {
  6987. name: "Ball Diameter",
  6988. power: 1,
  6989. type: "length",
  6990. base: math.unit(0.3, "meters")
  6991. },
  6992. "ballVolume": {
  6993. name: "Ball Volume",
  6994. power: 3,
  6995. type: "volume",
  6996. base: math.unit(0.01413716694, "meters^3")
  6997. },
  6998. }
  6999. },
  7000. back: {
  7001. height: math.unit(8 + 4/12, "feet"),
  7002. weight: math.unit(450, "kilograms"),
  7003. name: "Back",
  7004. image: {
  7005. source: "./media/characters/andy-renard/back.svg",
  7006. extra: 1112/1033,
  7007. bottom: 64/1176
  7008. },
  7009. extraAttributes: {
  7010. "pawSize": {
  7011. name: "Paw Size",
  7012. power: 2,
  7013. type: "area",
  7014. base: math.unit(0.45*0.3, "meters^2")
  7015. },
  7016. "handSize": {
  7017. name: "Hand Size",
  7018. power: 2,
  7019. type: "area",
  7020. base: math.unit(0.4 * 0.3, "meters^2")
  7021. },
  7022. "cockSize": {
  7023. name: "Cock Length",
  7024. power: 1,
  7025. type: "length",
  7026. base: math.unit(0.75, "meters")
  7027. },
  7028. "ballDiameter": {
  7029. name: "Ball Diameter",
  7030. power: 1,
  7031. type: "length",
  7032. base: math.unit(0.3, "meters")
  7033. },
  7034. "ballVolume": {
  7035. name: "Ball Volume",
  7036. power: 3,
  7037. type: "volume",
  7038. base: math.unit(0.01413716694, "meters^3")
  7039. },
  7040. }
  7041. },
  7042. },
  7043. [
  7044. {
  7045. name: "Tall",
  7046. height: math.unit(6 + 8/12, "feet")
  7047. },
  7048. {
  7049. name: "Very Tall",
  7050. height: math.unit(8 + 4/12, "feet")
  7051. },
  7052. {
  7053. name: "Mini Macro",
  7054. height: math.unit(15, "feet"),
  7055. default: true
  7056. },
  7057. {
  7058. name: "Giant",
  7059. height: math.unit(50, "feet")
  7060. },
  7061. {
  7062. name: "Nice",
  7063. height: math.unit(69, "feet")
  7064. },
  7065. {
  7066. name: "Macro",
  7067. height: math.unit(100, "feet")
  7068. },
  7069. {
  7070. name: "Enormous",
  7071. height: math.unit(500, "feet")
  7072. },
  7073. {
  7074. name: "Gargantuan",
  7075. height: math.unit(1000, "feet")
  7076. },
  7077. {
  7078. name: "Mega",
  7079. height: math.unit(1, "mile")
  7080. },
  7081. {
  7082. name: "Giga",
  7083. height: math.unit(50, "miles")
  7084. },
  7085. {
  7086. name: "Tera",
  7087. height: math.unit(1000, "miles")
  7088. },
  7089. {
  7090. name: "Cosmic",
  7091. height: math.unit(1.5, "galaxies")
  7092. },
  7093. {
  7094. name: "God",
  7095. height: math.unit(1.5, "universes")
  7096. },
  7097. {
  7098. name: "Chief Execute God",
  7099. height: math.unit(1.5, "multiverses")
  7100. },
  7101. ]
  7102. ))
  7103. characterMakers.push(() => makeCharacter(
  7104. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  7105. {
  7106. front: {
  7107. height: math.unit(6, "feet"),
  7108. weight: math.unit(210, "lbs"),
  7109. name: "Front",
  7110. image: {
  7111. source: "./media/characters/cimmaron/front-sfw.svg",
  7112. extra: 701 / 676,
  7113. bottom: 0.046
  7114. }
  7115. },
  7116. back: {
  7117. height: math.unit(6, "feet"),
  7118. weight: math.unit(210, "lbs"),
  7119. name: "Back",
  7120. image: {
  7121. source: "./media/characters/cimmaron/back-sfw.svg",
  7122. extra: 701 / 676,
  7123. bottom: 0.046
  7124. }
  7125. },
  7126. frontNsfw: {
  7127. height: math.unit(6, "feet"),
  7128. weight: math.unit(210, "lbs"),
  7129. name: "Front (NSFW)",
  7130. image: {
  7131. source: "./media/characters/cimmaron/front-nsfw.svg",
  7132. extra: 701 / 676,
  7133. bottom: 0.046
  7134. }
  7135. },
  7136. backNsfw: {
  7137. height: math.unit(6, "feet"),
  7138. weight: math.unit(210, "lbs"),
  7139. name: "Back (NSFW)",
  7140. image: {
  7141. source: "./media/characters/cimmaron/back-nsfw.svg",
  7142. extra: 701 / 676,
  7143. bottom: 0.046
  7144. }
  7145. },
  7146. dick: {
  7147. height: math.unit(1.714, "feet"),
  7148. name: "Dick",
  7149. image: {
  7150. source: "./media/characters/cimmaron/dick.svg"
  7151. }
  7152. },
  7153. },
  7154. [
  7155. {
  7156. name: "Normal",
  7157. height: math.unit(6, "feet"),
  7158. default: true
  7159. },
  7160. {
  7161. name: "Macro Mayor",
  7162. height: math.unit(350, "meters")
  7163. },
  7164. ]
  7165. ))
  7166. characterMakers.push(() => makeCharacter(
  7167. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  7168. {
  7169. front: {
  7170. height: math.unit(6, "feet"),
  7171. weight: math.unit(200, "lbs"),
  7172. name: "Front",
  7173. image: {
  7174. source: "./media/characters/akari/front.svg",
  7175. extra: 962 / 901,
  7176. bottom: 0.04
  7177. }
  7178. }
  7179. },
  7180. [
  7181. {
  7182. name: "Micro",
  7183. height: math.unit(5, "inches"),
  7184. default: true
  7185. },
  7186. {
  7187. name: "Normal",
  7188. height: math.unit(7, "feet")
  7189. },
  7190. ]
  7191. ))
  7192. characterMakers.push(() => makeCharacter(
  7193. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  7194. {
  7195. front: {
  7196. height: math.unit(6, "feet"),
  7197. weight: math.unit(140, "lbs"),
  7198. name: "Front",
  7199. image: {
  7200. source: "./media/characters/cynosura/front.svg",
  7201. extra: 437/410,
  7202. bottom: 9/446
  7203. }
  7204. },
  7205. back: {
  7206. height: math.unit(6, "feet"),
  7207. weight: math.unit(140, "lbs"),
  7208. name: "Back",
  7209. image: {
  7210. source: "./media/characters/cynosura/back.svg",
  7211. extra: 1304/1160,
  7212. bottom: 71/1375
  7213. }
  7214. },
  7215. },
  7216. [
  7217. {
  7218. name: "Micro",
  7219. height: math.unit(4, "inches")
  7220. },
  7221. {
  7222. name: "Normal",
  7223. height: math.unit(5.75, "feet"),
  7224. default: true
  7225. },
  7226. {
  7227. name: "Tall",
  7228. height: math.unit(10, "feet")
  7229. },
  7230. {
  7231. name: "Big",
  7232. height: math.unit(20, "feet")
  7233. },
  7234. {
  7235. name: "Macro",
  7236. height: math.unit(50, "feet")
  7237. },
  7238. ]
  7239. ))
  7240. characterMakers.push(() => makeCharacter(
  7241. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  7242. {
  7243. front: {
  7244. height: math.unit(13 + 2/12, "feet"),
  7245. weight: math.unit(800, "kg"),
  7246. name: "Front",
  7247. image: {
  7248. source: "./media/characters/gin/front.svg",
  7249. extra: 1312/1191,
  7250. bottom: 45/1357
  7251. }
  7252. },
  7253. mouth: {
  7254. height: math.unit(2.39 * 1.8, "feet"),
  7255. name: "Mouth",
  7256. image: {
  7257. source: "./media/characters/gin/mouth.svg"
  7258. }
  7259. },
  7260. hand: {
  7261. height: math.unit(1.57 * 2.19, "feet"),
  7262. name: "Hand",
  7263. image: {
  7264. source: "./media/characters/gin/hand.svg"
  7265. }
  7266. },
  7267. foot: {
  7268. height: math.unit(6 / 4.25 * 2.19, "feet"),
  7269. name: "Foot",
  7270. image: {
  7271. source: "./media/characters/gin/foot.svg"
  7272. }
  7273. },
  7274. sole: {
  7275. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7276. name: "Sole",
  7277. image: {
  7278. source: "./media/characters/gin/sole.svg"
  7279. }
  7280. },
  7281. },
  7282. [
  7283. {
  7284. name: "Very Small",
  7285. height: math.unit(13 + 2 / 12, "feet")
  7286. },
  7287. {
  7288. name: "Micro",
  7289. height: math.unit(600, "miles")
  7290. },
  7291. {
  7292. name: "Regular",
  7293. height: math.unit(20, "earths"),
  7294. default: true
  7295. },
  7296. {
  7297. name: "Macro",
  7298. height: math.unit(2.2, "solarradii")
  7299. },
  7300. {
  7301. name: "Teramacro",
  7302. height: math.unit(1.2, "galaxies")
  7303. },
  7304. {
  7305. name: "Omegamacro",
  7306. height: math.unit(200, "universes")
  7307. },
  7308. ]
  7309. ))
  7310. characterMakers.push(() => makeCharacter(
  7311. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7312. {
  7313. front: {
  7314. height: math.unit(6 + 1 / 6, "feet"),
  7315. weight: math.unit(178, "lbs"),
  7316. name: "Front",
  7317. image: {
  7318. source: "./media/characters/guy/front.svg"
  7319. }
  7320. }
  7321. },
  7322. [
  7323. {
  7324. name: "Normal",
  7325. height: math.unit(6 + 1 / 6, "feet"),
  7326. default: true
  7327. },
  7328. {
  7329. name: "Large",
  7330. height: math.unit(25 + 7 / 12, "feet")
  7331. },
  7332. {
  7333. name: "Macro",
  7334. height: math.unit(60 + 9 / 12, "feet")
  7335. },
  7336. {
  7337. name: "Macro+",
  7338. height: math.unit(246, "feet")
  7339. },
  7340. {
  7341. name: "Macro++",
  7342. height: math.unit(878, "feet")
  7343. }
  7344. ]
  7345. ))
  7346. characterMakers.push(() => makeCharacter(
  7347. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7348. {
  7349. front: {
  7350. height: math.unit(9, "feet"),
  7351. weight: math.unit(800, "lbs"),
  7352. name: "Front",
  7353. image: {
  7354. source: "./media/characters/tiberius/front.svg",
  7355. extra: 2295 / 2071
  7356. }
  7357. },
  7358. back: {
  7359. height: math.unit(9, "feet"),
  7360. weight: math.unit(800, "lbs"),
  7361. name: "Back",
  7362. image: {
  7363. source: "./media/characters/tiberius/back.svg",
  7364. extra: 2373 / 2160
  7365. }
  7366. },
  7367. },
  7368. [
  7369. {
  7370. name: "Normal",
  7371. height: math.unit(9, "feet"),
  7372. default: true
  7373. }
  7374. ]
  7375. ))
  7376. characterMakers.push(() => makeCharacter(
  7377. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7378. {
  7379. front: {
  7380. height: math.unit(6, "feet"),
  7381. weight: math.unit(600, "lbs"),
  7382. name: "Front",
  7383. image: {
  7384. source: "./media/characters/surgo/front.svg",
  7385. extra: 3591 / 2227
  7386. }
  7387. },
  7388. back: {
  7389. height: math.unit(6, "feet"),
  7390. weight: math.unit(600, "lbs"),
  7391. name: "Back",
  7392. image: {
  7393. source: "./media/characters/surgo/back.svg",
  7394. extra: 3557 / 2228
  7395. }
  7396. },
  7397. laying: {
  7398. height: math.unit(6 * 0.85, "feet"),
  7399. weight: math.unit(600, "lbs"),
  7400. name: "Laying",
  7401. image: {
  7402. source: "./media/characters/surgo/laying.svg"
  7403. }
  7404. },
  7405. },
  7406. [
  7407. {
  7408. name: "Normal",
  7409. height: math.unit(6, "feet"),
  7410. default: true
  7411. }
  7412. ]
  7413. ))
  7414. characterMakers.push(() => makeCharacter(
  7415. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7416. {
  7417. side: {
  7418. height: math.unit(6, "feet"),
  7419. weight: math.unit(150, "lbs"),
  7420. name: "Side",
  7421. image: {
  7422. source: "./media/characters/cibus/side.svg",
  7423. extra: 800 / 400
  7424. }
  7425. },
  7426. },
  7427. [
  7428. {
  7429. name: "Normal",
  7430. height: math.unit(6, "feet"),
  7431. default: true
  7432. }
  7433. ]
  7434. ))
  7435. characterMakers.push(() => makeCharacter(
  7436. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7437. {
  7438. front: {
  7439. height: math.unit(6, "feet"),
  7440. weight: math.unit(240, "lbs"),
  7441. name: "Front",
  7442. image: {
  7443. source: "./media/characters/nibbles/front.svg"
  7444. }
  7445. },
  7446. side: {
  7447. height: math.unit(6, "feet"),
  7448. weight: math.unit(240, "lbs"),
  7449. name: "Side",
  7450. image: {
  7451. source: "./media/characters/nibbles/side.svg"
  7452. }
  7453. },
  7454. },
  7455. [
  7456. {
  7457. name: "Normal",
  7458. height: math.unit(9, "feet"),
  7459. default: true
  7460. }
  7461. ]
  7462. ))
  7463. characterMakers.push(() => makeCharacter(
  7464. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7465. {
  7466. side: {
  7467. height: math.unit(5 + 1 / 6, "feet"),
  7468. weight: math.unit(130, "lbs"),
  7469. name: "Side",
  7470. image: {
  7471. source: "./media/characters/rikky/side.svg",
  7472. extra: 851 / 801
  7473. }
  7474. },
  7475. },
  7476. [
  7477. {
  7478. name: "Normal",
  7479. height: math.unit(5 + 1 / 6, "feet")
  7480. },
  7481. {
  7482. name: "Macro",
  7483. height: math.unit(152, "feet"),
  7484. default: true
  7485. },
  7486. {
  7487. name: "Megamacro",
  7488. height: math.unit(7, "miles")
  7489. }
  7490. ]
  7491. ))
  7492. characterMakers.push(() => makeCharacter(
  7493. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7494. {
  7495. side: {
  7496. height: math.unit(370, "cm"),
  7497. weight: math.unit(350, "lbs"),
  7498. name: "Side",
  7499. image: {
  7500. source: "./media/characters/malfressa/side.svg"
  7501. }
  7502. },
  7503. walking: {
  7504. height: math.unit(370, "cm"),
  7505. weight: math.unit(350, "lbs"),
  7506. name: "Walking",
  7507. image: {
  7508. source: "./media/characters/malfressa/walking.svg"
  7509. }
  7510. },
  7511. feral: {
  7512. height: math.unit(2500, "cm"),
  7513. weight: math.unit(100000, "lbs"),
  7514. name: "Feral",
  7515. image: {
  7516. source: "./media/characters/malfressa/feral.svg",
  7517. extra: 2108 / 837,
  7518. bottom: 0.02
  7519. }
  7520. },
  7521. },
  7522. [
  7523. {
  7524. name: "Normal",
  7525. height: math.unit(370, "cm")
  7526. },
  7527. {
  7528. name: "Macro",
  7529. height: math.unit(300, "meters"),
  7530. default: true
  7531. }
  7532. ]
  7533. ))
  7534. characterMakers.push(() => makeCharacter(
  7535. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7536. {
  7537. front: {
  7538. height: math.unit(6, "feet"),
  7539. weight: math.unit(60, "kg"),
  7540. name: "Front",
  7541. image: {
  7542. source: "./media/characters/jaro/front.svg",
  7543. extra: 845/817,
  7544. bottom: 45/890
  7545. }
  7546. },
  7547. back: {
  7548. height: math.unit(6, "feet"),
  7549. weight: math.unit(60, "kg"),
  7550. name: "Back",
  7551. image: {
  7552. source: "./media/characters/jaro/back.svg",
  7553. extra: 847/817,
  7554. bottom: 34/881
  7555. }
  7556. },
  7557. },
  7558. [
  7559. {
  7560. name: "Micro",
  7561. height: math.unit(7, "inches")
  7562. },
  7563. {
  7564. name: "Normal",
  7565. height: math.unit(5.5, "feet"),
  7566. default: true
  7567. },
  7568. {
  7569. name: "Minimacro",
  7570. height: math.unit(20, "feet")
  7571. },
  7572. {
  7573. name: "Macro",
  7574. height: math.unit(200, "meters")
  7575. }
  7576. ]
  7577. ))
  7578. characterMakers.push(() => makeCharacter(
  7579. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7580. {
  7581. front: {
  7582. height: math.unit(6, "feet"),
  7583. weight: math.unit(195, "lb"),
  7584. name: "Front",
  7585. image: {
  7586. source: "./media/characters/rogue/front.svg"
  7587. }
  7588. },
  7589. },
  7590. [
  7591. {
  7592. name: "Macro",
  7593. height: math.unit(90, "feet"),
  7594. default: true
  7595. },
  7596. ]
  7597. ))
  7598. characterMakers.push(() => makeCharacter(
  7599. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7600. {
  7601. standing: {
  7602. height: math.unit(5 + 8 / 12, "feet"),
  7603. weight: math.unit(140, "lb"),
  7604. name: "Standing",
  7605. image: {
  7606. source: "./media/characters/piper/standing.svg",
  7607. extra: 1440/1284,
  7608. bottom: 66/1506
  7609. }
  7610. },
  7611. running: {
  7612. height: math.unit(5 + 8 / 12, "feet"),
  7613. weight: math.unit(140, "lb"),
  7614. name: "Running",
  7615. image: {
  7616. source: "./media/characters/piper/running.svg",
  7617. extra: 3948/3655,
  7618. bottom: 0/3948
  7619. }
  7620. },
  7621. sole: {
  7622. height: math.unit(0.81, "feet"),
  7623. weight: math.unit(2, "kg"),
  7624. name: "Sole",
  7625. image: {
  7626. source: "./media/characters/piper/sole.svg"
  7627. }
  7628. },
  7629. nipple: {
  7630. height: math.unit(0.25, "feet"),
  7631. weight: math.unit(1.5, "lb"),
  7632. name: "Nipple",
  7633. image: {
  7634. source: "./media/characters/piper/nipple.svg"
  7635. }
  7636. },
  7637. head: {
  7638. height: math.unit(1.1, "feet"),
  7639. name: "Head",
  7640. image: {
  7641. source: "./media/characters/piper/head.svg"
  7642. }
  7643. },
  7644. },
  7645. [
  7646. {
  7647. name: "Micro",
  7648. height: math.unit(2, "inches")
  7649. },
  7650. {
  7651. name: "Normal",
  7652. height: math.unit(5 + 8 / 12, "feet")
  7653. },
  7654. {
  7655. name: "Macro",
  7656. height: math.unit(250, "feet"),
  7657. default: true
  7658. },
  7659. {
  7660. name: "Megamacro",
  7661. height: math.unit(7, "miles")
  7662. },
  7663. ]
  7664. ))
  7665. characterMakers.push(() => makeCharacter(
  7666. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7667. {
  7668. front: {
  7669. height: math.unit(6, "feet"),
  7670. weight: math.unit(220, "lb"),
  7671. name: "Front",
  7672. image: {
  7673. source: "./media/characters/gemini/front.svg"
  7674. }
  7675. },
  7676. back: {
  7677. height: math.unit(6, "feet"),
  7678. weight: math.unit(220, "lb"),
  7679. name: "Back",
  7680. image: {
  7681. source: "./media/characters/gemini/back.svg"
  7682. }
  7683. },
  7684. kneeling: {
  7685. height: math.unit(6 / 1.5, "feet"),
  7686. weight: math.unit(220, "lb"),
  7687. name: "Kneeling",
  7688. image: {
  7689. source: "./media/characters/gemini/kneeling.svg",
  7690. bottom: 0.02
  7691. }
  7692. },
  7693. },
  7694. [
  7695. {
  7696. name: "Macro",
  7697. height: math.unit(300, "meters"),
  7698. default: true
  7699. },
  7700. {
  7701. name: "Megamacro",
  7702. height: math.unit(6900, "meters")
  7703. },
  7704. ]
  7705. ))
  7706. characterMakers.push(() => makeCharacter(
  7707. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7708. {
  7709. anthro: {
  7710. height: math.unit(2.35, "meters"),
  7711. weight: math.unit(73, "kg"),
  7712. name: "Anthro",
  7713. image: {
  7714. source: "./media/characters/alicia/anthro.svg",
  7715. extra: 2571 / 2385,
  7716. bottom: 75 / 2648
  7717. }
  7718. },
  7719. paw: {
  7720. height: math.unit(1.32, "feet"),
  7721. name: "Paw",
  7722. image: {
  7723. source: "./media/characters/alicia/paw.svg"
  7724. }
  7725. },
  7726. feral: {
  7727. height: math.unit(1.69, "meters"),
  7728. weight: math.unit(73, "kg"),
  7729. name: "Feral",
  7730. image: {
  7731. source: "./media/characters/alicia/feral.svg",
  7732. extra: 2123 / 1715,
  7733. bottom: 222 / 2349
  7734. }
  7735. },
  7736. },
  7737. [
  7738. {
  7739. name: "Normal",
  7740. height: math.unit(2.35, "meters")
  7741. },
  7742. {
  7743. name: "Macro",
  7744. height: math.unit(60, "meters"),
  7745. default: true
  7746. },
  7747. {
  7748. name: "Megamacro",
  7749. height: math.unit(10000, "kilometers")
  7750. },
  7751. ]
  7752. ))
  7753. characterMakers.push(() => makeCharacter(
  7754. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7755. {
  7756. front: {
  7757. height: math.unit(7, "feet"),
  7758. weight: math.unit(250, "lbs"),
  7759. name: "Front",
  7760. image: {
  7761. source: "./media/characters/archy/front.svg"
  7762. }
  7763. }
  7764. },
  7765. [
  7766. {
  7767. name: "Micro",
  7768. height: math.unit(1, "inch")
  7769. },
  7770. {
  7771. name: "Shorty",
  7772. height: math.unit(5, "feet")
  7773. },
  7774. {
  7775. name: "Normal",
  7776. height: math.unit(7, "feet")
  7777. },
  7778. {
  7779. name: "Macro",
  7780. height: math.unit(600, "meters"),
  7781. default: true
  7782. },
  7783. {
  7784. name: "Megamacro",
  7785. height: math.unit(1, "mile")
  7786. },
  7787. ]
  7788. ))
  7789. characterMakers.push(() => makeCharacter(
  7790. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7791. {
  7792. front: {
  7793. height: math.unit(1.65, "meters"),
  7794. weight: math.unit(74, "kg"),
  7795. name: "Front",
  7796. image: {
  7797. source: "./media/characters/berri/front.svg",
  7798. extra: 857 / 837,
  7799. bottom: 18 / 877
  7800. }
  7801. },
  7802. bum: {
  7803. height: math.unit(1.46, "feet"),
  7804. name: "Bum",
  7805. image: {
  7806. source: "./media/characters/berri/bum.svg"
  7807. }
  7808. },
  7809. mouth: {
  7810. height: math.unit(0.44, "feet"),
  7811. name: "Mouth",
  7812. image: {
  7813. source: "./media/characters/berri/mouth.svg"
  7814. }
  7815. },
  7816. paw: {
  7817. height: math.unit(0.826, "feet"),
  7818. name: "Paw",
  7819. image: {
  7820. source: "./media/characters/berri/paw.svg"
  7821. }
  7822. },
  7823. },
  7824. [
  7825. {
  7826. name: "Normal",
  7827. height: math.unit(1.65, "meters")
  7828. },
  7829. {
  7830. name: "Macro",
  7831. height: math.unit(60, "m"),
  7832. default: true
  7833. },
  7834. {
  7835. name: "Megamacro",
  7836. height: math.unit(9.213, "km")
  7837. },
  7838. {
  7839. name: "Planet Eater",
  7840. height: math.unit(489, "megameters")
  7841. },
  7842. {
  7843. name: "Teramacro",
  7844. height: math.unit(2471635000000, "meters")
  7845. },
  7846. {
  7847. name: "Examacro",
  7848. height: math.unit(8.0624e+26, "meters")
  7849. }
  7850. ]
  7851. ))
  7852. characterMakers.push(() => makeCharacter(
  7853. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7854. {
  7855. front: {
  7856. height: math.unit(1.72, "meters"),
  7857. weight: math.unit(68, "kg"),
  7858. name: "Front",
  7859. image: {
  7860. source: "./media/characters/lexi/front.svg"
  7861. }
  7862. }
  7863. },
  7864. [
  7865. {
  7866. name: "Very Smol",
  7867. height: math.unit(10, "mm")
  7868. },
  7869. {
  7870. name: "Micro",
  7871. height: math.unit(6.8, "cm"),
  7872. default: true
  7873. },
  7874. {
  7875. name: "Normal",
  7876. height: math.unit(1.72, "m")
  7877. }
  7878. ]
  7879. ))
  7880. characterMakers.push(() => makeCharacter(
  7881. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7882. {
  7883. front: {
  7884. height: math.unit(1.69, "meters"),
  7885. weight: math.unit(68, "kg"),
  7886. name: "Front",
  7887. image: {
  7888. source: "./media/characters/martin/front.svg",
  7889. extra: 596 / 581
  7890. }
  7891. }
  7892. },
  7893. [
  7894. {
  7895. name: "Micro",
  7896. height: math.unit(6.85, "cm"),
  7897. default: true
  7898. },
  7899. {
  7900. name: "Normal",
  7901. height: math.unit(1.69, "m")
  7902. }
  7903. ]
  7904. ))
  7905. characterMakers.push(() => makeCharacter(
  7906. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7907. {
  7908. front: {
  7909. height: math.unit(1.69, "meters"),
  7910. weight: math.unit(68, "kg"),
  7911. name: "Front",
  7912. image: {
  7913. source: "./media/characters/juno/front.svg"
  7914. }
  7915. }
  7916. },
  7917. [
  7918. {
  7919. name: "Micro",
  7920. height: math.unit(7, "cm")
  7921. },
  7922. {
  7923. name: "Normal",
  7924. height: math.unit(1.89, "m")
  7925. },
  7926. {
  7927. name: "Macro",
  7928. height: math.unit(353, "meters"),
  7929. default: true
  7930. }
  7931. ]
  7932. ))
  7933. characterMakers.push(() => makeCharacter(
  7934. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7935. {
  7936. front: {
  7937. height: math.unit(1.93, "meters"),
  7938. weight: math.unit(83, "kg"),
  7939. name: "Front",
  7940. image: {
  7941. source: "./media/characters/samantha/front.svg"
  7942. }
  7943. },
  7944. frontClothed: {
  7945. height: math.unit(1.93, "meters"),
  7946. weight: math.unit(83, "kg"),
  7947. name: "Front (Clothed)",
  7948. image: {
  7949. source: "./media/characters/samantha/front-clothed.svg"
  7950. }
  7951. },
  7952. back: {
  7953. height: math.unit(1.93, "meters"),
  7954. weight: math.unit(83, "kg"),
  7955. name: "Back",
  7956. image: {
  7957. source: "./media/characters/samantha/back.svg"
  7958. }
  7959. },
  7960. },
  7961. [
  7962. {
  7963. name: "Normal",
  7964. height: math.unit(1.93, "m")
  7965. },
  7966. {
  7967. name: "Macro",
  7968. height: math.unit(74, "meters"),
  7969. default: true
  7970. },
  7971. {
  7972. name: "Macro+",
  7973. height: math.unit(223, "meters"),
  7974. },
  7975. {
  7976. name: "Megamacro",
  7977. height: math.unit(8381, "meters"),
  7978. },
  7979. {
  7980. name: "Megamacro+",
  7981. height: math.unit(12000, "kilometers")
  7982. },
  7983. ]
  7984. ))
  7985. characterMakers.push(() => makeCharacter(
  7986. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7987. {
  7988. front: {
  7989. height: math.unit(1.92, "meters"),
  7990. weight: math.unit(80, "kg"),
  7991. name: "Front",
  7992. image: {
  7993. source: "./media/characters/dr-clay/front.svg"
  7994. }
  7995. },
  7996. frontClothed: {
  7997. height: math.unit(1.92, "meters"),
  7998. weight: math.unit(80, "kg"),
  7999. name: "Front (Clothed)",
  8000. image: {
  8001. source: "./media/characters/dr-clay/front-clothed.svg"
  8002. }
  8003. }
  8004. },
  8005. [
  8006. {
  8007. name: "Normal",
  8008. height: math.unit(1.92, "m")
  8009. },
  8010. {
  8011. name: "Macro",
  8012. height: math.unit(214, "meters"),
  8013. default: true
  8014. },
  8015. {
  8016. name: "Macro+",
  8017. height: math.unit(12.237, "meters"),
  8018. },
  8019. {
  8020. name: "Megamacro",
  8021. height: math.unit(557, "megameters"),
  8022. },
  8023. {
  8024. name: "Unimaginable",
  8025. height: math.unit(120e9, "lightyears")
  8026. },
  8027. ]
  8028. ))
  8029. characterMakers.push(() => makeCharacter(
  8030. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  8031. {
  8032. front: {
  8033. height: math.unit(2, "meters"),
  8034. weight: math.unit(80, "kg"),
  8035. name: "Front",
  8036. image: {
  8037. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  8038. }
  8039. }
  8040. },
  8041. [
  8042. {
  8043. name: "Teramacro",
  8044. height: math.unit(500000, "lightyears"),
  8045. default: true
  8046. },
  8047. ]
  8048. ))
  8049. characterMakers.push(() => makeCharacter(
  8050. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  8051. {
  8052. crux: {
  8053. height: math.unit(2, "meters"),
  8054. weight: math.unit(150, "kg"),
  8055. name: "Crux",
  8056. image: {
  8057. source: "./media/characters/vemus/crux.svg",
  8058. extra: 1074/936,
  8059. bottom: 23/1097
  8060. }
  8061. },
  8062. skunkTanuki: {
  8063. height: math.unit(2, "meters"),
  8064. weight: math.unit(150, "kg"),
  8065. name: "Skunk-Tanuki",
  8066. image: {
  8067. source: "./media/characters/vemus/skunk-tanuki.svg",
  8068. extra: 926/893,
  8069. bottom: 20/946
  8070. }
  8071. },
  8072. },
  8073. [
  8074. {
  8075. name: "Normal",
  8076. height: math.unit(4, "meters"),
  8077. default: true
  8078. },
  8079. {
  8080. name: "Big",
  8081. height: math.unit(8, "meters")
  8082. },
  8083. {
  8084. name: "Macro",
  8085. height: math.unit(100, "meters")
  8086. },
  8087. {
  8088. name: "Macro+",
  8089. height: math.unit(1500, "meters")
  8090. },
  8091. {
  8092. name: "Stellar",
  8093. height: math.unit(14e8, "meters")
  8094. },
  8095. ]
  8096. ))
  8097. characterMakers.push(() => makeCharacter(
  8098. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  8099. {
  8100. front: {
  8101. height: math.unit(2, "meters"),
  8102. weight: math.unit(70, "kg"),
  8103. name: "Front",
  8104. image: {
  8105. source: "./media/characters/beherit/front.svg",
  8106. extra: 1234/1109,
  8107. bottom: 55/1289
  8108. }
  8109. }
  8110. },
  8111. [
  8112. {
  8113. name: "Normal",
  8114. height: math.unit(6, "feet")
  8115. },
  8116. {
  8117. name: "Lorg",
  8118. height: math.unit(25, "feet"),
  8119. default: true
  8120. },
  8121. {
  8122. name: "Lorger",
  8123. height: math.unit(75, "feet")
  8124. },
  8125. {
  8126. name: "Macro",
  8127. height: math.unit(200, "meters")
  8128. },
  8129. ]
  8130. ))
  8131. characterMakers.push(() => makeCharacter(
  8132. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  8133. {
  8134. front: {
  8135. height: math.unit(2, "meters"),
  8136. weight: math.unit(150, "kg"),
  8137. name: "Front",
  8138. image: {
  8139. source: "./media/characters/everett/front.svg",
  8140. extra: 1017/866,
  8141. bottom: 86/1103
  8142. }
  8143. },
  8144. paw: {
  8145. height: math.unit(2 / 3.6, "meters"),
  8146. name: "Paw",
  8147. image: {
  8148. source: "./media/characters/everett/paw.svg"
  8149. }
  8150. },
  8151. },
  8152. [
  8153. {
  8154. name: "Normal",
  8155. height: math.unit(15, "feet"),
  8156. default: true
  8157. },
  8158. {
  8159. name: "Lorg",
  8160. height: math.unit(70, "feet"),
  8161. default: true
  8162. },
  8163. {
  8164. name: "Lorger",
  8165. height: math.unit(250, "feet")
  8166. },
  8167. {
  8168. name: "Macro",
  8169. height: math.unit(500, "meters")
  8170. },
  8171. ]
  8172. ))
  8173. characterMakers.push(() => makeCharacter(
  8174. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  8175. {
  8176. front: {
  8177. height: math.unit(2, "meters"),
  8178. weight: math.unit(86, "kg"),
  8179. name: "Front",
  8180. image: {
  8181. source: "./media/characters/rose/front.svg",
  8182. extra: 1785/1636,
  8183. bottom: 30/1815
  8184. },
  8185. form: "liom",
  8186. default: true
  8187. },
  8188. frontSporty: {
  8189. height: math.unit(2, "meters"),
  8190. weight: math.unit(86, "kg"),
  8191. name: "Front (Sporty)",
  8192. image: {
  8193. source: "./media/characters/rose/front-sporty.svg",
  8194. extra: 350/335,
  8195. bottom: 10/360
  8196. },
  8197. form: "liom"
  8198. },
  8199. frontAlt: {
  8200. height: math.unit(1.6, "meters"),
  8201. weight: math.unit(86, "kg"),
  8202. name: "Front (Alt)",
  8203. image: {
  8204. source: "./media/characters/rose/front-alt.svg",
  8205. extra: 299/283,
  8206. bottom: 3/302
  8207. },
  8208. form: "liom"
  8209. },
  8210. plush: {
  8211. height: math.unit(2, "meters"),
  8212. weight: math.unit(86/3, "kg"),
  8213. name: "Plush",
  8214. image: {
  8215. source: "./media/characters/rose/plush.svg",
  8216. extra: 361/337,
  8217. bottom: 11/372
  8218. },
  8219. form: "plush",
  8220. default: true
  8221. },
  8222. faeStanding: {
  8223. height: math.unit(10, "cm"),
  8224. weight: math.unit(10, "grams"),
  8225. name: "Standing",
  8226. image: {
  8227. source: "./media/characters/rose/fae-standing.svg",
  8228. extra: 1189/1060,
  8229. bottom: 27/1216
  8230. },
  8231. form: "fae",
  8232. default: true
  8233. },
  8234. faeSitting: {
  8235. height: math.unit(5, "cm"),
  8236. weight: math.unit(10, "grams"),
  8237. name: "Sitting",
  8238. image: {
  8239. source: "./media/characters/rose/fae-sitting.svg",
  8240. extra: 737/577,
  8241. bottom: 356/1093
  8242. },
  8243. form: "fae"
  8244. },
  8245. faePaw: {
  8246. height: math.unit(1.35, "cm"),
  8247. name: "Paw",
  8248. image: {
  8249. source: "./media/characters/rose/fae-paw.svg"
  8250. },
  8251. form: "fae"
  8252. },
  8253. },
  8254. [
  8255. {
  8256. name: "True Micro",
  8257. height: math.unit(9, "cm"),
  8258. form: "liom"
  8259. },
  8260. {
  8261. name: "Micro",
  8262. height: math.unit(16, "cm"),
  8263. form: "liom"
  8264. },
  8265. {
  8266. name: "Normal",
  8267. height: math.unit(1.85, "meters"),
  8268. default: true,
  8269. form: "liom"
  8270. },
  8271. {
  8272. name: "Mini-Macro",
  8273. height: math.unit(5, "meters"),
  8274. form: "liom"
  8275. },
  8276. {
  8277. name: "Macro",
  8278. height: math.unit(15, "meters"),
  8279. form: "liom"
  8280. },
  8281. {
  8282. name: "True Macro",
  8283. height: math.unit(40, "meters"),
  8284. form: "liom"
  8285. },
  8286. {
  8287. name: "City Scale",
  8288. height: math.unit(1, "km"),
  8289. form: "liom"
  8290. },
  8291. {
  8292. name: "Plushie",
  8293. height: math.unit(9, "cm"),
  8294. form: "plush",
  8295. default: true
  8296. },
  8297. {
  8298. name: "Fae",
  8299. height: math.unit(10, "cm"),
  8300. form: "fae",
  8301. default: true
  8302. },
  8303. ],
  8304. {
  8305. "liom": {
  8306. name: "Liom"
  8307. },
  8308. "plush": {
  8309. name: "Plush"
  8310. },
  8311. "fae": {
  8312. name: "Fae Fox",
  8313. default: true
  8314. }
  8315. }
  8316. ))
  8317. characterMakers.push(() => makeCharacter(
  8318. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8319. {
  8320. front: {
  8321. height: math.unit(2, "meters"),
  8322. weight: math.unit(350, "lbs"),
  8323. name: "Front",
  8324. image: {
  8325. source: "./media/characters/regal/front.svg"
  8326. }
  8327. },
  8328. back: {
  8329. height: math.unit(2, "meters"),
  8330. weight: math.unit(350, "lbs"),
  8331. name: "Back",
  8332. image: {
  8333. source: "./media/characters/regal/back.svg"
  8334. }
  8335. },
  8336. },
  8337. [
  8338. {
  8339. name: "Macro",
  8340. height: math.unit(350, "feet"),
  8341. default: true
  8342. }
  8343. ]
  8344. ))
  8345. characterMakers.push(() => makeCharacter(
  8346. { name: "Opal", species: ["rabbit", "deity"], tags: ["anthro"] },
  8347. {
  8348. standing: {
  8349. height: math.unit(4 + 11/12, "feet"),
  8350. weight: math.unit(100, "lb"),
  8351. name: "Standing",
  8352. image: {
  8353. source: "./media/characters/opal/standing.svg",
  8354. extra: 1588/1513,
  8355. bottom: 23/1611
  8356. }
  8357. },
  8358. sitting: {
  8359. height: math.unit(2.3, "feet"),
  8360. weight: math.unit(100, "lb"),
  8361. name: "Sitting",
  8362. image: {
  8363. source: "./media/characters/opal/sitting.svg",
  8364. extra: 1031/892,
  8365. bottom: 142/1173
  8366. }
  8367. },
  8368. hand: {
  8369. height: math.unit(0.59, "feet"),
  8370. name: "Hand",
  8371. image: {
  8372. source: "./media/characters/opal/hand.svg"
  8373. }
  8374. },
  8375. foot: {
  8376. height: math.unit(0.61, "feet"),
  8377. name: "Foot",
  8378. image: {
  8379. source: "./media/characters/opal/foot.svg"
  8380. }
  8381. },
  8382. },
  8383. [
  8384. {
  8385. name: "Small",
  8386. height: math.unit(4 + 11 / 12, "feet")
  8387. },
  8388. {
  8389. name: "Normal",
  8390. height: math.unit(20, "feet"),
  8391. default: true
  8392. },
  8393. {
  8394. name: "Macro",
  8395. height: math.unit(120, "feet")
  8396. },
  8397. {
  8398. name: "Megamacro",
  8399. height: math.unit(80, "miles")
  8400. },
  8401. {
  8402. name: "True Size",
  8403. height: math.unit(100000, "lightyears")
  8404. },
  8405. ]
  8406. ))
  8407. characterMakers.push(() => makeCharacter(
  8408. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8409. {
  8410. front: {
  8411. height: math.unit(6, "feet"),
  8412. weight: math.unit(200, "lbs"),
  8413. name: "Front",
  8414. image: {
  8415. source: "./media/characters/vector-wuff/front.svg"
  8416. }
  8417. }
  8418. },
  8419. [
  8420. {
  8421. name: "Normal",
  8422. height: math.unit(2.8, "meters")
  8423. },
  8424. {
  8425. name: "Macro",
  8426. height: math.unit(450, "meters"),
  8427. default: true
  8428. },
  8429. {
  8430. name: "Megamacro",
  8431. height: math.unit(15, "kilometers")
  8432. }
  8433. ]
  8434. ))
  8435. characterMakers.push(() => makeCharacter(
  8436. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8437. {
  8438. front: {
  8439. height: math.unit(6, "feet"),
  8440. weight: math.unit(256, "lbs"),
  8441. name: "Front",
  8442. image: {
  8443. source: "./media/characters/dannik/front.svg"
  8444. }
  8445. }
  8446. },
  8447. [
  8448. {
  8449. name: "Macro",
  8450. height: math.unit(69.57, "meters"),
  8451. default: true
  8452. },
  8453. ]
  8454. ))
  8455. characterMakers.push(() => makeCharacter(
  8456. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8457. {
  8458. front: {
  8459. height: math.unit(6, "feet"),
  8460. weight: math.unit(120, "lbs"),
  8461. name: "Front",
  8462. image: {
  8463. source: "./media/characters/azura-saharah/front.svg"
  8464. }
  8465. },
  8466. back: {
  8467. height: math.unit(6, "feet"),
  8468. weight: math.unit(120, "lbs"),
  8469. name: "Back",
  8470. image: {
  8471. source: "./media/characters/azura-saharah/back.svg"
  8472. }
  8473. },
  8474. },
  8475. [
  8476. {
  8477. name: "Macro",
  8478. height: math.unit(100, "feet"),
  8479. default: true
  8480. },
  8481. ]
  8482. ))
  8483. characterMakers.push(() => makeCharacter(
  8484. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8485. {
  8486. side: {
  8487. height: math.unit(5 + 4 / 12, "feet"),
  8488. weight: math.unit(163, "lbs"),
  8489. name: "Side",
  8490. image: {
  8491. source: "./media/characters/kennedy/side.svg"
  8492. }
  8493. }
  8494. },
  8495. [
  8496. {
  8497. name: "Standard Doggo",
  8498. height: math.unit(5 + 4 / 12, "feet")
  8499. },
  8500. {
  8501. name: "Big Doggo",
  8502. height: math.unit(25 + 3 / 12, "feet"),
  8503. default: true
  8504. },
  8505. ]
  8506. ))
  8507. characterMakers.push(() => makeCharacter(
  8508. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8509. {
  8510. front: {
  8511. height: math.unit(5 + 5/12, "feet"),
  8512. weight: math.unit(100, "lbs"),
  8513. name: "Front",
  8514. image: {
  8515. source: "./media/characters/odios-de-lunar/front.svg",
  8516. extra: 1468/1323,
  8517. bottom: 22/1490
  8518. }
  8519. }
  8520. },
  8521. [
  8522. {
  8523. name: "Micro",
  8524. height: math.unit(3, "inches")
  8525. },
  8526. {
  8527. name: "Normal",
  8528. height: math.unit(5.5, "feet"),
  8529. default: true
  8530. },
  8531. {
  8532. name: "Macro",
  8533. height: math.unit(100, "feet")
  8534. },
  8535. ]
  8536. ))
  8537. characterMakers.push(() => makeCharacter(
  8538. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8539. {
  8540. back: {
  8541. height: math.unit(6, "feet"),
  8542. weight: math.unit(220, "lbs"),
  8543. name: "Back",
  8544. image: {
  8545. source: "./media/characters/mandake/back.svg"
  8546. }
  8547. }
  8548. },
  8549. [
  8550. {
  8551. name: "Normal",
  8552. height: math.unit(7, "feet"),
  8553. default: true
  8554. },
  8555. {
  8556. name: "Macro",
  8557. height: math.unit(78, "feet")
  8558. },
  8559. {
  8560. name: "Macro+",
  8561. height: math.unit(300, "meters")
  8562. },
  8563. {
  8564. name: "Macro++",
  8565. height: math.unit(2400, "feet")
  8566. },
  8567. {
  8568. name: "Megamacro",
  8569. height: math.unit(5167, "meters")
  8570. },
  8571. {
  8572. name: "Gigamacro",
  8573. height: math.unit(41769, "miles")
  8574. },
  8575. ]
  8576. ))
  8577. characterMakers.push(() => makeCharacter(
  8578. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8579. {
  8580. front: {
  8581. height: math.unit(6, "feet"),
  8582. weight: math.unit(120, "lbs"),
  8583. name: "Front",
  8584. image: {
  8585. source: "./media/characters/yozey/front.svg"
  8586. }
  8587. },
  8588. frontAlt: {
  8589. height: math.unit(6, "feet"),
  8590. weight: math.unit(120, "lbs"),
  8591. name: "Front (Alt)",
  8592. image: {
  8593. source: "./media/characters/yozey/front-alt.svg"
  8594. }
  8595. },
  8596. side: {
  8597. height: math.unit(6, "feet"),
  8598. weight: math.unit(120, "lbs"),
  8599. name: "Side",
  8600. image: {
  8601. source: "./media/characters/yozey/side.svg"
  8602. }
  8603. },
  8604. },
  8605. [
  8606. {
  8607. name: "Micro",
  8608. height: math.unit(3, "inches"),
  8609. default: true
  8610. },
  8611. {
  8612. name: "Normal",
  8613. height: math.unit(6, "feet")
  8614. }
  8615. ]
  8616. ))
  8617. characterMakers.push(() => makeCharacter(
  8618. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8619. {
  8620. front: {
  8621. height: math.unit(6, "feet"),
  8622. weight: math.unit(103, "lbs"),
  8623. name: "Front",
  8624. image: {
  8625. source: "./media/characters/valeska-voss/front.svg"
  8626. }
  8627. }
  8628. },
  8629. [
  8630. {
  8631. name: "Mini-Sized Sub",
  8632. height: math.unit(3.1, "inches")
  8633. },
  8634. {
  8635. name: "Mid-Sized Sub",
  8636. height: math.unit(6.2, "inches")
  8637. },
  8638. {
  8639. name: "Full-Sized Sub",
  8640. height: math.unit(9.3, "inches")
  8641. },
  8642. {
  8643. name: "Normal",
  8644. height: math.unit(5 + 2 / 12, "foot"),
  8645. default: true
  8646. },
  8647. ]
  8648. ))
  8649. characterMakers.push(() => makeCharacter(
  8650. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8651. {
  8652. front: {
  8653. height: math.unit(6, "feet"),
  8654. weight: math.unit(160, "lbs"),
  8655. name: "Front",
  8656. image: {
  8657. source: "./media/characters/gene-zeta/front.svg",
  8658. extra: 3006 / 2826,
  8659. bottom: 182 / 3188
  8660. }
  8661. }
  8662. },
  8663. [
  8664. {
  8665. name: "Micro",
  8666. height: math.unit(6, "inches")
  8667. },
  8668. {
  8669. name: "Normal",
  8670. height: math.unit(5 + 11 / 12, "foot"),
  8671. default: true
  8672. },
  8673. {
  8674. name: "Macro",
  8675. height: math.unit(140, "feet")
  8676. },
  8677. {
  8678. name: "Supercharged",
  8679. height: math.unit(2500, "feet")
  8680. },
  8681. ]
  8682. ))
  8683. characterMakers.push(() => makeCharacter(
  8684. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8685. {
  8686. front: {
  8687. height: math.unit(6, "feet"),
  8688. weight: math.unit(350, "lbs"),
  8689. name: "Front",
  8690. image: {
  8691. source: "./media/characters/razinox/front.svg",
  8692. extra: 1686 / 1548,
  8693. bottom: 28.2 / 1868
  8694. }
  8695. },
  8696. back: {
  8697. height: math.unit(6, "feet"),
  8698. weight: math.unit(350, "lbs"),
  8699. name: "Back",
  8700. image: {
  8701. source: "./media/characters/razinox/back.svg",
  8702. extra: 1660 / 1590,
  8703. bottom: 15 / 1665
  8704. }
  8705. },
  8706. },
  8707. [
  8708. {
  8709. name: "Normal",
  8710. height: math.unit(10 + 8 / 12, "foot")
  8711. },
  8712. {
  8713. name: "Minimacro",
  8714. height: math.unit(15, "foot")
  8715. },
  8716. {
  8717. name: "Macro",
  8718. height: math.unit(60, "foot"),
  8719. default: true
  8720. },
  8721. {
  8722. name: "Megamacro",
  8723. height: math.unit(5, "miles")
  8724. },
  8725. {
  8726. name: "Gigamacro",
  8727. height: math.unit(6000, "miles")
  8728. },
  8729. ]
  8730. ))
  8731. characterMakers.push(() => makeCharacter(
  8732. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8733. {
  8734. front: {
  8735. height: math.unit(6, "feet"),
  8736. weight: math.unit(150, "lbs"),
  8737. name: "Front",
  8738. image: {
  8739. source: "./media/characters/cobalt/front.svg"
  8740. }
  8741. }
  8742. },
  8743. [
  8744. {
  8745. name: "Normal",
  8746. height: math.unit(8 + 1 / 12, "foot")
  8747. },
  8748. {
  8749. name: "Macro",
  8750. height: math.unit(111, "foot"),
  8751. default: true
  8752. },
  8753. {
  8754. name: "Supracosmic",
  8755. height: math.unit(1e42, "feet")
  8756. },
  8757. ]
  8758. ))
  8759. characterMakers.push(() => makeCharacter(
  8760. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8761. {
  8762. front: {
  8763. height: math.unit(5, "inches"),
  8764. name: "Front",
  8765. image: {
  8766. source: "./media/characters/amanda/front.svg",
  8767. extra: 926/791,
  8768. bottom: 38/964
  8769. }
  8770. },
  8771. back: {
  8772. height: math.unit(5, "inches"),
  8773. name: "Back",
  8774. image: {
  8775. source: "./media/characters/amanda/back.svg",
  8776. extra: 909/805,
  8777. bottom: 43/952
  8778. }
  8779. },
  8780. },
  8781. [
  8782. {
  8783. name: "Micro",
  8784. height: math.unit(5, "inches"),
  8785. default: true
  8786. },
  8787. ]
  8788. ))
  8789. characterMakers.push(() => makeCharacter(
  8790. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8791. {
  8792. front: {
  8793. height: math.unit(2.75, "meters"),
  8794. weight: math.unit(1200, "lb"),
  8795. name: "Front",
  8796. image: {
  8797. source: "./media/characters/teal/front.svg",
  8798. extra: 2463 / 2320,
  8799. bottom: 166 / 2629
  8800. }
  8801. },
  8802. back: {
  8803. height: math.unit(2.75, "meters"),
  8804. weight: math.unit(1200, "lb"),
  8805. name: "Back",
  8806. image: {
  8807. source: "./media/characters/teal/back.svg",
  8808. extra: 2580 / 2489,
  8809. bottom: 151 / 2731
  8810. }
  8811. },
  8812. sitting: {
  8813. height: math.unit(1.9, "meters"),
  8814. weight: math.unit(1200, "lb"),
  8815. name: "Sitting",
  8816. image: {
  8817. source: "./media/characters/teal/sitting.svg",
  8818. extra: 623 / 590,
  8819. bottom: 121 / 744
  8820. }
  8821. },
  8822. standing: {
  8823. height: math.unit(2.75, "meters"),
  8824. weight: math.unit(1200, "lb"),
  8825. name: "Standing",
  8826. image: {
  8827. source: "./media/characters/teal/standing.svg",
  8828. extra: 923 / 893,
  8829. bottom: 60 / 983
  8830. }
  8831. },
  8832. stretching: {
  8833. height: math.unit(3.65, "meters"),
  8834. weight: math.unit(1200, "lb"),
  8835. name: "Stretching",
  8836. image: {
  8837. source: "./media/characters/teal/stretching.svg",
  8838. extra: 1276 / 1244,
  8839. bottom: 0 / 1276
  8840. }
  8841. },
  8842. legged: {
  8843. height: math.unit(1.3, "meters"),
  8844. weight: math.unit(100, "lb"),
  8845. name: "Legged",
  8846. image: {
  8847. source: "./media/characters/teal/legged.svg",
  8848. extra: 462 / 437,
  8849. bottom: 24 / 486
  8850. }
  8851. },
  8852. naga: {
  8853. height: math.unit(5.4, "meters"),
  8854. weight: math.unit(4000, "lb"),
  8855. name: "Naga",
  8856. image: {
  8857. source: "./media/characters/teal/naga.svg",
  8858. extra: 1902 / 1858,
  8859. bottom: 0 / 1902
  8860. }
  8861. },
  8862. hand: {
  8863. height: math.unit(0.52, "meters"),
  8864. name: "Hand",
  8865. image: {
  8866. source: "./media/characters/teal/hand.svg"
  8867. }
  8868. },
  8869. maw: {
  8870. height: math.unit(0.43, "meters"),
  8871. name: "Maw",
  8872. image: {
  8873. source: "./media/characters/teal/maw.svg"
  8874. }
  8875. },
  8876. slit: {
  8877. height: math.unit(0.25, "meters"),
  8878. name: "Slit",
  8879. image: {
  8880. source: "./media/characters/teal/slit.svg"
  8881. }
  8882. },
  8883. },
  8884. [
  8885. {
  8886. name: "Normal",
  8887. height: math.unit(2.75, "meters"),
  8888. default: true
  8889. },
  8890. {
  8891. name: "Macro",
  8892. height: math.unit(300, "feet")
  8893. },
  8894. {
  8895. name: "Macro+",
  8896. height: math.unit(2000, "feet")
  8897. },
  8898. ]
  8899. ))
  8900. characterMakers.push(() => makeCharacter(
  8901. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8902. {
  8903. frontCat: {
  8904. height: math.unit(6, "feet"),
  8905. weight: math.unit(180, "lbs"),
  8906. name: "Front (Cat)",
  8907. image: {
  8908. source: "./media/characters/ravin-amulet/front-cat.svg"
  8909. }
  8910. },
  8911. frontCatAlt: {
  8912. height: math.unit(6, "feet"),
  8913. weight: math.unit(180, "lbs"),
  8914. name: "Front (Alt, Cat)",
  8915. image: {
  8916. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8917. }
  8918. },
  8919. frontWerewolf: {
  8920. height: math.unit(6 * 1.2, "feet"),
  8921. weight: math.unit(225, "lbs"),
  8922. name: "Front (Werewolf)",
  8923. image: {
  8924. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8925. }
  8926. },
  8927. backWerewolf: {
  8928. height: math.unit(6 * 1.2, "feet"),
  8929. weight: math.unit(225, "lbs"),
  8930. name: "Back (Werewolf)",
  8931. image: {
  8932. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8933. }
  8934. },
  8935. },
  8936. [
  8937. {
  8938. name: "Nano",
  8939. height: math.unit(1, "micrometer")
  8940. },
  8941. {
  8942. name: "Micro",
  8943. height: math.unit(1, "inch")
  8944. },
  8945. {
  8946. name: "Normal",
  8947. height: math.unit(6, "feet"),
  8948. default: true
  8949. },
  8950. {
  8951. name: "Macro",
  8952. height: math.unit(60, "feet")
  8953. }
  8954. ]
  8955. ))
  8956. characterMakers.push(() => makeCharacter(
  8957. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8958. {
  8959. front: {
  8960. height: math.unit(6, "feet"),
  8961. weight: math.unit(165, "lbs"),
  8962. name: "Front",
  8963. image: {
  8964. source: "./media/characters/fluoresce/front.svg"
  8965. }
  8966. }
  8967. },
  8968. [
  8969. {
  8970. name: "Micro",
  8971. height: math.unit(6, "cm")
  8972. },
  8973. {
  8974. name: "Normal",
  8975. height: math.unit(5 + 7 / 12, "feet"),
  8976. default: true
  8977. },
  8978. {
  8979. name: "Macro",
  8980. height: math.unit(56, "feet")
  8981. },
  8982. {
  8983. name: "Megamacro",
  8984. height: math.unit(1.9, "miles")
  8985. },
  8986. ]
  8987. ))
  8988. characterMakers.push(() => makeCharacter(
  8989. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8990. {
  8991. front: {
  8992. height: math.unit(9 + 6 / 12, "feet"),
  8993. weight: math.unit(523, "lbs"),
  8994. name: "Side",
  8995. image: {
  8996. source: "./media/characters/aurora/side.svg",
  8997. extra: 474/393,
  8998. bottom: 5/479
  8999. }
  9000. }
  9001. },
  9002. [
  9003. {
  9004. name: "Normal",
  9005. height: math.unit(9 + 6 / 12, "feet")
  9006. },
  9007. {
  9008. name: "Macro",
  9009. height: math.unit(96, "feet"),
  9010. default: true
  9011. },
  9012. {
  9013. name: "Macro+",
  9014. height: math.unit(243, "feet")
  9015. },
  9016. ]
  9017. ))
  9018. characterMakers.push(() => makeCharacter(
  9019. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  9020. {
  9021. front: {
  9022. height: math.unit(194, "cm"),
  9023. weight: math.unit(90, "kg"),
  9024. name: "Front",
  9025. image: {
  9026. source: "./media/characters/ranek/front.svg",
  9027. extra: 1862/1791,
  9028. bottom: 80/1942
  9029. }
  9030. },
  9031. back: {
  9032. height: math.unit(194, "cm"),
  9033. weight: math.unit(90, "kg"),
  9034. name: "Back",
  9035. image: {
  9036. source: "./media/characters/ranek/back.svg",
  9037. extra: 1853/1787,
  9038. bottom: 74/1927
  9039. }
  9040. },
  9041. feral: {
  9042. height: math.unit(30, "cm"),
  9043. weight: math.unit(1.6, "lbs"),
  9044. name: "Feral",
  9045. image: {
  9046. source: "./media/characters/ranek/feral.svg",
  9047. extra: 990/631,
  9048. bottom: 29/1019
  9049. }
  9050. },
  9051. },
  9052. [
  9053. {
  9054. name: "Normal",
  9055. height: math.unit(194, "cm"),
  9056. default: true
  9057. },
  9058. {
  9059. name: "Macro",
  9060. height: math.unit(100, "meters")
  9061. },
  9062. ]
  9063. ))
  9064. characterMakers.push(() => makeCharacter(
  9065. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  9066. {
  9067. front: {
  9068. height: math.unit(5 + 6 / 12, "feet"),
  9069. weight: math.unit(153, "lbs"),
  9070. name: "Front",
  9071. image: {
  9072. source: "./media/characters/andrew-cooper/front.svg"
  9073. }
  9074. },
  9075. },
  9076. [
  9077. {
  9078. name: "Nano",
  9079. height: math.unit(1, "mm")
  9080. },
  9081. {
  9082. name: "Micro",
  9083. height: math.unit(2, "inches")
  9084. },
  9085. {
  9086. name: "Normal",
  9087. height: math.unit(5 + 6 / 12, "feet"),
  9088. default: true
  9089. }
  9090. ]
  9091. ))
  9092. characterMakers.push(() => makeCharacter(
  9093. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  9094. {
  9095. front: {
  9096. height: math.unit(6, "feet"),
  9097. weight: math.unit(180, "lbs"),
  9098. name: "Front",
  9099. image: {
  9100. source: "./media/characters/akane-sato/front.svg",
  9101. extra: 1219 / 1140
  9102. }
  9103. },
  9104. back: {
  9105. height: math.unit(6, "feet"),
  9106. weight: math.unit(180, "lbs"),
  9107. name: "Back",
  9108. image: {
  9109. source: "./media/characters/akane-sato/back.svg",
  9110. extra: 1219 / 1170
  9111. }
  9112. },
  9113. },
  9114. [
  9115. {
  9116. name: "Normal",
  9117. height: math.unit(2.5, "meters")
  9118. },
  9119. {
  9120. name: "Macro",
  9121. height: math.unit(250, "meters"),
  9122. default: true
  9123. },
  9124. {
  9125. name: "Megamacro",
  9126. height: math.unit(25, "km")
  9127. },
  9128. ]
  9129. ))
  9130. characterMakers.push(() => makeCharacter(
  9131. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  9132. {
  9133. front: {
  9134. height: math.unit(6, "feet"),
  9135. weight: math.unit(65, "kg"),
  9136. name: "Front",
  9137. image: {
  9138. source: "./media/characters/rook/front.svg",
  9139. extra: 960 / 950
  9140. }
  9141. }
  9142. },
  9143. [
  9144. {
  9145. name: "Normal",
  9146. height: math.unit(8.8, "feet")
  9147. },
  9148. {
  9149. name: "Macro",
  9150. height: math.unit(88, "feet"),
  9151. default: true
  9152. },
  9153. {
  9154. name: "Megamacro",
  9155. height: math.unit(8, "miles")
  9156. },
  9157. ]
  9158. ))
  9159. characterMakers.push(() => makeCharacter(
  9160. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  9161. {
  9162. front: {
  9163. height: math.unit(12 + 2 / 12, "feet"),
  9164. weight: math.unit(808, "lbs"),
  9165. name: "Front",
  9166. image: {
  9167. source: "./media/characters/prodigy/front.svg"
  9168. }
  9169. }
  9170. },
  9171. [
  9172. {
  9173. name: "Normal",
  9174. height: math.unit(12 + 2 / 12, "feet"),
  9175. default: true
  9176. },
  9177. {
  9178. name: "Macro",
  9179. height: math.unit(143, "feet")
  9180. },
  9181. {
  9182. name: "Macro+",
  9183. height: math.unit(400, "feet")
  9184. },
  9185. ]
  9186. ))
  9187. characterMakers.push(() => makeCharacter(
  9188. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  9189. {
  9190. front: {
  9191. height: math.unit(6, "feet"),
  9192. weight: math.unit(225, "lbs"),
  9193. name: "Front",
  9194. image: {
  9195. source: "./media/characters/daniel/front.svg"
  9196. }
  9197. },
  9198. leaning: {
  9199. height: math.unit(6, "feet"),
  9200. weight: math.unit(225, "lbs"),
  9201. name: "Leaning",
  9202. image: {
  9203. source: "./media/characters/daniel/leaning.svg"
  9204. }
  9205. },
  9206. },
  9207. [
  9208. {
  9209. name: "Macro",
  9210. height: math.unit(1000, "feet"),
  9211. default: true
  9212. },
  9213. ]
  9214. ))
  9215. characterMakers.push(() => makeCharacter(
  9216. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  9217. {
  9218. front: {
  9219. height: math.unit(6, "feet"),
  9220. weight: math.unit(88, "lbs"),
  9221. name: "Front",
  9222. image: {
  9223. source: "./media/characters/chiros/front.svg",
  9224. extra: 306 / 226
  9225. }
  9226. },
  9227. side: {
  9228. height: math.unit(6, "feet"),
  9229. weight: math.unit(88, "lbs"),
  9230. name: "Side",
  9231. image: {
  9232. source: "./media/characters/chiros/side.svg",
  9233. extra: 306 / 226
  9234. }
  9235. },
  9236. },
  9237. [
  9238. {
  9239. name: "Normal",
  9240. height: math.unit(6, "cm"),
  9241. default: true
  9242. },
  9243. ]
  9244. ))
  9245. characterMakers.push(() => makeCharacter(
  9246. { name: "Selka", species: ["snake"], tags: ["naga"] },
  9247. {
  9248. front: {
  9249. height: math.unit(6, "feet"),
  9250. weight: math.unit(100, "lbs"),
  9251. name: "Front",
  9252. image: {
  9253. source: "./media/characters/selka/front.svg",
  9254. extra: 947 / 887
  9255. }
  9256. }
  9257. },
  9258. [
  9259. {
  9260. name: "Normal",
  9261. height: math.unit(5, "cm"),
  9262. default: true
  9263. },
  9264. ]
  9265. ))
  9266. characterMakers.push(() => makeCharacter(
  9267. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  9268. {
  9269. front: {
  9270. height: math.unit(8 + 3 / 12, "feet"),
  9271. weight: math.unit(424, "lbs"),
  9272. name: "Front",
  9273. image: {
  9274. source: "./media/characters/verin/front.svg",
  9275. extra: 1845 / 1550
  9276. }
  9277. },
  9278. frontArmored: {
  9279. height: math.unit(8 + 3 / 12, "feet"),
  9280. weight: math.unit(424, "lbs"),
  9281. name: "Front (Armored)",
  9282. image: {
  9283. source: "./media/characters/verin/front-armor.svg",
  9284. extra: 1845 / 1550,
  9285. bottom: 0.01
  9286. }
  9287. },
  9288. back: {
  9289. height: math.unit(8 + 3 / 12, "feet"),
  9290. weight: math.unit(424, "lbs"),
  9291. name: "Back",
  9292. image: {
  9293. source: "./media/characters/verin/back.svg",
  9294. bottom: 0.1,
  9295. extra: 1
  9296. }
  9297. },
  9298. foot: {
  9299. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9300. name: "Foot",
  9301. image: {
  9302. source: "./media/characters/verin/foot.svg"
  9303. }
  9304. },
  9305. },
  9306. [
  9307. {
  9308. name: "Normal",
  9309. height: math.unit(8 + 3 / 12, "feet")
  9310. },
  9311. {
  9312. name: "Minimacro",
  9313. height: math.unit(21, "feet"),
  9314. default: true
  9315. },
  9316. {
  9317. name: "Macro",
  9318. height: math.unit(626, "feet")
  9319. },
  9320. ]
  9321. ))
  9322. characterMakers.push(() => makeCharacter(
  9323. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9324. {
  9325. front: {
  9326. height: math.unit(2.718, "meters"),
  9327. weight: math.unit(150, "lbs"),
  9328. name: "Front",
  9329. image: {
  9330. source: "./media/characters/sovrim-terraquian/front.svg",
  9331. extra: 1752/1689,
  9332. bottom: 36/1788
  9333. }
  9334. },
  9335. back: {
  9336. height: math.unit(2.718, "meters"),
  9337. weight: math.unit(150, "lbs"),
  9338. name: "Back",
  9339. image: {
  9340. source: "./media/characters/sovrim-terraquian/back.svg",
  9341. extra: 1698/1657,
  9342. bottom: 58/1756
  9343. }
  9344. },
  9345. tongue: {
  9346. height: math.unit(2.865, "feet"),
  9347. name: "Tongue",
  9348. image: {
  9349. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9350. }
  9351. },
  9352. hand: {
  9353. height: math.unit(1.61, "feet"),
  9354. name: "Hand",
  9355. image: {
  9356. source: "./media/characters/sovrim-terraquian/hand.svg"
  9357. }
  9358. },
  9359. foot: {
  9360. height: math.unit(1.05, "feet"),
  9361. name: "Foot",
  9362. image: {
  9363. source: "./media/characters/sovrim-terraquian/foot.svg"
  9364. }
  9365. },
  9366. footAlt: {
  9367. height: math.unit(0.88, "feet"),
  9368. name: "Foot (Alt)",
  9369. image: {
  9370. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9371. }
  9372. },
  9373. },
  9374. [
  9375. {
  9376. name: "Micro",
  9377. height: math.unit(2, "inches")
  9378. },
  9379. {
  9380. name: "Small",
  9381. height: math.unit(1, "meter")
  9382. },
  9383. {
  9384. name: "Normal",
  9385. height: math.unit(Math.E, "meters"),
  9386. default: true
  9387. },
  9388. {
  9389. name: "Macro",
  9390. height: math.unit(20, "meters")
  9391. },
  9392. {
  9393. name: "Macro+",
  9394. height: math.unit(400, "meters")
  9395. },
  9396. ]
  9397. ))
  9398. characterMakers.push(() => makeCharacter(
  9399. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9400. {
  9401. front: {
  9402. height: math.unit(7, "feet"),
  9403. weight: math.unit(489, "lbs"),
  9404. name: "Front",
  9405. image: {
  9406. source: "./media/characters/reece-silvermane/front.svg",
  9407. bottom: 0.02,
  9408. extra: 1
  9409. }
  9410. },
  9411. },
  9412. [
  9413. {
  9414. name: "Macro",
  9415. height: math.unit(1.5, "miles"),
  9416. default: true
  9417. },
  9418. ]
  9419. ))
  9420. characterMakers.push(() => makeCharacter(
  9421. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9422. {
  9423. front: {
  9424. height: math.unit(6, "feet"),
  9425. weight: math.unit(78, "kg"),
  9426. name: "Front",
  9427. image: {
  9428. source: "./media/characters/kane/front.svg",
  9429. extra: 978 / 899
  9430. }
  9431. },
  9432. back: {
  9433. height: math.unit(6, "feet"),
  9434. weight: math.unit(78, "kg"),
  9435. name: "Back",
  9436. image: {
  9437. source: "./media/characters/kane/back.svg",
  9438. extra: 1966/1800,
  9439. bottom: 0/1966
  9440. }
  9441. },
  9442. head: {
  9443. height: math.unit(1.4, "feet"),
  9444. name: "Head",
  9445. image: {
  9446. source: "./media/characters/kane/head.svg"
  9447. }
  9448. },
  9449. },
  9450. [
  9451. {
  9452. name: "Normal",
  9453. height: math.unit(2.1, "m"),
  9454. },
  9455. {
  9456. name: "Macro",
  9457. height: math.unit(1, "km"),
  9458. default: true
  9459. },
  9460. ]
  9461. ))
  9462. characterMakers.push(() => makeCharacter(
  9463. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9464. {
  9465. front: {
  9466. height: math.unit(6, "feet"),
  9467. weight: math.unit(200, "kg"),
  9468. name: "Front",
  9469. image: {
  9470. source: "./media/characters/tegon/front.svg",
  9471. bottom: 0.01,
  9472. extra: 1
  9473. }
  9474. },
  9475. },
  9476. [
  9477. {
  9478. name: "Micro",
  9479. height: math.unit(1, "inch")
  9480. },
  9481. {
  9482. name: "Normal",
  9483. height: math.unit(6 + 3 / 12, "feet"),
  9484. default: true
  9485. },
  9486. {
  9487. name: "Macro",
  9488. height: math.unit(300, "feet")
  9489. },
  9490. {
  9491. name: "Megamacro",
  9492. height: math.unit(69, "miles")
  9493. },
  9494. ]
  9495. ))
  9496. characterMakers.push(() => makeCharacter(
  9497. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9498. {
  9499. side: {
  9500. height: math.unit(6, "feet"),
  9501. weight: math.unit(2304, "lbs"),
  9502. name: "Side",
  9503. image: {
  9504. source: "./media/characters/arcturax/side.svg",
  9505. extra: 790 / 376,
  9506. bottom: 0.01
  9507. }
  9508. },
  9509. },
  9510. [
  9511. {
  9512. name: "Micro",
  9513. height: math.unit(2, "inch")
  9514. },
  9515. {
  9516. name: "Normal",
  9517. height: math.unit(6, "feet")
  9518. },
  9519. {
  9520. name: "Macro",
  9521. height: math.unit(39, "feet"),
  9522. default: true
  9523. },
  9524. {
  9525. name: "Megamacro",
  9526. height: math.unit(7, "miles")
  9527. },
  9528. ]
  9529. ))
  9530. characterMakers.push(() => makeCharacter(
  9531. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9532. {
  9533. front: {
  9534. height: math.unit(6, "feet"),
  9535. weight: math.unit(50, "lbs"),
  9536. name: "Front",
  9537. image: {
  9538. source: "./media/characters/sentri/front.svg",
  9539. extra: 1750 / 1570,
  9540. bottom: 0.025
  9541. }
  9542. },
  9543. frontAlt: {
  9544. height: math.unit(6, "feet"),
  9545. weight: math.unit(50, "lbs"),
  9546. name: "Front (Alt)",
  9547. image: {
  9548. source: "./media/characters/sentri/front-alt.svg",
  9549. extra: 1750 / 1570,
  9550. bottom: 0.025
  9551. }
  9552. },
  9553. },
  9554. [
  9555. {
  9556. name: "Normal",
  9557. height: math.unit(15, "feet"),
  9558. default: true
  9559. },
  9560. {
  9561. name: "Macro",
  9562. height: math.unit(2500, "feet")
  9563. }
  9564. ]
  9565. ))
  9566. characterMakers.push(() => makeCharacter(
  9567. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9568. {
  9569. front: {
  9570. height: math.unit(5 + 8 / 12, "feet"),
  9571. weight: math.unit(130, "lbs"),
  9572. name: "Front",
  9573. image: {
  9574. source: "./media/characters/corvin/front.svg",
  9575. extra: 1803 / 1629
  9576. }
  9577. },
  9578. frontShirt: {
  9579. height: math.unit(5 + 8 / 12, "feet"),
  9580. weight: math.unit(130, "lbs"),
  9581. name: "Front (Shirt)",
  9582. image: {
  9583. source: "./media/characters/corvin/front-shirt.svg",
  9584. extra: 1803 / 1629
  9585. }
  9586. },
  9587. frontPoncho: {
  9588. height: math.unit(5 + 8 / 12, "feet"),
  9589. weight: math.unit(130, "lbs"),
  9590. name: "Front (Poncho)",
  9591. image: {
  9592. source: "./media/characters/corvin/front-poncho.svg",
  9593. extra: 1803 / 1629
  9594. }
  9595. },
  9596. side: {
  9597. height: math.unit(5 + 8 / 12, "feet"),
  9598. weight: math.unit(130, "lbs"),
  9599. name: "Side",
  9600. image: {
  9601. source: "./media/characters/corvin/side.svg",
  9602. extra: 1012 / 945
  9603. }
  9604. },
  9605. back: {
  9606. height: math.unit(5 + 8 / 12, "feet"),
  9607. weight: math.unit(130, "lbs"),
  9608. name: "Back",
  9609. image: {
  9610. source: "./media/characters/corvin/back.svg",
  9611. extra: 1803 / 1629
  9612. }
  9613. },
  9614. },
  9615. [
  9616. {
  9617. name: "Micro",
  9618. height: math.unit(3, "inches")
  9619. },
  9620. {
  9621. name: "Normal",
  9622. height: math.unit(5 + 8 / 12, "feet")
  9623. },
  9624. {
  9625. name: "Macro",
  9626. height: math.unit(300, "feet"),
  9627. default: true
  9628. },
  9629. {
  9630. name: "Megamacro",
  9631. height: math.unit(500, "miles")
  9632. }
  9633. ]
  9634. ))
  9635. characterMakers.push(() => makeCharacter(
  9636. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9637. {
  9638. front: {
  9639. height: math.unit(6, "feet"),
  9640. weight: math.unit(135, "lbs"),
  9641. name: "Front",
  9642. image: {
  9643. source: "./media/characters/q/front.svg",
  9644. extra: 854 / 752,
  9645. bottom: 0.005
  9646. }
  9647. },
  9648. back: {
  9649. height: math.unit(6, "feet"),
  9650. weight: math.unit(130, "lbs"),
  9651. name: "Back",
  9652. image: {
  9653. source: "./media/characters/q/back.svg",
  9654. extra: 854 / 752
  9655. }
  9656. },
  9657. },
  9658. [
  9659. {
  9660. name: "Macro",
  9661. height: math.unit(90, "feet"),
  9662. default: true
  9663. },
  9664. {
  9665. name: "Extra Macro",
  9666. height: math.unit(300, "feet"),
  9667. },
  9668. {
  9669. name: "BIG WALF",
  9670. height: math.unit(750, "feet"),
  9671. },
  9672. ]
  9673. ))
  9674. characterMakers.push(() => makeCharacter(
  9675. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9676. {
  9677. front: {
  9678. height: math.unit(3, "feet"),
  9679. weight: math.unit(28, "lbs"),
  9680. name: "Front",
  9681. image: {
  9682. source: "./media/characters/citrine/front.svg"
  9683. }
  9684. }
  9685. },
  9686. [
  9687. {
  9688. name: "Normal",
  9689. height: math.unit(3, "feet"),
  9690. default: true
  9691. }
  9692. ]
  9693. ))
  9694. characterMakers.push(() => makeCharacter(
  9695. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9696. {
  9697. front: {
  9698. height: math.unit(14, "feet"),
  9699. weight: math.unit(1450, "kg"),
  9700. preyCapacity: math.unit(15, "people"),
  9701. name: "Front",
  9702. image: {
  9703. source: "./media/characters/aura-starwind/front.svg",
  9704. extra: 1440/1327,
  9705. bottom: 11/1451
  9706. }
  9707. },
  9708. side: {
  9709. height: math.unit(14, "feet"),
  9710. weight: math.unit(1450, "kg"),
  9711. preyCapacity: math.unit(15, "people"),
  9712. name: "Side",
  9713. image: {
  9714. source: "./media/characters/aura-starwind/side.svg",
  9715. extra: 1654 / 1497
  9716. }
  9717. },
  9718. taur: {
  9719. height: math.unit(18, "feet"),
  9720. weight: math.unit(5500, "kg"),
  9721. preyCapacity: math.unit(50, "people"),
  9722. name: "Taur",
  9723. image: {
  9724. source: "./media/characters/aura-starwind/taur.svg",
  9725. extra: 1760 / 1650
  9726. }
  9727. },
  9728. feral: {
  9729. height: math.unit(46, "feet"),
  9730. weight: math.unit(25000, "kg"),
  9731. preyCapacity: math.unit(120, "people"),
  9732. name: "Feral",
  9733. image: {
  9734. source: "./media/characters/aura-starwind/feral.svg"
  9735. }
  9736. },
  9737. },
  9738. [
  9739. {
  9740. name: "Normal",
  9741. height: math.unit(14, "feet"),
  9742. default: true
  9743. },
  9744. {
  9745. name: "Macro",
  9746. height: math.unit(50, "meters")
  9747. },
  9748. {
  9749. name: "Megamacro",
  9750. height: math.unit(5000, "meters")
  9751. },
  9752. {
  9753. name: "Gigamacro",
  9754. height: math.unit(100000, "kilometers")
  9755. },
  9756. ]
  9757. ))
  9758. characterMakers.push(() => makeCharacter(
  9759. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9760. {
  9761. front: {
  9762. height: math.unit(2 + 7 / 12, "feet"),
  9763. weight: math.unit(32, "lbs"),
  9764. name: "Front",
  9765. image: {
  9766. source: "./media/characters/rivet/front.svg",
  9767. extra: 1716 / 1658,
  9768. bottom: 0.03
  9769. }
  9770. },
  9771. foot: {
  9772. height: math.unit(0.551, "feet"),
  9773. name: "Rivet's Foot",
  9774. image: {
  9775. source: "./media/characters/rivet/foot.svg"
  9776. },
  9777. rename: true
  9778. }
  9779. },
  9780. [
  9781. {
  9782. name: "Micro",
  9783. height: math.unit(1.5, "inches"),
  9784. },
  9785. {
  9786. name: "Normal",
  9787. height: math.unit(2 + 7 / 12, "feet"),
  9788. default: true
  9789. },
  9790. {
  9791. name: "Macro",
  9792. height: math.unit(85, "feet")
  9793. },
  9794. {
  9795. name: "Megamacro",
  9796. height: math.unit(2.2, "km")
  9797. }
  9798. ]
  9799. ))
  9800. characterMakers.push(() => makeCharacter(
  9801. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9802. {
  9803. front: {
  9804. height: math.unit(5 + 9 / 12, "feet"),
  9805. weight: math.unit(150, "lbs"),
  9806. name: "Front",
  9807. image: {
  9808. source: "./media/characters/coffee/front.svg",
  9809. extra: 946/880,
  9810. bottom: 66/1012
  9811. }
  9812. },
  9813. foot: {
  9814. height: math.unit(1.29, "feet"),
  9815. name: "Foot",
  9816. image: {
  9817. source: "./media/characters/coffee/foot.svg"
  9818. }
  9819. },
  9820. },
  9821. [
  9822. {
  9823. name: "Micro",
  9824. height: math.unit(2, "inches"),
  9825. },
  9826. {
  9827. name: "Normal",
  9828. height: math.unit(5 + 9 / 12, "feet"),
  9829. default: true
  9830. },
  9831. {
  9832. name: "Macro",
  9833. height: math.unit(800, "feet")
  9834. },
  9835. {
  9836. name: "Megamacro",
  9837. height: math.unit(25, "miles")
  9838. }
  9839. ]
  9840. ))
  9841. characterMakers.push(() => makeCharacter(
  9842. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9843. {
  9844. front: {
  9845. height: math.unit(6, "feet"),
  9846. weight: math.unit(200, "lbs"),
  9847. name: "Front",
  9848. image: {
  9849. source: "./media/characters/chari-gal/front.svg",
  9850. extra: 735/649,
  9851. bottom: 55/790
  9852. },
  9853. form: "normal",
  9854. default: true
  9855. },
  9856. back: {
  9857. height: math.unit(6, "feet"),
  9858. weight: math.unit(200, "lb"),
  9859. name: "Back",
  9860. image: {
  9861. source: "./media/characters/chari-gal/back.svg",
  9862. extra: 762/666,
  9863. bottom: 31/793
  9864. },
  9865. form: "normal"
  9866. },
  9867. mouth: {
  9868. height: math.unit(1.35, "feet"),
  9869. name: "Mouth",
  9870. image: {
  9871. source: "./media/characters/chari-gal/mouth.svg"
  9872. },
  9873. form: "normal"
  9874. },
  9875. gigantamax: {
  9876. height: math.unit(6 * 16, "feet"),
  9877. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9878. name: "Gigantamax",
  9879. image: {
  9880. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9881. extra: 1507/1149,
  9882. bottom: 254/1761
  9883. },
  9884. form: "gigantamax",
  9885. default: true
  9886. },
  9887. },
  9888. [
  9889. {
  9890. name: "Normal",
  9891. height: math.unit(5 + 7 / 12, "feet"),
  9892. form: "normal",
  9893. },
  9894. {
  9895. name: "Macro",
  9896. height: math.unit(200, "feet"),
  9897. default: true,
  9898. form: "normal"
  9899. },
  9900. {
  9901. name: "Normal",
  9902. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9903. form: "gigantamax",
  9904. },
  9905. {
  9906. name: "Macro",
  9907. height: math.unit(16 * 200, "feet"),
  9908. default: true,
  9909. form: "gigantamax"
  9910. },
  9911. ],
  9912. {
  9913. "normal": {
  9914. name: "Normal",
  9915. default: true
  9916. },
  9917. "gigantamax": {
  9918. name: "Gigantamax",
  9919. },
  9920. }
  9921. ))
  9922. characterMakers.push(() => makeCharacter(
  9923. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9924. {
  9925. front: {
  9926. height: math.unit(6, "feet"),
  9927. weight: math.unit(150, "lbs"),
  9928. name: "Front",
  9929. image: {
  9930. source: "./media/characters/nova/front.svg",
  9931. extra: 5000 / 4722,
  9932. bottom: 0.02
  9933. }
  9934. }
  9935. },
  9936. [
  9937. {
  9938. name: "Micro-",
  9939. height: math.unit(0.8, "inches")
  9940. },
  9941. {
  9942. name: "Micro",
  9943. height: math.unit(2, "inches"),
  9944. default: true
  9945. },
  9946. ]
  9947. ))
  9948. characterMakers.push(() => makeCharacter(
  9949. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9950. {
  9951. koboldFront: {
  9952. height: math.unit(3 + 1 / 12, "feet"),
  9953. weight: math.unit(21.7, "lbs"),
  9954. name: "Front",
  9955. image: {
  9956. source: "./media/characters/argent/kobold-front.svg",
  9957. extra: 1471 / 1331,
  9958. bottom: 100.8 / 1575.5
  9959. },
  9960. form: "kobold",
  9961. default: true
  9962. },
  9963. dragonFront: {
  9964. height: math.unit(75, "inches"),
  9965. name: "Front",
  9966. image: {
  9967. source: "./media/characters/argent/dragon-front.svg",
  9968. extra: 1389/1248,
  9969. bottom: 54/1443
  9970. },
  9971. form: "dragon",
  9972. },
  9973. dragonBack: {
  9974. height: math.unit(75, "inches"),
  9975. name: "Back",
  9976. image: {
  9977. source: "./media/characters/argent/dragon-back.svg",
  9978. extra: 1399/1271,
  9979. bottom: 23/1422
  9980. },
  9981. form: "dragon",
  9982. },
  9983. dragonDressed: {
  9984. height: math.unit(75, "inches"),
  9985. name: "Dressed",
  9986. image: {
  9987. source: "./media/characters/argent/dragon-dressed.svg",
  9988. extra: 1350/1215,
  9989. bottom: 26/1376
  9990. },
  9991. form: "dragon"
  9992. },
  9993. dragonHead: {
  9994. height: math.unit(23.5, "inches"),
  9995. name: "Head",
  9996. image: {
  9997. source: "./media/characters/argent/dragon-head.svg"
  9998. },
  9999. form: "dragon",
  10000. },
  10001. },
  10002. [
  10003. {
  10004. name: "Micro",
  10005. height: math.unit(2, "inches"),
  10006. form: "kobold",
  10007. },
  10008. {
  10009. name: "Normal",
  10010. height: math.unit(3 + 1 / 12, "feet"),
  10011. form: "kobold",
  10012. default: true
  10013. },
  10014. {
  10015. name: "Macro",
  10016. height: math.unit(120, "feet"),
  10017. form: "kobold",
  10018. },
  10019. {
  10020. name: "Speck",
  10021. height: math.unit(1, "mm"),
  10022. form: "dragon",
  10023. },
  10024. {
  10025. name: "Tiny",
  10026. height: math.unit(1, "cm"),
  10027. form: "dragon",
  10028. },
  10029. {
  10030. name: "Micro",
  10031. height: math.unit(5, "cm"),
  10032. form: "dragon",
  10033. },
  10034. {
  10035. name: "Normal",
  10036. height: math.unit(75, "inches"),
  10037. form: "dragon",
  10038. default: true
  10039. },
  10040. {
  10041. name: "Extra Tall",
  10042. height: math.unit(9, "feet"),
  10043. form: "dragon",
  10044. },
  10045. {
  10046. name: "Inconvenient",
  10047. height: math.unit(5, "meters"),
  10048. form: "dragon",
  10049. },
  10050. {
  10051. name: "Macro",
  10052. height: math.unit(70, "meters"),
  10053. form: "dragon",
  10054. },
  10055. {
  10056. name: "Macro+",
  10057. height: math.unit(250, "meters"),
  10058. form: "dragon",
  10059. },
  10060. {
  10061. name: "Megamacro",
  10062. height: math.unit(20, "km"),
  10063. form: "dragon",
  10064. },
  10065. {
  10066. name: "Mountainous",
  10067. height: math.unit(100, "km"),
  10068. form: "dragon",
  10069. },
  10070. {
  10071. name: "Continental",
  10072. height: math.unit(2, "megameters"),
  10073. form: "dragon",
  10074. },
  10075. {
  10076. name: "Too Big",
  10077. height: math.unit(900, "megameters"),
  10078. form: "dragon",
  10079. },
  10080. ],
  10081. {
  10082. "kobold": {
  10083. name: "Kobold",
  10084. default: true
  10085. },
  10086. "dragon": {
  10087. name: "Dragon",
  10088. },
  10089. }
  10090. ))
  10091. characterMakers.push(() => makeCharacter(
  10092. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  10093. {
  10094. lamp: {
  10095. height: math.unit(7 * 1559 / 989, "feet"),
  10096. name: "Magic Lamp",
  10097. image: {
  10098. source: "./media/characters/mira-al-cul/lamp.svg",
  10099. extra: 1617 / 1559
  10100. }
  10101. },
  10102. front: {
  10103. height: math.unit(7, "feet"),
  10104. name: "Front",
  10105. image: {
  10106. source: "./media/characters/mira-al-cul/front.svg",
  10107. extra: 1044 / 990
  10108. }
  10109. },
  10110. },
  10111. [
  10112. {
  10113. name: "Heavily Restricted",
  10114. height: math.unit(7 * 1559 / 989, "feet")
  10115. },
  10116. {
  10117. name: "Freshly Freed",
  10118. height: math.unit(50 * 1559 / 989, "feet")
  10119. },
  10120. {
  10121. name: "World Encompassing",
  10122. height: math.unit(10000 * 1559 / 989, "miles")
  10123. },
  10124. {
  10125. name: "Galactic",
  10126. height: math.unit(1.433 * 1559 / 989, "zettameters")
  10127. },
  10128. {
  10129. name: "Palmed Universe",
  10130. height: math.unit(6000 * 1559 / 989, "yottameters"),
  10131. default: true
  10132. },
  10133. {
  10134. name: "Multiversal Matriarch",
  10135. height: math.unit(8.87e10, "yottameters")
  10136. },
  10137. {
  10138. name: "Void Mother",
  10139. height: math.unit(3.14e110, "yottaparsecs")
  10140. },
  10141. {
  10142. name: "Toying with Transcendence",
  10143. height: math.unit(1e307, "meters")
  10144. },
  10145. ]
  10146. ))
  10147. characterMakers.push(() => makeCharacter(
  10148. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  10149. {
  10150. front: {
  10151. height: math.unit(17 + 1 / 12, "feet"),
  10152. weight: math.unit(476.2 * 5, "lbs"),
  10153. name: "Front",
  10154. image: {
  10155. source: "./media/characters/kuro-shi-uchū/front.svg",
  10156. extra: 2329 / 1835,
  10157. bottom: 0.02
  10158. }
  10159. },
  10160. },
  10161. [
  10162. {
  10163. name: "Micro",
  10164. height: math.unit(2, "inches")
  10165. },
  10166. {
  10167. name: "Normal",
  10168. height: math.unit(12, "meters")
  10169. },
  10170. {
  10171. name: "Planetary",
  10172. height: math.unit(0.00929, "AU"),
  10173. default: true
  10174. },
  10175. {
  10176. name: "Universal",
  10177. height: math.unit(20, "gigaparsecs")
  10178. },
  10179. ]
  10180. ))
  10181. characterMakers.push(() => makeCharacter(
  10182. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  10183. {
  10184. front: {
  10185. height: math.unit(5 + 2 / 12, "feet"),
  10186. weight: math.unit(120, "lbs"),
  10187. name: "Front",
  10188. image: {
  10189. source: "./media/characters/katherine/front.svg",
  10190. extra: 2075 / 1969
  10191. }
  10192. },
  10193. dress: {
  10194. height: math.unit(5 + 2 / 12, "feet"),
  10195. weight: math.unit(120, "lbs"),
  10196. name: "Dress",
  10197. image: {
  10198. source: "./media/characters/katherine/dress.svg",
  10199. extra: 2258 / 2064
  10200. }
  10201. },
  10202. },
  10203. [
  10204. {
  10205. name: "Micro",
  10206. height: math.unit(1, "inches"),
  10207. default: true
  10208. },
  10209. {
  10210. name: "Normal",
  10211. height: math.unit(5 + 2 / 12, "feet")
  10212. },
  10213. {
  10214. name: "Macro",
  10215. height: math.unit(100, "meters")
  10216. },
  10217. {
  10218. name: "Megamacro",
  10219. height: math.unit(80, "miles")
  10220. },
  10221. ]
  10222. ))
  10223. characterMakers.push(() => makeCharacter(
  10224. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  10225. {
  10226. front: {
  10227. height: math.unit(7 + 8 / 12, "feet"),
  10228. weight: math.unit(250, "lbs"),
  10229. name: "Front",
  10230. image: {
  10231. source: "./media/characters/yevis/front.svg",
  10232. extra: 1938 / 1755
  10233. }
  10234. }
  10235. },
  10236. [
  10237. {
  10238. name: "Mortal",
  10239. height: math.unit(7 + 8 / 12, "feet")
  10240. },
  10241. {
  10242. name: "Battle",
  10243. height: math.unit(25 + 11 / 12, "feet")
  10244. },
  10245. {
  10246. name: "Wrath",
  10247. height: math.unit(1654 + 11 / 12, "feet")
  10248. },
  10249. {
  10250. name: "Planet Destroyer",
  10251. height: math.unit(12000, "miles")
  10252. },
  10253. {
  10254. name: "Galaxy Conqueror",
  10255. height: math.unit(1.45, "zettameters"),
  10256. default: true
  10257. },
  10258. {
  10259. name: "Universal War",
  10260. height: math.unit(184, "gigaparsecs")
  10261. },
  10262. {
  10263. name: "Eternity War",
  10264. height: math.unit(1.98e55, "yottaparsecs")
  10265. },
  10266. ]
  10267. ))
  10268. characterMakers.push(() => makeCharacter(
  10269. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  10270. {
  10271. front: {
  10272. height: math.unit(5 + 8 / 12, "feet"),
  10273. weight: math.unit(63, "kg"),
  10274. name: "Front",
  10275. image: {
  10276. source: "./media/characters/xavier/front.svg",
  10277. extra: 944 / 883
  10278. }
  10279. },
  10280. frontStretch: {
  10281. height: math.unit(5 + 8 / 12, "feet"),
  10282. weight: math.unit(63, "kg"),
  10283. name: "Stretching",
  10284. image: {
  10285. source: "./media/characters/xavier/front-stretch.svg",
  10286. extra: 962 / 820
  10287. }
  10288. },
  10289. },
  10290. [
  10291. {
  10292. name: "Normal",
  10293. height: math.unit(5 + 8 / 12, "feet")
  10294. },
  10295. {
  10296. name: "Macro",
  10297. height: math.unit(100, "meters"),
  10298. default: true
  10299. },
  10300. {
  10301. name: "McLargeHuge",
  10302. height: math.unit(10, "miles")
  10303. },
  10304. ]
  10305. ))
  10306. characterMakers.push(() => makeCharacter(
  10307. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10308. {
  10309. front: {
  10310. height: math.unit(5 + 5 / 12, "feet"),
  10311. weight: math.unit(150, "lb"),
  10312. name: "Front",
  10313. image: {
  10314. source: "./media/characters/joshii/front.svg",
  10315. extra: 765 / 653,
  10316. bottom: 51 / 816
  10317. }
  10318. },
  10319. foot: {
  10320. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10321. name: "Foot",
  10322. image: {
  10323. source: "./media/characters/joshii/foot.svg"
  10324. }
  10325. },
  10326. },
  10327. [
  10328. {
  10329. name: "Micro",
  10330. height: math.unit(2, "inches")
  10331. },
  10332. {
  10333. name: "Normal",
  10334. height: math.unit(5 + 5 / 12, "feet")
  10335. },
  10336. {
  10337. name: "Macro",
  10338. height: math.unit(785, "feet"),
  10339. default: true
  10340. },
  10341. {
  10342. name: "Megamacro",
  10343. height: math.unit(24.5, "miles")
  10344. },
  10345. ]
  10346. ))
  10347. characterMakers.push(() => makeCharacter(
  10348. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10349. {
  10350. front: {
  10351. height: math.unit(6, "feet"),
  10352. weight: math.unit(150, "lb"),
  10353. name: "Front",
  10354. image: {
  10355. source: "./media/characters/goddess-elizabeth/front.svg",
  10356. extra: 1800 / 1525,
  10357. bottom: 0.005
  10358. }
  10359. },
  10360. foot: {
  10361. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10362. name: "Foot",
  10363. image: {
  10364. source: "./media/characters/goddess-elizabeth/foot.svg"
  10365. }
  10366. },
  10367. mouth: {
  10368. height: math.unit(6, "feet"),
  10369. name: "Mouth",
  10370. image: {
  10371. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10372. }
  10373. },
  10374. },
  10375. [
  10376. {
  10377. name: "Micro",
  10378. height: math.unit(12, "feet")
  10379. },
  10380. {
  10381. name: "Normal",
  10382. height: math.unit(80, "miles"),
  10383. default: true
  10384. },
  10385. {
  10386. name: "Macro",
  10387. height: math.unit(15000, "parsecs")
  10388. },
  10389. ]
  10390. ))
  10391. characterMakers.push(() => makeCharacter(
  10392. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10393. {
  10394. front: {
  10395. height: math.unit(5 + 9 / 12, "feet"),
  10396. weight: math.unit(144, "lb"),
  10397. name: "Front",
  10398. image: {
  10399. source: "./media/characters/kara/front.svg"
  10400. }
  10401. },
  10402. feet: {
  10403. height: math.unit(6 / 6.765, "feet"),
  10404. name: "Kara's Feet",
  10405. rename: true,
  10406. image: {
  10407. source: "./media/characters/kara/feet.svg"
  10408. }
  10409. },
  10410. },
  10411. [
  10412. {
  10413. name: "Normal",
  10414. height: math.unit(5 + 9 / 12, "feet")
  10415. },
  10416. {
  10417. name: "Macro",
  10418. height: math.unit(174, "feet"),
  10419. default: true
  10420. },
  10421. ]
  10422. ))
  10423. characterMakers.push(() => makeCharacter(
  10424. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10425. {
  10426. front: {
  10427. height: math.unit(18, "feet"),
  10428. weight: math.unit(4050, "lb"),
  10429. name: "Front",
  10430. image: {
  10431. source: "./media/characters/tyrone/front.svg",
  10432. extra: 2405 / 2270,
  10433. bottom: 182 / 2587
  10434. }
  10435. },
  10436. },
  10437. [
  10438. {
  10439. name: "Normal",
  10440. height: math.unit(18, "feet"),
  10441. default: true
  10442. },
  10443. {
  10444. name: "Macro",
  10445. height: math.unit(300, "feet")
  10446. },
  10447. {
  10448. name: "Megamacro",
  10449. height: math.unit(15, "km")
  10450. },
  10451. {
  10452. name: "Gigamacro",
  10453. height: math.unit(500, "km")
  10454. },
  10455. {
  10456. name: "Teramacro",
  10457. height: math.unit(0.5, "gigameters")
  10458. },
  10459. {
  10460. name: "Omnimacro",
  10461. height: math.unit(1e252, "yottauniverse")
  10462. },
  10463. ]
  10464. ))
  10465. characterMakers.push(() => makeCharacter(
  10466. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10467. {
  10468. front: {
  10469. height: math.unit(7 + 8 / 12, "feet"),
  10470. weight: math.unit(120, "lb"),
  10471. name: "Front",
  10472. image: {
  10473. source: "./media/characters/danny/front.svg",
  10474. extra: 1490 / 1350
  10475. }
  10476. },
  10477. back: {
  10478. height: math.unit(7 + 8 / 12, "feet"),
  10479. weight: math.unit(120, "lb"),
  10480. name: "Back",
  10481. image: {
  10482. source: "./media/characters/danny/back.svg",
  10483. extra: 1490 / 1350
  10484. }
  10485. },
  10486. },
  10487. [
  10488. {
  10489. name: "Normal",
  10490. height: math.unit(7 + 8 / 12, "feet"),
  10491. default: true
  10492. },
  10493. ]
  10494. ))
  10495. characterMakers.push(() => makeCharacter(
  10496. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10497. {
  10498. front: {
  10499. height: math.unit(3.5, "inches"),
  10500. weight: math.unit(19, "grams"),
  10501. name: "Front",
  10502. image: {
  10503. source: "./media/characters/mallow/front.svg",
  10504. extra: 471 / 431
  10505. }
  10506. },
  10507. back: {
  10508. height: math.unit(3.5, "inches"),
  10509. weight: math.unit(19, "grams"),
  10510. name: "Back",
  10511. image: {
  10512. source: "./media/characters/mallow/back.svg",
  10513. extra: 471 / 431
  10514. }
  10515. },
  10516. },
  10517. [
  10518. {
  10519. name: "Normal",
  10520. height: math.unit(3.5, "inches"),
  10521. default: true
  10522. },
  10523. ]
  10524. ))
  10525. characterMakers.push(() => makeCharacter(
  10526. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10527. {
  10528. front: {
  10529. height: math.unit(9, "feet"),
  10530. weight: math.unit(230, "kg"),
  10531. name: "Front",
  10532. image: {
  10533. source: "./media/characters/starry-aqua/front.svg"
  10534. }
  10535. },
  10536. back: {
  10537. height: math.unit(9, "feet"),
  10538. weight: math.unit(230, "kg"),
  10539. name: "Back",
  10540. image: {
  10541. source: "./media/characters/starry-aqua/back.svg"
  10542. }
  10543. },
  10544. hand: {
  10545. height: math.unit(9 * 0.1168, "feet"),
  10546. name: "Hand",
  10547. image: {
  10548. source: "./media/characters/starry-aqua/hand.svg"
  10549. }
  10550. },
  10551. foot: {
  10552. height: math.unit(9 * 0.18, "feet"),
  10553. name: "Foot",
  10554. image: {
  10555. source: "./media/characters/starry-aqua/foot.svg"
  10556. }
  10557. }
  10558. },
  10559. [
  10560. {
  10561. name: "Micro",
  10562. height: math.unit(3, "inches")
  10563. },
  10564. {
  10565. name: "Normal",
  10566. height: math.unit(9, "feet")
  10567. },
  10568. {
  10569. name: "Macro",
  10570. height: math.unit(300, "feet"),
  10571. default: true
  10572. },
  10573. {
  10574. name: "Megamacro",
  10575. height: math.unit(3200, "feet")
  10576. }
  10577. ]
  10578. ))
  10579. characterMakers.push(() => makeCharacter(
  10580. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10581. {
  10582. front: {
  10583. height: math.unit(15, "feet"),
  10584. weight: math.unit(5026, "lb"),
  10585. name: "Front",
  10586. image: {
  10587. source: "./media/characters/luka-towers/front.svg",
  10588. extra: 1269/1133,
  10589. bottom: 51/1320
  10590. }
  10591. },
  10592. },
  10593. [
  10594. {
  10595. name: "Normal",
  10596. height: math.unit(15, "feet"),
  10597. default: true
  10598. },
  10599. {
  10600. name: "Minimacro",
  10601. height: math.unit(25, "feet")
  10602. },
  10603. {
  10604. name: "Macro",
  10605. height: math.unit(320, "feet")
  10606. },
  10607. {
  10608. name: "Megamacro",
  10609. height: math.unit(35000, "feet")
  10610. },
  10611. {
  10612. name: "Gigamacro",
  10613. height: math.unit(4000, "miles")
  10614. },
  10615. {
  10616. name: "Teramacro",
  10617. height: math.unit(15000, "miles")
  10618. },
  10619. ]
  10620. ))
  10621. characterMakers.push(() => makeCharacter(
  10622. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10623. {
  10624. front: {
  10625. height: math.unit(6, "feet"),
  10626. weight: math.unit(150, "lb"),
  10627. name: "Front",
  10628. image: {
  10629. source: "./media/characters/natalie-nightring/front.svg",
  10630. extra: 1,
  10631. bottom: 0.06
  10632. }
  10633. },
  10634. },
  10635. [
  10636. {
  10637. name: "Uh Oh",
  10638. height: math.unit(0.1, "mm")
  10639. },
  10640. {
  10641. name: "Small",
  10642. height: math.unit(3, "inches")
  10643. },
  10644. {
  10645. name: "Human Scale",
  10646. height: math.unit(6, "feet")
  10647. },
  10648. {
  10649. name: "Librarian",
  10650. height: math.unit(50, "feet"),
  10651. default: true
  10652. },
  10653. {
  10654. name: "Immense",
  10655. height: math.unit(200, "miles")
  10656. },
  10657. ]
  10658. ))
  10659. characterMakers.push(() => makeCharacter(
  10660. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10661. {
  10662. front: {
  10663. height: math.unit(6, "feet"),
  10664. weight: math.unit(180, "lbs"),
  10665. name: "Front",
  10666. image: {
  10667. source: "./media/characters/danni-rosie/front.svg",
  10668. extra: 1260 / 1128,
  10669. bottom: 0.022
  10670. }
  10671. },
  10672. },
  10673. [
  10674. {
  10675. name: "Micro",
  10676. height: math.unit(2, "inches"),
  10677. default: true
  10678. },
  10679. ]
  10680. ))
  10681. characterMakers.push(() => makeCharacter(
  10682. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10683. {
  10684. front: {
  10685. height: math.unit(5 + 9 / 12, "feet"),
  10686. weight: math.unit(220, "lb"),
  10687. name: "Front",
  10688. image: {
  10689. source: "./media/characters/samantha-kruse/front.svg",
  10690. extra: (985 / 935),
  10691. bottom: 0.03
  10692. }
  10693. },
  10694. frontUndressed: {
  10695. height: math.unit(5 + 9 / 12, "feet"),
  10696. weight: math.unit(220, "lb"),
  10697. name: "Front (Undressed)",
  10698. image: {
  10699. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10700. extra: (973 / 923),
  10701. bottom: 0.025
  10702. }
  10703. },
  10704. fat: {
  10705. height: math.unit(5 + 9 / 12, "feet"),
  10706. weight: math.unit(900, "lb"),
  10707. name: "Front (Fat)",
  10708. image: {
  10709. source: "./media/characters/samantha-kruse/fat.svg",
  10710. extra: 2688 / 2561
  10711. }
  10712. },
  10713. },
  10714. [
  10715. {
  10716. name: "Normal",
  10717. height: math.unit(5 + 9 / 12, "feet"),
  10718. default: true
  10719. }
  10720. ]
  10721. ))
  10722. characterMakers.push(() => makeCharacter(
  10723. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10724. {
  10725. back: {
  10726. height: math.unit(5 + 4 / 12, "feet"),
  10727. weight: math.unit(4963, "lb"),
  10728. name: "Back",
  10729. image: {
  10730. source: "./media/characters/amelia-rosie/back.svg",
  10731. extra: 1113 / 963,
  10732. bottom: 0.01
  10733. }
  10734. },
  10735. },
  10736. [
  10737. {
  10738. name: "Level 0",
  10739. height: math.unit(5 + 4 / 12, "feet")
  10740. },
  10741. {
  10742. name: "Level 1",
  10743. height: math.unit(164597, "feet"),
  10744. default: true
  10745. },
  10746. {
  10747. name: "Level 2",
  10748. height: math.unit(956243, "miles")
  10749. },
  10750. {
  10751. name: "Level 3",
  10752. height: math.unit(29421709423, "miles")
  10753. },
  10754. {
  10755. name: "Level 4",
  10756. height: math.unit(154, "lightyears")
  10757. },
  10758. {
  10759. name: "Level 5",
  10760. height: math.unit(4738272, "lightyears")
  10761. },
  10762. {
  10763. name: "Level 6",
  10764. height: math.unit(145787152896, "lightyears")
  10765. },
  10766. ]
  10767. ))
  10768. characterMakers.push(() => makeCharacter(
  10769. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10770. {
  10771. front: {
  10772. height: math.unit(5 + 11 / 12, "feet"),
  10773. weight: math.unit(65, "kg"),
  10774. name: "Front",
  10775. image: {
  10776. source: "./media/characters/rook-kitara/front.svg",
  10777. extra: 1347 / 1274,
  10778. bottom: 0.005
  10779. }
  10780. },
  10781. },
  10782. [
  10783. {
  10784. name: "Totally Unfair",
  10785. height: math.unit(1.8, "mm")
  10786. },
  10787. {
  10788. name: "Lap Rookie",
  10789. height: math.unit(1.4, "feet")
  10790. },
  10791. {
  10792. name: "Normal",
  10793. height: math.unit(5 + 11 / 12, "feet"),
  10794. default: true
  10795. },
  10796. {
  10797. name: "How Did This Happen",
  10798. height: math.unit(80, "miles")
  10799. }
  10800. ]
  10801. ))
  10802. characterMakers.push(() => makeCharacter(
  10803. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10804. {
  10805. front: {
  10806. height: math.unit(7, "feet"),
  10807. weight: math.unit(300, "lb"),
  10808. name: "Front",
  10809. image: {
  10810. source: "./media/characters/pisces/front.svg",
  10811. extra: 2255 / 2115,
  10812. bottom: 0.03
  10813. }
  10814. },
  10815. back: {
  10816. height: math.unit(7, "feet"),
  10817. weight: math.unit(300, "lb"),
  10818. name: "Back",
  10819. image: {
  10820. source: "./media/characters/pisces/back.svg",
  10821. extra: 2146 / 2055,
  10822. bottom: 0.04
  10823. }
  10824. },
  10825. },
  10826. [
  10827. {
  10828. name: "Normal",
  10829. height: math.unit(7, "feet"),
  10830. default: true
  10831. },
  10832. {
  10833. name: "Swimming Pool",
  10834. height: math.unit(12.2, "meters")
  10835. },
  10836. {
  10837. name: "Olympic Swimming Pool",
  10838. height: math.unit(56.3, "meters")
  10839. },
  10840. {
  10841. name: "Lake Superior",
  10842. height: math.unit(93900, "meters")
  10843. },
  10844. {
  10845. name: "Mediterranean Sea",
  10846. height: math.unit(644457, "meters")
  10847. },
  10848. {
  10849. name: "World's Oceans",
  10850. height: math.unit(4567491, "meters")
  10851. },
  10852. ]
  10853. ))
  10854. characterMakers.push(() => makeCharacter(
  10855. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10856. {
  10857. front: {
  10858. height: math.unit(2.3, "meters"),
  10859. weight: math.unit(120, "kg"),
  10860. name: "Front",
  10861. image: {
  10862. source: "./media/characters/zelas/front.svg"
  10863. }
  10864. },
  10865. side: {
  10866. height: math.unit(2.3, "meters"),
  10867. weight: math.unit(120, "kg"),
  10868. name: "Side",
  10869. image: {
  10870. source: "./media/characters/zelas/side.svg"
  10871. }
  10872. },
  10873. back: {
  10874. height: math.unit(2.3, "meters"),
  10875. weight: math.unit(120, "kg"),
  10876. name: "Back",
  10877. image: {
  10878. source: "./media/characters/zelas/back.svg"
  10879. }
  10880. },
  10881. foot: {
  10882. height: math.unit(1.116, "feet"),
  10883. name: "Foot",
  10884. image: {
  10885. source: "./media/characters/zelas/foot.svg"
  10886. }
  10887. },
  10888. },
  10889. [
  10890. {
  10891. name: "Normal",
  10892. height: math.unit(2.3, "meters")
  10893. },
  10894. {
  10895. name: "Macro",
  10896. height: math.unit(30, "meters"),
  10897. default: true
  10898. },
  10899. ]
  10900. ))
  10901. characterMakers.push(() => makeCharacter(
  10902. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10903. {
  10904. front: {
  10905. height: math.unit(1, "inch"),
  10906. weight: math.unit(0.21, "grams"),
  10907. name: "Front",
  10908. image: {
  10909. source: "./media/characters/talbot/front.svg",
  10910. extra: 594 / 544
  10911. }
  10912. },
  10913. },
  10914. [
  10915. {
  10916. name: "Micro",
  10917. height: math.unit(1, "inch"),
  10918. default: true
  10919. },
  10920. ]
  10921. ))
  10922. characterMakers.push(() => makeCharacter(
  10923. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10924. {
  10925. front: {
  10926. height: math.unit(3 + 3 / 12, "feet"),
  10927. weight: math.unit(51.8, "lb"),
  10928. name: "Front",
  10929. image: {
  10930. source: "./media/characters/fliss/front.svg",
  10931. extra: 840 / 640
  10932. }
  10933. },
  10934. },
  10935. [
  10936. {
  10937. name: "Teeny Tiny",
  10938. height: math.unit(1, "mm")
  10939. },
  10940. {
  10941. name: "Small",
  10942. height: math.unit(1, "inch"),
  10943. default: true
  10944. },
  10945. {
  10946. name: "Standard Sylveon",
  10947. height: math.unit(3 + 3 / 12, "feet")
  10948. },
  10949. {
  10950. name: "Large Nuisance",
  10951. height: math.unit(33, "feet")
  10952. },
  10953. {
  10954. name: "City Filler",
  10955. height: math.unit(3000, "feet")
  10956. },
  10957. {
  10958. name: "New Horizon",
  10959. height: math.unit(6000, "miles")
  10960. },
  10961. ]
  10962. ))
  10963. characterMakers.push(() => makeCharacter(
  10964. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10965. {
  10966. front: {
  10967. height: math.unit(5, "cm"),
  10968. weight: math.unit(1.94, "g"),
  10969. name: "Front",
  10970. image: {
  10971. source: "./media/characters/fleta/front.svg",
  10972. extra: 835 / 803
  10973. }
  10974. },
  10975. back: {
  10976. height: math.unit(5, "cm"),
  10977. weight: math.unit(1.94, "g"),
  10978. name: "Back",
  10979. image: {
  10980. source: "./media/characters/fleta/back.svg",
  10981. extra: 835 / 803
  10982. }
  10983. },
  10984. },
  10985. [
  10986. {
  10987. name: "Micro",
  10988. height: math.unit(5, "cm"),
  10989. default: true
  10990. },
  10991. ]
  10992. ))
  10993. characterMakers.push(() => makeCharacter(
  10994. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10995. {
  10996. front: {
  10997. height: math.unit(6, "feet"),
  10998. weight: math.unit(225, "lb"),
  10999. name: "Front",
  11000. image: {
  11001. source: "./media/characters/dominic/front.svg",
  11002. extra: 1770 / 1620,
  11003. bottom: 0.025
  11004. }
  11005. },
  11006. back: {
  11007. height: math.unit(6, "feet"),
  11008. weight: math.unit(225, "lb"),
  11009. name: "Back",
  11010. image: {
  11011. source: "./media/characters/dominic/back.svg",
  11012. extra: 1745 / 1620,
  11013. bottom: 0.065
  11014. }
  11015. },
  11016. },
  11017. [
  11018. {
  11019. name: "Nano",
  11020. height: math.unit(0.1, "mm")
  11021. },
  11022. {
  11023. name: "Micro-",
  11024. height: math.unit(1, "mm")
  11025. },
  11026. {
  11027. name: "Micro",
  11028. height: math.unit(4, "inches")
  11029. },
  11030. {
  11031. name: "Normal",
  11032. height: math.unit(6 + 4 / 12, "feet"),
  11033. default: true
  11034. },
  11035. {
  11036. name: "Macro",
  11037. height: math.unit(115, "feet")
  11038. },
  11039. {
  11040. name: "Macro+",
  11041. height: math.unit(955, "feet")
  11042. },
  11043. {
  11044. name: "Megamacro",
  11045. height: math.unit(8990, "feet")
  11046. },
  11047. {
  11048. name: "Gigmacro",
  11049. height: math.unit(9310, "miles")
  11050. },
  11051. {
  11052. name: "Teramacro",
  11053. height: math.unit(1567005010, "miles")
  11054. },
  11055. {
  11056. name: "Examacro",
  11057. height: math.unit(1425, "parsecs")
  11058. },
  11059. ]
  11060. ))
  11061. characterMakers.push(() => makeCharacter(
  11062. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  11063. {
  11064. front: {
  11065. height: math.unit(400, "feet"),
  11066. weight: math.unit(44444444, "lb"),
  11067. name: "Front",
  11068. image: {
  11069. source: "./media/characters/major-colonel/front.svg"
  11070. }
  11071. },
  11072. back: {
  11073. height: math.unit(400, "feet"),
  11074. weight: math.unit(44444444, "lb"),
  11075. name: "Back",
  11076. image: {
  11077. source: "./media/characters/major-colonel/back.svg"
  11078. }
  11079. },
  11080. },
  11081. [
  11082. {
  11083. name: "Macro",
  11084. height: math.unit(400, "feet"),
  11085. default: true
  11086. },
  11087. ]
  11088. ))
  11089. characterMakers.push(() => makeCharacter(
  11090. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  11091. {
  11092. catFront: {
  11093. height: math.unit(6, "feet"),
  11094. weight: math.unit(120, "lb"),
  11095. name: "Front (Cat Side)",
  11096. image: {
  11097. source: "./media/characters/axel-lycan/cat-front.svg",
  11098. extra: 430 / 402,
  11099. bottom: 43 / 472.35
  11100. }
  11101. },
  11102. catBack: {
  11103. height: math.unit(6, "feet"),
  11104. weight: math.unit(120, "lb"),
  11105. name: "Back (Cat Side)",
  11106. image: {
  11107. source: "./media/characters/axel-lycan/cat-back.svg",
  11108. extra: 447 / 419,
  11109. bottom: 23.3 / 469
  11110. }
  11111. },
  11112. wolfFront: {
  11113. height: math.unit(6, "feet"),
  11114. weight: math.unit(120, "lb"),
  11115. name: "Front (Wolf Side)",
  11116. image: {
  11117. source: "./media/characters/axel-lycan/wolf-front.svg",
  11118. extra: 485 / 456,
  11119. bottom: 19 / 504
  11120. }
  11121. },
  11122. wolfBack: {
  11123. height: math.unit(6, "feet"),
  11124. weight: math.unit(120, "lb"),
  11125. name: "Back (Wolf Side)",
  11126. image: {
  11127. source: "./media/characters/axel-lycan/wolf-back.svg",
  11128. extra: 475 / 438,
  11129. bottom: 39.2 / 514
  11130. }
  11131. },
  11132. },
  11133. [
  11134. {
  11135. name: "Macro",
  11136. height: math.unit(1, "km"),
  11137. default: true
  11138. },
  11139. ]
  11140. ))
  11141. characterMakers.push(() => makeCharacter(
  11142. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  11143. {
  11144. front: {
  11145. height: math.unit(5 + 9 / 12, "feet"),
  11146. weight: math.unit(175, "lb"),
  11147. name: "Front",
  11148. image: {
  11149. source: "./media/characters/vanrel-hyena/front.svg",
  11150. extra: 1086 / 1010,
  11151. bottom: 0.04
  11152. }
  11153. },
  11154. },
  11155. [
  11156. {
  11157. name: "Normal",
  11158. height: math.unit(5 + 9 / 12, "feet"),
  11159. default: true
  11160. },
  11161. ]
  11162. ))
  11163. characterMakers.push(() => makeCharacter(
  11164. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  11165. {
  11166. front: {
  11167. height: math.unit(6, "feet"),
  11168. weight: math.unit(103, "lb"),
  11169. name: "Front",
  11170. image: {
  11171. source: "./media/characters/abbott-absol/front.svg",
  11172. extra: 765/694,
  11173. bottom: 47/812
  11174. }
  11175. },
  11176. },
  11177. [
  11178. {
  11179. name: "Megamicro",
  11180. height: math.unit(0.1, "mm")
  11181. },
  11182. {
  11183. name: "Micro",
  11184. height: math.unit(1, "inch")
  11185. },
  11186. {
  11187. name: "Normal",
  11188. height: math.unit(6, "feet"),
  11189. default: true
  11190. },
  11191. ]
  11192. ))
  11193. characterMakers.push(() => makeCharacter(
  11194. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  11195. {
  11196. front: {
  11197. height: math.unit(6, "feet"),
  11198. weight: math.unit(264, "lb"),
  11199. name: "Front",
  11200. image: {
  11201. source: "./media/characters/hector/front.svg",
  11202. extra: 2280 / 2130,
  11203. bottom: 0.07
  11204. }
  11205. },
  11206. },
  11207. [
  11208. {
  11209. name: "Normal",
  11210. height: math.unit(12.25, "foot"),
  11211. default: true
  11212. },
  11213. {
  11214. name: "Macro",
  11215. height: math.unit(160, "feet")
  11216. },
  11217. ]
  11218. ))
  11219. characterMakers.push(() => makeCharacter(
  11220. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  11221. {
  11222. front: {
  11223. height: math.unit(6, "feet"),
  11224. weight: math.unit(150, "lb"),
  11225. name: "Front",
  11226. image: {
  11227. source: "./media/characters/sal/front.svg",
  11228. extra: 1846 / 1699,
  11229. bottom: 0.04
  11230. }
  11231. },
  11232. },
  11233. [
  11234. {
  11235. name: "Megamacro",
  11236. height: math.unit(10, "miles"),
  11237. default: true
  11238. },
  11239. ]
  11240. ))
  11241. characterMakers.push(() => makeCharacter(
  11242. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  11243. {
  11244. front: {
  11245. height: math.unit(3, "meters"),
  11246. weight: math.unit(450, "kg"),
  11247. name: "front",
  11248. image: {
  11249. source: "./media/characters/ranger/front.svg",
  11250. extra: 2401 / 2243,
  11251. bottom: 0.05
  11252. }
  11253. },
  11254. },
  11255. [
  11256. {
  11257. name: "Normal",
  11258. height: math.unit(3, "meters"),
  11259. default: true
  11260. },
  11261. ]
  11262. ))
  11263. characterMakers.push(() => makeCharacter(
  11264. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  11265. {
  11266. front: {
  11267. height: math.unit(14, "feet"),
  11268. weight: math.unit(800, "kg"),
  11269. name: "Front",
  11270. image: {
  11271. source: "./media/characters/theresa/front.svg",
  11272. extra: 3575 / 3346,
  11273. bottom: 0.03
  11274. }
  11275. },
  11276. },
  11277. [
  11278. {
  11279. name: "Normal",
  11280. height: math.unit(14, "feet"),
  11281. default: true
  11282. },
  11283. ]
  11284. ))
  11285. characterMakers.push(() => makeCharacter(
  11286. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  11287. {
  11288. front: {
  11289. height: math.unit(6, "feet"),
  11290. weight: math.unit(3, "kg"),
  11291. name: "Front",
  11292. image: {
  11293. source: "./media/characters/ine/front.svg",
  11294. extra: 678 / 539,
  11295. bottom: 0.023
  11296. }
  11297. },
  11298. },
  11299. [
  11300. {
  11301. name: "Normal",
  11302. height: math.unit(2.265, "feet"),
  11303. default: true
  11304. },
  11305. ]
  11306. ))
  11307. characterMakers.push(() => makeCharacter(
  11308. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11309. {
  11310. front: {
  11311. height: math.unit(5, "feet"),
  11312. weight: math.unit(30, "kg"),
  11313. name: "Front",
  11314. image: {
  11315. source: "./media/characters/vial/front.svg",
  11316. extra: 1365 / 1277,
  11317. bottom: 0.04
  11318. }
  11319. },
  11320. },
  11321. [
  11322. {
  11323. name: "Normal",
  11324. height: math.unit(5, "feet"),
  11325. default: true
  11326. },
  11327. ]
  11328. ))
  11329. characterMakers.push(() => makeCharacter(
  11330. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11331. {
  11332. side: {
  11333. height: math.unit(3.4, "meters"),
  11334. weight: math.unit(1000, "lb"),
  11335. name: "Side",
  11336. image: {
  11337. source: "./media/characters/rovoska/side.svg",
  11338. extra: 4403 / 1515
  11339. }
  11340. },
  11341. },
  11342. [
  11343. {
  11344. name: "Normal",
  11345. height: math.unit(3.4, "meters"),
  11346. default: true
  11347. },
  11348. ]
  11349. ))
  11350. characterMakers.push(() => makeCharacter(
  11351. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11352. {
  11353. front: {
  11354. height: math.unit(8, "feet"),
  11355. weight: math.unit(315, "lb"),
  11356. name: "Front",
  11357. image: {
  11358. source: "./media/characters/gunner-rotthbauer/front.svg"
  11359. }
  11360. },
  11361. back: {
  11362. height: math.unit(8, "feet"),
  11363. weight: math.unit(315, "lb"),
  11364. name: "Back",
  11365. image: {
  11366. source: "./media/characters/gunner-rotthbauer/back.svg"
  11367. }
  11368. },
  11369. },
  11370. [
  11371. {
  11372. name: "Micro",
  11373. height: math.unit(3.5, "inches")
  11374. },
  11375. {
  11376. name: "Normal",
  11377. height: math.unit(8, "feet"),
  11378. default: true
  11379. },
  11380. {
  11381. name: "Macro",
  11382. height: math.unit(250, "feet")
  11383. },
  11384. {
  11385. name: "Megamacro",
  11386. height: math.unit(1, "AU")
  11387. },
  11388. ]
  11389. ))
  11390. characterMakers.push(() => makeCharacter(
  11391. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11392. {
  11393. front: {
  11394. height: math.unit(5 + 5 / 12, "feet"),
  11395. weight: math.unit(140, "lb"),
  11396. name: "Front",
  11397. image: {
  11398. source: "./media/characters/allatia/front.svg",
  11399. extra: 1227 / 1180,
  11400. bottom: 0.027
  11401. }
  11402. },
  11403. },
  11404. [
  11405. {
  11406. name: "Normal",
  11407. height: math.unit(5 + 5 / 12, "feet")
  11408. },
  11409. {
  11410. name: "Macro",
  11411. height: math.unit(250, "feet"),
  11412. default: true
  11413. },
  11414. {
  11415. name: "Megamacro",
  11416. height: math.unit(8, "miles")
  11417. }
  11418. ]
  11419. ))
  11420. characterMakers.push(() => makeCharacter(
  11421. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11422. {
  11423. front: {
  11424. height: math.unit(6, "feet"),
  11425. weight: math.unit(120, "lb"),
  11426. name: "Front",
  11427. image: {
  11428. source: "./media/characters/tene/front.svg",
  11429. extra: 814/750,
  11430. bottom: 36/850
  11431. }
  11432. },
  11433. stomping: {
  11434. height: math.unit(2.025, "meters"),
  11435. weight: math.unit(120, "lb"),
  11436. name: "Stomping",
  11437. image: {
  11438. source: "./media/characters/tene/stomping.svg",
  11439. extra: 885/821,
  11440. bottom: 15/900
  11441. }
  11442. },
  11443. sitting: {
  11444. height: math.unit(1, "meter"),
  11445. weight: math.unit(120, "lb"),
  11446. name: "Sitting",
  11447. image: {
  11448. source: "./media/characters/tene/sitting.svg",
  11449. extra: 396/366,
  11450. bottom: 79/475
  11451. }
  11452. },
  11453. smiling: {
  11454. height: math.unit(1.2, "feet"),
  11455. name: "Smiling",
  11456. image: {
  11457. source: "./media/characters/tene/smiling.svg",
  11458. extra: 1364/1071,
  11459. bottom: 0/1364
  11460. }
  11461. },
  11462. smug: {
  11463. height: math.unit(1.3, "feet"),
  11464. name: "Smug",
  11465. image: {
  11466. source: "./media/characters/tene/smug.svg",
  11467. extra: 1323/1082,
  11468. bottom: 0/1323
  11469. }
  11470. },
  11471. feral: {
  11472. height: math.unit(3.9, "feet"),
  11473. weight: math.unit(250, "lb"),
  11474. name: "Feral",
  11475. image: {
  11476. source: "./media/characters/tene/feral.svg",
  11477. extra: 717 / 458,
  11478. bottom: 0.179
  11479. }
  11480. },
  11481. },
  11482. [
  11483. {
  11484. name: "Normal",
  11485. height: math.unit(6, "feet")
  11486. },
  11487. {
  11488. name: "Macro",
  11489. height: math.unit(300, "feet"),
  11490. default: true
  11491. },
  11492. {
  11493. name: "Megamacro",
  11494. height: math.unit(5, "miles")
  11495. },
  11496. ]
  11497. ))
  11498. characterMakers.push(() => makeCharacter(
  11499. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11500. {
  11501. side: {
  11502. height: math.unit(6, "feet"),
  11503. name: "Side",
  11504. image: {
  11505. source: "./media/characters/evander/side.svg",
  11506. extra: 877 / 477
  11507. }
  11508. },
  11509. },
  11510. [
  11511. {
  11512. name: "Normal",
  11513. height: math.unit(0.83, "meters"),
  11514. default: true
  11515. },
  11516. ]
  11517. ))
  11518. characterMakers.push(() => makeCharacter(
  11519. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11520. {
  11521. front: {
  11522. height: math.unit(12, "feet"),
  11523. weight: math.unit(1000, "lb"),
  11524. name: "Front",
  11525. image: {
  11526. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11527. extra: 1762 / 1611
  11528. }
  11529. },
  11530. back: {
  11531. height: math.unit(12, "feet"),
  11532. weight: math.unit(1000, "lb"),
  11533. name: "Back",
  11534. image: {
  11535. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11536. extra: 1762 / 1611
  11537. }
  11538. },
  11539. },
  11540. [
  11541. {
  11542. name: "Normal",
  11543. height: math.unit(12, "feet"),
  11544. default: true
  11545. },
  11546. {
  11547. name: "Kaiju",
  11548. height: math.unit(150, "feet")
  11549. },
  11550. ]
  11551. ))
  11552. characterMakers.push(() => makeCharacter(
  11553. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11554. {
  11555. front: {
  11556. height: math.unit(5 + 11/12, "feet"),
  11557. weight: math.unit(180, "lb"),
  11558. name: "Front",
  11559. image: {
  11560. source: "./media/characters/zero-alurus/front.svg",
  11561. extra: 1032/957,
  11562. bottom: 10/1042
  11563. }
  11564. },
  11565. back: {
  11566. height: math.unit(5 + 11/12, "feet"),
  11567. weight: math.unit(180, "lb"),
  11568. name: "Back",
  11569. image: {
  11570. source: "./media/characters/zero-alurus/back.svg",
  11571. extra: 1027/950,
  11572. bottom: 12/1039
  11573. }
  11574. },
  11575. },
  11576. [
  11577. {
  11578. name: "Normal",
  11579. height: math.unit(5 + 11 / 12, "feet")
  11580. },
  11581. {
  11582. name: "Mini-Macro",
  11583. height: math.unit(25, "feet")
  11584. },
  11585. {
  11586. name: "Macro",
  11587. height: math.unit(90, "feet"),
  11588. default: true
  11589. },
  11590. {
  11591. name: "Macro+",
  11592. height: math.unit(500, "feet")
  11593. },
  11594. {
  11595. name: "Megamacro",
  11596. height: math.unit(1200, "feet")
  11597. },
  11598. ]
  11599. ))
  11600. characterMakers.push(() => makeCharacter(
  11601. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11602. {
  11603. front: {
  11604. height: math.unit(6, "feet"),
  11605. weight: math.unit(200, "lb"),
  11606. name: "Front",
  11607. image: {
  11608. source: "./media/characters/mega-shi/front.svg",
  11609. extra: 1279 / 1250,
  11610. bottom: 0.02
  11611. }
  11612. },
  11613. back: {
  11614. height: math.unit(6, "feet"),
  11615. weight: math.unit(200, "lb"),
  11616. name: "Back",
  11617. image: {
  11618. source: "./media/characters/mega-shi/back.svg",
  11619. extra: 1279 / 1250,
  11620. bottom: 0.02
  11621. }
  11622. },
  11623. },
  11624. [
  11625. {
  11626. name: "Micro",
  11627. height: math.unit(16 + 6 / 12, "feet")
  11628. },
  11629. {
  11630. name: "Third Dimension",
  11631. height: math.unit(40, "meters")
  11632. },
  11633. {
  11634. name: "Normal",
  11635. height: math.unit(660, "feet"),
  11636. default: true
  11637. },
  11638. {
  11639. name: "Megamacro",
  11640. height: math.unit(10, "miles")
  11641. },
  11642. {
  11643. name: "Planetary Launch",
  11644. height: math.unit(500, "miles")
  11645. },
  11646. {
  11647. name: "Interstellar",
  11648. height: math.unit(1e9, "miles")
  11649. },
  11650. {
  11651. name: "Leaving the Universe",
  11652. height: math.unit(1, "gigaparsec")
  11653. },
  11654. {
  11655. name: "Travelling Universes",
  11656. height: math.unit(30e15, "parsecs")
  11657. },
  11658. ]
  11659. ))
  11660. characterMakers.push(() => makeCharacter(
  11661. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11662. {
  11663. front: {
  11664. height: math.unit(5 + 4/12, "feet"),
  11665. weight: math.unit(120, "lb"),
  11666. name: "Front",
  11667. image: {
  11668. source: "./media/characters/odyssey/front.svg",
  11669. extra: 1747/1571,
  11670. bottom: 47/1794
  11671. }
  11672. },
  11673. side: {
  11674. height: math.unit(5.1, "feet"),
  11675. weight: math.unit(120, "lb"),
  11676. name: "Side",
  11677. image: {
  11678. source: "./media/characters/odyssey/side.svg",
  11679. extra: 1847/1619,
  11680. bottom: 47/1894
  11681. }
  11682. },
  11683. lounging: {
  11684. height: math.unit(1.464, "feet"),
  11685. weight: math.unit(120, "lb"),
  11686. name: "Lounging",
  11687. image: {
  11688. source: "./media/characters/odyssey/lounging.svg",
  11689. extra: 1235/837,
  11690. bottom: 551/1786
  11691. }
  11692. },
  11693. },
  11694. [
  11695. {
  11696. name: "Normal",
  11697. height: math.unit(5 + 4 / 12, "feet")
  11698. },
  11699. {
  11700. name: "Macro",
  11701. height: math.unit(1, "km")
  11702. },
  11703. {
  11704. name: "Megamacro",
  11705. height: math.unit(3000, "km")
  11706. },
  11707. {
  11708. name: "Gigamacro",
  11709. height: math.unit(1, "AU"),
  11710. default: true
  11711. },
  11712. {
  11713. name: "Omniversal",
  11714. height: math.unit(100e14, "lightyears")
  11715. },
  11716. ]
  11717. ))
  11718. characterMakers.push(() => makeCharacter(
  11719. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11720. {
  11721. front: {
  11722. height: math.unit(5 + 10/12, "feet"),
  11723. name: "Front",
  11724. image: {
  11725. source: "./media/characters/mekuto/front.svg",
  11726. extra: 875/835,
  11727. bottom: 46/921
  11728. }
  11729. },
  11730. },
  11731. [
  11732. {
  11733. name: "Minimicro",
  11734. height: math.unit(0.2, "inches")
  11735. },
  11736. {
  11737. name: "Micro",
  11738. height: math.unit(1.5, "inches")
  11739. },
  11740. {
  11741. name: "Normal",
  11742. height: math.unit(5 + 10 / 12, "feet"),
  11743. default: true
  11744. },
  11745. {
  11746. name: "Minimacro",
  11747. height: math.unit(17 + 9 / 12, "feet")
  11748. },
  11749. {
  11750. name: "Macro",
  11751. height: math.unit(177.5, "feet")
  11752. },
  11753. {
  11754. name: "Megamacro",
  11755. height: math.unit(152, "miles")
  11756. },
  11757. ]
  11758. ))
  11759. characterMakers.push(() => makeCharacter(
  11760. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11761. {
  11762. front: {
  11763. height: math.unit(6.5, "inches"),
  11764. weight: math.unit(13, "oz"),
  11765. name: "Front",
  11766. image: {
  11767. source: "./media/characters/dafydd-tomos/front.svg",
  11768. extra: 2990 / 2603,
  11769. bottom: 0.03
  11770. }
  11771. },
  11772. },
  11773. [
  11774. {
  11775. name: "Micro",
  11776. height: math.unit(6.5, "inches"),
  11777. default: true
  11778. },
  11779. ]
  11780. ))
  11781. characterMakers.push(() => makeCharacter(
  11782. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11783. {
  11784. front: {
  11785. height: math.unit(6, "feet"),
  11786. weight: math.unit(150, "lb"),
  11787. name: "Front",
  11788. image: {
  11789. source: "./media/characters/splinter/front.svg",
  11790. extra: 2990 / 2882,
  11791. bottom: 0.04
  11792. }
  11793. },
  11794. back: {
  11795. height: math.unit(6, "feet"),
  11796. weight: math.unit(150, "lb"),
  11797. name: "Back",
  11798. image: {
  11799. source: "./media/characters/splinter/back.svg",
  11800. extra: 2990 / 2882,
  11801. bottom: 0.04
  11802. }
  11803. },
  11804. },
  11805. [
  11806. {
  11807. name: "Normal",
  11808. height: math.unit(6, "feet")
  11809. },
  11810. {
  11811. name: "Macro",
  11812. height: math.unit(230, "meters"),
  11813. default: true
  11814. },
  11815. ]
  11816. ))
  11817. characterMakers.push(() => makeCharacter(
  11818. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11819. {
  11820. front: {
  11821. height: math.unit(4 + 10 / 12, "feet"),
  11822. weight: math.unit(480, "lb"),
  11823. name: "Front",
  11824. image: {
  11825. source: "./media/characters/snow-gabumon/front.svg",
  11826. extra: 1140 / 963,
  11827. bottom: 0.058
  11828. }
  11829. },
  11830. back: {
  11831. height: math.unit(4 + 10 / 12, "feet"),
  11832. weight: math.unit(480, "lb"),
  11833. name: "Back",
  11834. image: {
  11835. source: "./media/characters/snow-gabumon/back.svg",
  11836. extra: 1115 / 962,
  11837. bottom: 0.041
  11838. }
  11839. },
  11840. frontUndresed: {
  11841. height: math.unit(4 + 10 / 12, "feet"),
  11842. weight: math.unit(480, "lb"),
  11843. name: "Front (Undressed)",
  11844. image: {
  11845. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11846. extra: 1061 / 960,
  11847. bottom: 0.045
  11848. }
  11849. },
  11850. },
  11851. [
  11852. {
  11853. name: "Micro",
  11854. height: math.unit(1, "inch")
  11855. },
  11856. {
  11857. name: "Normal",
  11858. height: math.unit(4 + 10 / 12, "feet"),
  11859. default: true
  11860. },
  11861. {
  11862. name: "Macro",
  11863. height: math.unit(200, "feet")
  11864. },
  11865. {
  11866. name: "Megamacro",
  11867. height: math.unit(120, "miles")
  11868. },
  11869. {
  11870. name: "Gigamacro",
  11871. height: math.unit(9800, "miles")
  11872. },
  11873. ]
  11874. ))
  11875. characterMakers.push(() => makeCharacter(
  11876. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11877. {
  11878. front: {
  11879. height: math.unit(1.7, "meters"),
  11880. weight: math.unit(140, "lb"),
  11881. name: "Front",
  11882. image: {
  11883. source: "./media/characters/moody/front.svg",
  11884. extra: 3226 / 3007,
  11885. bottom: 0.087
  11886. }
  11887. },
  11888. },
  11889. [
  11890. {
  11891. name: "Micro",
  11892. height: math.unit(1, "mm")
  11893. },
  11894. {
  11895. name: "Normal",
  11896. height: math.unit(1.7, "meters"),
  11897. default: true
  11898. },
  11899. {
  11900. name: "Macro",
  11901. height: math.unit(80, "meters")
  11902. },
  11903. {
  11904. name: "Macro+",
  11905. height: math.unit(500, "meters")
  11906. },
  11907. ]
  11908. ))
  11909. characterMakers.push(() => makeCharacter(
  11910. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11911. {
  11912. front: {
  11913. height: math.unit(6, "feet"),
  11914. weight: math.unit(150, "lb"),
  11915. name: "Front",
  11916. image: {
  11917. source: "./media/characters/zyas/front.svg",
  11918. extra: 1180 / 1120,
  11919. bottom: 0.045
  11920. }
  11921. },
  11922. },
  11923. [
  11924. {
  11925. name: "Normal",
  11926. height: math.unit(10, "feet"),
  11927. default: true
  11928. },
  11929. {
  11930. name: "Macro",
  11931. height: math.unit(500, "feet")
  11932. },
  11933. {
  11934. name: "Megamacro",
  11935. height: math.unit(5, "miles")
  11936. },
  11937. {
  11938. name: "Teramacro",
  11939. height: math.unit(150000, "miles")
  11940. },
  11941. ]
  11942. ))
  11943. characterMakers.push(() => makeCharacter(
  11944. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11945. {
  11946. front: {
  11947. height: math.unit(6, "feet"),
  11948. weight: math.unit(150, "lb"),
  11949. name: "Front",
  11950. image: {
  11951. source: "./media/characters/cuon/front.svg",
  11952. extra: 1390 / 1320,
  11953. bottom: 0.008
  11954. }
  11955. },
  11956. },
  11957. [
  11958. {
  11959. name: "Micro",
  11960. height: math.unit(3, "inches")
  11961. },
  11962. {
  11963. name: "Normal",
  11964. height: math.unit(18 + 9 / 12, "feet"),
  11965. default: true
  11966. },
  11967. {
  11968. name: "Macro",
  11969. height: math.unit(360, "feet")
  11970. },
  11971. {
  11972. name: "Megamacro",
  11973. height: math.unit(360, "miles")
  11974. },
  11975. ]
  11976. ))
  11977. characterMakers.push(() => makeCharacter(
  11978. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11979. {
  11980. front: {
  11981. height: math.unit(2.4, "meters"),
  11982. weight: math.unit(70, "kg"),
  11983. name: "Front",
  11984. image: {
  11985. source: "./media/characters/nyanuxk/front.svg",
  11986. extra: 1172 / 1084,
  11987. bottom: 0.065
  11988. }
  11989. },
  11990. side: {
  11991. height: math.unit(2.4, "meters"),
  11992. weight: math.unit(70, "kg"),
  11993. name: "Side",
  11994. image: {
  11995. source: "./media/characters/nyanuxk/side.svg",
  11996. extra: 1190 / 1132,
  11997. bottom: 0.007
  11998. }
  11999. },
  12000. back: {
  12001. height: math.unit(2.4, "meters"),
  12002. weight: math.unit(70, "kg"),
  12003. name: "Back",
  12004. image: {
  12005. source: "./media/characters/nyanuxk/back.svg",
  12006. extra: 1200 / 1141,
  12007. bottom: 0.015
  12008. }
  12009. },
  12010. foot: {
  12011. height: math.unit(0.52, "meters"),
  12012. name: "Foot",
  12013. image: {
  12014. source: "./media/characters/nyanuxk/foot.svg"
  12015. }
  12016. },
  12017. },
  12018. [
  12019. {
  12020. name: "Micro",
  12021. height: math.unit(2, "cm")
  12022. },
  12023. {
  12024. name: "Normal",
  12025. height: math.unit(2.4, "meters"),
  12026. default: true
  12027. },
  12028. {
  12029. name: "Smaller Macro",
  12030. height: math.unit(120, "meters")
  12031. },
  12032. {
  12033. name: "Bigger Macro",
  12034. height: math.unit(1.2, "km")
  12035. },
  12036. {
  12037. name: "Megamacro",
  12038. height: math.unit(15, "kilometers")
  12039. },
  12040. {
  12041. name: "Gigamacro",
  12042. height: math.unit(2000, "km")
  12043. },
  12044. {
  12045. name: "Teramacro",
  12046. height: math.unit(500000, "km")
  12047. },
  12048. ]
  12049. ))
  12050. characterMakers.push(() => makeCharacter(
  12051. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  12052. {
  12053. side: {
  12054. height: math.unit(6, "feet"),
  12055. name: "Side",
  12056. image: {
  12057. source: "./media/characters/ailbhe/side.svg",
  12058. extra: 757 / 464,
  12059. bottom: 0.041
  12060. }
  12061. },
  12062. },
  12063. [
  12064. {
  12065. name: "Normal",
  12066. height: math.unit(1.07, "meters"),
  12067. default: true
  12068. },
  12069. ]
  12070. ))
  12071. characterMakers.push(() => makeCharacter(
  12072. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  12073. {
  12074. front: {
  12075. height: math.unit(6, "feet"),
  12076. weight: math.unit(120, "kg"),
  12077. name: "Front",
  12078. image: {
  12079. source: "./media/characters/zevulfius/front.svg",
  12080. extra: 965 / 903
  12081. }
  12082. },
  12083. side: {
  12084. height: math.unit(6, "feet"),
  12085. weight: math.unit(120, "kg"),
  12086. name: "Side",
  12087. image: {
  12088. source: "./media/characters/zevulfius/side.svg",
  12089. extra: 939 / 900
  12090. }
  12091. },
  12092. back: {
  12093. height: math.unit(6, "feet"),
  12094. weight: math.unit(120, "kg"),
  12095. name: "Back",
  12096. image: {
  12097. source: "./media/characters/zevulfius/back.svg",
  12098. extra: 918 / 854,
  12099. bottom: 0.005
  12100. }
  12101. },
  12102. foot: {
  12103. height: math.unit(6 / 3.72, "feet"),
  12104. name: "Foot",
  12105. image: {
  12106. source: "./media/characters/zevulfius/foot.svg"
  12107. }
  12108. },
  12109. },
  12110. [
  12111. {
  12112. name: "Macro",
  12113. height: math.unit(750, "meters")
  12114. },
  12115. {
  12116. name: "Megamacro",
  12117. height: math.unit(20, "km"),
  12118. default: true
  12119. },
  12120. {
  12121. name: "Gigamacro",
  12122. height: math.unit(2000, "km")
  12123. },
  12124. {
  12125. name: "Teramacro",
  12126. height: math.unit(250000, "km")
  12127. },
  12128. ]
  12129. ))
  12130. characterMakers.push(() => makeCharacter(
  12131. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  12132. {
  12133. front: {
  12134. height: math.unit(100, "feet"),
  12135. weight: math.unit(350, "kg"),
  12136. name: "Front",
  12137. image: {
  12138. source: "./media/characters/rikes/front.svg",
  12139. extra: 1565 / 1483,
  12140. bottom: 0.017
  12141. }
  12142. },
  12143. },
  12144. [
  12145. {
  12146. name: "Macro",
  12147. height: math.unit(100, "feet"),
  12148. default: true
  12149. },
  12150. ]
  12151. ))
  12152. characterMakers.push(() => makeCharacter(
  12153. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  12154. {
  12155. front: {
  12156. height: math.unit(8, "feet"),
  12157. weight: math.unit(356, "lb"),
  12158. name: "Front",
  12159. image: {
  12160. source: "./media/characters/adam-silver-mane/front.svg",
  12161. extra: 1036/937,
  12162. bottom: 63/1099
  12163. }
  12164. },
  12165. side: {
  12166. height: math.unit(8, "feet"),
  12167. weight: math.unit(356, "lb"),
  12168. name: "Side",
  12169. image: {
  12170. source: "./media/characters/adam-silver-mane/side.svg",
  12171. extra: 997/901,
  12172. bottom: 59/1056
  12173. }
  12174. },
  12175. frontNsfw: {
  12176. height: math.unit(8, "feet"),
  12177. weight: math.unit(356, "lb"),
  12178. name: "Front (NSFW)",
  12179. image: {
  12180. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  12181. extra: 1036/937,
  12182. bottom: 63/1099
  12183. }
  12184. },
  12185. sideNsfw: {
  12186. height: math.unit(8, "feet"),
  12187. weight: math.unit(356, "lb"),
  12188. name: "Side (NSFW)",
  12189. image: {
  12190. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  12191. extra: 997/901,
  12192. bottom: 59/1056
  12193. }
  12194. },
  12195. dick: {
  12196. height: math.unit(2.1, "feet"),
  12197. name: "Dick",
  12198. image: {
  12199. source: "./media/characters/adam-silver-mane/dick.svg"
  12200. }
  12201. },
  12202. taur: {
  12203. height: math.unit(16, "feet"),
  12204. weight: math.unit(1500, "kg"),
  12205. name: "Taur",
  12206. image: {
  12207. source: "./media/characters/adam-silver-mane/taur.svg",
  12208. extra: 1713 / 1571,
  12209. bottom: 0.01
  12210. }
  12211. },
  12212. },
  12213. [
  12214. {
  12215. name: "Normal",
  12216. height: math.unit(8, "feet")
  12217. },
  12218. {
  12219. name: "Minimacro",
  12220. height: math.unit(80, "feet")
  12221. },
  12222. {
  12223. name: "MDA",
  12224. height: math.unit(80, "meters")
  12225. },
  12226. {
  12227. name: "Macro",
  12228. height: math.unit(800, "feet"),
  12229. default: true
  12230. },
  12231. {
  12232. name: "Megamacro",
  12233. height: math.unit(8000, "feet")
  12234. },
  12235. {
  12236. name: "Gigamacro",
  12237. height: math.unit(800, "miles")
  12238. },
  12239. {
  12240. name: "Teramacro",
  12241. height: math.unit(80000, "miles")
  12242. },
  12243. {
  12244. name: "Celestial",
  12245. height: math.unit(8e6, "miles")
  12246. },
  12247. {
  12248. name: "Star Dragon",
  12249. height: math.unit(800000, "parsecs")
  12250. },
  12251. {
  12252. name: "Godly",
  12253. height: math.unit(800, "teraparsecs")
  12254. },
  12255. ]
  12256. ))
  12257. characterMakers.push(() => makeCharacter(
  12258. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  12259. {
  12260. front: {
  12261. height: math.unit(6, "feet"),
  12262. weight: math.unit(150, "lb"),
  12263. name: "Front",
  12264. image: {
  12265. source: "./media/characters/ky'owin/front.svg",
  12266. extra: 3862/3053,
  12267. bottom: 74/3936
  12268. }
  12269. },
  12270. },
  12271. [
  12272. {
  12273. name: "Normal",
  12274. height: math.unit(6 + 8 / 12, "feet")
  12275. },
  12276. {
  12277. name: "Large",
  12278. height: math.unit(68, "feet")
  12279. },
  12280. {
  12281. name: "Macro",
  12282. height: math.unit(132, "feet")
  12283. },
  12284. {
  12285. name: "Macro+",
  12286. height: math.unit(340, "feet")
  12287. },
  12288. {
  12289. name: "Macro++",
  12290. height: math.unit(680, "feet"),
  12291. default: true
  12292. },
  12293. {
  12294. name: "Megamacro",
  12295. height: math.unit(1, "mile")
  12296. },
  12297. {
  12298. name: "Megamacro+",
  12299. height: math.unit(10, "miles")
  12300. },
  12301. ]
  12302. ))
  12303. characterMakers.push(() => makeCharacter(
  12304. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12305. {
  12306. front: {
  12307. height: math.unit(4, "feet"),
  12308. weight: math.unit(50, "lb"),
  12309. name: "Front",
  12310. image: {
  12311. source: "./media/characters/mal/front.svg",
  12312. extra: 785 / 724,
  12313. bottom: 0.07
  12314. }
  12315. },
  12316. },
  12317. [
  12318. {
  12319. name: "Micro",
  12320. height: math.unit(4, "inches")
  12321. },
  12322. {
  12323. name: "Normal",
  12324. height: math.unit(4, "feet"),
  12325. default: true
  12326. },
  12327. {
  12328. name: "Macro",
  12329. height: math.unit(200, "feet")
  12330. },
  12331. ]
  12332. ))
  12333. characterMakers.push(() => makeCharacter(
  12334. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12335. {
  12336. front: {
  12337. height: math.unit(6, "feet"),
  12338. weight: math.unit(150, "lb"),
  12339. name: "Front",
  12340. image: {
  12341. source: "./media/characters/jordan-deware/front.svg",
  12342. extra: 1191 / 1012
  12343. }
  12344. },
  12345. },
  12346. [
  12347. {
  12348. name: "Nano",
  12349. height: math.unit(0.01, "mm")
  12350. },
  12351. {
  12352. name: "Minimicro",
  12353. height: math.unit(1, "mm")
  12354. },
  12355. {
  12356. name: "Micro",
  12357. height: math.unit(0.5, "inches")
  12358. },
  12359. {
  12360. name: "Normal",
  12361. height: math.unit(4, "feet"),
  12362. default: true
  12363. },
  12364. {
  12365. name: "Minimacro",
  12366. height: math.unit(40, "meters")
  12367. },
  12368. {
  12369. name: "Small Macro",
  12370. height: math.unit(400, "meters")
  12371. },
  12372. {
  12373. name: "Macro",
  12374. height: math.unit(4, "miles")
  12375. },
  12376. {
  12377. name: "Megamacro",
  12378. height: math.unit(40, "miles")
  12379. },
  12380. {
  12381. name: "Megamacro+",
  12382. height: math.unit(400, "miles")
  12383. },
  12384. {
  12385. name: "Gigamacro",
  12386. height: math.unit(400000, "miles")
  12387. },
  12388. ]
  12389. ))
  12390. characterMakers.push(() => makeCharacter(
  12391. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12392. {
  12393. front: {
  12394. height: math.unit(15, "feet"),
  12395. weight: math.unit(3000, "kg"),
  12396. preyCapacity: math.unit(450, "people"),
  12397. name: "Front",
  12398. image: {
  12399. source: "./media/characters/kimiko/front.svg",
  12400. extra: 875/832,
  12401. bottom: 36/911
  12402. },
  12403. extraAttributes: {
  12404. "pawSize": {
  12405. name: "Paw Size",
  12406. power: 1,
  12407. type: "length",
  12408. base: math.unit(0.9, "meters")
  12409. },
  12410. }
  12411. },
  12412. side: {
  12413. height: math.unit(15, "feet"),
  12414. weight: math.unit(3000, "kg"),
  12415. preyCapacity: math.unit(400, "people"),
  12416. name: "Side",
  12417. image: {
  12418. source: "./media/characters/kimiko/side.svg",
  12419. extra: 448/270,
  12420. bottom: 7/455
  12421. },
  12422. extraAttributes: {
  12423. "pawSize": {
  12424. name: "Paw Size",
  12425. power: 1,
  12426. type: "length",
  12427. base: math.unit(0.9, "meters")
  12428. },
  12429. }
  12430. },
  12431. maw: {
  12432. height: math.unit(0.81, "feet"),
  12433. name: "Maw",
  12434. image: {
  12435. source: "./media/characters/kimiko/maw.svg"
  12436. }
  12437. },
  12438. },
  12439. [
  12440. {
  12441. name: "Normal",
  12442. height: math.unit(15, "feet"),
  12443. default: true
  12444. },
  12445. {
  12446. name: "Macro",
  12447. height: math.unit(220, "feet")
  12448. },
  12449. {
  12450. name: "Macro+",
  12451. height: math.unit(1450, "feet")
  12452. },
  12453. {
  12454. name: "Megamacro",
  12455. height: math.unit(11500, "feet")
  12456. },
  12457. {
  12458. name: "Gigamacro",
  12459. height: math.unit(9500, "miles")
  12460. },
  12461. {
  12462. name: "Teramacro",
  12463. height: math.unit(2208005005, "miles")
  12464. },
  12465. {
  12466. name: "Examacro",
  12467. height: math.unit(2750, "parsecs")
  12468. },
  12469. {
  12470. name: "Zettamacro",
  12471. height: math.unit(101500, "parsecs")
  12472. },
  12473. ]
  12474. ))
  12475. characterMakers.push(() => makeCharacter(
  12476. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12477. {
  12478. front: {
  12479. height: math.unit(6, "feet"),
  12480. weight: math.unit(70, "kg"),
  12481. name: "Front",
  12482. image: {
  12483. source: "./media/characters/andrew-sleepy/front.svg"
  12484. }
  12485. },
  12486. side: {
  12487. height: math.unit(6, "feet"),
  12488. weight: math.unit(70, "kg"),
  12489. name: "Side",
  12490. image: {
  12491. source: "./media/characters/andrew-sleepy/side.svg"
  12492. }
  12493. },
  12494. },
  12495. [
  12496. {
  12497. name: "Micro",
  12498. height: math.unit(1, "mm"),
  12499. default: true
  12500. },
  12501. ]
  12502. ))
  12503. characterMakers.push(() => makeCharacter(
  12504. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12505. {
  12506. front: {
  12507. height: math.unit(6, "feet"),
  12508. weight: math.unit(150, "lb"),
  12509. name: "Front",
  12510. image: {
  12511. source: "./media/characters/judio/front.svg",
  12512. extra: 1258 / 1110
  12513. }
  12514. },
  12515. },
  12516. [
  12517. {
  12518. name: "Normal",
  12519. height: math.unit(5 + 6 / 12, "feet")
  12520. },
  12521. {
  12522. name: "Macro",
  12523. height: math.unit(1000, "feet"),
  12524. default: true
  12525. },
  12526. {
  12527. name: "Megamacro",
  12528. height: math.unit(10, "miles")
  12529. },
  12530. ]
  12531. ))
  12532. characterMakers.push(() => makeCharacter(
  12533. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12534. {
  12535. frontDressed: {
  12536. height: math.unit(6, "feet"),
  12537. weight: math.unit(68, "kg"),
  12538. name: "Front (Dressed)",
  12539. image: {
  12540. source: "./media/characters/nomaxice/front-dressed.svg",
  12541. extra: 1137/824,
  12542. bottom: 74/1211
  12543. }
  12544. },
  12545. frontShorts: {
  12546. height: math.unit(6, "feet"),
  12547. weight: math.unit(68, "kg"),
  12548. name: "Front (Shorts)",
  12549. image: {
  12550. source: "./media/characters/nomaxice/front-shorts.svg",
  12551. extra: 1137/824,
  12552. bottom: 74/1211
  12553. }
  12554. },
  12555. back: {
  12556. height: math.unit(6, "feet"),
  12557. weight: math.unit(68, "kg"),
  12558. name: "Back",
  12559. image: {
  12560. source: "./media/characters/nomaxice/back.svg",
  12561. extra: 822/786,
  12562. bottom: 39/861
  12563. }
  12564. },
  12565. hand: {
  12566. height: math.unit(0.565, "feet"),
  12567. name: "Hand",
  12568. image: {
  12569. source: "./media/characters/nomaxice/hand.svg"
  12570. }
  12571. },
  12572. foot: {
  12573. height: math.unit(1, "feet"),
  12574. name: "Foot",
  12575. image: {
  12576. source: "./media/characters/nomaxice/foot.svg"
  12577. }
  12578. },
  12579. },
  12580. [
  12581. {
  12582. name: "Micro",
  12583. height: math.unit(8, "cm")
  12584. },
  12585. {
  12586. name: "Norm",
  12587. height: math.unit(1.82, "m")
  12588. },
  12589. {
  12590. name: "Norm+",
  12591. height: math.unit(8.8, "feet"),
  12592. default: true
  12593. },
  12594. {
  12595. name: "Big",
  12596. height: math.unit(8, "meters")
  12597. },
  12598. {
  12599. name: "Macro",
  12600. height: math.unit(18, "meters")
  12601. },
  12602. {
  12603. name: "Macro+",
  12604. height: math.unit(88, "meters")
  12605. },
  12606. ]
  12607. ))
  12608. characterMakers.push(() => makeCharacter(
  12609. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12610. {
  12611. front: {
  12612. height: math.unit(12, "feet"),
  12613. weight: math.unit(1.5, "tons"),
  12614. name: "Front",
  12615. image: {
  12616. source: "./media/characters/dydros/front.svg",
  12617. extra: 863 / 800,
  12618. bottom: 0.015
  12619. }
  12620. },
  12621. back: {
  12622. height: math.unit(12, "feet"),
  12623. weight: math.unit(1.5, "tons"),
  12624. name: "Back",
  12625. image: {
  12626. source: "./media/characters/dydros/back.svg",
  12627. extra: 900 / 843,
  12628. bottom: 0.005
  12629. }
  12630. },
  12631. },
  12632. [
  12633. {
  12634. name: "Normal",
  12635. height: math.unit(12, "feet"),
  12636. default: true
  12637. },
  12638. ]
  12639. ))
  12640. characterMakers.push(() => makeCharacter(
  12641. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12642. {
  12643. front: {
  12644. height: math.unit(6, "feet"),
  12645. weight: math.unit(100, "kg"),
  12646. name: "Front",
  12647. image: {
  12648. source: "./media/characters/riggi/front.svg",
  12649. extra: 5787 / 5303
  12650. }
  12651. },
  12652. hyper: {
  12653. height: math.unit(6 * 5 / 3, "feet"),
  12654. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12655. name: "Hyper",
  12656. image: {
  12657. source: "./media/characters/riggi/hyper.svg",
  12658. extra: 3595 / 3485
  12659. }
  12660. },
  12661. },
  12662. [
  12663. {
  12664. name: "Small Macro",
  12665. height: math.unit(50, "feet")
  12666. },
  12667. {
  12668. name: "Default",
  12669. height: math.unit(200, "feet"),
  12670. default: true
  12671. },
  12672. {
  12673. name: "Loom",
  12674. height: math.unit(10000, "feet")
  12675. },
  12676. {
  12677. name: "Cruising Altitude",
  12678. height: math.unit(30000, "feet")
  12679. },
  12680. {
  12681. name: "Megamacro",
  12682. height: math.unit(100, "miles")
  12683. },
  12684. {
  12685. name: "Continent Sized",
  12686. height: math.unit(2800, "miles")
  12687. },
  12688. {
  12689. name: "Earth Sized",
  12690. height: math.unit(8000, "miles")
  12691. },
  12692. ]
  12693. ))
  12694. characterMakers.push(() => makeCharacter(
  12695. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12696. {
  12697. front: {
  12698. height: math.unit(6, "feet"),
  12699. weight: math.unit(250, "lb"),
  12700. name: "Front",
  12701. image: {
  12702. source: "./media/characters/alexi/front.svg",
  12703. extra: 3483 / 3291,
  12704. bottom: 0.04
  12705. }
  12706. },
  12707. back: {
  12708. height: math.unit(6, "feet"),
  12709. weight: math.unit(250, "lb"),
  12710. name: "Back",
  12711. image: {
  12712. source: "./media/characters/alexi/back.svg",
  12713. extra: 3533 / 3356,
  12714. bottom: 0.021
  12715. }
  12716. },
  12717. frontTransforming: {
  12718. height: math.unit(8.58, "feet"),
  12719. weight: math.unit(1300, "lb"),
  12720. name: "Transforming",
  12721. image: {
  12722. source: "./media/characters/alexi/front-transforming.svg",
  12723. extra: 437 / 409,
  12724. bottom: 19 / 458.66
  12725. }
  12726. },
  12727. frontTransformed: {
  12728. height: math.unit(12.5, "feet"),
  12729. weight: math.unit(4000, "lb"),
  12730. name: "Transformed",
  12731. image: {
  12732. source: "./media/characters/alexi/front-transformed.svg",
  12733. extra: 639 / 614,
  12734. bottom: 30.55 / 671
  12735. }
  12736. },
  12737. },
  12738. [
  12739. {
  12740. name: "Normal",
  12741. height: math.unit(14, "feet"),
  12742. default: true
  12743. },
  12744. {
  12745. name: "Minimacro",
  12746. height: math.unit(30, "meters")
  12747. },
  12748. {
  12749. name: "Macro",
  12750. height: math.unit(500, "meters")
  12751. },
  12752. {
  12753. name: "Megamacro",
  12754. height: math.unit(9000, "km")
  12755. },
  12756. {
  12757. name: "Teramacro",
  12758. height: math.unit(384000, "km")
  12759. },
  12760. ]
  12761. ))
  12762. characterMakers.push(() => makeCharacter(
  12763. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12764. {
  12765. front: {
  12766. height: math.unit(6, "feet"),
  12767. weight: math.unit(150, "lb"),
  12768. name: "Front",
  12769. image: {
  12770. source: "./media/characters/kayroo/front.svg",
  12771. extra: 1153 / 1038,
  12772. bottom: 0.06
  12773. }
  12774. },
  12775. foot: {
  12776. height: math.unit(6, "feet"),
  12777. weight: math.unit(150, "lb"),
  12778. name: "Foot",
  12779. image: {
  12780. source: "./media/characters/kayroo/foot.svg"
  12781. }
  12782. },
  12783. },
  12784. [
  12785. {
  12786. name: "Normal",
  12787. height: math.unit(8, "feet"),
  12788. default: true
  12789. },
  12790. {
  12791. name: "Minimacro",
  12792. height: math.unit(250, "feet")
  12793. },
  12794. {
  12795. name: "Macro",
  12796. height: math.unit(2800, "feet")
  12797. },
  12798. {
  12799. name: "Megamacro",
  12800. height: math.unit(5200, "feet")
  12801. },
  12802. {
  12803. name: "Gigamacro",
  12804. height: math.unit(27000, "feet")
  12805. },
  12806. {
  12807. name: "Omega",
  12808. height: math.unit(45000, "feet")
  12809. },
  12810. ]
  12811. ))
  12812. characterMakers.push(() => makeCharacter(
  12813. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12814. {
  12815. front: {
  12816. height: math.unit(18, "feet"),
  12817. weight: math.unit(5800, "lb"),
  12818. name: "Front",
  12819. image: {
  12820. source: "./media/characters/rhys/front.svg",
  12821. extra: 3386 / 3090,
  12822. bottom: 0.07
  12823. }
  12824. },
  12825. },
  12826. [
  12827. {
  12828. name: "Normal",
  12829. height: math.unit(18, "feet"),
  12830. default: true
  12831. },
  12832. {
  12833. name: "Working Size",
  12834. height: math.unit(200, "feet")
  12835. },
  12836. {
  12837. name: "Demolition Size",
  12838. height: math.unit(2000, "feet")
  12839. },
  12840. {
  12841. name: "Maximum Licensed Size",
  12842. height: math.unit(5, "miles")
  12843. },
  12844. {
  12845. name: "Maximum Observed Size",
  12846. height: math.unit(10, "yottameters")
  12847. },
  12848. ]
  12849. ))
  12850. characterMakers.push(() => makeCharacter(
  12851. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12852. {
  12853. front: {
  12854. height: math.unit(6, "feet"),
  12855. weight: math.unit(250, "lb"),
  12856. name: "Front",
  12857. image: {
  12858. source: "./media/characters/toto/front.svg",
  12859. extra: 527 / 479,
  12860. bottom: 0.05
  12861. }
  12862. },
  12863. },
  12864. [
  12865. {
  12866. name: "Micro",
  12867. height: math.unit(3, "feet")
  12868. },
  12869. {
  12870. name: "Normal",
  12871. height: math.unit(10, "feet")
  12872. },
  12873. {
  12874. name: "Macro",
  12875. height: math.unit(150, "feet"),
  12876. default: true
  12877. },
  12878. {
  12879. name: "Megamacro",
  12880. height: math.unit(1200, "feet")
  12881. },
  12882. ]
  12883. ))
  12884. characterMakers.push(() => makeCharacter(
  12885. { name: "King", species: ["lion"], tags: ["anthro"] },
  12886. {
  12887. back: {
  12888. height: math.unit(6, "feet"),
  12889. weight: math.unit(150, "lb"),
  12890. name: "Back",
  12891. image: {
  12892. source: "./media/characters/king/back.svg"
  12893. }
  12894. },
  12895. },
  12896. [
  12897. {
  12898. name: "Micro",
  12899. height: math.unit(2, "inches")
  12900. },
  12901. {
  12902. name: "Normal",
  12903. height: math.unit(8, "feet")
  12904. },
  12905. {
  12906. name: "Macro",
  12907. height: math.unit(200, "feet"),
  12908. default: true
  12909. },
  12910. {
  12911. name: "Megamacro",
  12912. height: math.unit(50, "miles")
  12913. },
  12914. ]
  12915. ))
  12916. characterMakers.push(() => makeCharacter(
  12917. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12918. {
  12919. front: {
  12920. height: math.unit(11, "feet"),
  12921. weight: math.unit(1400, "lb"),
  12922. name: "Front",
  12923. image: {
  12924. source: "./media/characters/cordite/front.svg",
  12925. extra: 1919/1827,
  12926. bottom: 40/1959
  12927. }
  12928. },
  12929. side: {
  12930. height: math.unit(11, "feet"),
  12931. weight: math.unit(1400, "lb"),
  12932. name: "Side",
  12933. image: {
  12934. source: "./media/characters/cordite/side.svg",
  12935. extra: 1908/1793,
  12936. bottom: 38/1946
  12937. }
  12938. },
  12939. back: {
  12940. height: math.unit(11, "feet"),
  12941. weight: math.unit(1400, "lb"),
  12942. name: "Back",
  12943. image: {
  12944. source: "./media/characters/cordite/back.svg",
  12945. extra: 1938/1837,
  12946. bottom: 10/1948
  12947. }
  12948. },
  12949. feral: {
  12950. height: math.unit(2, "feet"),
  12951. weight: math.unit(90, "lb"),
  12952. name: "Feral",
  12953. image: {
  12954. source: "./media/characters/cordite/feral.svg",
  12955. extra: 1260 / 755,
  12956. bottom: 0.05
  12957. }
  12958. },
  12959. },
  12960. [
  12961. {
  12962. name: "Normal",
  12963. height: math.unit(11, "feet"),
  12964. default: true
  12965. },
  12966. ]
  12967. ))
  12968. characterMakers.push(() => makeCharacter(
  12969. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12970. {
  12971. front: {
  12972. height: math.unit(6, "feet"),
  12973. weight: math.unit(150, "lb"),
  12974. name: "Front",
  12975. image: {
  12976. source: "./media/characters/pianostrong/front.svg",
  12977. extra: 6577 / 6254,
  12978. bottom: 0.02
  12979. }
  12980. },
  12981. side: {
  12982. height: math.unit(6, "feet"),
  12983. weight: math.unit(150, "lb"),
  12984. name: "Side",
  12985. image: {
  12986. source: "./media/characters/pianostrong/side.svg",
  12987. extra: 6106 / 5730
  12988. }
  12989. },
  12990. back: {
  12991. height: math.unit(6, "feet"),
  12992. weight: math.unit(150, "lb"),
  12993. name: "Back",
  12994. image: {
  12995. source: "./media/characters/pianostrong/back.svg",
  12996. extra: 6085 / 5733,
  12997. bottom: 0.01
  12998. }
  12999. },
  13000. },
  13001. [
  13002. {
  13003. name: "Macro",
  13004. height: math.unit(100, "feet")
  13005. },
  13006. {
  13007. name: "Macro+",
  13008. height: math.unit(300, "feet"),
  13009. default: true
  13010. },
  13011. {
  13012. name: "Macro++",
  13013. height: math.unit(1000, "feet")
  13014. },
  13015. ]
  13016. ))
  13017. characterMakers.push(() => makeCharacter(
  13018. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  13019. {
  13020. front: {
  13021. height: math.unit(6, "feet"),
  13022. weight: math.unit(150, "lb"),
  13023. name: "Front",
  13024. image: {
  13025. source: "./media/characters/kona/front.svg",
  13026. extra: 2960 / 2629,
  13027. bottom: 0.005
  13028. }
  13029. },
  13030. },
  13031. [
  13032. {
  13033. name: "Normal",
  13034. height: math.unit(11 + 8 / 12, "feet")
  13035. },
  13036. {
  13037. name: "Macro",
  13038. height: math.unit(850, "feet"),
  13039. default: true
  13040. },
  13041. {
  13042. name: "Macro+",
  13043. height: math.unit(1.5, "km"),
  13044. default: true
  13045. },
  13046. {
  13047. name: "Megamacro",
  13048. height: math.unit(80, "miles")
  13049. },
  13050. {
  13051. name: "Gigamacro",
  13052. height: math.unit(3500, "miles")
  13053. },
  13054. ]
  13055. ))
  13056. characterMakers.push(() => makeCharacter(
  13057. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  13058. {
  13059. side: {
  13060. height: math.unit(1.9, "meters"),
  13061. weight: math.unit(326, "kg"),
  13062. name: "Side",
  13063. image: {
  13064. source: "./media/characters/levi/side.svg",
  13065. extra: 1704 / 1334,
  13066. bottom: 0.02
  13067. }
  13068. },
  13069. },
  13070. [
  13071. {
  13072. name: "Normal",
  13073. height: math.unit(1.9, "meters"),
  13074. default: true
  13075. },
  13076. {
  13077. name: "Macro",
  13078. height: math.unit(20, "meters")
  13079. },
  13080. {
  13081. name: "Macro+",
  13082. height: math.unit(200, "meters")
  13083. },
  13084. {
  13085. name: "Megamacro",
  13086. height: math.unit(2, "km")
  13087. },
  13088. {
  13089. name: "Megamacro+",
  13090. height: math.unit(20, "km")
  13091. },
  13092. {
  13093. name: "Gigamacro",
  13094. height: math.unit(2500, "km")
  13095. },
  13096. {
  13097. name: "Gigamacro+",
  13098. height: math.unit(120000, "km")
  13099. },
  13100. {
  13101. name: "Teramacro",
  13102. height: math.unit(7.77e6, "km")
  13103. },
  13104. ]
  13105. ))
  13106. characterMakers.push(() => makeCharacter(
  13107. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  13108. {
  13109. front: {
  13110. height: math.unit(6 + 4/12, "feet"),
  13111. weight: math.unit(190, "lb"),
  13112. name: "Front",
  13113. image: {
  13114. source: "./media/characters/bmc/front.svg",
  13115. extra: 1626/1472,
  13116. bottom: 79/1705
  13117. }
  13118. },
  13119. back: {
  13120. height: math.unit(6 + 4/12, "feet"),
  13121. weight: math.unit(190, "lb"),
  13122. name: "Back",
  13123. image: {
  13124. source: "./media/characters/bmc/back.svg",
  13125. extra: 1640/1479,
  13126. bottom: 45/1685
  13127. }
  13128. },
  13129. frontArmor: {
  13130. height: math.unit(6 + 4/12, "feet"),
  13131. weight: math.unit(190, "lb"),
  13132. name: "Front-armor",
  13133. image: {
  13134. source: "./media/characters/bmc/front-armor.svg",
  13135. extra: 1538/1468,
  13136. bottom: 79/1617
  13137. }
  13138. },
  13139. },
  13140. [
  13141. {
  13142. name: "Human-sized",
  13143. height: math.unit(6 + 4 / 12, "feet")
  13144. },
  13145. {
  13146. name: "Interactive Size",
  13147. height: math.unit(25, "feet")
  13148. },
  13149. {
  13150. name: "Small",
  13151. height: math.unit(250, "feet")
  13152. },
  13153. {
  13154. name: "Normal",
  13155. height: math.unit(1250, "feet"),
  13156. default: true
  13157. },
  13158. {
  13159. name: "Good Day",
  13160. height: math.unit(88, "miles")
  13161. },
  13162. {
  13163. name: "Largest Measured Size",
  13164. height: math.unit(105.960, "galaxies")
  13165. },
  13166. ]
  13167. ))
  13168. characterMakers.push(() => makeCharacter(
  13169. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  13170. {
  13171. front: {
  13172. height: math.unit(20, "feet"),
  13173. weight: math.unit(2016, "kg"),
  13174. name: "Front",
  13175. image: {
  13176. source: "./media/characters/sven-the-kaiju/front.svg",
  13177. extra: 1277/1250,
  13178. bottom: 35/1312
  13179. }
  13180. },
  13181. mouth: {
  13182. height: math.unit(1.85, "feet"),
  13183. name: "Mouth",
  13184. image: {
  13185. source: "./media/characters/sven-the-kaiju/mouth.svg"
  13186. }
  13187. },
  13188. },
  13189. [
  13190. {
  13191. name: "Fairy",
  13192. height: math.unit(6, "inches")
  13193. },
  13194. {
  13195. name: "Normal",
  13196. height: math.unit(20, "feet"),
  13197. default: true
  13198. },
  13199. {
  13200. name: "Rampage",
  13201. height: math.unit(200, "feet")
  13202. },
  13203. {
  13204. name: "Archfey Forest Guardian",
  13205. height: math.unit(1, "mile")
  13206. },
  13207. ]
  13208. ))
  13209. characterMakers.push(() => makeCharacter(
  13210. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  13211. {
  13212. front: {
  13213. height: math.unit(4, "meters"),
  13214. weight: math.unit(2, "tons"),
  13215. name: "Front",
  13216. image: {
  13217. source: "./media/characters/marik/front.svg",
  13218. extra: 1057 / 1003,
  13219. bottom: 0.08
  13220. }
  13221. },
  13222. },
  13223. [
  13224. {
  13225. name: "Normal",
  13226. height: math.unit(4, "meters"),
  13227. default: true
  13228. },
  13229. {
  13230. name: "Macro",
  13231. height: math.unit(20, "meters")
  13232. },
  13233. {
  13234. name: "Megamacro",
  13235. height: math.unit(50, "km")
  13236. },
  13237. {
  13238. name: "Gigamacro",
  13239. height: math.unit(100, "km")
  13240. },
  13241. {
  13242. name: "Alpha Macro",
  13243. height: math.unit(7.88e7, "yottameters")
  13244. },
  13245. ]
  13246. ))
  13247. characterMakers.push(() => makeCharacter(
  13248. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  13249. {
  13250. front: {
  13251. height: math.unit(6, "feet"),
  13252. weight: math.unit(110, "lb"),
  13253. name: "Front",
  13254. image: {
  13255. source: "./media/characters/mel/front.svg",
  13256. extra: 736 / 617,
  13257. bottom: 0.017
  13258. }
  13259. },
  13260. },
  13261. [
  13262. {
  13263. name: "Pico",
  13264. height: math.unit(3, "pm")
  13265. },
  13266. {
  13267. name: "Nano",
  13268. height: math.unit(3, "nm")
  13269. },
  13270. {
  13271. name: "Micro",
  13272. height: math.unit(0.3, "mm"),
  13273. default: true
  13274. },
  13275. {
  13276. name: "Micro+",
  13277. height: math.unit(3, "mm")
  13278. },
  13279. {
  13280. name: "Normal",
  13281. height: math.unit(5 + 10.5 / 12, "feet")
  13282. },
  13283. ]
  13284. ))
  13285. characterMakers.push(() => makeCharacter(
  13286. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  13287. {
  13288. kaiju: {
  13289. height: math.unit(1.75, "meters"),
  13290. weight: math.unit(55, "kg"),
  13291. name: "Kaiju",
  13292. image: {
  13293. source: "./media/characters/lykonous/kaiju.svg",
  13294. extra: 1055 / 946,
  13295. bottom: 0.135
  13296. }
  13297. },
  13298. },
  13299. [
  13300. {
  13301. name: "Normal",
  13302. height: math.unit(2.5, "meters"),
  13303. default: true
  13304. },
  13305. {
  13306. name: "Kaiju Dragon",
  13307. height: math.unit(60, "meters")
  13308. },
  13309. {
  13310. name: "Mega Kaiju",
  13311. height: math.unit(120, "km")
  13312. },
  13313. {
  13314. name: "Giga Kaiju",
  13315. height: math.unit(200, "megameters")
  13316. },
  13317. {
  13318. name: "Terra Kaiju",
  13319. height: math.unit(400, "gigameters")
  13320. },
  13321. {
  13322. name: "Kaiju Dragon God",
  13323. height: math.unit(13000, "exaparsecs")
  13324. },
  13325. ]
  13326. ))
  13327. characterMakers.push(() => makeCharacter(
  13328. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  13329. {
  13330. front: {
  13331. height: math.unit(6, "feet"),
  13332. weight: math.unit(150, "lb"),
  13333. name: "Front",
  13334. image: {
  13335. source: "./media/characters/blü/front.svg",
  13336. extra: 1883 / 1564,
  13337. bottom: 0.031
  13338. }
  13339. },
  13340. },
  13341. [
  13342. {
  13343. name: "Normal",
  13344. height: math.unit(13, "feet"),
  13345. default: true
  13346. },
  13347. {
  13348. name: "Big Boi",
  13349. height: math.unit(150, "meters")
  13350. },
  13351. {
  13352. name: "Mini Stomper",
  13353. height: math.unit(300, "meters")
  13354. },
  13355. {
  13356. name: "Macro",
  13357. height: math.unit(1000, "meters")
  13358. },
  13359. {
  13360. name: "Megamacro",
  13361. height: math.unit(11000, "meters")
  13362. },
  13363. {
  13364. name: "Gigamacro",
  13365. height: math.unit(11000, "km")
  13366. },
  13367. {
  13368. name: "Teramacro",
  13369. height: math.unit(420000, "km")
  13370. },
  13371. {
  13372. name: "Examacro",
  13373. height: math.unit(120, "parsecs")
  13374. },
  13375. {
  13376. name: "God Tho",
  13377. height: math.unit(98000000000, "parsecs")
  13378. },
  13379. ]
  13380. ))
  13381. characterMakers.push(() => makeCharacter(
  13382. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13383. {
  13384. taurFront: {
  13385. height: math.unit(6, "feet"),
  13386. weight: math.unit(200, "lb"),
  13387. name: "Taur (Front)",
  13388. image: {
  13389. source: "./media/characters/scales/taur-front.svg",
  13390. extra: 1,
  13391. bottom: 0.05
  13392. }
  13393. },
  13394. taurBack: {
  13395. height: math.unit(6, "feet"),
  13396. weight: math.unit(200, "lb"),
  13397. name: "Taur (Back)",
  13398. image: {
  13399. source: "./media/characters/scales/taur-back.svg",
  13400. extra: 1,
  13401. bottom: 0.08
  13402. }
  13403. },
  13404. anthro: {
  13405. height: math.unit(6 * 7 / 12, "feet"),
  13406. weight: math.unit(100, "lb"),
  13407. name: "Anthro",
  13408. image: {
  13409. source: "./media/characters/scales/anthro.svg",
  13410. extra: 1,
  13411. bottom: 0.06
  13412. }
  13413. },
  13414. },
  13415. [
  13416. {
  13417. name: "Normal",
  13418. height: math.unit(12, "feet"),
  13419. default: true
  13420. },
  13421. ]
  13422. ))
  13423. characterMakers.push(() => makeCharacter(
  13424. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13425. {
  13426. front: {
  13427. height: math.unit(6, "feet"),
  13428. weight: math.unit(150, "lb"),
  13429. name: "Front",
  13430. image: {
  13431. source: "./media/characters/koragos/front.svg",
  13432. extra: 841 / 794,
  13433. bottom: 0.035
  13434. }
  13435. },
  13436. back: {
  13437. height: math.unit(6, "feet"),
  13438. weight: math.unit(150, "lb"),
  13439. name: "Back",
  13440. image: {
  13441. source: "./media/characters/koragos/back.svg",
  13442. extra: 841 / 810,
  13443. bottom: 0.022
  13444. }
  13445. },
  13446. },
  13447. [
  13448. {
  13449. name: "Normal",
  13450. height: math.unit(6 + 11 / 12, "feet"),
  13451. default: true
  13452. },
  13453. {
  13454. name: "Macro",
  13455. height: math.unit(490, "feet")
  13456. },
  13457. {
  13458. name: "Megamacro",
  13459. height: math.unit(10, "miles")
  13460. },
  13461. {
  13462. name: "Gigamacro",
  13463. height: math.unit(50, "miles")
  13464. },
  13465. ]
  13466. ))
  13467. characterMakers.push(() => makeCharacter(
  13468. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13469. {
  13470. front: {
  13471. height: math.unit(6, "feet"),
  13472. weight: math.unit(250, "lb"),
  13473. name: "Front",
  13474. image: {
  13475. source: "./media/characters/xylrem/front.svg",
  13476. extra: 3323 / 3050,
  13477. bottom: 0.065
  13478. }
  13479. },
  13480. },
  13481. [
  13482. {
  13483. name: "Micro",
  13484. height: math.unit(4, "feet")
  13485. },
  13486. {
  13487. name: "Normal",
  13488. height: math.unit(16, "feet"),
  13489. default: true
  13490. },
  13491. {
  13492. name: "Macro",
  13493. height: math.unit(2720, "feet")
  13494. },
  13495. {
  13496. name: "Megamacro",
  13497. height: math.unit(25000, "miles")
  13498. },
  13499. ]
  13500. ))
  13501. characterMakers.push(() => makeCharacter(
  13502. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13503. {
  13504. front: {
  13505. height: math.unit(8, "feet"),
  13506. weight: math.unit(250, "kg"),
  13507. name: "Front",
  13508. image: {
  13509. source: "./media/characters/ikideru/front.svg",
  13510. extra: 930 / 870,
  13511. bottom: 0.087
  13512. }
  13513. },
  13514. back: {
  13515. height: math.unit(8, "feet"),
  13516. weight: math.unit(250, "kg"),
  13517. name: "Back",
  13518. image: {
  13519. source: "./media/characters/ikideru/back.svg",
  13520. extra: 919 / 852,
  13521. bottom: 0.055
  13522. }
  13523. },
  13524. },
  13525. [
  13526. {
  13527. name: "Rare",
  13528. height: math.unit(8, "feet"),
  13529. default: true
  13530. },
  13531. {
  13532. name: "Playful Loom",
  13533. height: math.unit(80, "feet")
  13534. },
  13535. {
  13536. name: "City Leaner",
  13537. height: math.unit(230, "feet")
  13538. },
  13539. {
  13540. name: "Megamacro",
  13541. height: math.unit(2500, "feet")
  13542. },
  13543. {
  13544. name: "Gigamacro",
  13545. height: math.unit(26400, "feet")
  13546. },
  13547. {
  13548. name: "Tectonic Shifter",
  13549. height: math.unit(1.7, "megameters")
  13550. },
  13551. {
  13552. name: "Planet Carer",
  13553. height: math.unit(21, "megameters")
  13554. },
  13555. {
  13556. name: "God",
  13557. height: math.unit(11157.22, "parsecs")
  13558. },
  13559. ]
  13560. ))
  13561. characterMakers.push(() => makeCharacter(
  13562. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13563. {
  13564. front: {
  13565. height: math.unit(6, "feet"),
  13566. weight: math.unit(120, "lb"),
  13567. name: "Front",
  13568. image: {
  13569. source: "./media/characters/neo/front.svg"
  13570. }
  13571. },
  13572. },
  13573. [
  13574. {
  13575. name: "Micro",
  13576. height: math.unit(2, "inches"),
  13577. default: true
  13578. },
  13579. {
  13580. name: "Human Size",
  13581. height: math.unit(5 + 8 / 12, "feet")
  13582. },
  13583. ]
  13584. ))
  13585. characterMakers.push(() => makeCharacter(
  13586. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13587. {
  13588. front: {
  13589. height: math.unit(13 + 10 / 12, "feet"),
  13590. weight: math.unit(5320, "lb"),
  13591. name: "Front",
  13592. image: {
  13593. source: "./media/characters/chauncey-chantz/front.svg",
  13594. extra: 1587 / 1435,
  13595. bottom: 0.02
  13596. }
  13597. },
  13598. },
  13599. [
  13600. {
  13601. name: "Normal",
  13602. height: math.unit(13 + 10 / 12, "feet"),
  13603. default: true
  13604. },
  13605. {
  13606. name: "Macro",
  13607. height: math.unit(45, "feet")
  13608. },
  13609. {
  13610. name: "Megamacro",
  13611. height: math.unit(250, "miles")
  13612. },
  13613. {
  13614. name: "Planetary",
  13615. height: math.unit(10000, "miles")
  13616. },
  13617. {
  13618. name: "Galactic",
  13619. height: math.unit(40000, "parsecs")
  13620. },
  13621. {
  13622. name: "Universal",
  13623. height: math.unit(1, "yottameter")
  13624. },
  13625. ]
  13626. ))
  13627. characterMakers.push(() => makeCharacter(
  13628. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13629. {
  13630. front: {
  13631. height: math.unit(6, "feet"),
  13632. weight: math.unit(150, "lb"),
  13633. name: "Front",
  13634. image: {
  13635. source: "./media/characters/epifox/front.svg",
  13636. extra: 1,
  13637. bottom: 0.075
  13638. }
  13639. },
  13640. },
  13641. [
  13642. {
  13643. name: "Micro",
  13644. height: math.unit(6, "inches")
  13645. },
  13646. {
  13647. name: "Normal",
  13648. height: math.unit(12, "feet"),
  13649. default: true
  13650. },
  13651. {
  13652. name: "Macro",
  13653. height: math.unit(3810, "feet")
  13654. },
  13655. {
  13656. name: "Megamacro",
  13657. height: math.unit(500, "miles")
  13658. },
  13659. ]
  13660. ))
  13661. characterMakers.push(() => makeCharacter(
  13662. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13663. {
  13664. front: {
  13665. height: math.unit(1.8796, "m"),
  13666. weight: math.unit(230, "lb"),
  13667. name: "Front",
  13668. image: {
  13669. source: "./media/characters/colin-t/front.svg",
  13670. extra: 1272 / 1193,
  13671. bottom: 0.07
  13672. }
  13673. },
  13674. },
  13675. [
  13676. {
  13677. name: "Micro",
  13678. height: math.unit(0.571, "meters")
  13679. },
  13680. {
  13681. name: "Normal",
  13682. height: math.unit(1.8796, "meters"),
  13683. default: true
  13684. },
  13685. {
  13686. name: "Tall",
  13687. height: math.unit(4, "meters")
  13688. },
  13689. {
  13690. name: "Macro",
  13691. height: math.unit(67.241, "meters")
  13692. },
  13693. {
  13694. name: "Megamacro",
  13695. height: math.unit(371.856, "meters")
  13696. },
  13697. {
  13698. name: "Planetary",
  13699. height: math.unit(12631.5689, "km")
  13700. },
  13701. ]
  13702. ))
  13703. characterMakers.push(() => makeCharacter(
  13704. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13705. {
  13706. front: {
  13707. height: math.unit(1.85, "meters"),
  13708. weight: math.unit(80, "kg"),
  13709. name: "Front",
  13710. image: {
  13711. source: "./media/characters/matvei/front.svg",
  13712. extra: 456/447,
  13713. bottom: 8/464
  13714. }
  13715. },
  13716. back: {
  13717. height: math.unit(1.85, "meters"),
  13718. weight: math.unit(80, "kg"),
  13719. name: "Back",
  13720. image: {
  13721. source: "./media/characters/matvei/back.svg",
  13722. extra: 434/427,
  13723. bottom: 11/445
  13724. }
  13725. },
  13726. },
  13727. [
  13728. {
  13729. name: "Normal",
  13730. height: math.unit(1.85, "meters"),
  13731. default: true
  13732. },
  13733. ]
  13734. ))
  13735. characterMakers.push(() => makeCharacter(
  13736. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13737. {
  13738. front: {
  13739. height: math.unit(5 + 9 / 12, "feet"),
  13740. weight: math.unit(70, "lb"),
  13741. name: "Front",
  13742. image: {
  13743. source: "./media/characters/quincy/front.svg",
  13744. extra: 3041 / 2751
  13745. }
  13746. },
  13747. back: {
  13748. height: math.unit(5 + 9 / 12, "feet"),
  13749. weight: math.unit(70, "lb"),
  13750. name: "Back",
  13751. image: {
  13752. source: "./media/characters/quincy/back.svg",
  13753. extra: 3041 / 2751
  13754. }
  13755. },
  13756. flying: {
  13757. height: math.unit(5 + 4 / 12, "feet"),
  13758. weight: math.unit(70, "lb"),
  13759. name: "Flying",
  13760. image: {
  13761. source: "./media/characters/quincy/flying.svg",
  13762. extra: 1044 / 930
  13763. }
  13764. },
  13765. },
  13766. [
  13767. {
  13768. name: "Micro",
  13769. height: math.unit(3, "cm")
  13770. },
  13771. {
  13772. name: "Normal",
  13773. height: math.unit(5 + 9 / 12, "feet")
  13774. },
  13775. {
  13776. name: "Macro",
  13777. height: math.unit(200, "meters"),
  13778. default: true
  13779. },
  13780. {
  13781. name: "Megamacro",
  13782. height: math.unit(1000, "meters")
  13783. },
  13784. ]
  13785. ))
  13786. characterMakers.push(() => makeCharacter(
  13787. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13788. {
  13789. front: {
  13790. height: math.unit(3 + 11/12, "feet"),
  13791. weight: math.unit(50, "lb"),
  13792. name: "Front",
  13793. image: {
  13794. source: "./media/characters/vanrel/front.svg",
  13795. extra: 1104/949,
  13796. bottom: 52/1156
  13797. }
  13798. },
  13799. back: {
  13800. height: math.unit(3 + 11/12, "feet"),
  13801. weight: math.unit(50, "lb"),
  13802. name: "Back",
  13803. image: {
  13804. source: "./media/characters/vanrel/back.svg",
  13805. extra: 1119/976,
  13806. bottom: 37/1156
  13807. }
  13808. },
  13809. tome: {
  13810. height: math.unit(1.35, "feet"),
  13811. weight: math.unit(10, "lb"),
  13812. name: "Vanrel's Tome",
  13813. rename: true,
  13814. image: {
  13815. source: "./media/characters/vanrel/tome.svg"
  13816. }
  13817. },
  13818. beans: {
  13819. height: math.unit(0.89, "feet"),
  13820. name: "Beans",
  13821. image: {
  13822. source: "./media/characters/vanrel/beans.svg"
  13823. }
  13824. },
  13825. },
  13826. [
  13827. {
  13828. name: "Normal",
  13829. height: math.unit(3 + 11/12, "feet"),
  13830. default: true
  13831. },
  13832. ]
  13833. ))
  13834. characterMakers.push(() => makeCharacter(
  13835. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13836. {
  13837. front: {
  13838. height: math.unit(7 + 5 / 12, "feet"),
  13839. name: "Front",
  13840. image: {
  13841. source: "./media/characters/kuiper-vanrel/front.svg",
  13842. extra: 1219/1169,
  13843. bottom: 69/1288
  13844. }
  13845. },
  13846. back: {
  13847. height: math.unit(7 + 5 / 12, "feet"),
  13848. name: "Back",
  13849. image: {
  13850. source: "./media/characters/kuiper-vanrel/back.svg",
  13851. extra: 1236/1193,
  13852. bottom: 27/1263
  13853. }
  13854. },
  13855. foot: {
  13856. height: math.unit(0.55, "meters"),
  13857. name: "Foot",
  13858. image: {
  13859. source: "./media/characters/kuiper-vanrel/foot.svg",
  13860. }
  13861. },
  13862. battle: {
  13863. height: math.unit(6.824, "feet"),
  13864. name: "Battle",
  13865. image: {
  13866. source: "./media/characters/kuiper-vanrel/battle.svg",
  13867. extra: 1466 / 1327,
  13868. bottom: 29 / 1492.5
  13869. }
  13870. },
  13871. meerkui: {
  13872. height: math.unit(18, "inches"),
  13873. name: "Meerkui",
  13874. image: {
  13875. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13876. extra: 1354/1289,
  13877. bottom: 69/1423
  13878. }
  13879. },
  13880. },
  13881. [
  13882. {
  13883. name: "Normal",
  13884. height: math.unit(7 + 5 / 12, "feet"),
  13885. default: true
  13886. },
  13887. ]
  13888. ))
  13889. characterMakers.push(() => makeCharacter(
  13890. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13891. {
  13892. front: {
  13893. height: math.unit(8 + 5 / 12, "feet"),
  13894. name: "Front",
  13895. image: {
  13896. source: "./media/characters/keset-vanrel/front.svg",
  13897. extra: 1231/1148,
  13898. bottom: 82/1313
  13899. }
  13900. },
  13901. back: {
  13902. height: math.unit(8 + 5 / 12, "feet"),
  13903. name: "Back",
  13904. image: {
  13905. source: "./media/characters/keset-vanrel/back.svg",
  13906. extra: 1240/1174,
  13907. bottom: 33/1273
  13908. }
  13909. },
  13910. hand: {
  13911. height: math.unit(0.6, "meters"),
  13912. name: "Hand",
  13913. image: {
  13914. source: "./media/characters/keset-vanrel/hand.svg"
  13915. }
  13916. },
  13917. foot: {
  13918. height: math.unit(0.94978, "meters"),
  13919. name: "Foot",
  13920. image: {
  13921. source: "./media/characters/keset-vanrel/foot.svg"
  13922. }
  13923. },
  13924. battle: {
  13925. height: math.unit(7.408, "feet"),
  13926. name: "Battle",
  13927. image: {
  13928. source: "./media/characters/keset-vanrel/battle.svg",
  13929. extra: 1890 / 1386,
  13930. bottom: 73.28 / 1970
  13931. }
  13932. },
  13933. },
  13934. [
  13935. {
  13936. name: "Normal",
  13937. height: math.unit(8 + 5 / 12, "feet"),
  13938. default: true
  13939. },
  13940. ]
  13941. ))
  13942. characterMakers.push(() => makeCharacter(
  13943. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13944. {
  13945. front: {
  13946. height: math.unit(6, "feet"),
  13947. weight: math.unit(150, "lb"),
  13948. name: "Front",
  13949. image: {
  13950. source: "./media/characters/neos/front.svg",
  13951. extra: 1696 / 992,
  13952. bottom: 0.14
  13953. }
  13954. },
  13955. },
  13956. [
  13957. {
  13958. name: "Normal",
  13959. height: math.unit(54, "cm"),
  13960. default: true
  13961. },
  13962. {
  13963. name: "Macro",
  13964. height: math.unit(100, "m")
  13965. },
  13966. {
  13967. name: "Megamacro",
  13968. height: math.unit(10, "km")
  13969. },
  13970. {
  13971. name: "Megamacro+",
  13972. height: math.unit(100, "km")
  13973. },
  13974. {
  13975. name: "Gigamacro",
  13976. height: math.unit(100, "Mm")
  13977. },
  13978. {
  13979. name: "Teramacro",
  13980. height: math.unit(100, "Gm")
  13981. },
  13982. {
  13983. name: "Examacro",
  13984. height: math.unit(100, "Em")
  13985. },
  13986. {
  13987. name: "Godly",
  13988. height: math.unit(10000, "Ym")
  13989. },
  13990. {
  13991. name: "Beyond Godly",
  13992. height: math.unit(25, "multiverses")
  13993. },
  13994. ]
  13995. ))
  13996. characterMakers.push(() => makeCharacter(
  13997. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13998. {
  13999. fluide_tame: {
  14000. height: math.unit(5, "feet"),
  14001. name: "Tame",
  14002. image: {
  14003. source: "./media/characters/sammy-mouse/fluide-tame.svg",
  14004. extra: 1655/1574,
  14005. bottom: 231/1886
  14006. },
  14007. form: "fluide",
  14008. default: true
  14009. },
  14010. fluide_nude: {
  14011. height: math.unit(5, "feet"),
  14012. name: "Nude",
  14013. image: {
  14014. source: "./media/characters/sammy-mouse/fluide-nude.svg",
  14015. extra: 1655/1574,
  14016. bottom: 231/1886
  14017. },
  14018. form: "fluide",
  14019. },
  14020. male_tame: {
  14021. height: math.unit(5, "feet"),
  14022. name: "Tame",
  14023. image: {
  14024. source: "./media/characters/sammy-mouse/male-tame.svg",
  14025. extra: 1655/1574,
  14026. bottom: 231/1886
  14027. },
  14028. form: "male",
  14029. default: true
  14030. },
  14031. male_nude: {
  14032. height: math.unit(5, "feet"),
  14033. name: "Nude",
  14034. image: {
  14035. source: "./media/characters/sammy-mouse/male-nude.svg",
  14036. extra: 1655/1574,
  14037. bottom: 231/1886
  14038. },
  14039. form: "male",
  14040. },
  14041. female_nude: {
  14042. height: math.unit(5, "feet"),
  14043. name: "Nude",
  14044. image: {
  14045. source: "./media/characters/sammy-mouse/female-nude.svg",
  14046. extra: 1655/1574,
  14047. bottom: 231/1886
  14048. },
  14049. form: "female",
  14050. default: true
  14051. },
  14052. mouth: {
  14053. height: math.unit(0.32, "feet"),
  14054. name: "Mouth",
  14055. image: {
  14056. source: "./media/characters/sammy-mouse/mouth.svg"
  14057. },
  14058. allForms: true
  14059. },
  14060. paw: {
  14061. height: math.unit(0.42, "feet"),
  14062. name: "Paw",
  14063. image: {
  14064. source: "./media/characters/sammy-mouse/paw.svg"
  14065. },
  14066. allForms: true
  14067. },
  14068. },
  14069. [
  14070. {
  14071. name: "Micro",
  14072. height: math.unit(5, "inches"),
  14073. allForms: true
  14074. },
  14075. {
  14076. name: "Normal",
  14077. height: math.unit(5, "feet"),
  14078. default: true,
  14079. allForms: true
  14080. },
  14081. {
  14082. name: "Macro",
  14083. height: math.unit(60, "feet"),
  14084. allForms: true
  14085. },
  14086. ],
  14087. {
  14088. "fluide": {
  14089. name: "Fluide",
  14090. default: true
  14091. },
  14092. "male": {
  14093. name: "Male",
  14094. },
  14095. "female": {
  14096. name: "Female",
  14097. },
  14098. }
  14099. ))
  14100. characterMakers.push(() => makeCharacter(
  14101. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  14102. {
  14103. front: {
  14104. height: math.unit(4, "feet"),
  14105. weight: math.unit(50, "lb"),
  14106. name: "Front",
  14107. image: {
  14108. source: "./media/characters/kole/front.svg",
  14109. extra: 1423 / 1303,
  14110. bottom: 0.025
  14111. }
  14112. },
  14113. back: {
  14114. height: math.unit(4, "feet"),
  14115. weight: math.unit(50, "lb"),
  14116. name: "Back",
  14117. image: {
  14118. source: "./media/characters/kole/back.svg",
  14119. extra: 1426 / 1280,
  14120. bottom: 0.02
  14121. }
  14122. },
  14123. },
  14124. [
  14125. {
  14126. name: "Normal",
  14127. height: math.unit(4, "feet"),
  14128. default: true
  14129. },
  14130. ]
  14131. ))
  14132. characterMakers.push(() => makeCharacter(
  14133. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  14134. {
  14135. front: {
  14136. height: math.unit(2.5, "feet"),
  14137. weight: math.unit(32, "lb"),
  14138. name: "Front",
  14139. image: {
  14140. source: "./media/characters/rufran/front.svg",
  14141. extra: 1313/885,
  14142. bottom: 94/1407
  14143. }
  14144. },
  14145. side: {
  14146. height: math.unit(2.5, "feet"),
  14147. weight: math.unit(32, "lb"),
  14148. name: "Side",
  14149. image: {
  14150. source: "./media/characters/rufran/side.svg",
  14151. extra: 1109/852,
  14152. bottom: 118/1227
  14153. }
  14154. },
  14155. back: {
  14156. height: math.unit(2.5, "feet"),
  14157. weight: math.unit(32, "lb"),
  14158. name: "Back",
  14159. image: {
  14160. source: "./media/characters/rufran/back.svg",
  14161. extra: 1280/878,
  14162. bottom: 131/1411
  14163. }
  14164. },
  14165. mouth: {
  14166. height: math.unit(1.13, "feet"),
  14167. name: "Mouth",
  14168. image: {
  14169. source: "./media/characters/rufran/mouth.svg"
  14170. }
  14171. },
  14172. foot: {
  14173. height: math.unit(1.33, "feet"),
  14174. name: "Foot",
  14175. image: {
  14176. source: "./media/characters/rufran/foot.svg"
  14177. }
  14178. },
  14179. koboldFront: {
  14180. height: math.unit(2 + 6 / 12, "feet"),
  14181. weight: math.unit(20, "lb"),
  14182. name: "Front (Kobold)",
  14183. image: {
  14184. source: "./media/characters/rufran/kobold-front.svg",
  14185. extra: 2041 / 1839,
  14186. bottom: 0.055
  14187. }
  14188. },
  14189. koboldBack: {
  14190. height: math.unit(2 + 6 / 12, "feet"),
  14191. weight: math.unit(20, "lb"),
  14192. name: "Back (Kobold)",
  14193. image: {
  14194. source: "./media/characters/rufran/kobold-back.svg",
  14195. extra: 2054 / 1839,
  14196. bottom: 0.01
  14197. }
  14198. },
  14199. koboldHand: {
  14200. height: math.unit(0.2166, "meters"),
  14201. name: "Hand (Kobold)",
  14202. image: {
  14203. source: "./media/characters/rufran/kobold-hand.svg"
  14204. }
  14205. },
  14206. koboldFoot: {
  14207. height: math.unit(0.185, "meters"),
  14208. name: "Foot (Kobold)",
  14209. image: {
  14210. source: "./media/characters/rufran/kobold-foot.svg"
  14211. }
  14212. },
  14213. },
  14214. [
  14215. {
  14216. name: "Micro",
  14217. height: math.unit(1, "inch")
  14218. },
  14219. {
  14220. name: "Normal",
  14221. height: math.unit(2 + 6 / 12, "feet"),
  14222. default: true
  14223. },
  14224. {
  14225. name: "Big",
  14226. height: math.unit(60, "feet")
  14227. },
  14228. {
  14229. name: "Macro",
  14230. height: math.unit(325, "feet")
  14231. },
  14232. ]
  14233. ))
  14234. characterMakers.push(() => makeCharacter(
  14235. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  14236. {
  14237. front: {
  14238. height: math.unit(0.3, "meters"),
  14239. weight: math.unit(3.5, "kg"),
  14240. name: "Front",
  14241. image: {
  14242. source: "./media/characters/chip/front.svg",
  14243. extra: 748 / 674
  14244. }
  14245. },
  14246. },
  14247. [
  14248. {
  14249. name: "Micro",
  14250. height: math.unit(1, "inch"),
  14251. default: true
  14252. },
  14253. ]
  14254. ))
  14255. characterMakers.push(() => makeCharacter(
  14256. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  14257. {
  14258. side: {
  14259. height: math.unit(2.3, "meters"),
  14260. weight: math.unit(3500, "lb"),
  14261. name: "Side",
  14262. image: {
  14263. source: "./media/characters/torvid/side.svg",
  14264. extra: 1972 / 722,
  14265. bottom: 0.035
  14266. }
  14267. },
  14268. },
  14269. [
  14270. {
  14271. name: "Normal",
  14272. height: math.unit(2.3, "meters"),
  14273. default: true
  14274. },
  14275. ]
  14276. ))
  14277. characterMakers.push(() => makeCharacter(
  14278. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  14279. {
  14280. front: {
  14281. height: math.unit(2, "meters"),
  14282. weight: math.unit(150.5, "kg"),
  14283. name: "Front",
  14284. image: {
  14285. source: "./media/characters/susan/front.svg",
  14286. extra: 693 / 635,
  14287. bottom: 0.05
  14288. }
  14289. },
  14290. },
  14291. [
  14292. {
  14293. name: "Megamacro",
  14294. height: math.unit(505, "miles"),
  14295. default: true
  14296. },
  14297. ]
  14298. ))
  14299. characterMakers.push(() => makeCharacter(
  14300. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  14301. {
  14302. front: {
  14303. height: math.unit(6, "feet"),
  14304. weight: math.unit(150, "lb"),
  14305. name: "Front",
  14306. image: {
  14307. source: "./media/characters/raindrops/front.svg",
  14308. extra: 2655 / 2461,
  14309. bottom: 49 / 2705
  14310. }
  14311. },
  14312. back: {
  14313. height: math.unit(6, "feet"),
  14314. weight: math.unit(150, "lb"),
  14315. name: "Back",
  14316. image: {
  14317. source: "./media/characters/raindrops/back.svg",
  14318. extra: 2574 / 2400,
  14319. bottom: 65 / 2634
  14320. }
  14321. },
  14322. },
  14323. [
  14324. {
  14325. name: "Micro",
  14326. height: math.unit(6, "inches")
  14327. },
  14328. {
  14329. name: "Normal",
  14330. height: math.unit(6 + 2 / 12, "feet")
  14331. },
  14332. {
  14333. name: "Macro",
  14334. height: math.unit(131, "feet"),
  14335. default: true
  14336. },
  14337. {
  14338. name: "Megamacro",
  14339. height: math.unit(15, "miles")
  14340. },
  14341. {
  14342. name: "Gigamacro",
  14343. height: math.unit(4000, "miles")
  14344. },
  14345. {
  14346. name: "Teramacro",
  14347. height: math.unit(315000, "miles")
  14348. },
  14349. ]
  14350. ))
  14351. characterMakers.push(() => makeCharacter(
  14352. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  14353. {
  14354. front: {
  14355. height: math.unit(2.794, "meters"),
  14356. weight: math.unit(325, "kg"),
  14357. name: "Front",
  14358. image: {
  14359. source: "./media/characters/tezwa/front.svg",
  14360. extra: 2083 / 1906,
  14361. bottom: 0.031
  14362. }
  14363. },
  14364. foot: {
  14365. height: math.unit(0.687, "meters"),
  14366. name: "Foot",
  14367. image: {
  14368. source: "./media/characters/tezwa/foot.svg"
  14369. }
  14370. },
  14371. },
  14372. [
  14373. {
  14374. name: "Normal",
  14375. height: math.unit(9 + 2 / 12, "feet"),
  14376. default: true
  14377. },
  14378. ]
  14379. ))
  14380. characterMakers.push(() => makeCharacter(
  14381. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  14382. {
  14383. front: {
  14384. height: math.unit(58, "feet"),
  14385. weight: math.unit(89000, "lb"),
  14386. name: "Front",
  14387. image: {
  14388. source: "./media/characters/typhus/front.svg",
  14389. extra: 816 / 800,
  14390. bottom: 0.065
  14391. }
  14392. },
  14393. },
  14394. [
  14395. {
  14396. name: "Macro",
  14397. height: math.unit(58, "feet"),
  14398. default: true
  14399. },
  14400. ]
  14401. ))
  14402. characterMakers.push(() => makeCharacter(
  14403. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14404. {
  14405. front: {
  14406. height: math.unit(12, "feet"),
  14407. weight: math.unit(6, "tonnes"),
  14408. name: "Front",
  14409. image: {
  14410. source: "./media/characters/lyra-von-wulf/front.svg",
  14411. extra: 1,
  14412. bottom: 0.10
  14413. }
  14414. },
  14415. frontMecha: {
  14416. height: math.unit(12, "feet"),
  14417. weight: math.unit(12, "tonnes"),
  14418. name: "Front (Mecha)",
  14419. image: {
  14420. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14421. extra: 1,
  14422. bottom: 0.042
  14423. }
  14424. },
  14425. maw: {
  14426. height: math.unit(2.2, "feet"),
  14427. name: "Maw",
  14428. image: {
  14429. source: "./media/characters/lyra-von-wulf/maw.svg"
  14430. }
  14431. },
  14432. },
  14433. [
  14434. {
  14435. name: "Normal",
  14436. height: math.unit(12, "feet"),
  14437. default: true
  14438. },
  14439. {
  14440. name: "Classic",
  14441. height: math.unit(50, "feet")
  14442. },
  14443. {
  14444. name: "Macro",
  14445. height: math.unit(500, "feet")
  14446. },
  14447. {
  14448. name: "Megamacro",
  14449. height: math.unit(1, "mile")
  14450. },
  14451. {
  14452. name: "Gigamacro",
  14453. height: math.unit(400, "miles")
  14454. },
  14455. {
  14456. name: "Teramacro",
  14457. height: math.unit(22000, "miles")
  14458. },
  14459. {
  14460. name: "Solarmacro",
  14461. height: math.unit(8600000, "miles")
  14462. },
  14463. {
  14464. name: "Galactic",
  14465. height: math.unit(1057000, "lightyears")
  14466. },
  14467. ]
  14468. ))
  14469. characterMakers.push(() => makeCharacter(
  14470. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14471. {
  14472. front: {
  14473. height: math.unit(6 + 10 / 12, "feet"),
  14474. weight: math.unit(150, "lb"),
  14475. name: "Front",
  14476. image: {
  14477. source: "./media/characters/dixon/front.svg",
  14478. extra: 3361 / 3209,
  14479. bottom: 0.01
  14480. }
  14481. },
  14482. },
  14483. [
  14484. {
  14485. name: "Normal",
  14486. height: math.unit(6 + 10 / 12, "feet"),
  14487. default: true
  14488. },
  14489. {
  14490. name: "Big",
  14491. height: math.unit(12, "meters")
  14492. },
  14493. {
  14494. name: "Macro",
  14495. height: math.unit(500, "meters")
  14496. },
  14497. {
  14498. name: "Megamacro",
  14499. height: math.unit(2, "km")
  14500. },
  14501. ]
  14502. ))
  14503. characterMakers.push(() => makeCharacter(
  14504. { name: "Kauko", species: ["wolf", "king-cheetah"], tags: ["anthro"] },
  14505. {
  14506. kingCheetah_front: {
  14507. height: math.unit(1.85, "meters"),
  14508. weight: math.unit(68, "kg"),
  14509. name: "Front",
  14510. image: {
  14511. source: "./media/characters/kauko/king-cheetah-front.svg",
  14512. extra: 1007/972,
  14513. bottom: 35/1042
  14514. },
  14515. form: "king-cheetah",
  14516. default: true
  14517. },
  14518. kingCheetah_back: {
  14519. height: math.unit(1.85, "meters"),
  14520. weight: math.unit(68, "kg"),
  14521. name: "Back",
  14522. image: {
  14523. source: "./media/characters/kauko/king-cheetah-back.svg",
  14524. extra: 1015/980,
  14525. bottom: 11/1026
  14526. },
  14527. form: "king-cheetah",
  14528. },
  14529. kingCheetah_hand: {
  14530. height: math.unit(0.23, "meters"),
  14531. name: "Hand",
  14532. image: {
  14533. source: "./media/characters/kauko/king-cheetah-hand.svg"
  14534. },
  14535. form: "king-cheetah",
  14536. },
  14537. kingCheetah_paw: {
  14538. height: math.unit(0.38, "meters"),
  14539. name: "Paw",
  14540. image: {
  14541. source: "./media/characters/kauko/king-cheetah-paw.svg"
  14542. },
  14543. form: "king-cheetah",
  14544. },
  14545. kingCheetah_nape: {
  14546. height: math.unit(0.23, "meters"),
  14547. name: "Nape",
  14548. image: {
  14549. source: "./media/characters/kauko/king-cheetah-nape.svg"
  14550. },
  14551. form: "king-cheetah",
  14552. },
  14553. wolf_front: {
  14554. height: math.unit(1.88, "meters"),
  14555. weight: math.unit(74, "kg"),
  14556. name: "Front",
  14557. image: {
  14558. source: "./media/characters/kauko/wolf-front.svg",
  14559. extra: 952/908,
  14560. bottom: 64/1016
  14561. },
  14562. form: "wolf",
  14563. default: true
  14564. },
  14565. wolf_dressed: {
  14566. height: math.unit(1.88, "meters"),
  14567. weight: math.unit(74, "kg"),
  14568. name: "Dressed",
  14569. image: {
  14570. source: "./media/characters/kauko/wolf-dressed.svg",
  14571. extra: 963/916,
  14572. bottom: 101/1064
  14573. },
  14574. form: "wolf",
  14575. },
  14576. wolf_hand: {
  14577. height: math.unit(0.3, "meters"),
  14578. name: "Hand",
  14579. image: {
  14580. source: "./media/characters/kauko/wolf-hand.svg"
  14581. },
  14582. form: "wolf",
  14583. },
  14584. wolf_paw: {
  14585. height: math.unit(0.407, "meters"),
  14586. name: "Paw",
  14587. image: {
  14588. source: "./media/characters/kauko/wolf-paw.svg"
  14589. },
  14590. form: "wolf",
  14591. },
  14592. wolf_nape: {
  14593. height: math.unit(0.25, "meters"),
  14594. name: "Nape",
  14595. image: {
  14596. source: "./media/characters/kauko/wolf-nape.svg"
  14597. },
  14598. form: "wolf",
  14599. },
  14600. },
  14601. [
  14602. {
  14603. name: "Normal",
  14604. height: math.unit(1.85, "m"),
  14605. default: true,
  14606. form: "king-cheetah"
  14607. },
  14608. {
  14609. name: "Normal",
  14610. height: math.unit(1.88, "m"),
  14611. default: true,
  14612. form: "wolf"
  14613. },
  14614. ],
  14615. {
  14616. "king-cheetah": {
  14617. name: "King Cheetah",
  14618. default: true
  14619. },
  14620. "wolf": {
  14621. name: "Wolf",
  14622. },
  14623. }
  14624. ))
  14625. characterMakers.push(() => makeCharacter(
  14626. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14627. {
  14628. frontSfw: {
  14629. height: math.unit(5, "meters"),
  14630. weight: math.unit(4250, "lb"),
  14631. name: "Front",
  14632. image: {
  14633. source: "./media/characters/varg/front-sfw.svg",
  14634. extra: 1103/1010,
  14635. bottom: 50/1153
  14636. },
  14637. form: "anthro",
  14638. default: true
  14639. },
  14640. backSfw: {
  14641. height: math.unit(5, "meters"),
  14642. weight: math.unit(4250, "lb"),
  14643. name: "Back",
  14644. image: {
  14645. source: "./media/characters/varg/back-sfw.svg",
  14646. extra: 1038/1022,
  14647. bottom: 36/1074
  14648. },
  14649. form: "anthro"
  14650. },
  14651. frontNsfw: {
  14652. height: math.unit(5, "meters"),
  14653. weight: math.unit(4250, "lb"),
  14654. name: "Front (NSFW)",
  14655. image: {
  14656. source: "./media/characters/varg/front-nsfw.svg",
  14657. extra: 1103/1010,
  14658. bottom: 50/1153
  14659. },
  14660. form: "anthro"
  14661. },
  14662. sheath: {
  14663. height: math.unit(3.8, "feet"),
  14664. weight: math.unit(90, "kilograms"),
  14665. name: "Sheath",
  14666. image: {
  14667. source: "./media/characters/varg/sheath.svg"
  14668. },
  14669. form: "anthro"
  14670. },
  14671. dick: {
  14672. height: math.unit(4.6, "feet"),
  14673. weight: math.unit(451, "kilograms"),
  14674. name: "Dick",
  14675. image: {
  14676. source: "./media/characters/varg/dick.svg"
  14677. },
  14678. form: "anthro"
  14679. },
  14680. feralSfw: {
  14681. height: math.unit(5, "meters"),
  14682. weight: math.unit(100000, "lb"),
  14683. name: "Side",
  14684. image: {
  14685. source: "./media/characters/varg/feral-sfw.svg",
  14686. extra: 1065/511,
  14687. bottom: 211/1276
  14688. },
  14689. form: "feral",
  14690. default: true
  14691. },
  14692. feralNsfw: {
  14693. height: math.unit(5, "meters"),
  14694. weight: math.unit(100000, "lb"),
  14695. name: "Side (NSFW)",
  14696. image: {
  14697. source: "./media/characters/varg/feral-nsfw.svg",
  14698. extra: 1065/511,
  14699. bottom: 211/1276
  14700. },
  14701. form: "feral",
  14702. },
  14703. feralSheath: {
  14704. height: math.unit(9.8, "feet"),
  14705. weight: math.unit(2000, "kilograms"),
  14706. name: "Sheath",
  14707. image: {
  14708. source: "./media/characters/varg/sheath.svg"
  14709. },
  14710. form: "feral"
  14711. },
  14712. feralDick: {
  14713. height: math.unit(13.11, "feet"),
  14714. weight: math.unit(10440, "kilograms"),
  14715. name: "Dick",
  14716. image: {
  14717. source: "./media/characters/varg/dick.svg"
  14718. },
  14719. form: "feral"
  14720. },
  14721. },
  14722. [
  14723. {
  14724. name: "Normal",
  14725. height: math.unit(5, "meters"),
  14726. form: "anthro"
  14727. },
  14728. {
  14729. name: "Macro",
  14730. height: math.unit(200, "meters"),
  14731. form: "anthro"
  14732. },
  14733. {
  14734. name: "Megamacro",
  14735. height: math.unit(20, "kilometers"),
  14736. form: "anthro"
  14737. },
  14738. {
  14739. name: "True Size",
  14740. height: math.unit(211, "km"),
  14741. form: "anthro",
  14742. default: true
  14743. },
  14744. {
  14745. name: "Gigamacro",
  14746. height: math.unit(1000, "km"),
  14747. form: "anthro"
  14748. },
  14749. {
  14750. name: "Gigamacro+",
  14751. height: math.unit(8000, "km"),
  14752. form: "anthro"
  14753. },
  14754. {
  14755. name: "Teramacro",
  14756. height: math.unit(1000000, "km"),
  14757. form: "anthro"
  14758. },
  14759. {
  14760. name: "Normal",
  14761. height: math.unit(5, "meters"),
  14762. form: "feral"
  14763. },
  14764. {
  14765. name: "Macro",
  14766. height: math.unit(200, "meters"),
  14767. form: "feral"
  14768. },
  14769. {
  14770. name: "Megamacro",
  14771. height: math.unit(20, "kilometers"),
  14772. form: "feral"
  14773. },
  14774. {
  14775. name: "True Size",
  14776. height: math.unit(211, "km"),
  14777. form: "feral",
  14778. default: true
  14779. },
  14780. {
  14781. name: "Gigamacro",
  14782. height: math.unit(1000, "km"),
  14783. form: "feral"
  14784. },
  14785. {
  14786. name: "Gigamacro+",
  14787. height: math.unit(8000, "km"),
  14788. form: "feral"
  14789. },
  14790. {
  14791. name: "Teramacro",
  14792. height: math.unit(1000000, "km"),
  14793. form: "feral"
  14794. },
  14795. ],
  14796. {
  14797. "anthro": {
  14798. name: "Anthro",
  14799. default: true
  14800. },
  14801. "feral": {
  14802. name: "Feral",
  14803. },
  14804. }
  14805. ))
  14806. characterMakers.push(() => makeCharacter(
  14807. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14808. {
  14809. front: {
  14810. height: math.unit(7 + 7 / 12, "feet"),
  14811. weight: math.unit(267, "lb"),
  14812. name: "Front",
  14813. image: {
  14814. source: "./media/characters/dayza/front.svg",
  14815. extra: 1262 / 1200,
  14816. bottom: 0.035
  14817. }
  14818. },
  14819. side: {
  14820. height: math.unit(7 + 7 / 12, "feet"),
  14821. weight: math.unit(267, "lb"),
  14822. name: "Side",
  14823. image: {
  14824. source: "./media/characters/dayza/side.svg",
  14825. extra: 1295 / 1245,
  14826. bottom: 0.05
  14827. }
  14828. },
  14829. back: {
  14830. height: math.unit(7 + 7 / 12, "feet"),
  14831. weight: math.unit(267, "lb"),
  14832. name: "Back",
  14833. image: {
  14834. source: "./media/characters/dayza/back.svg",
  14835. extra: 1241 / 1170
  14836. }
  14837. },
  14838. },
  14839. [
  14840. {
  14841. name: "Normal",
  14842. height: math.unit(7 + 7 / 12, "feet"),
  14843. default: true
  14844. },
  14845. {
  14846. name: "Macro",
  14847. height: math.unit(155, "feet")
  14848. },
  14849. ]
  14850. ))
  14851. characterMakers.push(() => makeCharacter(
  14852. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14853. {
  14854. front: {
  14855. height: math.unit(6 + 5 / 12, "feet"),
  14856. weight: math.unit(160, "lb"),
  14857. name: "Front",
  14858. image: {
  14859. source: "./media/characters/xanthos/front.svg",
  14860. extra: 1,
  14861. bottom: 0.04
  14862. }
  14863. },
  14864. back: {
  14865. height: math.unit(6 + 5 / 12, "feet"),
  14866. weight: math.unit(160, "lb"),
  14867. name: "Back",
  14868. image: {
  14869. source: "./media/characters/xanthos/back.svg",
  14870. extra: 1,
  14871. bottom: 0.03
  14872. }
  14873. },
  14874. hand: {
  14875. height: math.unit(0.928, "feet"),
  14876. name: "Hand",
  14877. image: {
  14878. source: "./media/characters/xanthos/hand.svg"
  14879. }
  14880. },
  14881. foot: {
  14882. height: math.unit(1.286, "feet"),
  14883. name: "Foot",
  14884. image: {
  14885. source: "./media/characters/xanthos/foot.svg"
  14886. }
  14887. },
  14888. },
  14889. [
  14890. {
  14891. name: "Normal",
  14892. height: math.unit(6 + 5 / 12, "feet"),
  14893. default: true
  14894. },
  14895. {
  14896. name: "Normal+",
  14897. height: math.unit(6, "meters")
  14898. },
  14899. {
  14900. name: "Macro",
  14901. height: math.unit(40, "feet")
  14902. },
  14903. {
  14904. name: "Macro+",
  14905. height: math.unit(200, "meters")
  14906. },
  14907. {
  14908. name: "Megamacro",
  14909. height: math.unit(20, "km")
  14910. },
  14911. {
  14912. name: "Megamacro+",
  14913. height: math.unit(100, "km")
  14914. },
  14915. {
  14916. name: "Gigamacro",
  14917. height: math.unit(200, "megameters")
  14918. },
  14919. {
  14920. name: "Gigamacro+",
  14921. height: math.unit(1.5, "gigameters")
  14922. },
  14923. ]
  14924. ))
  14925. characterMakers.push(() => makeCharacter(
  14926. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14927. {
  14928. front: {
  14929. height: math.unit(6 + 3 / 12, "feet"),
  14930. weight: math.unit(215, "lb"),
  14931. name: "Front",
  14932. image: {
  14933. source: "./media/characters/grynn/front.svg",
  14934. extra: 4627 / 4209,
  14935. bottom: 0.047
  14936. }
  14937. },
  14938. },
  14939. [
  14940. {
  14941. name: "Micro",
  14942. height: math.unit(6, "inches")
  14943. },
  14944. {
  14945. name: "Normal",
  14946. height: math.unit(6 + 3 / 12, "feet"),
  14947. default: true
  14948. },
  14949. {
  14950. name: "Big",
  14951. height: math.unit(104, "feet")
  14952. },
  14953. {
  14954. name: "Macro",
  14955. height: math.unit(944, "feet")
  14956. },
  14957. {
  14958. name: "Macro+",
  14959. height: math.unit(9480, "feet")
  14960. },
  14961. {
  14962. name: "Megamacro",
  14963. height: math.unit(78752, "feet")
  14964. },
  14965. {
  14966. name: "Megamacro+",
  14967. height: math.unit(630128, "feet")
  14968. },
  14969. {
  14970. name: "Megamacro++",
  14971. height: math.unit(3150695, "feet")
  14972. },
  14973. ]
  14974. ))
  14975. characterMakers.push(() => makeCharacter(
  14976. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14977. {
  14978. front: {
  14979. height: math.unit(7 + 5 / 12, "feet"),
  14980. weight: math.unit(450, "lb"),
  14981. name: "Front",
  14982. image: {
  14983. source: "./media/characters/mocha-aura/front.svg",
  14984. extra: 1907 / 1817,
  14985. bottom: 0.04
  14986. }
  14987. },
  14988. back: {
  14989. height: math.unit(7 + 5 / 12, "feet"),
  14990. weight: math.unit(450, "lb"),
  14991. name: "Back",
  14992. image: {
  14993. source: "./media/characters/mocha-aura/back.svg",
  14994. extra: 1900 / 1825,
  14995. bottom: 0.045
  14996. }
  14997. },
  14998. },
  14999. [
  15000. {
  15001. name: "Nano",
  15002. height: math.unit(1, "nm")
  15003. },
  15004. {
  15005. name: "Megamicro",
  15006. height: math.unit(1, "mm")
  15007. },
  15008. {
  15009. name: "Micro",
  15010. height: math.unit(3, "inches")
  15011. },
  15012. {
  15013. name: "Normal",
  15014. height: math.unit(7 + 5 / 12, "feet"),
  15015. default: true
  15016. },
  15017. {
  15018. name: "Macro",
  15019. height: math.unit(30, "feet")
  15020. },
  15021. {
  15022. name: "Megamacro",
  15023. height: math.unit(3500, "feet")
  15024. },
  15025. {
  15026. name: "Teramacro",
  15027. height: math.unit(500000, "miles")
  15028. },
  15029. {
  15030. name: "Petamacro",
  15031. height: math.unit(50000000000000000, "parsecs")
  15032. },
  15033. ]
  15034. ))
  15035. characterMakers.push(() => makeCharacter(
  15036. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  15037. {
  15038. front: {
  15039. height: math.unit(6, "feet"),
  15040. weight: math.unit(150, "lb"),
  15041. name: "Front",
  15042. image: {
  15043. source: "./media/characters/ilisha-devya/front.svg",
  15044. extra: 1053/1049,
  15045. bottom: 270/1323
  15046. }
  15047. },
  15048. back: {
  15049. height: math.unit(6, "feet"),
  15050. weight: math.unit(150, "lb"),
  15051. name: "Back",
  15052. image: {
  15053. source: "./media/characters/ilisha-devya/back.svg",
  15054. extra: 1131/1128,
  15055. bottom: 39/1170
  15056. }
  15057. },
  15058. },
  15059. [
  15060. {
  15061. name: "Macro",
  15062. height: math.unit(500, "feet"),
  15063. default: true
  15064. },
  15065. {
  15066. name: "Megamacro",
  15067. height: math.unit(10, "miles")
  15068. },
  15069. {
  15070. name: "Gigamacro",
  15071. height: math.unit(100000, "miles")
  15072. },
  15073. {
  15074. name: "Examacro",
  15075. height: math.unit(1e9, "lightyears")
  15076. },
  15077. {
  15078. name: "Omniversal",
  15079. height: math.unit(1e33, "lightyears")
  15080. },
  15081. {
  15082. name: "Beyond Infinite",
  15083. height: math.unit(1e100, "lightyears")
  15084. },
  15085. ]
  15086. ))
  15087. characterMakers.push(() => makeCharacter(
  15088. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  15089. {
  15090. Side: {
  15091. height: math.unit(6, "feet"),
  15092. weight: math.unit(150, "lb"),
  15093. name: "Side",
  15094. image: {
  15095. source: "./media/characters/mira/side.svg",
  15096. extra: 900 / 799,
  15097. bottom: 0.02
  15098. }
  15099. },
  15100. },
  15101. [
  15102. {
  15103. name: "Human Size",
  15104. height: math.unit(6, "feet")
  15105. },
  15106. {
  15107. name: "Macro",
  15108. height: math.unit(100, "feet"),
  15109. default: true
  15110. },
  15111. {
  15112. name: "Megamacro",
  15113. height: math.unit(10, "miles")
  15114. },
  15115. {
  15116. name: "Gigamacro",
  15117. height: math.unit(25000, "miles")
  15118. },
  15119. {
  15120. name: "Teramacro",
  15121. height: math.unit(300, "AU")
  15122. },
  15123. {
  15124. name: "Full Size",
  15125. height: math.unit(4.5e10, "lightyears")
  15126. },
  15127. ]
  15128. ))
  15129. characterMakers.push(() => makeCharacter(
  15130. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  15131. {
  15132. front: {
  15133. height: math.unit(6, "feet"),
  15134. weight: math.unit(150, "lb"),
  15135. name: "Front",
  15136. image: {
  15137. source: "./media/characters/holly/front.svg",
  15138. extra: 639 / 606
  15139. }
  15140. },
  15141. back: {
  15142. height: math.unit(6, "feet"),
  15143. weight: math.unit(150, "lb"),
  15144. name: "Back",
  15145. image: {
  15146. source: "./media/characters/holly/back.svg",
  15147. extra: 623 / 598
  15148. }
  15149. },
  15150. frontWorking: {
  15151. height: math.unit(6, "feet"),
  15152. weight: math.unit(150, "lb"),
  15153. name: "Front (Working)",
  15154. image: {
  15155. source: "./media/characters/holly/front-working.svg",
  15156. extra: 607 / 577,
  15157. bottom: 0.048
  15158. }
  15159. },
  15160. },
  15161. [
  15162. {
  15163. name: "Normal",
  15164. height: math.unit(12 + 3 / 12, "feet"),
  15165. default: true
  15166. },
  15167. ]
  15168. ))
  15169. characterMakers.push(() => makeCharacter(
  15170. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  15171. {
  15172. front: {
  15173. height: math.unit(6, "feet"),
  15174. weight: math.unit(150, "lb"),
  15175. name: "Front",
  15176. image: {
  15177. source: "./media/characters/porter/front.svg",
  15178. extra: 1,
  15179. bottom: 0.01
  15180. }
  15181. },
  15182. frontRobes: {
  15183. height: math.unit(6, "feet"),
  15184. weight: math.unit(150, "lb"),
  15185. name: "Front (Robes)",
  15186. image: {
  15187. source: "./media/characters/porter/front-robes.svg",
  15188. extra: 1.01,
  15189. bottom: 0.01
  15190. }
  15191. },
  15192. },
  15193. [
  15194. {
  15195. name: "Normal",
  15196. height: math.unit(11 + 9 / 12, "feet"),
  15197. default: true
  15198. },
  15199. ]
  15200. ))
  15201. characterMakers.push(() => makeCharacter(
  15202. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  15203. {
  15204. legendary: {
  15205. height: math.unit(6, "feet"),
  15206. weight: math.unit(150, "lb"),
  15207. name: "Legendary",
  15208. image: {
  15209. source: "./media/characters/lucy/legendary.svg",
  15210. extra: 1355 / 1100,
  15211. bottom: 0.045
  15212. }
  15213. },
  15214. },
  15215. [
  15216. {
  15217. name: "Legendary",
  15218. height: math.unit(86882 * 2, "miles"),
  15219. default: true
  15220. },
  15221. ]
  15222. ))
  15223. characterMakers.push(() => makeCharacter(
  15224. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  15225. {
  15226. front: {
  15227. height: math.unit(6, "feet"),
  15228. weight: math.unit(150, "lb"),
  15229. name: "Front",
  15230. image: {
  15231. source: "./media/characters/drusilla/front.svg",
  15232. extra: 678 / 635,
  15233. bottom: 0.03
  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/drusilla/back.svg",
  15242. extra: 678 / 635,
  15243. bottom: 0.005
  15244. }
  15245. },
  15246. },
  15247. [
  15248. {
  15249. name: "Macro",
  15250. height: math.unit(100, "feet")
  15251. },
  15252. {
  15253. name: "Canon Height",
  15254. height: math.unit(2000, "feet"),
  15255. default: true
  15256. },
  15257. ]
  15258. ))
  15259. characterMakers.push(() => makeCharacter(
  15260. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  15261. {
  15262. front: {
  15263. height: math.unit(6, "feet"),
  15264. weight: math.unit(180, "lb"),
  15265. name: "Front",
  15266. image: {
  15267. source: "./media/characters/renard-thatch/front.svg",
  15268. extra: 2411 / 2275,
  15269. bottom: 0.01
  15270. }
  15271. },
  15272. frontPosing: {
  15273. height: math.unit(6, "feet"),
  15274. weight: math.unit(180, "lb"),
  15275. name: "Front (Posing)",
  15276. image: {
  15277. source: "./media/characters/renard-thatch/front-posing.svg",
  15278. extra: 2381 / 2261,
  15279. bottom: 0.01
  15280. }
  15281. },
  15282. back: {
  15283. height: math.unit(6, "feet"),
  15284. weight: math.unit(180, "lb"),
  15285. name: "Back",
  15286. image: {
  15287. source: "./media/characters/renard-thatch/back.svg",
  15288. extra: 2428 / 2288
  15289. }
  15290. },
  15291. },
  15292. [
  15293. {
  15294. name: "Micro",
  15295. height: math.unit(3, "inches")
  15296. },
  15297. {
  15298. name: "Default",
  15299. height: math.unit(6, "feet"),
  15300. default: true
  15301. },
  15302. {
  15303. name: "Macro",
  15304. height: math.unit(75, "feet")
  15305. },
  15306. ]
  15307. ))
  15308. characterMakers.push(() => makeCharacter(
  15309. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  15310. {
  15311. front: {
  15312. height: math.unit(1450, "feet"),
  15313. weight: math.unit(1.21e6, "tons"),
  15314. name: "Front",
  15315. image: {
  15316. source: "./media/characters/sekvra/front.svg",
  15317. extra: 1193/1190,
  15318. bottom: 78/1271
  15319. }
  15320. },
  15321. side: {
  15322. height: math.unit(1450, "feet"),
  15323. weight: math.unit(1.21e6, "tons"),
  15324. name: "Side",
  15325. image: {
  15326. source: "./media/characters/sekvra/side.svg",
  15327. extra: 1193/1190,
  15328. bottom: 52/1245
  15329. }
  15330. },
  15331. back: {
  15332. height: math.unit(1450, "feet"),
  15333. weight: math.unit(1.21e6, "tons"),
  15334. name: "Back",
  15335. image: {
  15336. source: "./media/characters/sekvra/back.svg",
  15337. extra: 1219/1216,
  15338. bottom: 21/1240
  15339. }
  15340. },
  15341. frontClothed: {
  15342. height: math.unit(1450, "feet"),
  15343. weight: math.unit(1.21e6, "tons"),
  15344. name: "Front (Clothed)",
  15345. image: {
  15346. source: "./media/characters/sekvra/front-clothed.svg",
  15347. extra: 1192/1189,
  15348. bottom: 79/1271
  15349. }
  15350. },
  15351. },
  15352. [
  15353. {
  15354. name: "Macro",
  15355. height: math.unit(1450, "feet"),
  15356. default: true
  15357. },
  15358. {
  15359. name: "Megamacro",
  15360. height: math.unit(15000, "feet")
  15361. },
  15362. ]
  15363. ))
  15364. characterMakers.push(() => makeCharacter(
  15365. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  15366. {
  15367. front: {
  15368. height: math.unit(6, "feet"),
  15369. weight: math.unit(150, "lb"),
  15370. name: "Front",
  15371. image: {
  15372. source: "./media/characters/carmine/front.svg",
  15373. extra: 1557/1538,
  15374. bottom: 68/1625
  15375. }
  15376. },
  15377. frontArmor: {
  15378. height: math.unit(6, "feet"),
  15379. weight: math.unit(150, "lb"),
  15380. name: "Front (Armor)",
  15381. image: {
  15382. source: "./media/characters/carmine/front-armor.svg",
  15383. extra: 1549/1530,
  15384. bottom: 82/1631
  15385. }
  15386. },
  15387. mouth: {
  15388. height: math.unit(0.55, "feet"),
  15389. name: "Mouth",
  15390. image: {
  15391. source: "./media/characters/carmine/mouth.svg"
  15392. }
  15393. },
  15394. hand: {
  15395. height: math.unit(1.05, "feet"),
  15396. name: "Hand",
  15397. image: {
  15398. source: "./media/characters/carmine/hand.svg"
  15399. }
  15400. },
  15401. foot: {
  15402. height: math.unit(0.6, "feet"),
  15403. name: "Foot",
  15404. image: {
  15405. source: "./media/characters/carmine/foot.svg"
  15406. }
  15407. },
  15408. },
  15409. [
  15410. {
  15411. name: "Large",
  15412. height: math.unit(1, "mile")
  15413. },
  15414. {
  15415. name: "Huge",
  15416. height: math.unit(40, "miles"),
  15417. default: true
  15418. },
  15419. {
  15420. name: "Colossal",
  15421. height: math.unit(2500, "miles")
  15422. },
  15423. ]
  15424. ))
  15425. characterMakers.push(() => makeCharacter(
  15426. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  15427. {
  15428. front: {
  15429. height: math.unit(6, "feet"),
  15430. weight: math.unit(150, "lb"),
  15431. name: "Front",
  15432. image: {
  15433. source: "./media/characters/elyssia/front.svg",
  15434. extra: 2201 / 2035,
  15435. bottom: 0.05
  15436. }
  15437. },
  15438. frontClothed: {
  15439. height: math.unit(6, "feet"),
  15440. weight: math.unit(150, "lb"),
  15441. name: "Front (Clothed)",
  15442. image: {
  15443. source: "./media/characters/elyssia/front-clothed.svg",
  15444. extra: 2201 / 2035,
  15445. bottom: 0.05
  15446. }
  15447. },
  15448. back: {
  15449. height: math.unit(6, "feet"),
  15450. weight: math.unit(150, "lb"),
  15451. name: "Back",
  15452. image: {
  15453. source: "./media/characters/elyssia/back.svg",
  15454. extra: 2201 / 2035,
  15455. bottom: 0.013
  15456. }
  15457. },
  15458. },
  15459. [
  15460. {
  15461. name: "Smaller",
  15462. height: math.unit(150, "feet")
  15463. },
  15464. {
  15465. name: "Standard",
  15466. height: math.unit(1400, "feet"),
  15467. default: true
  15468. },
  15469. {
  15470. name: "Distracted",
  15471. height: math.unit(15000, "feet")
  15472. },
  15473. ]
  15474. ))
  15475. characterMakers.push(() => makeCharacter(
  15476. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  15477. {
  15478. front: {
  15479. height: math.unit(7 + 4/12, "feet"),
  15480. weight: math.unit(690, "lb"),
  15481. name: "Front",
  15482. image: {
  15483. source: "./media/characters/geno-maxwell/front.svg",
  15484. extra: 984/856,
  15485. bottom: 87/1071
  15486. }
  15487. },
  15488. back: {
  15489. height: math.unit(7 + 4/12, "feet"),
  15490. weight: math.unit(690, "lb"),
  15491. name: "Back",
  15492. image: {
  15493. source: "./media/characters/geno-maxwell/back.svg",
  15494. extra: 981/854,
  15495. bottom: 57/1038
  15496. }
  15497. },
  15498. frontCostume: {
  15499. height: math.unit(7 + 4/12, "feet"),
  15500. weight: math.unit(690, "lb"),
  15501. name: "Front (Costume)",
  15502. image: {
  15503. source: "./media/characters/geno-maxwell/front-costume.svg",
  15504. extra: 984/856,
  15505. bottom: 87/1071
  15506. }
  15507. },
  15508. backcostume: {
  15509. height: math.unit(7 + 4/12, "feet"),
  15510. weight: math.unit(690, "lb"),
  15511. name: "Back (Costume)",
  15512. image: {
  15513. source: "./media/characters/geno-maxwell/back-costume.svg",
  15514. extra: 981/854,
  15515. bottom: 57/1038
  15516. }
  15517. },
  15518. },
  15519. [
  15520. {
  15521. name: "Micro",
  15522. height: math.unit(3, "inches")
  15523. },
  15524. {
  15525. name: "Normal",
  15526. height: math.unit(7 + 4 / 12, "feet"),
  15527. default: true
  15528. },
  15529. {
  15530. name: "Macro",
  15531. height: math.unit(220, "feet")
  15532. },
  15533. {
  15534. name: "Megamacro",
  15535. height: math.unit(11, "miles")
  15536. },
  15537. ]
  15538. ))
  15539. characterMakers.push(() => makeCharacter(
  15540. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15541. {
  15542. front: {
  15543. height: math.unit(7 + 4/12, "feet"),
  15544. weight: math.unit(750, "lb"),
  15545. name: "Front",
  15546. image: {
  15547. source: "./media/characters/regena-maxwell/front.svg",
  15548. extra: 984/856,
  15549. bottom: 87/1071
  15550. }
  15551. },
  15552. back: {
  15553. height: math.unit(7 + 4/12, "feet"),
  15554. weight: math.unit(750, "lb"),
  15555. name: "Back",
  15556. image: {
  15557. source: "./media/characters/regena-maxwell/back.svg",
  15558. extra: 981/854,
  15559. bottom: 57/1038
  15560. }
  15561. },
  15562. frontCostume: {
  15563. height: math.unit(7 + 4/12, "feet"),
  15564. weight: math.unit(750, "lb"),
  15565. name: "Front (Costume)",
  15566. image: {
  15567. source: "./media/characters/regena-maxwell/front-costume.svg",
  15568. extra: 984/856,
  15569. bottom: 87/1071
  15570. }
  15571. },
  15572. backcostume: {
  15573. height: math.unit(7 + 4/12, "feet"),
  15574. weight: math.unit(750, "lb"),
  15575. name: "Back (Costume)",
  15576. image: {
  15577. source: "./media/characters/regena-maxwell/back-costume.svg",
  15578. extra: 981/854,
  15579. bottom: 57/1038
  15580. }
  15581. },
  15582. },
  15583. [
  15584. {
  15585. name: "Normal",
  15586. height: math.unit(7 + 4 / 12, "feet"),
  15587. default: true
  15588. },
  15589. {
  15590. name: "Macro",
  15591. height: math.unit(220, "feet")
  15592. },
  15593. {
  15594. name: "Megamacro",
  15595. height: math.unit(11, "miles")
  15596. },
  15597. ]
  15598. ))
  15599. characterMakers.push(() => makeCharacter(
  15600. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15601. {
  15602. front: {
  15603. height: math.unit(6, "feet"),
  15604. weight: math.unit(150, "lb"),
  15605. name: "Front",
  15606. image: {
  15607. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15608. extra: 860 / 690,
  15609. bottom: 0.03
  15610. }
  15611. },
  15612. },
  15613. [
  15614. {
  15615. name: "Normal",
  15616. height: math.unit(1.7, "meters"),
  15617. default: true
  15618. },
  15619. ]
  15620. ))
  15621. characterMakers.push(() => makeCharacter(
  15622. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15623. {
  15624. front: {
  15625. height: math.unit(6, "feet"),
  15626. weight: math.unit(150, "lb"),
  15627. name: "Front",
  15628. image: {
  15629. source: "./media/characters/quilly/front.svg",
  15630. extra: 890 / 776
  15631. }
  15632. },
  15633. },
  15634. [
  15635. {
  15636. name: "Gigamacro",
  15637. height: math.unit(404090, "miles"),
  15638. default: true
  15639. },
  15640. ]
  15641. ))
  15642. characterMakers.push(() => makeCharacter(
  15643. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15644. {
  15645. front: {
  15646. height: math.unit(7 + 8 / 12, "feet"),
  15647. weight: math.unit(350, "lb"),
  15648. name: "Front",
  15649. image: {
  15650. source: "./media/characters/tempest/front.svg",
  15651. extra: 1175 / 1086,
  15652. bottom: 0.02
  15653. }
  15654. },
  15655. },
  15656. [
  15657. {
  15658. name: "Normal",
  15659. height: math.unit(7 + 8 / 12, "feet"),
  15660. default: true
  15661. },
  15662. ]
  15663. ))
  15664. characterMakers.push(() => makeCharacter(
  15665. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15666. {
  15667. side: {
  15668. height: math.unit(4 + 5 / 12, "feet"),
  15669. weight: math.unit(80, "lb"),
  15670. name: "Side",
  15671. image: {
  15672. source: "./media/characters/rodger/side.svg",
  15673. extra: 1235 / 1118
  15674. }
  15675. },
  15676. },
  15677. [
  15678. {
  15679. name: "Micro",
  15680. height: math.unit(1, "inch")
  15681. },
  15682. {
  15683. name: "Normal",
  15684. height: math.unit(4 + 5 / 12, "feet"),
  15685. default: true
  15686. },
  15687. {
  15688. name: "Macro",
  15689. height: math.unit(120, "feet")
  15690. },
  15691. ]
  15692. ))
  15693. characterMakers.push(() => makeCharacter(
  15694. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15695. {
  15696. front: {
  15697. height: math.unit(6, "feet"),
  15698. weight: math.unit(150, "lb"),
  15699. name: "Front",
  15700. image: {
  15701. source: "./media/characters/danyel/front.svg",
  15702. extra: 1185 / 1123,
  15703. bottom: 0.05
  15704. }
  15705. },
  15706. },
  15707. [
  15708. {
  15709. name: "Shrunken",
  15710. height: math.unit(0.5, "mm")
  15711. },
  15712. {
  15713. name: "Micro",
  15714. height: math.unit(1, "mm"),
  15715. default: true
  15716. },
  15717. {
  15718. name: "Upsized",
  15719. height: math.unit(5 + 5 / 12, "feet")
  15720. },
  15721. ]
  15722. ))
  15723. characterMakers.push(() => makeCharacter(
  15724. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15725. {
  15726. front: {
  15727. height: math.unit(5 + 6 / 12, "feet"),
  15728. weight: math.unit(200, "lb"),
  15729. name: "Front",
  15730. image: {
  15731. source: "./media/characters/vivian-bijoux/front.svg",
  15732. extra: 1217/1209,
  15733. bottom: 76/1293
  15734. }
  15735. },
  15736. back: {
  15737. height: math.unit(5 + 6 / 12, "feet"),
  15738. weight: math.unit(200, "lb"),
  15739. name: "Back",
  15740. image: {
  15741. source: "./media/characters/vivian-bijoux/back.svg",
  15742. extra: 1214/1208,
  15743. bottom: 51/1265
  15744. }
  15745. },
  15746. dressed: {
  15747. height: math.unit(5 + 6 / 12, "feet"),
  15748. weight: math.unit(200, "lb"),
  15749. name: "Dressed",
  15750. image: {
  15751. source: "./media/characters/vivian-bijoux/dressed.svg",
  15752. extra: 1217/1209,
  15753. bottom: 76/1293
  15754. }
  15755. },
  15756. },
  15757. [
  15758. {
  15759. name: "Normal",
  15760. height: math.unit(5 + 6 / 12, "feet"),
  15761. default: true
  15762. },
  15763. {
  15764. name: "Bad Dream",
  15765. height: math.unit(500, "feet")
  15766. },
  15767. {
  15768. name: "Nightmare",
  15769. height: math.unit(500, "miles")
  15770. },
  15771. ]
  15772. ))
  15773. characterMakers.push(() => makeCharacter(
  15774. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15775. {
  15776. front: {
  15777. height: math.unit(6 + 1 / 12, "feet"),
  15778. weight: math.unit(260, "lb"),
  15779. name: "Front",
  15780. image: {
  15781. source: "./media/characters/zeta/front.svg",
  15782. extra: 1968 / 1889,
  15783. bottom: 0.06
  15784. }
  15785. },
  15786. back: {
  15787. height: math.unit(6 + 1 / 12, "feet"),
  15788. weight: math.unit(260, "lb"),
  15789. name: "Back",
  15790. image: {
  15791. source: "./media/characters/zeta/back.svg",
  15792. extra: 1944 / 1858,
  15793. bottom: 0.03
  15794. }
  15795. },
  15796. hand: {
  15797. height: math.unit(1.112, "feet"),
  15798. name: "Hand",
  15799. image: {
  15800. source: "./media/characters/zeta/hand.svg"
  15801. }
  15802. },
  15803. foot: {
  15804. height: math.unit(1.48, "feet"),
  15805. name: "Foot",
  15806. image: {
  15807. source: "./media/characters/zeta/foot.svg"
  15808. }
  15809. },
  15810. },
  15811. [
  15812. {
  15813. name: "Micro",
  15814. height: math.unit(6, "inches")
  15815. },
  15816. {
  15817. name: "Normal",
  15818. height: math.unit(6 + 1 / 12, "feet"),
  15819. default: true
  15820. },
  15821. {
  15822. name: "Macro",
  15823. height: math.unit(20, "feet")
  15824. },
  15825. ]
  15826. ))
  15827. characterMakers.push(() => makeCharacter(
  15828. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15829. {
  15830. front: {
  15831. height: math.unit(6, "feet"),
  15832. weight: math.unit(150, "lb"),
  15833. name: "Front",
  15834. image: {
  15835. source: "./media/characters/jamie-larsen/front.svg",
  15836. extra: 962 / 933,
  15837. bottom: 0.02
  15838. }
  15839. },
  15840. back: {
  15841. height: math.unit(6, "feet"),
  15842. weight: math.unit(150, "lb"),
  15843. name: "Back",
  15844. image: {
  15845. source: "./media/characters/jamie-larsen/back.svg",
  15846. extra: 997 / 946
  15847. }
  15848. },
  15849. },
  15850. [
  15851. {
  15852. name: "Macro",
  15853. height: math.unit(28 + 7 / 12, "feet"),
  15854. default: true
  15855. },
  15856. {
  15857. name: "Macro+",
  15858. height: math.unit(180, "feet")
  15859. },
  15860. {
  15861. name: "Megamacro",
  15862. height: math.unit(10, "miles")
  15863. },
  15864. {
  15865. name: "Gigamacro",
  15866. height: math.unit(200000, "miles")
  15867. },
  15868. ]
  15869. ))
  15870. characterMakers.push(() => makeCharacter(
  15871. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15872. {
  15873. front: {
  15874. height: math.unit(6, "feet"),
  15875. weight: math.unit(120, "lb"),
  15876. name: "Front",
  15877. image: {
  15878. source: "./media/characters/vance/front.svg",
  15879. extra: 1980 / 1890,
  15880. bottom: 0.09
  15881. }
  15882. },
  15883. back: {
  15884. height: math.unit(6, "feet"),
  15885. weight: math.unit(120, "lb"),
  15886. name: "Back",
  15887. image: {
  15888. source: "./media/characters/vance/back.svg",
  15889. extra: 2081 / 1994,
  15890. bottom: 0.014
  15891. }
  15892. },
  15893. hand: {
  15894. height: math.unit(0.88, "feet"),
  15895. name: "Hand",
  15896. image: {
  15897. source: "./media/characters/vance/hand.svg"
  15898. }
  15899. },
  15900. foot: {
  15901. height: math.unit(0.64, "feet"),
  15902. name: "Foot",
  15903. image: {
  15904. source: "./media/characters/vance/foot.svg"
  15905. }
  15906. },
  15907. },
  15908. [
  15909. {
  15910. name: "Small",
  15911. height: math.unit(90, "feet"),
  15912. default: true
  15913. },
  15914. {
  15915. name: "Macro",
  15916. height: math.unit(100, "meters")
  15917. },
  15918. {
  15919. name: "Megamacro",
  15920. height: math.unit(15, "miles")
  15921. },
  15922. ]
  15923. ))
  15924. characterMakers.push(() => makeCharacter(
  15925. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15926. {
  15927. front: {
  15928. height: math.unit(6, "feet"),
  15929. weight: math.unit(180, "lb"),
  15930. name: "Front",
  15931. image: {
  15932. source: "./media/characters/xochitl/front.svg",
  15933. extra: 2297 / 2261,
  15934. bottom: 0.065
  15935. }
  15936. },
  15937. back: {
  15938. height: math.unit(6, "feet"),
  15939. weight: math.unit(180, "lb"),
  15940. name: "Back",
  15941. image: {
  15942. source: "./media/characters/xochitl/back.svg",
  15943. extra: 2386 / 2354,
  15944. bottom: 0.01
  15945. }
  15946. },
  15947. foot: {
  15948. height: math.unit(6 / 5 * 1.15, "feet"),
  15949. weight: math.unit(150, "lb"),
  15950. name: "Foot",
  15951. image: {
  15952. source: "./media/characters/xochitl/foot.svg"
  15953. }
  15954. },
  15955. },
  15956. [
  15957. {
  15958. name: "Macro",
  15959. height: math.unit(80, "feet")
  15960. },
  15961. {
  15962. name: "Macro+",
  15963. height: math.unit(400, "feet"),
  15964. default: true
  15965. },
  15966. {
  15967. name: "Gigamacro",
  15968. height: math.unit(80000, "miles")
  15969. },
  15970. {
  15971. name: "Gigamacro+",
  15972. height: math.unit(400000, "miles")
  15973. },
  15974. {
  15975. name: "Teramacro",
  15976. height: math.unit(300, "AU")
  15977. },
  15978. ]
  15979. ))
  15980. characterMakers.push(() => makeCharacter(
  15981. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15982. {
  15983. front: {
  15984. height: math.unit(6, "feet"),
  15985. weight: math.unit(150, "lb"),
  15986. name: "Front",
  15987. image: {
  15988. source: "./media/characters/vincent/front.svg",
  15989. extra: 1130 / 1080,
  15990. bottom: 0.055
  15991. }
  15992. },
  15993. beak: {
  15994. height: math.unit(6 * 0.1, "feet"),
  15995. name: "Beak",
  15996. image: {
  15997. source: "./media/characters/vincent/beak.svg"
  15998. }
  15999. },
  16000. hand: {
  16001. height: math.unit(6 * 0.85, "feet"),
  16002. weight: math.unit(150, "lb"),
  16003. name: "Hand",
  16004. image: {
  16005. source: "./media/characters/vincent/hand.svg"
  16006. }
  16007. },
  16008. foot: {
  16009. height: math.unit(6 * 0.19, "feet"),
  16010. weight: math.unit(150, "lb"),
  16011. name: "Foot",
  16012. image: {
  16013. source: "./media/characters/vincent/foot.svg"
  16014. }
  16015. },
  16016. },
  16017. [
  16018. {
  16019. name: "Base",
  16020. height: math.unit(6 + 5 / 12, "feet"),
  16021. default: true
  16022. },
  16023. {
  16024. name: "Macro",
  16025. height: math.unit(300, "feet")
  16026. },
  16027. {
  16028. name: "Megamacro",
  16029. height: math.unit(2, "miles")
  16030. },
  16031. {
  16032. name: "Gigamacro",
  16033. height: math.unit(1000, "miles")
  16034. },
  16035. ]
  16036. ))
  16037. characterMakers.push(() => makeCharacter(
  16038. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  16039. {
  16040. front: {
  16041. height: math.unit(2, "meters"),
  16042. weight: math.unit(500, "kg"),
  16043. name: "Front",
  16044. image: {
  16045. source: "./media/characters/coatl/front.svg",
  16046. extra: 3948 / 3500,
  16047. bottom: 0.082
  16048. }
  16049. },
  16050. },
  16051. [
  16052. {
  16053. name: "Normal",
  16054. height: math.unit(4, "meters")
  16055. },
  16056. {
  16057. name: "Macro",
  16058. height: math.unit(100, "meters"),
  16059. default: true
  16060. },
  16061. {
  16062. name: "Macro+",
  16063. height: math.unit(300, "meters")
  16064. },
  16065. {
  16066. name: "Megamacro",
  16067. height: math.unit(3, "gigameters")
  16068. },
  16069. {
  16070. name: "Megamacro+",
  16071. height: math.unit(300, "terameters")
  16072. },
  16073. {
  16074. name: "Megamacro++",
  16075. height: math.unit(3, "lightyears")
  16076. },
  16077. ]
  16078. ))
  16079. characterMakers.push(() => makeCharacter(
  16080. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  16081. {
  16082. front: {
  16083. height: math.unit(6, "feet"),
  16084. weight: math.unit(50, "kg"),
  16085. name: "front",
  16086. image: {
  16087. source: "./media/characters/shiroryu/front.svg",
  16088. extra: 1990 / 1935
  16089. }
  16090. },
  16091. },
  16092. [
  16093. {
  16094. name: "Mortal Mingling",
  16095. height: math.unit(3, "meters")
  16096. },
  16097. {
  16098. name: "Kaiju-ish",
  16099. height: math.unit(250, "meters")
  16100. },
  16101. {
  16102. name: "Somewhat Godly",
  16103. height: math.unit(400, "km"),
  16104. default: true
  16105. },
  16106. {
  16107. name: "Planetary",
  16108. height: math.unit(300, "megameters")
  16109. },
  16110. {
  16111. name: "Galaxy-dwarfing",
  16112. height: math.unit(450, "kiloparsecs")
  16113. },
  16114. {
  16115. name: "Universe Eater",
  16116. height: math.unit(150, "gigaparsecs")
  16117. },
  16118. {
  16119. name: "Almost Immeasurable",
  16120. height: math.unit(1.3e266, "yottaparsecs")
  16121. },
  16122. ]
  16123. ))
  16124. characterMakers.push(() => makeCharacter(
  16125. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  16126. {
  16127. front: {
  16128. height: math.unit(6, "feet"),
  16129. weight: math.unit(150, "lb"),
  16130. name: "Front",
  16131. image: {
  16132. source: "./media/characters/umeko/front.svg",
  16133. extra: 1,
  16134. bottom: 0.019
  16135. }
  16136. },
  16137. frontArmored: {
  16138. height: math.unit(6, "feet"),
  16139. weight: math.unit(150, "lb"),
  16140. name: "Front (Armored)",
  16141. image: {
  16142. source: "./media/characters/umeko/front-armored.svg",
  16143. extra: 1,
  16144. bottom: 0.021
  16145. }
  16146. },
  16147. },
  16148. [
  16149. {
  16150. name: "Macro",
  16151. height: math.unit(220, "feet"),
  16152. default: true
  16153. },
  16154. {
  16155. name: "Guardian Dragon",
  16156. height: math.unit(50, "miles")
  16157. },
  16158. {
  16159. name: "Cosmic",
  16160. height: math.unit(800000, "miles")
  16161. },
  16162. ]
  16163. ))
  16164. characterMakers.push(() => makeCharacter(
  16165. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  16166. {
  16167. front: {
  16168. height: math.unit(6, "feet"),
  16169. weight: math.unit(150, "lb"),
  16170. name: "Front",
  16171. image: {
  16172. source: "./media/characters/cassidy/front.svg",
  16173. extra: 810/808,
  16174. bottom: 41/851
  16175. }
  16176. },
  16177. },
  16178. [
  16179. {
  16180. name: "Canon Height",
  16181. height: math.unit(120, "feet"),
  16182. default: true
  16183. },
  16184. {
  16185. name: "Macro+",
  16186. height: math.unit(400, "feet")
  16187. },
  16188. {
  16189. name: "Macro++",
  16190. height: math.unit(4000, "feet")
  16191. },
  16192. {
  16193. name: "Megamacro",
  16194. height: math.unit(3, "miles")
  16195. },
  16196. ]
  16197. ))
  16198. characterMakers.push(() => makeCharacter(
  16199. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  16200. {
  16201. front: {
  16202. height: math.unit(6, "feet"),
  16203. weight: math.unit(150, "lb"),
  16204. name: "Front",
  16205. image: {
  16206. source: "./media/characters/isaac/front.svg",
  16207. extra: 896 / 815,
  16208. bottom: 0.11
  16209. }
  16210. },
  16211. },
  16212. [
  16213. {
  16214. name: "Human Size",
  16215. height: math.unit(8, "feet"),
  16216. default: true
  16217. },
  16218. {
  16219. name: "Macro",
  16220. height: math.unit(400, "feet")
  16221. },
  16222. {
  16223. name: "Megamacro",
  16224. height: math.unit(50, "miles")
  16225. },
  16226. {
  16227. name: "Canon Height",
  16228. height: math.unit(200, "AU")
  16229. },
  16230. ]
  16231. ))
  16232. characterMakers.push(() => makeCharacter(
  16233. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  16234. {
  16235. front: {
  16236. height: math.unit(6, "feet"),
  16237. weight: math.unit(72, "kg"),
  16238. name: "Front",
  16239. image: {
  16240. source: "./media/characters/sleekit/front.svg",
  16241. extra: 4693 / 4487,
  16242. bottom: 0.012
  16243. }
  16244. },
  16245. },
  16246. [
  16247. {
  16248. name: "Minimum Height",
  16249. height: math.unit(10, "meters")
  16250. },
  16251. {
  16252. name: "Smaller",
  16253. height: math.unit(25, "meters")
  16254. },
  16255. {
  16256. name: "Larger",
  16257. height: math.unit(38, "meters"),
  16258. default: true
  16259. },
  16260. {
  16261. name: "Maximum height",
  16262. height: math.unit(100, "meters")
  16263. },
  16264. ]
  16265. ))
  16266. characterMakers.push(() => makeCharacter(
  16267. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  16268. {
  16269. front: {
  16270. height: math.unit(6, "feet"),
  16271. weight: math.unit(150, "lb"),
  16272. name: "Front",
  16273. image: {
  16274. source: "./media/characters/nillia/front.svg",
  16275. extra: 719/665,
  16276. bottom: 6/725
  16277. }
  16278. },
  16279. back: {
  16280. height: math.unit(6, "feet"),
  16281. weight: math.unit(150, "lb"),
  16282. name: "Back",
  16283. image: {
  16284. source: "./media/characters/nillia/back.svg",
  16285. extra: 705/651,
  16286. bottom: 5/710
  16287. }
  16288. },
  16289. },
  16290. [
  16291. {
  16292. name: "Canon Height",
  16293. height: math.unit(489, "feet"),
  16294. default: true
  16295. }
  16296. ]
  16297. ))
  16298. characterMakers.push(() => makeCharacter(
  16299. { name: "Mesmyriza", species: ["shark", "dragon", "robot", "deity"], tags: ["anthro"] },
  16300. {
  16301. front: {
  16302. height: math.unit(6, "feet"),
  16303. weight: math.unit(150, "lb"),
  16304. name: "Front",
  16305. image: {
  16306. source: "./media/characters/mesmyriza/front.svg",
  16307. extra: 1541/1291,
  16308. bottom: 87/1628
  16309. }
  16310. },
  16311. foot: {
  16312. height: math.unit(6 / (250 / 35), "feet"),
  16313. name: "Foot",
  16314. image: {
  16315. source: "./media/characters/mesmyriza/foot.svg"
  16316. }
  16317. },
  16318. },
  16319. [
  16320. {
  16321. name: "Macro",
  16322. height: math.unit(457, "meters"),
  16323. default: true
  16324. },
  16325. {
  16326. name: "Megamacro",
  16327. height: math.unit(8, "megameters")
  16328. },
  16329. ]
  16330. ))
  16331. characterMakers.push(() => makeCharacter(
  16332. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  16333. {
  16334. front: {
  16335. height: math.unit(6, "feet"),
  16336. weight: math.unit(250, "lb"),
  16337. name: "Front",
  16338. image: {
  16339. source: "./media/characters/saudade/front.svg",
  16340. extra: 1172 / 1139,
  16341. bottom: 0.035
  16342. }
  16343. },
  16344. },
  16345. [
  16346. {
  16347. name: "Micro",
  16348. height: math.unit(3, "inches")
  16349. },
  16350. {
  16351. name: "Normal",
  16352. height: math.unit(6, "feet"),
  16353. default: true
  16354. },
  16355. {
  16356. name: "Macro",
  16357. height: math.unit(50, "feet")
  16358. },
  16359. {
  16360. name: "Megamacro",
  16361. height: math.unit(2800, "feet")
  16362. },
  16363. ]
  16364. ))
  16365. characterMakers.push(() => makeCharacter(
  16366. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  16367. {
  16368. front: {
  16369. height: math.unit(5 + 4 / 12, "feet"),
  16370. weight: math.unit(100, "lb"),
  16371. name: "Front",
  16372. image: {
  16373. source: "./media/characters/keireer/front.svg",
  16374. extra: 716 / 666,
  16375. bottom: 0.05
  16376. }
  16377. },
  16378. },
  16379. [
  16380. {
  16381. name: "Normal",
  16382. height: math.unit(5 + 4 / 12, "feet"),
  16383. default: true
  16384. },
  16385. ]
  16386. ))
  16387. characterMakers.push(() => makeCharacter(
  16388. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  16389. {
  16390. front: {
  16391. height: math.unit(5.5, "feet"),
  16392. weight: math.unit(90, "kg"),
  16393. name: "Front",
  16394. image: {
  16395. source: "./media/characters/mirja/front.svg",
  16396. extra: 1452/1262,
  16397. bottom: 67/1519
  16398. }
  16399. },
  16400. frontDressed: {
  16401. height: math.unit(5.5, "feet"),
  16402. weight: math.unit(90, "lb"),
  16403. name: "Front (Dressed)",
  16404. image: {
  16405. source: "./media/characters/mirja/dressed.svg",
  16406. extra: 1452/1262,
  16407. bottom: 67/1519
  16408. }
  16409. },
  16410. back: {
  16411. height: math.unit(6, "feet"),
  16412. weight: math.unit(90, "lb"),
  16413. name: "Back",
  16414. image: {
  16415. source: "./media/characters/mirja/back.svg",
  16416. extra: 1892/1795,
  16417. bottom: 48/1940
  16418. }
  16419. },
  16420. maw: {
  16421. height: math.unit(1.312, "feet"),
  16422. name: "Maw",
  16423. image: {
  16424. source: "./media/characters/mirja/maw.svg"
  16425. }
  16426. },
  16427. paw: {
  16428. height: math.unit(1.15, "feet"),
  16429. name: "Paw",
  16430. image: {
  16431. source: "./media/characters/mirja/paw.svg"
  16432. }
  16433. },
  16434. },
  16435. [
  16436. {
  16437. name: "\"Incognito\"",
  16438. height: math.unit(3, "meters")
  16439. },
  16440. {
  16441. name: "Strolling Size",
  16442. height: math.unit(15, "km")
  16443. },
  16444. {
  16445. name: "Larger Strolling Size",
  16446. height: math.unit(400, "km")
  16447. },
  16448. {
  16449. name: "Preferred Size",
  16450. height: math.unit(5000, "km"),
  16451. default: true
  16452. },
  16453. {
  16454. name: "True Size",
  16455. height: math.unit(30657809462086840000000000000000, "parsecs"),
  16456. },
  16457. ]
  16458. ))
  16459. characterMakers.push(() => makeCharacter(
  16460. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  16461. {
  16462. front: {
  16463. height: math.unit(15, "feet"),
  16464. weight: math.unit(880, "kg"),
  16465. name: "Front",
  16466. image: {
  16467. source: "./media/characters/nightraver/front.svg",
  16468. extra: 2444 / 2160,
  16469. bottom: 0.027
  16470. }
  16471. },
  16472. back: {
  16473. height: math.unit(15, "feet"),
  16474. weight: math.unit(880, "kg"),
  16475. name: "Back",
  16476. image: {
  16477. source: "./media/characters/nightraver/back.svg",
  16478. extra: 2309 / 2180,
  16479. bottom: 0.005
  16480. }
  16481. },
  16482. sole: {
  16483. height: math.unit(2.878, "feet"),
  16484. name: "Sole",
  16485. image: {
  16486. source: "./media/characters/nightraver/sole.svg"
  16487. }
  16488. },
  16489. foot: {
  16490. height: math.unit(2.285, "feet"),
  16491. name: "Foot",
  16492. image: {
  16493. source: "./media/characters/nightraver/foot.svg"
  16494. }
  16495. },
  16496. maw: {
  16497. height: math.unit(2.67, "feet"),
  16498. name: "Maw",
  16499. image: {
  16500. source: "./media/characters/nightraver/maw.svg"
  16501. }
  16502. },
  16503. },
  16504. [
  16505. {
  16506. name: "Micro",
  16507. height: math.unit(1, "cm")
  16508. },
  16509. {
  16510. name: "Normal",
  16511. height: math.unit(15, "feet"),
  16512. default: true
  16513. },
  16514. {
  16515. name: "Macro",
  16516. height: math.unit(300, "feet")
  16517. },
  16518. {
  16519. name: "Megamacro",
  16520. height: math.unit(300, "miles")
  16521. },
  16522. {
  16523. name: "Gigamacro",
  16524. height: math.unit(10000, "miles")
  16525. },
  16526. ]
  16527. ))
  16528. characterMakers.push(() => makeCharacter(
  16529. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16530. {
  16531. side: {
  16532. height: math.unit(2, "inches"),
  16533. weight: math.unit(5, "grams"),
  16534. name: "Side",
  16535. image: {
  16536. source: "./media/characters/arc/side.svg"
  16537. }
  16538. },
  16539. },
  16540. [
  16541. {
  16542. name: "Micro",
  16543. height: math.unit(2, "inches"),
  16544. default: true
  16545. },
  16546. ]
  16547. ))
  16548. characterMakers.push(() => makeCharacter(
  16549. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16550. {
  16551. front: {
  16552. height: math.unit(1.1938, "meters"),
  16553. weight: math.unit(54, "kg"),
  16554. name: "Front",
  16555. image: {
  16556. source: "./media/characters/nebula-shahar/front.svg",
  16557. extra: 1642 / 1436,
  16558. bottom: 0.06
  16559. }
  16560. },
  16561. },
  16562. [
  16563. {
  16564. name: "Megamicro",
  16565. height: math.unit(0.3, "mm")
  16566. },
  16567. {
  16568. name: "Micro",
  16569. height: math.unit(3, "cm")
  16570. },
  16571. {
  16572. name: "Normal",
  16573. height: math.unit(138, "cm"),
  16574. default: true
  16575. },
  16576. {
  16577. name: "Macro",
  16578. height: math.unit(30, "m")
  16579. },
  16580. ]
  16581. ))
  16582. characterMakers.push(() => makeCharacter(
  16583. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16584. {
  16585. front: {
  16586. height: math.unit(5.24, "feet"),
  16587. weight: math.unit(150, "lb"),
  16588. name: "Front",
  16589. image: {
  16590. source: "./media/characters/shayla/front.svg",
  16591. extra: 1512 / 1414,
  16592. bottom: 0.01
  16593. }
  16594. },
  16595. back: {
  16596. height: math.unit(5.24, "feet"),
  16597. weight: math.unit(150, "lb"),
  16598. name: "Back",
  16599. image: {
  16600. source: "./media/characters/shayla/back.svg",
  16601. extra: 1512 / 1414
  16602. }
  16603. },
  16604. hand: {
  16605. height: math.unit(0.7781496062992126, "feet"),
  16606. name: "Hand",
  16607. image: {
  16608. source: "./media/characters/shayla/hand.svg"
  16609. }
  16610. },
  16611. foot: {
  16612. height: math.unit(1.4206036745406823, "feet"),
  16613. name: "Foot",
  16614. image: {
  16615. source: "./media/characters/shayla/foot.svg"
  16616. }
  16617. },
  16618. },
  16619. [
  16620. {
  16621. name: "Micro",
  16622. height: math.unit(0.32, "feet")
  16623. },
  16624. {
  16625. name: "Normal",
  16626. height: math.unit(5.24, "feet"),
  16627. default: true
  16628. },
  16629. {
  16630. name: "Macro",
  16631. height: math.unit(492.12, "feet")
  16632. },
  16633. {
  16634. name: "Megamacro",
  16635. height: math.unit(186.41, "miles")
  16636. },
  16637. ]
  16638. ))
  16639. characterMakers.push(() => makeCharacter(
  16640. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16641. {
  16642. front: {
  16643. height: math.unit(2.2, "m"),
  16644. weight: math.unit(120, "kg"),
  16645. name: "Front",
  16646. image: {
  16647. source: "./media/characters/pia-jr/front.svg",
  16648. extra: 1000 / 970,
  16649. bottom: 0.035
  16650. }
  16651. },
  16652. hand: {
  16653. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16654. name: "Hand",
  16655. image: {
  16656. source: "./media/characters/pia-jr/hand.svg"
  16657. }
  16658. },
  16659. paw: {
  16660. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16661. name: "Paw",
  16662. image: {
  16663. source: "./media/characters/pia-jr/paw.svg"
  16664. }
  16665. },
  16666. },
  16667. [
  16668. {
  16669. name: "Micro",
  16670. height: math.unit(1.2, "cm")
  16671. },
  16672. {
  16673. name: "Normal",
  16674. height: math.unit(2.2, "m"),
  16675. default: true
  16676. },
  16677. {
  16678. name: "Macro",
  16679. height: math.unit(180, "m")
  16680. },
  16681. {
  16682. name: "Megamacro",
  16683. height: math.unit(420, "km")
  16684. },
  16685. ]
  16686. ))
  16687. characterMakers.push(() => makeCharacter(
  16688. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16689. {
  16690. front: {
  16691. height: math.unit(2, "m"),
  16692. weight: math.unit(115, "kg"),
  16693. name: "Front",
  16694. image: {
  16695. source: "./media/characters/pia-sr/front.svg",
  16696. extra: 760 / 730,
  16697. bottom: 0.015
  16698. }
  16699. },
  16700. back: {
  16701. height: math.unit(2, "m"),
  16702. weight: math.unit(115, "kg"),
  16703. name: "Back",
  16704. image: {
  16705. source: "./media/characters/pia-sr/back.svg",
  16706. extra: 760 / 730,
  16707. bottom: 0.01
  16708. }
  16709. },
  16710. hand: {
  16711. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16712. name: "Hand",
  16713. image: {
  16714. source: "./media/characters/pia-sr/hand.svg"
  16715. }
  16716. },
  16717. foot: {
  16718. height: math.unit(1.83, "feet"),
  16719. name: "Foot",
  16720. image: {
  16721. source: "./media/characters/pia-sr/foot.svg"
  16722. }
  16723. },
  16724. },
  16725. [
  16726. {
  16727. name: "Micro",
  16728. height: math.unit(88, "mm")
  16729. },
  16730. {
  16731. name: "Normal",
  16732. height: math.unit(2, "m"),
  16733. default: true
  16734. },
  16735. {
  16736. name: "Macro",
  16737. height: math.unit(200, "m")
  16738. },
  16739. {
  16740. name: "Megamacro",
  16741. height: math.unit(420, "km")
  16742. },
  16743. ]
  16744. ))
  16745. characterMakers.push(() => makeCharacter(
  16746. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16747. {
  16748. front: {
  16749. height: math.unit(8 + 2 / 12, "feet"),
  16750. weight: math.unit(300, "lb"),
  16751. name: "Front",
  16752. image: {
  16753. source: "./media/characters/kibibyte/front.svg",
  16754. extra: 2221 / 2098,
  16755. bottom: 0.04
  16756. }
  16757. },
  16758. },
  16759. [
  16760. {
  16761. name: "Normal",
  16762. height: math.unit(8 + 2 / 12, "feet"),
  16763. default: true
  16764. },
  16765. {
  16766. name: "Socialable Macro",
  16767. height: math.unit(50, "feet")
  16768. },
  16769. {
  16770. name: "Macro",
  16771. height: math.unit(300, "feet")
  16772. },
  16773. {
  16774. name: "Megamacro",
  16775. height: math.unit(500, "miles")
  16776. },
  16777. ]
  16778. ))
  16779. characterMakers.push(() => makeCharacter(
  16780. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16781. {
  16782. front: {
  16783. height: math.unit(6, "feet"),
  16784. weight: math.unit(150, "lb"),
  16785. name: "Front",
  16786. image: {
  16787. source: "./media/characters/felix/front.svg",
  16788. extra: 762 / 722,
  16789. bottom: 0.02
  16790. }
  16791. },
  16792. frontClothed: {
  16793. height: math.unit(6, "feet"),
  16794. weight: math.unit(150, "lb"),
  16795. name: "Front (Clothed)",
  16796. image: {
  16797. source: "./media/characters/felix/front-clothed.svg",
  16798. extra: 762 / 722,
  16799. bottom: 0.02
  16800. }
  16801. },
  16802. },
  16803. [
  16804. {
  16805. name: "Normal",
  16806. height: math.unit(6 + 8 / 12, "feet"),
  16807. default: true
  16808. },
  16809. {
  16810. name: "Macro",
  16811. height: math.unit(2600, "feet")
  16812. },
  16813. {
  16814. name: "Megamacro",
  16815. height: math.unit(450, "miles")
  16816. },
  16817. ]
  16818. ))
  16819. characterMakers.push(() => makeCharacter(
  16820. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16821. {
  16822. front: {
  16823. height: math.unit(6 + 1 / 12, "feet"),
  16824. weight: math.unit(250, "lb"),
  16825. name: "Front",
  16826. image: {
  16827. source: "./media/characters/tobo/front.svg",
  16828. extra: 608 / 586,
  16829. bottom: 0.023
  16830. }
  16831. },
  16832. back: {
  16833. height: math.unit(6 + 1 / 12, "feet"),
  16834. weight: math.unit(250, "lb"),
  16835. name: "Back",
  16836. image: {
  16837. source: "./media/characters/tobo/back.svg",
  16838. extra: 608 / 586
  16839. }
  16840. },
  16841. },
  16842. [
  16843. {
  16844. name: "Nano",
  16845. height: math.unit(2, "nm")
  16846. },
  16847. {
  16848. name: "Megamicro",
  16849. height: math.unit(0.1, "mm")
  16850. },
  16851. {
  16852. name: "Micro",
  16853. height: math.unit(1, "inch"),
  16854. default: true
  16855. },
  16856. {
  16857. name: "Human-sized",
  16858. height: math.unit(6 + 1 / 12, "feet")
  16859. },
  16860. {
  16861. name: "Macro",
  16862. height: math.unit(250, "feet")
  16863. },
  16864. {
  16865. name: "Megamacro",
  16866. height: math.unit(75, "miles")
  16867. },
  16868. {
  16869. name: "Texas-sized",
  16870. height: math.unit(750, "miles")
  16871. },
  16872. {
  16873. name: "Teramacro",
  16874. height: math.unit(50000, "miles")
  16875. },
  16876. ]
  16877. ))
  16878. characterMakers.push(() => makeCharacter(
  16879. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16880. {
  16881. front: {
  16882. height: math.unit(6, "feet"),
  16883. weight: math.unit(269, "lb"),
  16884. name: "Front",
  16885. image: {
  16886. source: "./media/characters/danny-kapowsky/front.svg",
  16887. extra: 766 / 736,
  16888. bottom: 0.044
  16889. }
  16890. },
  16891. back: {
  16892. height: math.unit(6, "feet"),
  16893. weight: math.unit(269, "lb"),
  16894. name: "Back",
  16895. image: {
  16896. source: "./media/characters/danny-kapowsky/back.svg",
  16897. extra: 797 / 760,
  16898. bottom: 0.025
  16899. }
  16900. },
  16901. },
  16902. [
  16903. {
  16904. name: "Macro",
  16905. height: math.unit(150, "feet"),
  16906. default: true
  16907. },
  16908. {
  16909. name: "Macro+",
  16910. height: math.unit(200, "feet")
  16911. },
  16912. {
  16913. name: "Macro++",
  16914. height: math.unit(300, "feet")
  16915. },
  16916. {
  16917. name: "Macro+++",
  16918. height: math.unit(400, "feet")
  16919. },
  16920. ]
  16921. ))
  16922. characterMakers.push(() => makeCharacter(
  16923. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16924. {
  16925. side: {
  16926. height: math.unit(6, "feet"),
  16927. weight: math.unit(170, "lb"),
  16928. name: "Side",
  16929. image: {
  16930. source: "./media/characters/finn/side.svg",
  16931. extra: 1953 / 1807,
  16932. bottom: 0.057
  16933. }
  16934. },
  16935. },
  16936. [
  16937. {
  16938. name: "Megamacro",
  16939. height: math.unit(14445, "feet"),
  16940. default: true
  16941. },
  16942. ]
  16943. ))
  16944. characterMakers.push(() => makeCharacter(
  16945. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16946. {
  16947. front: {
  16948. height: math.unit(5 + 6 / 12, "feet"),
  16949. weight: math.unit(125, "lb"),
  16950. name: "Front",
  16951. image: {
  16952. source: "./media/characters/roy/front.svg",
  16953. extra: 1,
  16954. bottom: 0.11
  16955. }
  16956. },
  16957. },
  16958. [
  16959. {
  16960. name: "Micro",
  16961. height: math.unit(3, "inches"),
  16962. default: true
  16963. },
  16964. {
  16965. name: "Normal",
  16966. height: math.unit(5 + 6 / 12, "feet")
  16967. },
  16968. {
  16969. name: "Lesser Macro",
  16970. height: math.unit(60, "feet")
  16971. },
  16972. {
  16973. name: "Greater Macro",
  16974. height: math.unit(120, "feet")
  16975. },
  16976. ]
  16977. ))
  16978. characterMakers.push(() => makeCharacter(
  16979. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16980. {
  16981. front: {
  16982. height: math.unit(6, "feet"),
  16983. weight: math.unit(100, "lb"),
  16984. name: "Front",
  16985. image: {
  16986. source: "./media/characters/aevsivs/front.svg",
  16987. extra: 1,
  16988. bottom: 0.03
  16989. }
  16990. },
  16991. back: {
  16992. height: math.unit(6, "feet"),
  16993. weight: math.unit(100, "lb"),
  16994. name: "Back",
  16995. image: {
  16996. source: "./media/characters/aevsivs/back.svg"
  16997. }
  16998. },
  16999. },
  17000. [
  17001. {
  17002. name: "Micro",
  17003. height: math.unit(2, "inches"),
  17004. default: true
  17005. },
  17006. {
  17007. name: "Normal",
  17008. height: math.unit(5, "feet")
  17009. },
  17010. ]
  17011. ))
  17012. characterMakers.push(() => makeCharacter(
  17013. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  17014. {
  17015. front: {
  17016. height: math.unit(5 + 7 / 12, "feet"),
  17017. weight: math.unit(159, "lb"),
  17018. name: "Front",
  17019. image: {
  17020. source: "./media/characters/hildegard/front.svg",
  17021. extra: 289 / 269,
  17022. bottom: 7.63 / 297.8
  17023. }
  17024. },
  17025. back: {
  17026. height: math.unit(5 + 7 / 12, "feet"),
  17027. weight: math.unit(159, "lb"),
  17028. name: "Back",
  17029. image: {
  17030. source: "./media/characters/hildegard/back.svg",
  17031. extra: 280 / 260,
  17032. bottom: 2.3 / 282
  17033. }
  17034. },
  17035. },
  17036. [
  17037. {
  17038. name: "Normal",
  17039. height: math.unit(5 + 7 / 12, "feet"),
  17040. default: true
  17041. },
  17042. ]
  17043. ))
  17044. characterMakers.push(() => makeCharacter(
  17045. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  17046. {
  17047. bernard: {
  17048. height: math.unit(2 + 7 / 12, "feet"),
  17049. weight: math.unit(66, "lb"),
  17050. name: "Bernard",
  17051. rename: true,
  17052. image: {
  17053. source: "./media/characters/bernard-wilder/bernard.svg",
  17054. extra: 192 / 128,
  17055. bottom: 0.05
  17056. }
  17057. },
  17058. wilder: {
  17059. height: math.unit(5 + 8 / 12, "feet"),
  17060. weight: math.unit(143, "lb"),
  17061. name: "Wilder",
  17062. rename: true,
  17063. image: {
  17064. source: "./media/characters/bernard-wilder/wilder.svg",
  17065. extra: 361 / 312,
  17066. bottom: 0.02
  17067. }
  17068. },
  17069. },
  17070. [
  17071. {
  17072. name: "Normal",
  17073. height: math.unit(2 + 7 / 12, "feet"),
  17074. default: true
  17075. },
  17076. ]
  17077. ))
  17078. characterMakers.push(() => makeCharacter(
  17079. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  17080. {
  17081. anthro: {
  17082. height: math.unit(6 + 1 / 12, "feet"),
  17083. weight: math.unit(155, "lb"),
  17084. name: "Anthro",
  17085. image: {
  17086. source: "./media/characters/hearth/anthro.svg",
  17087. extra: 1178/1136,
  17088. bottom: 28/1206
  17089. }
  17090. },
  17091. feral: {
  17092. height: math.unit(3.78, "feet"),
  17093. weight: math.unit(35, "kg"),
  17094. name: "Feral",
  17095. image: {
  17096. source: "./media/characters/hearth/feral.svg",
  17097. extra: 153 / 135,
  17098. bottom: 0.03
  17099. }
  17100. },
  17101. },
  17102. [
  17103. {
  17104. name: "Normal",
  17105. height: math.unit(6 + 1 / 12, "feet"),
  17106. default: true
  17107. },
  17108. ]
  17109. ))
  17110. characterMakers.push(() => makeCharacter(
  17111. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  17112. {
  17113. front: {
  17114. height: math.unit(6, "feet"),
  17115. weight: math.unit(182, "lb"),
  17116. name: "Front",
  17117. image: {
  17118. source: "./media/characters/ingrid/front.svg",
  17119. extra: 294 / 268,
  17120. bottom: 0.027
  17121. }
  17122. },
  17123. },
  17124. [
  17125. {
  17126. name: "Normal",
  17127. height: math.unit(6, "feet"),
  17128. default: true
  17129. },
  17130. ]
  17131. ))
  17132. characterMakers.push(() => makeCharacter(
  17133. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  17134. {
  17135. eevee: {
  17136. height: math.unit(2 + 10 / 12, "feet"),
  17137. weight: math.unit(86, "lb"),
  17138. name: "Malgam",
  17139. image: {
  17140. source: "./media/characters/malgam/eevee.svg",
  17141. extra: 952/784,
  17142. bottom: 38/990
  17143. }
  17144. },
  17145. sylveon: {
  17146. height: math.unit(4, "feet"),
  17147. weight: math.unit(101, "lb"),
  17148. name: "Future Malgam",
  17149. rename: true,
  17150. image: {
  17151. source: "./media/characters/malgam/sylveon.svg",
  17152. extra: 371 / 325,
  17153. bottom: 0.015
  17154. }
  17155. },
  17156. gigantamax: {
  17157. height: math.unit(50, "feet"),
  17158. name: "Gigantamax Malgam",
  17159. rename: true,
  17160. image: {
  17161. source: "./media/characters/malgam/gigantamax.svg"
  17162. }
  17163. },
  17164. },
  17165. [
  17166. {
  17167. name: "Normal",
  17168. height: math.unit(2 + 10 / 12, "feet"),
  17169. default: true
  17170. },
  17171. ]
  17172. ))
  17173. characterMakers.push(() => makeCharacter(
  17174. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  17175. {
  17176. front: {
  17177. height: math.unit(5 + 11 / 12, "feet"),
  17178. weight: math.unit(188, "lb"),
  17179. name: "Front",
  17180. image: {
  17181. source: "./media/characters/fleur/front.svg",
  17182. extra: 309 / 283,
  17183. bottom: 0.007
  17184. }
  17185. },
  17186. },
  17187. [
  17188. {
  17189. name: "Normal",
  17190. height: math.unit(5 + 11 / 12, "feet"),
  17191. default: true
  17192. },
  17193. ]
  17194. ))
  17195. characterMakers.push(() => makeCharacter(
  17196. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  17197. {
  17198. front: {
  17199. height: math.unit(5 + 4 / 12, "feet"),
  17200. weight: math.unit(122, "lb"),
  17201. name: "Front",
  17202. image: {
  17203. source: "./media/characters/jude/front.svg",
  17204. extra: 288 / 273,
  17205. bottom: 0.03
  17206. }
  17207. },
  17208. },
  17209. [
  17210. {
  17211. name: "Normal",
  17212. height: math.unit(5 + 4 / 12, "feet"),
  17213. default: true
  17214. },
  17215. ]
  17216. ))
  17217. characterMakers.push(() => makeCharacter(
  17218. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  17219. {
  17220. front: {
  17221. height: math.unit(5 + 11 / 12, "feet"),
  17222. weight: math.unit(190, "lb"),
  17223. name: "Front",
  17224. image: {
  17225. source: "./media/characters/seara/front.svg",
  17226. extra: 1,
  17227. bottom: 0.05
  17228. }
  17229. },
  17230. },
  17231. [
  17232. {
  17233. name: "Normal",
  17234. height: math.unit(5 + 11 / 12, "feet"),
  17235. default: true
  17236. },
  17237. ]
  17238. ))
  17239. characterMakers.push(() => makeCharacter(
  17240. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  17241. {
  17242. front: {
  17243. height: math.unit(16 + 5 / 12, "feet"),
  17244. weight: math.unit(524, "lb"),
  17245. name: "Front",
  17246. image: {
  17247. source: "./media/characters/caspian-lugia/front.svg",
  17248. extra: 1,
  17249. bottom: 0.04
  17250. }
  17251. },
  17252. },
  17253. [
  17254. {
  17255. name: "Normal",
  17256. height: math.unit(16 + 5 / 12, "feet"),
  17257. default: true
  17258. },
  17259. ]
  17260. ))
  17261. characterMakers.push(() => makeCharacter(
  17262. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  17263. {
  17264. front: {
  17265. height: math.unit(5 + 7 / 12, "feet"),
  17266. weight: math.unit(170, "lb"),
  17267. name: "Front",
  17268. image: {
  17269. source: "./media/characters/mika/front.svg",
  17270. extra: 1,
  17271. bottom: 0.016
  17272. }
  17273. },
  17274. },
  17275. [
  17276. {
  17277. name: "Normal",
  17278. height: math.unit(5 + 7 / 12, "feet"),
  17279. default: true
  17280. },
  17281. ]
  17282. ))
  17283. characterMakers.push(() => makeCharacter(
  17284. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  17285. {
  17286. front: {
  17287. height: math.unit(6 + 2 / 12, "feet"),
  17288. weight: math.unit(268, "lb"),
  17289. name: "Front",
  17290. image: {
  17291. source: "./media/characters/sol/front.svg",
  17292. extra: 247 / 231,
  17293. bottom: 0.05
  17294. }
  17295. },
  17296. },
  17297. [
  17298. {
  17299. name: "Normal",
  17300. height: math.unit(6 + 2 / 12, "feet"),
  17301. default: true
  17302. },
  17303. ]
  17304. ))
  17305. characterMakers.push(() => makeCharacter(
  17306. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  17307. {
  17308. buizel: {
  17309. height: math.unit(2 + 5 / 12, "feet"),
  17310. weight: math.unit(87, "lb"),
  17311. name: "Front",
  17312. image: {
  17313. source: "./media/characters/umiko/buizel.svg",
  17314. extra: 172 / 157,
  17315. bottom: 0.01
  17316. },
  17317. form: "buizel",
  17318. default: true
  17319. },
  17320. floatzel: {
  17321. height: math.unit(5 + 9 / 12, "feet"),
  17322. weight: math.unit(250, "lb"),
  17323. name: "Front",
  17324. image: {
  17325. source: "./media/characters/umiko/floatzel.svg",
  17326. extra: 1076/1006,
  17327. bottom: 15/1091
  17328. },
  17329. form: "floatzel",
  17330. default: true
  17331. },
  17332. },
  17333. [
  17334. {
  17335. name: "Normal",
  17336. height: math.unit(2 + 5 / 12, "feet"),
  17337. form: "buizel",
  17338. default: true
  17339. },
  17340. {
  17341. name: "Normal",
  17342. height: math.unit(5 + 9 / 12, "feet"),
  17343. form: "floatzel",
  17344. default: true
  17345. },
  17346. ],
  17347. {
  17348. "buizel": {
  17349. name: "Buizel"
  17350. },
  17351. "floatzel": {
  17352. name: "Floatzel",
  17353. default: true
  17354. }
  17355. }
  17356. ))
  17357. characterMakers.push(() => makeCharacter(
  17358. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  17359. {
  17360. front: {
  17361. height: math.unit(6 + 2 / 12, "feet"),
  17362. weight: math.unit(146, "lb"),
  17363. name: "Front",
  17364. image: {
  17365. source: "./media/characters/iliac/front.svg",
  17366. extra: 389 / 365,
  17367. bottom: 0.035
  17368. }
  17369. },
  17370. },
  17371. [
  17372. {
  17373. name: "Normal",
  17374. height: math.unit(6 + 2 / 12, "feet"),
  17375. default: true
  17376. },
  17377. ]
  17378. ))
  17379. characterMakers.push(() => makeCharacter(
  17380. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  17381. {
  17382. front: {
  17383. height: math.unit(6, "feet"),
  17384. weight: math.unit(170, "lb"),
  17385. name: "Front",
  17386. image: {
  17387. source: "./media/characters/topaz/front.svg",
  17388. extra: 317 / 303,
  17389. bottom: 0.055
  17390. }
  17391. },
  17392. },
  17393. [
  17394. {
  17395. name: "Normal",
  17396. height: math.unit(6, "feet"),
  17397. default: true
  17398. },
  17399. ]
  17400. ))
  17401. characterMakers.push(() => makeCharacter(
  17402. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  17403. {
  17404. front: {
  17405. height: math.unit(5 + 11 / 12, "feet"),
  17406. weight: math.unit(144, "lb"),
  17407. name: "Front",
  17408. image: {
  17409. source: "./media/characters/gabriel/front.svg",
  17410. extra: 285 / 262,
  17411. bottom: 0.004
  17412. }
  17413. },
  17414. },
  17415. [
  17416. {
  17417. name: "Normal",
  17418. height: math.unit(5 + 11 / 12, "feet"),
  17419. default: true
  17420. },
  17421. ]
  17422. ))
  17423. characterMakers.push(() => makeCharacter(
  17424. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  17425. {
  17426. side: {
  17427. height: math.unit(6 + 5 / 12, "feet"),
  17428. weight: math.unit(300, "lb"),
  17429. name: "Side",
  17430. image: {
  17431. source: "./media/characters/tempest-suicune/side.svg",
  17432. extra: 195 / 154,
  17433. bottom: 0.04
  17434. }
  17435. },
  17436. },
  17437. [
  17438. {
  17439. name: "Normal",
  17440. height: math.unit(6 + 5 / 12, "feet"),
  17441. default: true
  17442. },
  17443. ]
  17444. ))
  17445. characterMakers.push(() => makeCharacter(
  17446. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  17447. {
  17448. front: {
  17449. height: math.unit(7 + 2 / 12, "feet"),
  17450. weight: math.unit(322, "lb"),
  17451. name: "Front",
  17452. image: {
  17453. source: "./media/characters/vulcan/front.svg",
  17454. extra: 154 / 147,
  17455. bottom: 0.04
  17456. }
  17457. },
  17458. },
  17459. [
  17460. {
  17461. name: "Normal",
  17462. height: math.unit(7 + 2 / 12, "feet"),
  17463. default: true
  17464. },
  17465. ]
  17466. ))
  17467. characterMakers.push(() => makeCharacter(
  17468. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  17469. {
  17470. front: {
  17471. height: math.unit(5 + 10 / 12, "feet"),
  17472. weight: math.unit(264, "lb"),
  17473. name: "Front",
  17474. image: {
  17475. source: "./media/characters/gault/front.svg",
  17476. extra: 161 / 140,
  17477. bottom: 0.028
  17478. }
  17479. },
  17480. },
  17481. [
  17482. {
  17483. name: "Normal",
  17484. height: math.unit(5 + 10 / 12, "feet"),
  17485. default: true
  17486. },
  17487. ]
  17488. ))
  17489. characterMakers.push(() => makeCharacter(
  17490. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  17491. {
  17492. front: {
  17493. height: math.unit(6, "feet"),
  17494. weight: math.unit(150, "lb"),
  17495. name: "Front",
  17496. image: {
  17497. source: "./media/characters/shard/front.svg",
  17498. extra: 273 / 238,
  17499. bottom: 0.02
  17500. }
  17501. },
  17502. },
  17503. [
  17504. {
  17505. name: "Normal",
  17506. height: math.unit(3 + 6 / 12, "feet"),
  17507. default: true
  17508. },
  17509. ]
  17510. ))
  17511. characterMakers.push(() => makeCharacter(
  17512. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17513. {
  17514. front: {
  17515. height: math.unit(5 + 11 / 12, "feet"),
  17516. weight: math.unit(146, "lb"),
  17517. name: "Front",
  17518. image: {
  17519. source: "./media/characters/ashe/front.svg",
  17520. extra: 400 / 373,
  17521. bottom: 0.01
  17522. }
  17523. },
  17524. },
  17525. [
  17526. {
  17527. name: "Normal",
  17528. height: math.unit(5 + 11 / 12, "feet"),
  17529. default: true
  17530. },
  17531. ]
  17532. ))
  17533. characterMakers.push(() => makeCharacter(
  17534. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17535. {
  17536. front: {
  17537. height: math.unit(5 + 5 / 12, "feet"),
  17538. weight: math.unit(135, "lb"),
  17539. name: "Front",
  17540. image: {
  17541. source: "./media/characters/beatrix/front.svg",
  17542. extra: 392 / 379,
  17543. bottom: 0.01
  17544. }
  17545. },
  17546. },
  17547. [
  17548. {
  17549. name: "Normal",
  17550. height: math.unit(6, "feet"),
  17551. default: true
  17552. },
  17553. ]
  17554. ))
  17555. characterMakers.push(() => makeCharacter(
  17556. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17557. {
  17558. front: {
  17559. height: math.unit(6 + 2/12, "feet"),
  17560. weight: math.unit(135, "lb"),
  17561. name: "Front",
  17562. image: {
  17563. source: "./media/characters/ignatius/front.svg",
  17564. extra: 1380/1259,
  17565. bottom: 27/1407
  17566. }
  17567. },
  17568. },
  17569. [
  17570. {
  17571. name: "Normal",
  17572. height: math.unit(6 + 2/12, "feet"),
  17573. default: true
  17574. },
  17575. ]
  17576. ))
  17577. characterMakers.push(() => makeCharacter(
  17578. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17579. {
  17580. front: {
  17581. height: math.unit(6 + 2 / 12, "feet"),
  17582. weight: math.unit(138, "lb"),
  17583. name: "Front",
  17584. image: {
  17585. source: "./media/characters/mei-li/front.svg",
  17586. extra: 237 / 229,
  17587. bottom: 0.03
  17588. }
  17589. },
  17590. },
  17591. [
  17592. {
  17593. name: "Normal",
  17594. height: math.unit(6 + 2 / 12, "feet"),
  17595. default: true
  17596. },
  17597. ]
  17598. ))
  17599. characterMakers.push(() => makeCharacter(
  17600. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17601. {
  17602. front: {
  17603. height: math.unit(2 + 4 / 12, "feet"),
  17604. weight: math.unit(62, "lb"),
  17605. name: "Front",
  17606. image: {
  17607. source: "./media/characters/puru/front.svg",
  17608. extra: 206 / 149,
  17609. bottom: 0.06
  17610. }
  17611. },
  17612. },
  17613. [
  17614. {
  17615. name: "Normal",
  17616. height: math.unit(2 + 4 / 12, "feet"),
  17617. default: true
  17618. },
  17619. ]
  17620. ))
  17621. characterMakers.push(() => makeCharacter(
  17622. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17623. {
  17624. anthro: {
  17625. height: math.unit(5 + 8/12, "feet"),
  17626. weight: math.unit(200, "lb"),
  17627. energyNeed: math.unit(2000, "kcal"),
  17628. name: "Anthro",
  17629. image: {
  17630. source: "./media/characters/kee/anthro.svg",
  17631. extra: 3251/3184,
  17632. bottom: 250/3501
  17633. }
  17634. },
  17635. taur: {
  17636. height: math.unit(11, "feet"),
  17637. weight: math.unit(500, "lb"),
  17638. energyNeed: math.unit(5000, "kcal"),
  17639. name: "Taur",
  17640. image: {
  17641. source: "./media/characters/kee/taur.svg",
  17642. extra: 1362/1320,
  17643. bottom: 83/1445
  17644. }
  17645. },
  17646. },
  17647. [
  17648. {
  17649. name: "Normal",
  17650. height: math.unit(5 + 8/12, "feet"),
  17651. default: true
  17652. },
  17653. {
  17654. name: "Macro",
  17655. height: math.unit(35, "feet")
  17656. },
  17657. ]
  17658. ))
  17659. characterMakers.push(() => makeCharacter(
  17660. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17661. {
  17662. anthro: {
  17663. height: math.unit(7, "feet"),
  17664. weight: math.unit(190, "lb"),
  17665. name: "Anthro",
  17666. image: {
  17667. source: "./media/characters/cobalt-dracha/anthro.svg",
  17668. extra: 231 / 225,
  17669. bottom: 0.04
  17670. }
  17671. },
  17672. feral: {
  17673. height: math.unit(9 + 7 / 12, "feet"),
  17674. weight: math.unit(294, "lb"),
  17675. name: "Feral",
  17676. image: {
  17677. source: "./media/characters/cobalt-dracha/feral.svg",
  17678. extra: 692 / 633,
  17679. bottom: 0.05
  17680. }
  17681. },
  17682. },
  17683. [
  17684. {
  17685. name: "Normal",
  17686. height: math.unit(7, "feet"),
  17687. default: true
  17688. },
  17689. ]
  17690. ))
  17691. characterMakers.push(() => makeCharacter(
  17692. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17693. {
  17694. fallen: {
  17695. height: math.unit(11 + 8 / 12, "feet"),
  17696. weight: math.unit(485, "lb"),
  17697. name: "Java (Fallen)",
  17698. rename: true,
  17699. image: {
  17700. source: "./media/characters/java/fallen.svg",
  17701. extra: 226 / 208,
  17702. bottom: 0.005
  17703. }
  17704. },
  17705. godkin: {
  17706. height: math.unit(10 + 6 / 12, "feet"),
  17707. weight: math.unit(328, "lb"),
  17708. name: "Java (Godkin)",
  17709. rename: true,
  17710. image: {
  17711. source: "./media/characters/java/godkin.svg",
  17712. extra: 1104/1068,
  17713. bottom: 36/1140
  17714. }
  17715. },
  17716. },
  17717. [
  17718. {
  17719. name: "Normal",
  17720. height: math.unit(11 + 8 / 12, "feet"),
  17721. default: true
  17722. },
  17723. ]
  17724. ))
  17725. characterMakers.push(() => makeCharacter(
  17726. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17727. {
  17728. front: {
  17729. height: math.unit(5 + 9 / 12, "feet"),
  17730. weight: math.unit(170, "lb"),
  17731. name: "Front",
  17732. image: {
  17733. source: "./media/characters/purna/front.svg",
  17734. extra: 239 / 229,
  17735. bottom: 0.01
  17736. }
  17737. },
  17738. },
  17739. [
  17740. {
  17741. name: "Normal",
  17742. height: math.unit(5 + 9 / 12, "feet"),
  17743. default: true
  17744. },
  17745. ]
  17746. ))
  17747. characterMakers.push(() => makeCharacter(
  17748. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17749. {
  17750. front: {
  17751. height: math.unit(5 + 9 / 12, "feet"),
  17752. weight: math.unit(142, "lb"),
  17753. name: "Front",
  17754. image: {
  17755. source: "./media/characters/kuva/front.svg",
  17756. extra: 281 / 271,
  17757. bottom: 0.006
  17758. }
  17759. },
  17760. },
  17761. [
  17762. {
  17763. name: "Normal",
  17764. height: math.unit(5 + 9 / 12, "feet"),
  17765. default: true
  17766. },
  17767. ]
  17768. ))
  17769. characterMakers.push(() => makeCharacter(
  17770. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17771. {
  17772. anthro: {
  17773. height: math.unit(9 + 2 / 12, "feet"),
  17774. weight: math.unit(270, "lb"),
  17775. name: "Anthro",
  17776. image: {
  17777. source: "./media/characters/embra/anthro.svg",
  17778. extra: 200 / 187,
  17779. bottom: 0.02
  17780. }
  17781. },
  17782. feral: {
  17783. height: math.unit(18 + 8 / 12, "feet"),
  17784. weight: math.unit(576, "lb"),
  17785. name: "Feral",
  17786. image: {
  17787. source: "./media/characters/embra/feral.svg",
  17788. extra: 152 / 137,
  17789. bottom: 0.037
  17790. }
  17791. },
  17792. },
  17793. [
  17794. {
  17795. name: "Normal",
  17796. height: math.unit(9 + 2 / 12, "feet"),
  17797. default: true
  17798. },
  17799. ]
  17800. ))
  17801. characterMakers.push(() => makeCharacter(
  17802. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17803. {
  17804. anthro: {
  17805. height: math.unit(10 + 9 / 12, "feet"),
  17806. weight: math.unit(224, "lb"),
  17807. name: "Anthro",
  17808. image: {
  17809. source: "./media/characters/grottos/anthro.svg",
  17810. extra: 350 / 332,
  17811. bottom: 0.045
  17812. }
  17813. },
  17814. feral: {
  17815. height: math.unit(20 + 7 / 12, "feet"),
  17816. weight: math.unit(629, "lb"),
  17817. name: "Feral",
  17818. image: {
  17819. source: "./media/characters/grottos/feral.svg",
  17820. extra: 207 / 190,
  17821. bottom: 0.05
  17822. }
  17823. },
  17824. },
  17825. [
  17826. {
  17827. name: "Normal",
  17828. height: math.unit(10 + 9 / 12, "feet"),
  17829. default: true
  17830. },
  17831. ]
  17832. ))
  17833. characterMakers.push(() => makeCharacter(
  17834. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17835. {
  17836. anthro: {
  17837. height: math.unit(9 + 6 / 12, "feet"),
  17838. weight: math.unit(298, "lb"),
  17839. name: "Anthro",
  17840. image: {
  17841. source: "./media/characters/frifna/anthro.svg",
  17842. extra: 282 / 269,
  17843. bottom: 0.015
  17844. }
  17845. },
  17846. feral: {
  17847. height: math.unit(16 + 2 / 12, "feet"),
  17848. weight: math.unit(624, "lb"),
  17849. name: "Feral",
  17850. image: {
  17851. source: "./media/characters/frifna/feral.svg"
  17852. }
  17853. },
  17854. },
  17855. [
  17856. {
  17857. name: "Normal",
  17858. height: math.unit(9 + 6 / 12, "feet"),
  17859. default: true
  17860. },
  17861. ]
  17862. ))
  17863. characterMakers.push(() => makeCharacter(
  17864. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17865. {
  17866. front: {
  17867. height: math.unit(6 + 2 / 12, "feet"),
  17868. weight: math.unit(168, "lb"),
  17869. name: "Front",
  17870. image: {
  17871. source: "./media/characters/elise/front.svg",
  17872. extra: 276 / 271
  17873. }
  17874. },
  17875. },
  17876. [
  17877. {
  17878. name: "Normal",
  17879. height: math.unit(6 + 2 / 12, "feet"),
  17880. default: true
  17881. },
  17882. ]
  17883. ))
  17884. characterMakers.push(() => makeCharacter(
  17885. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17886. {
  17887. front: {
  17888. height: math.unit(5 + 10 / 12, "feet"),
  17889. weight: math.unit(210, "lb"),
  17890. name: "Front",
  17891. image: {
  17892. source: "./media/characters/glade/front.svg",
  17893. extra: 258 / 247,
  17894. bottom: 0.008
  17895. }
  17896. },
  17897. },
  17898. [
  17899. {
  17900. name: "Normal",
  17901. height: math.unit(5 + 10 / 12, "feet"),
  17902. default: true
  17903. },
  17904. ]
  17905. ))
  17906. characterMakers.push(() => makeCharacter(
  17907. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17908. {
  17909. front: {
  17910. height: math.unit(5 + 10 / 12, "feet"),
  17911. weight: math.unit(129, "lb"),
  17912. name: "Front",
  17913. image: {
  17914. source: "./media/characters/rina/front.svg",
  17915. extra: 266 / 255,
  17916. bottom: 0.005
  17917. }
  17918. },
  17919. },
  17920. [
  17921. {
  17922. name: "Normal",
  17923. height: math.unit(5 + 10 / 12, "feet"),
  17924. default: true
  17925. },
  17926. ]
  17927. ))
  17928. characterMakers.push(() => makeCharacter(
  17929. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17930. {
  17931. front: {
  17932. height: math.unit(6 + 1 / 12, "feet"),
  17933. weight: math.unit(192, "lb"),
  17934. name: "Front",
  17935. image: {
  17936. source: "./media/characters/veronica/front.svg",
  17937. extra: 319 / 309,
  17938. bottom: 0.005
  17939. }
  17940. },
  17941. },
  17942. [
  17943. {
  17944. name: "Normal",
  17945. height: math.unit(6 + 1 / 12, "feet"),
  17946. default: true
  17947. },
  17948. ]
  17949. ))
  17950. characterMakers.push(() => makeCharacter(
  17951. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17952. {
  17953. front: {
  17954. height: math.unit(9 + 3 / 12, "feet"),
  17955. weight: math.unit(1100, "lb"),
  17956. name: "Front",
  17957. image: {
  17958. source: "./media/characters/braxton/front.svg",
  17959. extra: 1057 / 984,
  17960. bottom: 0.05
  17961. }
  17962. },
  17963. },
  17964. [
  17965. {
  17966. name: "Normal",
  17967. height: math.unit(9 + 3 / 12, "feet")
  17968. },
  17969. {
  17970. name: "Giant",
  17971. height: math.unit(300, "feet"),
  17972. default: true
  17973. },
  17974. {
  17975. name: "Macro",
  17976. height: math.unit(700, "feet")
  17977. },
  17978. {
  17979. name: "Megamacro",
  17980. height: math.unit(6000, "feet")
  17981. },
  17982. ]
  17983. ))
  17984. characterMakers.push(() => makeCharacter(
  17985. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17986. {
  17987. front: {
  17988. height: math.unit(6 + 7 / 12, "feet"),
  17989. weight: math.unit(150, "lb"),
  17990. name: "Front",
  17991. image: {
  17992. source: "./media/characters/blue-feyonics/front.svg",
  17993. extra: 1403 / 1306,
  17994. bottom: 0.047
  17995. }
  17996. },
  17997. },
  17998. [
  17999. {
  18000. name: "Normal",
  18001. height: math.unit(6 + 7 / 12, "feet"),
  18002. default: true
  18003. },
  18004. ]
  18005. ))
  18006. characterMakers.push(() => makeCharacter(
  18007. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  18008. {
  18009. front: {
  18010. height: math.unit(1.8, "meters"),
  18011. weight: math.unit(60, "kg"),
  18012. name: "Front",
  18013. image: {
  18014. source: "./media/characters/maxwell/front.svg",
  18015. extra: 2060 / 1873
  18016. }
  18017. },
  18018. },
  18019. [
  18020. {
  18021. name: "Micro",
  18022. height: math.unit(1, "mm")
  18023. },
  18024. {
  18025. name: "Normal",
  18026. height: math.unit(1.8, "meter"),
  18027. default: true
  18028. },
  18029. {
  18030. name: "Macro",
  18031. height: math.unit(30, "meters")
  18032. },
  18033. {
  18034. name: "Megamacro",
  18035. height: math.unit(10, "km")
  18036. },
  18037. ]
  18038. ))
  18039. characterMakers.push(() => makeCharacter(
  18040. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  18041. {
  18042. front: {
  18043. height: math.unit(6, "feet"),
  18044. weight: math.unit(150, "lb"),
  18045. name: "Front",
  18046. image: {
  18047. source: "./media/characters/jack/front.svg",
  18048. extra: 1754 / 1640,
  18049. bottom: 0.01
  18050. }
  18051. },
  18052. },
  18053. [
  18054. {
  18055. name: "Normal",
  18056. height: math.unit(80000, "feet"),
  18057. default: true
  18058. },
  18059. {
  18060. name: "Max size",
  18061. height: math.unit(10, "lightyears")
  18062. },
  18063. ]
  18064. ))
  18065. characterMakers.push(() => makeCharacter(
  18066. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  18067. {
  18068. urban: {
  18069. height: math.unit(5, "feet"),
  18070. weight: math.unit(240, "lb"),
  18071. name: "Urban",
  18072. image: {
  18073. source: "./media/characters/cafat/urban.svg",
  18074. extra: 1223/1126,
  18075. bottom: 205/1428
  18076. }
  18077. },
  18078. summer: {
  18079. height: math.unit(5, "feet"),
  18080. weight: math.unit(240, "lb"),
  18081. name: "Summer",
  18082. image: {
  18083. source: "./media/characters/cafat/summer.svg",
  18084. extra: 1223/1126,
  18085. bottom: 205/1428
  18086. }
  18087. },
  18088. winter: {
  18089. height: math.unit(5, "feet"),
  18090. weight: math.unit(240, "lb"),
  18091. name: "Winter",
  18092. image: {
  18093. source: "./media/characters/cafat/winter.svg",
  18094. extra: 1223/1126,
  18095. bottom: 205/1428
  18096. }
  18097. },
  18098. lingerie: {
  18099. height: math.unit(5, "feet"),
  18100. weight: math.unit(240, "lb"),
  18101. name: "Lingerie",
  18102. image: {
  18103. source: "./media/characters/cafat/lingerie.svg",
  18104. extra: 1223/1126,
  18105. bottom: 205/1428
  18106. }
  18107. },
  18108. upright: {
  18109. height: math.unit(6.3, "feet"),
  18110. weight: math.unit(240, "lb"),
  18111. name: "Upright",
  18112. image: {
  18113. source: "./media/characters/cafat/upright.svg",
  18114. bottom: 0.01
  18115. }
  18116. },
  18117. uprightFull: {
  18118. height: math.unit(6.3, "feet"),
  18119. weight: math.unit(240, "lb"),
  18120. name: "Upright (Full)",
  18121. image: {
  18122. source: "./media/characters/cafat/upright-full.svg",
  18123. bottom: 0.01
  18124. }
  18125. },
  18126. },
  18127. [
  18128. {
  18129. name: "Small",
  18130. height: math.unit(5, "feet"),
  18131. default: true
  18132. },
  18133. {
  18134. name: "Large",
  18135. height: math.unit(13, "feet")
  18136. },
  18137. ]
  18138. ))
  18139. characterMakers.push(() => makeCharacter(
  18140. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  18141. {
  18142. front: {
  18143. height: math.unit(6, "feet"),
  18144. weight: math.unit(150, "lb"),
  18145. name: "Front",
  18146. image: {
  18147. source: "./media/characters/verin-raharra/front.svg",
  18148. extra: 5019 / 4835,
  18149. bottom: 0.023
  18150. }
  18151. },
  18152. },
  18153. [
  18154. {
  18155. name: "Normal",
  18156. height: math.unit(7 + 5 / 12, "feet"),
  18157. default: true
  18158. },
  18159. {
  18160. name: "Upsized",
  18161. height: math.unit(20, "feet")
  18162. },
  18163. ]
  18164. ))
  18165. characterMakers.push(() => makeCharacter(
  18166. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  18167. {
  18168. front: {
  18169. height: math.unit(7, "feet"),
  18170. weight: math.unit(230, "lb"),
  18171. name: "Front",
  18172. image: {
  18173. source: "./media/characters/nakata/front.svg",
  18174. extra: 1.005,
  18175. bottom: 0.01
  18176. }
  18177. },
  18178. },
  18179. [
  18180. {
  18181. name: "Normal",
  18182. height: math.unit(7, "feet"),
  18183. default: true
  18184. },
  18185. {
  18186. name: "Big",
  18187. height: math.unit(14, "feet")
  18188. },
  18189. {
  18190. name: "Macro",
  18191. height: math.unit(400, "feet")
  18192. },
  18193. ]
  18194. ))
  18195. characterMakers.push(() => makeCharacter(
  18196. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  18197. {
  18198. front: {
  18199. height: math.unit(4.91, "feet"),
  18200. weight: math.unit(100, "lb"),
  18201. name: "Front",
  18202. image: {
  18203. source: "./media/characters/lily/front.svg",
  18204. extra: 1585 / 1415,
  18205. bottom: 0.02
  18206. }
  18207. },
  18208. },
  18209. [
  18210. {
  18211. name: "Normal",
  18212. height: math.unit(4.91, "feet"),
  18213. default: true
  18214. },
  18215. ]
  18216. ))
  18217. characterMakers.push(() => makeCharacter(
  18218. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  18219. {
  18220. laying: {
  18221. height: math.unit(4 + 4 / 12, "feet"),
  18222. weight: math.unit(600, "lb"),
  18223. name: "Laying",
  18224. image: {
  18225. source: "./media/characters/sheila/laying.svg",
  18226. extra: 1333 / 1265,
  18227. bottom: 0.16
  18228. }
  18229. },
  18230. },
  18231. [
  18232. {
  18233. name: "Normal",
  18234. height: math.unit(4 + 4 / 12, "feet"),
  18235. default: true
  18236. },
  18237. ]
  18238. ))
  18239. characterMakers.push(() => makeCharacter(
  18240. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  18241. {
  18242. front: {
  18243. height: math.unit(6, "feet"),
  18244. weight: math.unit(190, "lb"),
  18245. name: "Front",
  18246. image: {
  18247. source: "./media/characters/sax/front.svg",
  18248. extra: 1187 / 973,
  18249. bottom: 0.042
  18250. }
  18251. },
  18252. },
  18253. [
  18254. {
  18255. name: "Micro",
  18256. height: math.unit(4, "inches"),
  18257. default: true
  18258. },
  18259. ]
  18260. ))
  18261. characterMakers.push(() => makeCharacter(
  18262. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  18263. {
  18264. front: {
  18265. height: math.unit(6, "feet"),
  18266. weight: math.unit(150, "lb"),
  18267. name: "Front",
  18268. image: {
  18269. source: "./media/characters/pandora/front.svg",
  18270. extra: 2720 / 2556,
  18271. bottom: 0.015
  18272. }
  18273. },
  18274. back: {
  18275. height: math.unit(6, "feet"),
  18276. weight: math.unit(150, "lb"),
  18277. name: "Back",
  18278. image: {
  18279. source: "./media/characters/pandora/back.svg",
  18280. extra: 2720 / 2556,
  18281. bottom: 0.01
  18282. }
  18283. },
  18284. beans: {
  18285. height: math.unit(6 / 8, "feet"),
  18286. name: "Beans",
  18287. image: {
  18288. source: "./media/characters/pandora/beans.svg"
  18289. }
  18290. },
  18291. collar: {
  18292. height: math.unit(0.31, "feet"),
  18293. name: "Collar",
  18294. image: {
  18295. source: "./media/characters/pandora/collar.svg"
  18296. }
  18297. },
  18298. skirt: {
  18299. height: math.unit(6, "feet"),
  18300. weight: math.unit(150, "lb"),
  18301. name: "Skirt",
  18302. image: {
  18303. source: "./media/characters/pandora/skirt.svg",
  18304. extra: 1622 / 1525,
  18305. bottom: 0.015
  18306. }
  18307. },
  18308. hoodie: {
  18309. height: math.unit(6, "feet"),
  18310. weight: math.unit(150, "lb"),
  18311. name: "Hoodie",
  18312. image: {
  18313. source: "./media/characters/pandora/hoodie.svg",
  18314. extra: 1622 / 1525,
  18315. bottom: 0.015
  18316. }
  18317. },
  18318. casual: {
  18319. height: math.unit(6, "feet"),
  18320. weight: math.unit(150, "lb"),
  18321. name: "Casual",
  18322. image: {
  18323. source: "./media/characters/pandora/casual.svg",
  18324. extra: 1622 / 1525,
  18325. bottom: 0.015
  18326. }
  18327. },
  18328. },
  18329. [
  18330. {
  18331. name: "Normal",
  18332. height: math.unit(6, "feet")
  18333. },
  18334. {
  18335. name: "Big Steppy",
  18336. height: math.unit(1, "km"),
  18337. default: true
  18338. },
  18339. {
  18340. name: "Galactic Steppy",
  18341. height: math.unit(2, "gigameters")
  18342. },
  18343. ]
  18344. ))
  18345. characterMakers.push(() => makeCharacter(
  18346. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  18347. {
  18348. side: {
  18349. height: math.unit(10, "feet"),
  18350. weight: math.unit(800, "kg"),
  18351. name: "Side",
  18352. image: {
  18353. source: "./media/characters/venio-darcony/side.svg",
  18354. extra: 1373 / 1003,
  18355. bottom: 0.037
  18356. }
  18357. },
  18358. front: {
  18359. height: math.unit(19, "feet"),
  18360. weight: math.unit(800, "kg"),
  18361. name: "Front",
  18362. image: {
  18363. source: "./media/characters/venio-darcony/front.svg"
  18364. }
  18365. },
  18366. back: {
  18367. height: math.unit(19, "feet"),
  18368. weight: math.unit(800, "kg"),
  18369. name: "Back",
  18370. image: {
  18371. source: "./media/characters/venio-darcony/back.svg"
  18372. }
  18373. },
  18374. sideNsfw: {
  18375. height: math.unit(10, "feet"),
  18376. weight: math.unit(800, "kg"),
  18377. name: "Side (NSFW)",
  18378. image: {
  18379. source: "./media/characters/venio-darcony/side-nsfw.svg",
  18380. extra: 1373 / 1003,
  18381. bottom: 0.037
  18382. }
  18383. },
  18384. frontNsfw: {
  18385. height: math.unit(19, "feet"),
  18386. weight: math.unit(800, "kg"),
  18387. name: "Front (NSFW)",
  18388. image: {
  18389. source: "./media/characters/venio-darcony/front-nsfw.svg"
  18390. }
  18391. },
  18392. backNsfw: {
  18393. height: math.unit(19, "feet"),
  18394. weight: math.unit(800, "kg"),
  18395. name: "Back (NSFW)",
  18396. image: {
  18397. source: "./media/characters/venio-darcony/back-nsfw.svg"
  18398. }
  18399. },
  18400. sideArmored: {
  18401. height: math.unit(10, "feet"),
  18402. weight: math.unit(800, "kg"),
  18403. name: "Side (Armored)",
  18404. image: {
  18405. source: "./media/characters/venio-darcony/side-armored.svg",
  18406. extra: 1373 / 1003,
  18407. bottom: 0.037
  18408. }
  18409. },
  18410. frontArmored: {
  18411. height: math.unit(19, "feet"),
  18412. weight: math.unit(900, "kg"),
  18413. name: "Front (Armored)",
  18414. image: {
  18415. source: "./media/characters/venio-darcony/front-armored.svg"
  18416. }
  18417. },
  18418. backArmored: {
  18419. height: math.unit(19, "feet"),
  18420. weight: math.unit(900, "kg"),
  18421. name: "Back (Armored)",
  18422. image: {
  18423. source: "./media/characters/venio-darcony/back-armored.svg"
  18424. }
  18425. },
  18426. sword: {
  18427. height: math.unit(10, "feet"),
  18428. weight: math.unit(50, "lb"),
  18429. name: "Sword",
  18430. image: {
  18431. source: "./media/characters/venio-darcony/sword.svg"
  18432. }
  18433. },
  18434. },
  18435. [
  18436. {
  18437. name: "Normal",
  18438. height: math.unit(10, "feet")
  18439. },
  18440. {
  18441. name: "Macro",
  18442. height: math.unit(130, "feet"),
  18443. default: true
  18444. },
  18445. {
  18446. name: "Macro+",
  18447. height: math.unit(240, "feet")
  18448. },
  18449. ]
  18450. ))
  18451. characterMakers.push(() => makeCharacter(
  18452. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  18453. {
  18454. front: {
  18455. height: math.unit(6, "feet"),
  18456. weight: math.unit(150, "lb"),
  18457. name: "Front",
  18458. image: {
  18459. source: "./media/characters/veski/front.svg",
  18460. extra: 1299 / 1225,
  18461. bottom: 0.04
  18462. }
  18463. },
  18464. back: {
  18465. height: math.unit(6, "feet"),
  18466. weight: math.unit(150, "lb"),
  18467. name: "Back",
  18468. image: {
  18469. source: "./media/characters/veski/back.svg",
  18470. extra: 1299 / 1225,
  18471. bottom: 0.008
  18472. }
  18473. },
  18474. maw: {
  18475. height: math.unit(1.5 * 1.21, "feet"),
  18476. name: "Maw",
  18477. image: {
  18478. source: "./media/characters/veski/maw.svg"
  18479. }
  18480. },
  18481. },
  18482. [
  18483. {
  18484. name: "Macro",
  18485. height: math.unit(2, "km"),
  18486. default: true
  18487. },
  18488. ]
  18489. ))
  18490. characterMakers.push(() => makeCharacter(
  18491. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18492. {
  18493. front: {
  18494. height: math.unit(5 + 7 / 12, "feet"),
  18495. name: "Front",
  18496. image: {
  18497. source: "./media/characters/isabelle/front.svg",
  18498. extra: 2130 / 1976,
  18499. bottom: 0.05
  18500. }
  18501. },
  18502. },
  18503. [
  18504. {
  18505. name: "Supermicro",
  18506. height: math.unit(10, "micrometers")
  18507. },
  18508. {
  18509. name: "Micro",
  18510. height: math.unit(1, "inch")
  18511. },
  18512. {
  18513. name: "Tiny",
  18514. height: math.unit(5, "inches")
  18515. },
  18516. {
  18517. name: "Standard",
  18518. height: math.unit(5 + 7 / 12, "inches")
  18519. },
  18520. {
  18521. name: "Macro",
  18522. height: math.unit(80, "meters"),
  18523. default: true
  18524. },
  18525. {
  18526. name: "Megamacro",
  18527. height: math.unit(250, "meters")
  18528. },
  18529. {
  18530. name: "Gigamacro",
  18531. height: math.unit(5, "km")
  18532. },
  18533. {
  18534. name: "Cosmic",
  18535. height: math.unit(2.5e6, "miles")
  18536. },
  18537. ]
  18538. ))
  18539. characterMakers.push(() => makeCharacter(
  18540. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18541. {
  18542. front: {
  18543. height: math.unit(6, "feet"),
  18544. weight: math.unit(150, "lb"),
  18545. name: "Front",
  18546. image: {
  18547. source: "./media/characters/hanzo/front.svg",
  18548. extra: 374 / 344,
  18549. bottom: 0.02
  18550. }
  18551. },
  18552. },
  18553. [
  18554. {
  18555. name: "Normal",
  18556. height: math.unit(8, "feet"),
  18557. default: true
  18558. },
  18559. ]
  18560. ))
  18561. characterMakers.push(() => makeCharacter(
  18562. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18563. {
  18564. front: {
  18565. height: math.unit(7, "feet"),
  18566. weight: math.unit(130, "lb"),
  18567. name: "Front",
  18568. image: {
  18569. source: "./media/characters/anna/front.svg",
  18570. extra: 169 / 145,
  18571. bottom: 0.06
  18572. }
  18573. },
  18574. full: {
  18575. height: math.unit(4.96, "feet"),
  18576. weight: math.unit(220, "lb"),
  18577. name: "Full",
  18578. image: {
  18579. source: "./media/characters/anna/full.svg",
  18580. extra: 138 / 114,
  18581. bottom: 0.15
  18582. }
  18583. },
  18584. tongue: {
  18585. height: math.unit(2.53, "feet"),
  18586. name: "Tongue",
  18587. image: {
  18588. source: "./media/characters/anna/tongue.svg"
  18589. }
  18590. },
  18591. },
  18592. [
  18593. {
  18594. name: "Normal",
  18595. height: math.unit(7, "feet"),
  18596. default: true
  18597. },
  18598. ]
  18599. ))
  18600. characterMakers.push(() => makeCharacter(
  18601. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18602. {
  18603. front: {
  18604. height: math.unit(7 + 1/12, "feet"),
  18605. weight: math.unit(150, "lb"),
  18606. name: "Front",
  18607. image: {
  18608. source: "./media/characters/ian-corvid/front.svg",
  18609. extra: 621/591,
  18610. bottom: 14/635
  18611. }
  18612. },
  18613. back: {
  18614. height: math.unit(7 + 1/12, "feet"),
  18615. weight: math.unit(150, "lb"),
  18616. name: "Back",
  18617. image: {
  18618. source: "./media/characters/ian-corvid/back.svg",
  18619. extra: 621/600,
  18620. bottom: 10/631
  18621. }
  18622. },
  18623. stomping: {
  18624. height: math.unit(7 + 1/12, "feet"),
  18625. weight: math.unit(150, "lb"),
  18626. name: "Stomping",
  18627. image: {
  18628. source: "./media/characters/ian-corvid/stomping.svg",
  18629. extra: 309/291,
  18630. bottom: 7/316
  18631. }
  18632. },
  18633. tongue: {
  18634. height: math.unit(3.9, "feet"),
  18635. name: "Tongue",
  18636. image: {
  18637. source: "./media/characters/ian-corvid/tongue.svg"
  18638. }
  18639. },
  18640. beak: {
  18641. height: math.unit(0.9, "feet"),
  18642. name: "Beak",
  18643. image: {
  18644. source: "./media/characters/ian-corvid/beak.svg"
  18645. }
  18646. },
  18647. sitting: {
  18648. height: math.unit(7 / 1.8, "feet"),
  18649. weight: math.unit(150, "lb"),
  18650. name: "Sitting",
  18651. image: {
  18652. source: "./media/characters/ian-corvid/sitting.svg",
  18653. extra: 1400 / 1269,
  18654. bottom: 0.15
  18655. }
  18656. },
  18657. },
  18658. [
  18659. {
  18660. name: "Tiny Microw",
  18661. height: math.unit(1, "inch")
  18662. },
  18663. {
  18664. name: "Microw",
  18665. height: math.unit(6, "inches")
  18666. },
  18667. {
  18668. name: "Crow",
  18669. height: math.unit(7 + 1 / 12, "feet"),
  18670. default: true
  18671. },
  18672. {
  18673. name: "Macrow",
  18674. height: math.unit(176, "feet")
  18675. },
  18676. ]
  18677. ))
  18678. characterMakers.push(() => makeCharacter(
  18679. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18680. {
  18681. front: {
  18682. height: math.unit(5 + 7 / 12, "feet"),
  18683. weight: math.unit(147, "lb"),
  18684. name: "Front",
  18685. image: {
  18686. source: "./media/characters/natalie-kellon/front.svg",
  18687. extra: 1214 / 1141,
  18688. bottom: 0.02
  18689. }
  18690. },
  18691. },
  18692. [
  18693. {
  18694. name: "Micro",
  18695. height: math.unit(1 / 16, "inch")
  18696. },
  18697. {
  18698. name: "Tiny",
  18699. height: math.unit(4, "inches")
  18700. },
  18701. {
  18702. name: "Normal",
  18703. height: math.unit(5 + 7 / 12, "feet"),
  18704. default: true
  18705. },
  18706. {
  18707. name: "Amazon",
  18708. height: math.unit(12, "feet")
  18709. },
  18710. {
  18711. name: "Giantess",
  18712. height: math.unit(160, "meters")
  18713. },
  18714. {
  18715. name: "Titaness",
  18716. height: math.unit(800, "meters")
  18717. },
  18718. ]
  18719. ))
  18720. characterMakers.push(() => makeCharacter(
  18721. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18722. {
  18723. front: {
  18724. height: math.unit(6, "feet"),
  18725. weight: math.unit(150, "lb"),
  18726. name: "Front",
  18727. image: {
  18728. source: "./media/characters/alluria/front.svg",
  18729. extra: 806 / 738,
  18730. bottom: 0.01
  18731. }
  18732. },
  18733. side: {
  18734. height: math.unit(6, "feet"),
  18735. weight: math.unit(150, "lb"),
  18736. name: "Side",
  18737. image: {
  18738. source: "./media/characters/alluria/side.svg",
  18739. extra: 800 / 750,
  18740. }
  18741. },
  18742. back: {
  18743. height: math.unit(6, "feet"),
  18744. weight: math.unit(150, "lb"),
  18745. name: "Back",
  18746. image: {
  18747. source: "./media/characters/alluria/back.svg",
  18748. extra: 806 / 738,
  18749. }
  18750. },
  18751. frontMaid: {
  18752. height: math.unit(6, "feet"),
  18753. weight: math.unit(150, "lb"),
  18754. name: "Front (Maid)",
  18755. image: {
  18756. source: "./media/characters/alluria/front-maid.svg",
  18757. extra: 806 / 738,
  18758. bottom: 0.01
  18759. }
  18760. },
  18761. sideMaid: {
  18762. height: math.unit(6, "feet"),
  18763. weight: math.unit(150, "lb"),
  18764. name: "Side (Maid)",
  18765. image: {
  18766. source: "./media/characters/alluria/side-maid.svg",
  18767. extra: 800 / 750,
  18768. bottom: 0.005
  18769. }
  18770. },
  18771. backMaid: {
  18772. height: math.unit(6, "feet"),
  18773. weight: math.unit(150, "lb"),
  18774. name: "Back (Maid)",
  18775. image: {
  18776. source: "./media/characters/alluria/back-maid.svg",
  18777. extra: 806 / 738,
  18778. }
  18779. },
  18780. },
  18781. [
  18782. {
  18783. name: "Micro",
  18784. height: math.unit(6, "inches"),
  18785. default: true
  18786. },
  18787. ]
  18788. ))
  18789. characterMakers.push(() => makeCharacter(
  18790. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18791. {
  18792. front: {
  18793. height: math.unit(6, "feet"),
  18794. weight: math.unit(150, "lb"),
  18795. name: "Front",
  18796. image: {
  18797. source: "./media/characters/kyle/front.svg",
  18798. extra: 1069 / 962,
  18799. bottom: 77.228 / 1727.45
  18800. }
  18801. },
  18802. },
  18803. [
  18804. {
  18805. name: "Macro",
  18806. height: math.unit(150, "feet"),
  18807. default: true
  18808. },
  18809. ]
  18810. ))
  18811. characterMakers.push(() => makeCharacter(
  18812. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18813. {
  18814. front: {
  18815. height: math.unit(6, "feet"),
  18816. weight: math.unit(300, "lb"),
  18817. name: "Front",
  18818. image: {
  18819. source: "./media/characters/duncan/front.svg",
  18820. extra: 1650 / 1482,
  18821. bottom: 0.05
  18822. }
  18823. },
  18824. },
  18825. [
  18826. {
  18827. name: "Macro",
  18828. height: math.unit(100, "feet"),
  18829. default: true
  18830. },
  18831. ]
  18832. ))
  18833. characterMakers.push(() => makeCharacter(
  18834. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18835. {
  18836. front: {
  18837. height: math.unit(5 + 4 / 12, "feet"),
  18838. weight: math.unit(220, "lb"),
  18839. name: "Front",
  18840. image: {
  18841. source: "./media/characters/memory/front.svg",
  18842. extra: 3641 / 3545,
  18843. bottom: 0.03
  18844. }
  18845. },
  18846. back: {
  18847. height: math.unit(5 + 4 / 12, "feet"),
  18848. weight: math.unit(220, "lb"),
  18849. name: "Back",
  18850. image: {
  18851. source: "./media/characters/memory/back.svg",
  18852. extra: 3641 / 3545,
  18853. bottom: 0.025
  18854. }
  18855. },
  18856. frontSkirt: {
  18857. height: math.unit(5 + 4 / 12, "feet"),
  18858. weight: math.unit(220, "lb"),
  18859. name: "Front (Skirt)",
  18860. image: {
  18861. source: "./media/characters/memory/front-skirt.svg",
  18862. extra: 3641 / 3545,
  18863. bottom: 0.03
  18864. }
  18865. },
  18866. frontDress: {
  18867. height: math.unit(5 + 4 / 12, "feet"),
  18868. weight: math.unit(220, "lb"),
  18869. name: "Front (Dress)",
  18870. image: {
  18871. source: "./media/characters/memory/front-dress.svg",
  18872. extra: 3641 / 3545,
  18873. bottom: 0.03
  18874. }
  18875. },
  18876. },
  18877. [
  18878. {
  18879. name: "Micro",
  18880. height: math.unit(6, "inches"),
  18881. default: true
  18882. },
  18883. {
  18884. name: "Normal",
  18885. height: math.unit(5 + 4 / 12, "feet")
  18886. },
  18887. ]
  18888. ))
  18889. characterMakers.push(() => makeCharacter(
  18890. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18891. {
  18892. front: {
  18893. height: math.unit(4 + 11 / 12, "feet"),
  18894. weight: math.unit(100, "lb"),
  18895. name: "Front",
  18896. image: {
  18897. source: "./media/characters/luno/front.svg",
  18898. extra: 1535 / 1487,
  18899. bottom: 0.03
  18900. }
  18901. },
  18902. },
  18903. [
  18904. {
  18905. name: "Micro",
  18906. height: math.unit(3, "inches")
  18907. },
  18908. {
  18909. name: "Normal",
  18910. height: math.unit(4 + 11 / 12, "feet"),
  18911. default: true
  18912. },
  18913. {
  18914. name: "Macro",
  18915. height: math.unit(300, "feet")
  18916. },
  18917. {
  18918. name: "Megamacro",
  18919. height: math.unit(700, "miles")
  18920. },
  18921. ]
  18922. ))
  18923. characterMakers.push(() => makeCharacter(
  18924. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18925. {
  18926. front: {
  18927. height: math.unit(6 + 2 / 12, "feet"),
  18928. weight: math.unit(170, "lb"),
  18929. name: "Front",
  18930. image: {
  18931. source: "./media/characters/jamesy/front.svg",
  18932. extra: 440 / 382,
  18933. bottom: 0.005
  18934. }
  18935. },
  18936. },
  18937. [
  18938. {
  18939. name: "Micro",
  18940. height: math.unit(3, "inches")
  18941. },
  18942. {
  18943. name: "Normal",
  18944. height: math.unit(6 + 2 / 12, "feet"),
  18945. default: true
  18946. },
  18947. {
  18948. name: "Macro",
  18949. height: math.unit(300, "feet")
  18950. },
  18951. {
  18952. name: "Megamacro",
  18953. height: math.unit(700, "miles")
  18954. },
  18955. ]
  18956. ))
  18957. characterMakers.push(() => makeCharacter(
  18958. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18959. {
  18960. front: {
  18961. height: math.unit(6, "feet"),
  18962. weight: math.unit(160, "lb"),
  18963. name: "Front",
  18964. image: {
  18965. source: "./media/characters/mark/front.svg",
  18966. extra: 3300 / 3100,
  18967. bottom: 136.42 / 3440.47
  18968. }
  18969. },
  18970. },
  18971. [
  18972. {
  18973. name: "Macro",
  18974. height: math.unit(120, "meters")
  18975. },
  18976. {
  18977. name: "Bigger Macro",
  18978. height: math.unit(350, "meters")
  18979. },
  18980. {
  18981. name: "Megamacro",
  18982. height: math.unit(8, "km"),
  18983. default: true
  18984. },
  18985. {
  18986. name: "Continental",
  18987. height: math.unit(4550, "km")
  18988. },
  18989. {
  18990. name: "Planetary",
  18991. height: math.unit(65000, "km")
  18992. },
  18993. ]
  18994. ))
  18995. characterMakers.push(() => makeCharacter(
  18996. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18997. {
  18998. front: {
  18999. height: math.unit(6, "feet"),
  19000. weight: math.unit(400, "lb"),
  19001. name: "Front",
  19002. image: {
  19003. source: "./media/characters/mac/front.svg",
  19004. extra: 1048 / 987.7,
  19005. bottom: 60 / 1107.6,
  19006. }
  19007. },
  19008. },
  19009. [
  19010. {
  19011. name: "Macro",
  19012. height: math.unit(500, "feet"),
  19013. default: true
  19014. },
  19015. ]
  19016. ))
  19017. characterMakers.push(() => makeCharacter(
  19018. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  19019. {
  19020. front: {
  19021. height: math.unit(5 + 2 / 12, "feet"),
  19022. weight: math.unit(190, "lb"),
  19023. name: "Front",
  19024. image: {
  19025. source: "./media/characters/bari/front.svg",
  19026. extra: 3156 / 2880,
  19027. bottom: 0.03
  19028. }
  19029. },
  19030. back: {
  19031. height: math.unit(5 + 2 / 12, "feet"),
  19032. weight: math.unit(190, "lb"),
  19033. name: "Back",
  19034. image: {
  19035. source: "./media/characters/bari/back.svg",
  19036. extra: 3260 / 2834,
  19037. bottom: 0.025
  19038. }
  19039. },
  19040. frontPlush: {
  19041. height: math.unit(5 + 2 / 12, "feet"),
  19042. weight: math.unit(190, "lb"),
  19043. name: "Front (Plush)",
  19044. image: {
  19045. source: "./media/characters/bari/front-plush.svg",
  19046. extra: 1112 / 1061,
  19047. bottom: 0.002
  19048. }
  19049. },
  19050. },
  19051. [
  19052. {
  19053. name: "Micro",
  19054. height: math.unit(3, "inches")
  19055. },
  19056. {
  19057. name: "Normal",
  19058. height: math.unit(5 + 2 / 12, "feet"),
  19059. default: true
  19060. },
  19061. {
  19062. name: "Macro",
  19063. height: math.unit(20, "feet")
  19064. },
  19065. ]
  19066. ))
  19067. characterMakers.push(() => makeCharacter(
  19068. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  19069. {
  19070. front: {
  19071. height: math.unit(6 + 1 / 12, "feet"),
  19072. weight: math.unit(275, "lb"),
  19073. name: "Front",
  19074. image: {
  19075. source: "./media/characters/hunter-misha-raven/front.svg"
  19076. }
  19077. },
  19078. },
  19079. [
  19080. {
  19081. name: "Mortal",
  19082. height: math.unit(6 + 1 / 12, "feet")
  19083. },
  19084. {
  19085. name: "Divine",
  19086. height: math.unit(1.12134e34, "parsecs"),
  19087. default: true
  19088. },
  19089. ]
  19090. ))
  19091. characterMakers.push(() => makeCharacter(
  19092. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  19093. {
  19094. front: {
  19095. height: math.unit(6 + 3 / 12, "feet"),
  19096. weight: math.unit(220, "lb"),
  19097. name: "Front",
  19098. image: {
  19099. source: "./media/characters/max-calore/front.svg",
  19100. extra: 1700 / 1648,
  19101. bottom: 0.01
  19102. }
  19103. },
  19104. back: {
  19105. height: math.unit(6 + 3 / 12, "feet"),
  19106. weight: math.unit(220, "lb"),
  19107. name: "Back",
  19108. image: {
  19109. source: "./media/characters/max-calore/back.svg",
  19110. extra: 1700 / 1648,
  19111. bottom: 0.01
  19112. }
  19113. },
  19114. },
  19115. [
  19116. {
  19117. name: "Normal",
  19118. height: math.unit(6 + 3 / 12, "feet"),
  19119. default: true
  19120. },
  19121. ]
  19122. ))
  19123. characterMakers.push(() => makeCharacter(
  19124. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  19125. {
  19126. side: {
  19127. height: math.unit(2 + 8 / 12, "feet"),
  19128. weight: math.unit(99, "lb"),
  19129. name: "Side",
  19130. image: {
  19131. source: "./media/characters/aspen/side.svg",
  19132. extra: 152 / 138,
  19133. bottom: 0.032
  19134. }
  19135. },
  19136. },
  19137. [
  19138. {
  19139. name: "Normal",
  19140. height: math.unit(2 + 8 / 12, "feet"),
  19141. default: true
  19142. },
  19143. ]
  19144. ))
  19145. characterMakers.push(() => makeCharacter(
  19146. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  19147. {
  19148. side: {
  19149. height: math.unit(3 + 2 / 12, "feet"),
  19150. weight: math.unit(224, "lb"),
  19151. name: "Side",
  19152. image: {
  19153. source: "./media/characters/sheila-feral-wolf/side.svg",
  19154. extra: 179 / 166,
  19155. bottom: 0.03
  19156. }
  19157. },
  19158. },
  19159. [
  19160. {
  19161. name: "Normal",
  19162. height: math.unit(3 + 2 / 12, "feet"),
  19163. default: true
  19164. },
  19165. ]
  19166. ))
  19167. characterMakers.push(() => makeCharacter(
  19168. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  19169. {
  19170. side: {
  19171. height: math.unit(1 + 9 / 12, "feet"),
  19172. weight: math.unit(38, "lb"),
  19173. name: "Side",
  19174. image: {
  19175. source: "./media/characters/michelle/side.svg",
  19176. extra: 147 / 136.7,
  19177. bottom: 0.03
  19178. }
  19179. },
  19180. },
  19181. [
  19182. {
  19183. name: "Normal",
  19184. height: math.unit(1 + 9 / 12, "feet"),
  19185. default: true
  19186. },
  19187. ]
  19188. ))
  19189. characterMakers.push(() => makeCharacter(
  19190. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  19191. {
  19192. front: {
  19193. height: math.unit(1.54, "feet"),
  19194. weight: math.unit(50, "lb"),
  19195. name: "Front",
  19196. image: {
  19197. source: "./media/characters/nino/front.svg"
  19198. }
  19199. },
  19200. },
  19201. [
  19202. {
  19203. name: "Normal",
  19204. height: math.unit(1.54, "feet"),
  19205. default: true
  19206. },
  19207. ]
  19208. ))
  19209. characterMakers.push(() => makeCharacter(
  19210. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  19211. {
  19212. front: {
  19213. height: math.unit(1.49, "feet"),
  19214. weight: math.unit(45, "lb"),
  19215. name: "Front",
  19216. image: {
  19217. source: "./media/characters/viola/front.svg"
  19218. }
  19219. },
  19220. },
  19221. [
  19222. {
  19223. name: "Normal",
  19224. height: math.unit(1.49, "feet"),
  19225. default: true
  19226. },
  19227. ]
  19228. ))
  19229. characterMakers.push(() => makeCharacter(
  19230. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  19231. {
  19232. front: {
  19233. height: math.unit(6 + 5 / 12, "feet"),
  19234. weight: math.unit(580, "lb"),
  19235. name: "Front",
  19236. image: {
  19237. source: "./media/characters/atlas/front.svg",
  19238. extra: 298.5 / 290,
  19239. bottom: 0.015
  19240. }
  19241. },
  19242. },
  19243. [
  19244. {
  19245. name: "Normal",
  19246. height: math.unit(6 + 5 / 12, "feet"),
  19247. default: true
  19248. },
  19249. ]
  19250. ))
  19251. characterMakers.push(() => makeCharacter(
  19252. { name: "Davy", species: ["cat"], tags: ["feral"] },
  19253. {
  19254. side: {
  19255. height: math.unit(15.6, "inches"),
  19256. weight: math.unit(10, "lb"),
  19257. name: "Side",
  19258. image: {
  19259. source: "./media/characters/davy/side.svg",
  19260. extra: 200 / 170,
  19261. bottom: 0.01
  19262. }
  19263. },
  19264. },
  19265. [
  19266. {
  19267. name: "Normal",
  19268. height: math.unit(15.6, "inches"),
  19269. default: true
  19270. },
  19271. ]
  19272. ))
  19273. characterMakers.push(() => makeCharacter(
  19274. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  19275. {
  19276. side: {
  19277. height: math.unit(4 + 8 / 12, "feet"),
  19278. weight: math.unit(166, "lb"),
  19279. name: "Side",
  19280. image: {
  19281. source: "./media/characters/fiona/side.svg",
  19282. extra: 232 / 220,
  19283. bottom: 0.03
  19284. }
  19285. },
  19286. },
  19287. [
  19288. {
  19289. name: "Normal",
  19290. height: math.unit(4 + 8 / 12, "feet"),
  19291. default: true
  19292. },
  19293. ]
  19294. ))
  19295. characterMakers.push(() => makeCharacter(
  19296. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  19297. {
  19298. front: {
  19299. height: math.unit(26, "inches"),
  19300. weight: math.unit(35, "lb"),
  19301. name: "Front",
  19302. image: {
  19303. source: "./media/characters/lyla/front.svg",
  19304. bottom: 0.1
  19305. }
  19306. },
  19307. },
  19308. [
  19309. {
  19310. name: "Normal",
  19311. height: math.unit(3, "feet"),
  19312. default: true
  19313. },
  19314. ]
  19315. ))
  19316. characterMakers.push(() => makeCharacter(
  19317. { name: "Perseus", species: ["monitor-lizard", "deity"], tags: ["feral"] },
  19318. {
  19319. side: {
  19320. height: math.unit(1.8, "feet"),
  19321. weight: math.unit(44, "lb"),
  19322. name: "Side",
  19323. image: {
  19324. source: "./media/characters/perseus/side.svg",
  19325. bottom: 0.21
  19326. }
  19327. },
  19328. },
  19329. [
  19330. {
  19331. name: "Normal",
  19332. height: math.unit(1.8, "feet"),
  19333. default: true
  19334. },
  19335. ]
  19336. ))
  19337. characterMakers.push(() => makeCharacter(
  19338. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  19339. {
  19340. side: {
  19341. height: math.unit(4 + 2 / 12, "feet"),
  19342. weight: math.unit(20, "lb"),
  19343. name: "Side",
  19344. image: {
  19345. source: "./media/characters/remus/side.svg"
  19346. }
  19347. },
  19348. },
  19349. [
  19350. {
  19351. name: "Normal",
  19352. height: math.unit(4 + 2 / 12, "feet"),
  19353. default: true
  19354. },
  19355. ]
  19356. ))
  19357. characterMakers.push(() => makeCharacter(
  19358. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  19359. {
  19360. front: {
  19361. height: math.unit(4 + 11 / 12, "feet"),
  19362. weight: math.unit(114, "lb"),
  19363. name: "Front",
  19364. image: {
  19365. source: "./media/characters/raf/front.svg",
  19366. extra: 1504/1339,
  19367. bottom: 26/1530
  19368. }
  19369. },
  19370. side: {
  19371. height: math.unit(4 + 11 / 12, "feet"),
  19372. weight: math.unit(114, "lb"),
  19373. name: "Side",
  19374. image: {
  19375. source: "./media/characters/raf/side.svg",
  19376. extra: 1466/1316,
  19377. bottom: 29/1495
  19378. }
  19379. },
  19380. paw: {
  19381. height: math.unit(1.45, "feet"),
  19382. name: "Paw",
  19383. image: {
  19384. source: "./media/characters/raf/paw.svg"
  19385. },
  19386. extraAttributes: {
  19387. "toeSize": {
  19388. name: "Toe Size",
  19389. power: 2,
  19390. type: "area",
  19391. base: math.unit(0.004, "m^2")
  19392. },
  19393. "padSize": {
  19394. name: "Pad Size",
  19395. power: 2,
  19396. type: "area",
  19397. base: math.unit(0.04, "m^2")
  19398. },
  19399. "footSize": {
  19400. name: "Foot Size",
  19401. power: 2,
  19402. type: "area",
  19403. base: math.unit(0.08, "m^2")
  19404. },
  19405. }
  19406. },
  19407. },
  19408. [
  19409. {
  19410. name: "Micro",
  19411. height: math.unit(2, "inches")
  19412. },
  19413. {
  19414. name: "Normal",
  19415. height: math.unit(4 + 11 / 12, "feet"),
  19416. default: true
  19417. },
  19418. {
  19419. name: "Macro",
  19420. height: math.unit(70, "feet")
  19421. },
  19422. ]
  19423. ))
  19424. characterMakers.push(() => makeCharacter(
  19425. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  19426. {
  19427. front: {
  19428. height: math.unit(1.5, "meters"),
  19429. weight: math.unit(68, "kg"),
  19430. name: "Front",
  19431. image: {
  19432. source: "./media/characters/liam-einarr/front.svg",
  19433. extra: 2822 / 2666
  19434. }
  19435. },
  19436. back: {
  19437. height: math.unit(1.5, "meters"),
  19438. weight: math.unit(68, "kg"),
  19439. name: "Back",
  19440. image: {
  19441. source: "./media/characters/liam-einarr/back.svg",
  19442. extra: 2822 / 2666,
  19443. bottom: 0.015
  19444. }
  19445. },
  19446. },
  19447. [
  19448. {
  19449. name: "Normal",
  19450. height: math.unit(1.5, "meters"),
  19451. default: true
  19452. },
  19453. {
  19454. name: "Macro",
  19455. height: math.unit(150, "meters")
  19456. },
  19457. {
  19458. name: "Megamacro",
  19459. height: math.unit(35, "km")
  19460. },
  19461. ]
  19462. ))
  19463. characterMakers.push(() => makeCharacter(
  19464. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  19465. {
  19466. front: {
  19467. height: math.unit(6, "feet"),
  19468. weight: math.unit(75, "kg"),
  19469. name: "Front",
  19470. image: {
  19471. source: "./media/characters/linda/front.svg",
  19472. extra: 930 / 874,
  19473. bottom: 0.004
  19474. }
  19475. },
  19476. },
  19477. [
  19478. {
  19479. name: "Normal",
  19480. height: math.unit(6, "feet"),
  19481. default: true
  19482. },
  19483. ]
  19484. ))
  19485. characterMakers.push(() => makeCharacter(
  19486. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  19487. {
  19488. front: {
  19489. height: math.unit(6 + 8 / 12, "feet"),
  19490. weight: math.unit(220, "lb"),
  19491. name: "Front",
  19492. image: {
  19493. source: "./media/characters/caylex/front.svg",
  19494. extra: 821 / 772,
  19495. bottom: 0.07
  19496. }
  19497. },
  19498. back: {
  19499. height: math.unit(6 + 8 / 12, "feet"),
  19500. weight: math.unit(220, "lb"),
  19501. name: "Back",
  19502. image: {
  19503. source: "./media/characters/caylex/back.svg",
  19504. extra: 821 / 772,
  19505. bottom: 0.022
  19506. }
  19507. },
  19508. hand: {
  19509. height: math.unit(1.25, "feet"),
  19510. name: "Hand",
  19511. image: {
  19512. source: "./media/characters/caylex/hand.svg"
  19513. }
  19514. },
  19515. foot: {
  19516. height: math.unit(1.6, "feet"),
  19517. name: "Foot",
  19518. image: {
  19519. source: "./media/characters/caylex/foot.svg"
  19520. }
  19521. },
  19522. armored: {
  19523. height: math.unit(6 + 8 / 12, "feet"),
  19524. weight: math.unit(250, "lb"),
  19525. name: "Armored",
  19526. image: {
  19527. source: "./media/characters/caylex/armored.svg",
  19528. extra: 1420 / 1310,
  19529. bottom: 0.045
  19530. }
  19531. },
  19532. },
  19533. [
  19534. {
  19535. name: "Normal",
  19536. height: math.unit(6 + 8 / 12, "feet"),
  19537. default: true
  19538. },
  19539. {
  19540. name: "Normal+",
  19541. height: math.unit(12, "feet")
  19542. },
  19543. ]
  19544. ))
  19545. characterMakers.push(() => makeCharacter(
  19546. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19547. {
  19548. front: {
  19549. height: math.unit(7 + 6 / 12, "feet"),
  19550. weight: math.unit(288, "lb"),
  19551. name: "Front",
  19552. image: {
  19553. source: "./media/characters/alana/front.svg",
  19554. extra: 679 / 653,
  19555. bottom: 22.5 / 701
  19556. }
  19557. },
  19558. },
  19559. [
  19560. {
  19561. name: "Normal",
  19562. height: math.unit(7 + 6 / 12, "feet")
  19563. },
  19564. {
  19565. name: "Large",
  19566. height: math.unit(50, "feet")
  19567. },
  19568. {
  19569. name: "Macro",
  19570. height: math.unit(100, "feet"),
  19571. default: true
  19572. },
  19573. {
  19574. name: "Macro+",
  19575. height: math.unit(200, "feet")
  19576. },
  19577. ]
  19578. ))
  19579. characterMakers.push(() => makeCharacter(
  19580. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19581. {
  19582. front: {
  19583. height: math.unit(6 + 1 / 12, "feet"),
  19584. weight: math.unit(210, "lb"),
  19585. name: "Front",
  19586. image: {
  19587. source: "./media/characters/hasani/front.svg",
  19588. extra: 244 / 232,
  19589. bottom: 0.01
  19590. }
  19591. },
  19592. back: {
  19593. height: math.unit(6 + 1 / 12, "feet"),
  19594. weight: math.unit(210, "lb"),
  19595. name: "Back",
  19596. image: {
  19597. source: "./media/characters/hasani/back.svg",
  19598. extra: 244 / 232,
  19599. bottom: 0.01
  19600. }
  19601. },
  19602. },
  19603. [
  19604. {
  19605. name: "Normal",
  19606. height: math.unit(6 + 1 / 12, "feet")
  19607. },
  19608. {
  19609. name: "Macro",
  19610. height: math.unit(175, "feet"),
  19611. default: true
  19612. },
  19613. ]
  19614. ))
  19615. characterMakers.push(() => makeCharacter(
  19616. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19617. {
  19618. front: {
  19619. height: math.unit(1.82, "meters"),
  19620. weight: math.unit(140, "lb"),
  19621. name: "Front",
  19622. image: {
  19623. source: "./media/characters/nita/front.svg",
  19624. extra: 2473 / 2363,
  19625. bottom: 0.01
  19626. }
  19627. },
  19628. },
  19629. [
  19630. {
  19631. name: "Normal",
  19632. height: math.unit(1.82, "m")
  19633. },
  19634. {
  19635. name: "Macro",
  19636. height: math.unit(300, "m")
  19637. },
  19638. {
  19639. name: "Mistake Canon",
  19640. height: math.unit(0.5, "miles"),
  19641. default: true
  19642. },
  19643. {
  19644. name: "Big Mistake",
  19645. height: math.unit(13, "miles")
  19646. },
  19647. {
  19648. name: "Playing God",
  19649. height: math.unit(2450, "miles")
  19650. },
  19651. ]
  19652. ))
  19653. characterMakers.push(() => makeCharacter(
  19654. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19655. {
  19656. front: {
  19657. height: math.unit(4, "feet"),
  19658. weight: math.unit(120, "lb"),
  19659. name: "Front",
  19660. image: {
  19661. source: "./media/characters/shiriko/front.svg",
  19662. extra: 970/934,
  19663. bottom: 5/975
  19664. }
  19665. },
  19666. },
  19667. [
  19668. {
  19669. name: "Normal",
  19670. height: math.unit(4, "feet"),
  19671. default: true
  19672. },
  19673. ]
  19674. ))
  19675. characterMakers.push(() => makeCharacter(
  19676. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19677. {
  19678. front: {
  19679. height: math.unit(6, "feet"),
  19680. name: "front",
  19681. image: {
  19682. source: "./media/characters/deja/front.svg",
  19683. extra: 926 / 840,
  19684. bottom: 0.07
  19685. }
  19686. },
  19687. },
  19688. [
  19689. {
  19690. name: "Planck Length",
  19691. height: math.unit(1.6e-35, "meters")
  19692. },
  19693. {
  19694. name: "Normal",
  19695. height: math.unit(30.48, "meters"),
  19696. default: true
  19697. },
  19698. {
  19699. name: "Universal",
  19700. height: math.unit(8.8e26, "meters")
  19701. },
  19702. ]
  19703. ))
  19704. characterMakers.push(() => makeCharacter(
  19705. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19706. {
  19707. side: {
  19708. height: math.unit(8, "feet"),
  19709. weight: math.unit(6300, "lb"),
  19710. name: "Side",
  19711. image: {
  19712. source: "./media/characters/anima/side.svg",
  19713. bottom: 0.035
  19714. }
  19715. },
  19716. },
  19717. [
  19718. {
  19719. name: "Normal",
  19720. height: math.unit(8, "feet"),
  19721. default: true
  19722. },
  19723. ]
  19724. ))
  19725. characterMakers.push(() => makeCharacter(
  19726. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19727. {
  19728. front: {
  19729. height: math.unit(8, "feet"),
  19730. weight: math.unit(350, "lb"),
  19731. name: "Front",
  19732. image: {
  19733. source: "./media/characters/bianca/front.svg",
  19734. extra: 234 / 225,
  19735. bottom: 0.03
  19736. }
  19737. },
  19738. },
  19739. [
  19740. {
  19741. name: "Normal",
  19742. height: math.unit(8, "feet"),
  19743. default: true
  19744. },
  19745. ]
  19746. ))
  19747. characterMakers.push(() => makeCharacter(
  19748. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19749. {
  19750. front: {
  19751. height: math.unit(11 + 5/12, "feet"),
  19752. weight: math.unit(1200, "lb"),
  19753. name: "Front",
  19754. image: {
  19755. source: "./media/characters/adinia/front.svg",
  19756. extra: 1767/1641,
  19757. bottom: 44/1811
  19758. },
  19759. extraAttributes: {
  19760. "energyIntake": {
  19761. name: "Energy Intake",
  19762. power: 3,
  19763. type: "energy",
  19764. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19765. },
  19766. }
  19767. },
  19768. back: {
  19769. height: math.unit(11 + 5/12, "feet"),
  19770. weight: math.unit(1200, "lb"),
  19771. name: "Back",
  19772. image: {
  19773. source: "./media/characters/adinia/back.svg",
  19774. extra: 1834/1684,
  19775. bottom: 14/1848
  19776. },
  19777. extraAttributes: {
  19778. "energyIntake": {
  19779. name: "Energy Intake",
  19780. power: 3,
  19781. type: "energy",
  19782. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19783. },
  19784. }
  19785. },
  19786. maw: {
  19787. height: math.unit(3.79, "feet"),
  19788. name: "Maw",
  19789. image: {
  19790. source: "./media/characters/adinia/maw.svg"
  19791. }
  19792. },
  19793. rump: {
  19794. height: math.unit(4.6, "feet"),
  19795. name: "Rump",
  19796. image: {
  19797. source: "./media/characters/adinia/rump.svg"
  19798. }
  19799. },
  19800. },
  19801. [
  19802. {
  19803. name: "Normal",
  19804. height: math.unit(11 + 5 / 12, "feet"),
  19805. default: true
  19806. },
  19807. ]
  19808. ))
  19809. characterMakers.push(() => makeCharacter(
  19810. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19811. {
  19812. front: {
  19813. height: math.unit(3, "meters"),
  19814. weight: math.unit(200, "kg"),
  19815. name: "Front",
  19816. image: {
  19817. source: "./media/characters/lykasa/front.svg",
  19818. extra: 1076 / 976,
  19819. bottom: 0.06
  19820. }
  19821. },
  19822. },
  19823. [
  19824. {
  19825. name: "Normal",
  19826. height: math.unit(3, "meters")
  19827. },
  19828. {
  19829. name: "Kaiju",
  19830. height: math.unit(120, "meters"),
  19831. default: true
  19832. },
  19833. {
  19834. name: "Mega Kaiju",
  19835. height: math.unit(240, "km")
  19836. },
  19837. {
  19838. name: "Giga Kaiju",
  19839. height: math.unit(400, "megameters")
  19840. },
  19841. {
  19842. name: "Tera Kaiju",
  19843. height: math.unit(800, "gigameters")
  19844. },
  19845. {
  19846. name: "Kaiju Dragon Goddess",
  19847. height: math.unit(26, "zettaparsecs")
  19848. },
  19849. ]
  19850. ))
  19851. characterMakers.push(() => makeCharacter(
  19852. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19853. {
  19854. side: {
  19855. height: math.unit(283 / 124 * 6, "feet"),
  19856. weight: math.unit(35000, "lb"),
  19857. name: "Side",
  19858. image: {
  19859. source: "./media/characters/malfaren/side.svg",
  19860. extra: 1310/529,
  19861. bottom: 24/1334
  19862. }
  19863. },
  19864. front: {
  19865. height: math.unit(22.36, "feet"),
  19866. weight: math.unit(35000, "lb"),
  19867. name: "Front",
  19868. image: {
  19869. source: "./media/characters/malfaren/front.svg",
  19870. extra: 1237/1115,
  19871. bottom: 32/1269
  19872. }
  19873. },
  19874. maw: {
  19875. height: math.unit(6.9, "feet"),
  19876. name: "Maw",
  19877. image: {
  19878. source: "./media/characters/malfaren/maw.svg"
  19879. }
  19880. },
  19881. dick: {
  19882. height: math.unit(6.19, "feet"),
  19883. name: "Dick",
  19884. image: {
  19885. source: "./media/characters/malfaren/dick.svg"
  19886. }
  19887. },
  19888. eye: {
  19889. height: math.unit(0.69, "feet"),
  19890. name: "Eye",
  19891. image: {
  19892. source: "./media/characters/malfaren/eye.svg"
  19893. }
  19894. },
  19895. },
  19896. [
  19897. {
  19898. name: "Big",
  19899. height: math.unit(283 / 162 * 6, "feet"),
  19900. },
  19901. {
  19902. name: "Bigger",
  19903. height: math.unit(283 / 124 * 6, "feet")
  19904. },
  19905. {
  19906. name: "Massive",
  19907. height: math.unit(283 / 92 * 6, "feet"),
  19908. default: true
  19909. },
  19910. {
  19911. name: "👀💦",
  19912. height: math.unit(283 / 73 * 6, "feet"),
  19913. },
  19914. ]
  19915. ))
  19916. characterMakers.push(() => makeCharacter(
  19917. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19918. {
  19919. front: {
  19920. height: math.unit(1.7, "m"),
  19921. weight: math.unit(70, "kg"),
  19922. name: "Front",
  19923. image: {
  19924. source: "./media/characters/kernel/front.svg",
  19925. extra: 1960/1821,
  19926. bottom: 17/1977
  19927. }
  19928. },
  19929. },
  19930. [
  19931. {
  19932. name: "Nano",
  19933. height: math.unit(17, "micrometers")
  19934. },
  19935. {
  19936. name: "Micro",
  19937. height: math.unit(1.7, "mm")
  19938. },
  19939. {
  19940. name: "Small",
  19941. height: math.unit(1.7, "cm")
  19942. },
  19943. {
  19944. name: "Normal",
  19945. height: math.unit(1.7, "m"),
  19946. default: true
  19947. },
  19948. ]
  19949. ))
  19950. characterMakers.push(() => makeCharacter(
  19951. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19952. {
  19953. front: {
  19954. height: math.unit(1.75, "meters"),
  19955. weight: math.unit(65, "kg"),
  19956. name: "Front",
  19957. image: {
  19958. source: "./media/characters/jayne-folest/front.svg",
  19959. extra: 2115 / 2007,
  19960. bottom: 0.02
  19961. }
  19962. },
  19963. back: {
  19964. height: math.unit(1.75, "meters"),
  19965. weight: math.unit(65, "kg"),
  19966. name: "Back",
  19967. image: {
  19968. source: "./media/characters/jayne-folest/back.svg",
  19969. extra: 2115 / 2007,
  19970. bottom: 0.005
  19971. }
  19972. },
  19973. frontClothed: {
  19974. height: math.unit(1.75, "meters"),
  19975. weight: math.unit(65, "kg"),
  19976. name: "Front (Clothed)",
  19977. image: {
  19978. source: "./media/characters/jayne-folest/front-clothed.svg",
  19979. extra: 2115 / 2007,
  19980. bottom: 0.035
  19981. }
  19982. },
  19983. hand: {
  19984. height: math.unit(1 / 1.260, "feet"),
  19985. name: "Hand",
  19986. image: {
  19987. source: "./media/characters/jayne-folest/hand.svg"
  19988. }
  19989. },
  19990. foot: {
  19991. height: math.unit(1 / 0.918, "feet"),
  19992. name: "Foot",
  19993. image: {
  19994. source: "./media/characters/jayne-folest/foot.svg"
  19995. }
  19996. },
  19997. },
  19998. [
  19999. {
  20000. name: "Micro",
  20001. height: math.unit(4, "cm")
  20002. },
  20003. {
  20004. name: "Normal",
  20005. height: math.unit(1.75, "meters")
  20006. },
  20007. {
  20008. name: "Macro",
  20009. height: math.unit(47.5, "meters"),
  20010. default: true
  20011. },
  20012. ]
  20013. ))
  20014. characterMakers.push(() => makeCharacter(
  20015. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  20016. {
  20017. front: {
  20018. height: math.unit(180, "cm"),
  20019. weight: math.unit(70, "kg"),
  20020. name: "Front",
  20021. image: {
  20022. source: "./media/characters/algier/front.svg",
  20023. extra: 596 / 572,
  20024. bottom: 0.04
  20025. }
  20026. },
  20027. back: {
  20028. height: math.unit(180, "cm"),
  20029. weight: math.unit(70, "kg"),
  20030. name: "Back",
  20031. image: {
  20032. source: "./media/characters/algier/back.svg",
  20033. extra: 596 / 572,
  20034. bottom: 0.025
  20035. }
  20036. },
  20037. frontdressed: {
  20038. height: math.unit(180, "cm"),
  20039. weight: math.unit(150, "kg"),
  20040. name: "Front-dressed",
  20041. image: {
  20042. source: "./media/characters/algier/front-dressed.svg",
  20043. extra: 596 / 572,
  20044. bottom: 0.038
  20045. }
  20046. },
  20047. },
  20048. [
  20049. {
  20050. name: "Micro",
  20051. height: math.unit(5, "cm")
  20052. },
  20053. {
  20054. name: "Normal",
  20055. height: math.unit(180, "cm"),
  20056. default: true
  20057. },
  20058. {
  20059. name: "Macro",
  20060. height: math.unit(64, "m")
  20061. },
  20062. ]
  20063. ))
  20064. characterMakers.push(() => makeCharacter(
  20065. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  20066. {
  20067. upright: {
  20068. height: math.unit(7, "feet"),
  20069. weight: math.unit(300, "lb"),
  20070. name: "Upright",
  20071. image: {
  20072. source: "./media/characters/pretzel/upright.svg",
  20073. extra: 534 / 522,
  20074. bottom: 0.065
  20075. }
  20076. },
  20077. sprawling: {
  20078. height: math.unit(3.75, "feet"),
  20079. weight: math.unit(300, "lb"),
  20080. name: "Sprawling",
  20081. image: {
  20082. source: "./media/characters/pretzel/sprawling.svg",
  20083. extra: 314 / 281,
  20084. bottom: 0.1
  20085. }
  20086. },
  20087. tongue: {
  20088. height: math.unit(2, "feet"),
  20089. name: "Tongue",
  20090. image: {
  20091. source: "./media/characters/pretzel/tongue.svg"
  20092. }
  20093. },
  20094. },
  20095. [
  20096. {
  20097. name: "Normal",
  20098. height: math.unit(7, "feet"),
  20099. default: true
  20100. },
  20101. {
  20102. name: "Oversized",
  20103. height: math.unit(15, "feet")
  20104. },
  20105. {
  20106. name: "Huge",
  20107. height: math.unit(30, "feet")
  20108. },
  20109. {
  20110. name: "Macro",
  20111. height: math.unit(250, "feet")
  20112. },
  20113. ]
  20114. ))
  20115. characterMakers.push(() => makeCharacter(
  20116. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  20117. {
  20118. sideFront: {
  20119. height: math.unit(5 + 2 / 12, "feet"),
  20120. weight: math.unit(120, "lb"),
  20121. name: "Front Side",
  20122. image: {
  20123. source: "./media/characters/roxi/side-front.svg",
  20124. extra: 2924 / 2717,
  20125. bottom: 0.08
  20126. }
  20127. },
  20128. sideBack: {
  20129. height: math.unit(5 + 2 / 12, "feet"),
  20130. weight: math.unit(120, "lb"),
  20131. name: "Back Side",
  20132. image: {
  20133. source: "./media/characters/roxi/side-back.svg",
  20134. extra: 2904 / 2693,
  20135. bottom: 0.06
  20136. }
  20137. },
  20138. front: {
  20139. height: math.unit(5 + 2 / 12, "feet"),
  20140. weight: math.unit(120, "lb"),
  20141. name: "Front",
  20142. image: {
  20143. source: "./media/characters/roxi/front.svg",
  20144. extra: 2028 / 1907,
  20145. bottom: 0.01
  20146. }
  20147. },
  20148. frontAlt: {
  20149. height: math.unit(5 + 2 / 12, "feet"),
  20150. weight: math.unit(120, "lb"),
  20151. name: "Front (Alt)",
  20152. image: {
  20153. source: "./media/characters/roxi/front-alt.svg",
  20154. extra: 1828 / 1798,
  20155. bottom: 0.01
  20156. }
  20157. },
  20158. sitting: {
  20159. height: math.unit(2.8, "feet"),
  20160. weight: math.unit(120, "lb"),
  20161. name: "Sitting",
  20162. image: {
  20163. source: "./media/characters/roxi/sitting.svg",
  20164. extra: 2660 / 2462,
  20165. bottom: 0.1
  20166. }
  20167. },
  20168. },
  20169. [
  20170. {
  20171. name: "Normal",
  20172. height: math.unit(5 + 2 / 12, "feet"),
  20173. default: true
  20174. },
  20175. ]
  20176. ))
  20177. characterMakers.push(() => makeCharacter(
  20178. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  20179. {
  20180. side: {
  20181. height: math.unit(55, "feet"),
  20182. weight: math.unit(153, "tons"),
  20183. name: "Side",
  20184. image: {
  20185. source: "./media/characters/shadow/side.svg",
  20186. extra: 701 / 628,
  20187. bottom: 0.02
  20188. }
  20189. },
  20190. flying: {
  20191. height: math.unit(145, "feet"),
  20192. weight: math.unit(153, "tons"),
  20193. name: "Flying",
  20194. image: {
  20195. source: "./media/characters/shadow/flying.svg"
  20196. }
  20197. },
  20198. },
  20199. [
  20200. {
  20201. name: "Normal",
  20202. height: math.unit(55, "feet"),
  20203. default: true
  20204. },
  20205. ]
  20206. ))
  20207. characterMakers.push(() => makeCharacter(
  20208. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  20209. {
  20210. front: {
  20211. height: math.unit(6, "feet"),
  20212. weight: math.unit(200, "lb"),
  20213. name: "Front",
  20214. image: {
  20215. source: "./media/characters/marcie/front.svg",
  20216. extra: 960 / 876,
  20217. bottom: 58 / 1017.87
  20218. }
  20219. },
  20220. },
  20221. [
  20222. {
  20223. name: "Macro",
  20224. height: math.unit(1, "mile"),
  20225. default: true
  20226. },
  20227. ]
  20228. ))
  20229. characterMakers.push(() => makeCharacter(
  20230. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  20231. {
  20232. front: {
  20233. height: math.unit(7, "feet"),
  20234. weight: math.unit(200, "lb"),
  20235. name: "Front",
  20236. image: {
  20237. source: "./media/characters/kachina/front.svg",
  20238. extra: 3206/2764,
  20239. bottom: 140/3346
  20240. }
  20241. },
  20242. },
  20243. [
  20244. {
  20245. name: "Normal",
  20246. height: math.unit(7, "feet"),
  20247. default: true
  20248. },
  20249. ]
  20250. ))
  20251. characterMakers.push(() => makeCharacter(
  20252. { name: "Kash", species: ["canine"], tags: ["feral"] },
  20253. {
  20254. looking: {
  20255. height: math.unit(2, "meters"),
  20256. weight: math.unit(300, "kg"),
  20257. name: "Looking",
  20258. image: {
  20259. source: "./media/characters/kash/looking.svg",
  20260. extra: 474 / 344,
  20261. bottom: 0.03
  20262. }
  20263. },
  20264. side: {
  20265. height: math.unit(2, "meters"),
  20266. weight: math.unit(300, "kg"),
  20267. name: "Side",
  20268. image: {
  20269. source: "./media/characters/kash/side.svg",
  20270. extra: 302 / 251,
  20271. bottom: 0.03
  20272. }
  20273. },
  20274. front: {
  20275. height: math.unit(2, "meters"),
  20276. weight: math.unit(300, "kg"),
  20277. name: "Front",
  20278. image: {
  20279. source: "./media/characters/kash/front.svg",
  20280. extra: 495 / 360,
  20281. bottom: 0.015
  20282. }
  20283. },
  20284. },
  20285. [
  20286. {
  20287. name: "Normal",
  20288. height: math.unit(2, "meters"),
  20289. default: true
  20290. },
  20291. {
  20292. name: "Big",
  20293. height: math.unit(3, "meters")
  20294. },
  20295. {
  20296. name: "Large",
  20297. height: math.unit(5, "meters")
  20298. },
  20299. ]
  20300. ))
  20301. characterMakers.push(() => makeCharacter(
  20302. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  20303. {
  20304. feeding: {
  20305. height: math.unit(6.7, "feet"),
  20306. weight: math.unit(350, "lb"),
  20307. name: "Feeding",
  20308. image: {
  20309. source: "./media/characters/lalim/feeding.svg",
  20310. }
  20311. },
  20312. },
  20313. [
  20314. {
  20315. name: "Normal",
  20316. height: math.unit(6.7, "feet"),
  20317. default: true
  20318. },
  20319. ]
  20320. ))
  20321. characterMakers.push(() => makeCharacter(
  20322. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  20323. {
  20324. front: {
  20325. height: math.unit(9.5, "feet"),
  20326. weight: math.unit(600, "lb"),
  20327. name: "Front",
  20328. image: {
  20329. source: "./media/characters/de'vout/front.svg",
  20330. extra: 1443 / 1328,
  20331. bottom: 0.025
  20332. }
  20333. },
  20334. back: {
  20335. height: math.unit(9.5, "feet"),
  20336. weight: math.unit(600, "lb"),
  20337. name: "Back",
  20338. image: {
  20339. source: "./media/characters/de'vout/back.svg",
  20340. extra: 1443 / 1328
  20341. }
  20342. },
  20343. frontDressed: {
  20344. height: math.unit(9.5, "feet"),
  20345. weight: math.unit(600, "lb"),
  20346. name: "Front (Dressed",
  20347. image: {
  20348. source: "./media/characters/de'vout/front-dressed.svg",
  20349. extra: 1443 / 1328,
  20350. bottom: 0.025
  20351. }
  20352. },
  20353. backDressed: {
  20354. height: math.unit(9.5, "feet"),
  20355. weight: math.unit(600, "lb"),
  20356. name: "Back (Dressed",
  20357. image: {
  20358. source: "./media/characters/de'vout/back-dressed.svg",
  20359. extra: 1443 / 1328
  20360. }
  20361. },
  20362. },
  20363. [
  20364. {
  20365. name: "Normal",
  20366. height: math.unit(9.5, "feet"),
  20367. default: true
  20368. },
  20369. ]
  20370. ))
  20371. characterMakers.push(() => makeCharacter(
  20372. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  20373. {
  20374. front: {
  20375. height: math.unit(8, "feet"),
  20376. weight: math.unit(225, "lb"),
  20377. name: "Front",
  20378. image: {
  20379. source: "./media/characters/talana/front.svg",
  20380. extra: 1410 / 1300,
  20381. bottom: 0.015
  20382. }
  20383. },
  20384. frontDressed: {
  20385. height: math.unit(8, "feet"),
  20386. weight: math.unit(225, "lb"),
  20387. name: "Front (Dressed",
  20388. image: {
  20389. source: "./media/characters/talana/front-dressed.svg",
  20390. extra: 1410 / 1300,
  20391. bottom: 0.015
  20392. }
  20393. },
  20394. },
  20395. [
  20396. {
  20397. name: "Normal",
  20398. height: math.unit(8, "feet"),
  20399. default: true
  20400. },
  20401. ]
  20402. ))
  20403. characterMakers.push(() => makeCharacter(
  20404. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  20405. {
  20406. side: {
  20407. height: math.unit(7.2, "feet"),
  20408. weight: math.unit(150, "lb"),
  20409. name: "Side",
  20410. image: {
  20411. source: "./media/characters/xeauvok/side.svg",
  20412. extra: 1975 / 1523,
  20413. bottom: 0.07
  20414. }
  20415. },
  20416. },
  20417. [
  20418. {
  20419. name: "Normal",
  20420. height: math.unit(7.2, "feet"),
  20421. default: true
  20422. },
  20423. ]
  20424. ))
  20425. characterMakers.push(() => makeCharacter(
  20426. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  20427. {
  20428. side: {
  20429. height: math.unit(4, "meters"),
  20430. weight: math.unit(2200, "kg"),
  20431. name: "Side",
  20432. image: {
  20433. source: "./media/characters/zara/side.svg",
  20434. extra: 765/744,
  20435. bottom: 156/921
  20436. }
  20437. },
  20438. },
  20439. [
  20440. {
  20441. name: "Normal",
  20442. height: math.unit(4, "meters"),
  20443. default: true
  20444. },
  20445. ]
  20446. ))
  20447. characterMakers.push(() => makeCharacter(
  20448. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  20449. {
  20450. side: {
  20451. height: math.unit(6, "feet"),
  20452. weight: math.unit(150, "lb"),
  20453. name: "Side",
  20454. image: {
  20455. source: "./media/characters/richard-dragon/side.svg",
  20456. extra: 845 / 340,
  20457. bottom: 0.017
  20458. }
  20459. },
  20460. maw: {
  20461. height: math.unit(2.97, "feet"),
  20462. name: "Maw",
  20463. image: {
  20464. source: "./media/characters/richard-dragon/maw.svg"
  20465. }
  20466. },
  20467. },
  20468. [
  20469. ]
  20470. ))
  20471. characterMakers.push(() => makeCharacter(
  20472. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  20473. {
  20474. front: {
  20475. height: math.unit(4, "feet"),
  20476. weight: math.unit(100, "lb"),
  20477. name: "Front",
  20478. image: {
  20479. source: "./media/characters/richard-smeargle/front.svg",
  20480. extra: 2952 / 2820,
  20481. bottom: 0.028
  20482. }
  20483. },
  20484. },
  20485. [
  20486. {
  20487. name: "Normal",
  20488. height: math.unit(4, "feet"),
  20489. default: true
  20490. },
  20491. {
  20492. name: "Dynamax",
  20493. height: math.unit(20, "meters")
  20494. },
  20495. ]
  20496. ))
  20497. characterMakers.push(() => makeCharacter(
  20498. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  20499. {
  20500. front: {
  20501. height: math.unit(6, "feet"),
  20502. weight: math.unit(110, "lb"),
  20503. name: "Front",
  20504. image: {
  20505. source: "./media/characters/klay/front.svg",
  20506. extra: 962 / 883,
  20507. bottom: 0.04
  20508. }
  20509. },
  20510. back: {
  20511. height: math.unit(6, "feet"),
  20512. weight: math.unit(110, "lb"),
  20513. name: "Back",
  20514. image: {
  20515. source: "./media/characters/klay/back.svg",
  20516. extra: 962 / 883
  20517. }
  20518. },
  20519. beans: {
  20520. height: math.unit(1.15, "feet"),
  20521. name: "Beans",
  20522. image: {
  20523. source: "./media/characters/klay/beans.svg"
  20524. }
  20525. },
  20526. },
  20527. [
  20528. {
  20529. name: "Micro",
  20530. height: math.unit(6, "inches")
  20531. },
  20532. {
  20533. name: "Mini",
  20534. height: math.unit(3, "feet")
  20535. },
  20536. {
  20537. name: "Normal",
  20538. height: math.unit(6, "feet"),
  20539. default: true
  20540. },
  20541. {
  20542. name: "Big",
  20543. height: math.unit(25, "feet")
  20544. },
  20545. {
  20546. name: "Macro",
  20547. height: math.unit(100, "feet")
  20548. },
  20549. {
  20550. name: "Megamacro",
  20551. height: math.unit(400, "feet")
  20552. },
  20553. ]
  20554. ))
  20555. characterMakers.push(() => makeCharacter(
  20556. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20557. {
  20558. front: {
  20559. height: math.unit(6, "feet"),
  20560. weight: math.unit(160, "lb"),
  20561. name: "Front",
  20562. image: {
  20563. source: "./media/characters/marcus/front.svg",
  20564. extra: 734 / 676,
  20565. bottom: 0.03
  20566. }
  20567. },
  20568. },
  20569. [
  20570. {
  20571. name: "Little",
  20572. height: math.unit(6, "feet")
  20573. },
  20574. {
  20575. name: "Normal",
  20576. height: math.unit(110, "feet"),
  20577. default: true
  20578. },
  20579. {
  20580. name: "Macro",
  20581. height: math.unit(250, "feet")
  20582. },
  20583. {
  20584. name: "Megamacro",
  20585. height: math.unit(1000, "feet")
  20586. },
  20587. ]
  20588. ))
  20589. characterMakers.push(() => makeCharacter(
  20590. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20591. {
  20592. front: {
  20593. height: math.unit(7, "feet"),
  20594. weight: math.unit(275, "lb"),
  20595. name: "Front",
  20596. image: {
  20597. source: "./media/characters/claude-delroute/front.svg",
  20598. extra: 902/827,
  20599. bottom: 26/928
  20600. }
  20601. },
  20602. side: {
  20603. height: math.unit(7, "feet"),
  20604. weight: math.unit(275, "lb"),
  20605. name: "Side",
  20606. image: {
  20607. source: "./media/characters/claude-delroute/side.svg",
  20608. extra: 908/853,
  20609. bottom: 16/924
  20610. }
  20611. },
  20612. back: {
  20613. height: math.unit(7, "feet"),
  20614. weight: math.unit(275, "lb"),
  20615. name: "Back",
  20616. image: {
  20617. source: "./media/characters/claude-delroute/back.svg",
  20618. extra: 911/829,
  20619. bottom: 18/929
  20620. }
  20621. },
  20622. maw: {
  20623. height: math.unit(0.6407, "meters"),
  20624. name: "Maw",
  20625. image: {
  20626. source: "./media/characters/claude-delroute/maw.svg"
  20627. }
  20628. },
  20629. },
  20630. [
  20631. {
  20632. name: "Normal",
  20633. height: math.unit(7, "feet"),
  20634. default: true
  20635. },
  20636. {
  20637. name: "Lorge",
  20638. height: math.unit(20, "feet")
  20639. },
  20640. ]
  20641. ))
  20642. characterMakers.push(() => makeCharacter(
  20643. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20644. {
  20645. front: {
  20646. height: math.unit(8 + 4 / 12, "feet"),
  20647. weight: math.unit(600, "lb"),
  20648. name: "Front",
  20649. image: {
  20650. source: "./media/characters/dragonien/front.svg",
  20651. extra: 100 / 94,
  20652. bottom: 3.3 / 103.3445
  20653. }
  20654. },
  20655. back: {
  20656. height: math.unit(8 + 4 / 12, "feet"),
  20657. weight: math.unit(600, "lb"),
  20658. name: "Back",
  20659. image: {
  20660. source: "./media/characters/dragonien/back.svg",
  20661. extra: 776 / 746,
  20662. bottom: 6.4 / 782.0616
  20663. }
  20664. },
  20665. foot: {
  20666. height: math.unit(1.54, "feet"),
  20667. name: "Foot",
  20668. image: {
  20669. source: "./media/characters/dragonien/foot.svg",
  20670. }
  20671. },
  20672. },
  20673. [
  20674. {
  20675. name: "Normal",
  20676. height: math.unit(8 + 4 / 12, "feet"),
  20677. default: true
  20678. },
  20679. {
  20680. name: "Macro",
  20681. height: math.unit(200, "feet")
  20682. },
  20683. {
  20684. name: "Megamacro",
  20685. height: math.unit(1, "mile")
  20686. },
  20687. {
  20688. name: "Gigamacro",
  20689. height: math.unit(1000, "miles")
  20690. },
  20691. ]
  20692. ))
  20693. characterMakers.push(() => makeCharacter(
  20694. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20695. {
  20696. front: {
  20697. height: math.unit(5 + 2 / 12, "feet"),
  20698. weight: math.unit(110, "lb"),
  20699. name: "Front",
  20700. image: {
  20701. source: "./media/characters/desta/front.svg",
  20702. extra: 767 / 726,
  20703. bottom: 11.7 / 779
  20704. }
  20705. },
  20706. back: {
  20707. height: math.unit(5 + 2 / 12, "feet"),
  20708. weight: math.unit(110, "lb"),
  20709. name: "Back",
  20710. image: {
  20711. source: "./media/characters/desta/back.svg",
  20712. extra: 777 / 728,
  20713. bottom: 6 / 784
  20714. }
  20715. },
  20716. frontAlt: {
  20717. height: math.unit(5 + 2 / 12, "feet"),
  20718. weight: math.unit(110, "lb"),
  20719. name: "Front",
  20720. image: {
  20721. source: "./media/characters/desta/front-alt.svg",
  20722. extra: 1482 / 1417
  20723. }
  20724. },
  20725. side: {
  20726. height: math.unit(5 + 2 / 12, "feet"),
  20727. weight: math.unit(110, "lb"),
  20728. name: "Side",
  20729. image: {
  20730. source: "./media/characters/desta/side.svg",
  20731. extra: 2579 / 2491,
  20732. bottom: 0.053
  20733. }
  20734. },
  20735. },
  20736. [
  20737. {
  20738. name: "Micro",
  20739. height: math.unit(6, "inches")
  20740. },
  20741. {
  20742. name: "Normal",
  20743. height: math.unit(5 + 2 / 12, "feet"),
  20744. default: true
  20745. },
  20746. {
  20747. name: "Macro",
  20748. height: math.unit(62, "feet")
  20749. },
  20750. {
  20751. name: "Megamacro",
  20752. height: math.unit(1800, "feet")
  20753. },
  20754. ]
  20755. ))
  20756. characterMakers.push(() => makeCharacter(
  20757. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20758. {
  20759. front: {
  20760. height: math.unit(10, "feet"),
  20761. weight: math.unit(700, "lb"),
  20762. name: "Front",
  20763. image: {
  20764. source: "./media/characters/storm-alystar/front.svg",
  20765. extra: 2112 / 1898,
  20766. bottom: 0.034
  20767. }
  20768. },
  20769. },
  20770. [
  20771. {
  20772. name: "Micro",
  20773. height: math.unit(3.5, "inches")
  20774. },
  20775. {
  20776. name: "Normal",
  20777. height: math.unit(10, "feet"),
  20778. default: true
  20779. },
  20780. {
  20781. name: "Macro",
  20782. height: math.unit(400, "feet")
  20783. },
  20784. {
  20785. name: "Deific",
  20786. height: math.unit(60, "miles")
  20787. },
  20788. ]
  20789. ))
  20790. characterMakers.push(() => makeCharacter(
  20791. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20792. {
  20793. front: {
  20794. height: math.unit(2.35, "meters"),
  20795. weight: math.unit(119, "kg"),
  20796. name: "Front",
  20797. image: {
  20798. source: "./media/characters/ilia/front.svg",
  20799. extra: 1285 / 1255,
  20800. bottom: 0.06
  20801. }
  20802. },
  20803. },
  20804. [
  20805. {
  20806. name: "Normal",
  20807. height: math.unit(2.35, "meters")
  20808. },
  20809. {
  20810. name: "Macro",
  20811. height: math.unit(140, "meters"),
  20812. default: true
  20813. },
  20814. {
  20815. name: "Megamacro",
  20816. height: math.unit(100, "miles")
  20817. },
  20818. ]
  20819. ))
  20820. characterMakers.push(() => makeCharacter(
  20821. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20822. {
  20823. front: {
  20824. height: math.unit(6 + 5 / 12, "feet"),
  20825. weight: math.unit(190, "lb"),
  20826. name: "Front",
  20827. image: {
  20828. source: "./media/characters/kingdead/front.svg",
  20829. extra: 1228 / 1177
  20830. }
  20831. },
  20832. },
  20833. [
  20834. {
  20835. name: "Micro",
  20836. height: math.unit(7, "inches")
  20837. },
  20838. {
  20839. name: "Normal",
  20840. height: math.unit(6 + 5 / 12, "feet")
  20841. },
  20842. {
  20843. name: "Macro",
  20844. height: math.unit(150, "feet"),
  20845. default: true
  20846. },
  20847. {
  20848. name: "Megamacro",
  20849. height: math.unit(200, "miles")
  20850. },
  20851. ]
  20852. ))
  20853. characterMakers.push(() => makeCharacter(
  20854. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20855. {
  20856. front: {
  20857. height: math.unit(8, "feet"),
  20858. weight: math.unit(600, "lb"),
  20859. name: "Front",
  20860. image: {
  20861. source: "./media/characters/kyrehx/front.svg",
  20862. extra: 1195 / 1095,
  20863. bottom: 0.034
  20864. }
  20865. },
  20866. },
  20867. [
  20868. {
  20869. name: "Micro",
  20870. height: math.unit(2, "inches")
  20871. },
  20872. {
  20873. name: "Normal",
  20874. height: math.unit(8, "feet"),
  20875. default: true
  20876. },
  20877. {
  20878. name: "Macro",
  20879. height: math.unit(255, "feet")
  20880. },
  20881. ]
  20882. ))
  20883. characterMakers.push(() => makeCharacter(
  20884. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20885. {
  20886. front: {
  20887. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20888. weight: math.unit(184, "lb"),
  20889. name: "Front",
  20890. image: {
  20891. source: "./media/characters/xang/front.svg",
  20892. extra: 845 / 755
  20893. }
  20894. },
  20895. },
  20896. [
  20897. {
  20898. name: "Normal",
  20899. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20900. default: true
  20901. },
  20902. {
  20903. name: "Macro",
  20904. height: math.unit(0.935 * 146, "feet")
  20905. },
  20906. {
  20907. name: "Megamacro",
  20908. height: math.unit(0.935 * 3, "miles")
  20909. },
  20910. ]
  20911. ))
  20912. characterMakers.push(() => makeCharacter(
  20913. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20914. {
  20915. frontDressed: {
  20916. height: math.unit(5 + 7 / 12, "feet"),
  20917. weight: math.unit(140, "lb"),
  20918. name: "Front (Dressed)",
  20919. image: {
  20920. source: "./media/characters/doc-weardno/front-dressed.svg",
  20921. extra: 263 / 234
  20922. }
  20923. },
  20924. backDressed: {
  20925. height: math.unit(5 + 7 / 12, "feet"),
  20926. weight: math.unit(140, "lb"),
  20927. name: "Back (Dressed)",
  20928. image: {
  20929. source: "./media/characters/doc-weardno/back-dressed.svg",
  20930. extra: 266 / 238
  20931. }
  20932. },
  20933. front: {
  20934. height: math.unit(5 + 7 / 12, "feet"),
  20935. weight: math.unit(140, "lb"),
  20936. name: "Front",
  20937. image: {
  20938. source: "./media/characters/doc-weardno/front.svg",
  20939. extra: 254 / 233
  20940. }
  20941. },
  20942. },
  20943. [
  20944. {
  20945. name: "Micro",
  20946. height: math.unit(3, "inches")
  20947. },
  20948. {
  20949. name: "Normal",
  20950. height: math.unit(5 + 7 / 12, "feet"),
  20951. default: true
  20952. },
  20953. {
  20954. name: "Macro",
  20955. height: math.unit(25, "feet")
  20956. },
  20957. {
  20958. name: "Megamacro",
  20959. height: math.unit(2, "miles")
  20960. },
  20961. ]
  20962. ))
  20963. characterMakers.push(() => makeCharacter(
  20964. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20965. {
  20966. front: {
  20967. height: math.unit(6 + 2 / 12, "feet"),
  20968. weight: math.unit(153, "lb"),
  20969. name: "Front",
  20970. image: {
  20971. source: "./media/characters/seth-whilst/front.svg",
  20972. bottom: 0.07
  20973. }
  20974. },
  20975. },
  20976. [
  20977. {
  20978. name: "Micro",
  20979. height: math.unit(5, "inches")
  20980. },
  20981. {
  20982. name: "Normal",
  20983. height: math.unit(6 + 2 / 12, "feet"),
  20984. default: true
  20985. },
  20986. ]
  20987. ))
  20988. characterMakers.push(() => makeCharacter(
  20989. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20990. {
  20991. front: {
  20992. height: math.unit(3, "inches"),
  20993. weight: math.unit(8, "grams"),
  20994. name: "Front",
  20995. image: {
  20996. source: "./media/characters/pocket-jabari/front.svg",
  20997. extra: 1024 / 974,
  20998. bottom: 0.039
  20999. }
  21000. },
  21001. },
  21002. [
  21003. {
  21004. name: "Minimicro",
  21005. height: math.unit(8, "mm")
  21006. },
  21007. {
  21008. name: "Micro",
  21009. height: math.unit(3, "inches"),
  21010. default: true
  21011. },
  21012. {
  21013. name: "Normal",
  21014. height: math.unit(3, "feet")
  21015. },
  21016. ]
  21017. ))
  21018. characterMakers.push(() => makeCharacter(
  21019. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  21020. {
  21021. frontDressed: {
  21022. height: math.unit(15, "feet"),
  21023. weight: math.unit(3280, "lb"),
  21024. name: "Front (Dressed)",
  21025. image: {
  21026. source: "./media/characters/sapphy/front-dressed.svg",
  21027. extra: 1951/1654,
  21028. bottom: 194/2145
  21029. },
  21030. form: "anthro",
  21031. default: true
  21032. },
  21033. backDressed: {
  21034. height: math.unit(15, "feet"),
  21035. weight: math.unit(3280, "lb"),
  21036. name: "Back (Dressed)",
  21037. image: {
  21038. source: "./media/characters/sapphy/back-dressed.svg",
  21039. extra: 2058/1918,
  21040. bottom: 125/2183
  21041. },
  21042. form: "anthro"
  21043. },
  21044. frontNude: {
  21045. height: math.unit(15, "feet"),
  21046. weight: math.unit(3280, "lb"),
  21047. name: "Front (Nude)",
  21048. image: {
  21049. source: "./media/characters/sapphy/front-nude.svg",
  21050. extra: 1951/1654,
  21051. bottom: 194/2145
  21052. },
  21053. form: "anthro"
  21054. },
  21055. backNude: {
  21056. height: math.unit(15, "feet"),
  21057. weight: math.unit(3280, "lb"),
  21058. name: "Back (Nude)",
  21059. image: {
  21060. source: "./media/characters/sapphy/back-nude.svg",
  21061. extra: 2058/1918,
  21062. bottom: 125/2183
  21063. },
  21064. form: "anthro"
  21065. },
  21066. full: {
  21067. height: math.unit(15, "feet"),
  21068. weight: math.unit(3280, "lb"),
  21069. name: "Full",
  21070. image: {
  21071. source: "./media/characters/sapphy/full.svg",
  21072. extra: 1396/1317,
  21073. bottom: 44/1440
  21074. },
  21075. form: "anthro"
  21076. },
  21077. dick: {
  21078. height: math.unit(3.8, "feet"),
  21079. name: "Dick",
  21080. image: {
  21081. source: "./media/characters/sapphy/dick.svg"
  21082. },
  21083. form: "anthro"
  21084. },
  21085. feral: {
  21086. height: math.unit(35, "feet"),
  21087. weight: math.unit(160, "tons"),
  21088. name: "Feral",
  21089. image: {
  21090. source: "./media/characters/sapphy/feral.svg",
  21091. extra: 1050/573,
  21092. bottom: 60/1110
  21093. },
  21094. form: "feral",
  21095. default: true
  21096. },
  21097. },
  21098. [
  21099. {
  21100. name: "Normal",
  21101. height: math.unit(15, "feet"),
  21102. form: "anthro"
  21103. },
  21104. {
  21105. name: "Casual Macro",
  21106. height: math.unit(120, "feet"),
  21107. form: "anthro"
  21108. },
  21109. {
  21110. name: "Macro",
  21111. height: math.unit(2150, "feet"),
  21112. default: true,
  21113. form: "anthro"
  21114. },
  21115. {
  21116. name: "Megamacro",
  21117. height: math.unit(8, "miles"),
  21118. form: "anthro"
  21119. },
  21120. {
  21121. name: "Galaxy Mom",
  21122. height: math.unit(6, "megalightyears"),
  21123. form: "anthro"
  21124. },
  21125. {
  21126. name: "Normal",
  21127. height: math.unit(35, "feet"),
  21128. form: "feral",
  21129. default: true
  21130. },
  21131. {
  21132. name: "Macro",
  21133. height: math.unit(300, "feet"),
  21134. form: "feral"
  21135. },
  21136. {
  21137. name: "Galaxy Mom",
  21138. height: math.unit(10, "megalightyears"),
  21139. form: "feral"
  21140. },
  21141. ],
  21142. {
  21143. "anthro": {
  21144. name: "Anthro",
  21145. default: true
  21146. },
  21147. "feral": {
  21148. name: "Feral"
  21149. }
  21150. }
  21151. ))
  21152. characterMakers.push(() => makeCharacter(
  21153. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  21154. {
  21155. hyenaFront: {
  21156. height: math.unit(6, "feet"),
  21157. weight: math.unit(190, "lb"),
  21158. name: "Front",
  21159. image: {
  21160. source: "./media/characters/kiro/hyena-front.svg",
  21161. extra: 927/839,
  21162. bottom: 91/1018
  21163. },
  21164. form: "hyena",
  21165. default: true
  21166. },
  21167. front: {
  21168. height: math.unit(6, "feet"),
  21169. weight: math.unit(170, "lb"),
  21170. name: "Front",
  21171. image: {
  21172. source: "./media/characters/kiro/front.svg",
  21173. extra: 1064 / 1012,
  21174. bottom: 0.052
  21175. },
  21176. form: "folf",
  21177. default: true
  21178. },
  21179. },
  21180. [
  21181. {
  21182. name: "Micro",
  21183. height: math.unit(6, "inches"),
  21184. form: "folf"
  21185. },
  21186. {
  21187. name: "Normal",
  21188. height: math.unit(6, "feet"),
  21189. form: "folf",
  21190. default: true
  21191. },
  21192. {
  21193. name: "Macro",
  21194. height: math.unit(72, "feet"),
  21195. form: "folf"
  21196. },
  21197. {
  21198. name: "Micro",
  21199. height: math.unit(6, "inches"),
  21200. form: "hyena"
  21201. },
  21202. {
  21203. name: "Normal",
  21204. height: math.unit(6, "feet"),
  21205. form: "hyena",
  21206. default: true
  21207. },
  21208. {
  21209. name: "Macro",
  21210. height: math.unit(72, "feet"),
  21211. form: "hyena"
  21212. },
  21213. ],
  21214. {
  21215. "hyena": {
  21216. name: "Hyena",
  21217. default: true
  21218. },
  21219. "folf": {
  21220. name: "Folf",
  21221. },
  21222. }
  21223. ))
  21224. characterMakers.push(() => makeCharacter(
  21225. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  21226. {
  21227. front: {
  21228. height: math.unit(5 + 9 / 12, "feet"),
  21229. weight: math.unit(175, "lb"),
  21230. name: "Front",
  21231. image: {
  21232. source: "./media/characters/irishfox/front.svg",
  21233. extra: 1912 / 1680,
  21234. bottom: 0.02
  21235. }
  21236. },
  21237. },
  21238. [
  21239. {
  21240. name: "Nano",
  21241. height: math.unit(1, "mm")
  21242. },
  21243. {
  21244. name: "Micro",
  21245. height: math.unit(2, "inches")
  21246. },
  21247. {
  21248. name: "Normal",
  21249. height: math.unit(5 + 9 / 12, "feet"),
  21250. default: true
  21251. },
  21252. {
  21253. name: "Macro",
  21254. height: math.unit(45, "feet")
  21255. },
  21256. ]
  21257. ))
  21258. characterMakers.push(() => makeCharacter(
  21259. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  21260. {
  21261. front: {
  21262. height: math.unit(6 + 1 / 12, "feet"),
  21263. weight: math.unit(75, "lb"),
  21264. name: "Front",
  21265. image: {
  21266. source: "./media/characters/aronai-sieyes/front.svg",
  21267. extra: 1532/1450,
  21268. bottom: 42/1574
  21269. }
  21270. },
  21271. side: {
  21272. height: math.unit(6 + 1 / 12, "feet"),
  21273. weight: math.unit(75, "lb"),
  21274. name: "Side",
  21275. image: {
  21276. source: "./media/characters/aronai-sieyes/side.svg",
  21277. extra: 1422/1365,
  21278. bottom: 148/1570
  21279. }
  21280. },
  21281. back: {
  21282. height: math.unit(6 + 1 / 12, "feet"),
  21283. weight: math.unit(75, "lb"),
  21284. name: "Back",
  21285. image: {
  21286. source: "./media/characters/aronai-sieyes/back.svg",
  21287. extra: 1526/1464,
  21288. bottom: 51/1577
  21289. }
  21290. },
  21291. dressed: {
  21292. height: math.unit(6 + 1 / 12, "feet"),
  21293. weight: math.unit(75, "lb"),
  21294. name: "Dressed",
  21295. image: {
  21296. source: "./media/characters/aronai-sieyes/dressed.svg",
  21297. extra: 1559/1483,
  21298. bottom: 39/1598
  21299. }
  21300. },
  21301. slit: {
  21302. height: math.unit(1.3, "feet"),
  21303. name: "Slit",
  21304. image: {
  21305. source: "./media/characters/aronai-sieyes/slit.svg"
  21306. }
  21307. },
  21308. slitSpread: {
  21309. height: math.unit(0.9, "feet"),
  21310. name: "Slit (Spread)",
  21311. image: {
  21312. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  21313. }
  21314. },
  21315. rump: {
  21316. height: math.unit(1.3, "feet"),
  21317. name: "Rump",
  21318. image: {
  21319. source: "./media/characters/aronai-sieyes/rump.svg"
  21320. }
  21321. },
  21322. maw: {
  21323. height: math.unit(1.25, "feet"),
  21324. name: "Maw",
  21325. image: {
  21326. source: "./media/characters/aronai-sieyes/maw.svg"
  21327. }
  21328. },
  21329. feral: {
  21330. height: math.unit(18, "feet"),
  21331. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  21332. name: "Feral",
  21333. image: {
  21334. source: "./media/characters/aronai-sieyes/feral.svg",
  21335. extra: 1530 / 1240,
  21336. bottom: 0.035
  21337. }
  21338. },
  21339. },
  21340. [
  21341. {
  21342. name: "Micro",
  21343. height: math.unit(2, "inches")
  21344. },
  21345. {
  21346. name: "Normal",
  21347. height: math.unit(6 + 1 / 12, "feet"),
  21348. default: true
  21349. }
  21350. ]
  21351. ))
  21352. characterMakers.push(() => makeCharacter(
  21353. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  21354. {
  21355. front: {
  21356. height: math.unit(12, "feet"),
  21357. weight: math.unit(410, "kg"),
  21358. name: "Front",
  21359. image: {
  21360. source: "./media/characters/xuna/front.svg",
  21361. extra: 2184 / 1980
  21362. }
  21363. },
  21364. side: {
  21365. height: math.unit(12, "feet"),
  21366. weight: math.unit(410, "kg"),
  21367. name: "Side",
  21368. image: {
  21369. source: "./media/characters/xuna/side.svg",
  21370. extra: 2184 / 1980
  21371. }
  21372. },
  21373. back: {
  21374. height: math.unit(12, "feet"),
  21375. weight: math.unit(410, "kg"),
  21376. name: "Back",
  21377. image: {
  21378. source: "./media/characters/xuna/back.svg",
  21379. extra: 2184 / 1980
  21380. }
  21381. },
  21382. },
  21383. [
  21384. {
  21385. name: "Nano glow",
  21386. height: math.unit(10, "nm")
  21387. },
  21388. {
  21389. name: "Micro floof",
  21390. height: math.unit(0.3, "m")
  21391. },
  21392. {
  21393. name: "Huggable softy boi",
  21394. height: math.unit(3.6576, "m"),
  21395. default: true
  21396. },
  21397. {
  21398. name: "Admirable floof",
  21399. height: math.unit(80, "meters")
  21400. },
  21401. {
  21402. name: "Gentle macro",
  21403. height: math.unit(300, "meters")
  21404. },
  21405. {
  21406. name: "Very careful floof",
  21407. height: math.unit(3200, "meters")
  21408. },
  21409. {
  21410. name: "The mega floof",
  21411. height: math.unit(36000, "meters")
  21412. },
  21413. {
  21414. name: "Giga-fur-Wicker",
  21415. height: math.unit(4800000, "meters")
  21416. },
  21417. {
  21418. name: "Licky world",
  21419. height: math.unit(20000000, "meters")
  21420. },
  21421. {
  21422. name: "Floofy cyan sun",
  21423. height: math.unit(1500000000, "meters")
  21424. },
  21425. {
  21426. name: "Milky Wicker",
  21427. height: math.unit(1000000000000000000000, "meters")
  21428. },
  21429. {
  21430. name: "The observing Wicker",
  21431. height: math.unit(999999999999999999999999999, "meters")
  21432. },
  21433. ]
  21434. ))
  21435. characterMakers.push(() => makeCharacter(
  21436. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21437. {
  21438. front: {
  21439. height: math.unit(5 + 9 / 12, "feet"),
  21440. weight: math.unit(150, "lb"),
  21441. name: "Front",
  21442. image: {
  21443. source: "./media/characters/arokha-sieyes/front.svg",
  21444. extra: 1425 / 1284,
  21445. bottom: 0.05
  21446. }
  21447. },
  21448. },
  21449. [
  21450. {
  21451. name: "Normal",
  21452. height: math.unit(5 + 9 / 12, "feet")
  21453. },
  21454. {
  21455. name: "Macro",
  21456. height: math.unit(30, "meters"),
  21457. default: true
  21458. },
  21459. ]
  21460. ))
  21461. characterMakers.push(() => makeCharacter(
  21462. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21463. {
  21464. front: {
  21465. height: math.unit(6, "feet"),
  21466. weight: math.unit(180, "lb"),
  21467. name: "Front",
  21468. image: {
  21469. source: "./media/characters/arokh-sieyes/front.svg",
  21470. extra: 1830 / 1769,
  21471. bottom: 0.01
  21472. }
  21473. },
  21474. },
  21475. [
  21476. {
  21477. name: "Normal",
  21478. height: math.unit(6, "feet")
  21479. },
  21480. {
  21481. name: "Macro",
  21482. height: math.unit(30, "meters"),
  21483. default: true
  21484. },
  21485. ]
  21486. ))
  21487. characterMakers.push(() => makeCharacter(
  21488. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  21489. {
  21490. side: {
  21491. height: math.unit(13 + 1 / 12, "feet"),
  21492. weight: math.unit(8.5, "tonnes"),
  21493. preyCapacity: math.unit(36, "people"),
  21494. name: "Side",
  21495. image: {
  21496. source: "./media/characters/goldeneye/side.svg",
  21497. extra: 1139/741,
  21498. bottom: 98/1237
  21499. }
  21500. },
  21501. front: {
  21502. height: math.unit(5.1, "feet"),
  21503. weight: math.unit(8.5, "tonnes"),
  21504. preyCapacity: math.unit(36, "people"),
  21505. name: "Front",
  21506. image: {
  21507. source: "./media/characters/goldeneye/front.svg",
  21508. extra: 635/365,
  21509. bottom: 598/1233
  21510. }
  21511. },
  21512. maw: {
  21513. height: math.unit(6.6, "feet"),
  21514. name: "Maw",
  21515. image: {
  21516. source: "./media/characters/goldeneye/maw.svg"
  21517. }
  21518. },
  21519. headFront: {
  21520. height: math.unit(8, "feet"),
  21521. name: "Head (Front)",
  21522. image: {
  21523. source: "./media/characters/goldeneye/head-front.svg"
  21524. }
  21525. },
  21526. headSide: {
  21527. height: math.unit(6, "feet"),
  21528. name: "Head (Side)",
  21529. image: {
  21530. source: "./media/characters/goldeneye/head-side.svg"
  21531. }
  21532. },
  21533. headBack: {
  21534. height: math.unit(8, "feet"),
  21535. name: "Head (Back)",
  21536. image: {
  21537. source: "./media/characters/goldeneye/head-back.svg"
  21538. }
  21539. },
  21540. paw: {
  21541. height: math.unit(3.4, "feet"),
  21542. name: "Paw",
  21543. image: {
  21544. source: "./media/characters/goldeneye/paw.svg"
  21545. }
  21546. },
  21547. toering: {
  21548. height: math.unit(0.45, "feet"),
  21549. name: "Toering",
  21550. image: {
  21551. source: "./media/characters/goldeneye/toering.svg"
  21552. }
  21553. },
  21554. eyes: {
  21555. height: math.unit(0.5, "feet"),
  21556. name: "Eyes",
  21557. image: {
  21558. source: "./media/characters/goldeneye/eyes.svg"
  21559. }
  21560. },
  21561. },
  21562. [
  21563. {
  21564. name: "Normal",
  21565. height: math.unit(13 + 1 / 12, "feet"),
  21566. default: true
  21567. },
  21568. ]
  21569. ))
  21570. characterMakers.push(() => makeCharacter(
  21571. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21572. {
  21573. front: {
  21574. height: math.unit(6 + 1 / 12, "feet"),
  21575. weight: math.unit(210, "lb"),
  21576. name: "Front",
  21577. image: {
  21578. source: "./media/characters/leonardo-lycheborne/front.svg",
  21579. extra: 776/723,
  21580. bottom: 34/810
  21581. }
  21582. },
  21583. side: {
  21584. height: math.unit(6 + 1 / 12, "feet"),
  21585. weight: math.unit(210, "lb"),
  21586. name: "Side",
  21587. image: {
  21588. source: "./media/characters/leonardo-lycheborne/side.svg",
  21589. extra: 780/728,
  21590. bottom: 12/792
  21591. }
  21592. },
  21593. back: {
  21594. height: math.unit(6 + 1 / 12, "feet"),
  21595. weight: math.unit(210, "lb"),
  21596. name: "Back",
  21597. image: {
  21598. source: "./media/characters/leonardo-lycheborne/back.svg",
  21599. extra: 775/721,
  21600. bottom: 17/792
  21601. }
  21602. },
  21603. hand: {
  21604. height: math.unit(1.08, "feet"),
  21605. name: "Hand",
  21606. image: {
  21607. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21608. }
  21609. },
  21610. foot: {
  21611. height: math.unit(1.32, "feet"),
  21612. name: "Foot",
  21613. image: {
  21614. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21615. }
  21616. },
  21617. maw: {
  21618. height: math.unit(1, "feet"),
  21619. name: "Maw",
  21620. image: {
  21621. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21622. }
  21623. },
  21624. were: {
  21625. height: math.unit(20, "feet"),
  21626. weight: math.unit(7800, "lb"),
  21627. name: "Were",
  21628. image: {
  21629. source: "./media/characters/leonardo-lycheborne/were.svg",
  21630. extra: 1224/1165,
  21631. bottom: 72/1296
  21632. }
  21633. },
  21634. feral: {
  21635. height: math.unit(7.5, "feet"),
  21636. weight: math.unit(600, "lb"),
  21637. name: "Feral",
  21638. image: {
  21639. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21640. extra: 797/702,
  21641. bottom: 139/936
  21642. }
  21643. },
  21644. taur: {
  21645. height: math.unit(11, "feet"),
  21646. weight: math.unit(3300, "lb"),
  21647. name: "Taur",
  21648. image: {
  21649. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21650. extra: 1271/1197,
  21651. bottom: 47/1318
  21652. }
  21653. },
  21654. barghest: {
  21655. height: math.unit(11, "feet"),
  21656. weight: math.unit(1300, "lb"),
  21657. name: "Barghest",
  21658. image: {
  21659. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21660. extra: 1291/1204,
  21661. bottom: 37/1328
  21662. }
  21663. },
  21664. dick: {
  21665. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21666. name: "Dick",
  21667. image: {
  21668. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21669. }
  21670. },
  21671. dickWere: {
  21672. height: math.unit((20) / 3.8, "feet"),
  21673. name: "Dick (Were)",
  21674. image: {
  21675. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21676. }
  21677. },
  21678. },
  21679. [
  21680. {
  21681. name: "Normal",
  21682. height: math.unit(6 + 1 / 12, "feet"),
  21683. default: true
  21684. },
  21685. ]
  21686. ))
  21687. characterMakers.push(() => makeCharacter(
  21688. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21689. {
  21690. front: {
  21691. height: math.unit(10, "feet"),
  21692. weight: math.unit(350, "lb"),
  21693. name: "Front",
  21694. image: {
  21695. source: "./media/characters/jet/front.svg",
  21696. extra: 2050 / 1980,
  21697. bottom: 0.013
  21698. }
  21699. },
  21700. back: {
  21701. height: math.unit(10, "feet"),
  21702. weight: math.unit(350, "lb"),
  21703. name: "Back",
  21704. image: {
  21705. source: "./media/characters/jet/back.svg",
  21706. extra: 2050 / 1980,
  21707. bottom: 0.013
  21708. }
  21709. },
  21710. },
  21711. [
  21712. {
  21713. name: "Micro",
  21714. height: math.unit(6, "inches")
  21715. },
  21716. {
  21717. name: "Normal",
  21718. height: math.unit(10, "feet"),
  21719. default: true
  21720. },
  21721. {
  21722. name: "Macro",
  21723. height: math.unit(100, "feet")
  21724. },
  21725. ]
  21726. ))
  21727. characterMakers.push(() => makeCharacter(
  21728. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21729. {
  21730. front: {
  21731. height: math.unit(15, "feet"),
  21732. weight: math.unit(2800, "lb"),
  21733. name: "Front",
  21734. image: {
  21735. source: "./media/characters/tanarath/front.svg",
  21736. extra: 2392 / 2220,
  21737. bottom: 0.03
  21738. }
  21739. },
  21740. back: {
  21741. height: math.unit(15, "feet"),
  21742. weight: math.unit(2800, "lb"),
  21743. name: "Back",
  21744. image: {
  21745. source: "./media/characters/tanarath/back.svg",
  21746. extra: 2392 / 2220,
  21747. bottom: 0.03
  21748. }
  21749. },
  21750. },
  21751. [
  21752. {
  21753. name: "Normal",
  21754. height: math.unit(15, "feet"),
  21755. default: true
  21756. },
  21757. ]
  21758. ))
  21759. characterMakers.push(() => makeCharacter(
  21760. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21761. {
  21762. front: {
  21763. height: math.unit(7 + 1 / 12, "feet"),
  21764. weight: math.unit(175, "lb"),
  21765. name: "Front",
  21766. image: {
  21767. source: "./media/characters/patty-cattybatty/front.svg",
  21768. extra: 908 / 874,
  21769. bottom: 0.025
  21770. }
  21771. },
  21772. },
  21773. [
  21774. {
  21775. name: "Micro",
  21776. height: math.unit(1, "inch")
  21777. },
  21778. {
  21779. name: "Normal",
  21780. height: math.unit(7 + 1 / 12, "feet")
  21781. },
  21782. {
  21783. name: "Mini Macro",
  21784. height: math.unit(155, "feet")
  21785. },
  21786. {
  21787. name: "Macro",
  21788. height: math.unit(1077, "feet")
  21789. },
  21790. {
  21791. name: "Mega Macro",
  21792. height: math.unit(47650, "feet"),
  21793. default: true
  21794. },
  21795. {
  21796. name: "Giga Macro",
  21797. height: math.unit(440, "miles")
  21798. },
  21799. {
  21800. name: "Tera Macro",
  21801. height: math.unit(8700, "miles")
  21802. },
  21803. {
  21804. name: "Planetary Macro",
  21805. height: math.unit(32700, "miles")
  21806. },
  21807. {
  21808. name: "Solar Macro",
  21809. height: math.unit(550000, "miles")
  21810. },
  21811. {
  21812. name: "Celestial Macro",
  21813. height: math.unit(2.5, "AU")
  21814. },
  21815. ]
  21816. ))
  21817. characterMakers.push(() => makeCharacter(
  21818. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21819. {
  21820. front: {
  21821. height: math.unit(4 + 5 / 12, "feet"),
  21822. weight: math.unit(90, "lb"),
  21823. name: "Front",
  21824. image: {
  21825. source: "./media/characters/cappu/front.svg",
  21826. extra: 1247 / 1152,
  21827. bottom: 0.012
  21828. }
  21829. },
  21830. },
  21831. [
  21832. {
  21833. name: "Normal",
  21834. height: math.unit(4 + 5 / 12, "feet"),
  21835. default: true
  21836. },
  21837. ]
  21838. ))
  21839. characterMakers.push(() => makeCharacter(
  21840. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21841. {
  21842. frontDressed: {
  21843. height: math.unit(70, "cm"),
  21844. weight: math.unit(6, "kg"),
  21845. name: "Front (Dressed)",
  21846. image: {
  21847. source: "./media/characters/sebi/front-dressed.svg",
  21848. extra: 713.5 / 686.5,
  21849. bottom: 0.003
  21850. }
  21851. },
  21852. front: {
  21853. height: math.unit(70, "cm"),
  21854. weight: math.unit(5, "kg"),
  21855. name: "Front",
  21856. image: {
  21857. source: "./media/characters/sebi/front.svg",
  21858. extra: 713.5 / 686.5,
  21859. bottom: 0.003
  21860. }
  21861. }
  21862. },
  21863. [
  21864. {
  21865. name: "Normal",
  21866. height: math.unit(70, "cm"),
  21867. default: true
  21868. },
  21869. {
  21870. name: "Macro",
  21871. height: math.unit(8, "meters")
  21872. },
  21873. ]
  21874. ))
  21875. characterMakers.push(() => makeCharacter(
  21876. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21877. {
  21878. front: {
  21879. height: math.unit(6, "feet"),
  21880. weight: math.unit(150, "lb"),
  21881. name: "Front",
  21882. image: {
  21883. source: "./media/characters/typhek/front.svg",
  21884. extra: 1948 / 1929,
  21885. bottom: 0.025
  21886. }
  21887. },
  21888. side: {
  21889. height: math.unit(6, "feet"),
  21890. weight: math.unit(150, "lb"),
  21891. name: "Side",
  21892. image: {
  21893. source: "./media/characters/typhek/side.svg",
  21894. extra: 2034 / 2010,
  21895. bottom: 0.003
  21896. }
  21897. },
  21898. back: {
  21899. height: math.unit(6, "feet"),
  21900. weight: math.unit(150, "lb"),
  21901. name: "Back",
  21902. image: {
  21903. source: "./media/characters/typhek/back.svg",
  21904. extra: 2005 / 1978,
  21905. bottom: 0.004
  21906. }
  21907. },
  21908. palm: {
  21909. height: math.unit(1.2, "feet"),
  21910. name: "Palm",
  21911. image: {
  21912. source: "./media/characters/typhek/palm.svg"
  21913. }
  21914. },
  21915. fist: {
  21916. height: math.unit(1.1, "feet"),
  21917. name: "Fist",
  21918. image: {
  21919. source: "./media/characters/typhek/fist.svg"
  21920. }
  21921. },
  21922. foot: {
  21923. height: math.unit(1.57, "feet"),
  21924. name: "Foot",
  21925. image: {
  21926. source: "./media/characters/typhek/foot.svg"
  21927. }
  21928. },
  21929. sole: {
  21930. height: math.unit(2.05, "feet"),
  21931. name: "Sole",
  21932. image: {
  21933. source: "./media/characters/typhek/sole.svg"
  21934. }
  21935. },
  21936. },
  21937. [
  21938. {
  21939. name: "Macro",
  21940. height: math.unit(40, "stories"),
  21941. default: true
  21942. },
  21943. {
  21944. name: "Megamacro",
  21945. height: math.unit(1, "mile")
  21946. },
  21947. {
  21948. name: "Gigamacro",
  21949. height: math.unit(4000, "solarradii")
  21950. },
  21951. {
  21952. name: "Universal",
  21953. height: math.unit(1.1, "universes")
  21954. }
  21955. ]
  21956. ))
  21957. characterMakers.push(() => makeCharacter(
  21958. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21959. {
  21960. side: {
  21961. height: math.unit(5 + 7 / 12, "feet"),
  21962. weight: math.unit(150, "lb"),
  21963. name: "Side",
  21964. image: {
  21965. source: "./media/characters/kassy/side.svg",
  21966. extra: 1280 / 1225,
  21967. bottom: 0.002
  21968. }
  21969. },
  21970. front: {
  21971. height: math.unit(5 + 7 / 12, "feet"),
  21972. weight: math.unit(150, "lb"),
  21973. name: "Front",
  21974. image: {
  21975. source: "./media/characters/kassy/front.svg",
  21976. extra: 1280 / 1225,
  21977. bottom: 0.025
  21978. }
  21979. },
  21980. back: {
  21981. height: math.unit(5 + 7 / 12, "feet"),
  21982. weight: math.unit(150, "lb"),
  21983. name: "Back",
  21984. image: {
  21985. source: "./media/characters/kassy/back.svg",
  21986. extra: 1280 / 1225,
  21987. bottom: 0.002
  21988. }
  21989. },
  21990. foot: {
  21991. height: math.unit(1.266, "feet"),
  21992. name: "Foot",
  21993. image: {
  21994. source: "./media/characters/kassy/foot.svg"
  21995. }
  21996. },
  21997. },
  21998. [
  21999. {
  22000. name: "Normal",
  22001. height: math.unit(5 + 7 / 12, "feet")
  22002. },
  22003. {
  22004. name: "Macro",
  22005. height: math.unit(137, "feet"),
  22006. default: true
  22007. },
  22008. {
  22009. name: "Megamacro",
  22010. height: math.unit(1, "mile")
  22011. },
  22012. ]
  22013. ))
  22014. characterMakers.push(() => makeCharacter(
  22015. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  22016. {
  22017. front: {
  22018. height: math.unit(6 + 1 / 12, "feet"),
  22019. weight: math.unit(200, "lb"),
  22020. name: "Front",
  22021. image: {
  22022. source: "./media/characters/neil/front.svg",
  22023. extra: 1326 / 1250,
  22024. bottom: 0.023
  22025. }
  22026. },
  22027. },
  22028. [
  22029. {
  22030. name: "Normal",
  22031. height: math.unit(6 + 1 / 12, "feet"),
  22032. default: true
  22033. },
  22034. {
  22035. name: "Macro",
  22036. height: math.unit(200, "feet")
  22037. },
  22038. ]
  22039. ))
  22040. characterMakers.push(() => makeCharacter(
  22041. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  22042. {
  22043. front: {
  22044. height: math.unit(5 + 9 / 12, "feet"),
  22045. weight: math.unit(190, "lb"),
  22046. name: "Front",
  22047. image: {
  22048. source: "./media/characters/atticus/front.svg",
  22049. extra: 2934 / 2785,
  22050. bottom: 0.025
  22051. }
  22052. },
  22053. },
  22054. [
  22055. {
  22056. name: "Normal",
  22057. height: math.unit(5 + 9 / 12, "feet"),
  22058. default: true
  22059. },
  22060. {
  22061. name: "Macro",
  22062. height: math.unit(180, "feet")
  22063. },
  22064. ]
  22065. ))
  22066. characterMakers.push(() => makeCharacter(
  22067. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  22068. {
  22069. side: {
  22070. height: math.unit(9, "feet"),
  22071. weight: math.unit(650, "lb"),
  22072. name: "Side",
  22073. image: {
  22074. source: "./media/characters/milo/side.svg",
  22075. extra: 2644 / 2310,
  22076. bottom: 0.032
  22077. }
  22078. },
  22079. },
  22080. [
  22081. {
  22082. name: "Normal",
  22083. height: math.unit(9, "feet"),
  22084. default: true
  22085. },
  22086. {
  22087. name: "Macro",
  22088. height: math.unit(300, "feet")
  22089. },
  22090. ]
  22091. ))
  22092. characterMakers.push(() => makeCharacter(
  22093. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  22094. {
  22095. side: {
  22096. height: math.unit(8, "meters"),
  22097. weight: math.unit(90000, "kg"),
  22098. name: "Side",
  22099. image: {
  22100. source: "./media/characters/ijzer/side.svg",
  22101. extra: 2756 / 1600,
  22102. bottom: 0.01
  22103. }
  22104. },
  22105. },
  22106. [
  22107. {
  22108. name: "Small",
  22109. height: math.unit(3, "meters")
  22110. },
  22111. {
  22112. name: "Normal",
  22113. height: math.unit(8, "meters"),
  22114. default: true
  22115. },
  22116. {
  22117. name: "Normal+",
  22118. height: math.unit(10, "meters")
  22119. },
  22120. {
  22121. name: "Bigger",
  22122. height: math.unit(24, "meters")
  22123. },
  22124. {
  22125. name: "Huge",
  22126. height: math.unit(80, "meters")
  22127. },
  22128. ]
  22129. ))
  22130. characterMakers.push(() => makeCharacter(
  22131. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  22132. {
  22133. front: {
  22134. height: math.unit(6 + 2 / 12, "feet"),
  22135. weight: math.unit(153, "lb"),
  22136. name: "Front",
  22137. image: {
  22138. source: "./media/characters/luca-cervicum/front.svg",
  22139. extra: 370 / 327,
  22140. bottom: 0.015
  22141. }
  22142. },
  22143. back: {
  22144. height: math.unit(6 + 2 / 12, "feet"),
  22145. weight: math.unit(153, "lb"),
  22146. name: "Back",
  22147. image: {
  22148. source: "./media/characters/luca-cervicum/back.svg",
  22149. extra: 367 / 333,
  22150. bottom: 0.005
  22151. }
  22152. },
  22153. frontGear: {
  22154. height: math.unit(6 + 2 / 12, "feet"),
  22155. weight: math.unit(173, "lb"),
  22156. name: "Front (Gear)",
  22157. image: {
  22158. source: "./media/characters/luca-cervicum/front-gear.svg",
  22159. extra: 377 / 333,
  22160. bottom: 0.006
  22161. }
  22162. },
  22163. },
  22164. [
  22165. {
  22166. name: "Normal",
  22167. height: math.unit(6 + 2 / 12, "feet"),
  22168. default: true
  22169. },
  22170. ]
  22171. ))
  22172. characterMakers.push(() => makeCharacter(
  22173. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  22174. {
  22175. front: {
  22176. height: math.unit(6 + 1 / 12, "feet"),
  22177. weight: math.unit(304, "lb"),
  22178. name: "Front",
  22179. image: {
  22180. source: "./media/characters/oliver/front.svg",
  22181. extra: 157 / 143,
  22182. bottom: 0.08
  22183. }
  22184. },
  22185. },
  22186. [
  22187. {
  22188. name: "Normal",
  22189. height: math.unit(6 + 1 / 12, "feet"),
  22190. default: true
  22191. },
  22192. ]
  22193. ))
  22194. characterMakers.push(() => makeCharacter(
  22195. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  22196. {
  22197. front: {
  22198. height: math.unit(5 + 7 / 12, "feet"),
  22199. weight: math.unit(140, "lb"),
  22200. name: "Front",
  22201. image: {
  22202. source: "./media/characters/shane/front.svg",
  22203. extra: 304 / 289,
  22204. bottom: 0.005
  22205. }
  22206. },
  22207. },
  22208. [
  22209. {
  22210. name: "Normal",
  22211. height: math.unit(5 + 7 / 12, "feet"),
  22212. default: true
  22213. },
  22214. ]
  22215. ))
  22216. characterMakers.push(() => makeCharacter(
  22217. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  22218. {
  22219. front: {
  22220. height: math.unit(5 + 9 / 12, "feet"),
  22221. weight: math.unit(178, "lb"),
  22222. name: "Front",
  22223. image: {
  22224. source: "./media/characters/shin/front.svg",
  22225. extra: 159 / 151,
  22226. bottom: 0.015
  22227. }
  22228. },
  22229. },
  22230. [
  22231. {
  22232. name: "Normal",
  22233. height: math.unit(5 + 9 / 12, "feet"),
  22234. default: true
  22235. },
  22236. ]
  22237. ))
  22238. characterMakers.push(() => makeCharacter(
  22239. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  22240. {
  22241. front: {
  22242. height: math.unit(5 + 10 / 12, "feet"),
  22243. weight: math.unit(168, "lb"),
  22244. name: "Front",
  22245. image: {
  22246. source: "./media/characters/xerxes/front.svg",
  22247. extra: 282 / 260,
  22248. bottom: 0.045
  22249. }
  22250. },
  22251. },
  22252. [
  22253. {
  22254. name: "Normal",
  22255. height: math.unit(5 + 10 / 12, "feet"),
  22256. default: true
  22257. },
  22258. ]
  22259. ))
  22260. characterMakers.push(() => makeCharacter(
  22261. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  22262. {
  22263. front: {
  22264. height: math.unit(6 + 7 / 12, "feet"),
  22265. weight: math.unit(208, "lb"),
  22266. name: "Front",
  22267. image: {
  22268. source: "./media/characters/chaska/front.svg",
  22269. extra: 332 / 319,
  22270. bottom: 0.015
  22271. }
  22272. },
  22273. },
  22274. [
  22275. {
  22276. name: "Normal",
  22277. height: math.unit(6 + 7 / 12, "feet"),
  22278. default: true
  22279. },
  22280. ]
  22281. ))
  22282. characterMakers.push(() => makeCharacter(
  22283. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  22284. {
  22285. front: {
  22286. height: math.unit(5 + 8 / 12, "feet"),
  22287. weight: math.unit(208, "lb"),
  22288. name: "Front",
  22289. image: {
  22290. source: "./media/characters/enuk/front.svg",
  22291. extra: 437 / 406,
  22292. bottom: 0.02
  22293. }
  22294. },
  22295. },
  22296. [
  22297. {
  22298. name: "Normal",
  22299. height: math.unit(5 + 8 / 12, "feet"),
  22300. default: true
  22301. },
  22302. ]
  22303. ))
  22304. characterMakers.push(() => makeCharacter(
  22305. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  22306. {
  22307. front: {
  22308. height: math.unit(5 + 10 / 12, "feet"),
  22309. weight: math.unit(252, "lb"),
  22310. name: "Front",
  22311. image: {
  22312. source: "./media/characters/bruun/front.svg",
  22313. extra: 197 / 187,
  22314. bottom: 0.012
  22315. }
  22316. },
  22317. },
  22318. [
  22319. {
  22320. name: "Normal",
  22321. height: math.unit(5 + 10 / 12, "feet"),
  22322. default: true
  22323. },
  22324. ]
  22325. ))
  22326. characterMakers.push(() => makeCharacter(
  22327. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  22328. {
  22329. front: {
  22330. height: math.unit(6 + 10 / 12, "feet"),
  22331. weight: math.unit(255, "lb"),
  22332. name: "Front",
  22333. image: {
  22334. source: "./media/characters/alexeev/front.svg",
  22335. extra: 213 / 200,
  22336. bottom: 0.05
  22337. }
  22338. },
  22339. },
  22340. [
  22341. {
  22342. name: "Normal",
  22343. height: math.unit(6 + 10 / 12, "feet"),
  22344. default: true
  22345. },
  22346. ]
  22347. ))
  22348. characterMakers.push(() => makeCharacter(
  22349. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  22350. {
  22351. front: {
  22352. height: math.unit(2 + 8 / 12, "feet"),
  22353. weight: math.unit(22, "lb"),
  22354. name: "Front",
  22355. image: {
  22356. source: "./media/characters/evelyn/front.svg",
  22357. extra: 208 / 180
  22358. }
  22359. },
  22360. },
  22361. [
  22362. {
  22363. name: "Normal",
  22364. height: math.unit(2 + 8 / 12, "feet"),
  22365. default: true
  22366. },
  22367. ]
  22368. ))
  22369. characterMakers.push(() => makeCharacter(
  22370. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  22371. {
  22372. front: {
  22373. height: math.unit(5 + 9 / 12, "feet"),
  22374. weight: math.unit(139, "lb"),
  22375. name: "Front",
  22376. image: {
  22377. source: "./media/characters/inca/front.svg",
  22378. extra: 294 / 291,
  22379. bottom: 0.03
  22380. }
  22381. },
  22382. },
  22383. [
  22384. {
  22385. name: "Normal",
  22386. height: math.unit(5 + 9 / 12, "feet"),
  22387. default: true
  22388. },
  22389. ]
  22390. ))
  22391. characterMakers.push(() => makeCharacter(
  22392. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  22393. {
  22394. front: {
  22395. height: math.unit(6 + 3 / 12, "feet"),
  22396. weight: math.unit(185, "lb"),
  22397. name: "Front",
  22398. image: {
  22399. source: "./media/characters/mera/front.svg",
  22400. extra: 291 / 277,
  22401. bottom: 0.03
  22402. }
  22403. },
  22404. },
  22405. [
  22406. {
  22407. name: "Normal",
  22408. height: math.unit(6 + 3 / 12, "feet"),
  22409. default: true
  22410. },
  22411. ]
  22412. ))
  22413. characterMakers.push(() => makeCharacter(
  22414. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  22415. {
  22416. front: {
  22417. height: math.unit(6 + 7 / 12, "feet"),
  22418. weight: math.unit(160, "lb"),
  22419. name: "Front",
  22420. image: {
  22421. source: "./media/characters/ceres/front.svg",
  22422. extra: 1023 / 950,
  22423. bottom: 0.027
  22424. }
  22425. },
  22426. back: {
  22427. height: math.unit(6 + 7 / 12, "feet"),
  22428. weight: math.unit(160, "lb"),
  22429. name: "Back",
  22430. image: {
  22431. source: "./media/characters/ceres/back.svg",
  22432. extra: 1023 / 950
  22433. }
  22434. },
  22435. },
  22436. [
  22437. {
  22438. name: "Normal",
  22439. height: math.unit(6 + 7 / 12, "feet"),
  22440. default: true
  22441. },
  22442. ]
  22443. ))
  22444. characterMakers.push(() => makeCharacter(
  22445. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  22446. {
  22447. front: {
  22448. height: math.unit(5 + 10 / 12, "feet"),
  22449. weight: math.unit(150, "lb"),
  22450. name: "Front",
  22451. image: {
  22452. source: "./media/characters/kris/front.svg",
  22453. extra: 885 / 803,
  22454. bottom: 0.03
  22455. }
  22456. },
  22457. },
  22458. [
  22459. {
  22460. name: "Normal",
  22461. height: math.unit(5 + 10 / 12, "feet"),
  22462. default: true
  22463. },
  22464. ]
  22465. ))
  22466. characterMakers.push(() => makeCharacter(
  22467. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  22468. {
  22469. dragon_front: {
  22470. height: math.unit(5, "feet"),
  22471. name: "Front",
  22472. image: {
  22473. source: "./media/characters/taluthus/dragon-front.svg",
  22474. extra: 1203/1098,
  22475. bottom: 46/1249
  22476. },
  22477. form: "dragon",
  22478. default: true
  22479. },
  22480. dragon_maw: {
  22481. height: math.unit(2.35, "feet"),
  22482. name: "Maw",
  22483. image: {
  22484. source: "./media/characters/taluthus/dragon-maw.svg"
  22485. },
  22486. form: "dragon",
  22487. },
  22488. kitsune_front: {
  22489. height: math.unit(7, "feet"),
  22490. name: "Front",
  22491. image: {
  22492. source: "./media/characters/taluthus/kitsune-front.svg",
  22493. extra: 900/841,
  22494. bottom: 65/965
  22495. },
  22496. form: "kitsune",
  22497. default: true
  22498. },
  22499. },
  22500. [
  22501. {
  22502. name: "Normal",
  22503. height: math.unit(5, "feet"),
  22504. form: "dragon",
  22505. default: true,
  22506. },
  22507. {
  22508. name: "Normal",
  22509. height: math.unit(7, "feet"),
  22510. form: "kitsune",
  22511. default: true
  22512. },
  22513. {
  22514. name: "Macro",
  22515. height: math.unit(300, "feet"),
  22516. allForms: true
  22517. },
  22518. ],
  22519. {
  22520. "dragon": {
  22521. name: "Dragon",
  22522. default: true
  22523. },
  22524. "kitsune": {
  22525. name: "Kitsune",
  22526. },
  22527. }
  22528. ))
  22529. characterMakers.push(() => makeCharacter(
  22530. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22531. {
  22532. front: {
  22533. height: math.unit(5 + 9 / 12, "feet"),
  22534. weight: math.unit(145, "lb"),
  22535. name: "Front",
  22536. image: {
  22537. source: "./media/characters/dawn/front.svg",
  22538. extra: 2094 / 2016,
  22539. bottom: 0.025
  22540. }
  22541. },
  22542. back: {
  22543. height: math.unit(5 + 9 / 12, "feet"),
  22544. weight: math.unit(160, "lb"),
  22545. name: "Back",
  22546. image: {
  22547. source: "./media/characters/dawn/back.svg",
  22548. extra: 2112 / 2080,
  22549. bottom: 0.005
  22550. }
  22551. },
  22552. },
  22553. [
  22554. {
  22555. name: "Normal",
  22556. height: math.unit(6 + 7 / 12, "feet"),
  22557. default: true
  22558. },
  22559. ]
  22560. ))
  22561. characterMakers.push(() => makeCharacter(
  22562. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22563. {
  22564. anthro: {
  22565. height: math.unit(8 + 3 / 12, "feet"),
  22566. weight: math.unit(450, "lb"),
  22567. name: "Anthro",
  22568. image: {
  22569. source: "./media/characters/arador/anthro.svg",
  22570. extra: 1835 / 1718,
  22571. bottom: 0.025
  22572. }
  22573. },
  22574. feral: {
  22575. height: math.unit(4, "feet"),
  22576. weight: math.unit(200, "lb"),
  22577. name: "Feral",
  22578. image: {
  22579. source: "./media/characters/arador/feral.svg",
  22580. extra: 1683 / 1514,
  22581. bottom: 0.07
  22582. }
  22583. },
  22584. },
  22585. [
  22586. {
  22587. name: "Normal",
  22588. height: math.unit(8 + 3 / 12, "feet")
  22589. },
  22590. {
  22591. name: "Macro",
  22592. height: math.unit(82.5, "feet"),
  22593. default: true
  22594. },
  22595. ]
  22596. ))
  22597. characterMakers.push(() => makeCharacter(
  22598. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22599. {
  22600. front: {
  22601. height: math.unit(5 + 10 / 12, "feet"),
  22602. weight: math.unit(125, "lb"),
  22603. name: "Front",
  22604. image: {
  22605. source: "./media/characters/dharsi/front.svg",
  22606. extra: 716 / 630,
  22607. bottom: 0.035
  22608. }
  22609. },
  22610. },
  22611. [
  22612. {
  22613. name: "Nano",
  22614. height: math.unit(100, "nm")
  22615. },
  22616. {
  22617. name: "Micro",
  22618. height: math.unit(2, "inches")
  22619. },
  22620. {
  22621. name: "Normal",
  22622. height: math.unit(5 + 10 / 12, "feet"),
  22623. default: true
  22624. },
  22625. {
  22626. name: "Macro",
  22627. height: math.unit(1000, "feet")
  22628. },
  22629. {
  22630. name: "Megamacro",
  22631. height: math.unit(10, "miles")
  22632. },
  22633. {
  22634. name: "Gigamacro",
  22635. height: math.unit(3000, "miles")
  22636. },
  22637. {
  22638. name: "Teramacro",
  22639. height: math.unit(500000, "miles")
  22640. },
  22641. {
  22642. name: "Teramacro+",
  22643. height: math.unit(30, "galaxies")
  22644. },
  22645. ]
  22646. ))
  22647. characterMakers.push(() => makeCharacter(
  22648. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22649. {
  22650. front: {
  22651. height: math.unit(6, "feet"),
  22652. weight: math.unit(150, "lb"),
  22653. name: "Front",
  22654. image: {
  22655. source: "./media/characters/deathy/front.svg",
  22656. extra: 1552 / 1463,
  22657. bottom: 0.025
  22658. }
  22659. },
  22660. side: {
  22661. height: math.unit(6, "feet"),
  22662. weight: math.unit(150, "lb"),
  22663. name: "Side",
  22664. image: {
  22665. source: "./media/characters/deathy/side.svg",
  22666. extra: 1604 / 1455,
  22667. bottom: 0.025
  22668. }
  22669. },
  22670. back: {
  22671. height: math.unit(6, "feet"),
  22672. weight: math.unit(150, "lb"),
  22673. name: "Back",
  22674. image: {
  22675. source: "./media/characters/deathy/back.svg",
  22676. extra: 1580 / 1463,
  22677. bottom: 0.005
  22678. }
  22679. },
  22680. },
  22681. [
  22682. {
  22683. name: "Micro",
  22684. height: math.unit(5, "millimeters")
  22685. },
  22686. {
  22687. name: "Normal",
  22688. height: math.unit(6 + 5 / 12, "feet"),
  22689. default: true
  22690. },
  22691. ]
  22692. ))
  22693. characterMakers.push(() => makeCharacter(
  22694. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22695. {
  22696. front: {
  22697. height: math.unit(16, "feet"),
  22698. weight: math.unit(4000, "lb"),
  22699. name: "Front",
  22700. image: {
  22701. source: "./media/characters/juniper/front.svg",
  22702. bottom: 0.04
  22703. }
  22704. },
  22705. },
  22706. [
  22707. {
  22708. name: "Normal",
  22709. height: math.unit(16, "feet"),
  22710. default: true
  22711. },
  22712. ]
  22713. ))
  22714. characterMakers.push(() => makeCharacter(
  22715. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22716. {
  22717. front: {
  22718. height: math.unit(6, "feet"),
  22719. weight: math.unit(150, "lb"),
  22720. name: "Front",
  22721. image: {
  22722. source: "./media/characters/hipster/front.svg",
  22723. extra: 1312 / 1209,
  22724. bottom: 0.025
  22725. }
  22726. },
  22727. back: {
  22728. height: math.unit(6, "feet"),
  22729. weight: math.unit(150, "lb"),
  22730. name: "Back",
  22731. image: {
  22732. source: "./media/characters/hipster/back.svg",
  22733. extra: 1281 / 1196,
  22734. bottom: 0.01
  22735. }
  22736. },
  22737. },
  22738. [
  22739. {
  22740. name: "Micro",
  22741. height: math.unit(1, "mm")
  22742. },
  22743. {
  22744. name: "Normal",
  22745. height: math.unit(4, "inches"),
  22746. default: true
  22747. },
  22748. {
  22749. name: "Macro",
  22750. height: math.unit(500, "feet")
  22751. },
  22752. {
  22753. name: "Megamacro",
  22754. height: math.unit(1000, "miles")
  22755. },
  22756. ]
  22757. ))
  22758. characterMakers.push(() => makeCharacter(
  22759. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22760. {
  22761. front: {
  22762. height: math.unit(6, "feet"),
  22763. weight: math.unit(150, "lb"),
  22764. name: "Front",
  22765. image: {
  22766. source: "./media/characters/tendirmuldr/front.svg",
  22767. extra: 1878 / 1772,
  22768. bottom: 0.015
  22769. }
  22770. },
  22771. },
  22772. [
  22773. {
  22774. name: "Megamacro",
  22775. height: math.unit(1500, "miles"),
  22776. default: true
  22777. },
  22778. ]
  22779. ))
  22780. characterMakers.push(() => makeCharacter(
  22781. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22782. {
  22783. front: {
  22784. height: math.unit(14, "feet"),
  22785. weight: math.unit(12000, "lb"),
  22786. name: "Front",
  22787. image: {
  22788. source: "./media/characters/mort/front.svg",
  22789. extra: 365 / 318,
  22790. bottom: 0.01
  22791. }
  22792. },
  22793. side: {
  22794. height: math.unit(14, "feet"),
  22795. weight: math.unit(12000, "lb"),
  22796. name: "Side",
  22797. image: {
  22798. source: "./media/characters/mort/side.svg",
  22799. extra: 365 / 318,
  22800. bottom: 0.052
  22801. },
  22802. default: true
  22803. },
  22804. back: {
  22805. height: math.unit(14, "feet"),
  22806. weight: math.unit(12000, "lb"),
  22807. name: "Back",
  22808. image: {
  22809. source: "./media/characters/mort/back.svg",
  22810. extra: 371 / 332,
  22811. bottom: 0.18
  22812. }
  22813. },
  22814. },
  22815. [
  22816. {
  22817. name: "Normal",
  22818. height: math.unit(14, "feet"),
  22819. default: true
  22820. },
  22821. ]
  22822. ))
  22823. characterMakers.push(() => makeCharacter(
  22824. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22825. {
  22826. front: {
  22827. height: math.unit(8, "feet"),
  22828. weight: math.unit(1, "ton"),
  22829. name: "Front",
  22830. image: {
  22831. source: "./media/characters/lycoa/front.svg",
  22832. extra: 1836/1728,
  22833. bottom: 81/1917
  22834. }
  22835. },
  22836. back: {
  22837. height: math.unit(8, "feet"),
  22838. weight: math.unit(1, "ton"),
  22839. name: "Back",
  22840. image: {
  22841. source: "./media/characters/lycoa/back.svg",
  22842. extra: 1785/1720,
  22843. bottom: 91/1876
  22844. }
  22845. },
  22846. head: {
  22847. height: math.unit(1.6243, "feet"),
  22848. name: "Head",
  22849. image: {
  22850. source: "./media/characters/lycoa/head.svg",
  22851. extra: 1011/782,
  22852. bottom: 0/1011
  22853. }
  22854. },
  22855. tailmaw: {
  22856. height: math.unit(1.9, "feet"),
  22857. name: "Tailmaw",
  22858. image: {
  22859. source: "./media/characters/lycoa/tailmaw.svg"
  22860. }
  22861. },
  22862. tentacles: {
  22863. height: math.unit(2.1, "feet"),
  22864. name: "Tentacles",
  22865. image: {
  22866. source: "./media/characters/lycoa/tentacles.svg"
  22867. }
  22868. },
  22869. dick: {
  22870. height: math.unit(1.73, "feet"),
  22871. name: "Dick",
  22872. image: {
  22873. source: "./media/characters/lycoa/dick.svg"
  22874. }
  22875. },
  22876. },
  22877. [
  22878. {
  22879. name: "Normal",
  22880. height: math.unit(8, "feet"),
  22881. default: true
  22882. },
  22883. {
  22884. name: "Macro",
  22885. height: math.unit(30, "feet")
  22886. },
  22887. ]
  22888. ))
  22889. characterMakers.push(() => makeCharacter(
  22890. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22891. {
  22892. front: {
  22893. height: math.unit(4 + 2 / 12, "feet"),
  22894. weight: math.unit(70, "lb"),
  22895. name: "Front",
  22896. image: {
  22897. source: "./media/characters/naldara/front.svg",
  22898. extra: 1664/1387,
  22899. bottom: 81/1745
  22900. },
  22901. form: "anthro",
  22902. default: true
  22903. },
  22904. naga: {
  22905. height: math.unit(20, "feet"),
  22906. weight: math.unit(15000, "kg"),
  22907. name: "Front",
  22908. image: {
  22909. source: "./media/characters/naldara/naga.svg",
  22910. extra: 1590/1396,
  22911. bottom: 285/1875
  22912. },
  22913. form: "naga",
  22914. default: true
  22915. },
  22916. },
  22917. [
  22918. {
  22919. name: "Normal",
  22920. height: math.unit(4 + 2 / 12, "feet"),
  22921. form: "anthro",
  22922. default: true
  22923. },
  22924. {
  22925. name: "Normal",
  22926. height: math.unit(20, "feet"),
  22927. form: "naga",
  22928. default: true
  22929. },
  22930. ],
  22931. {
  22932. "anthro": {
  22933. name: "Anthro",
  22934. default: true
  22935. },
  22936. "naga": {
  22937. name: "Naga"
  22938. }
  22939. }
  22940. ))
  22941. characterMakers.push(() => makeCharacter(
  22942. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22943. {
  22944. front: {
  22945. height: math.unit(13 + 7 / 12, "feet"),
  22946. weight: math.unit(1500, "lb"),
  22947. name: "Front",
  22948. image: {
  22949. source: "./media/characters/briar/front.svg",
  22950. extra: 1223/1157,
  22951. bottom: 123/1346
  22952. }
  22953. },
  22954. },
  22955. [
  22956. {
  22957. name: "Normal",
  22958. height: math.unit(13 + 7 / 12, "feet"),
  22959. default: true
  22960. },
  22961. ]
  22962. ))
  22963. characterMakers.push(() => makeCharacter(
  22964. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22965. {
  22966. side: {
  22967. height: math.unit(16, "feet"),
  22968. weight: math.unit(500, "lb"),
  22969. name: "Side",
  22970. image: {
  22971. source: "./media/characters/vanguard/side.svg",
  22972. extra: 1022/914,
  22973. bottom: 30/1052
  22974. }
  22975. },
  22976. sideAlt: {
  22977. height: math.unit(10, "feet"),
  22978. weight: math.unit(500, "lb"),
  22979. name: "Side (Alt)",
  22980. image: {
  22981. source: "./media/characters/vanguard/side-alt.svg",
  22982. extra: 502 / 425,
  22983. bottom: 0.087
  22984. }
  22985. },
  22986. },
  22987. [
  22988. {
  22989. name: "Normal",
  22990. height: math.unit(17.71, "feet"),
  22991. default: true
  22992. },
  22993. ]
  22994. ))
  22995. characterMakers.push(() => makeCharacter(
  22996. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22997. {
  22998. front: {
  22999. height: math.unit(7.5, "feet"),
  23000. weight: math.unit(2, "lb"),
  23001. name: "Front",
  23002. image: {
  23003. source: "./media/characters/artemis/work-safe-front.svg",
  23004. extra: 1192 / 1075,
  23005. bottom: 0.07
  23006. },
  23007. form: "work-safe",
  23008. default: true
  23009. },
  23010. frontNsfw: {
  23011. height: math.unit(7.5, "feet"),
  23012. weight: math.unit(2, "lb"),
  23013. name: "Front",
  23014. image: {
  23015. source: "./media/characters/artemis/calibrating-front.svg",
  23016. extra: 1192 / 1075,
  23017. bottom: 0.07
  23018. },
  23019. form: "calibrating",
  23020. default: true
  23021. },
  23022. frontNsfwer: {
  23023. height: math.unit(7.5, "feet"),
  23024. weight: math.unit(2, "lb"),
  23025. name: "Front",
  23026. image: {
  23027. source: "./media/characters/artemis/oversize-load-front.svg",
  23028. extra: 1192 / 1075,
  23029. bottom: 0.07
  23030. },
  23031. form: "oversize-load",
  23032. default: true
  23033. },
  23034. side: {
  23035. height: math.unit(7.5, "feet"),
  23036. weight: math.unit(2, "lb"),
  23037. name: "Side",
  23038. image: {
  23039. source: "./media/characters/artemis/work-safe-side.svg",
  23040. extra: 1192 / 1075,
  23041. bottom: 0.07
  23042. },
  23043. form: "work-safe"
  23044. },
  23045. sideNsfw: {
  23046. height: math.unit(7.5, "feet"),
  23047. weight: math.unit(2, "lb"),
  23048. name: "Side",
  23049. image: {
  23050. source: "./media/characters/artemis/calibrating-side.svg",
  23051. extra: 1192 / 1075,
  23052. bottom: 0.07
  23053. },
  23054. form: "calibrating"
  23055. },
  23056. sideNsfwer: {
  23057. height: math.unit(7.5, "feet"),
  23058. weight: math.unit(2, "lb"),
  23059. name: "Side",
  23060. image: {
  23061. source: "./media/characters/artemis/oversize-load-side.svg",
  23062. extra: 1192 / 1075,
  23063. bottom: 0.07
  23064. },
  23065. form: "oversize-load"
  23066. },
  23067. maw: {
  23068. height: math.unit(1.1, "feet"),
  23069. name: "Maw",
  23070. image: {
  23071. source: "./media/characters/artemis/maw.svg"
  23072. },
  23073. form: "work-safe"
  23074. },
  23075. stomach: {
  23076. height: math.unit(0.95, "feet"),
  23077. name: "Stomach",
  23078. image: {
  23079. source: "./media/characters/artemis/stomach.svg"
  23080. },
  23081. form: "work-safe"
  23082. },
  23083. dickCanine: {
  23084. height: math.unit(1, "feet"),
  23085. name: "Dick (Canine)",
  23086. image: {
  23087. source: "./media/characters/artemis/dick-canine.svg"
  23088. },
  23089. form: "calibrating"
  23090. },
  23091. dickEquine: {
  23092. height: math.unit(0.85, "feet"),
  23093. name: "Dick (Equine)",
  23094. image: {
  23095. source: "./media/characters/artemis/dick-equine.svg"
  23096. },
  23097. form: "calibrating"
  23098. },
  23099. dickExotic: {
  23100. height: math.unit(0.85, "feet"),
  23101. name: "Dick (Exotic)",
  23102. image: {
  23103. source: "./media/characters/artemis/dick-exotic.svg"
  23104. },
  23105. form: "calibrating"
  23106. },
  23107. dickCanineBigger: {
  23108. height: math.unit(1 * 1.33, "feet"),
  23109. name: "Dick (Canine)",
  23110. image: {
  23111. source: "./media/characters/artemis/dick-canine.svg"
  23112. },
  23113. form: "oversize-load"
  23114. },
  23115. dickEquineBigger: {
  23116. height: math.unit(0.85 * 1.33, "feet"),
  23117. name: "Dick (Equine)",
  23118. image: {
  23119. source: "./media/characters/artemis/dick-equine.svg"
  23120. },
  23121. form: "oversize-load"
  23122. },
  23123. dickExoticBigger: {
  23124. height: math.unit(0.85 * 1.33, "feet"),
  23125. name: "Dick (Exotic)",
  23126. image: {
  23127. source: "./media/characters/artemis/dick-exotic.svg"
  23128. },
  23129. form: "oversize-load"
  23130. },
  23131. },
  23132. [
  23133. {
  23134. name: "Normal",
  23135. height: math.unit(7.5, "feet"),
  23136. form: "work-safe",
  23137. default: true
  23138. },
  23139. {
  23140. name: "Normal",
  23141. height: math.unit(7.5, "feet"),
  23142. form: "calibrating",
  23143. default: true
  23144. },
  23145. {
  23146. name: "Normal",
  23147. height: math.unit(7.5, "feet"),
  23148. form: "oversize-load",
  23149. default: true
  23150. },
  23151. {
  23152. name: "Enlarged",
  23153. height: math.unit(12, "feet"),
  23154. form: "work-safe",
  23155. },
  23156. {
  23157. name: "Enlarged",
  23158. height: math.unit(12, "feet"),
  23159. form: "calibrating",
  23160. },
  23161. {
  23162. name: "Enlarged",
  23163. height: math.unit(12, "feet"),
  23164. form: "oversize-load",
  23165. },
  23166. ],
  23167. {
  23168. "work-safe": {
  23169. name: "Work-Safe",
  23170. default: true
  23171. },
  23172. "calibrating": {
  23173. name: "Calibrating"
  23174. },
  23175. "oversize-load": {
  23176. name: "Oversize Load"
  23177. }
  23178. }
  23179. ))
  23180. characterMakers.push(() => makeCharacter(
  23181. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  23182. {
  23183. front: {
  23184. height: math.unit(5 + 3 / 12, "feet"),
  23185. weight: math.unit(160, "lb"),
  23186. name: "Front",
  23187. image: {
  23188. source: "./media/characters/kira/front.svg",
  23189. extra: 906 / 786,
  23190. bottom: 0.01
  23191. }
  23192. },
  23193. back: {
  23194. height: math.unit(5 + 3 / 12, "feet"),
  23195. weight: math.unit(160, "lb"),
  23196. name: "Back",
  23197. image: {
  23198. source: "./media/characters/kira/back.svg",
  23199. extra: 882 / 757,
  23200. bottom: 0.005
  23201. }
  23202. },
  23203. frontDressed: {
  23204. height: math.unit(5 + 3 / 12, "feet"),
  23205. weight: math.unit(160, "lb"),
  23206. name: "Front (Dressed)",
  23207. image: {
  23208. source: "./media/characters/kira/front-dressed.svg",
  23209. extra: 906 / 786,
  23210. bottom: 0.01
  23211. }
  23212. },
  23213. beans: {
  23214. height: math.unit(0.92, "feet"),
  23215. name: "Beans",
  23216. image: {
  23217. source: "./media/characters/kira/beans.svg"
  23218. }
  23219. },
  23220. },
  23221. [
  23222. {
  23223. name: "Normal",
  23224. height: math.unit(5 + 3 / 12, "feet"),
  23225. default: true
  23226. },
  23227. ]
  23228. ))
  23229. characterMakers.push(() => makeCharacter(
  23230. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  23231. {
  23232. front: {
  23233. height: math.unit(5 + 4 / 12, "feet"),
  23234. weight: math.unit(145, "lb"),
  23235. name: "Front",
  23236. image: {
  23237. source: "./media/characters/scramble/front.svg",
  23238. extra: 763 / 727,
  23239. bottom: 0.05
  23240. }
  23241. },
  23242. back: {
  23243. height: math.unit(5 + 4 / 12, "feet"),
  23244. weight: math.unit(145, "lb"),
  23245. name: "Back",
  23246. image: {
  23247. source: "./media/characters/scramble/back.svg",
  23248. extra: 826 / 737,
  23249. bottom: 0.002
  23250. }
  23251. },
  23252. },
  23253. [
  23254. {
  23255. name: "Normal",
  23256. height: math.unit(5 + 4 / 12, "feet"),
  23257. default: true
  23258. },
  23259. ]
  23260. ))
  23261. characterMakers.push(() => makeCharacter(
  23262. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  23263. {
  23264. side: {
  23265. height: math.unit(6 + 2 / 12, "feet"),
  23266. weight: math.unit(190, "lb"),
  23267. name: "Side",
  23268. image: {
  23269. source: "./media/characters/biscuit/side.svg",
  23270. extra: 858 / 791,
  23271. bottom: 0.044
  23272. }
  23273. },
  23274. },
  23275. [
  23276. {
  23277. name: "Normal",
  23278. height: math.unit(6 + 2 / 12, "feet"),
  23279. default: true
  23280. },
  23281. ]
  23282. ))
  23283. characterMakers.push(() => makeCharacter(
  23284. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  23285. {
  23286. front: {
  23287. height: math.unit(5 + 2 / 12, "feet"),
  23288. weight: math.unit(120, "lb"),
  23289. name: "Front",
  23290. image: {
  23291. source: "./media/characters/poffin/front.svg",
  23292. extra: 786 / 680,
  23293. bottom: 0.005
  23294. }
  23295. },
  23296. },
  23297. [
  23298. {
  23299. name: "Normal",
  23300. height: math.unit(5 + 2 / 12, "feet"),
  23301. default: true
  23302. },
  23303. ]
  23304. ))
  23305. characterMakers.push(() => makeCharacter(
  23306. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  23307. {
  23308. front: {
  23309. height: math.unit(6 + 3 / 12, "feet"),
  23310. weight: math.unit(519, "lb"),
  23311. name: "Front",
  23312. image: {
  23313. source: "./media/characters/dhari/front.svg",
  23314. extra: 1048 / 946,
  23315. bottom: 0.015
  23316. }
  23317. },
  23318. back: {
  23319. height: math.unit(6 + 3 / 12, "feet"),
  23320. weight: math.unit(519, "lb"),
  23321. name: "Back",
  23322. image: {
  23323. source: "./media/characters/dhari/back.svg",
  23324. extra: 1048 / 931,
  23325. bottom: 0.005
  23326. }
  23327. },
  23328. frontDressed: {
  23329. height: math.unit(6 + 3 / 12, "feet"),
  23330. weight: math.unit(519, "lb"),
  23331. name: "Front (Dressed)",
  23332. image: {
  23333. source: "./media/characters/dhari/front-dressed.svg",
  23334. extra: 1713 / 1546,
  23335. bottom: 0.02
  23336. }
  23337. },
  23338. backDressed: {
  23339. height: math.unit(6 + 3 / 12, "feet"),
  23340. weight: math.unit(519, "lb"),
  23341. name: "Back (Dressed)",
  23342. image: {
  23343. source: "./media/characters/dhari/back-dressed.svg",
  23344. extra: 1699 / 1537,
  23345. bottom: 0.01
  23346. }
  23347. },
  23348. maw: {
  23349. height: math.unit(0.95, "feet"),
  23350. name: "Maw",
  23351. image: {
  23352. source: "./media/characters/dhari/maw.svg"
  23353. }
  23354. },
  23355. wereFront: {
  23356. height: math.unit(12 + 8 / 12, "feet"),
  23357. weight: math.unit(4000, "lb"),
  23358. name: "Front (Were)",
  23359. image: {
  23360. source: "./media/characters/dhari/were-front.svg",
  23361. extra: 1065 / 969,
  23362. bottom: 0.015
  23363. }
  23364. },
  23365. wereBack: {
  23366. height: math.unit(12 + 8 / 12, "feet"),
  23367. weight: math.unit(4000, "lb"),
  23368. name: "Back (Were)",
  23369. image: {
  23370. source: "./media/characters/dhari/were-back.svg",
  23371. extra: 1065 / 969,
  23372. bottom: 0.012
  23373. }
  23374. },
  23375. wereMaw: {
  23376. height: math.unit(0.625, "meters"),
  23377. name: "Maw (Were)",
  23378. image: {
  23379. source: "./media/characters/dhari/were-maw.svg"
  23380. }
  23381. },
  23382. },
  23383. [
  23384. {
  23385. name: "Normal",
  23386. height: math.unit(6 + 3 / 12, "feet"),
  23387. default: true
  23388. },
  23389. ]
  23390. ))
  23391. characterMakers.push(() => makeCharacter(
  23392. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  23393. {
  23394. anthro: {
  23395. height: math.unit(5 + 7 / 12, "feet"),
  23396. weight: math.unit(175, "lb"),
  23397. name: "Anthro",
  23398. image: {
  23399. source: "./media/characters/rena-dyne/anthro.svg",
  23400. extra: 1849 / 1785,
  23401. bottom: 0.005
  23402. }
  23403. },
  23404. taur: {
  23405. height: math.unit(15 + 6 / 12, "feet"),
  23406. weight: math.unit(8000, "lb"),
  23407. name: "Taur",
  23408. image: {
  23409. source: "./media/characters/rena-dyne/taur.svg",
  23410. extra: 2315 / 2234,
  23411. bottom: 0.033
  23412. }
  23413. },
  23414. },
  23415. [
  23416. {
  23417. name: "Normal",
  23418. height: math.unit(5 + 7 / 12, "feet"),
  23419. default: true
  23420. },
  23421. ]
  23422. ))
  23423. characterMakers.push(() => makeCharacter(
  23424. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  23425. {
  23426. front: {
  23427. height: math.unit(8, "feet"),
  23428. weight: math.unit(600, "lb"),
  23429. name: "Front",
  23430. image: {
  23431. source: "./media/characters/weremeep/front.svg",
  23432. extra: 970/849,
  23433. bottom: 7/977
  23434. }
  23435. },
  23436. },
  23437. [
  23438. {
  23439. name: "Normal",
  23440. height: math.unit(8, "feet"),
  23441. default: true
  23442. },
  23443. {
  23444. name: "Lorg",
  23445. height: math.unit(12, "feet")
  23446. },
  23447. {
  23448. name: "Oh Lawd She Comin'",
  23449. height: math.unit(20, "feet")
  23450. },
  23451. ]
  23452. ))
  23453. characterMakers.push(() => makeCharacter(
  23454. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  23455. {
  23456. front: {
  23457. height: math.unit(4, "feet"),
  23458. weight: math.unit(90, "lb"),
  23459. name: "Front",
  23460. image: {
  23461. source: "./media/characters/reza/front.svg",
  23462. extra: 1183 / 1111,
  23463. bottom: 0.017
  23464. }
  23465. },
  23466. back: {
  23467. height: math.unit(4, "feet"),
  23468. weight: math.unit(90, "lb"),
  23469. name: "Back",
  23470. image: {
  23471. source: "./media/characters/reza/back.svg",
  23472. extra: 1183 / 1111,
  23473. bottom: 0.01
  23474. }
  23475. },
  23476. drake: {
  23477. height: math.unit(30, "feet"),
  23478. weight: math.unit(246960, "lb"),
  23479. name: "Drake",
  23480. image: {
  23481. source: "./media/characters/reza/drake.svg",
  23482. extra: 2350 / 2024,
  23483. bottom: 60.7 / 2403
  23484. }
  23485. },
  23486. },
  23487. [
  23488. {
  23489. name: "Normal",
  23490. height: math.unit(4, "feet"),
  23491. default: true
  23492. },
  23493. ]
  23494. ))
  23495. characterMakers.push(() => makeCharacter(
  23496. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  23497. {
  23498. side: {
  23499. height: math.unit(15, "feet"),
  23500. weight: math.unit(14, "tons"),
  23501. name: "Side",
  23502. image: {
  23503. source: "./media/characters/athea/side.svg",
  23504. extra: 960 / 540,
  23505. bottom: 0.003
  23506. }
  23507. },
  23508. sitting: {
  23509. height: math.unit(6 * 2.85, "feet"),
  23510. weight: math.unit(14, "tons"),
  23511. name: "Sitting",
  23512. image: {
  23513. source: "./media/characters/athea/sitting.svg",
  23514. extra: 621 / 581,
  23515. bottom: 0.075
  23516. }
  23517. },
  23518. maw: {
  23519. height: math.unit(7.59498031496063, "feet"),
  23520. name: "Maw",
  23521. image: {
  23522. source: "./media/characters/athea/maw.svg"
  23523. }
  23524. },
  23525. },
  23526. [
  23527. {
  23528. name: "Lap Cat",
  23529. height: math.unit(2.5, "feet")
  23530. },
  23531. {
  23532. name: "Minimacro",
  23533. height: math.unit(15, "feet"),
  23534. default: true
  23535. },
  23536. {
  23537. name: "Macro",
  23538. height: math.unit(120, "feet")
  23539. },
  23540. {
  23541. name: "Macro+",
  23542. height: math.unit(640, "feet")
  23543. },
  23544. {
  23545. name: "Colossus",
  23546. height: math.unit(2.2, "miles")
  23547. },
  23548. ]
  23549. ))
  23550. characterMakers.push(() => makeCharacter(
  23551. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23552. {
  23553. front: {
  23554. height: math.unit(8 + 8 / 12, "feet"),
  23555. weight: math.unit(130, "kg"),
  23556. name: "Front",
  23557. image: {
  23558. source: "./media/characters/seroko/front.svg",
  23559. extra: 1385 / 1280,
  23560. bottom: 0.025
  23561. }
  23562. },
  23563. back: {
  23564. height: math.unit(8 + 8 / 12, "feet"),
  23565. weight: math.unit(130, "kg"),
  23566. name: "Back",
  23567. image: {
  23568. source: "./media/characters/seroko/back.svg",
  23569. extra: 1369 / 1238,
  23570. bottom: 0.018
  23571. }
  23572. },
  23573. frontDressed: {
  23574. height: math.unit(8 + 8 / 12, "feet"),
  23575. weight: math.unit(130, "kg"),
  23576. name: "Front (Dressed)",
  23577. image: {
  23578. source: "./media/characters/seroko/front-dressed.svg",
  23579. extra: 1366 / 1275,
  23580. bottom: 0.03
  23581. }
  23582. },
  23583. },
  23584. [
  23585. {
  23586. name: "Normal",
  23587. height: math.unit(8 + 8 / 12, "feet"),
  23588. default: true
  23589. },
  23590. ]
  23591. ))
  23592. characterMakers.push(() => makeCharacter(
  23593. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23594. {
  23595. front: {
  23596. height: math.unit(5.5, "feet"),
  23597. weight: math.unit(160, "lb"),
  23598. name: "Front",
  23599. image: {
  23600. source: "./media/characters/quatzi/front.svg",
  23601. extra: 2346 / 2242,
  23602. bottom: 0.015
  23603. }
  23604. },
  23605. },
  23606. [
  23607. {
  23608. name: "Normal",
  23609. height: math.unit(5.5, "feet"),
  23610. default: true
  23611. },
  23612. {
  23613. name: "Big",
  23614. height: math.unit(7.7, "feet")
  23615. },
  23616. ]
  23617. ))
  23618. characterMakers.push(() => makeCharacter(
  23619. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23620. {
  23621. front: {
  23622. height: math.unit(5 + 11 / 12, "feet"),
  23623. weight: math.unit(180, "lb"),
  23624. name: "Front",
  23625. image: {
  23626. source: "./media/characters/sen/front.svg",
  23627. extra: 1321 / 1254,
  23628. bottom: 0.015
  23629. }
  23630. },
  23631. side: {
  23632. height: math.unit(5 + 11 / 12, "feet"),
  23633. weight: math.unit(180, "lb"),
  23634. name: "Side",
  23635. image: {
  23636. source: "./media/characters/sen/side.svg",
  23637. extra: 1321 / 1254,
  23638. bottom: 0.007
  23639. }
  23640. },
  23641. back: {
  23642. height: math.unit(5 + 11 / 12, "feet"),
  23643. weight: math.unit(180, "lb"),
  23644. name: "Back",
  23645. image: {
  23646. source: "./media/characters/sen/back.svg",
  23647. extra: 1321 / 1254
  23648. }
  23649. },
  23650. },
  23651. [
  23652. {
  23653. name: "Normal",
  23654. height: math.unit(5 + 11 / 12, "feet"),
  23655. default: true
  23656. },
  23657. ]
  23658. ))
  23659. characterMakers.push(() => makeCharacter(
  23660. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23661. {
  23662. front: {
  23663. height: math.unit(166.6, "cm"),
  23664. weight: math.unit(66.6, "kg"),
  23665. name: "Front",
  23666. image: {
  23667. source: "./media/characters/fruity/front.svg",
  23668. extra: 1510 / 1386,
  23669. bottom: 0.04
  23670. }
  23671. },
  23672. back: {
  23673. height: math.unit(166.6, "cm"),
  23674. weight: math.unit(66.6, "lb"),
  23675. name: "Back",
  23676. image: {
  23677. source: "./media/characters/fruity/back.svg",
  23678. extra: 1563 / 1435,
  23679. bottom: 0.005
  23680. }
  23681. },
  23682. },
  23683. [
  23684. {
  23685. name: "Normal",
  23686. height: math.unit(166.6, "cm"),
  23687. default: true
  23688. },
  23689. {
  23690. name: "Demonic",
  23691. height: math.unit(166.6, "feet")
  23692. },
  23693. ]
  23694. ))
  23695. characterMakers.push(() => makeCharacter(
  23696. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23697. {
  23698. side: {
  23699. height: math.unit(10, "feet"),
  23700. weight: math.unit(500, "lb"),
  23701. name: "Side",
  23702. image: {
  23703. source: "./media/characters/zost/side.svg",
  23704. extra: 2870/2533,
  23705. bottom: 252/3122
  23706. }
  23707. },
  23708. mawFront: {
  23709. height: math.unit(1.08, "meters"),
  23710. name: "Maw (Front)",
  23711. image: {
  23712. source: "./media/characters/zost/maw-front.svg"
  23713. }
  23714. },
  23715. mawSide: {
  23716. height: math.unit(2.66, "feet"),
  23717. name: "Maw (Side)",
  23718. image: {
  23719. source: "./media/characters/zost/maw-side.svg"
  23720. }
  23721. },
  23722. wingspan: {
  23723. height: math.unit(7.4, "feet"),
  23724. name: "Wingspan",
  23725. image: {
  23726. source: "./media/characters/zost/wingspan.svg"
  23727. }
  23728. },
  23729. },
  23730. [
  23731. {
  23732. name: "Normal",
  23733. height: math.unit(10, "feet"),
  23734. default: true
  23735. },
  23736. ]
  23737. ))
  23738. characterMakers.push(() => makeCharacter(
  23739. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23740. {
  23741. front: {
  23742. height: math.unit(5 + 4 / 12, "feet"),
  23743. weight: math.unit(120, "lb"),
  23744. name: "Front",
  23745. image: {
  23746. source: "./media/characters/luci/front.svg",
  23747. extra: 1985 / 1884,
  23748. bottom: 0.04
  23749. }
  23750. },
  23751. back: {
  23752. height: math.unit(5 + 4 / 12, "feet"),
  23753. weight: math.unit(120, "lb"),
  23754. name: "Back",
  23755. image: {
  23756. source: "./media/characters/luci/back.svg",
  23757. extra: 1892 / 1791,
  23758. bottom: 0.002
  23759. }
  23760. },
  23761. },
  23762. [
  23763. {
  23764. name: "Normal",
  23765. height: math.unit(5 + 4 / 12, "feet"),
  23766. default: true
  23767. },
  23768. ]
  23769. ))
  23770. characterMakers.push(() => makeCharacter(
  23771. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23772. {
  23773. front: {
  23774. height: math.unit(1500, "feet"),
  23775. weight: math.unit(3.8e6, "tons"),
  23776. name: "Front",
  23777. image: {
  23778. source: "./media/characters/2th/front.svg",
  23779. extra: 3489 / 3350,
  23780. bottom: 0.1
  23781. }
  23782. },
  23783. foot: {
  23784. height: math.unit(461, "feet"),
  23785. name: "Foot",
  23786. image: {
  23787. source: "./media/characters/2th/foot.svg"
  23788. }
  23789. },
  23790. },
  23791. [
  23792. {
  23793. name: "\"Micro\"",
  23794. height: math.unit(15 + 7 / 12, "feet")
  23795. },
  23796. {
  23797. name: "Normal",
  23798. height: math.unit(1500, "feet"),
  23799. default: true
  23800. },
  23801. {
  23802. name: "Macro",
  23803. height: math.unit(5000, "feet")
  23804. },
  23805. {
  23806. name: "Megamacro",
  23807. height: math.unit(15, "miles")
  23808. },
  23809. {
  23810. name: "Gigamacro",
  23811. height: math.unit(4000, "miles")
  23812. },
  23813. {
  23814. name: "Galactic",
  23815. height: math.unit(50, "AU")
  23816. },
  23817. ]
  23818. ))
  23819. characterMakers.push(() => makeCharacter(
  23820. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23821. {
  23822. front: {
  23823. height: math.unit(5 + 6 / 12, "feet"),
  23824. weight: math.unit(220, "lb"),
  23825. name: "Front",
  23826. image: {
  23827. source: "./media/characters/amethyst/front.svg",
  23828. extra: 2078 / 2040,
  23829. bottom: 0.045
  23830. }
  23831. },
  23832. back: {
  23833. height: math.unit(5 + 6 / 12, "feet"),
  23834. weight: math.unit(220, "lb"),
  23835. name: "Back",
  23836. image: {
  23837. source: "./media/characters/amethyst/back.svg",
  23838. extra: 2021 / 1989,
  23839. bottom: 0.02
  23840. }
  23841. },
  23842. },
  23843. [
  23844. {
  23845. name: "Normal",
  23846. height: math.unit(5 + 6 / 12, "feet"),
  23847. default: true
  23848. },
  23849. ]
  23850. ))
  23851. characterMakers.push(() => makeCharacter(
  23852. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23853. {
  23854. front: {
  23855. height: math.unit(4 + 11 / 12, "feet"),
  23856. weight: math.unit(120, "lb"),
  23857. name: "Front",
  23858. image: {
  23859. source: "./media/characters/yumi-akiyama/front.svg",
  23860. extra: 2638/2432,
  23861. bottom: 70/2708
  23862. }
  23863. },
  23864. back: {
  23865. height: math.unit(4 + 11 / 12, "feet"),
  23866. weight: math.unit(120, "lb"),
  23867. name: "Back",
  23868. image: {
  23869. source: "./media/characters/yumi-akiyama/back.svg",
  23870. extra: 2502/2397,
  23871. bottom: 80/2582
  23872. }
  23873. },
  23874. casual: {
  23875. height: math.unit(4 + 11 / 12, "feet"),
  23876. weight: math.unit(120, "lb"),
  23877. name: "Casual",
  23878. image: {
  23879. source: "./media/characters/yumi-akiyama/casual.svg",
  23880. extra: 958/887,
  23881. bottom: 41/999
  23882. }
  23883. },
  23884. jammies: {
  23885. height: math.unit(4 + 11 / 12, "feet"),
  23886. weight: math.unit(120, "lb"),
  23887. name: "Jammies",
  23888. image: {
  23889. source: "./media/characters/yumi-akiyama/jammies.svg",
  23890. extra: 958/894,
  23891. bottom: 37/995
  23892. }
  23893. },
  23894. warmWeather: {
  23895. height: math.unit(4 + 11 / 12, "feet"),
  23896. weight: math.unit(120, "lb"),
  23897. name: "Warm Weather",
  23898. image: {
  23899. source: "./media/characters/yumi-akiyama/warm-weather.svg",
  23900. extra: 929/865,
  23901. bottom: 76/1005
  23902. }
  23903. },
  23904. mouth: {
  23905. height: math.unit(0.35, "feet"),
  23906. name: "Mouth",
  23907. image: {
  23908. source: "./media/characters/yumi-akiyama/mouth.svg"
  23909. }
  23910. },
  23911. paws: {
  23912. height: math.unit(1.05, "feet"),
  23913. name: "Paws",
  23914. image: {
  23915. source: "./media/characters/yumi-akiyama/paws.svg"
  23916. }
  23917. },
  23918. cockRing: {
  23919. height: math.unit(0.225, "feet"),
  23920. name: "Cock Ring",
  23921. image: {
  23922. source: "./media/characters/yumi-akiyama/cock-ring.svg"
  23923. }
  23924. },
  23925. },
  23926. [
  23927. {
  23928. name: "Galactic",
  23929. height: math.unit(50, "galaxies"),
  23930. default: true
  23931. },
  23932. {
  23933. name: "Universal",
  23934. height: math.unit(100, "universes")
  23935. },
  23936. ]
  23937. ))
  23938. characterMakers.push(() => makeCharacter(
  23939. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23940. {
  23941. front: {
  23942. height: math.unit(8, "feet"),
  23943. weight: math.unit(500, "lb"),
  23944. name: "Front",
  23945. image: {
  23946. source: "./media/characters/rifter-yrmori/front.svg",
  23947. extra: 1180 / 1125,
  23948. bottom: 0.02
  23949. }
  23950. },
  23951. back: {
  23952. height: math.unit(8, "feet"),
  23953. weight: math.unit(500, "lb"),
  23954. name: "Back",
  23955. image: {
  23956. source: "./media/characters/rifter-yrmori/back.svg",
  23957. extra: 1190 / 1145,
  23958. bottom: 0.001
  23959. }
  23960. },
  23961. wings: {
  23962. height: math.unit(7.75, "feet"),
  23963. weight: math.unit(500, "lb"),
  23964. name: "Wings",
  23965. image: {
  23966. source: "./media/characters/rifter-yrmori/wings.svg",
  23967. extra: 1357 / 1285
  23968. }
  23969. },
  23970. maw: {
  23971. height: math.unit(0.8, "feet"),
  23972. name: "Maw",
  23973. image: {
  23974. source: "./media/characters/rifter-yrmori/maw.svg"
  23975. }
  23976. },
  23977. mawfront: {
  23978. height: math.unit(1.45, "feet"),
  23979. name: "Maw (Front)",
  23980. image: {
  23981. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23982. }
  23983. },
  23984. },
  23985. [
  23986. {
  23987. name: "Normal",
  23988. height: math.unit(8, "feet"),
  23989. default: true
  23990. },
  23991. {
  23992. name: "Macro",
  23993. height: math.unit(42, "meters")
  23994. },
  23995. ]
  23996. ))
  23997. characterMakers.push(() => makeCharacter(
  23998. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23999. {
  24000. were: {
  24001. height: math.unit(25 + 6 / 12, "feet"),
  24002. weight: math.unit(10000, "lb"),
  24003. name: "Were",
  24004. image: {
  24005. source: "./media/characters/tahajin/were.svg",
  24006. extra: 801 / 770,
  24007. bottom: 0.042
  24008. }
  24009. },
  24010. aquatic: {
  24011. height: math.unit(6 + 4 / 12, "feet"),
  24012. weight: math.unit(160, "lb"),
  24013. name: "Aquatic",
  24014. image: {
  24015. source: "./media/characters/tahajin/aquatic.svg",
  24016. extra: 572 / 542,
  24017. bottom: 0.04
  24018. }
  24019. },
  24020. chow: {
  24021. height: math.unit(8 + 11 / 12, "feet"),
  24022. weight: math.unit(450, "lb"),
  24023. name: "Chow",
  24024. image: {
  24025. source: "./media/characters/tahajin/chow.svg",
  24026. extra: 660 / 640,
  24027. bottom: 0.015
  24028. }
  24029. },
  24030. demiNaga: {
  24031. height: math.unit(6 + 8 / 12, "feet"),
  24032. weight: math.unit(300, "lb"),
  24033. name: "Demi Naga",
  24034. image: {
  24035. source: "./media/characters/tahajin/demi-naga.svg",
  24036. extra: 643 / 615,
  24037. bottom: 0.1
  24038. }
  24039. },
  24040. data: {
  24041. height: math.unit(5, "inches"),
  24042. weight: math.unit(0.1, "lb"),
  24043. name: "Data",
  24044. image: {
  24045. source: "./media/characters/tahajin/data.svg"
  24046. }
  24047. },
  24048. fluu: {
  24049. height: math.unit(5 + 7 / 12, "feet"),
  24050. weight: math.unit(140, "lb"),
  24051. name: "Fluu",
  24052. image: {
  24053. source: "./media/characters/tahajin/fluu.svg",
  24054. extra: 628 / 592,
  24055. bottom: 0.02
  24056. }
  24057. },
  24058. starWarrior: {
  24059. height: math.unit(4 + 5 / 12, "feet"),
  24060. weight: math.unit(50, "lb"),
  24061. name: "Star Warrior",
  24062. image: {
  24063. source: "./media/characters/tahajin/star-warrior.svg"
  24064. }
  24065. },
  24066. },
  24067. [
  24068. {
  24069. name: "Normal",
  24070. height: math.unit(25 + 6 / 12, "feet"),
  24071. default: true
  24072. },
  24073. ]
  24074. ))
  24075. characterMakers.push(() => makeCharacter(
  24076. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  24077. {
  24078. front: {
  24079. height: math.unit(8, "feet"),
  24080. weight: math.unit(350, "lb"),
  24081. name: "Front",
  24082. image: {
  24083. source: "./media/characters/gabira/front.svg",
  24084. extra: 1261/1154,
  24085. bottom: 51/1312
  24086. }
  24087. },
  24088. back: {
  24089. height: math.unit(8, "feet"),
  24090. weight: math.unit(350, "lb"),
  24091. name: "Back",
  24092. image: {
  24093. source: "./media/characters/gabira/back.svg",
  24094. extra: 1265/1163,
  24095. bottom: 46/1311
  24096. }
  24097. },
  24098. head: {
  24099. height: math.unit(2.85, "feet"),
  24100. name: "Head",
  24101. image: {
  24102. source: "./media/characters/gabira/head.svg"
  24103. }
  24104. },
  24105. },
  24106. [
  24107. {
  24108. name: "Normal",
  24109. height: math.unit(8, "feet"),
  24110. default: true
  24111. },
  24112. ]
  24113. ))
  24114. characterMakers.push(() => makeCharacter(
  24115. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  24116. {
  24117. front: {
  24118. height: math.unit(5 + 3 / 12, "feet"),
  24119. weight: math.unit(137, "lb"),
  24120. name: "Front",
  24121. image: {
  24122. source: "./media/characters/sasha-katraine/front.svg",
  24123. extra: 1745/1694,
  24124. bottom: 37/1782
  24125. }
  24126. },
  24127. back: {
  24128. height: math.unit(5 + 3 / 12, "feet"),
  24129. weight: math.unit(137, "lb"),
  24130. name: "Back",
  24131. image: {
  24132. source: "./media/characters/sasha-katraine/back.svg",
  24133. extra: 1776/1699,
  24134. bottom: 26/1802
  24135. }
  24136. },
  24137. },
  24138. [
  24139. {
  24140. name: "Micro",
  24141. height: math.unit(5, "inches")
  24142. },
  24143. {
  24144. name: "Normal",
  24145. height: math.unit(5 + 3 / 12, "feet"),
  24146. default: true
  24147. },
  24148. ]
  24149. ))
  24150. characterMakers.push(() => makeCharacter(
  24151. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  24152. {
  24153. side: {
  24154. height: math.unit(4, "inches"),
  24155. weight: math.unit(200, "grams"),
  24156. name: "Side",
  24157. image: {
  24158. source: "./media/characters/der/side.svg",
  24159. extra: 719 / 400,
  24160. bottom: 30.6 / 749.9187
  24161. }
  24162. },
  24163. },
  24164. [
  24165. {
  24166. name: "Micro",
  24167. height: math.unit(4, "inches"),
  24168. default: true
  24169. },
  24170. ]
  24171. ))
  24172. characterMakers.push(() => makeCharacter(
  24173. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  24174. {
  24175. side: {
  24176. height: math.unit(30, "meters"),
  24177. weight: math.unit(700, "tonnes"),
  24178. name: "Side",
  24179. image: {
  24180. source: "./media/characters/fixerdragon/side.svg",
  24181. extra: (1293.0514 - 116.03) / 1106.86,
  24182. bottom: 116.03 / 1293.0514
  24183. }
  24184. },
  24185. },
  24186. [
  24187. {
  24188. name: "Planck",
  24189. height: math.unit(1.6e-35, "meters")
  24190. },
  24191. {
  24192. name: "Micro",
  24193. height: math.unit(0.4, "meters")
  24194. },
  24195. {
  24196. name: "Normal",
  24197. height: math.unit(30, "meters"),
  24198. default: true
  24199. },
  24200. {
  24201. name: "Megamacro",
  24202. height: math.unit(1.2, "megameters")
  24203. },
  24204. {
  24205. name: "Teramacro",
  24206. height: math.unit(130, "terameters")
  24207. },
  24208. {
  24209. name: "Yottamacro",
  24210. height: math.unit(6200, "yottameters")
  24211. },
  24212. ]
  24213. ));
  24214. characterMakers.push(() => makeCharacter(
  24215. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  24216. {
  24217. front: {
  24218. height: math.unit(8, "feet"),
  24219. weight: math.unit(250, "lb"),
  24220. name: "Front",
  24221. image: {
  24222. source: "./media/characters/kite/front.svg",
  24223. extra: 2796 / 2659,
  24224. bottom: 0.002
  24225. }
  24226. },
  24227. },
  24228. [
  24229. {
  24230. name: "Normal",
  24231. height: math.unit(8, "feet"),
  24232. default: true
  24233. },
  24234. {
  24235. name: "Macro",
  24236. height: math.unit(360, "feet")
  24237. },
  24238. {
  24239. name: "Megamacro",
  24240. height: math.unit(1500, "feet")
  24241. },
  24242. ]
  24243. ))
  24244. characterMakers.push(() => makeCharacter(
  24245. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  24246. {
  24247. anthro_front: {
  24248. height: math.unit(5 + 11/12, "feet"),
  24249. weight: math.unit(170, "lb"),
  24250. name: "Front",
  24251. image: {
  24252. source: "./media/characters/poojawa-vynar/anthro-front.svg",
  24253. extra: 1735/1585,
  24254. bottom: 96/1831
  24255. },
  24256. form: "anthro",
  24257. default: true
  24258. },
  24259. anthro_back: {
  24260. height: math.unit(5 + 11/12, "feet"),
  24261. weight: math.unit(170, "lb"),
  24262. name: "Back",
  24263. image: {
  24264. source: "./media/characters/poojawa-vynar/anthro-back.svg",
  24265. extra: 1749/1607,
  24266. bottom: 28/1777
  24267. },
  24268. form: "anthro"
  24269. },
  24270. anthro_male: {
  24271. height: math.unit(5 + 11/12, "feet"),
  24272. weight: math.unit(170, "lb"),
  24273. name: "Male",
  24274. image: {
  24275. source: "./media/characters/poojawa-vynar/anthro-front-male.svg",
  24276. extra: 1855/1713,
  24277. bottom: 63/1918
  24278. },
  24279. form: "anthro"
  24280. },
  24281. taur_front: {
  24282. height: math.unit(5 + 7/12, "feet"),
  24283. weight: math.unit(170, "lb"),
  24284. name: "Front",
  24285. image: {
  24286. source: "./media/characters/poojawa-vynar/taur-front.svg",
  24287. extra: 1151/1059,
  24288. bottom: 356/1507
  24289. },
  24290. form: "taur",
  24291. default: true
  24292. },
  24293. anthro_frontDressed: {
  24294. height: math.unit(5 + 11/12, "feet"),
  24295. weight: math.unit(170, "lb"),
  24296. name: "Front (Dressed)",
  24297. image: {
  24298. source: "./media/characters/poojawa-vynar/anthro-front-dressed.svg",
  24299. extra: 1735/1585,
  24300. bottom: 96/1831
  24301. },
  24302. form: "anthro"
  24303. },
  24304. anthro_backDressed: {
  24305. height: math.unit(5 + 11/12, "feet"),
  24306. weight: math.unit(170, "lb"),
  24307. name: "Back (Dressed)",
  24308. image: {
  24309. source: "./media/characters/poojawa-vynar/anthro-back-dressed.svg",
  24310. extra: 1749/1607,
  24311. bottom: 28/1777
  24312. },
  24313. form: "anthro"
  24314. },
  24315. anthro_maleDressed: {
  24316. height: math.unit(5 + 11/12, "feet"),
  24317. weight: math.unit(170, "lb"),
  24318. name: "Male (Dressed)",
  24319. image: {
  24320. source: "./media/characters/poojawa-vynar/anthro-front-male-dressed.svg",
  24321. extra: 1855/1713,
  24322. bottom: 63/1918
  24323. },
  24324. form: "anthro"
  24325. },
  24326. taur_frontDressed: {
  24327. height: math.unit(5 + 7/12, "feet"),
  24328. weight: math.unit(170, "lb"),
  24329. name: "Front (Dressed)",
  24330. image: {
  24331. source: "./media/characters/poojawa-vynar/taur-front-dressed.svg",
  24332. extra: 1151/1059,
  24333. bottom: 356/1507
  24334. },
  24335. form: "taur"
  24336. },
  24337. maw: {
  24338. height: math.unit(1.46, "feet"),
  24339. name: "Maw",
  24340. image: {
  24341. source: "./media/characters/poojawa-vynar/maw.svg"
  24342. },
  24343. allForms: true
  24344. },
  24345. head: {
  24346. height: math.unit(2.34, "feet"),
  24347. name: "Head",
  24348. image: {
  24349. source: "./media/characters/poojawa-vynar/head.svg"
  24350. },
  24351. allForms: true
  24352. },
  24353. leftPaw: {
  24354. height: math.unit(1.72, "feet"),
  24355. name: "Left Paw",
  24356. image: {
  24357. source: "./media/characters/poojawa-vynar/paw-left.svg"
  24358. },
  24359. allForms: true
  24360. },
  24361. rightPaw: {
  24362. height: math.unit(1.61, "feet"),
  24363. name: "Right Paw",
  24364. image: {
  24365. source: "./media/characters/poojawa-vynar/paw-right.svg"
  24366. },
  24367. allForms: true
  24368. },
  24369. toering: {
  24370. height: math.unit(2.9, "inches"),
  24371. name: "Toering",
  24372. image: {
  24373. source: "./media/characters/poojawa-vynar/toering.svg"
  24374. },
  24375. allForms: true
  24376. },
  24377. shaft: {
  24378. height: math.unit(0.625, "feet"),
  24379. name: "Shaft",
  24380. image: {
  24381. source: "./media/characters/poojawa-vynar/shaft.svg"
  24382. },
  24383. allForms: true
  24384. },
  24385. spade: {
  24386. height: math.unit(0.42, "feet"),
  24387. name: "Spade",
  24388. image: {
  24389. source: "./media/characters/poojawa-vynar/spade.svg"
  24390. },
  24391. allForms: true
  24392. },
  24393. },
  24394. [
  24395. {
  24396. name: "Shortstack",
  24397. height: math.unit(4, "feet"),
  24398. form: "anthro"
  24399. },
  24400. {
  24401. name: "Normal",
  24402. height: math.unit(5 + 11 / 12, "feet"),
  24403. form: "anthro",
  24404. default: true
  24405. },
  24406. {
  24407. name: "Tauric",
  24408. height: math.unit(4, "meters"),
  24409. form: "taur",
  24410. default: true
  24411. },
  24412. ],
  24413. {
  24414. "anthro": {
  24415. name: "Anthro",
  24416. default: true
  24417. },
  24418. "taur": {
  24419. name: "Taur",
  24420. },
  24421. }
  24422. ))
  24423. characterMakers.push(() => makeCharacter(
  24424. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  24425. {
  24426. front: {
  24427. height: math.unit(293, "meters"),
  24428. weight: math.unit(70400, "tons"),
  24429. name: "Front",
  24430. image: {
  24431. source: "./media/characters/violette/front.svg",
  24432. extra: 1227 / 1180,
  24433. bottom: 0.005
  24434. }
  24435. },
  24436. back: {
  24437. height: math.unit(293, "meters"),
  24438. weight: math.unit(70400, "tons"),
  24439. name: "Back",
  24440. image: {
  24441. source: "./media/characters/violette/back.svg",
  24442. extra: 1227 / 1180,
  24443. bottom: 0.005
  24444. }
  24445. },
  24446. },
  24447. [
  24448. {
  24449. name: "Macro",
  24450. height: math.unit(293, "meters"),
  24451. default: true
  24452. },
  24453. ]
  24454. ))
  24455. characterMakers.push(() => makeCharacter(
  24456. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  24457. {
  24458. front: {
  24459. height: math.unit(1050, "feet"),
  24460. weight: math.unit(200000, "tons"),
  24461. name: "Front",
  24462. image: {
  24463. source: "./media/characters/alessandra/front.svg",
  24464. extra: 960 / 912,
  24465. bottom: 0.06
  24466. }
  24467. },
  24468. },
  24469. [
  24470. {
  24471. name: "Macro",
  24472. height: math.unit(1050, "feet")
  24473. },
  24474. {
  24475. name: "Macro+",
  24476. height: math.unit(900, "meters"),
  24477. default: true
  24478. },
  24479. ]
  24480. ))
  24481. characterMakers.push(() => makeCharacter(
  24482. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  24483. {
  24484. front: {
  24485. height: math.unit(5, "feet"),
  24486. weight: math.unit(187, "lb"),
  24487. name: "Front",
  24488. image: {
  24489. source: "./media/characters/person/front.svg",
  24490. extra: 3087 / 2945,
  24491. bottom: 91 / 3181
  24492. }
  24493. },
  24494. },
  24495. [
  24496. {
  24497. name: "Micro",
  24498. height: math.unit(3, "inches")
  24499. },
  24500. {
  24501. name: "Normal",
  24502. height: math.unit(5, "feet"),
  24503. default: true
  24504. },
  24505. {
  24506. name: "Macro",
  24507. height: math.unit(90, "feet")
  24508. },
  24509. {
  24510. name: "Max Size",
  24511. height: math.unit(280, "feet")
  24512. },
  24513. ]
  24514. ))
  24515. characterMakers.push(() => makeCharacter(
  24516. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  24517. {
  24518. front: {
  24519. height: math.unit(4.5, "meters"),
  24520. weight: math.unit(3200, "lb"),
  24521. name: "Front",
  24522. image: {
  24523. source: "./media/characters/ty/front.svg",
  24524. extra: 1038 / 960,
  24525. bottom: 31.156 / 1068
  24526. }
  24527. },
  24528. back: {
  24529. height: math.unit(4.5, "meters"),
  24530. weight: math.unit(3200, "lb"),
  24531. name: "Back",
  24532. image: {
  24533. source: "./media/characters/ty/back.svg",
  24534. extra: 1044 / 966,
  24535. bottom: 7.48 / 1049
  24536. }
  24537. },
  24538. },
  24539. [
  24540. {
  24541. name: "Normal",
  24542. height: math.unit(4.5, "meters"),
  24543. default: true
  24544. },
  24545. ]
  24546. ))
  24547. characterMakers.push(() => makeCharacter(
  24548. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  24549. {
  24550. front: {
  24551. height: math.unit(5 + 4 / 12, "feet"),
  24552. weight: math.unit(115, "lb"),
  24553. name: "Front",
  24554. image: {
  24555. source: "./media/characters/rocky/front.svg",
  24556. extra: 1012 / 975,
  24557. bottom: 54 / 1066
  24558. }
  24559. },
  24560. },
  24561. [
  24562. {
  24563. name: "Normal",
  24564. height: math.unit(5 + 4 / 12, "feet"),
  24565. default: true
  24566. },
  24567. ]
  24568. ))
  24569. characterMakers.push(() => makeCharacter(
  24570. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  24571. {
  24572. upright: {
  24573. height: math.unit(6, "meters"),
  24574. weight: math.unit(4000, "kg"),
  24575. name: "Upright",
  24576. image: {
  24577. source: "./media/characters/ruin/upright.svg",
  24578. extra: 668 / 661,
  24579. bottom: 42 / 799.8396
  24580. }
  24581. },
  24582. },
  24583. [
  24584. {
  24585. name: "Normal",
  24586. height: math.unit(6, "meters"),
  24587. default: true
  24588. },
  24589. ]
  24590. ))
  24591. characterMakers.push(() => makeCharacter(
  24592. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24593. {
  24594. front: {
  24595. height: math.unit(5, "feet"),
  24596. weight: math.unit(106, "lb"),
  24597. name: "Front",
  24598. image: {
  24599. source: "./media/characters/robin/front.svg",
  24600. extra: 862 / 799,
  24601. bottom: 42.4 / 914.8856
  24602. }
  24603. },
  24604. },
  24605. [
  24606. {
  24607. name: "Normal",
  24608. height: math.unit(5, "feet"),
  24609. default: true
  24610. },
  24611. ]
  24612. ))
  24613. characterMakers.push(() => makeCharacter(
  24614. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24615. {
  24616. side: {
  24617. height: math.unit(3, "feet"),
  24618. weight: math.unit(225, "lb"),
  24619. name: "Side",
  24620. image: {
  24621. source: "./media/characters/saian/side.svg",
  24622. extra: 566 / 356,
  24623. bottom: 79.7 / 643
  24624. }
  24625. },
  24626. maw: {
  24627. height: math.unit(2.85, "feet"),
  24628. name: "Maw",
  24629. image: {
  24630. source: "./media/characters/saian/maw.svg"
  24631. }
  24632. },
  24633. },
  24634. [
  24635. {
  24636. name: "Normal",
  24637. height: math.unit(3, "feet"),
  24638. default: true
  24639. },
  24640. ]
  24641. ))
  24642. characterMakers.push(() => makeCharacter(
  24643. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24644. {
  24645. side: {
  24646. height: math.unit(8, "feet"),
  24647. weight: math.unit(300, "lb"),
  24648. name: "Side",
  24649. image: {
  24650. source: "./media/characters/equus-silvermane/side.svg",
  24651. extra: 2176 / 2050,
  24652. bottom: 65.7 / 2245
  24653. }
  24654. },
  24655. front: {
  24656. height: math.unit(8, "feet"),
  24657. weight: math.unit(300, "lb"),
  24658. name: "Front",
  24659. image: {
  24660. source: "./media/characters/equus-silvermane/front.svg",
  24661. extra: 4633 / 4400,
  24662. bottom: 71.3 / 4706.915
  24663. }
  24664. },
  24665. sideStepping: {
  24666. height: math.unit(8, "feet"),
  24667. weight: math.unit(300, "lb"),
  24668. name: "Side (Stepping)",
  24669. image: {
  24670. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24671. extra: 1968 / 1860,
  24672. bottom: 16.4 / 1989
  24673. }
  24674. },
  24675. },
  24676. [
  24677. {
  24678. name: "Normal",
  24679. height: math.unit(8, "feet")
  24680. },
  24681. {
  24682. name: "Minimacro",
  24683. height: math.unit(75, "feet"),
  24684. default: true
  24685. },
  24686. {
  24687. name: "Macro",
  24688. height: math.unit(150, "feet")
  24689. },
  24690. {
  24691. name: "Macro+",
  24692. height: math.unit(1000, "feet")
  24693. },
  24694. {
  24695. name: "Megamacro",
  24696. height: math.unit(1, "mile")
  24697. },
  24698. ]
  24699. ))
  24700. characterMakers.push(() => makeCharacter(
  24701. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24702. {
  24703. side: {
  24704. height: math.unit(20, "feet"),
  24705. weight: math.unit(30000, "kg"),
  24706. name: "Side",
  24707. image: {
  24708. source: "./media/characters/windar/side.svg",
  24709. extra: 1491 / 1248,
  24710. bottom: 82.56 / 1568
  24711. }
  24712. },
  24713. },
  24714. [
  24715. {
  24716. name: "Normal",
  24717. height: math.unit(20, "feet"),
  24718. default: true
  24719. },
  24720. ]
  24721. ))
  24722. characterMakers.push(() => makeCharacter(
  24723. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24724. {
  24725. side: {
  24726. height: math.unit(15.66, "feet"),
  24727. weight: math.unit(150, "lb"),
  24728. name: "Side",
  24729. image: {
  24730. source: "./media/characters/melody/side.svg",
  24731. extra: 1097 / 944,
  24732. bottom: 11.8 / 1109
  24733. }
  24734. },
  24735. sideOutfit: {
  24736. height: math.unit(15.66, "feet"),
  24737. weight: math.unit(150, "lb"),
  24738. name: "Side (Outfit)",
  24739. image: {
  24740. source: "./media/characters/melody/side-outfit.svg",
  24741. extra: 1097 / 944,
  24742. bottom: 11.8 / 1109
  24743. }
  24744. },
  24745. },
  24746. [
  24747. {
  24748. name: "Normal",
  24749. height: math.unit(15.66, "feet"),
  24750. default: true
  24751. },
  24752. ]
  24753. ))
  24754. characterMakers.push(() => makeCharacter(
  24755. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24756. {
  24757. armoredFront: {
  24758. height: math.unit(8, "feet"),
  24759. weight: math.unit(325, "lb"),
  24760. name: "Front",
  24761. image: {
  24762. source: "./media/characters/windera/armored-front.svg",
  24763. extra: 1830/1598,
  24764. bottom: 151/1981
  24765. },
  24766. form: "armored",
  24767. default: true
  24768. },
  24769. macroFront: {
  24770. height: math.unit(70, "feet"),
  24771. weight: math.unit(315453, "lb"),
  24772. name: "Front",
  24773. image: {
  24774. source: "./media/characters/windera/macro-front.svg",
  24775. extra: 963/883,
  24776. bottom: 23/986
  24777. },
  24778. form: "macro",
  24779. default: true
  24780. },
  24781. },
  24782. [
  24783. {
  24784. name: "Normal",
  24785. height: math.unit(8, "feet"),
  24786. default: true,
  24787. form: "armored"
  24788. },
  24789. {
  24790. name: "Normal",
  24791. height: math.unit(70, "feet"),
  24792. default: true,
  24793. form: "macro"
  24794. },
  24795. ],
  24796. {
  24797. "armored": {
  24798. name: "Armored",
  24799. default: true
  24800. },
  24801. "macro": {
  24802. name: "Macro",
  24803. },
  24804. }
  24805. ))
  24806. characterMakers.push(() => makeCharacter(
  24807. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24808. {
  24809. front: {
  24810. height: math.unit(28.75, "feet"),
  24811. weight: math.unit(2000, "kg"),
  24812. name: "Front",
  24813. image: {
  24814. source: "./media/characters/sonear/front.svg",
  24815. extra: 1041.1 / 964.9,
  24816. bottom: 53.7 / 1096.6
  24817. }
  24818. },
  24819. },
  24820. [
  24821. {
  24822. name: "Normal",
  24823. height: math.unit(28.75, "feet"),
  24824. default: true
  24825. },
  24826. ]
  24827. ))
  24828. characterMakers.push(() => makeCharacter(
  24829. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24830. {
  24831. side: {
  24832. height: math.unit(25.5, "feet"),
  24833. weight: math.unit(23000, "kg"),
  24834. name: "Side",
  24835. image: {
  24836. source: "./media/characters/kanara/side.svg"
  24837. }
  24838. },
  24839. },
  24840. [
  24841. {
  24842. name: "Normal",
  24843. height: math.unit(25.5, "feet"),
  24844. default: true
  24845. },
  24846. ]
  24847. ))
  24848. characterMakers.push(() => makeCharacter(
  24849. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24850. {
  24851. side: {
  24852. height: math.unit(10, "feet"),
  24853. weight: math.unit(1000, "kg"),
  24854. name: "Side",
  24855. image: {
  24856. source: "./media/characters/ereus/side.svg",
  24857. extra: 1157 / 959,
  24858. bottom: 153 / 1312.5
  24859. }
  24860. },
  24861. },
  24862. [
  24863. {
  24864. name: "Normal",
  24865. height: math.unit(10, "feet"),
  24866. default: true
  24867. },
  24868. ]
  24869. ))
  24870. characterMakers.push(() => makeCharacter(
  24871. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24872. {
  24873. side: {
  24874. height: math.unit(4.5, "feet"),
  24875. weight: math.unit(500, "lb"),
  24876. name: "Side",
  24877. image: {
  24878. source: "./media/characters/e-ter/side.svg",
  24879. extra: 1550 / 1248,
  24880. bottom: 146 / 1694
  24881. }
  24882. },
  24883. },
  24884. [
  24885. {
  24886. name: "Normal",
  24887. height: math.unit(4.5, "feet"),
  24888. default: true
  24889. },
  24890. ]
  24891. ))
  24892. characterMakers.push(() => makeCharacter(
  24893. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24894. {
  24895. side: {
  24896. height: math.unit(9.7, "feet"),
  24897. weight: math.unit(4000, "kg"),
  24898. name: "Side",
  24899. image: {
  24900. source: "./media/characters/yamie/side.svg"
  24901. }
  24902. },
  24903. },
  24904. [
  24905. {
  24906. name: "Normal",
  24907. height: math.unit(9.7, "feet"),
  24908. default: true
  24909. },
  24910. ]
  24911. ))
  24912. characterMakers.push(() => makeCharacter(
  24913. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24914. {
  24915. front: {
  24916. height: math.unit(50, "feet"),
  24917. weight: math.unit(50000, "kg"),
  24918. name: "Front",
  24919. image: {
  24920. source: "./media/characters/anders/front.svg",
  24921. extra: 570 / 539,
  24922. bottom: 14.7 / 586.7
  24923. }
  24924. },
  24925. },
  24926. [
  24927. {
  24928. name: "Large",
  24929. height: math.unit(50, "feet")
  24930. },
  24931. {
  24932. name: "Macro",
  24933. height: math.unit(2000, "feet"),
  24934. default: true
  24935. },
  24936. {
  24937. name: "Megamacro",
  24938. height: math.unit(12, "miles")
  24939. },
  24940. ]
  24941. ))
  24942. characterMakers.push(() => makeCharacter(
  24943. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24944. {
  24945. front: {
  24946. height: math.unit(7 + 2 / 12, "feet"),
  24947. weight: math.unit(300, "lb"),
  24948. name: "Front",
  24949. image: {
  24950. source: "./media/characters/reban/front.svg",
  24951. extra: 1287/1212,
  24952. bottom: 148/1435
  24953. }
  24954. },
  24955. head: {
  24956. height: math.unit(1.95, "feet"),
  24957. name: "Head",
  24958. image: {
  24959. source: "./media/characters/reban/head.svg"
  24960. }
  24961. },
  24962. maw: {
  24963. height: math.unit(0.95, "feet"),
  24964. name: "Maw",
  24965. image: {
  24966. source: "./media/characters/reban/maw.svg"
  24967. }
  24968. },
  24969. foot: {
  24970. height: math.unit(1.65, "feet"),
  24971. name: "Foot",
  24972. image: {
  24973. source: "./media/characters/reban/foot.svg"
  24974. }
  24975. },
  24976. dick: {
  24977. height: math.unit(7 / 5, "feet"),
  24978. name: "Dick",
  24979. image: {
  24980. source: "./media/characters/reban/dick.svg"
  24981. }
  24982. },
  24983. },
  24984. [
  24985. {
  24986. name: "Natural Height",
  24987. height: math.unit(7 + 2 / 12, "feet")
  24988. },
  24989. {
  24990. name: "Macro",
  24991. height: math.unit(500, "feet"),
  24992. default: true
  24993. },
  24994. {
  24995. name: "Canon Height",
  24996. height: math.unit(50, "AU")
  24997. },
  24998. ]
  24999. ))
  25000. characterMakers.push(() => makeCharacter(
  25001. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  25002. {
  25003. front: {
  25004. height: math.unit(6, "feet"),
  25005. weight: math.unit(150, "lb"),
  25006. name: "Front",
  25007. image: {
  25008. source: "./media/characters/terrance-keayes/front.svg",
  25009. extra: 1.005,
  25010. bottom: 151 / 1615
  25011. }
  25012. },
  25013. side: {
  25014. height: math.unit(6, "feet"),
  25015. weight: math.unit(150, "lb"),
  25016. name: "Side",
  25017. image: {
  25018. source: "./media/characters/terrance-keayes/side.svg",
  25019. extra: 1.005,
  25020. bottom: 129.4 / 1544
  25021. }
  25022. },
  25023. back: {
  25024. height: math.unit(6, "feet"),
  25025. weight: math.unit(150, "lb"),
  25026. name: "Back",
  25027. image: {
  25028. source: "./media/characters/terrance-keayes/back.svg",
  25029. extra: 1.005,
  25030. bottom: 58.4 / 1557.3
  25031. }
  25032. },
  25033. dick: {
  25034. height: math.unit(6 * 0.208, "feet"),
  25035. name: "Dick",
  25036. image: {
  25037. source: "./media/characters/terrance-keayes/dick.svg"
  25038. }
  25039. },
  25040. },
  25041. [
  25042. {
  25043. name: "Canon Height",
  25044. height: math.unit(35, "miles"),
  25045. default: true
  25046. },
  25047. ]
  25048. ))
  25049. characterMakers.push(() => makeCharacter(
  25050. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  25051. {
  25052. front: {
  25053. height: math.unit(6, "feet"),
  25054. weight: math.unit(150, "lb"),
  25055. name: "Front",
  25056. image: {
  25057. source: "./media/characters/ofelia/front.svg",
  25058. extra: 1130/1117,
  25059. bottom: 91/1221
  25060. }
  25061. },
  25062. back: {
  25063. height: math.unit(6, "feet"),
  25064. weight: math.unit(150, "lb"),
  25065. name: "Back",
  25066. image: {
  25067. source: "./media/characters/ofelia/back.svg",
  25068. extra: 1172/1159,
  25069. bottom: 28/1200
  25070. }
  25071. },
  25072. maw: {
  25073. height: math.unit(1, "feet"),
  25074. name: "Maw",
  25075. image: {
  25076. source: "./media/characters/ofelia/maw.svg"
  25077. }
  25078. },
  25079. foot: {
  25080. height: math.unit(1.949, "feet"),
  25081. name: "Foot",
  25082. image: {
  25083. source: "./media/characters/ofelia/foot.svg"
  25084. }
  25085. },
  25086. },
  25087. [
  25088. {
  25089. name: "Canon Height",
  25090. height: math.unit(2000, "miles"),
  25091. default: true
  25092. },
  25093. ]
  25094. ))
  25095. characterMakers.push(() => makeCharacter(
  25096. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  25097. {
  25098. front: {
  25099. height: math.unit(6, "feet"),
  25100. weight: math.unit(150, "lb"),
  25101. name: "Front",
  25102. image: {
  25103. source: "./media/characters/samuel/front.svg",
  25104. extra: 265 / 258,
  25105. bottom: 2 / 266.1566
  25106. }
  25107. },
  25108. },
  25109. [
  25110. {
  25111. name: "Macro",
  25112. height: math.unit(100, "feet"),
  25113. default: true
  25114. },
  25115. {
  25116. name: "Full Size",
  25117. height: math.unit(1000, "miles")
  25118. },
  25119. ]
  25120. ))
  25121. characterMakers.push(() => makeCharacter(
  25122. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  25123. {
  25124. front: {
  25125. height: math.unit(6, "feet"),
  25126. weight: math.unit(300, "lb"),
  25127. name: "Front",
  25128. image: {
  25129. source: "./media/characters/beishir-kiel/front.svg",
  25130. extra: 569 / 547,
  25131. bottom: 41.9 / 609
  25132. }
  25133. },
  25134. maw: {
  25135. height: math.unit(6 * 0.202, "feet"),
  25136. name: "Maw",
  25137. image: {
  25138. source: "./media/characters/beishir-kiel/maw.svg"
  25139. }
  25140. },
  25141. },
  25142. [
  25143. {
  25144. name: "Macro",
  25145. height: math.unit(300, "feet"),
  25146. default: true
  25147. },
  25148. ]
  25149. ))
  25150. characterMakers.push(() => makeCharacter(
  25151. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  25152. {
  25153. front: {
  25154. height: math.unit(5 + 7/12, "feet"),
  25155. weight: math.unit(120, "lb"),
  25156. name: "Front",
  25157. image: {
  25158. source: "./media/characters/logan-grey/front.svg",
  25159. extra: 1836/1738,
  25160. bottom: 108/1944
  25161. }
  25162. },
  25163. back: {
  25164. height: math.unit(5 + 7/12, "feet"),
  25165. weight: math.unit(120, "lb"),
  25166. name: "Back",
  25167. image: {
  25168. source: "./media/characters/logan-grey/back.svg",
  25169. extra: 1880/1794,
  25170. bottom: 24/1904
  25171. }
  25172. },
  25173. frontSfw: {
  25174. height: math.unit(5 + 7/12, "feet"),
  25175. weight: math.unit(120, "lb"),
  25176. name: "Front (SFW)",
  25177. image: {
  25178. source: "./media/characters/logan-grey/front-sfw.svg",
  25179. extra: 1836/1738,
  25180. bottom: 108/1944
  25181. }
  25182. },
  25183. backSfw: {
  25184. height: math.unit(5 + 7/12, "feet"),
  25185. weight: math.unit(120, "lb"),
  25186. name: "Back (SFW)",
  25187. image: {
  25188. source: "./media/characters/logan-grey/back-sfw.svg",
  25189. extra: 1880/1794,
  25190. bottom: 24/1904
  25191. }
  25192. },
  25193. hands: {
  25194. height: math.unit(0.84, "feet"),
  25195. name: "Hands",
  25196. image: {
  25197. source: "./media/characters/logan-grey/hands.svg"
  25198. }
  25199. },
  25200. paws: {
  25201. height: math.unit(0.72, "feet"),
  25202. name: "Paws",
  25203. image: {
  25204. source: "./media/characters/logan-grey/paws.svg"
  25205. }
  25206. },
  25207. cock: {
  25208. height: math.unit(1.45, "feet"),
  25209. name: "Cock",
  25210. image: {
  25211. source: "./media/characters/logan-grey/cock.svg"
  25212. }
  25213. },
  25214. cockAlt: {
  25215. height: math.unit(1.437, "feet"),
  25216. name: "Cock (alt)",
  25217. image: {
  25218. source: "./media/characters/logan-grey/cock-alt.svg"
  25219. }
  25220. },
  25221. },
  25222. [
  25223. {
  25224. name: "Normal",
  25225. height: math.unit(5 + 8 / 12, "feet")
  25226. },
  25227. {
  25228. name: "The 500 Foot Femboy",
  25229. height: math.unit(500, "feet"),
  25230. default: true
  25231. },
  25232. {
  25233. name: "Megmacro",
  25234. height: math.unit(20, "miles")
  25235. },
  25236. ]
  25237. ))
  25238. characterMakers.push(() => makeCharacter(
  25239. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  25240. {
  25241. front: {
  25242. height: math.unit(8 + 2 / 12, "feet"),
  25243. weight: math.unit(275, "lb"),
  25244. name: "Front",
  25245. image: {
  25246. source: "./media/characters/draganta/front.svg",
  25247. extra: 1177 / 1135,
  25248. bottom: 33.46 / 1212.1
  25249. }
  25250. },
  25251. },
  25252. [
  25253. {
  25254. name: "Normal",
  25255. height: math.unit(8 + 6 / 12, "feet"),
  25256. default: true
  25257. },
  25258. {
  25259. name: "Macro",
  25260. height: math.unit(150, "feet")
  25261. },
  25262. {
  25263. name: "Megamacro",
  25264. height: math.unit(1000, "miles")
  25265. },
  25266. ]
  25267. ))
  25268. characterMakers.push(() => makeCharacter(
  25269. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  25270. {
  25271. front: {
  25272. height: math.unit(1.72, "m"),
  25273. weight: math.unit(80, "lb"),
  25274. name: "Front",
  25275. image: {
  25276. source: "./media/characters/voski/front.svg",
  25277. extra: 2076.22 / 2022.4,
  25278. bottom: 102.7 / 2177.3866
  25279. }
  25280. },
  25281. frontFlaccid: {
  25282. height: math.unit(1.72, "m"),
  25283. weight: math.unit(80, "lb"),
  25284. name: "Front (Flaccid)",
  25285. image: {
  25286. source: "./media/characters/voski/front-flaccid.svg",
  25287. extra: 2076.22 / 2022.4,
  25288. bottom: 102.7 / 2177.3866
  25289. }
  25290. },
  25291. frontErect: {
  25292. height: math.unit(1.72, "m"),
  25293. weight: math.unit(80, "lb"),
  25294. name: "Front (Erect)",
  25295. image: {
  25296. source: "./media/characters/voski/front-erect.svg",
  25297. extra: 2076.22 / 2022.4,
  25298. bottom: 102.7 / 2177.3866
  25299. }
  25300. },
  25301. back: {
  25302. height: math.unit(1.72, "m"),
  25303. weight: math.unit(80, "lb"),
  25304. name: "Back",
  25305. image: {
  25306. source: "./media/characters/voski/back.svg",
  25307. extra: 2104 / 2051,
  25308. bottom: 10.45 / 2113.63
  25309. }
  25310. },
  25311. },
  25312. [
  25313. {
  25314. name: "Normal",
  25315. height: math.unit(1.72, "m")
  25316. },
  25317. {
  25318. name: "Macro",
  25319. height: math.unit(55, "m"),
  25320. default: true
  25321. },
  25322. {
  25323. name: "Macro+",
  25324. height: math.unit(300, "m")
  25325. },
  25326. {
  25327. name: "Macro++",
  25328. height: math.unit(700, "m")
  25329. },
  25330. {
  25331. name: "Macro+++",
  25332. height: math.unit(4500, "m")
  25333. },
  25334. {
  25335. name: "Macro++++",
  25336. height: math.unit(45, "km")
  25337. },
  25338. {
  25339. name: "Macro+++++",
  25340. height: math.unit(1220, "km")
  25341. },
  25342. ]
  25343. ))
  25344. characterMakers.push(() => makeCharacter(
  25345. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  25346. {
  25347. front: {
  25348. height: math.unit(2.3, "m"),
  25349. weight: math.unit(304, "kg"),
  25350. name: "Front",
  25351. image: {
  25352. source: "./media/characters/icowom-lee/front.svg",
  25353. extra: 985 / 955,
  25354. bottom: 25.4 / 1012
  25355. }
  25356. },
  25357. fronttentacles: {
  25358. height: math.unit(2.3, "m"),
  25359. weight: math.unit(304, "kg"),
  25360. name: "Front-tentacles",
  25361. image: {
  25362. source: "./media/characters/icowom-lee/front-tentacles.svg",
  25363. extra: 985 / 955,
  25364. bottom: 25.4 / 1012
  25365. }
  25366. },
  25367. back: {
  25368. height: math.unit(2.3, "m"),
  25369. weight: math.unit(304, "kg"),
  25370. name: "Back",
  25371. image: {
  25372. source: "./media/characters/icowom-lee/back.svg",
  25373. extra: 975 / 954,
  25374. bottom: 9.5 / 985
  25375. }
  25376. },
  25377. backtentacles: {
  25378. height: math.unit(2.3, "m"),
  25379. weight: math.unit(304, "kg"),
  25380. name: "Back-tentacles",
  25381. image: {
  25382. source: "./media/characters/icowom-lee/back-tentacles.svg",
  25383. extra: 975 / 954,
  25384. bottom: 9.5 / 985
  25385. }
  25386. },
  25387. frontDressed: {
  25388. height: math.unit(2.3, "m"),
  25389. weight: math.unit(304, "kg"),
  25390. name: "Front (Dressed)",
  25391. image: {
  25392. source: "./media/characters/icowom-lee/front-dressed.svg",
  25393. extra: 3076 / 2933,
  25394. bottom: 51.4 / 3125.1889
  25395. }
  25396. },
  25397. rump: {
  25398. height: math.unit(0.776, "meters"),
  25399. name: "Rump",
  25400. image: {
  25401. source: "./media/characters/icowom-lee/rump.svg"
  25402. }
  25403. },
  25404. genitals: {
  25405. height: math.unit(0.78, "meters"),
  25406. name: "Genitals",
  25407. image: {
  25408. source: "./media/characters/icowom-lee/genitals.svg"
  25409. }
  25410. },
  25411. },
  25412. [
  25413. {
  25414. name: "Normal",
  25415. height: math.unit(2.3, "meters"),
  25416. default: true
  25417. },
  25418. {
  25419. name: "Macro",
  25420. height: math.unit(94, "meters"),
  25421. default: true
  25422. },
  25423. ]
  25424. ))
  25425. characterMakers.push(() => makeCharacter(
  25426. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  25427. {
  25428. front: {
  25429. height: math.unit(22, "meters"),
  25430. weight: math.unit(21000, "kg"),
  25431. name: "Front",
  25432. image: {
  25433. source: "./media/characters/shock-diamond/front.svg",
  25434. extra: 2204 / 2053,
  25435. bottom: 65 / 2239.47
  25436. }
  25437. },
  25438. frontNude: {
  25439. height: math.unit(22, "meters"),
  25440. weight: math.unit(21000, "kg"),
  25441. name: "Front (Nude)",
  25442. image: {
  25443. source: "./media/characters/shock-diamond/front-nude.svg",
  25444. extra: 2514 / 2285,
  25445. bottom: 13 / 2527.56
  25446. }
  25447. },
  25448. },
  25449. [
  25450. {
  25451. name: "Normal",
  25452. height: math.unit(3, "meters")
  25453. },
  25454. {
  25455. name: "Macro",
  25456. height: math.unit(22, "meters"),
  25457. default: true
  25458. },
  25459. ]
  25460. ))
  25461. characterMakers.push(() => makeCharacter(
  25462. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  25463. {
  25464. front: {
  25465. height: math.unit(5 + 4/12, "feet"),
  25466. weight: math.unit(125, "lb"),
  25467. name: "Front",
  25468. image: {
  25469. source: "./media/characters/rory/front.svg",
  25470. extra: 1790/1681,
  25471. bottom: 66/1856
  25472. },
  25473. form: "normal",
  25474. default: true
  25475. },
  25476. back: {
  25477. height: math.unit(5 + 4/12, "feet"),
  25478. weight: math.unit(125, "lb"),
  25479. name: "Back",
  25480. image: {
  25481. source: "./media/characters/rory/back.svg",
  25482. extra: 1805/1690,
  25483. bottom: 56/1861
  25484. },
  25485. form: "normal"
  25486. },
  25487. frontDressed: {
  25488. height: math.unit(5 + 4/12, "feet"),
  25489. weight: math.unit(125, "lb"),
  25490. name: "Front (Dressed)",
  25491. image: {
  25492. source: "./media/characters/rory/front-dressed.svg",
  25493. extra: 1790/1681,
  25494. bottom: 66/1856
  25495. },
  25496. form: "normal"
  25497. },
  25498. backDressed: {
  25499. height: math.unit(5 + 4/12, "feet"),
  25500. weight: math.unit(125, "lb"),
  25501. name: "Back (Dressed)",
  25502. image: {
  25503. source: "./media/characters/rory/back-dressed.svg",
  25504. extra: 1805/1690,
  25505. bottom: 56/1861
  25506. },
  25507. form: "normal"
  25508. },
  25509. frontNsfw: {
  25510. height: math.unit(5 + 4/12, "feet"),
  25511. weight: math.unit(125, "lb"),
  25512. name: "Front (NSFW)",
  25513. image: {
  25514. source: "./media/characters/rory/front-nsfw.svg",
  25515. extra: 1790/1681,
  25516. bottom: 66/1856
  25517. },
  25518. form: "normal"
  25519. },
  25520. backNsfw: {
  25521. height: math.unit(5 + 4/12, "feet"),
  25522. weight: math.unit(125, "lb"),
  25523. name: "Back (NSFW)",
  25524. image: {
  25525. source: "./media/characters/rory/back-nsfw.svg",
  25526. extra: 1805/1690,
  25527. bottom: 56/1861
  25528. },
  25529. form: "normal"
  25530. },
  25531. dick: {
  25532. height: math.unit(0.8, "feet"),
  25533. name: "Dick",
  25534. image: {
  25535. source: "./media/characters/rory/dick.svg"
  25536. },
  25537. form: "normal"
  25538. },
  25539. thicc_front: {
  25540. height: math.unit(5 + 4/12, "feet"),
  25541. weight: math.unit(195, "lb"),
  25542. name: "Front",
  25543. image: {
  25544. source: "./media/characters/rory/thicc-front.svg",
  25545. extra: 1220/1100,
  25546. bottom: 103/1323
  25547. },
  25548. form: "thicc",
  25549. default: true
  25550. },
  25551. thicc_back: {
  25552. height: math.unit(5 + 4/12, "feet"),
  25553. weight: math.unit(195, "lb"),
  25554. name: "Back",
  25555. image: {
  25556. source: "./media/characters/rory/thicc-back.svg",
  25557. extra: 1166/1086,
  25558. bottom: 35/1201
  25559. },
  25560. form: "thicc"
  25561. },
  25562. },
  25563. [
  25564. {
  25565. name: "Micro",
  25566. height: math.unit(3, "inches"),
  25567. allForms: true
  25568. },
  25569. {
  25570. name: "Normal",
  25571. height: math.unit(5 + 4/12, "feet"),
  25572. allForms: true,
  25573. default: true
  25574. },
  25575. {
  25576. name: "Macro",
  25577. height: math.unit(90, "feet"),
  25578. allForms: true
  25579. },
  25580. {
  25581. name: "Supercharged",
  25582. height: math.unit(270, "feet"),
  25583. allForms: true
  25584. },
  25585. ],
  25586. {
  25587. "normal": {
  25588. name: "Normal",
  25589. default: true
  25590. },
  25591. "thicc": {
  25592. name: "Thicc",
  25593. },
  25594. }
  25595. ))
  25596. characterMakers.push(() => makeCharacter(
  25597. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25598. {
  25599. front: {
  25600. height: math.unit(5 + 9 / 12, "feet"),
  25601. weight: math.unit(190, "lb"),
  25602. name: "Front",
  25603. image: {
  25604. source: "./media/characters/sprisk/front.svg",
  25605. extra: 1225 / 1180,
  25606. bottom: 42.7 / 1266.4
  25607. }
  25608. },
  25609. frontNsfw: {
  25610. height: math.unit(5 + 9 / 12, "feet"),
  25611. weight: math.unit(190, "lb"),
  25612. name: "Front (NSFW)",
  25613. image: {
  25614. source: "./media/characters/sprisk/front-nsfw.svg",
  25615. extra: 1225 / 1180,
  25616. bottom: 42.7 / 1266.4
  25617. }
  25618. },
  25619. back: {
  25620. height: math.unit(5 + 9 / 12, "feet"),
  25621. weight: math.unit(190, "lb"),
  25622. name: "Back",
  25623. image: {
  25624. source: "./media/characters/sprisk/back.svg",
  25625. extra: 1247 / 1200,
  25626. bottom: 5.6 / 1253.04
  25627. }
  25628. },
  25629. },
  25630. [
  25631. {
  25632. name: "Tiny",
  25633. height: math.unit(2, "inches")
  25634. },
  25635. {
  25636. name: "Normal",
  25637. height: math.unit(5 + 9 / 12, "feet"),
  25638. default: true
  25639. },
  25640. {
  25641. name: "Mini Macro",
  25642. height: math.unit(18, "feet")
  25643. },
  25644. {
  25645. name: "Macro",
  25646. height: math.unit(100, "feet")
  25647. },
  25648. {
  25649. name: "MACRO",
  25650. height: math.unit(50, "miles")
  25651. },
  25652. {
  25653. name: "M A C R O",
  25654. height: math.unit(300, "miles")
  25655. },
  25656. ]
  25657. ))
  25658. characterMakers.push(() => makeCharacter(
  25659. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25660. {
  25661. side: {
  25662. height: math.unit(15.6, "meters"),
  25663. weight: math.unit(700000, "kg"),
  25664. name: "Side",
  25665. image: {
  25666. source: "./media/characters/bunsen/side.svg",
  25667. extra: 1644 / 358
  25668. }
  25669. },
  25670. foot: {
  25671. height: math.unit(1.611 * 1644 / 358, "meter"),
  25672. name: "Foot",
  25673. image: {
  25674. source: "./media/characters/bunsen/foot.svg"
  25675. }
  25676. },
  25677. },
  25678. [
  25679. {
  25680. name: "Small",
  25681. height: math.unit(10, "feet")
  25682. },
  25683. {
  25684. name: "Normal",
  25685. height: math.unit(15.6, "meters"),
  25686. default: true
  25687. },
  25688. ]
  25689. ))
  25690. characterMakers.push(() => makeCharacter(
  25691. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25692. {
  25693. front: {
  25694. height: math.unit(4 + 11 / 12, "feet"),
  25695. weight: math.unit(140, "lb"),
  25696. name: "Front",
  25697. image: {
  25698. source: "./media/characters/sesh/front.svg",
  25699. extra: 3420 / 3231,
  25700. bottom: 72 / 3949.5
  25701. }
  25702. },
  25703. },
  25704. [
  25705. {
  25706. name: "Normal",
  25707. height: math.unit(4 + 11 / 12, "feet")
  25708. },
  25709. {
  25710. name: "Grown",
  25711. height: math.unit(15, "feet"),
  25712. default: true
  25713. },
  25714. {
  25715. name: "Macro",
  25716. height: math.unit(1500, "feet")
  25717. },
  25718. {
  25719. name: "Megamacro",
  25720. height: math.unit(30, "miles")
  25721. },
  25722. {
  25723. name: "Continental",
  25724. height: math.unit(3000, "miles")
  25725. },
  25726. {
  25727. name: "Gravity Mass",
  25728. height: math.unit(300000, "miles")
  25729. },
  25730. {
  25731. name: "Planet Buster",
  25732. height: math.unit(30000000, "miles")
  25733. },
  25734. {
  25735. name: "Big",
  25736. height: math.unit(3000000000, "miles")
  25737. },
  25738. ]
  25739. ))
  25740. characterMakers.push(() => makeCharacter(
  25741. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25742. {
  25743. front: {
  25744. height: math.unit(9, "feet"),
  25745. weight: math.unit(350, "lb"),
  25746. name: "Front",
  25747. image: {
  25748. source: "./media/characters/pepper/front.svg",
  25749. extra: 1448 / 1312,
  25750. bottom: 9.4 / 1457.88
  25751. }
  25752. },
  25753. back: {
  25754. height: math.unit(9, "feet"),
  25755. weight: math.unit(350, "lb"),
  25756. name: "Back",
  25757. image: {
  25758. source: "./media/characters/pepper/back.svg",
  25759. extra: 1423 / 1300,
  25760. bottom: 4.6 / 1429
  25761. }
  25762. },
  25763. maw: {
  25764. height: math.unit(0.932, "feet"),
  25765. name: "Maw",
  25766. image: {
  25767. source: "./media/characters/pepper/maw.svg"
  25768. }
  25769. },
  25770. },
  25771. [
  25772. {
  25773. name: "Normal",
  25774. height: math.unit(9, "feet"),
  25775. default: true
  25776. },
  25777. ]
  25778. ))
  25779. characterMakers.push(() => makeCharacter(
  25780. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25781. {
  25782. front: {
  25783. height: math.unit(6, "feet"),
  25784. weight: math.unit(150, "lb"),
  25785. name: "Front",
  25786. image: {
  25787. source: "./media/characters/maelstrom/front.svg",
  25788. extra: 2100 / 1883,
  25789. bottom: 94 / 2196.7
  25790. }
  25791. },
  25792. },
  25793. [
  25794. {
  25795. name: "Less Kaiju",
  25796. height: math.unit(200, "feet")
  25797. },
  25798. {
  25799. name: "Kaiju",
  25800. height: math.unit(400, "feet"),
  25801. default: true
  25802. },
  25803. {
  25804. name: "Kaiju-er",
  25805. height: math.unit(600, "feet")
  25806. },
  25807. ]
  25808. ))
  25809. characterMakers.push(() => makeCharacter(
  25810. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25811. {
  25812. front: {
  25813. height: math.unit(6 + 5 / 12, "feet"),
  25814. weight: math.unit(180, "lb"),
  25815. name: "Front",
  25816. image: {
  25817. source: "./media/characters/lexir/front.svg",
  25818. extra: 180 / 172,
  25819. bottom: 12 / 192
  25820. }
  25821. },
  25822. back: {
  25823. height: math.unit(6 + 5 / 12, "feet"),
  25824. weight: math.unit(180, "lb"),
  25825. name: "Back",
  25826. image: {
  25827. source: "./media/characters/lexir/back.svg",
  25828. extra: 1273/1201,
  25829. bottom: 39/1312
  25830. }
  25831. },
  25832. },
  25833. [
  25834. {
  25835. name: "Very Smal",
  25836. height: math.unit(1, "nm")
  25837. },
  25838. {
  25839. name: "Normal",
  25840. height: math.unit(6 + 5 / 12, "feet"),
  25841. default: true
  25842. },
  25843. {
  25844. name: "Macro",
  25845. height: math.unit(1, "mile")
  25846. },
  25847. {
  25848. name: "Megamacro",
  25849. height: math.unit(50, "miles")
  25850. },
  25851. ]
  25852. ))
  25853. characterMakers.push(() => makeCharacter(
  25854. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25855. {
  25856. front: {
  25857. height: math.unit(1.5, "meters"),
  25858. weight: math.unit(100, "lb"),
  25859. name: "Front",
  25860. image: {
  25861. source: "./media/characters/maksio/front.svg",
  25862. extra: 1549 / 1531,
  25863. bottom: 123.7 / 1674.5429
  25864. }
  25865. },
  25866. back: {
  25867. height: math.unit(1.5, "meters"),
  25868. weight: math.unit(100, "lb"),
  25869. name: "Back",
  25870. image: {
  25871. source: "./media/characters/maksio/back.svg",
  25872. extra: 1541 / 1509,
  25873. bottom: 97 / 1639
  25874. }
  25875. },
  25876. hand: {
  25877. height: math.unit(0.621, "feet"),
  25878. name: "Hand",
  25879. image: {
  25880. source: "./media/characters/maksio/hand.svg"
  25881. }
  25882. },
  25883. foot: {
  25884. height: math.unit(1.611, "feet"),
  25885. name: "Foot",
  25886. image: {
  25887. source: "./media/characters/maksio/foot.svg"
  25888. }
  25889. },
  25890. },
  25891. [
  25892. {
  25893. name: "Shrunken",
  25894. height: math.unit(10, "cm")
  25895. },
  25896. {
  25897. name: "Normal",
  25898. height: math.unit(150, "cm"),
  25899. default: true
  25900. },
  25901. ]
  25902. ))
  25903. characterMakers.push(() => makeCharacter(
  25904. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25905. {
  25906. front: {
  25907. height: math.unit(100, "feet"),
  25908. name: "Front",
  25909. image: {
  25910. source: "./media/characters/erza-bear/front.svg",
  25911. extra: 2449 / 2390,
  25912. bottom: 46 / 2494
  25913. }
  25914. },
  25915. back: {
  25916. height: math.unit(100, "feet"),
  25917. name: "Back",
  25918. image: {
  25919. source: "./media/characters/erza-bear/back.svg",
  25920. extra: 2489 / 2430,
  25921. bottom: 85.4 / 2480
  25922. }
  25923. },
  25924. tail: {
  25925. height: math.unit(42, "feet"),
  25926. name: "Tail",
  25927. image: {
  25928. source: "./media/characters/erza-bear/tail.svg"
  25929. }
  25930. },
  25931. tongue: {
  25932. height: math.unit(8, "feet"),
  25933. name: "Tongue",
  25934. image: {
  25935. source: "./media/characters/erza-bear/tongue.svg"
  25936. }
  25937. },
  25938. dick: {
  25939. height: math.unit(10.5, "feet"),
  25940. name: "Dick",
  25941. image: {
  25942. source: "./media/characters/erza-bear/dick.svg"
  25943. }
  25944. },
  25945. dickVertical: {
  25946. height: math.unit(16.9, "feet"),
  25947. name: "Dick (Vertical)",
  25948. image: {
  25949. source: "./media/characters/erza-bear/dick-vertical.svg"
  25950. }
  25951. },
  25952. },
  25953. [
  25954. {
  25955. name: "Macro",
  25956. height: math.unit(100, "feet"),
  25957. default: true
  25958. },
  25959. ]
  25960. ))
  25961. characterMakers.push(() => makeCharacter(
  25962. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25963. {
  25964. front: {
  25965. height: math.unit(172, "cm"),
  25966. weight: math.unit(73, "kg"),
  25967. name: "Front",
  25968. image: {
  25969. source: "./media/characters/violet-flor/front.svg",
  25970. extra: 1474/1379,
  25971. bottom: 113/1587
  25972. }
  25973. },
  25974. back: {
  25975. height: math.unit(180, "cm"),
  25976. weight: math.unit(73, "kg"),
  25977. name: "Back",
  25978. image: {
  25979. source: "./media/characters/violet-flor/back.svg",
  25980. extra: 1660/1567,
  25981. bottom: 49/1709
  25982. }
  25983. },
  25984. },
  25985. [
  25986. {
  25987. name: "Normal",
  25988. height: math.unit(172, "cm"),
  25989. default: true
  25990. },
  25991. ]
  25992. ))
  25993. characterMakers.push(() => makeCharacter(
  25994. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25995. {
  25996. front: {
  25997. height: math.unit(6, "feet"),
  25998. weight: math.unit(220, "lb"),
  25999. name: "Front",
  26000. image: {
  26001. source: "./media/characters/lynn-rhea/front.svg",
  26002. extra: 310 / 273
  26003. }
  26004. },
  26005. back: {
  26006. height: math.unit(6, "feet"),
  26007. weight: math.unit(220, "lb"),
  26008. name: "Back",
  26009. image: {
  26010. source: "./media/characters/lynn-rhea/back.svg",
  26011. extra: 310 / 273
  26012. }
  26013. },
  26014. dicks: {
  26015. height: math.unit(0.9, "feet"),
  26016. name: "Dicks",
  26017. image: {
  26018. source: "./media/characters/lynn-rhea/dicks.svg"
  26019. }
  26020. },
  26021. slit: {
  26022. height: math.unit(0.4, "feet"),
  26023. name: "Slit",
  26024. image: {
  26025. source: "./media/characters/lynn-rhea/slit.svg"
  26026. }
  26027. },
  26028. },
  26029. [
  26030. {
  26031. name: "Micro",
  26032. height: math.unit(1, "inch")
  26033. },
  26034. {
  26035. name: "Macro",
  26036. height: math.unit(60, "feet"),
  26037. default: true
  26038. },
  26039. {
  26040. name: "Megamacro",
  26041. height: math.unit(2, "miles")
  26042. },
  26043. {
  26044. name: "Gigamacro",
  26045. height: math.unit(3, "earths")
  26046. },
  26047. {
  26048. name: "Galactic",
  26049. height: math.unit(0.8, "galaxies")
  26050. },
  26051. ]
  26052. ))
  26053. characterMakers.push(() => makeCharacter(
  26054. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  26055. {
  26056. front: {
  26057. height: math.unit(1600, "feet"),
  26058. weight: math.unit(85758785169, "kg"),
  26059. name: "Front",
  26060. image: {
  26061. source: "./media/characters/valathos/front.svg",
  26062. extra: 1451 / 1339
  26063. }
  26064. },
  26065. },
  26066. [
  26067. {
  26068. name: "Macro",
  26069. height: math.unit(1600, "feet"),
  26070. default: true
  26071. },
  26072. ]
  26073. ))
  26074. characterMakers.push(() => makeCharacter(
  26075. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  26076. {
  26077. front: {
  26078. height: math.unit(7 + 5 / 12, "feet"),
  26079. weight: math.unit(300, "lb"),
  26080. name: "Front",
  26081. image: {
  26082. source: "./media/characters/azula/front.svg",
  26083. extra: 3208 / 2880,
  26084. bottom: 80.2 / 3277
  26085. }
  26086. },
  26087. back: {
  26088. height: math.unit(7 + 5 / 12, "feet"),
  26089. weight: math.unit(300, "lb"),
  26090. name: "Back",
  26091. image: {
  26092. source: "./media/characters/azula/back.svg",
  26093. extra: 3169 / 2822,
  26094. bottom: 150.6 / 3321
  26095. }
  26096. },
  26097. },
  26098. [
  26099. {
  26100. name: "Normal",
  26101. height: math.unit(7 + 5 / 12, "feet"),
  26102. default: true
  26103. },
  26104. {
  26105. name: "Big",
  26106. height: math.unit(20, "feet")
  26107. },
  26108. ]
  26109. ))
  26110. characterMakers.push(() => makeCharacter(
  26111. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  26112. {
  26113. front: {
  26114. height: math.unit(5 + 1 / 12, "feet"),
  26115. weight: math.unit(110, "lb"),
  26116. name: "Front",
  26117. image: {
  26118. source: "./media/characters/rupert/front.svg",
  26119. extra: 1549 / 1495,
  26120. bottom: 54.2 / 1604.4
  26121. }
  26122. },
  26123. },
  26124. [
  26125. {
  26126. name: "Normal",
  26127. height: math.unit(5 + 1 / 12, "feet"),
  26128. default: true
  26129. },
  26130. ]
  26131. ))
  26132. characterMakers.push(() => makeCharacter(
  26133. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  26134. {
  26135. front: {
  26136. height: math.unit(8 + 4 / 12, "feet"),
  26137. weight: math.unit(350, "lb"),
  26138. name: "Front",
  26139. image: {
  26140. source: "./media/characters/sheera-castellar/front.svg",
  26141. extra: 1957 / 1894,
  26142. bottom: 26.97 / 1975.017
  26143. }
  26144. },
  26145. side: {
  26146. height: math.unit(8 + 4 / 12, "feet"),
  26147. weight: math.unit(350, "lb"),
  26148. name: "Side",
  26149. image: {
  26150. source: "./media/characters/sheera-castellar/side.svg",
  26151. extra: 1957 / 1894
  26152. }
  26153. },
  26154. back: {
  26155. height: math.unit(8 + 4 / 12, "feet"),
  26156. weight: math.unit(350, "lb"),
  26157. name: "Back",
  26158. image: {
  26159. source: "./media/characters/sheera-castellar/back.svg",
  26160. extra: 1957 / 1894
  26161. }
  26162. },
  26163. angled: {
  26164. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  26165. weight: math.unit(350, "lb"),
  26166. name: "Angled",
  26167. image: {
  26168. source: "./media/characters/sheera-castellar/angled.svg",
  26169. extra: 1807 / 1707,
  26170. bottom: 68 / 1875
  26171. }
  26172. },
  26173. genitals: {
  26174. height: math.unit(2.2, "feet"),
  26175. name: "Genitals",
  26176. image: {
  26177. source: "./media/characters/sheera-castellar/genitals.svg"
  26178. }
  26179. },
  26180. taur: {
  26181. height: math.unit(10 + 6/12, "feet"),
  26182. name: "Taur",
  26183. image: {
  26184. source: "./media/characters/sheera-castellar/taur.svg",
  26185. extra: 2017/1909,
  26186. bottom: 185/2202
  26187. }
  26188. },
  26189. },
  26190. [
  26191. {
  26192. name: "Normal",
  26193. height: math.unit(8 + 4 / 12, "feet")
  26194. },
  26195. {
  26196. name: "Macro",
  26197. height: math.unit(150, "feet"),
  26198. default: true
  26199. },
  26200. {
  26201. name: "Macro+",
  26202. height: math.unit(800, "feet")
  26203. },
  26204. ]
  26205. ))
  26206. characterMakers.push(() => makeCharacter(
  26207. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  26208. {
  26209. front: {
  26210. height: math.unit(6, "feet"),
  26211. weight: math.unit(150, "lb"),
  26212. name: "Front",
  26213. image: {
  26214. source: "./media/characters/jaipur/front.svg",
  26215. extra: 3860 / 3731,
  26216. bottom: 287 / 4140
  26217. }
  26218. },
  26219. back: {
  26220. height: math.unit(6, "feet"),
  26221. weight: math.unit(150, "lb"),
  26222. name: "Back",
  26223. image: {
  26224. source: "./media/characters/jaipur/back.svg",
  26225. extra: 1637/1561,
  26226. bottom: 154/1791
  26227. }
  26228. },
  26229. },
  26230. [
  26231. {
  26232. name: "Normal",
  26233. height: math.unit(1.85, "meters"),
  26234. default: true
  26235. },
  26236. {
  26237. name: "Macro",
  26238. height: math.unit(150, "meters")
  26239. },
  26240. {
  26241. name: "Macro+",
  26242. height: math.unit(0.5, "miles")
  26243. },
  26244. {
  26245. name: "Macro++",
  26246. height: math.unit(2.5, "miles")
  26247. },
  26248. {
  26249. name: "Macro+++",
  26250. height: math.unit(12, "miles")
  26251. },
  26252. {
  26253. name: "Macro++++",
  26254. height: math.unit(120, "miles")
  26255. },
  26256. {
  26257. name: "Macro+++++",
  26258. height: math.unit(1200, "miles")
  26259. },
  26260. ]
  26261. ))
  26262. characterMakers.push(() => makeCharacter(
  26263. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  26264. {
  26265. front: {
  26266. height: math.unit(6, "feet"),
  26267. weight: math.unit(150, "lb"),
  26268. name: "Front",
  26269. image: {
  26270. source: "./media/characters/sheila-wolf/front.svg",
  26271. extra: 1931 / 1808,
  26272. bottom: 29.5 / 1960
  26273. }
  26274. },
  26275. dick: {
  26276. height: math.unit(1.464, "feet"),
  26277. name: "Dick",
  26278. image: {
  26279. source: "./media/characters/sheila-wolf/dick.svg"
  26280. }
  26281. },
  26282. muzzle: {
  26283. height: math.unit(0.513, "feet"),
  26284. name: "Muzzle",
  26285. image: {
  26286. source: "./media/characters/sheila-wolf/muzzle.svg"
  26287. }
  26288. },
  26289. },
  26290. [
  26291. {
  26292. name: "Macro",
  26293. height: math.unit(70, "feet"),
  26294. default: true
  26295. },
  26296. ]
  26297. ))
  26298. characterMakers.push(() => makeCharacter(
  26299. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  26300. {
  26301. front: {
  26302. height: math.unit(32, "meters"),
  26303. weight: math.unit(300000, "kg"),
  26304. name: "Front",
  26305. image: {
  26306. source: "./media/characters/almor/front.svg",
  26307. extra: 1408 / 1322,
  26308. bottom: 94.6 / 1506.5
  26309. }
  26310. },
  26311. },
  26312. [
  26313. {
  26314. name: "Macro",
  26315. height: math.unit(32, "meters"),
  26316. default: true
  26317. },
  26318. ]
  26319. ))
  26320. characterMakers.push(() => makeCharacter(
  26321. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  26322. {
  26323. front: {
  26324. height: math.unit(7, "feet"),
  26325. weight: math.unit(200, "lb"),
  26326. name: "Front",
  26327. image: {
  26328. source: "./media/characters/silver/front.svg",
  26329. extra: 472.1 / 450.5,
  26330. bottom: 26.5 / 499.424
  26331. }
  26332. },
  26333. },
  26334. [
  26335. {
  26336. name: "Normal",
  26337. height: math.unit(7, "feet"),
  26338. default: true
  26339. },
  26340. {
  26341. name: "Macro",
  26342. height: math.unit(800, "feet")
  26343. },
  26344. {
  26345. name: "Megamacro",
  26346. height: math.unit(250, "miles")
  26347. },
  26348. ]
  26349. ))
  26350. characterMakers.push(() => makeCharacter(
  26351. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  26352. {
  26353. front: {
  26354. height: math.unit(6, "feet"),
  26355. weight: math.unit(150, "lb"),
  26356. name: "Front",
  26357. image: {
  26358. source: "./media/characters/pliskin/front.svg",
  26359. extra: 1469 / 1359,
  26360. bottom: 70 / 1540
  26361. }
  26362. },
  26363. },
  26364. [
  26365. {
  26366. name: "Micro",
  26367. height: math.unit(3, "inches")
  26368. },
  26369. {
  26370. name: "Normal",
  26371. height: math.unit(5 + 11 / 12, "feet"),
  26372. default: true
  26373. },
  26374. {
  26375. name: "Macro",
  26376. height: math.unit(120, "feet")
  26377. },
  26378. ]
  26379. ))
  26380. characterMakers.push(() => makeCharacter(
  26381. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  26382. {
  26383. front: {
  26384. height: math.unit(6, "feet"),
  26385. weight: math.unit(150, "lb"),
  26386. name: "Front",
  26387. image: {
  26388. source: "./media/characters/sammy/front.svg",
  26389. extra: 1193 / 1089,
  26390. bottom: 30.5 / 1226
  26391. }
  26392. },
  26393. },
  26394. [
  26395. {
  26396. name: "Macro",
  26397. height: math.unit(1700, "feet"),
  26398. default: true
  26399. },
  26400. {
  26401. name: "Examacro",
  26402. height: math.unit(2.5e9, "lightyears")
  26403. },
  26404. ]
  26405. ))
  26406. characterMakers.push(() => makeCharacter(
  26407. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  26408. {
  26409. front: {
  26410. height: math.unit(21, "meters"),
  26411. weight: math.unit(12, "tonnes"),
  26412. name: "Front",
  26413. image: {
  26414. source: "./media/characters/kuru/front.svg",
  26415. extra: 4301 / 3785,
  26416. bottom: 371.3 / 4691
  26417. }
  26418. },
  26419. },
  26420. [
  26421. {
  26422. name: "Macro",
  26423. height: math.unit(21, "meters"),
  26424. default: true
  26425. },
  26426. ]
  26427. ))
  26428. characterMakers.push(() => makeCharacter(
  26429. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  26430. {
  26431. front: {
  26432. height: math.unit(23, "meters"),
  26433. weight: math.unit(12.2, "tonnes"),
  26434. name: "Front",
  26435. image: {
  26436. source: "./media/characters/rakka/front.svg",
  26437. extra: 4670 / 4169,
  26438. bottom: 301 / 4968.7
  26439. }
  26440. },
  26441. },
  26442. [
  26443. {
  26444. name: "Macro",
  26445. height: math.unit(23, "meters"),
  26446. default: true
  26447. },
  26448. ]
  26449. ))
  26450. characterMakers.push(() => makeCharacter(
  26451. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  26452. {
  26453. front: {
  26454. height: math.unit(6, "feet"),
  26455. weight: math.unit(150, "lb"),
  26456. name: "Front",
  26457. image: {
  26458. source: "./media/characters/rhys-feline/front.svg",
  26459. extra: 2488 / 2308,
  26460. bottom: 35.67 / 2519.19
  26461. }
  26462. },
  26463. },
  26464. [
  26465. {
  26466. name: "Really Small",
  26467. height: math.unit(1, "nm")
  26468. },
  26469. {
  26470. name: "Micro",
  26471. height: math.unit(4, "inches")
  26472. },
  26473. {
  26474. name: "Normal",
  26475. height: math.unit(4 + 10 / 12, "feet"),
  26476. default: true
  26477. },
  26478. {
  26479. name: "Macro",
  26480. height: math.unit(100, "feet")
  26481. },
  26482. {
  26483. name: "Megamacto",
  26484. height: math.unit(50, "miles")
  26485. },
  26486. ]
  26487. ))
  26488. characterMakers.push(() => makeCharacter(
  26489. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  26490. {
  26491. side: {
  26492. height: math.unit(30, "feet"),
  26493. weight: math.unit(35000, "kg"),
  26494. name: "Side",
  26495. image: {
  26496. source: "./media/characters/alydar/side.svg",
  26497. extra: 234 / 222,
  26498. bottom: 6.5 / 241
  26499. }
  26500. },
  26501. front: {
  26502. height: math.unit(30, "feet"),
  26503. weight: math.unit(35000, "kg"),
  26504. name: "Front",
  26505. image: {
  26506. source: "./media/characters/alydar/front.svg",
  26507. extra: 223.37 / 210.2,
  26508. bottom: 22.3 / 246.76
  26509. }
  26510. },
  26511. top: {
  26512. height: math.unit(64.54, "feet"),
  26513. weight: math.unit(35000, "kg"),
  26514. name: "Top",
  26515. image: {
  26516. source: "./media/characters/alydar/top.svg"
  26517. }
  26518. },
  26519. anthro: {
  26520. height: math.unit(30, "feet"),
  26521. weight: math.unit(9000, "kg"),
  26522. name: "Anthro",
  26523. image: {
  26524. source: "./media/characters/alydar/anthro.svg",
  26525. extra: 432 / 421,
  26526. bottom: 7.18 / 440
  26527. }
  26528. },
  26529. maw: {
  26530. height: math.unit(11.693, "feet"),
  26531. name: "Maw",
  26532. image: {
  26533. source: "./media/characters/alydar/maw.svg"
  26534. }
  26535. },
  26536. head: {
  26537. height: math.unit(11.693, "feet"),
  26538. name: "Head",
  26539. image: {
  26540. source: "./media/characters/alydar/head.svg"
  26541. }
  26542. },
  26543. headAlt: {
  26544. height: math.unit(12.861, "feet"),
  26545. name: "Head (Alt)",
  26546. image: {
  26547. source: "./media/characters/alydar/head-alt.svg"
  26548. }
  26549. },
  26550. wing: {
  26551. height: math.unit(20.712, "feet"),
  26552. name: "Wing",
  26553. image: {
  26554. source: "./media/characters/alydar/wing.svg"
  26555. }
  26556. },
  26557. wingFeather: {
  26558. height: math.unit(9.662, "feet"),
  26559. name: "Wing Feather",
  26560. image: {
  26561. source: "./media/characters/alydar/wing-feather.svg"
  26562. }
  26563. },
  26564. countourFeather: {
  26565. height: math.unit(4.154, "feet"),
  26566. name: "Contour Feather",
  26567. image: {
  26568. source: "./media/characters/alydar/contour-feather.svg"
  26569. }
  26570. },
  26571. },
  26572. [
  26573. {
  26574. name: "Diplomatic",
  26575. height: math.unit(13, "feet"),
  26576. default: true
  26577. },
  26578. {
  26579. name: "Small",
  26580. height: math.unit(30, "feet")
  26581. },
  26582. {
  26583. name: "Normal",
  26584. height: math.unit(95, "feet"),
  26585. default: true
  26586. },
  26587. {
  26588. name: "Large",
  26589. height: math.unit(285, "feet")
  26590. },
  26591. {
  26592. name: "Incomprehensible",
  26593. height: math.unit(450, "megameters")
  26594. },
  26595. ]
  26596. ))
  26597. characterMakers.push(() => makeCharacter(
  26598. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26599. {
  26600. side: {
  26601. height: math.unit(11, "feet"),
  26602. weight: math.unit(1750, "kg"),
  26603. name: "Side",
  26604. image: {
  26605. source: "./media/characters/selicia/side.svg",
  26606. extra: 440 / 396,
  26607. bottom: 24.8 / 465.979
  26608. }
  26609. },
  26610. maw: {
  26611. height: math.unit(4.665, "feet"),
  26612. name: "Maw",
  26613. image: {
  26614. source: "./media/characters/selicia/maw.svg"
  26615. }
  26616. },
  26617. },
  26618. [
  26619. {
  26620. name: "Normal",
  26621. height: math.unit(11, "feet"),
  26622. default: true
  26623. },
  26624. ]
  26625. ))
  26626. characterMakers.push(() => makeCharacter(
  26627. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26628. {
  26629. side: {
  26630. height: math.unit(2 + 6 / 12, "feet"),
  26631. weight: math.unit(30, "lb"),
  26632. name: "Side",
  26633. image: {
  26634. source: "./media/characters/layla/side.svg",
  26635. extra: 244 / 188,
  26636. bottom: 18.2 / 262.1
  26637. }
  26638. },
  26639. back: {
  26640. height: math.unit(2 + 6 / 12, "feet"),
  26641. weight: math.unit(30, "lb"),
  26642. name: "Back",
  26643. image: {
  26644. source: "./media/characters/layla/back.svg",
  26645. extra: 308 / 241.5,
  26646. bottom: 8.9 / 316.8
  26647. }
  26648. },
  26649. cumming: {
  26650. height: math.unit(2 + 6 / 12, "feet"),
  26651. weight: math.unit(30, "lb"),
  26652. name: "Cumming",
  26653. image: {
  26654. source: "./media/characters/layla/cumming.svg",
  26655. extra: 342 / 279,
  26656. bottom: 595 / 938
  26657. }
  26658. },
  26659. dickFlaccid: {
  26660. height: math.unit(2.595, "feet"),
  26661. name: "Flaccid Genitals",
  26662. image: {
  26663. source: "./media/characters/layla/dick-flaccid.svg"
  26664. }
  26665. },
  26666. dickErect: {
  26667. height: math.unit(2.359, "feet"),
  26668. name: "Erect Genitals",
  26669. image: {
  26670. source: "./media/characters/layla/dick-erect.svg"
  26671. }
  26672. },
  26673. dragon: {
  26674. height: math.unit(40, "feet"),
  26675. name: "Dragon",
  26676. image: {
  26677. source: "./media/characters/layla/dragon.svg",
  26678. extra: 610/535,
  26679. bottom: 367/977
  26680. }
  26681. },
  26682. taur: {
  26683. height: math.unit(30, "feet"),
  26684. name: "Taur",
  26685. image: {
  26686. source: "./media/characters/layla/taur.svg",
  26687. extra: 1268/1199,
  26688. bottom: 112/1380
  26689. }
  26690. },
  26691. },
  26692. [
  26693. {
  26694. name: "Micro",
  26695. height: math.unit(1, "inch")
  26696. },
  26697. {
  26698. name: "Small",
  26699. height: math.unit(1, "foot")
  26700. },
  26701. {
  26702. name: "Normal",
  26703. height: math.unit(2 + 6 / 12, "feet"),
  26704. default: true
  26705. },
  26706. {
  26707. name: "Macro",
  26708. height: math.unit(200, "feet")
  26709. },
  26710. {
  26711. name: "Megamacro",
  26712. height: math.unit(1000, "miles")
  26713. },
  26714. {
  26715. name: "Planetary",
  26716. height: math.unit(8000, "miles")
  26717. },
  26718. {
  26719. name: "True Layla",
  26720. height: math.unit(200000 * 7, "multiverses")
  26721. },
  26722. ]
  26723. ))
  26724. characterMakers.push(() => makeCharacter(
  26725. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26726. {
  26727. back: {
  26728. height: math.unit(10.5, "feet"),
  26729. weight: math.unit(800, "lb"),
  26730. name: "Back",
  26731. image: {
  26732. source: "./media/characters/knox/back.svg",
  26733. extra: 1486 / 1089,
  26734. bottom: 107 / 1601.4
  26735. }
  26736. },
  26737. side: {
  26738. height: math.unit(10.5, "feet"),
  26739. weight: math.unit(800, "lb"),
  26740. name: "Side",
  26741. image: {
  26742. source: "./media/characters/knox/side.svg",
  26743. extra: 244 / 218,
  26744. bottom: 14 / 260
  26745. }
  26746. },
  26747. },
  26748. [
  26749. {
  26750. name: "Compact",
  26751. height: math.unit(10.5, "feet"),
  26752. default: true
  26753. },
  26754. {
  26755. name: "Dynamax",
  26756. height: math.unit(210, "feet")
  26757. },
  26758. {
  26759. name: "Full Macro",
  26760. height: math.unit(850, "feet")
  26761. },
  26762. ]
  26763. ))
  26764. characterMakers.push(() => makeCharacter(
  26765. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26766. {
  26767. front: {
  26768. height: math.unit(28, "feet"),
  26769. weight: math.unit(10500, "lb"),
  26770. name: "Front",
  26771. image: {
  26772. source: "./media/characters/kayda/front.svg",
  26773. extra: 1536 / 1428,
  26774. bottom: 68.7 / 1603
  26775. }
  26776. },
  26777. back: {
  26778. height: math.unit(28, "feet"),
  26779. weight: math.unit(10500, "lb"),
  26780. name: "Back",
  26781. image: {
  26782. source: "./media/characters/kayda/back.svg",
  26783. extra: 1557 / 1464,
  26784. bottom: 39.5 / 1597.49
  26785. }
  26786. },
  26787. dick: {
  26788. height: math.unit(3.858, "feet"),
  26789. name: "Dick",
  26790. image: {
  26791. source: "./media/characters/kayda/dick.svg"
  26792. }
  26793. },
  26794. },
  26795. [
  26796. {
  26797. name: "Macro",
  26798. height: math.unit(28, "feet"),
  26799. default: true
  26800. },
  26801. ]
  26802. ))
  26803. characterMakers.push(() => makeCharacter(
  26804. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26805. {
  26806. front: {
  26807. height: math.unit(10 + 11 / 12, "feet"),
  26808. weight: math.unit(1400, "lb"),
  26809. name: "Front",
  26810. image: {
  26811. source: "./media/characters/brian/front.svg",
  26812. extra: 737 / 692,
  26813. bottom: 55.4 / 785
  26814. }
  26815. },
  26816. },
  26817. [
  26818. {
  26819. name: "Normal",
  26820. height: math.unit(10 + 11 / 12, "feet"),
  26821. default: true
  26822. },
  26823. ]
  26824. ))
  26825. characterMakers.push(() => makeCharacter(
  26826. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26827. {
  26828. front: {
  26829. height: math.unit(5 + 8 / 12, "feet"),
  26830. weight: math.unit(140, "lb"),
  26831. name: "Front",
  26832. image: {
  26833. source: "./media/characters/khemri/front.svg",
  26834. extra: 4780 / 4059,
  26835. bottom: 80.1 / 4859.25
  26836. }
  26837. },
  26838. },
  26839. [
  26840. {
  26841. name: "Micro",
  26842. height: math.unit(6, "inches")
  26843. },
  26844. {
  26845. name: "Normal",
  26846. height: math.unit(5 + 8 / 12, "feet"),
  26847. default: true
  26848. },
  26849. ]
  26850. ))
  26851. characterMakers.push(() => makeCharacter(
  26852. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26853. {
  26854. front: {
  26855. height: math.unit(13, "feet"),
  26856. weight: math.unit(1700, "lb"),
  26857. name: "Front",
  26858. image: {
  26859. source: "./media/characters/felix-braveheart/front.svg",
  26860. extra: 1222 / 1157,
  26861. bottom: 53.2 / 1280
  26862. }
  26863. },
  26864. back: {
  26865. height: math.unit(13, "feet"),
  26866. weight: math.unit(1700, "lb"),
  26867. name: "Back",
  26868. image: {
  26869. source: "./media/characters/felix-braveheart/back.svg",
  26870. extra: 1277 / 1203,
  26871. bottom: 50.2 / 1327
  26872. }
  26873. },
  26874. feral: {
  26875. height: math.unit(6, "feet"),
  26876. weight: math.unit(400, "lb"),
  26877. name: "Feral",
  26878. image: {
  26879. source: "./media/characters/felix-braveheart/feral.svg",
  26880. extra: 682 / 625,
  26881. bottom: 6.9 / 688
  26882. }
  26883. },
  26884. },
  26885. [
  26886. {
  26887. name: "Normal",
  26888. height: math.unit(13, "feet"),
  26889. default: true
  26890. },
  26891. ]
  26892. ))
  26893. characterMakers.push(() => makeCharacter(
  26894. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26895. {
  26896. side: {
  26897. height: math.unit(5 + 11 / 12, "feet"),
  26898. weight: math.unit(1400, "lb"),
  26899. name: "Side",
  26900. image: {
  26901. source: "./media/characters/shadow-blade/side.svg",
  26902. extra: 1726 / 1267,
  26903. bottom: 58.4 / 1785
  26904. }
  26905. },
  26906. },
  26907. [
  26908. {
  26909. name: "Normal",
  26910. height: math.unit(5 + 11 / 12, "feet"),
  26911. default: true
  26912. },
  26913. ]
  26914. ))
  26915. characterMakers.push(() => makeCharacter(
  26916. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26917. {
  26918. front: {
  26919. height: math.unit(1 + 6 / 12, "feet"),
  26920. weight: math.unit(25, "lb"),
  26921. name: "Front",
  26922. image: {
  26923. source: "./media/characters/karla-halldor/front.svg",
  26924. extra: 1459 / 1383,
  26925. bottom: 12 / 1472
  26926. }
  26927. },
  26928. },
  26929. [
  26930. {
  26931. name: "Normal",
  26932. height: math.unit(1 + 6 / 12, "feet"),
  26933. default: true
  26934. },
  26935. ]
  26936. ))
  26937. characterMakers.push(() => makeCharacter(
  26938. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26939. {
  26940. front: {
  26941. height: math.unit(6 + 2 / 12, "feet"),
  26942. weight: math.unit(160, "lb"),
  26943. name: "Front",
  26944. image: {
  26945. source: "./media/characters/ariam/front.svg",
  26946. extra: 1073/976,
  26947. bottom: 52/1125
  26948. }
  26949. },
  26950. back: {
  26951. height: math.unit(6 + 2/12, "feet"),
  26952. weight: math.unit(160, "lb"),
  26953. name: "Back",
  26954. image: {
  26955. source: "./media/characters/ariam/back.svg",
  26956. extra: 1103/1023,
  26957. bottom: 9/1112
  26958. }
  26959. },
  26960. dressed: {
  26961. height: math.unit(6 + 2/12, "feet"),
  26962. weight: math.unit(160, "lb"),
  26963. name: "Dressed",
  26964. image: {
  26965. source: "./media/characters/ariam/dressed.svg",
  26966. extra: 1099/1009,
  26967. bottom: 25/1124
  26968. }
  26969. },
  26970. squatting: {
  26971. height: math.unit(4.1, "feet"),
  26972. weight: math.unit(160, "lb"),
  26973. name: "Squatting",
  26974. image: {
  26975. source: "./media/characters/ariam/squatting.svg",
  26976. extra: 2617 / 2112,
  26977. bottom: 61.2 / 2681,
  26978. }
  26979. },
  26980. },
  26981. [
  26982. {
  26983. name: "Normal",
  26984. height: math.unit(6 + 2 / 12, "feet"),
  26985. default: true
  26986. },
  26987. {
  26988. name: "Normal+",
  26989. height: math.unit(4, "meters")
  26990. },
  26991. {
  26992. name: "Macro",
  26993. height: math.unit(50, "meters")
  26994. },
  26995. {
  26996. name: "Macro+",
  26997. height: math.unit(100, "meters")
  26998. },
  26999. {
  27000. name: "Megamacro",
  27001. height: math.unit(20, "km")
  27002. },
  27003. {
  27004. name: "Caretaker",
  27005. height: math.unit(444, "megameters")
  27006. },
  27007. ]
  27008. ))
  27009. characterMakers.push(() => makeCharacter(
  27010. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  27011. {
  27012. front: {
  27013. height: math.unit(1.67, "meters"),
  27014. weight: math.unit(140, "lb"),
  27015. name: "Front",
  27016. image: {
  27017. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  27018. extra: 438 / 410,
  27019. bottom: 0.75 / 439
  27020. }
  27021. },
  27022. },
  27023. [
  27024. {
  27025. name: "Shrunken",
  27026. height: math.unit(7.6, "cm")
  27027. },
  27028. {
  27029. name: "Human Scale",
  27030. height: math.unit(1.67, "meters")
  27031. },
  27032. {
  27033. name: "Wolxi Scale",
  27034. height: math.unit(36.7, "meters"),
  27035. default: true
  27036. },
  27037. ]
  27038. ))
  27039. characterMakers.push(() => makeCharacter(
  27040. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  27041. {
  27042. front: {
  27043. height: math.unit(1.73, "meters"),
  27044. weight: math.unit(240, "lb"),
  27045. name: "Front",
  27046. image: {
  27047. source: "./media/characters/izue-two-mothers/front.svg",
  27048. extra: 469 / 437,
  27049. bottom: 1.24 / 470.6
  27050. }
  27051. },
  27052. },
  27053. [
  27054. {
  27055. name: "Shrunken",
  27056. height: math.unit(7.86, "cm")
  27057. },
  27058. {
  27059. name: "Human Scale",
  27060. height: math.unit(1.73, "meters")
  27061. },
  27062. {
  27063. name: "Wolxi Scale",
  27064. height: math.unit(38, "meters"),
  27065. default: true
  27066. },
  27067. ]
  27068. ))
  27069. characterMakers.push(() => makeCharacter(
  27070. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  27071. {
  27072. front: {
  27073. height: math.unit(1.55, "meters"),
  27074. weight: math.unit(120, "lb"),
  27075. name: "Front",
  27076. image: {
  27077. source: "./media/characters/teeku-love-shack/front.svg",
  27078. extra: 387 / 362,
  27079. bottom: 1.51 / 388
  27080. }
  27081. },
  27082. },
  27083. [
  27084. {
  27085. name: "Shrunken",
  27086. height: math.unit(7, "cm")
  27087. },
  27088. {
  27089. name: "Human Scale",
  27090. height: math.unit(1.55, "meters")
  27091. },
  27092. {
  27093. name: "Wolxi Scale",
  27094. height: math.unit(34.1, "meters"),
  27095. default: true
  27096. },
  27097. ]
  27098. ))
  27099. characterMakers.push(() => makeCharacter(
  27100. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  27101. {
  27102. front: {
  27103. height: math.unit(1.83, "meters"),
  27104. weight: math.unit(135, "lb"),
  27105. name: "Front",
  27106. image: {
  27107. source: "./media/characters/dejma-the-red/front.svg",
  27108. extra: 480 / 458,
  27109. bottom: 1.8 / 482
  27110. }
  27111. },
  27112. },
  27113. [
  27114. {
  27115. name: "Shrunken",
  27116. height: math.unit(8.3, "cm")
  27117. },
  27118. {
  27119. name: "Human Scale",
  27120. height: math.unit(1.83, "meters")
  27121. },
  27122. {
  27123. name: "Wolxi Scale",
  27124. height: math.unit(40, "meters"),
  27125. default: true
  27126. },
  27127. ]
  27128. ))
  27129. characterMakers.push(() => makeCharacter(
  27130. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  27131. {
  27132. front: {
  27133. height: math.unit(1.78, "meters"),
  27134. weight: math.unit(65, "kg"),
  27135. name: "Front",
  27136. image: {
  27137. source: "./media/characters/aki/front.svg",
  27138. extra: 452 / 415
  27139. }
  27140. },
  27141. frontNsfw: {
  27142. height: math.unit(1.78, "meters"),
  27143. weight: math.unit(65, "kg"),
  27144. name: "Front (NSFW)",
  27145. image: {
  27146. source: "./media/characters/aki/front-nsfw.svg",
  27147. extra: 452 / 415
  27148. }
  27149. },
  27150. back: {
  27151. height: math.unit(1.78, "meters"),
  27152. weight: math.unit(65, "kg"),
  27153. name: "Back",
  27154. image: {
  27155. source: "./media/characters/aki/back.svg",
  27156. extra: 452 / 415
  27157. }
  27158. },
  27159. rump: {
  27160. height: math.unit(2.05, "feet"),
  27161. name: "Rump",
  27162. image: {
  27163. source: "./media/characters/aki/rump.svg"
  27164. }
  27165. },
  27166. dick: {
  27167. height: math.unit(0.95, "feet"),
  27168. name: "Dick",
  27169. image: {
  27170. source: "./media/characters/aki/dick.svg"
  27171. }
  27172. },
  27173. },
  27174. [
  27175. {
  27176. name: "Micro",
  27177. height: math.unit(15, "cm")
  27178. },
  27179. {
  27180. name: "Normal",
  27181. height: math.unit(178, "cm"),
  27182. default: true
  27183. },
  27184. {
  27185. name: "Macro",
  27186. height: math.unit(214, "m")
  27187. },
  27188. {
  27189. name: "Macro+",
  27190. height: math.unit(534, "m")
  27191. },
  27192. ]
  27193. ))
  27194. characterMakers.push(() => makeCharacter(
  27195. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  27196. {
  27197. front: {
  27198. height: math.unit(5 + 5 / 12, "feet"),
  27199. weight: math.unit(120, "lb"),
  27200. name: "Front",
  27201. image: {
  27202. source: "./media/characters/ari/front.svg",
  27203. extra: 1550/1471,
  27204. bottom: 39/1589
  27205. }
  27206. },
  27207. },
  27208. [
  27209. {
  27210. name: "Normal",
  27211. height: math.unit(5 + 5 / 12, "feet")
  27212. },
  27213. {
  27214. name: "Macro",
  27215. height: math.unit(100, "feet"),
  27216. default: true
  27217. },
  27218. {
  27219. name: "Megamacro",
  27220. height: math.unit(100, "miles")
  27221. },
  27222. {
  27223. name: "Gigamacro",
  27224. height: math.unit(80000, "miles")
  27225. },
  27226. ]
  27227. ))
  27228. characterMakers.push(() => makeCharacter(
  27229. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  27230. {
  27231. side: {
  27232. height: math.unit(9, "feet"),
  27233. weight: math.unit(400, "kg"),
  27234. name: "Side",
  27235. image: {
  27236. source: "./media/characters/bolt/side.svg",
  27237. extra: 1126 / 896,
  27238. bottom: 60 / 1187.3,
  27239. }
  27240. },
  27241. },
  27242. [
  27243. {
  27244. name: "Micro",
  27245. height: math.unit(5, "inches")
  27246. },
  27247. {
  27248. name: "Normal",
  27249. height: math.unit(9, "feet"),
  27250. default: true
  27251. },
  27252. {
  27253. name: "Macro",
  27254. height: math.unit(700, "feet")
  27255. },
  27256. {
  27257. name: "Max Size",
  27258. height: math.unit(1.52e22, "yottameters")
  27259. },
  27260. ]
  27261. ))
  27262. characterMakers.push(() => makeCharacter(
  27263. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  27264. {
  27265. front: {
  27266. height: math.unit(4.3, "meters"),
  27267. weight: math.unit(3, "tons"),
  27268. name: "Front",
  27269. image: {
  27270. source: "./media/characters/draekon-sylviar/front.svg",
  27271. extra: 2072/1512,
  27272. bottom: 74/2146
  27273. }
  27274. },
  27275. back: {
  27276. height: math.unit(4.3, "meters"),
  27277. weight: math.unit(3, "tons"),
  27278. name: "Back",
  27279. image: {
  27280. source: "./media/characters/draekon-sylviar/back.svg",
  27281. extra: 1639/1483,
  27282. bottom: 41/1680
  27283. }
  27284. },
  27285. feral: {
  27286. height: math.unit(1.15, "meters"),
  27287. weight: math.unit(3, "tons"),
  27288. name: "Feral",
  27289. image: {
  27290. source: "./media/characters/draekon-sylviar/feral.svg",
  27291. extra: 1033/395,
  27292. bottom: 130/1163
  27293. }
  27294. },
  27295. maw: {
  27296. height: math.unit(1.3, "meters"),
  27297. name: "Maw",
  27298. image: {
  27299. source: "./media/characters/draekon-sylviar/maw.svg"
  27300. }
  27301. },
  27302. mawSeparated: {
  27303. height: math.unit(1.53, "meters"),
  27304. name: "Separated Maw",
  27305. image: {
  27306. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  27307. }
  27308. },
  27309. tail: {
  27310. height: math.unit(1.15, "meters"),
  27311. name: "Tail",
  27312. image: {
  27313. source: "./media/characters/draekon-sylviar/tail.svg"
  27314. }
  27315. },
  27316. tailDick: {
  27317. height: math.unit(1.15, "meters"),
  27318. name: "Tail (Dick)",
  27319. image: {
  27320. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  27321. }
  27322. },
  27323. tailDickSeparated: {
  27324. height: math.unit(1.19, "meters"),
  27325. name: "Tail (Separated Dick)",
  27326. image: {
  27327. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  27328. }
  27329. },
  27330. slit: {
  27331. height: math.unit(1, "meters"),
  27332. name: "Slit",
  27333. image: {
  27334. source: "./media/characters/draekon-sylviar/slit.svg"
  27335. }
  27336. },
  27337. dick: {
  27338. height: math.unit(1.15, "meters"),
  27339. name: "Dick",
  27340. image: {
  27341. source: "./media/characters/draekon-sylviar/dick.svg"
  27342. }
  27343. },
  27344. dickSeparated: {
  27345. height: math.unit(1.1, "meters"),
  27346. name: "Separated Dick",
  27347. image: {
  27348. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  27349. }
  27350. },
  27351. sheath: {
  27352. height: math.unit(1.15, "meters"),
  27353. name: "Sheath",
  27354. image: {
  27355. source: "./media/characters/draekon-sylviar/sheath.svg"
  27356. }
  27357. },
  27358. },
  27359. [
  27360. {
  27361. name: "Small",
  27362. height: math.unit(4.53 / 2, "meters"),
  27363. default: true
  27364. },
  27365. {
  27366. name: "Normal",
  27367. height: math.unit(4.53, "meters"),
  27368. default: true
  27369. },
  27370. {
  27371. name: "Large",
  27372. height: math.unit(4.53 * 2, "meters"),
  27373. },
  27374. ]
  27375. ))
  27376. characterMakers.push(() => makeCharacter(
  27377. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  27378. {
  27379. front: {
  27380. height: math.unit(6 + 2 / 12, "feet"),
  27381. weight: math.unit(180, "lb"),
  27382. name: "Front",
  27383. image: {
  27384. source: "./media/characters/brawler/front.svg",
  27385. extra: 3301 / 3027,
  27386. bottom: 138 / 3439
  27387. }
  27388. },
  27389. },
  27390. [
  27391. {
  27392. name: "Normal",
  27393. height: math.unit(6 + 2 / 12, "feet"),
  27394. default: true
  27395. },
  27396. ]
  27397. ))
  27398. characterMakers.push(() => makeCharacter(
  27399. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  27400. {
  27401. front: {
  27402. height: math.unit(11, "feet"),
  27403. weight: math.unit(1000, "lb"),
  27404. name: "Front",
  27405. image: {
  27406. source: "./media/characters/alex/front.svg",
  27407. bottom: 44.5 / 620
  27408. }
  27409. },
  27410. },
  27411. [
  27412. {
  27413. name: "Micro",
  27414. height: math.unit(5, "inches")
  27415. },
  27416. {
  27417. name: "Normal",
  27418. height: math.unit(11, "feet"),
  27419. default: true
  27420. },
  27421. {
  27422. name: "Macro",
  27423. height: math.unit(9.5e9, "feet")
  27424. },
  27425. {
  27426. name: "Max Size",
  27427. height: math.unit(1.4e283, "yottameters")
  27428. },
  27429. ]
  27430. ))
  27431. characterMakers.push(() => makeCharacter(
  27432. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  27433. {
  27434. female: {
  27435. height: math.unit(29.9, "m"),
  27436. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  27437. name: "Female",
  27438. image: {
  27439. source: "./media/characters/zenari/female.svg",
  27440. extra: 3281.6 / 3217,
  27441. bottom: 72.2 / 3353
  27442. }
  27443. },
  27444. male: {
  27445. height: math.unit(27.7, "m"),
  27446. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  27447. name: "Male",
  27448. image: {
  27449. source: "./media/characters/zenari/male.svg",
  27450. extra: 3008 / 2991,
  27451. bottom: 54.6 / 3069
  27452. }
  27453. },
  27454. },
  27455. [
  27456. {
  27457. name: "Macro",
  27458. height: math.unit(29.7, "meters"),
  27459. default: true
  27460. },
  27461. ]
  27462. ))
  27463. characterMakers.push(() => makeCharacter(
  27464. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  27465. {
  27466. female: {
  27467. height: math.unit(23.8, "m"),
  27468. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27469. name: "Female",
  27470. image: {
  27471. source: "./media/characters/mactarian/female.svg",
  27472. extra: 2662 / 2569,
  27473. bottom: 73 / 2736
  27474. }
  27475. },
  27476. male: {
  27477. height: math.unit(23.8, "m"),
  27478. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27479. name: "Male",
  27480. image: {
  27481. source: "./media/characters/mactarian/male.svg",
  27482. extra: 2673 / 2600,
  27483. bottom: 76 / 2750
  27484. }
  27485. },
  27486. },
  27487. [
  27488. {
  27489. name: "Macro",
  27490. height: math.unit(23.8, "meters"),
  27491. default: true
  27492. },
  27493. ]
  27494. ))
  27495. characterMakers.push(() => makeCharacter(
  27496. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  27497. {
  27498. female: {
  27499. height: math.unit(19.3, "m"),
  27500. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  27501. name: "Female",
  27502. image: {
  27503. source: "./media/characters/umok/female.svg",
  27504. extra: 2186 / 2078,
  27505. bottom: 87 / 2277
  27506. }
  27507. },
  27508. male: {
  27509. height: math.unit(19.5, "m"),
  27510. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  27511. name: "Male",
  27512. image: {
  27513. source: "./media/characters/umok/male.svg",
  27514. extra: 2233 / 2140,
  27515. bottom: 24.4 / 2258
  27516. }
  27517. },
  27518. },
  27519. [
  27520. {
  27521. name: "Macro",
  27522. height: math.unit(19.3, "meters"),
  27523. default: true
  27524. },
  27525. ]
  27526. ))
  27527. characterMakers.push(() => makeCharacter(
  27528. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  27529. {
  27530. female: {
  27531. height: math.unit(26.15, "m"),
  27532. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  27533. name: "Female",
  27534. image: {
  27535. source: "./media/characters/joraxian/female.svg",
  27536. extra: 2912 / 2824,
  27537. bottom: 36 / 2956
  27538. }
  27539. },
  27540. male: {
  27541. height: math.unit(25.4, "m"),
  27542. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  27543. name: "Male",
  27544. image: {
  27545. source: "./media/characters/joraxian/male.svg",
  27546. extra: 2877 / 2721,
  27547. bottom: 82 / 2967
  27548. }
  27549. },
  27550. },
  27551. [
  27552. {
  27553. name: "Macro",
  27554. height: math.unit(26.15, "meters"),
  27555. default: true
  27556. },
  27557. ]
  27558. ))
  27559. characterMakers.push(() => makeCharacter(
  27560. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  27561. {
  27562. female: {
  27563. height: math.unit(21.6, "m"),
  27564. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  27565. name: "Female",
  27566. image: {
  27567. source: "./media/characters/sthara/female.svg",
  27568. extra: 2516 / 2347,
  27569. bottom: 21.5 / 2537
  27570. }
  27571. },
  27572. male: {
  27573. height: math.unit(24, "m"),
  27574. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  27575. name: "Male",
  27576. image: {
  27577. source: "./media/characters/sthara/male.svg",
  27578. extra: 2732 / 2607,
  27579. bottom: 23 / 2732
  27580. }
  27581. },
  27582. },
  27583. [
  27584. {
  27585. name: "Macro",
  27586. height: math.unit(21.6, "meters"),
  27587. default: true
  27588. },
  27589. ]
  27590. ))
  27591. characterMakers.push(() => makeCharacter(
  27592. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27593. {
  27594. front: {
  27595. height: math.unit(6 + 4 / 12, "feet"),
  27596. weight: math.unit(175, "lb"),
  27597. name: "Front",
  27598. image: {
  27599. source: "./media/characters/luka-bryzant/front.svg",
  27600. extra: 311 / 289,
  27601. bottom: 4 / 315
  27602. }
  27603. },
  27604. back: {
  27605. height: math.unit(6 + 4 / 12, "feet"),
  27606. weight: math.unit(175, "lb"),
  27607. name: "Back",
  27608. image: {
  27609. source: "./media/characters/luka-bryzant/back.svg",
  27610. extra: 311 / 289,
  27611. bottom: 3.8 / 313.7
  27612. }
  27613. },
  27614. },
  27615. [
  27616. {
  27617. name: "Micro",
  27618. height: math.unit(10, "inches")
  27619. },
  27620. {
  27621. name: "Normal",
  27622. height: math.unit(6 + 4 / 12, "feet"),
  27623. default: true
  27624. },
  27625. {
  27626. name: "Large",
  27627. height: math.unit(12, "feet")
  27628. },
  27629. ]
  27630. ))
  27631. characterMakers.push(() => makeCharacter(
  27632. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27633. {
  27634. front: {
  27635. height: math.unit(5 + 7 / 12, "feet"),
  27636. weight: math.unit(185, "lb"),
  27637. name: "Front",
  27638. image: {
  27639. source: "./media/characters/aman-aquila/front.svg",
  27640. extra: 1013 / 976,
  27641. bottom: 45.6 / 1057
  27642. }
  27643. },
  27644. side: {
  27645. height: math.unit(5 + 7 / 12, "feet"),
  27646. weight: math.unit(185, "lb"),
  27647. name: "Side",
  27648. image: {
  27649. source: "./media/characters/aman-aquila/side.svg",
  27650. extra: 1054 / 1011,
  27651. bottom: 15 / 1070
  27652. }
  27653. },
  27654. back: {
  27655. height: math.unit(5 + 7 / 12, "feet"),
  27656. weight: math.unit(185, "lb"),
  27657. name: "Back",
  27658. image: {
  27659. source: "./media/characters/aman-aquila/back.svg",
  27660. extra: 1026 / 970,
  27661. bottom: 12 / 1039
  27662. }
  27663. },
  27664. head: {
  27665. height: math.unit(1.211, "feet"),
  27666. name: "Head",
  27667. image: {
  27668. source: "./media/characters/aman-aquila/head.svg",
  27669. }
  27670. },
  27671. },
  27672. [
  27673. {
  27674. name: "Minimicro",
  27675. height: math.unit(0.057, "inches")
  27676. },
  27677. {
  27678. name: "Micro",
  27679. height: math.unit(7, "inches")
  27680. },
  27681. {
  27682. name: "Mini",
  27683. height: math.unit(3 + 7 / 12, "feet")
  27684. },
  27685. {
  27686. name: "Normal",
  27687. height: math.unit(5 + 7 / 12, "feet"),
  27688. default: true
  27689. },
  27690. {
  27691. name: "Macro",
  27692. height: math.unit(157 + 7 / 12, "feet")
  27693. },
  27694. {
  27695. name: "Megamacro",
  27696. height: math.unit(1557 + 7 / 12, "feet")
  27697. },
  27698. {
  27699. name: "Gigamacro",
  27700. height: math.unit(15557 + 7 / 12, "feet")
  27701. },
  27702. ]
  27703. ))
  27704. characterMakers.push(() => makeCharacter(
  27705. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27706. {
  27707. front: {
  27708. height: math.unit(3 + 2 / 12, "inches"),
  27709. weight: math.unit(0.3, "ounces"),
  27710. name: "Front",
  27711. image: {
  27712. source: "./media/characters/hiphae/front.svg",
  27713. extra: 1931 / 1683,
  27714. bottom: 24 / 1955
  27715. }
  27716. },
  27717. },
  27718. [
  27719. {
  27720. name: "Normal",
  27721. height: math.unit(3 + 1 / 2, "inches"),
  27722. default: true
  27723. },
  27724. ]
  27725. ))
  27726. characterMakers.push(() => makeCharacter(
  27727. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27728. {
  27729. front: {
  27730. height: math.unit(5 + 10 / 12, "feet"),
  27731. weight: math.unit(165, "lb"),
  27732. name: "Front",
  27733. image: {
  27734. source: "./media/characters/nicky/front.svg",
  27735. extra: 3144 / 2886,
  27736. bottom: 45.6 / 3192
  27737. }
  27738. },
  27739. back: {
  27740. height: math.unit(5 + 10 / 12, "feet"),
  27741. weight: math.unit(165, "lb"),
  27742. name: "Back",
  27743. image: {
  27744. source: "./media/characters/nicky/back.svg",
  27745. extra: 3055 / 2804,
  27746. bottom: 28.4 / 3087
  27747. }
  27748. },
  27749. frontclothed: {
  27750. height: math.unit(5 + 10 / 12, "feet"),
  27751. weight: math.unit(165, "lb"),
  27752. name: "Front-clothed",
  27753. image: {
  27754. source: "./media/characters/nicky/front-clothed.svg",
  27755. extra: 3184.9 / 2926.9,
  27756. bottom: 86.5 / 3239.9
  27757. }
  27758. },
  27759. foot: {
  27760. height: math.unit(1.16, "feet"),
  27761. name: "Foot",
  27762. image: {
  27763. source: "./media/characters/nicky/foot.svg"
  27764. }
  27765. },
  27766. feet: {
  27767. height: math.unit(1.34, "feet"),
  27768. name: "Feet",
  27769. image: {
  27770. source: "./media/characters/nicky/feet.svg"
  27771. }
  27772. },
  27773. maw: {
  27774. height: math.unit(0.9, "feet"),
  27775. name: "Maw",
  27776. image: {
  27777. source: "./media/characters/nicky/maw.svg"
  27778. }
  27779. },
  27780. },
  27781. [
  27782. {
  27783. name: "Normal",
  27784. height: math.unit(5 + 10 / 12, "feet"),
  27785. default: true
  27786. },
  27787. {
  27788. name: "Macro",
  27789. height: math.unit(60, "feet")
  27790. },
  27791. {
  27792. name: "Megamacro",
  27793. height: math.unit(1, "mile")
  27794. },
  27795. ]
  27796. ))
  27797. characterMakers.push(() => makeCharacter(
  27798. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27799. {
  27800. side: {
  27801. height: math.unit(10, "feet"),
  27802. weight: math.unit(600, "lb"),
  27803. name: "Side",
  27804. image: {
  27805. source: "./media/characters/blair/side.svg",
  27806. bottom: 16.6 / 475,
  27807. extra: 458 / 431
  27808. }
  27809. },
  27810. },
  27811. [
  27812. {
  27813. name: "Micro",
  27814. height: math.unit(8, "inches")
  27815. },
  27816. {
  27817. name: "Normal",
  27818. height: math.unit(10, "feet"),
  27819. default: true
  27820. },
  27821. {
  27822. name: "Macro",
  27823. height: math.unit(180, "feet")
  27824. },
  27825. ]
  27826. ))
  27827. characterMakers.push(() => makeCharacter(
  27828. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27829. {
  27830. front: {
  27831. height: math.unit(5 + 4 / 12, "feet"),
  27832. weight: math.unit(125, "lb"),
  27833. name: "Front",
  27834. image: {
  27835. source: "./media/characters/fisher/front.svg",
  27836. extra: 444 / 390,
  27837. bottom: 2 / 444.8
  27838. }
  27839. },
  27840. },
  27841. [
  27842. {
  27843. name: "Micro",
  27844. height: math.unit(4, "inches")
  27845. },
  27846. {
  27847. name: "Normal",
  27848. height: math.unit(5 + 4 / 12, "feet"),
  27849. default: true
  27850. },
  27851. {
  27852. name: "Macro",
  27853. height: math.unit(100, "feet")
  27854. },
  27855. ]
  27856. ))
  27857. characterMakers.push(() => makeCharacter(
  27858. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27859. {
  27860. front: {
  27861. height: math.unit(6.71, "feet"),
  27862. weight: math.unit(200, "lb"),
  27863. preyCapacity: math.unit(1000000, "people"),
  27864. name: "Front",
  27865. image: {
  27866. source: "./media/characters/gliss/front.svg",
  27867. extra: 2347 / 2231,
  27868. bottom: 113 / 2462
  27869. }
  27870. },
  27871. hammerspaceSize: {
  27872. height: math.unit(6.71 * 717, "feet"),
  27873. weight: math.unit(200, "lb"),
  27874. preyCapacity: math.unit(1000000, "people"),
  27875. name: "Hammerspace Size",
  27876. image: {
  27877. source: "./media/characters/gliss/front.svg",
  27878. extra: 2347 / 2231,
  27879. bottom: 113 / 2462
  27880. }
  27881. },
  27882. },
  27883. [
  27884. {
  27885. name: "Normal",
  27886. height: math.unit(6.71, "feet"),
  27887. default: true
  27888. },
  27889. ]
  27890. ))
  27891. characterMakers.push(() => makeCharacter(
  27892. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27893. {
  27894. side: {
  27895. height: math.unit(1.44, "m"),
  27896. weight: math.unit(80, "kg"),
  27897. name: "Side",
  27898. image: {
  27899. source: "./media/characters/dune-anderson/side.svg",
  27900. bottom: 49 / 1426
  27901. }
  27902. },
  27903. },
  27904. [
  27905. {
  27906. name: "Wolf-sized",
  27907. height: math.unit(1.44, "meters")
  27908. },
  27909. {
  27910. name: "Normal",
  27911. height: math.unit(5.05, "meters"),
  27912. default: true
  27913. },
  27914. {
  27915. name: "Big",
  27916. height: math.unit(14.4, "meters")
  27917. },
  27918. {
  27919. name: "Huge",
  27920. height: math.unit(144, "meters")
  27921. },
  27922. ]
  27923. ))
  27924. characterMakers.push(() => makeCharacter(
  27925. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27926. {
  27927. front: {
  27928. height: math.unit(6, "feet"),
  27929. weight: math.unit(220, "lb"),
  27930. name: "Front",
  27931. image: {
  27932. source: "./media/characters/hind/front.svg",
  27933. extra: 1912/1787,
  27934. bottom: 52/1964
  27935. }
  27936. },
  27937. back: {
  27938. height: math.unit(6, "feet"),
  27939. weight: math.unit(220, "lb"),
  27940. name: "Back",
  27941. image: {
  27942. source: "./media/characters/hind/back.svg",
  27943. extra: 1901/1794,
  27944. bottom: 26/1927
  27945. }
  27946. },
  27947. },
  27948. [
  27949. {
  27950. name: "Normal",
  27951. height: math.unit(6, "feet"),
  27952. default: true
  27953. },
  27954. ]
  27955. ))
  27956. characterMakers.push(() => makeCharacter(
  27957. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27958. {
  27959. front: {
  27960. height: math.unit(2.1, "meters"),
  27961. weight: math.unit(150, "lb"),
  27962. name: "Front",
  27963. image: {
  27964. source: "./media/characters/tharquench-sizestealer/front.svg",
  27965. extra: 1605/1470,
  27966. bottom: 36/1641
  27967. }
  27968. },
  27969. frontAlt: {
  27970. height: math.unit(2.1, "meters"),
  27971. weight: math.unit(150, "lb"),
  27972. name: "Front (Alt)",
  27973. image: {
  27974. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27975. extra: 2318 / 2063,
  27976. bottom: 93.4 / 2410
  27977. }
  27978. },
  27979. },
  27980. [
  27981. {
  27982. name: "Nano",
  27983. height: math.unit(1, "mm")
  27984. },
  27985. {
  27986. name: "Micro",
  27987. height: math.unit(1, "cm")
  27988. },
  27989. {
  27990. name: "Normal",
  27991. height: math.unit(2.1, "meters"),
  27992. default: true
  27993. },
  27994. ]
  27995. ))
  27996. characterMakers.push(() => makeCharacter(
  27997. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27998. {
  27999. front: {
  28000. height: math.unit(7 + 5 / 12, "feet"),
  28001. weight: math.unit(357, "lb"),
  28002. name: "Front",
  28003. image: {
  28004. source: "./media/characters/solex-draconov/front.svg",
  28005. extra: 1993 / 1865,
  28006. bottom: 117 / 2111
  28007. }
  28008. },
  28009. },
  28010. [
  28011. {
  28012. name: "Natural Height",
  28013. height: math.unit(7 + 5 / 12, "feet"),
  28014. default: true
  28015. },
  28016. {
  28017. name: "Macro",
  28018. height: math.unit(350, "feet")
  28019. },
  28020. {
  28021. name: "Macro+",
  28022. height: math.unit(1000, "feet")
  28023. },
  28024. {
  28025. name: "Megamacro",
  28026. height: math.unit(20, "km")
  28027. },
  28028. {
  28029. name: "Megamacro+",
  28030. height: math.unit(1000, "km")
  28031. },
  28032. {
  28033. name: "Gigamacro",
  28034. height: math.unit(2.5, "Gm")
  28035. },
  28036. {
  28037. name: "Teramacro",
  28038. height: math.unit(15, "Tm")
  28039. },
  28040. {
  28041. name: "Galactic",
  28042. height: math.unit(30, "Zm")
  28043. },
  28044. {
  28045. name: "Universal",
  28046. height: math.unit(21000, "Ym")
  28047. },
  28048. {
  28049. name: "Omniversal",
  28050. height: math.unit(9.861e50, "Ym")
  28051. },
  28052. {
  28053. name: "Existential",
  28054. height: math.unit(1e300, "meters")
  28055. },
  28056. ]
  28057. ))
  28058. characterMakers.push(() => makeCharacter(
  28059. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  28060. {
  28061. side: {
  28062. height: math.unit(25, "feet"),
  28063. weight: math.unit(90000, "lb"),
  28064. name: "Side",
  28065. image: {
  28066. source: "./media/characters/mandarax/side.svg",
  28067. extra: 614 / 332,
  28068. bottom: 55 / 630
  28069. }
  28070. },
  28071. lounging: {
  28072. height: math.unit(15.4, "feet"),
  28073. weight: math.unit(90000, "lb"),
  28074. name: "Lounging",
  28075. image: {
  28076. source: "./media/characters/mandarax/lounging.svg",
  28077. extra: 817/609,
  28078. bottom: 685/1502
  28079. }
  28080. },
  28081. head: {
  28082. height: math.unit(11.4, "feet"),
  28083. name: "Head",
  28084. image: {
  28085. source: "./media/characters/mandarax/head.svg"
  28086. }
  28087. },
  28088. belly: {
  28089. height: math.unit(33, "feet"),
  28090. name: "Belly",
  28091. preyCapacity: math.unit(500, "people"),
  28092. image: {
  28093. source: "./media/characters/mandarax/belly.svg"
  28094. }
  28095. },
  28096. dick: {
  28097. height: math.unit(8.46, "feet"),
  28098. name: "Dick",
  28099. image: {
  28100. source: "./media/characters/mandarax/dick.svg"
  28101. }
  28102. },
  28103. top: {
  28104. height: math.unit(28, "meters"),
  28105. name: "Top",
  28106. image: {
  28107. source: "./media/characters/mandarax/top.svg"
  28108. }
  28109. },
  28110. },
  28111. [
  28112. {
  28113. name: "Normal",
  28114. height: math.unit(25, "feet"),
  28115. default: true
  28116. },
  28117. ]
  28118. ))
  28119. characterMakers.push(() => makeCharacter(
  28120. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  28121. {
  28122. front: {
  28123. height: math.unit(5, "feet"),
  28124. weight: math.unit(90, "lb"),
  28125. name: "Front",
  28126. image: {
  28127. source: "./media/characters/pixil/front.svg",
  28128. extra: 2000 / 1618,
  28129. bottom: 12.3 / 2011
  28130. }
  28131. },
  28132. },
  28133. [
  28134. {
  28135. name: "Normal",
  28136. height: math.unit(5, "feet"),
  28137. default: true
  28138. },
  28139. {
  28140. name: "Megamacro",
  28141. height: math.unit(10, "miles"),
  28142. },
  28143. ]
  28144. ))
  28145. characterMakers.push(() => makeCharacter(
  28146. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  28147. {
  28148. front: {
  28149. height: math.unit(7 + 2 / 12, "feet"),
  28150. weight: math.unit(200, "lb"),
  28151. name: "Front",
  28152. image: {
  28153. source: "./media/characters/angel/front.svg",
  28154. extra: 1946/1840,
  28155. bottom: 30/1976
  28156. }
  28157. },
  28158. },
  28159. [
  28160. {
  28161. name: "Normal",
  28162. height: math.unit(7 + 2 / 12, "feet"),
  28163. default: true
  28164. },
  28165. {
  28166. name: "Macro",
  28167. height: math.unit(1000, "feet")
  28168. },
  28169. {
  28170. name: "Megamacro",
  28171. height: math.unit(2, "miles")
  28172. },
  28173. {
  28174. name: "Gigamacro",
  28175. height: math.unit(20, "earths")
  28176. },
  28177. ]
  28178. ))
  28179. characterMakers.push(() => makeCharacter(
  28180. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  28181. {
  28182. front: {
  28183. height: math.unit(5, "feet"),
  28184. weight: math.unit(180, "lb"),
  28185. name: "Front",
  28186. image: {
  28187. source: "./media/characters/mekana/front.svg",
  28188. extra: 1671 / 1605,
  28189. bottom: 3.5 / 1691
  28190. }
  28191. },
  28192. side: {
  28193. height: math.unit(5, "feet"),
  28194. weight: math.unit(180, "lb"),
  28195. name: "Side",
  28196. image: {
  28197. source: "./media/characters/mekana/side.svg",
  28198. extra: 1671 / 1605,
  28199. bottom: 3.5 / 1691
  28200. }
  28201. },
  28202. back: {
  28203. height: math.unit(5, "feet"),
  28204. weight: math.unit(180, "lb"),
  28205. name: "Back",
  28206. image: {
  28207. source: "./media/characters/mekana/back.svg",
  28208. extra: 1671 / 1605,
  28209. bottom: 3.5 / 1691
  28210. }
  28211. },
  28212. },
  28213. [
  28214. {
  28215. name: "Normal",
  28216. height: math.unit(5, "feet"),
  28217. default: true
  28218. },
  28219. ]
  28220. ))
  28221. characterMakers.push(() => makeCharacter(
  28222. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  28223. {
  28224. front: {
  28225. height: math.unit(4 + 6 / 12, "feet"),
  28226. weight: math.unit(80, "lb"),
  28227. name: "Front",
  28228. image: {
  28229. source: "./media/characters/pixie/front.svg",
  28230. extra: 1924 / 1825,
  28231. bottom: 22.4 / 1946
  28232. }
  28233. },
  28234. },
  28235. [
  28236. {
  28237. name: "Normal",
  28238. height: math.unit(4 + 6 / 12, "feet"),
  28239. default: true
  28240. },
  28241. {
  28242. name: "Macro",
  28243. height: math.unit(40, "feet")
  28244. },
  28245. ]
  28246. ))
  28247. characterMakers.push(() => makeCharacter(
  28248. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  28249. {
  28250. front: {
  28251. height: math.unit(2.1, "meters"),
  28252. weight: math.unit(200, "lb"),
  28253. name: "Front",
  28254. image: {
  28255. source: "./media/characters/the-lascivious/front.svg",
  28256. extra: 1 / 0.893,
  28257. bottom: 3.5 / 573.7
  28258. }
  28259. },
  28260. },
  28261. [
  28262. {
  28263. name: "Human Scale",
  28264. height: math.unit(2.1, "meters")
  28265. },
  28266. {
  28267. name: "Wolxi Scale",
  28268. height: math.unit(46.2, "m"),
  28269. default: true
  28270. },
  28271. {
  28272. name: "Boinker of Buildings",
  28273. height: math.unit(10, "km")
  28274. },
  28275. {
  28276. name: "Shagger of Skyscrapers",
  28277. height: math.unit(40, "km")
  28278. },
  28279. {
  28280. name: "Banger of Boroughs",
  28281. height: math.unit(4000, "km")
  28282. },
  28283. {
  28284. name: "Screwer of States",
  28285. height: math.unit(100000, "km")
  28286. },
  28287. {
  28288. name: "Pounder of Planets",
  28289. height: math.unit(2000000, "km")
  28290. },
  28291. ]
  28292. ))
  28293. characterMakers.push(() => makeCharacter(
  28294. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  28295. {
  28296. front: {
  28297. height: math.unit(6, "feet"),
  28298. weight: math.unit(150, "lb"),
  28299. name: "Front",
  28300. image: {
  28301. source: "./media/characters/aj/front.svg",
  28302. extra: 2039 / 1562,
  28303. bottom: 40 / 2079
  28304. }
  28305. },
  28306. },
  28307. [
  28308. {
  28309. name: "Normal",
  28310. height: math.unit(11 + 6 / 12, "feet"),
  28311. default: true
  28312. },
  28313. {
  28314. name: "Megamacro",
  28315. height: math.unit(60, "megameters")
  28316. },
  28317. ]
  28318. ))
  28319. characterMakers.push(() => makeCharacter(
  28320. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  28321. {
  28322. side: {
  28323. height: math.unit(31 + 8 / 12, "feet"),
  28324. weight: math.unit(75000, "kg"),
  28325. name: "Side",
  28326. image: {
  28327. source: "./media/characters/koros/side.svg",
  28328. extra: 1442 / 1297,
  28329. bottom: 122.7 / 1562
  28330. }
  28331. },
  28332. dicksKingsCrown: {
  28333. height: math.unit(6, "feet"),
  28334. name: "Dicks (King's Crown)",
  28335. image: {
  28336. source: "./media/characters/koros/dicks-kings-crown.svg"
  28337. }
  28338. },
  28339. dicksTailSet: {
  28340. height: math.unit(3, "feet"),
  28341. name: "Dicks (Tail Set)",
  28342. image: {
  28343. source: "./media/characters/koros/dicks-tail-set.svg"
  28344. }
  28345. },
  28346. dickCumming: {
  28347. height: math.unit(7.98, "feet"),
  28348. name: "Dick (Cumming)",
  28349. image: {
  28350. source: "./media/characters/koros/dick-cumming.svg"
  28351. }
  28352. },
  28353. dicksBack: {
  28354. height: math.unit(5.9, "feet"),
  28355. name: "Dicks (Back)",
  28356. image: {
  28357. source: "./media/characters/koros/dicks-back.svg"
  28358. }
  28359. },
  28360. dicksFront: {
  28361. height: math.unit(3.72, "feet"),
  28362. name: "Dicks (Front)",
  28363. image: {
  28364. source: "./media/characters/koros/dicks-front.svg"
  28365. }
  28366. },
  28367. dicksPeeking: {
  28368. height: math.unit(3.0, "feet"),
  28369. name: "Dicks (Peeking)",
  28370. image: {
  28371. source: "./media/characters/koros/dicks-peeking.svg"
  28372. }
  28373. },
  28374. eye: {
  28375. height: math.unit(1.7, "feet"),
  28376. name: "Eye",
  28377. image: {
  28378. source: "./media/characters/koros/eye.svg"
  28379. }
  28380. },
  28381. headFront: {
  28382. height: math.unit(11.69, "feet"),
  28383. name: "Head (Front)",
  28384. image: {
  28385. source: "./media/characters/koros/head-front.svg"
  28386. }
  28387. },
  28388. headSide: {
  28389. height: math.unit(14, "feet"),
  28390. name: "Head (Side)",
  28391. image: {
  28392. source: "./media/characters/koros/head-side.svg"
  28393. }
  28394. },
  28395. leg: {
  28396. height: math.unit(17, "feet"),
  28397. name: "Leg",
  28398. image: {
  28399. source: "./media/characters/koros/leg.svg"
  28400. }
  28401. },
  28402. mawSide: {
  28403. height: math.unit(12.8, "feet"),
  28404. name: "Maw (Side)",
  28405. image: {
  28406. source: "./media/characters/koros/maw-side.svg"
  28407. }
  28408. },
  28409. mawSpitting: {
  28410. height: math.unit(17, "feet"),
  28411. name: "Maw (Spitting)",
  28412. image: {
  28413. source: "./media/characters/koros/maw-spitting.svg"
  28414. }
  28415. },
  28416. slit: {
  28417. height: math.unit(2.8, "feet"),
  28418. name: "Slit",
  28419. image: {
  28420. source: "./media/characters/koros/slit.svg"
  28421. }
  28422. },
  28423. stomach: {
  28424. height: math.unit(6.8, "feet"),
  28425. preyCapacity: math.unit(20, "people"),
  28426. name: "Stomach",
  28427. image: {
  28428. source: "./media/characters/koros/stomach.svg"
  28429. }
  28430. },
  28431. wingspanBottom: {
  28432. height: math.unit(114, "feet"),
  28433. name: "Wingspan (Bottom)",
  28434. image: {
  28435. source: "./media/characters/koros/wingspan-bottom.svg"
  28436. }
  28437. },
  28438. wingspanTop: {
  28439. height: math.unit(104, "feet"),
  28440. name: "Wingspan (Top)",
  28441. image: {
  28442. source: "./media/characters/koros/wingspan-top.svg"
  28443. }
  28444. },
  28445. },
  28446. [
  28447. {
  28448. name: "Normal",
  28449. height: math.unit(31 + 8 / 12, "feet"),
  28450. default: true
  28451. },
  28452. ]
  28453. ))
  28454. characterMakers.push(() => makeCharacter(
  28455. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  28456. {
  28457. front: {
  28458. height: math.unit(18 + 5 / 12, "feet"),
  28459. weight: math.unit(3750, "kg"),
  28460. name: "Front",
  28461. image: {
  28462. source: "./media/characters/vexx/front.svg",
  28463. extra: 426 / 396,
  28464. bottom: 31.5 / 458
  28465. }
  28466. },
  28467. maw: {
  28468. height: math.unit(6, "feet"),
  28469. name: "Maw",
  28470. image: {
  28471. source: "./media/characters/vexx/maw.svg"
  28472. }
  28473. },
  28474. },
  28475. [
  28476. {
  28477. name: "Normal",
  28478. height: math.unit(18 + 5 / 12, "feet"),
  28479. default: true
  28480. },
  28481. ]
  28482. ))
  28483. characterMakers.push(() => makeCharacter(
  28484. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  28485. {
  28486. front: {
  28487. height: math.unit(17 + 6 / 12, "feet"),
  28488. weight: math.unit(150, "lb"),
  28489. name: "Front",
  28490. image: {
  28491. source: "./media/characters/baadra/front.svg",
  28492. extra: 1694/1553,
  28493. bottom: 179/1873
  28494. }
  28495. },
  28496. frontAlt: {
  28497. height: math.unit(17 + 6 / 12, "feet"),
  28498. weight: math.unit(150, "lb"),
  28499. name: "Front (Alt)",
  28500. image: {
  28501. source: "./media/characters/baadra/front-alt.svg",
  28502. extra: 3137 / 2890,
  28503. bottom: 168.4 / 3305
  28504. }
  28505. },
  28506. back: {
  28507. height: math.unit(17 + 6 / 12, "feet"),
  28508. weight: math.unit(150, "lb"),
  28509. name: "Back",
  28510. image: {
  28511. source: "./media/characters/baadra/back.svg",
  28512. extra: 3142 / 2890,
  28513. bottom: 220 / 3371
  28514. }
  28515. },
  28516. head: {
  28517. height: math.unit(5.45, "feet"),
  28518. name: "Head",
  28519. image: {
  28520. source: "./media/characters/baadra/head.svg"
  28521. }
  28522. },
  28523. headAngry: {
  28524. height: math.unit(4.95, "feet"),
  28525. name: "Head (Angry)",
  28526. image: {
  28527. source: "./media/characters/baadra/head-angry.svg"
  28528. }
  28529. },
  28530. headOpen: {
  28531. height: math.unit(6, "feet"),
  28532. name: "Head (Open)",
  28533. image: {
  28534. source: "./media/characters/baadra/head-open.svg"
  28535. }
  28536. },
  28537. },
  28538. [
  28539. {
  28540. name: "Normal",
  28541. height: math.unit(17 + 6 / 12, "feet"),
  28542. default: true
  28543. },
  28544. ]
  28545. ))
  28546. characterMakers.push(() => makeCharacter(
  28547. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  28548. {
  28549. front: {
  28550. height: math.unit(7 + 3 / 12, "feet"),
  28551. weight: math.unit(180, "lb"),
  28552. name: "Front",
  28553. image: {
  28554. source: "./media/characters/juri/front.svg",
  28555. extra: 1401 / 1237,
  28556. bottom: 18.5 / 1418
  28557. }
  28558. },
  28559. side: {
  28560. height: math.unit(7 + 3 / 12, "feet"),
  28561. weight: math.unit(180, "lb"),
  28562. name: "Side",
  28563. image: {
  28564. source: "./media/characters/juri/side.svg",
  28565. extra: 1424 / 1242,
  28566. bottom: 18.5 / 1447
  28567. }
  28568. },
  28569. sitting: {
  28570. height: math.unit(6, "feet"),
  28571. weight: math.unit(180, "lb"),
  28572. name: "Sitting",
  28573. image: {
  28574. source: "./media/characters/juri/sitting.svg",
  28575. extra: 1270 / 1143,
  28576. bottom: 100 / 1343
  28577. }
  28578. },
  28579. back: {
  28580. height: math.unit(7 + 3 / 12, "feet"),
  28581. weight: math.unit(180, "lb"),
  28582. name: "Back",
  28583. image: {
  28584. source: "./media/characters/juri/back.svg",
  28585. extra: 1377 / 1240,
  28586. bottom: 23.7 / 1405
  28587. }
  28588. },
  28589. maw: {
  28590. height: math.unit(2.8, "feet"),
  28591. name: "Maw",
  28592. image: {
  28593. source: "./media/characters/juri/maw.svg"
  28594. }
  28595. },
  28596. stomach: {
  28597. height: math.unit(0.89, "feet"),
  28598. preyCapacity: math.unit(4, "liters"),
  28599. name: "Stomach",
  28600. image: {
  28601. source: "./media/characters/juri/stomach.svg"
  28602. }
  28603. },
  28604. },
  28605. [
  28606. {
  28607. name: "Normal",
  28608. height: math.unit(7 + 3 / 12, "feet"),
  28609. default: true
  28610. },
  28611. ]
  28612. ))
  28613. characterMakers.push(() => makeCharacter(
  28614. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28615. {
  28616. fox: {
  28617. height: math.unit(5 + 6 / 12, "feet"),
  28618. weight: math.unit(140, "lb"),
  28619. name: "Fox",
  28620. image: {
  28621. source: "./media/characters/maxene-sita/fox.svg",
  28622. extra: 146 / 138,
  28623. bottom: 2.1 / 148.19
  28624. }
  28625. },
  28626. foxLaying: {
  28627. height: math.unit(1.70, "feet"),
  28628. weight: math.unit(140, "lb"),
  28629. name: "Fox (Laying)",
  28630. image: {
  28631. source: "./media/characters/maxene-sita/fox-laying.svg",
  28632. extra: 910 / 572,
  28633. bottom: 71 / 981
  28634. }
  28635. },
  28636. kitsune: {
  28637. height: math.unit(10, "feet"),
  28638. weight: math.unit(800, "lb"),
  28639. name: "Kitsune",
  28640. image: {
  28641. source: "./media/characters/maxene-sita/kitsune.svg",
  28642. extra: 185 / 176,
  28643. bottom: 4.7 / 189.9
  28644. }
  28645. },
  28646. hellhound: {
  28647. height: math.unit(10, "feet"),
  28648. weight: math.unit(700, "lb"),
  28649. name: "Hellhound",
  28650. image: {
  28651. source: "./media/characters/maxene-sita/hellhound.svg",
  28652. extra: 1600 / 1545,
  28653. bottom: 81 / 1681
  28654. }
  28655. },
  28656. },
  28657. [
  28658. {
  28659. name: "Normal",
  28660. height: math.unit(5 + 6 / 12, "feet"),
  28661. default: true
  28662. },
  28663. ]
  28664. ))
  28665. characterMakers.push(() => makeCharacter(
  28666. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28667. {
  28668. front: {
  28669. height: math.unit(3 + 4 / 12, "feet"),
  28670. weight: math.unit(70, "lb"),
  28671. name: "Front",
  28672. image: {
  28673. source: "./media/characters/maia/front.svg",
  28674. extra: 227 / 219.5,
  28675. bottom: 40 / 267
  28676. }
  28677. },
  28678. back: {
  28679. height: math.unit(3 + 4 / 12, "feet"),
  28680. weight: math.unit(70, "lb"),
  28681. name: "Back",
  28682. image: {
  28683. source: "./media/characters/maia/back.svg",
  28684. extra: 237 / 225
  28685. }
  28686. },
  28687. },
  28688. [
  28689. {
  28690. name: "Normal",
  28691. height: math.unit(3 + 4 / 12, "feet"),
  28692. default: true
  28693. },
  28694. ]
  28695. ))
  28696. characterMakers.push(() => makeCharacter(
  28697. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28698. {
  28699. front: {
  28700. height: math.unit(5 + 10 / 12, "feet"),
  28701. weight: math.unit(197, "lb"),
  28702. name: "Front",
  28703. image: {
  28704. source: "./media/characters/jabaro/front.svg",
  28705. extra: 225 / 216,
  28706. bottom: 5.06 / 230
  28707. }
  28708. },
  28709. back: {
  28710. height: math.unit(5 + 10 / 12, "feet"),
  28711. weight: math.unit(197, "lb"),
  28712. name: "Back",
  28713. image: {
  28714. source: "./media/characters/jabaro/back.svg",
  28715. extra: 225 / 219,
  28716. bottom: 1.9 / 227
  28717. }
  28718. },
  28719. },
  28720. [
  28721. {
  28722. name: "Normal",
  28723. height: math.unit(5 + 10 / 12, "feet"),
  28724. default: true
  28725. },
  28726. ]
  28727. ))
  28728. characterMakers.push(() => makeCharacter(
  28729. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28730. {
  28731. front: {
  28732. height: math.unit(5 + 8 / 12, "feet"),
  28733. weight: math.unit(139, "lb"),
  28734. name: "Front",
  28735. image: {
  28736. source: "./media/characters/risa/front.svg",
  28737. extra: 270 / 260,
  28738. bottom: 11.2 / 282
  28739. }
  28740. },
  28741. back: {
  28742. height: math.unit(5 + 8 / 12, "feet"),
  28743. weight: math.unit(139, "lb"),
  28744. name: "Back",
  28745. image: {
  28746. source: "./media/characters/risa/back.svg",
  28747. extra: 264 / 255,
  28748. bottom: 4 / 268
  28749. }
  28750. },
  28751. },
  28752. [
  28753. {
  28754. name: "Normal",
  28755. height: math.unit(5 + 8 / 12, "feet"),
  28756. default: true
  28757. },
  28758. ]
  28759. ))
  28760. characterMakers.push(() => makeCharacter(
  28761. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28762. {
  28763. front: {
  28764. height: math.unit(2 + 11 / 12, "feet"),
  28765. weight: math.unit(30, "lb"),
  28766. name: "Front",
  28767. image: {
  28768. source: "./media/characters/weatley/front.svg",
  28769. bottom: 10.7 / 414,
  28770. extra: 403.5 / 362
  28771. }
  28772. },
  28773. back: {
  28774. height: math.unit(2 + 11 / 12, "feet"),
  28775. weight: math.unit(30, "lb"),
  28776. name: "Back",
  28777. image: {
  28778. source: "./media/characters/weatley/back.svg",
  28779. bottom: 10.7 / 414,
  28780. extra: 403.5 / 362
  28781. }
  28782. },
  28783. },
  28784. [
  28785. {
  28786. name: "Normal",
  28787. height: math.unit(2 + 11 / 12, "feet"),
  28788. default: true
  28789. },
  28790. ]
  28791. ))
  28792. characterMakers.push(() => makeCharacter(
  28793. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28794. {
  28795. front: {
  28796. height: math.unit(5 + 2 / 12, "feet"),
  28797. weight: math.unit(50, "kg"),
  28798. name: "Front",
  28799. image: {
  28800. source: "./media/characters/mercury-crescent/front.svg",
  28801. extra: 1088 / 1033,
  28802. bottom: 18.9 / 1109
  28803. }
  28804. },
  28805. },
  28806. [
  28807. {
  28808. name: "Normal",
  28809. height: math.unit(5 + 2 / 12, "feet"),
  28810. default: true
  28811. },
  28812. ]
  28813. ))
  28814. characterMakers.push(() => makeCharacter(
  28815. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28816. {
  28817. front: {
  28818. height: math.unit(2, "feet"),
  28819. weight: math.unit(15, "kg"),
  28820. name: "Front",
  28821. image: {
  28822. source: "./media/characters/diamond-jones/front.svg",
  28823. extra: 727/723,
  28824. bottom: 46/773
  28825. }
  28826. },
  28827. },
  28828. [
  28829. {
  28830. name: "Normal",
  28831. height: math.unit(2, "feet"),
  28832. default: true
  28833. },
  28834. ]
  28835. ))
  28836. characterMakers.push(() => makeCharacter(
  28837. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28838. {
  28839. front: {
  28840. height: math.unit(3, "feet"),
  28841. weight: math.unit(30, "kg"),
  28842. name: "Front",
  28843. image: {
  28844. source: "./media/characters/sweet-bit/front.svg",
  28845. extra: 675 / 567,
  28846. bottom: 27.7 / 703
  28847. }
  28848. },
  28849. },
  28850. [
  28851. {
  28852. name: "Normal",
  28853. height: math.unit(3, "feet"),
  28854. default: true
  28855. },
  28856. ]
  28857. ))
  28858. characterMakers.push(() => makeCharacter(
  28859. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28860. {
  28861. side: {
  28862. height: math.unit(9.178, "feet"),
  28863. weight: math.unit(500, "lb"),
  28864. name: "Side",
  28865. image: {
  28866. source: "./media/characters/umbrazen/side.svg",
  28867. extra: 1730 / 1473,
  28868. bottom: 34.6 / 1765
  28869. }
  28870. },
  28871. },
  28872. [
  28873. {
  28874. name: "Normal",
  28875. height: math.unit(9.178, "feet"),
  28876. default: true
  28877. },
  28878. ]
  28879. ))
  28880. characterMakers.push(() => makeCharacter(
  28881. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28882. {
  28883. front: {
  28884. height: math.unit(10, "feet"),
  28885. weight: math.unit(750, "lb"),
  28886. name: "Front",
  28887. image: {
  28888. source: "./media/characters/arlist/front.svg",
  28889. extra: 961 / 778,
  28890. bottom: 6.2 / 986
  28891. }
  28892. },
  28893. },
  28894. [
  28895. {
  28896. name: "Normal",
  28897. height: math.unit(10, "feet"),
  28898. default: true
  28899. },
  28900. ]
  28901. ))
  28902. characterMakers.push(() => makeCharacter(
  28903. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28904. {
  28905. front: {
  28906. height: math.unit(5 + 1 / 12, "feet"),
  28907. weight: math.unit(110, "lb"),
  28908. name: "Front",
  28909. image: {
  28910. source: "./media/characters/aradel/front.svg",
  28911. extra: 324 / 303,
  28912. bottom: 3.6 / 329.4
  28913. }
  28914. },
  28915. },
  28916. [
  28917. {
  28918. name: "Normal",
  28919. height: math.unit(5 + 1 / 12, "feet"),
  28920. default: true
  28921. },
  28922. ]
  28923. ))
  28924. characterMakers.push(() => makeCharacter(
  28925. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28926. {
  28927. dressed: {
  28928. height: math.unit(3 + 8 / 12, "feet"),
  28929. weight: math.unit(50, "lb"),
  28930. name: "Dressed",
  28931. image: {
  28932. source: "./media/characters/serryn/dressed.svg",
  28933. extra: 1792 / 1656,
  28934. bottom: 43.5 / 1840
  28935. }
  28936. },
  28937. nude: {
  28938. height: math.unit(3 + 8 / 12, "feet"),
  28939. weight: math.unit(50, "lb"),
  28940. name: "Nude",
  28941. image: {
  28942. source: "./media/characters/serryn/nude.svg",
  28943. extra: 1792 / 1656,
  28944. bottom: 43.5 / 1840
  28945. }
  28946. },
  28947. },
  28948. [
  28949. {
  28950. name: "Normal",
  28951. height: math.unit(3 + 8 / 12, "feet"),
  28952. default: true
  28953. },
  28954. ]
  28955. ))
  28956. characterMakers.push(() => makeCharacter(
  28957. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28958. {
  28959. front: {
  28960. height: math.unit(7 + 10 / 12, "feet"),
  28961. weight: math.unit(255, "lb"),
  28962. name: "Front",
  28963. image: {
  28964. source: "./media/characters/xavier-thyme/front.svg",
  28965. extra: 3733 / 3642,
  28966. bottom: 131 / 3869
  28967. }
  28968. },
  28969. frontRaven: {
  28970. height: math.unit(7 + 10 / 12, "feet"),
  28971. weight: math.unit(255, "lb"),
  28972. name: "Front (Raven)",
  28973. image: {
  28974. source: "./media/characters/xavier-thyme/front-raven.svg",
  28975. extra: 4385 / 3642,
  28976. bottom: 131 / 4517
  28977. }
  28978. },
  28979. },
  28980. [
  28981. {
  28982. name: "Normal",
  28983. height: math.unit(7 + 10 / 12, "feet"),
  28984. default: true
  28985. },
  28986. ]
  28987. ))
  28988. characterMakers.push(() => makeCharacter(
  28989. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28990. {
  28991. front: {
  28992. height: math.unit(1.6, "m"),
  28993. weight: math.unit(50, "kg"),
  28994. name: "Front",
  28995. image: {
  28996. source: "./media/characters/kiki/front.svg",
  28997. extra: 4682 / 3610,
  28998. bottom: 115 / 4777
  28999. }
  29000. },
  29001. },
  29002. [
  29003. {
  29004. name: "Normal",
  29005. height: math.unit(1.6, "meters"),
  29006. default: true
  29007. },
  29008. ]
  29009. ))
  29010. characterMakers.push(() => makeCharacter(
  29011. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  29012. {
  29013. front: {
  29014. height: math.unit(50, "m"),
  29015. weight: math.unit(500, "tonnes"),
  29016. name: "Front",
  29017. image: {
  29018. source: "./media/characters/ryoko/front.svg",
  29019. extra: 4632 / 3926,
  29020. bottom: 193 / 4823
  29021. }
  29022. },
  29023. },
  29024. [
  29025. {
  29026. name: "Normal",
  29027. height: math.unit(50, "meters"),
  29028. default: true
  29029. },
  29030. ]
  29031. ))
  29032. characterMakers.push(() => makeCharacter(
  29033. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  29034. {
  29035. front: {
  29036. height: math.unit(30, "m"),
  29037. weight: math.unit(22, "tonnes"),
  29038. name: "Front",
  29039. image: {
  29040. source: "./media/characters/elio/front.svg",
  29041. extra: 4582 / 3720,
  29042. bottom: 236 / 4828
  29043. }
  29044. },
  29045. },
  29046. [
  29047. {
  29048. name: "Normal",
  29049. height: math.unit(30, "meters"),
  29050. default: true
  29051. },
  29052. ]
  29053. ))
  29054. characterMakers.push(() => makeCharacter(
  29055. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  29056. {
  29057. front: {
  29058. height: math.unit(6 + 3 / 12, "feet"),
  29059. weight: math.unit(120, "lb"),
  29060. name: "Front",
  29061. image: {
  29062. source: "./media/characters/azura/front.svg",
  29063. extra: 1149 / 1135,
  29064. bottom: 45 / 1194
  29065. }
  29066. },
  29067. frontClothed: {
  29068. height: math.unit(6 + 3 / 12, "feet"),
  29069. weight: math.unit(120, "lb"),
  29070. name: "Front (Clothed)",
  29071. image: {
  29072. source: "./media/characters/azura/front-clothed.svg",
  29073. extra: 1149 / 1135,
  29074. bottom: 45 / 1194
  29075. }
  29076. },
  29077. },
  29078. [
  29079. {
  29080. name: "Normal",
  29081. height: math.unit(6 + 3 / 12, "feet"),
  29082. default: true
  29083. },
  29084. {
  29085. name: "Macro",
  29086. height: math.unit(20 + 6 / 12, "feet")
  29087. },
  29088. {
  29089. name: "Megamacro",
  29090. height: math.unit(12, "miles")
  29091. },
  29092. {
  29093. name: "Gigamacro",
  29094. height: math.unit(10000, "miles")
  29095. },
  29096. {
  29097. name: "Teramacro",
  29098. height: math.unit(900000, "miles")
  29099. },
  29100. ]
  29101. ))
  29102. characterMakers.push(() => makeCharacter(
  29103. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  29104. {
  29105. front: {
  29106. height: math.unit(12, "feet"),
  29107. weight: math.unit(1, "ton"),
  29108. capacity: math.unit(660000, "gallons"),
  29109. name: "Front",
  29110. image: {
  29111. source: "./media/characters/zeus/front.svg",
  29112. extra: 5005 / 4717,
  29113. bottom: 363 / 5388
  29114. }
  29115. },
  29116. },
  29117. [
  29118. {
  29119. name: "Normal",
  29120. height: math.unit(12, "feet")
  29121. },
  29122. {
  29123. name: "Preferred Size",
  29124. height: math.unit(0.5, "miles"),
  29125. default: true
  29126. },
  29127. {
  29128. name: "Giga Horse",
  29129. height: math.unit(300, "miles")
  29130. },
  29131. {
  29132. name: "Riding Planets",
  29133. height: math.unit(30, "megameters")
  29134. },
  29135. {
  29136. name: "Cosmic Giant",
  29137. height: math.unit(3, "zettameters")
  29138. },
  29139. {
  29140. name: "Breeding God",
  29141. height: math.unit(9.92e22, "yottameters")
  29142. },
  29143. ]
  29144. ))
  29145. characterMakers.push(() => makeCharacter(
  29146. { name: "Fang", species: ["monster"], tags: ["feral"] },
  29147. {
  29148. side: {
  29149. height: math.unit(9, "feet"),
  29150. weight: math.unit(1500, "kg"),
  29151. name: "Side",
  29152. image: {
  29153. source: "./media/characters/fang/side.svg",
  29154. extra: 924 / 866,
  29155. bottom: 47.5 / 972.3
  29156. }
  29157. },
  29158. },
  29159. [
  29160. {
  29161. name: "Normal",
  29162. height: math.unit(9, "feet"),
  29163. default: true
  29164. },
  29165. {
  29166. name: "Macro",
  29167. height: math.unit(75 + 6 / 12, "feet")
  29168. },
  29169. {
  29170. name: "Teramacro",
  29171. height: math.unit(50000, "miles")
  29172. },
  29173. ]
  29174. ))
  29175. characterMakers.push(() => makeCharacter(
  29176. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  29177. {
  29178. front: {
  29179. height: math.unit(10, "feet"),
  29180. weight: math.unit(2, "tons"),
  29181. name: "Front",
  29182. image: {
  29183. source: "./media/characters/rekhit/front.svg",
  29184. extra: 2796 / 2590,
  29185. bottom: 225 / 3022
  29186. }
  29187. },
  29188. },
  29189. [
  29190. {
  29191. name: "Normal",
  29192. height: math.unit(10, "feet"),
  29193. default: true
  29194. },
  29195. {
  29196. name: "Macro",
  29197. height: math.unit(500, "feet")
  29198. },
  29199. ]
  29200. ))
  29201. characterMakers.push(() => makeCharacter(
  29202. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  29203. {
  29204. front: {
  29205. height: math.unit(7 + 6.451 / 12, "feet"),
  29206. weight: math.unit(310, "lb"),
  29207. name: "Front",
  29208. image: {
  29209. source: "./media/characters/dahlia-verrick/front.svg",
  29210. extra: 1488 / 1365,
  29211. bottom: 6.2 / 1495
  29212. }
  29213. },
  29214. back: {
  29215. height: math.unit(7 + 6.451 / 12, "feet"),
  29216. weight: math.unit(310, "lb"),
  29217. name: "Back",
  29218. image: {
  29219. source: "./media/characters/dahlia-verrick/back.svg",
  29220. extra: 1472 / 1351,
  29221. bottom: 5.28 / 1477
  29222. }
  29223. },
  29224. frontBusiness: {
  29225. height: math.unit(7 + 6.451 / 12, "feet"),
  29226. weight: math.unit(200, "lb"),
  29227. name: "Front (Business)",
  29228. image: {
  29229. source: "./media/characters/dahlia-verrick/front-business.svg",
  29230. extra: 1478 / 1381,
  29231. bottom: 5.5 / 1484
  29232. }
  29233. },
  29234. frontCasual: {
  29235. height: math.unit(7 + 6.451 / 12, "feet"),
  29236. weight: math.unit(200, "lb"),
  29237. name: "Front (Casual)",
  29238. image: {
  29239. source: "./media/characters/dahlia-verrick/front-casual.svg",
  29240. extra: 1478 / 1381,
  29241. bottom: 5.5 / 1484
  29242. }
  29243. },
  29244. },
  29245. [
  29246. {
  29247. name: "Travel-Sized",
  29248. height: math.unit(7.45, "inches")
  29249. },
  29250. {
  29251. name: "Normal",
  29252. height: math.unit(7 + 6.451 / 12, "feet"),
  29253. default: true
  29254. },
  29255. {
  29256. name: "Hitting the Town",
  29257. height: math.unit(37 + 8 / 12, "feet")
  29258. },
  29259. {
  29260. name: "Stomp in the Suburbs",
  29261. height: math.unit(964 + 9.728 / 12, "feet")
  29262. },
  29263. {
  29264. name: "Sit on the City",
  29265. height: math.unit(61747 + 10.592 / 12, "feet")
  29266. },
  29267. {
  29268. name: "Glomp the Globe",
  29269. height: math.unit(252919327 + 4.832 / 12, "feet")
  29270. },
  29271. ]
  29272. ))
  29273. characterMakers.push(() => makeCharacter(
  29274. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  29275. {
  29276. front: {
  29277. height: math.unit(6 + 4 / 12, "feet"),
  29278. weight: math.unit(320, "lb"),
  29279. name: "Front",
  29280. image: {
  29281. source: "./media/characters/balina-mahigan/front.svg",
  29282. extra: 447 / 428,
  29283. bottom: 18 / 466
  29284. }
  29285. },
  29286. back: {
  29287. height: math.unit(6 + 4 / 12, "feet"),
  29288. weight: math.unit(320, "lb"),
  29289. name: "Back",
  29290. image: {
  29291. source: "./media/characters/balina-mahigan/back.svg",
  29292. extra: 445 / 428,
  29293. bottom: 4.07 / 448
  29294. }
  29295. },
  29296. arm: {
  29297. height: math.unit(1.88, "feet"),
  29298. name: "Arm",
  29299. image: {
  29300. source: "./media/characters/balina-mahigan/arm.svg"
  29301. }
  29302. },
  29303. backPort: {
  29304. height: math.unit(0.685, "feet"),
  29305. name: "Back Port",
  29306. image: {
  29307. source: "./media/characters/balina-mahigan/back-port.svg"
  29308. }
  29309. },
  29310. hoofpaw: {
  29311. height: math.unit(1.41, "feet"),
  29312. name: "Hoofpaw",
  29313. image: {
  29314. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  29315. }
  29316. },
  29317. leftHandBack: {
  29318. height: math.unit(0.938, "feet"),
  29319. name: "Left Hand (Back)",
  29320. image: {
  29321. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  29322. }
  29323. },
  29324. leftHandFront: {
  29325. height: math.unit(0.938, "feet"),
  29326. name: "Left Hand (Front)",
  29327. image: {
  29328. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  29329. }
  29330. },
  29331. rightHandBack: {
  29332. height: math.unit(0.95, "feet"),
  29333. name: "Right Hand (Back)",
  29334. image: {
  29335. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  29336. }
  29337. },
  29338. rightHandFront: {
  29339. height: math.unit(0.95, "feet"),
  29340. name: "Right Hand (Front)",
  29341. image: {
  29342. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  29343. }
  29344. },
  29345. },
  29346. [
  29347. {
  29348. name: "Normal",
  29349. height: math.unit(6 + 4 / 12, "feet"),
  29350. default: true
  29351. },
  29352. ]
  29353. ))
  29354. characterMakers.push(() => makeCharacter(
  29355. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  29356. {
  29357. front: {
  29358. height: math.unit(6, "feet"),
  29359. weight: math.unit(320, "lb"),
  29360. name: "Front",
  29361. image: {
  29362. source: "./media/characters/balina-mejeri/front.svg",
  29363. extra: 517 / 488,
  29364. bottom: 44.2 / 561
  29365. }
  29366. },
  29367. },
  29368. [
  29369. {
  29370. name: "Normal",
  29371. height: math.unit(6 + 4 / 12, "feet")
  29372. },
  29373. {
  29374. name: "Business",
  29375. height: math.unit(155, "feet"),
  29376. default: true
  29377. },
  29378. ]
  29379. ))
  29380. characterMakers.push(() => makeCharacter(
  29381. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  29382. {
  29383. kneeling: {
  29384. height: math.unit(6 + 4 / 12, "feet"),
  29385. weight: math.unit(300 * 20, "lb"),
  29386. name: "Kneeling",
  29387. image: {
  29388. source: "./media/characters/balbarian/kneeling.svg",
  29389. extra: 922 / 862,
  29390. bottom: 42.4 / 965
  29391. }
  29392. },
  29393. },
  29394. [
  29395. {
  29396. name: "Normal",
  29397. height: math.unit(6 + 4 / 12, "feet")
  29398. },
  29399. {
  29400. name: "Treasured",
  29401. height: math.unit(18 + 9 / 12, "feet"),
  29402. default: true
  29403. },
  29404. {
  29405. name: "Macro",
  29406. height: math.unit(900, "feet")
  29407. },
  29408. ]
  29409. ))
  29410. characterMakers.push(() => makeCharacter(
  29411. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  29412. {
  29413. front: {
  29414. height: math.unit(6 + 4 / 12, "feet"),
  29415. weight: math.unit(325, "lb"),
  29416. name: "Front",
  29417. image: {
  29418. source: "./media/characters/balina-amarini/front.svg",
  29419. extra: 415 / 403,
  29420. bottom: 19 / 433.4
  29421. }
  29422. },
  29423. back: {
  29424. height: math.unit(6 + 4 / 12, "feet"),
  29425. weight: math.unit(325, "lb"),
  29426. name: "Back",
  29427. image: {
  29428. source: "./media/characters/balina-amarini/back.svg",
  29429. extra: 415 / 403,
  29430. bottom: 13.5 / 432
  29431. }
  29432. },
  29433. overdrive: {
  29434. height: math.unit(6 + 4 / 12, "feet"),
  29435. weight: math.unit(400, "lb"),
  29436. name: "Overdrive",
  29437. image: {
  29438. source: "./media/characters/balina-amarini/overdrive.svg",
  29439. extra: 269 / 259,
  29440. bottom: 12 / 282
  29441. }
  29442. },
  29443. },
  29444. [
  29445. {
  29446. name: "Boom",
  29447. height: math.unit(9 + 10 / 12, "feet"),
  29448. default: true
  29449. },
  29450. {
  29451. name: "Macro",
  29452. height: math.unit(280, "feet")
  29453. },
  29454. ]
  29455. ))
  29456. characterMakers.push(() => makeCharacter(
  29457. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  29458. {
  29459. goddess: {
  29460. height: math.unit(600, "feet"),
  29461. weight: math.unit(2000000, "tons"),
  29462. name: "Goddess",
  29463. image: {
  29464. source: "./media/characters/lady-kubwa/goddess.svg",
  29465. extra: 1240.5 / 1223,
  29466. bottom: 22 / 1263
  29467. }
  29468. },
  29469. goddesser: {
  29470. height: math.unit(900, "feet"),
  29471. weight: math.unit(20000000, "lb"),
  29472. name: "Goddess-er",
  29473. image: {
  29474. source: "./media/characters/lady-kubwa/goddess-er.svg",
  29475. extra: 899 / 888,
  29476. bottom: 12.6 / 912
  29477. }
  29478. },
  29479. },
  29480. [
  29481. {
  29482. name: "Macro",
  29483. height: math.unit(600, "feet"),
  29484. default: true
  29485. },
  29486. {
  29487. name: "Megamacro",
  29488. height: math.unit(250, "miles")
  29489. },
  29490. ]
  29491. ))
  29492. characterMakers.push(() => makeCharacter(
  29493. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  29494. {
  29495. front: {
  29496. height: math.unit(7 + 7 / 12, "feet"),
  29497. weight: math.unit(250, "lb"),
  29498. name: "Front",
  29499. image: {
  29500. source: "./media/characters/tala-grovehorn/front.svg",
  29501. extra: 2636 / 2525,
  29502. bottom: 147 / 2781
  29503. }
  29504. },
  29505. back: {
  29506. height: math.unit(7 + 7 / 12, "feet"),
  29507. weight: math.unit(250, "lb"),
  29508. name: "Back",
  29509. image: {
  29510. source: "./media/characters/tala-grovehorn/back.svg",
  29511. extra: 2635 / 2539,
  29512. bottom: 100 / 2732.8
  29513. }
  29514. },
  29515. mouth: {
  29516. height: math.unit(1.15, "feet"),
  29517. name: "Mouth",
  29518. image: {
  29519. source: "./media/characters/tala-grovehorn/mouth.svg"
  29520. }
  29521. },
  29522. dick: {
  29523. height: math.unit(2.36, "feet"),
  29524. name: "Dick",
  29525. image: {
  29526. source: "./media/characters/tala-grovehorn/dick.svg"
  29527. }
  29528. },
  29529. slit: {
  29530. height: math.unit(0.61, "feet"),
  29531. name: "Slit",
  29532. image: {
  29533. source: "./media/characters/tala-grovehorn/slit.svg"
  29534. }
  29535. },
  29536. },
  29537. [
  29538. ]
  29539. ))
  29540. characterMakers.push(() => makeCharacter(
  29541. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  29542. {
  29543. front: {
  29544. height: math.unit(7 + 7 / 12, "feet"),
  29545. weight: math.unit(225, "lb"),
  29546. name: "Front",
  29547. image: {
  29548. source: "./media/characters/epona/front.svg",
  29549. extra: 2445 / 2290,
  29550. bottom: 251 / 2696
  29551. }
  29552. },
  29553. back: {
  29554. height: math.unit(7 + 7 / 12, "feet"),
  29555. weight: math.unit(225, "lb"),
  29556. name: "Back",
  29557. image: {
  29558. source: "./media/characters/epona/back.svg",
  29559. extra: 2546 / 2408,
  29560. bottom: 44 / 2589
  29561. }
  29562. },
  29563. genitals: {
  29564. height: math.unit(1.5, "feet"),
  29565. name: "Genitals",
  29566. image: {
  29567. source: "./media/characters/epona/genitals.svg"
  29568. }
  29569. },
  29570. },
  29571. [
  29572. {
  29573. name: "Normal",
  29574. height: math.unit(7 + 7 / 12, "feet"),
  29575. default: true
  29576. },
  29577. ]
  29578. ))
  29579. characterMakers.push(() => makeCharacter(
  29580. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29581. {
  29582. front: {
  29583. height: math.unit(7, "feet"),
  29584. weight: math.unit(518, "lb"),
  29585. name: "Front",
  29586. image: {
  29587. source: "./media/characters/avia-bloodbourn/front.svg",
  29588. extra: 1466 / 1350,
  29589. bottom: 65 / 1527
  29590. }
  29591. },
  29592. },
  29593. [
  29594. ]
  29595. ))
  29596. characterMakers.push(() => makeCharacter(
  29597. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29598. {
  29599. front: {
  29600. height: math.unit(9.35, "feet"),
  29601. weight: math.unit(600, "lb"),
  29602. name: "Front",
  29603. image: {
  29604. source: "./media/characters/amera/front.svg",
  29605. extra: 891 / 818,
  29606. bottom: 30 / 922.7
  29607. }
  29608. },
  29609. back: {
  29610. height: math.unit(9.35, "feet"),
  29611. weight: math.unit(600, "lb"),
  29612. name: "Back",
  29613. image: {
  29614. source: "./media/characters/amera/back.svg",
  29615. extra: 876 / 824,
  29616. bottom: 6.8 / 884
  29617. }
  29618. },
  29619. dick: {
  29620. height: math.unit(2.14, "feet"),
  29621. name: "Dick",
  29622. image: {
  29623. source: "./media/characters/amera/dick.svg"
  29624. }
  29625. },
  29626. },
  29627. [
  29628. {
  29629. name: "Normal",
  29630. height: math.unit(9.35, "feet"),
  29631. default: true
  29632. },
  29633. ]
  29634. ))
  29635. characterMakers.push(() => makeCharacter(
  29636. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29637. {
  29638. kneeling: {
  29639. height: math.unit(3 + 4 / 12, "feet"),
  29640. weight: math.unit(90, "lb"),
  29641. name: "Kneeling",
  29642. image: {
  29643. source: "./media/characters/rosewen/kneeling.svg",
  29644. extra: 1835 / 1571,
  29645. bottom: 27.7 / 1862
  29646. }
  29647. },
  29648. },
  29649. [
  29650. {
  29651. name: "Normal",
  29652. height: math.unit(3 + 4 / 12, "feet"),
  29653. default: true
  29654. },
  29655. ]
  29656. ))
  29657. characterMakers.push(() => makeCharacter(
  29658. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29659. {
  29660. front: {
  29661. height: math.unit(5 + 10 / 12, "feet"),
  29662. weight: math.unit(200, "lb"),
  29663. name: "Front",
  29664. image: {
  29665. source: "./media/characters/sabah/front.svg",
  29666. extra: 849 / 763,
  29667. bottom: 33.9 / 881
  29668. }
  29669. },
  29670. },
  29671. [
  29672. {
  29673. name: "Normal",
  29674. height: math.unit(5 + 10 / 12, "feet"),
  29675. default: true
  29676. },
  29677. ]
  29678. ))
  29679. characterMakers.push(() => makeCharacter(
  29680. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29681. {
  29682. front: {
  29683. height: math.unit(3 + 5 / 12, "feet"),
  29684. weight: math.unit(40, "kg"),
  29685. name: "Front",
  29686. image: {
  29687. source: "./media/characters/purple-flame/front.svg",
  29688. extra: 1577 / 1412,
  29689. bottom: 97 / 1694
  29690. }
  29691. },
  29692. frontDressed: {
  29693. height: math.unit(3 + 5 / 12, "feet"),
  29694. weight: math.unit(40, "kg"),
  29695. name: "Front (Dressed)",
  29696. image: {
  29697. source: "./media/characters/purple-flame/front-dressed.svg",
  29698. extra: 1577 / 1412,
  29699. bottom: 97 / 1694
  29700. }
  29701. },
  29702. headphones: {
  29703. height: math.unit(0.85, "feet"),
  29704. name: "Headphones",
  29705. image: {
  29706. source: "./media/characters/purple-flame/headphones.svg"
  29707. }
  29708. },
  29709. },
  29710. [
  29711. {
  29712. name: "Really Small",
  29713. height: math.unit(5, "cm")
  29714. },
  29715. {
  29716. name: "Micro",
  29717. height: math.unit(1 + 5 / 12, "feet")
  29718. },
  29719. {
  29720. name: "Normal",
  29721. height: math.unit(3 + 5 / 12, "feet"),
  29722. default: true
  29723. },
  29724. {
  29725. name: "Minimacro",
  29726. height: math.unit(125, "feet")
  29727. },
  29728. {
  29729. name: "Macro",
  29730. height: math.unit(0.5, "miles")
  29731. },
  29732. {
  29733. name: "Megamacro",
  29734. height: math.unit(50, "miles")
  29735. },
  29736. {
  29737. name: "Gigantic",
  29738. height: math.unit(750, "miles")
  29739. },
  29740. {
  29741. name: "Planetary",
  29742. height: math.unit(15000, "miles")
  29743. },
  29744. ]
  29745. ))
  29746. characterMakers.push(() => makeCharacter(
  29747. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29748. {
  29749. front: {
  29750. height: math.unit(14, "feet"),
  29751. weight: math.unit(959, "lb"),
  29752. name: "Front",
  29753. image: {
  29754. source: "./media/characters/arsenal/front.svg",
  29755. extra: 2357 / 2157,
  29756. bottom: 93 / 2458
  29757. }
  29758. },
  29759. },
  29760. [
  29761. {
  29762. name: "Normal",
  29763. height: math.unit(14, "feet"),
  29764. default: true
  29765. },
  29766. ]
  29767. ))
  29768. characterMakers.push(() => makeCharacter(
  29769. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29770. {
  29771. front: {
  29772. height: math.unit(6, "feet"),
  29773. weight: math.unit(150, "lb"),
  29774. name: "Front",
  29775. image: {
  29776. source: "./media/characters/adira/front.svg",
  29777. extra: 2121/2013,
  29778. bottom: 206/2327
  29779. }
  29780. },
  29781. },
  29782. [
  29783. {
  29784. name: "Micro",
  29785. height: math.unit(4, "inches"),
  29786. default: true
  29787. },
  29788. {
  29789. name: "Macro",
  29790. height: math.unit(50, "feet")
  29791. },
  29792. ]
  29793. ))
  29794. characterMakers.push(() => makeCharacter(
  29795. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29796. {
  29797. front: {
  29798. height: math.unit(16, "feet"),
  29799. weight: math.unit(1000, "lb"),
  29800. name: "Front",
  29801. image: {
  29802. source: "./media/characters/grim/front.svg",
  29803. extra: 622 / 614,
  29804. bottom: 18.1 / 642
  29805. }
  29806. },
  29807. back: {
  29808. height: math.unit(16, "feet"),
  29809. weight: math.unit(1000, "lb"),
  29810. name: "Back",
  29811. image: {
  29812. source: "./media/characters/grim/back.svg",
  29813. extra: 610.6 / 602,
  29814. bottom: 40.8 / 652
  29815. }
  29816. },
  29817. hunched: {
  29818. height: math.unit(9.75, "feet"),
  29819. weight: math.unit(1000, "lb"),
  29820. name: "Hunched",
  29821. image: {
  29822. source: "./media/characters/grim/hunched.svg",
  29823. extra: 304 / 297,
  29824. bottom: 35.4 / 394
  29825. }
  29826. },
  29827. },
  29828. [
  29829. {
  29830. name: "Normal",
  29831. height: math.unit(16, "feet"),
  29832. default: true
  29833. },
  29834. ]
  29835. ))
  29836. characterMakers.push(() => makeCharacter(
  29837. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29838. {
  29839. front: {
  29840. height: math.unit(2.3, "meters"),
  29841. weight: math.unit(300, "lb"),
  29842. name: "Front",
  29843. image: {
  29844. source: "./media/characters/sinja/front-sfw.svg",
  29845. extra: 1393 / 1294,
  29846. bottom: 70 / 1463
  29847. }
  29848. },
  29849. frontNsfw: {
  29850. height: math.unit(2.3, "meters"),
  29851. weight: math.unit(300, "lb"),
  29852. name: "Front (NSFW)",
  29853. image: {
  29854. source: "./media/characters/sinja/front-nsfw.svg",
  29855. extra: 1393 / 1294,
  29856. bottom: 70 / 1463
  29857. }
  29858. },
  29859. back: {
  29860. height: math.unit(2.3, "meters"),
  29861. weight: math.unit(300, "lb"),
  29862. name: "Back",
  29863. image: {
  29864. source: "./media/characters/sinja/back.svg",
  29865. extra: 1393 / 1294,
  29866. bottom: 70 / 1463
  29867. }
  29868. },
  29869. head: {
  29870. height: math.unit(1.771, "feet"),
  29871. name: "Head",
  29872. image: {
  29873. source: "./media/characters/sinja/head.svg"
  29874. }
  29875. },
  29876. slit: {
  29877. height: math.unit(0.8, "feet"),
  29878. name: "Slit",
  29879. image: {
  29880. source: "./media/characters/sinja/slit.svg"
  29881. }
  29882. },
  29883. },
  29884. [
  29885. {
  29886. name: "Normal",
  29887. height: math.unit(2.3, "meters")
  29888. },
  29889. {
  29890. name: "Macro",
  29891. height: math.unit(91, "meters"),
  29892. default: true
  29893. },
  29894. {
  29895. name: "Megamacro",
  29896. height: math.unit(91440, "meters")
  29897. },
  29898. {
  29899. name: "Gigamacro",
  29900. height: math.unit(60960000, "meters")
  29901. },
  29902. {
  29903. name: "Teramacro",
  29904. height: math.unit(9144000000, "meters")
  29905. },
  29906. ]
  29907. ))
  29908. characterMakers.push(() => makeCharacter(
  29909. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29910. {
  29911. front: {
  29912. height: math.unit(1.7, "meters"),
  29913. weight: math.unit(130, "lb"),
  29914. name: "Front",
  29915. image: {
  29916. source: "./media/characters/kyu/front.svg",
  29917. extra: 415 / 395,
  29918. bottom: 5 / 420
  29919. }
  29920. },
  29921. head: {
  29922. height: math.unit(1.75, "feet"),
  29923. name: "Head",
  29924. image: {
  29925. source: "./media/characters/kyu/head.svg"
  29926. }
  29927. },
  29928. foot: {
  29929. height: math.unit(0.81, "feet"),
  29930. name: "Foot",
  29931. image: {
  29932. source: "./media/characters/kyu/foot.svg"
  29933. }
  29934. },
  29935. },
  29936. [
  29937. {
  29938. name: "Normal",
  29939. height: math.unit(1.7, "meters")
  29940. },
  29941. {
  29942. name: "Macro",
  29943. height: math.unit(131, "feet"),
  29944. default: true
  29945. },
  29946. {
  29947. name: "Megamacro",
  29948. height: math.unit(91440, "meters")
  29949. },
  29950. {
  29951. name: "Gigamacro",
  29952. height: math.unit(60960000, "meters")
  29953. },
  29954. {
  29955. name: "Teramacro",
  29956. height: math.unit(9144000000, "meters")
  29957. },
  29958. ]
  29959. ))
  29960. characterMakers.push(() => makeCharacter(
  29961. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29962. {
  29963. front: {
  29964. height: math.unit(7 + 1 / 12, "feet"),
  29965. weight: math.unit(250, "lb"),
  29966. name: "Front",
  29967. image: {
  29968. source: "./media/characters/joey/front.svg",
  29969. extra: 1791 / 1537,
  29970. bottom: 28 / 1816
  29971. }
  29972. },
  29973. },
  29974. [
  29975. {
  29976. name: "Micro",
  29977. height: math.unit(3, "inches")
  29978. },
  29979. {
  29980. name: "Normal",
  29981. height: math.unit(7 + 1 / 12, "feet"),
  29982. default: true
  29983. },
  29984. ]
  29985. ))
  29986. characterMakers.push(() => makeCharacter(
  29987. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29988. {
  29989. front: {
  29990. height: math.unit(165, "cm"),
  29991. weight: math.unit(140, "lb"),
  29992. name: "Front",
  29993. image: {
  29994. source: "./media/characters/sam-evans/front.svg",
  29995. extra: 3417 / 3230,
  29996. bottom: 41.3 / 3417
  29997. }
  29998. },
  29999. frontSixTails: {
  30000. height: math.unit(165, "cm"),
  30001. weight: math.unit(140, "lb"),
  30002. name: "Front-six-tails",
  30003. image: {
  30004. source: "./media/characters/sam-evans/front-six-tails.svg",
  30005. extra: 3417 / 3230,
  30006. bottom: 41.3 / 3417
  30007. }
  30008. },
  30009. back: {
  30010. height: math.unit(165, "cm"),
  30011. weight: math.unit(140, "lb"),
  30012. name: "Back",
  30013. image: {
  30014. source: "./media/characters/sam-evans/back.svg",
  30015. extra: 3227 / 3032,
  30016. bottom: 6.8 / 3234
  30017. }
  30018. },
  30019. face: {
  30020. height: math.unit(0.68, "feet"),
  30021. name: "Face",
  30022. image: {
  30023. source: "./media/characters/sam-evans/face.svg"
  30024. }
  30025. },
  30026. },
  30027. [
  30028. {
  30029. name: "Normal",
  30030. height: math.unit(165, "cm"),
  30031. default: true
  30032. },
  30033. {
  30034. name: "Macro",
  30035. height: math.unit(100, "meters")
  30036. },
  30037. {
  30038. name: "Macro+",
  30039. height: math.unit(800, "meters")
  30040. },
  30041. {
  30042. name: "Macro++",
  30043. height: math.unit(3, "km")
  30044. },
  30045. {
  30046. name: "Macro+++",
  30047. height: math.unit(30, "km")
  30048. },
  30049. ]
  30050. ))
  30051. characterMakers.push(() => makeCharacter(
  30052. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  30053. {
  30054. front: {
  30055. height: math.unit(10, "feet"),
  30056. weight: math.unit(750, "lb"),
  30057. name: "Front",
  30058. image: {
  30059. source: "./media/characters/juliet-a/front.svg",
  30060. extra: 1766 / 1720,
  30061. bottom: 43 / 1809
  30062. }
  30063. },
  30064. back: {
  30065. height: math.unit(10, "feet"),
  30066. weight: math.unit(750, "lb"),
  30067. name: "Back",
  30068. image: {
  30069. source: "./media/characters/juliet-a/back.svg",
  30070. extra: 1781 / 1734,
  30071. bottom: 35 / 1810,
  30072. }
  30073. },
  30074. },
  30075. [
  30076. {
  30077. name: "Normal",
  30078. height: math.unit(10, "feet"),
  30079. default: true
  30080. },
  30081. {
  30082. name: "Dragon Form",
  30083. height: math.unit(250, "feet")
  30084. },
  30085. {
  30086. name: "Macro",
  30087. height: math.unit(1000, "feet")
  30088. },
  30089. {
  30090. name: "Megamacro",
  30091. height: math.unit(10000, "feet")
  30092. }
  30093. ]
  30094. ))
  30095. characterMakers.push(() => makeCharacter(
  30096. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  30097. {
  30098. regular: {
  30099. height: math.unit(7 + 3 / 12, "feet"),
  30100. weight: math.unit(260, "lb"),
  30101. name: "Regular",
  30102. image: {
  30103. source: "./media/characters/wild/regular.svg",
  30104. extra: 97.45 / 92,
  30105. bottom: 6.8 / 104.3
  30106. }
  30107. },
  30108. biggums: {
  30109. height: math.unit(8 + 6 / 12, "feet"),
  30110. weight: math.unit(425, "lb"),
  30111. name: "Biggums",
  30112. image: {
  30113. source: "./media/characters/wild/biggums.svg",
  30114. extra: 97.45 / 92,
  30115. bottom: 7.5 / 132.34
  30116. }
  30117. },
  30118. mawRegular: {
  30119. height: math.unit(1.24, "feet"),
  30120. name: "Maw (Regular)",
  30121. image: {
  30122. source: "./media/characters/wild/maw.svg"
  30123. }
  30124. },
  30125. mawBiggums: {
  30126. height: math.unit(1.47, "feet"),
  30127. name: "Maw (Biggums)",
  30128. image: {
  30129. source: "./media/characters/wild/maw.svg"
  30130. }
  30131. },
  30132. },
  30133. [
  30134. {
  30135. name: "Normal",
  30136. height: math.unit(7 + 3 / 12, "feet"),
  30137. default: true
  30138. },
  30139. ]
  30140. ))
  30141. characterMakers.push(() => makeCharacter(
  30142. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  30143. {
  30144. front: {
  30145. height: math.unit(2.5, "meters"),
  30146. weight: math.unit(200, "kg"),
  30147. name: "Front",
  30148. image: {
  30149. source: "./media/characters/vidar/front.svg",
  30150. extra: 2994 / 2795,
  30151. bottom: 56 / 3061
  30152. }
  30153. },
  30154. back: {
  30155. height: math.unit(2.5, "meters"),
  30156. weight: math.unit(200, "kg"),
  30157. name: "Back",
  30158. image: {
  30159. source: "./media/characters/vidar/back.svg",
  30160. extra: 3131 / 2928,
  30161. bottom: 13.5 / 3141.5
  30162. }
  30163. },
  30164. feral: {
  30165. height: math.unit(2.5, "meters"),
  30166. weight: math.unit(2000, "kg"),
  30167. name: "Feral",
  30168. image: {
  30169. source: "./media/characters/vidar/feral.svg",
  30170. extra: 2790 / 1765,
  30171. bottom: 6 / 2796
  30172. }
  30173. },
  30174. },
  30175. [
  30176. {
  30177. name: "Normal",
  30178. height: math.unit(2.5, "meters"),
  30179. default: true
  30180. },
  30181. {
  30182. name: "Macro",
  30183. height: math.unit(100, "meters")
  30184. },
  30185. ]
  30186. ))
  30187. characterMakers.push(() => makeCharacter(
  30188. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  30189. {
  30190. front: {
  30191. height: math.unit(5 + 9 / 12, "feet"),
  30192. weight: math.unit(120, "lb"),
  30193. name: "Front",
  30194. image: {
  30195. source: "./media/characters/ash/front.svg",
  30196. extra: 2189 / 1961,
  30197. bottom: 5.2 / 2194
  30198. }
  30199. },
  30200. },
  30201. [
  30202. {
  30203. name: "Normal",
  30204. height: math.unit(5 + 9 / 12, "feet"),
  30205. default: true
  30206. },
  30207. ]
  30208. ))
  30209. characterMakers.push(() => makeCharacter(
  30210. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  30211. {
  30212. front: {
  30213. height: math.unit(9, "feet"),
  30214. weight: math.unit(10000, "lb"),
  30215. name: "Front",
  30216. image: {
  30217. source: "./media/characters/gygabite/front.svg",
  30218. bottom: 31.7 / 537.8,
  30219. extra: 505 / 370
  30220. }
  30221. },
  30222. },
  30223. [
  30224. {
  30225. name: "Normal",
  30226. height: math.unit(9, "feet"),
  30227. default: true
  30228. },
  30229. ]
  30230. ))
  30231. characterMakers.push(() => makeCharacter(
  30232. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  30233. {
  30234. front: {
  30235. height: math.unit(12, "feet"),
  30236. weight: math.unit(4000, "lb"),
  30237. name: "Front",
  30238. image: {
  30239. source: "./media/characters/p0tat0/front.svg",
  30240. extra: 1065 / 921,
  30241. bottom: 55.7 / 1121.25
  30242. }
  30243. },
  30244. },
  30245. [
  30246. {
  30247. name: "Normal",
  30248. height: math.unit(12, "feet"),
  30249. default: true
  30250. },
  30251. ]
  30252. ))
  30253. characterMakers.push(() => makeCharacter(
  30254. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  30255. {
  30256. side: {
  30257. height: math.unit(6.5, "feet"),
  30258. weight: math.unit(800, "lb"),
  30259. name: "Side",
  30260. image: {
  30261. source: "./media/characters/dusk/side.svg",
  30262. extra: 615 / 373,
  30263. bottom: 53 / 664
  30264. }
  30265. },
  30266. sitting: {
  30267. height: math.unit(7, "feet"),
  30268. weight: math.unit(800, "lb"),
  30269. name: "Sitting",
  30270. image: {
  30271. source: "./media/characters/dusk/sitting.svg",
  30272. extra: 753 / 425,
  30273. bottom: 33 / 774
  30274. }
  30275. },
  30276. head: {
  30277. height: math.unit(6.1, "feet"),
  30278. name: "Head",
  30279. image: {
  30280. source: "./media/characters/dusk/head.svg"
  30281. }
  30282. },
  30283. },
  30284. [
  30285. {
  30286. name: "Normal",
  30287. height: math.unit(7, "feet"),
  30288. default: true
  30289. },
  30290. ]
  30291. ))
  30292. characterMakers.push(() => makeCharacter(
  30293. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  30294. {
  30295. front: {
  30296. height: math.unit(15, "feet"),
  30297. weight: math.unit(7000, "lb"),
  30298. name: "Front",
  30299. image: {
  30300. source: "./media/characters/jay-direwolf/front.svg",
  30301. extra: 1810 / 1732,
  30302. bottom: 66 / 1892
  30303. }
  30304. },
  30305. },
  30306. [
  30307. {
  30308. name: "Normal",
  30309. height: math.unit(15, "feet"),
  30310. default: true
  30311. },
  30312. ]
  30313. ))
  30314. characterMakers.push(() => makeCharacter(
  30315. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  30316. {
  30317. front: {
  30318. height: math.unit(4 + 9 / 12, "feet"),
  30319. weight: math.unit(130, "lb"),
  30320. name: "Front",
  30321. image: {
  30322. source: "./media/characters/anchovie/front.svg",
  30323. extra: 382 / 350,
  30324. bottom: 25 / 409
  30325. }
  30326. },
  30327. back: {
  30328. height: math.unit(4 + 9 / 12, "feet"),
  30329. weight: math.unit(130, "lb"),
  30330. name: "Back",
  30331. image: {
  30332. source: "./media/characters/anchovie/back.svg",
  30333. extra: 385 / 352,
  30334. bottom: 16.6 / 402
  30335. }
  30336. },
  30337. frontDressed: {
  30338. height: math.unit(4 + 9 / 12, "feet"),
  30339. weight: math.unit(130, "lb"),
  30340. name: "Front (Dressed)",
  30341. image: {
  30342. source: "./media/characters/anchovie/front-dressed.svg",
  30343. extra: 382 / 350,
  30344. bottom: 25 / 409
  30345. }
  30346. },
  30347. backDressed: {
  30348. height: math.unit(4 + 9 / 12, "feet"),
  30349. weight: math.unit(130, "lb"),
  30350. name: "Back (Dressed)",
  30351. image: {
  30352. source: "./media/characters/anchovie/back-dressed.svg",
  30353. extra: 385 / 352,
  30354. bottom: 16.6 / 402
  30355. }
  30356. },
  30357. },
  30358. [
  30359. {
  30360. name: "Micro",
  30361. height: math.unit(6.4, "inches")
  30362. },
  30363. {
  30364. name: "Normal",
  30365. height: math.unit(4 + 9 / 12, "feet"),
  30366. default: true
  30367. },
  30368. ]
  30369. ))
  30370. characterMakers.push(() => makeCharacter(
  30371. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  30372. {
  30373. front: {
  30374. height: math.unit(2, "meters"),
  30375. weight: math.unit(180, "lb"),
  30376. name: "Front",
  30377. image: {
  30378. source: "./media/characters/acidrenamon/front.svg",
  30379. extra: 987 / 890,
  30380. bottom: 22.8 / 1009
  30381. }
  30382. },
  30383. back: {
  30384. height: math.unit(2, "meters"),
  30385. weight: math.unit(180, "lb"),
  30386. name: "Back",
  30387. image: {
  30388. source: "./media/characters/acidrenamon/back.svg",
  30389. extra: 983 / 891,
  30390. bottom: 8.4 / 992
  30391. }
  30392. },
  30393. head: {
  30394. height: math.unit(1.92, "feet"),
  30395. name: "Head",
  30396. image: {
  30397. source: "./media/characters/acidrenamon/head.svg"
  30398. }
  30399. },
  30400. rump: {
  30401. height: math.unit(1.72, "feet"),
  30402. name: "Rump",
  30403. image: {
  30404. source: "./media/characters/acidrenamon/rump.svg"
  30405. }
  30406. },
  30407. tail: {
  30408. height: math.unit(4.2, "feet"),
  30409. name: "Tail",
  30410. image: {
  30411. source: "./media/characters/acidrenamon/tail.svg"
  30412. }
  30413. },
  30414. },
  30415. [
  30416. {
  30417. name: "Normal",
  30418. height: math.unit(2, "meters"),
  30419. default: true
  30420. },
  30421. {
  30422. name: "Minimacro",
  30423. height: math.unit(7, "meters")
  30424. },
  30425. {
  30426. name: "Macro",
  30427. height: math.unit(200, "meters")
  30428. },
  30429. {
  30430. name: "Gigamacro",
  30431. height: math.unit(0.2, "earths")
  30432. },
  30433. ]
  30434. ))
  30435. characterMakers.push(() => makeCharacter(
  30436. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  30437. {
  30438. front: {
  30439. height: math.unit(152, "feet"),
  30440. name: "Front",
  30441. image: {
  30442. source: "./media/characters/kenzie-lee/front.svg",
  30443. extra: 1869/1774,
  30444. bottom: 128/1997
  30445. }
  30446. },
  30447. side: {
  30448. height: math.unit(86, "feet"),
  30449. name: "Side",
  30450. image: {
  30451. source: "./media/characters/kenzie-lee/side.svg",
  30452. extra: 930/815,
  30453. bottom: 177/1107
  30454. }
  30455. },
  30456. paw: {
  30457. height: math.unit(15, "feet"),
  30458. name: "Paw",
  30459. image: {
  30460. source: "./media/characters/kenzie-lee/paw.svg"
  30461. }
  30462. },
  30463. },
  30464. [
  30465. {
  30466. name: "Kenzie Flea",
  30467. height: math.unit(2, "mm"),
  30468. default: true
  30469. },
  30470. {
  30471. name: "Micro",
  30472. height: math.unit(2, "inches")
  30473. },
  30474. {
  30475. name: "Normal",
  30476. height: math.unit(152, "feet")
  30477. },
  30478. {
  30479. name: "Megamacro",
  30480. height: math.unit(7, "miles")
  30481. },
  30482. {
  30483. name: "Gigamacro",
  30484. height: math.unit(8000, "miles")
  30485. },
  30486. ]
  30487. ))
  30488. characterMakers.push(() => makeCharacter(
  30489. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  30490. {
  30491. front: {
  30492. height: math.unit(6, "feet"),
  30493. name: "Front",
  30494. image: {
  30495. source: "./media/characters/withers/front.svg",
  30496. extra: 1935/1760,
  30497. bottom: 72/2007
  30498. }
  30499. },
  30500. back: {
  30501. height: math.unit(6, "feet"),
  30502. name: "Back",
  30503. image: {
  30504. source: "./media/characters/withers/back.svg",
  30505. extra: 1944/1792,
  30506. bottom: 12/1956
  30507. }
  30508. },
  30509. dressed: {
  30510. height: math.unit(6, "feet"),
  30511. name: "Dressed",
  30512. image: {
  30513. source: "./media/characters/withers/dressed.svg",
  30514. extra: 1937/1765,
  30515. bottom: 73/2010
  30516. }
  30517. },
  30518. phase1: {
  30519. height: math.unit(1.1, "feet"),
  30520. name: "Phase 1",
  30521. image: {
  30522. source: "./media/characters/withers/phase-1.svg",
  30523. extra: 1885/1232,
  30524. bottom: 0/1885
  30525. }
  30526. },
  30527. phase2: {
  30528. height: math.unit(1.05, "feet"),
  30529. name: "Phase 2",
  30530. image: {
  30531. source: "./media/characters/withers/phase-2.svg",
  30532. extra: 1792/1090,
  30533. bottom: 0/1792
  30534. }
  30535. },
  30536. partyWipe: {
  30537. height: math.unit(1.1, "feet"),
  30538. name: "Party Wipe",
  30539. image: {
  30540. source: "./media/characters/withers/party-wipe.svg",
  30541. extra: 1864/1207,
  30542. bottom: 0/1864
  30543. }
  30544. },
  30545. },
  30546. [
  30547. {
  30548. name: "Macro",
  30549. height: math.unit(167, "feet"),
  30550. default: true
  30551. },
  30552. {
  30553. name: "Megamacro",
  30554. height: math.unit(15, "miles")
  30555. }
  30556. ]
  30557. ))
  30558. characterMakers.push(() => makeCharacter(
  30559. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  30560. {
  30561. front: {
  30562. height: math.unit(6 + 7 / 12, "feet"),
  30563. weight: math.unit(250, "lb"),
  30564. name: "Front",
  30565. image: {
  30566. source: "./media/characters/nemoskii/front.svg",
  30567. extra: 2270 / 1734,
  30568. bottom: 86 / 2354
  30569. }
  30570. },
  30571. back: {
  30572. height: math.unit(6 + 7 / 12, "feet"),
  30573. weight: math.unit(250, "lb"),
  30574. name: "Back",
  30575. image: {
  30576. source: "./media/characters/nemoskii/back.svg",
  30577. extra: 1845 / 1788,
  30578. bottom: 10.5 / 1852
  30579. }
  30580. },
  30581. head: {
  30582. height: math.unit(1.31, "feet"),
  30583. name: "Head",
  30584. image: {
  30585. source: "./media/characters/nemoskii/head.svg"
  30586. }
  30587. },
  30588. },
  30589. [
  30590. {
  30591. name: "Micro",
  30592. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30593. },
  30594. {
  30595. name: "Normal",
  30596. height: math.unit(6 + 7 / 12, "feet"),
  30597. default: true
  30598. },
  30599. {
  30600. name: "Macro",
  30601. height: math.unit((6 + 7 / 12) * 150, "feet")
  30602. },
  30603. {
  30604. name: "Macro+",
  30605. height: math.unit((6 + 7 / 12) * 500, "feet")
  30606. },
  30607. {
  30608. name: "Megamacro",
  30609. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30610. },
  30611. ]
  30612. ))
  30613. characterMakers.push(() => makeCharacter(
  30614. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30615. {
  30616. front: {
  30617. height: math.unit(1, "mile"),
  30618. weight: math.unit(265261.9, "lb"),
  30619. name: "Front",
  30620. image: {
  30621. source: "./media/characters/shui/front.svg",
  30622. extra: 1633 / 1564,
  30623. bottom: 91.5 / 1726
  30624. }
  30625. },
  30626. },
  30627. [
  30628. {
  30629. name: "Macro",
  30630. height: math.unit(1, "mile"),
  30631. default: true
  30632. },
  30633. ]
  30634. ))
  30635. characterMakers.push(() => makeCharacter(
  30636. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30637. {
  30638. front: {
  30639. height: math.unit(12 + 6 / 12, "feet"),
  30640. weight: math.unit(1342, "lb"),
  30641. name: "Front",
  30642. image: {
  30643. source: "./media/characters/arokh-takakura/front.svg",
  30644. extra: 1089 / 1043,
  30645. bottom: 77.4 / 1176.7
  30646. }
  30647. },
  30648. back: {
  30649. height: math.unit(12 + 6 / 12, "feet"),
  30650. weight: math.unit(1342, "lb"),
  30651. name: "Back",
  30652. image: {
  30653. source: "./media/characters/arokh-takakura/back.svg",
  30654. extra: 1046 / 1019,
  30655. bottom: 102 / 1150
  30656. }
  30657. },
  30658. },
  30659. [
  30660. {
  30661. name: "Big",
  30662. height: math.unit(12 + 6 / 12, "feet"),
  30663. default: true
  30664. },
  30665. ]
  30666. ))
  30667. characterMakers.push(() => makeCharacter(
  30668. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30669. {
  30670. front: {
  30671. height: math.unit(5 + 6 / 12, "feet"),
  30672. weight: math.unit(150, "lb"),
  30673. name: "Front",
  30674. image: {
  30675. source: "./media/characters/theo/front.svg",
  30676. extra: 1184 / 1131,
  30677. bottom: 7.4 / 1191
  30678. }
  30679. },
  30680. },
  30681. [
  30682. {
  30683. name: "Micro",
  30684. height: math.unit(5, "inches")
  30685. },
  30686. {
  30687. name: "Normal",
  30688. height: math.unit(5 + 6 / 12, "feet"),
  30689. default: true
  30690. },
  30691. ]
  30692. ))
  30693. characterMakers.push(() => makeCharacter(
  30694. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30695. {
  30696. front: {
  30697. height: math.unit(5 + 9 / 12, "feet"),
  30698. weight: math.unit(130, "lb"),
  30699. name: "Front",
  30700. image: {
  30701. source: "./media/characters/cecelia-swift/front.svg",
  30702. extra: 502 / 484,
  30703. bottom: 23 / 523
  30704. }
  30705. },
  30706. back: {
  30707. height: math.unit(5 + 9 / 12, "feet"),
  30708. weight: math.unit(130, "lb"),
  30709. name: "Back",
  30710. image: {
  30711. source: "./media/characters/cecelia-swift/back.svg",
  30712. extra: 499 / 485,
  30713. bottom: 12 / 511
  30714. }
  30715. },
  30716. head: {
  30717. height: math.unit(0.90, "feet"),
  30718. name: "Head",
  30719. image: {
  30720. source: "./media/characters/cecelia-swift/head.svg"
  30721. }
  30722. },
  30723. rump: {
  30724. height: math.unit(1.75, "feet"),
  30725. name: "Rump",
  30726. image: {
  30727. source: "./media/characters/cecelia-swift/rump.svg"
  30728. }
  30729. },
  30730. },
  30731. [
  30732. {
  30733. name: "Normal",
  30734. height: math.unit(5 + 9 / 12, "feet"),
  30735. default: true
  30736. },
  30737. {
  30738. name: "Big",
  30739. height: math.unit(50, "feet")
  30740. },
  30741. {
  30742. name: "Macro",
  30743. height: math.unit(100, "feet")
  30744. },
  30745. {
  30746. name: "Macro+",
  30747. height: math.unit(500, "feet")
  30748. },
  30749. {
  30750. name: "Macro++",
  30751. height: math.unit(1000, "feet")
  30752. },
  30753. ]
  30754. ))
  30755. characterMakers.push(() => makeCharacter(
  30756. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30757. {
  30758. front: {
  30759. height: math.unit(6, "feet"),
  30760. weight: math.unit(150, "lb"),
  30761. name: "Front",
  30762. image: {
  30763. source: "./media/characters/kaunan/front.svg",
  30764. extra: 2890 / 2523,
  30765. bottom: 49 / 2939
  30766. }
  30767. },
  30768. },
  30769. [
  30770. {
  30771. name: "Macro",
  30772. height: math.unit(150, "feet"),
  30773. default: true
  30774. },
  30775. ]
  30776. ))
  30777. characterMakers.push(() => makeCharacter(
  30778. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30779. {
  30780. dressed: {
  30781. height: math.unit(175, "cm"),
  30782. weight: math.unit(60, "kg"),
  30783. name: "Dressed",
  30784. image: {
  30785. source: "./media/characters/fei/dressed.svg",
  30786. extra: 1402/1278,
  30787. bottom: 27/1429
  30788. }
  30789. },
  30790. nude: {
  30791. height: math.unit(175, "cm"),
  30792. weight: math.unit(60, "kg"),
  30793. name: "Nude",
  30794. image: {
  30795. source: "./media/characters/fei/nude.svg",
  30796. extra: 1402/1278,
  30797. bottom: 27/1429
  30798. }
  30799. },
  30800. heels: {
  30801. height: math.unit(0.466, "feet"),
  30802. name: "Heels",
  30803. image: {
  30804. source: "./media/characters/fei/heels.svg",
  30805. extra: 156/152,
  30806. bottom: 28/184
  30807. }
  30808. },
  30809. },
  30810. [
  30811. {
  30812. name: "Mortal",
  30813. height: math.unit(175, "cm")
  30814. },
  30815. {
  30816. name: "Normal",
  30817. height: math.unit(3500, "m")
  30818. },
  30819. {
  30820. name: "Stroll",
  30821. height: math.unit(18.4, "km"),
  30822. default: true
  30823. },
  30824. {
  30825. name: "Showoff",
  30826. height: math.unit(175, "km")
  30827. },
  30828. ]
  30829. ))
  30830. characterMakers.push(() => makeCharacter(
  30831. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30832. {
  30833. front: {
  30834. height: math.unit(7, "feet"),
  30835. weight: math.unit(1000, "kg"),
  30836. name: "Front",
  30837. image: {
  30838. source: "./media/characters/edrax/front.svg",
  30839. extra: 2838 / 2550,
  30840. bottom: 130 / 2968
  30841. }
  30842. },
  30843. },
  30844. [
  30845. {
  30846. name: "Small",
  30847. height: math.unit(7, "feet")
  30848. },
  30849. {
  30850. name: "Normal",
  30851. height: math.unit(1500, "meters")
  30852. },
  30853. {
  30854. name: "Mega",
  30855. height: math.unit(12000000, "km"),
  30856. default: true
  30857. },
  30858. {
  30859. name: "Megamacro",
  30860. height: math.unit(10600000, "lightyears")
  30861. },
  30862. {
  30863. name: "Hypermacro",
  30864. height: math.unit(256, "yottameters")
  30865. },
  30866. ]
  30867. ))
  30868. characterMakers.push(() => makeCharacter(
  30869. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30870. {
  30871. front: {
  30872. height: math.unit(10, "feet"),
  30873. weight: math.unit(750, "lb"),
  30874. name: "Front",
  30875. image: {
  30876. source: "./media/characters/clove/front.svg",
  30877. extra: 1918/1751,
  30878. bottom: 52/1970
  30879. }
  30880. },
  30881. back: {
  30882. height: math.unit(10, "feet"),
  30883. weight: math.unit(750, "lb"),
  30884. name: "Back",
  30885. image: {
  30886. source: "./media/characters/clove/back.svg",
  30887. extra: 1912/1747,
  30888. bottom: 50/1962
  30889. }
  30890. },
  30891. },
  30892. [
  30893. {
  30894. name: "Normal",
  30895. height: math.unit(10, "feet"),
  30896. default: true
  30897. },
  30898. ]
  30899. ))
  30900. characterMakers.push(() => makeCharacter(
  30901. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30902. {
  30903. front: {
  30904. height: math.unit(4, "feet"),
  30905. weight: math.unit(50, "lb"),
  30906. name: "Front",
  30907. image: {
  30908. source: "./media/characters/alex-rabbit/front.svg",
  30909. extra: 507 / 458,
  30910. bottom: 18.5 / 527
  30911. }
  30912. },
  30913. back: {
  30914. height: math.unit(4, "feet"),
  30915. weight: math.unit(50, "lb"),
  30916. name: "Back",
  30917. image: {
  30918. source: "./media/characters/alex-rabbit/back.svg",
  30919. extra: 502 / 460,
  30920. bottom: 18.9 / 521
  30921. }
  30922. },
  30923. },
  30924. [
  30925. {
  30926. name: "Normal",
  30927. height: math.unit(4, "feet"),
  30928. default: true
  30929. },
  30930. ]
  30931. ))
  30932. characterMakers.push(() => makeCharacter(
  30933. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30934. {
  30935. front: {
  30936. height: math.unit(1 + 3 / 12, "feet"),
  30937. weight: math.unit(80, "lb"),
  30938. name: "Front",
  30939. image: {
  30940. source: "./media/characters/zander-rose/front.svg",
  30941. extra: 916 / 797,
  30942. bottom: 17 / 933
  30943. }
  30944. },
  30945. back: {
  30946. height: math.unit(1 + 3 / 12, "feet"),
  30947. weight: math.unit(80, "lb"),
  30948. name: "Back",
  30949. image: {
  30950. source: "./media/characters/zander-rose/back.svg",
  30951. extra: 903 / 779,
  30952. bottom: 31 / 934
  30953. }
  30954. },
  30955. },
  30956. [
  30957. {
  30958. name: "Normal",
  30959. height: math.unit(1 + 3 / 12, "feet"),
  30960. default: true
  30961. },
  30962. ]
  30963. ))
  30964. characterMakers.push(() => makeCharacter(
  30965. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30966. {
  30967. anthro: {
  30968. height: math.unit(6, "feet"),
  30969. weight: math.unit(150, "lb"),
  30970. name: "Anthro",
  30971. image: {
  30972. source: "./media/characters/razz/anthro.svg",
  30973. extra: 1437 / 1343,
  30974. bottom: 48 / 1485
  30975. }
  30976. },
  30977. feral: {
  30978. height: math.unit(6, "feet"),
  30979. weight: math.unit(150, "lb"),
  30980. name: "Feral",
  30981. image: {
  30982. source: "./media/characters/razz/feral.svg",
  30983. extra: 2569 / 1385,
  30984. bottom: 95 / 2664
  30985. }
  30986. },
  30987. },
  30988. [
  30989. {
  30990. name: "Normal",
  30991. height: math.unit(6, "feet"),
  30992. default: true
  30993. },
  30994. ]
  30995. ))
  30996. characterMakers.push(() => makeCharacter(
  30997. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30998. {
  30999. front: {
  31000. height: math.unit(9 + 4 / 12, "feet"),
  31001. weight: math.unit(500, "lb"),
  31002. name: "Front",
  31003. image: {
  31004. source: "./media/characters/morrigan/front.svg",
  31005. extra: 2707 / 2579,
  31006. bottom: 156 / 2863
  31007. }
  31008. },
  31009. },
  31010. [
  31011. {
  31012. name: "Normal",
  31013. height: math.unit(9 + 4 / 12, "feet"),
  31014. default: true
  31015. },
  31016. ]
  31017. ))
  31018. characterMakers.push(() => makeCharacter(
  31019. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  31020. {
  31021. front: {
  31022. height: math.unit(5, "stories"),
  31023. weight: math.unit(4000, "lb"),
  31024. name: "Front",
  31025. image: {
  31026. source: "./media/characters/jenene/front.svg",
  31027. extra: 1780 / 1710,
  31028. bottom: 57 / 1837
  31029. }
  31030. },
  31031. },
  31032. [
  31033. {
  31034. name: "Normal",
  31035. height: math.unit(5, "stories"),
  31036. default: true
  31037. },
  31038. ]
  31039. ))
  31040. characterMakers.push(() => makeCharacter(
  31041. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  31042. {
  31043. taurSfw: {
  31044. height: math.unit(10, "meters"),
  31045. weight: math.unit(17500, "kg"),
  31046. name: "Taur",
  31047. image: {
  31048. source: "./media/characters/faey/taur-sfw.svg",
  31049. extra: 1200 / 968,
  31050. bottom: 41 / 1241
  31051. }
  31052. },
  31053. chestmaw: {
  31054. height: math.unit(2.01, "meters"),
  31055. name: "Chestmaw",
  31056. image: {
  31057. source: "./media/characters/faey/chestmaw.svg"
  31058. }
  31059. },
  31060. foot: {
  31061. height: math.unit(2.43, "meters"),
  31062. name: "Foot",
  31063. image: {
  31064. source: "./media/characters/faey/foot.svg"
  31065. }
  31066. },
  31067. jaws: {
  31068. height: math.unit(1.66, "meters"),
  31069. name: "Jaws",
  31070. image: {
  31071. source: "./media/characters/faey/jaws.svg"
  31072. }
  31073. },
  31074. tongues: {
  31075. height: math.unit(2.01, "meters"),
  31076. name: "Tongues",
  31077. image: {
  31078. source: "./media/characters/faey/tongues.svg"
  31079. }
  31080. },
  31081. },
  31082. [
  31083. {
  31084. name: "Small",
  31085. height: math.unit(10, "meters"),
  31086. default: true
  31087. },
  31088. {
  31089. name: "Big",
  31090. height: math.unit(500000, "km")
  31091. },
  31092. ]
  31093. ))
  31094. characterMakers.push(() => makeCharacter(
  31095. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  31096. {
  31097. front: {
  31098. height: math.unit(7, "feet"),
  31099. weight: math.unit(275, "lb"),
  31100. name: "Front",
  31101. image: {
  31102. source: "./media/characters/roku/front.svg",
  31103. extra: 903 / 878,
  31104. bottom: 37 / 940
  31105. }
  31106. },
  31107. },
  31108. [
  31109. {
  31110. name: "Normal",
  31111. height: math.unit(7, "feet"),
  31112. default: true
  31113. },
  31114. {
  31115. name: "Macro",
  31116. height: math.unit(500, "feet")
  31117. },
  31118. {
  31119. name: "Megamacro",
  31120. height: math.unit(200, "miles")
  31121. },
  31122. ]
  31123. ))
  31124. characterMakers.push(() => makeCharacter(
  31125. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  31126. {
  31127. front: {
  31128. height: math.unit(6 + 2 / 12, "feet"),
  31129. weight: math.unit(150, "lb"),
  31130. name: "Front",
  31131. image: {
  31132. source: "./media/characters/lira/front.svg",
  31133. extra: 1727 / 1605,
  31134. bottom: 26 / 1753
  31135. }
  31136. },
  31137. back: {
  31138. height: math.unit(6 + 2 / 12, "feet"),
  31139. weight: math.unit(150, "lb"),
  31140. name: "Back",
  31141. image: {
  31142. source: "./media/characters/lira/back.svg",
  31143. extra: 1713/1621,
  31144. bottom: 20/1733
  31145. }
  31146. },
  31147. hand: {
  31148. height: math.unit(0.75, "feet"),
  31149. name: "Hand",
  31150. image: {
  31151. source: "./media/characters/lira/hand.svg"
  31152. }
  31153. },
  31154. maw: {
  31155. height: math.unit(0.65, "feet"),
  31156. name: "Maw",
  31157. image: {
  31158. source: "./media/characters/lira/maw.svg"
  31159. }
  31160. },
  31161. pawDigi: {
  31162. height: math.unit(1.6, "feet"),
  31163. name: "Paw Digi",
  31164. image: {
  31165. source: "./media/characters/lira/paw-digi.svg"
  31166. }
  31167. },
  31168. pawPlanti: {
  31169. height: math.unit(1.4, "feet"),
  31170. name: "Paw Planti",
  31171. image: {
  31172. source: "./media/characters/lira/paw-planti.svg"
  31173. }
  31174. },
  31175. },
  31176. [
  31177. {
  31178. name: "Normal",
  31179. height: math.unit(6 + 2 / 12, "feet"),
  31180. default: true
  31181. },
  31182. {
  31183. name: "Macro",
  31184. height: math.unit(100, "feet")
  31185. },
  31186. {
  31187. name: "Macro²",
  31188. height: math.unit(1600, "feet")
  31189. },
  31190. {
  31191. name: "Planetary",
  31192. height: math.unit(20, "earths")
  31193. },
  31194. ]
  31195. ))
  31196. characterMakers.push(() => makeCharacter(
  31197. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  31198. {
  31199. front: {
  31200. height: math.unit(6, "feet"),
  31201. weight: math.unit(150, "lb"),
  31202. name: "Front",
  31203. image: {
  31204. source: "./media/characters/hadjet/front.svg",
  31205. extra: 1480 / 1346,
  31206. bottom: 26 / 1506
  31207. }
  31208. },
  31209. frontNsfw: {
  31210. height: math.unit(6, "feet"),
  31211. weight: math.unit(150, "lb"),
  31212. name: "Front (NSFW)",
  31213. image: {
  31214. source: "./media/characters/hadjet/front-nsfw.svg",
  31215. extra: 1440 / 1358,
  31216. bottom: 52 / 1492
  31217. }
  31218. },
  31219. },
  31220. [
  31221. {
  31222. name: "Macro",
  31223. height: math.unit(10, "stories"),
  31224. default: true
  31225. },
  31226. {
  31227. name: "Megamacro",
  31228. height: math.unit(1.5, "miles")
  31229. },
  31230. {
  31231. name: "Megamacro+",
  31232. height: math.unit(5, "miles")
  31233. },
  31234. ]
  31235. ))
  31236. characterMakers.push(() => makeCharacter(
  31237. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  31238. {
  31239. side: {
  31240. height: math.unit(106, "feet"),
  31241. weight: math.unit(500, "tonnes"),
  31242. name: "Side",
  31243. image: {
  31244. source: "./media/characters/kodran/side.svg",
  31245. extra: 553 / 480,
  31246. bottom: 33 / 586
  31247. }
  31248. },
  31249. front: {
  31250. height: math.unit(132, "feet"),
  31251. weight: math.unit(500, "tonnes"),
  31252. name: "Front",
  31253. image: {
  31254. source: "./media/characters/kodran/front.svg",
  31255. extra: 667 / 643,
  31256. bottom: 42 / 709
  31257. }
  31258. },
  31259. flying: {
  31260. height: math.unit(350, "feet"),
  31261. weight: math.unit(500, "tonnes"),
  31262. name: "Flying",
  31263. image: {
  31264. source: "./media/characters/kodran/flying.svg"
  31265. }
  31266. },
  31267. foot: {
  31268. height: math.unit(33, "feet"),
  31269. name: "Foot",
  31270. image: {
  31271. source: "./media/characters/kodran/foot.svg"
  31272. }
  31273. },
  31274. footFront: {
  31275. height: math.unit(19, "feet"),
  31276. name: "Foot (Front)",
  31277. image: {
  31278. source: "./media/characters/kodran/foot-front.svg",
  31279. extra: 261 / 261,
  31280. bottom: 91 / 352
  31281. }
  31282. },
  31283. headFront: {
  31284. height: math.unit(53, "feet"),
  31285. name: "Head (Front)",
  31286. image: {
  31287. source: "./media/characters/kodran/head-front.svg"
  31288. }
  31289. },
  31290. headSide: {
  31291. height: math.unit(65, "feet"),
  31292. name: "Head (Side)",
  31293. image: {
  31294. source: "./media/characters/kodran/head-side.svg"
  31295. }
  31296. },
  31297. throat: {
  31298. height: math.unit(79, "feet"),
  31299. name: "Throat",
  31300. image: {
  31301. source: "./media/characters/kodran/throat.svg"
  31302. }
  31303. },
  31304. },
  31305. [
  31306. {
  31307. name: "Large",
  31308. height: math.unit(106, "feet"),
  31309. default: true
  31310. },
  31311. ]
  31312. ))
  31313. characterMakers.push(() => makeCharacter(
  31314. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  31315. {
  31316. side: {
  31317. height: math.unit(11, "feet"),
  31318. weight: math.unit(150, "lb"),
  31319. name: "Side",
  31320. image: {
  31321. source: "./media/characters/pyxaron/side.svg",
  31322. extra: 305 / 195,
  31323. bottom: 17 / 322
  31324. }
  31325. },
  31326. },
  31327. [
  31328. {
  31329. name: "Normal",
  31330. height: math.unit(11, "feet"),
  31331. default: true
  31332. },
  31333. ]
  31334. ))
  31335. characterMakers.push(() => makeCharacter(
  31336. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  31337. {
  31338. front: {
  31339. height: math.unit(6, "feet"),
  31340. weight: math.unit(150, "lb"),
  31341. name: "Front",
  31342. image: {
  31343. source: "./media/characters/meep/front.svg",
  31344. extra: 88 / 80,
  31345. bottom: 6 / 94
  31346. }
  31347. },
  31348. },
  31349. [
  31350. {
  31351. name: "Fun Sized",
  31352. height: math.unit(2, "inches"),
  31353. default: true
  31354. },
  31355. {
  31356. name: "Friend Sized",
  31357. height: math.unit(8, "inches")
  31358. },
  31359. ]
  31360. ))
  31361. characterMakers.push(() => makeCharacter(
  31362. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  31363. {
  31364. front: {
  31365. height: math.unit(15, "feet"),
  31366. weight: math.unit(2500, "lb"),
  31367. name: "Front",
  31368. image: {
  31369. source: "./media/characters/holly-rabbit/front.svg",
  31370. extra: 1433 / 1233,
  31371. bottom: 125 / 1558
  31372. }
  31373. },
  31374. dick: {
  31375. height: math.unit(4.6, "feet"),
  31376. name: "Dick",
  31377. image: {
  31378. source: "./media/characters/holly-rabbit/dick.svg"
  31379. }
  31380. },
  31381. },
  31382. [
  31383. {
  31384. name: "Normal",
  31385. height: math.unit(15, "feet"),
  31386. default: true
  31387. },
  31388. {
  31389. name: "Macro",
  31390. height: math.unit(250, "feet")
  31391. },
  31392. {
  31393. name: "Macro+",
  31394. height: math.unit(2500, "feet")
  31395. },
  31396. ]
  31397. ))
  31398. characterMakers.push(() => makeCharacter(
  31399. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  31400. {
  31401. front: {
  31402. height: math.unit(3.02, "meters"),
  31403. weight: math.unit(500, "kg"),
  31404. name: "Front",
  31405. image: {
  31406. source: "./media/characters/drena/front.svg",
  31407. extra: 282 / 243,
  31408. bottom: 8 / 290
  31409. }
  31410. },
  31411. side: {
  31412. height: math.unit(3.02, "meters"),
  31413. weight: math.unit(500, "kg"),
  31414. name: "Side",
  31415. image: {
  31416. source: "./media/characters/drena/side.svg",
  31417. extra: 280 / 245,
  31418. bottom: 10 / 290
  31419. }
  31420. },
  31421. back: {
  31422. height: math.unit(3.02, "meters"),
  31423. weight: math.unit(500, "kg"),
  31424. name: "Back",
  31425. image: {
  31426. source: "./media/characters/drena/back.svg",
  31427. extra: 278 / 243,
  31428. bottom: 2 / 280
  31429. }
  31430. },
  31431. foot: {
  31432. height: math.unit(0.75, "meters"),
  31433. name: "Foot",
  31434. image: {
  31435. source: "./media/characters/drena/foot.svg"
  31436. }
  31437. },
  31438. maw: {
  31439. height: math.unit(0.82, "meters"),
  31440. name: "Maw",
  31441. image: {
  31442. source: "./media/characters/drena/maw.svg"
  31443. }
  31444. },
  31445. eating: {
  31446. height: math.unit(0.75, "meters"),
  31447. name: "Eating",
  31448. image: {
  31449. source: "./media/characters/drena/eating.svg"
  31450. }
  31451. },
  31452. rump: {
  31453. height: math.unit(0.93, "meters"),
  31454. name: "Rump",
  31455. image: {
  31456. source: "./media/characters/drena/rump.svg"
  31457. }
  31458. },
  31459. },
  31460. [
  31461. {
  31462. name: "Normal",
  31463. height: math.unit(3.02, "meters"),
  31464. default: true
  31465. },
  31466. ]
  31467. ))
  31468. characterMakers.push(() => makeCharacter(
  31469. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  31470. {
  31471. front: {
  31472. height: math.unit(6 + 4 / 12, "feet"),
  31473. weight: math.unit(250, "lb"),
  31474. name: "Front",
  31475. image: {
  31476. source: "./media/characters/remmyzilla/front.svg",
  31477. extra: 4033 / 3588,
  31478. bottom: 123 / 4156
  31479. }
  31480. },
  31481. back: {
  31482. height: math.unit(6 + 4 / 12, "feet"),
  31483. weight: math.unit(250, "lb"),
  31484. name: "Back",
  31485. image: {
  31486. source: "./media/characters/remmyzilla/back.svg",
  31487. extra: 1696/1602,
  31488. bottom: 63/1759
  31489. }
  31490. },
  31491. paw: {
  31492. height: math.unit(1.73, "feet"),
  31493. name: "Paw",
  31494. image: {
  31495. source: "./media/characters/remmyzilla/paw.svg"
  31496. },
  31497. extraAttributes: {
  31498. "toeSize": {
  31499. name: "Toe Size",
  31500. power: 2,
  31501. type: "area",
  31502. base: math.unit(0.0035, "m^2")
  31503. },
  31504. "padSize": {
  31505. name: "Pad Size",
  31506. power: 2,
  31507. type: "area",
  31508. base: math.unit(0.015, "m^2")
  31509. },
  31510. "pawsize": {
  31511. name: "Paw Size",
  31512. power: 2,
  31513. type: "area",
  31514. base: math.unit(0.072, "m^2")
  31515. },
  31516. }
  31517. },
  31518. maw: {
  31519. height: math.unit(1.73, "feet"),
  31520. name: "Maw",
  31521. image: {
  31522. source: "./media/characters/remmyzilla/maw.svg"
  31523. }
  31524. },
  31525. },
  31526. [
  31527. {
  31528. name: "Normal",
  31529. height: math.unit(6 + 4 / 12, "feet")
  31530. },
  31531. {
  31532. name: "Minimacro",
  31533. height: math.unit(12 + 8 / 12, "feet")
  31534. },
  31535. {
  31536. name: "Normal",
  31537. height: math.unit(640, "feet"),
  31538. default: true
  31539. },
  31540. {
  31541. name: "Megamacro",
  31542. height: math.unit(6400, "feet")
  31543. },
  31544. {
  31545. name: "Gigamacro",
  31546. height: math.unit(64000, "miles")
  31547. },
  31548. ]
  31549. ))
  31550. characterMakers.push(() => makeCharacter(
  31551. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  31552. {
  31553. front: {
  31554. height: math.unit(2.5, "meters"),
  31555. weight: math.unit(300, "lb"),
  31556. name: "Front",
  31557. image: {
  31558. source: "./media/characters/lawrence/front.svg",
  31559. extra: 357 / 335,
  31560. bottom: 30 / 387
  31561. }
  31562. },
  31563. back: {
  31564. height: math.unit(2.5, "meters"),
  31565. weight: math.unit(300, "lb"),
  31566. name: "Back",
  31567. image: {
  31568. source: "./media/characters/lawrence/back.svg",
  31569. extra: 357 / 338,
  31570. bottom: 16 / 373
  31571. }
  31572. },
  31573. head: {
  31574. height: math.unit(0.9, "meter"),
  31575. name: "Head",
  31576. image: {
  31577. source: "./media/characters/lawrence/head.svg"
  31578. }
  31579. },
  31580. maw: {
  31581. height: math.unit(0.7, "meter"),
  31582. name: "Maw",
  31583. image: {
  31584. source: "./media/characters/lawrence/maw.svg"
  31585. }
  31586. },
  31587. footBottom: {
  31588. height: math.unit(0.5, "meter"),
  31589. name: "Foot (Bottom)",
  31590. image: {
  31591. source: "./media/characters/lawrence/foot-bottom.svg"
  31592. }
  31593. },
  31594. footTop: {
  31595. height: math.unit(0.5, "meter"),
  31596. name: "Foot (Top)",
  31597. image: {
  31598. source: "./media/characters/lawrence/foot-top.svg"
  31599. }
  31600. },
  31601. },
  31602. [
  31603. {
  31604. name: "Normal",
  31605. height: math.unit(2.5, "meters"),
  31606. default: true
  31607. },
  31608. {
  31609. name: "Macro",
  31610. height: math.unit(95, "meters")
  31611. },
  31612. {
  31613. name: "Megamacro",
  31614. height: math.unit(150, "km")
  31615. },
  31616. ]
  31617. ))
  31618. characterMakers.push(() => makeCharacter(
  31619. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31620. {
  31621. front: {
  31622. height: math.unit(4.2, "meters"),
  31623. preyCapacity: math.unit(50, "m^3"),
  31624. weight: math.unit(30, "tonnes"),
  31625. name: "Front",
  31626. image: {
  31627. source: "./media/characters/sydney/front.svg",
  31628. extra: 1177/1129,
  31629. bottom: 197/1374
  31630. },
  31631. extraAttributes: {
  31632. "length": {
  31633. name: "Length",
  31634. power: 1,
  31635. type: "length",
  31636. base: math.unit(21, "meters")
  31637. },
  31638. }
  31639. },
  31640. },
  31641. [
  31642. {
  31643. name: "Normal",
  31644. height: math.unit(4.2, "meters"),
  31645. default: true
  31646. },
  31647. ]
  31648. ))
  31649. characterMakers.push(() => makeCharacter(
  31650. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31651. {
  31652. back: {
  31653. height: math.unit(201, "feet"),
  31654. name: "Back",
  31655. image: {
  31656. source: "./media/characters/jessica/back.svg",
  31657. extra: 273 / 259,
  31658. bottom: 7 / 280
  31659. }
  31660. },
  31661. },
  31662. [
  31663. {
  31664. name: "Normal",
  31665. height: math.unit(201, "feet"),
  31666. default: true
  31667. },
  31668. {
  31669. name: "Megamacro",
  31670. height: math.unit(8, "miles")
  31671. },
  31672. ]
  31673. ))
  31674. characterMakers.push(() => makeCharacter(
  31675. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31676. {
  31677. side: {
  31678. height: math.unit(5.6, "m"),
  31679. weight: math.unit(8000, "kg"),
  31680. name: "Side",
  31681. image: {
  31682. source: "./media/characters/victoria/side.svg",
  31683. extra: 1542/1229,
  31684. bottom: 124/1666
  31685. }
  31686. },
  31687. maw: {
  31688. height: math.unit(7.14, "feet"),
  31689. name: "Maw",
  31690. image: {
  31691. source: "./media/characters/victoria/maw.svg"
  31692. }
  31693. },
  31694. },
  31695. [
  31696. {
  31697. name: "Normal",
  31698. height: math.unit(5.6, "m"),
  31699. default: true
  31700. },
  31701. ]
  31702. ))
  31703. characterMakers.push(() => makeCharacter(
  31704. { name: "Cat", species: ["cat", "nickit", "lucario", "riolu", "lopunny", "dog", "pikachu"], tags: ["anthro", "feral", "taur"] },
  31705. {
  31706. front: {
  31707. height: math.unit(5 + 6 / 12, "feet"),
  31708. name: "Front",
  31709. image: {
  31710. source: "./media/characters/cat/cat-front.svg",
  31711. extra: 1422/1262,
  31712. bottom: 61/1483
  31713. },
  31714. form: "cat",
  31715. default: true
  31716. },
  31717. back: {
  31718. height: math.unit(5 + 6 / 12, "feet"),
  31719. name: "Back",
  31720. image: {
  31721. source: "./media/characters/cat/cat-back.svg",
  31722. extra: 1466/1301,
  31723. bottom: 19/1485
  31724. },
  31725. form: "cat"
  31726. },
  31727. taur: {
  31728. height: math.unit(7, "feet"),
  31729. name: "Side",
  31730. image: {
  31731. source: "./media/characters/cat/taur-side.svg",
  31732. extra: 1389/1233,
  31733. bottom: 83/1472
  31734. },
  31735. form: "taur",
  31736. default: true
  31737. },
  31738. lucarioFront: {
  31739. height: math.unit(4, "feet"),
  31740. name: "Front",
  31741. image: {
  31742. source: "./media/characters/cat/lucario-front.svg",
  31743. extra: 1149/1019,
  31744. bottom: 84/1233
  31745. },
  31746. form: "lucario",
  31747. default: true
  31748. },
  31749. lucarioBack: {
  31750. height: math.unit(4, "feet"),
  31751. name: "Back",
  31752. image: {
  31753. source: "./media/characters/cat/lucario-back.svg",
  31754. extra: 1190/1059,
  31755. bottom: 33/1223
  31756. },
  31757. form: "lucario"
  31758. },
  31759. riolu_front: {
  31760. height: math.unit(2 + 4/12, "feet"),
  31761. name: "Front",
  31762. image: {
  31763. source: "./media/characters/cat/riolu-front.svg",
  31764. extra: 1104/956,
  31765. bottom: 70/1174
  31766. },
  31767. form: "riolu",
  31768. default: true
  31769. },
  31770. nickit: {
  31771. height: math.unit(2, "feet"),
  31772. name: "Side",
  31773. image: {
  31774. source: "./media/characters/cat/nickit-side.svg",
  31775. extra: 1087/852,
  31776. bottom: 67/1154
  31777. },
  31778. form: "nickit",
  31779. default: true
  31780. },
  31781. lopunnyFront: {
  31782. height: math.unit(5, "feet"),
  31783. name: "Front",
  31784. image: {
  31785. source: "./media/characters/cat/lopunny-front.svg",
  31786. extra: 1217/1078,
  31787. bottom: 23/1240
  31788. },
  31789. form: "lopunny",
  31790. default: true
  31791. },
  31792. lopunnyBack: {
  31793. height: math.unit(5, "feet"),
  31794. name: "Back",
  31795. image: {
  31796. source: "./media/characters/cat/lopunny-back.svg",
  31797. extra: 1205/1057,
  31798. bottom: 33/1238
  31799. },
  31800. form: "lopunny"
  31801. },
  31802. dog_front: {
  31803. height: math.unit(5 + 9/12, "feet"),
  31804. name: "Front",
  31805. image: {
  31806. source: "./media/characters/cat/dog-front.svg",
  31807. extra: 1403/1309,
  31808. bottom: 31/1434
  31809. },
  31810. form: "dog",
  31811. default: true
  31812. },
  31813. dog_back: {
  31814. height: math.unit(5 + 9/12, "feet"),
  31815. name: "Back",
  31816. image: {
  31817. source: "./media/characters/cat/dog-back.svg",
  31818. extra: 1393/1297,
  31819. bottom: 38/1431
  31820. },
  31821. form: "dog",
  31822. },
  31823. pikachu_front: {
  31824. height: math.unit(2.64, "feet"),
  31825. name: "Front",
  31826. image: {
  31827. source: "./media/characters/cat/pikachu-front.svg",
  31828. extra: 1224/958,
  31829. bottom: 34/1258
  31830. },
  31831. form: "pikachu",
  31832. default: true
  31833. },
  31834. pikachu_back: {
  31835. height: math.unit(2.64, "feet"),
  31836. name: "Back",
  31837. image: {
  31838. source: "./media/characters/cat/pikachu-back.svg",
  31839. extra: 1228/958,
  31840. bottom: 16/1244
  31841. },
  31842. form: "pikachu",
  31843. },
  31844. gigachuFront: {
  31845. height: math.unit(75, "feet"),
  31846. name: "Front",
  31847. image: {
  31848. source: "./media/characters/cat/gigachu-front.svg",
  31849. extra: 1239/1027,
  31850. bottom: 32/1271
  31851. },
  31852. form: "gigachu",
  31853. default: true
  31854. },
  31855. gigachuBack: {
  31856. height: math.unit(75, "feet"),
  31857. name: "Back",
  31858. image: {
  31859. source: "./media/characters/cat/gigachu-back.svg",
  31860. extra: 1229/1030,
  31861. bottom: 9/1238
  31862. },
  31863. form: "gigachu"
  31864. },
  31865. },
  31866. [
  31867. {
  31868. name: "Really small",
  31869. height: math.unit(1, "nm"),
  31870. allForms: true
  31871. },
  31872. {
  31873. name: "Micro",
  31874. height: math.unit(5, "inches"),
  31875. allForms: true
  31876. },
  31877. {
  31878. name: "Normal",
  31879. height: math.unit(5 + 6 / 12, "feet"),
  31880. default: true,
  31881. form: "cat"
  31882. },
  31883. {
  31884. name: "Normal",
  31885. height: math.unit(7, "feet"),
  31886. default: true,
  31887. form: "taur"
  31888. },
  31889. {
  31890. name: "Normal",
  31891. height: math.unit(4, "feet"),
  31892. default: true,
  31893. form: "lucario"
  31894. },
  31895. {
  31896. name: "Normal",
  31897. height: math.unit(2, "feet"),
  31898. default: true,
  31899. form: "nickit"
  31900. },
  31901. {
  31902. name: "Normal",
  31903. height: math.unit(5, "feet"),
  31904. default: true,
  31905. form: "lopunny"
  31906. },
  31907. {
  31908. name: "Normal",
  31909. height: math.unit(2 + 4/12, "feet"),
  31910. default: true,
  31911. form: "riolu"
  31912. },
  31913. {
  31914. name: "Normal",
  31915. height: math.unit(5 + 6 / 12, "feet"),
  31916. default: true,
  31917. form: "dog"
  31918. },
  31919. {
  31920. name: "Macro",
  31921. height: math.unit(50, "feet"),
  31922. allForms: true
  31923. },
  31924. {
  31925. name: "Normal",
  31926. height: math.unit(2.64, "feet"),
  31927. default: true,
  31928. form: "pikachu"
  31929. },
  31930. {
  31931. name: "Dynamax",
  31932. height: math.unit(75, "feet"),
  31933. form: "gigachu",
  31934. default: true
  31935. },
  31936. {
  31937. name: "Macro+",
  31938. height: math.unit(150, "feet"),
  31939. allForms: true
  31940. },
  31941. {
  31942. name: "Megamacro",
  31943. height: math.unit(100, "miles"),
  31944. allForms: true
  31945. },
  31946. ],
  31947. {
  31948. "cat": {
  31949. name: "Cat",
  31950. default: true
  31951. },
  31952. "taur": {
  31953. name: "Taur",
  31954. },
  31955. "lucario": {
  31956. name: "Lucario",
  31957. },
  31958. "riolu": {
  31959. name: "Riolu",
  31960. },
  31961. "nickit": {
  31962. name: "Nickit",
  31963. },
  31964. "lopunny": {
  31965. name: "Lopunny",
  31966. },
  31967. "dog": {
  31968. name: "Dog",
  31969. },
  31970. "pikachu": {
  31971. name: "Pikachu",
  31972. },
  31973. "gigachu": {
  31974. name: "Gigachu",
  31975. ignoreAllFormSizes: true
  31976. }
  31977. }
  31978. ))
  31979. characterMakers.push(() => makeCharacter(
  31980. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31981. {
  31982. front: {
  31983. height: math.unit(63.4, "meters"),
  31984. weight: math.unit(3.28349e+6, "kilograms"),
  31985. name: "Front",
  31986. image: {
  31987. source: "./media/characters/kirina-violet/front.svg",
  31988. extra: 2812 / 2725,
  31989. bottom: 0 / 2812
  31990. }
  31991. },
  31992. back: {
  31993. height: math.unit(63.4, "meters"),
  31994. weight: math.unit(3.28349e+6, "kilograms"),
  31995. name: "Back",
  31996. image: {
  31997. source: "./media/characters/kirina-violet/back.svg",
  31998. extra: 2812 / 2725,
  31999. bottom: 0 / 2812
  32000. }
  32001. },
  32002. mouth: {
  32003. height: math.unit(4.35, "meters"),
  32004. name: "Mouth",
  32005. image: {
  32006. source: "./media/characters/kirina-violet/mouth.svg"
  32007. }
  32008. },
  32009. paw: {
  32010. height: math.unit(5.6, "meters"),
  32011. name: "Paw",
  32012. image: {
  32013. source: "./media/characters/kirina-violet/paw.svg"
  32014. }
  32015. },
  32016. tail: {
  32017. height: math.unit(18, "meters"),
  32018. name: "Tail",
  32019. image: {
  32020. source: "./media/characters/kirina-violet/tail.svg"
  32021. }
  32022. },
  32023. },
  32024. [
  32025. {
  32026. name: "Macro",
  32027. height: math.unit(63.4, "meters"),
  32028. default: true
  32029. },
  32030. ]
  32031. ))
  32032. characterMakers.push(() => makeCharacter(
  32033. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  32034. {
  32035. front: {
  32036. height: math.unit(6, "feet"),
  32037. weight: math.unit(150, "lb"),
  32038. name: "Front",
  32039. image: {
  32040. source: "./media/characters/sfaiyan/front.svg",
  32041. extra: 999 / 978,
  32042. bottom: 5 / 1004
  32043. }
  32044. },
  32045. },
  32046. [
  32047. {
  32048. name: "Normal",
  32049. height: math.unit(1.82, "meters")
  32050. },
  32051. {
  32052. name: "Giant",
  32053. height: math.unit(2.27, "km"),
  32054. default: true
  32055. },
  32056. ]
  32057. ))
  32058. characterMakers.push(() => makeCharacter(
  32059. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  32060. {
  32061. front: {
  32062. height: math.unit(179, "cm"),
  32063. weight: math.unit(100, "kg"),
  32064. name: "Front",
  32065. image: {
  32066. source: "./media/characters/raunehkeli/front.svg",
  32067. extra: 1934 / 1926,
  32068. bottom: 0 / 1934
  32069. }
  32070. },
  32071. },
  32072. [
  32073. {
  32074. name: "Normal",
  32075. height: math.unit(179, "cm")
  32076. },
  32077. {
  32078. name: "Maximum",
  32079. height: math.unit(575, "meters"),
  32080. default: true
  32081. },
  32082. ]
  32083. ))
  32084. characterMakers.push(() => makeCharacter(
  32085. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  32086. {
  32087. dressed: {
  32088. height: math.unit(6 + 2/12, "feet"),
  32089. weight: math.unit(150, "lb"),
  32090. name: "Dressed",
  32091. image: {
  32092. source: "./media/characters/beatrice-the-behemoth-heathers/dressed.svg",
  32093. extra: 2620/2496,
  32094. bottom: 66/2686
  32095. }
  32096. },
  32097. nude: {
  32098. height: math.unit(6 + 2/12, "feet"),
  32099. weight: math.unit(150, "lb"),
  32100. name: "Nude",
  32101. image: {
  32102. source: "./media/characters/beatrice-the-behemoth-heathers/nude.svg",
  32103. extra: 2620/2496,
  32104. bottom: 66/2686
  32105. }
  32106. },
  32107. },
  32108. [
  32109. {
  32110. name: "Normal",
  32111. height: math.unit(6 + 2 / 12, "feet")
  32112. },
  32113. {
  32114. name: "Max Height",
  32115. height: math.unit(1181, "feet"),
  32116. default: true
  32117. },
  32118. ]
  32119. ))
  32120. characterMakers.push(() => makeCharacter(
  32121. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  32122. {
  32123. front: {
  32124. height: math.unit(5 + 6 / 12, "feet"),
  32125. weight: math.unit(108, "lb"),
  32126. name: "Front",
  32127. image: {
  32128. source: "./media/characters/lilith-zott/front.svg",
  32129. extra: 2415/2133,
  32130. bottom: 193/2608
  32131. }
  32132. },
  32133. },
  32134. [
  32135. {
  32136. name: "Base Height",
  32137. height: math.unit(5 + 6 / 12, "feet")
  32138. },
  32139. {
  32140. name: "Preferred Height",
  32141. height: math.unit(200, "feet")
  32142. },
  32143. {
  32144. name: "Max Height",
  32145. height: math.unit(1030, "feet"),
  32146. default: true
  32147. },
  32148. ]
  32149. ))
  32150. characterMakers.push(() => makeCharacter(
  32151. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  32152. {
  32153. super: {
  32154. height: math.unit(6 + 2/12, "feet"),
  32155. weight: math.unit(150, "lb"),
  32156. name: "Super",
  32157. image: {
  32158. source: "./media/characters/holly-the-mega-mousky-heathers/super.svg",
  32159. extra: 2555/2387,
  32160. bottom: 50/2605
  32161. }
  32162. },
  32163. casual: {
  32164. height: math.unit(6 + 2/12, "feet"),
  32165. weight: math.unit(150, "lb"),
  32166. name: "Casual",
  32167. image: {
  32168. source: "./media/characters/holly-the-mega-mousky-heathers/casual.svg",
  32169. extra: 2555/2387,
  32170. bottom: 50/2605
  32171. }
  32172. },
  32173. hand: {
  32174. height: math.unit(1.08, "feet"),
  32175. name: "Hand",
  32176. image: {
  32177. source: "./media/characters/holly-the-mega-mousky-heathers/hand.svg"
  32178. }
  32179. },
  32180. paw: {
  32181. height: math.unit(1.33, "feet"),
  32182. name: "Paw",
  32183. image: {
  32184. source: "./media/characters/holly-the-mega-mousky-heathers/paw.svg"
  32185. }
  32186. },
  32187. },
  32188. [
  32189. {
  32190. name: "Normal",
  32191. height: math.unit(6 + 2/12, "feet")
  32192. },
  32193. {
  32194. name: "Preferred Height",
  32195. height: math.unit(220, "feet")
  32196. },
  32197. {
  32198. name: "Max Height",
  32199. height: math.unit(1100, "feet"),
  32200. default: true
  32201. },
  32202. ]
  32203. ))
  32204. characterMakers.push(() => makeCharacter(
  32205. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  32206. {
  32207. front: {
  32208. height: math.unit(100, "miles"),
  32209. name: "Front",
  32210. image: {
  32211. source: "./media/characters/sona/front.svg",
  32212. extra: 2433 / 2201,
  32213. bottom: 53 / 2486
  32214. }
  32215. },
  32216. foot: {
  32217. height: math.unit(16.1, "miles"),
  32218. name: "Foot",
  32219. image: {
  32220. source: "./media/characters/sona/foot.svg"
  32221. }
  32222. },
  32223. },
  32224. [
  32225. {
  32226. name: "Macro",
  32227. height: math.unit(100, "miles"),
  32228. default: true
  32229. },
  32230. ]
  32231. ))
  32232. characterMakers.push(() => makeCharacter(
  32233. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  32234. {
  32235. front: {
  32236. height: math.unit(6, "feet"),
  32237. weight: math.unit(150, "lb"),
  32238. name: "Front",
  32239. image: {
  32240. source: "./media/characters/bailey/front.svg",
  32241. extra: 1778 / 1724,
  32242. bottom: 30 / 1808
  32243. }
  32244. },
  32245. },
  32246. [
  32247. {
  32248. name: "Micro",
  32249. height: math.unit(4, "inches")
  32250. },
  32251. {
  32252. name: "Normal",
  32253. height: math.unit(5 + 5 / 12, "feet"),
  32254. default: true
  32255. },
  32256. {
  32257. name: "Macro",
  32258. height: math.unit(250, "feet")
  32259. },
  32260. {
  32261. name: "Megamacro",
  32262. height: math.unit(100, "miles")
  32263. },
  32264. ]
  32265. ))
  32266. characterMakers.push(() => makeCharacter(
  32267. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  32268. {
  32269. front: {
  32270. height: math.unit(5 + 2 / 12, "feet"),
  32271. weight: math.unit(120, "lb"),
  32272. name: "Front",
  32273. image: {
  32274. source: "./media/characters/snaps/front.svg",
  32275. extra: 2370 / 2177,
  32276. bottom: 48 / 2418
  32277. }
  32278. },
  32279. back: {
  32280. height: math.unit(5 + 2 / 12, "feet"),
  32281. weight: math.unit(120, "lb"),
  32282. name: "Back",
  32283. image: {
  32284. source: "./media/characters/snaps/back.svg",
  32285. extra: 2408 / 2258,
  32286. bottom: 15 / 2423
  32287. }
  32288. },
  32289. },
  32290. [
  32291. {
  32292. name: "Micro",
  32293. height: math.unit(9, "inches")
  32294. },
  32295. {
  32296. name: "Normal",
  32297. height: math.unit(5 + 2 / 12, "feet"),
  32298. default: true
  32299. },
  32300. {
  32301. name: "Mini Macro",
  32302. height: math.unit(10, "feet")
  32303. },
  32304. ]
  32305. ))
  32306. characterMakers.push(() => makeCharacter(
  32307. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  32308. {
  32309. front: {
  32310. height: math.unit(1.8, "meters"),
  32311. weight: math.unit(85, "kg"),
  32312. name: "Front",
  32313. image: {
  32314. source: "./media/characters/azteck/front.svg",
  32315. extra: 2815 / 2625,
  32316. bottom: 89 / 2904
  32317. }
  32318. },
  32319. back: {
  32320. height: math.unit(1.8, "meters"),
  32321. weight: math.unit(85, "kg"),
  32322. name: "Back",
  32323. image: {
  32324. source: "./media/characters/azteck/back.svg",
  32325. extra: 2856 / 2648,
  32326. bottom: 85 / 2941
  32327. }
  32328. },
  32329. frontDressed: {
  32330. height: math.unit(1.8, "meters"),
  32331. weight: math.unit(85, "kg"),
  32332. name: "Front (Dressed)",
  32333. image: {
  32334. source: "./media/characters/azteck/front-dressed.svg",
  32335. extra: 2147 / 2003,
  32336. bottom: 68 / 2215
  32337. }
  32338. },
  32339. head: {
  32340. height: math.unit(0.47, "meters"),
  32341. weight: math.unit(85, "kg"),
  32342. name: "Head",
  32343. image: {
  32344. source: "./media/characters/azteck/head.svg"
  32345. }
  32346. },
  32347. },
  32348. [
  32349. {
  32350. name: "Bite sized",
  32351. height: math.unit(16, "cm")
  32352. },
  32353. {
  32354. name: "Normal",
  32355. height: math.unit(1.8, "meters"),
  32356. default: true
  32357. },
  32358. ]
  32359. ))
  32360. characterMakers.push(() => makeCharacter(
  32361. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  32362. {
  32363. front: {
  32364. height: math.unit(6, "feet"),
  32365. weight: math.unit(150, "lb"),
  32366. name: "Front",
  32367. image: {
  32368. source: "./media/characters/pidge/front.svg",
  32369. extra: 1936/1820,
  32370. bottom: 0/1936
  32371. }
  32372. },
  32373. back: {
  32374. height: math.unit(6, "feet"),
  32375. weight: math.unit(150, "lb"),
  32376. name: "Back",
  32377. image: {
  32378. source: "./media/characters/pidge/back.svg",
  32379. extra: 1938/1843,
  32380. bottom: 0/1938
  32381. }
  32382. },
  32383. casual: {
  32384. height: math.unit(6, "feet"),
  32385. weight: math.unit(150, "lb"),
  32386. name: "Casual",
  32387. image: {
  32388. source: "./media/characters/pidge/casual.svg",
  32389. extra: 1936/1820,
  32390. bottom: 0/1936
  32391. }
  32392. },
  32393. tech: {
  32394. height: math.unit(6, "feet"),
  32395. weight: math.unit(150, "lb"),
  32396. name: "Tech",
  32397. image: {
  32398. source: "./media/characters/pidge/tech.svg",
  32399. extra: 1802/1682,
  32400. bottom: 0/1802
  32401. }
  32402. },
  32403. head: {
  32404. height: math.unit(1.61, "feet"),
  32405. name: "Head",
  32406. image: {
  32407. source: "./media/characters/pidge/head.svg"
  32408. }
  32409. },
  32410. collar: {
  32411. height: math.unit(0.82, "feet"),
  32412. name: "Collar",
  32413. image: {
  32414. source: "./media/characters/pidge/collar.svg"
  32415. }
  32416. },
  32417. },
  32418. [
  32419. {
  32420. name: "Macro",
  32421. height: math.unit(2, "mile"),
  32422. default: true
  32423. },
  32424. {
  32425. name: "PUPPY",
  32426. height: math.unit(20, "miles")
  32427. },
  32428. ]
  32429. ))
  32430. characterMakers.push(() => makeCharacter(
  32431. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  32432. {
  32433. front: {
  32434. height: math.unit(6, "feet"),
  32435. weight: math.unit(150, "lb"),
  32436. name: "Front",
  32437. image: {
  32438. source: "./media/characters/en/front.svg",
  32439. extra: 1697 / 1563,
  32440. bottom: 103 / 1800
  32441. }
  32442. },
  32443. back: {
  32444. height: math.unit(6, "feet"),
  32445. weight: math.unit(150, "lb"),
  32446. name: "Back",
  32447. image: {
  32448. source: "./media/characters/en/back.svg",
  32449. extra: 1700 / 1570,
  32450. bottom: 51 / 1751
  32451. }
  32452. },
  32453. frontDressed: {
  32454. height: math.unit(6, "feet"),
  32455. weight: math.unit(150, "lb"),
  32456. name: "Front (Dressed)",
  32457. image: {
  32458. source: "./media/characters/en/front-dressed.svg",
  32459. extra: 1697 / 1563,
  32460. bottom: 103 / 1800
  32461. }
  32462. },
  32463. backDressed: {
  32464. height: math.unit(6, "feet"),
  32465. weight: math.unit(150, "lb"),
  32466. name: "Back (Dressed)",
  32467. image: {
  32468. source: "./media/characters/en/back-dressed.svg",
  32469. extra: 1700 / 1570,
  32470. bottom: 51 / 1751
  32471. }
  32472. },
  32473. },
  32474. [
  32475. {
  32476. name: "Macro",
  32477. height: math.unit(210, "feet"),
  32478. default: true
  32479. },
  32480. ]
  32481. ))
  32482. characterMakers.push(() => makeCharacter(
  32483. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  32484. {
  32485. front: {
  32486. height: math.unit(6, "feet"),
  32487. weight: math.unit(150, "lb"),
  32488. name: "Front",
  32489. image: {
  32490. source: "./media/characters/haze-orris/front.svg",
  32491. extra: 3975 / 3525,
  32492. bottom: 137 / 4112
  32493. }
  32494. },
  32495. },
  32496. [
  32497. {
  32498. name: "Micro",
  32499. height: math.unit(150, "mm"),
  32500. default: true
  32501. },
  32502. ]
  32503. ))
  32504. characterMakers.push(() => makeCharacter(
  32505. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  32506. {
  32507. front: {
  32508. height: math.unit(6, "feet"),
  32509. weight: math.unit(150, "lb"),
  32510. name: "Front",
  32511. image: {
  32512. source: "./media/characters/casselene-yaro/front.svg",
  32513. extra: 4721 / 4541,
  32514. bottom: 82 / 4803
  32515. }
  32516. },
  32517. back: {
  32518. height: math.unit(6, "feet"),
  32519. weight: math.unit(150, "lb"),
  32520. name: "Back",
  32521. image: {
  32522. source: "./media/characters/casselene-yaro/back.svg",
  32523. extra: 4569 / 4377,
  32524. bottom: 69 / 4638
  32525. }
  32526. },
  32527. dressed: {
  32528. height: math.unit(6, "feet"),
  32529. weight: math.unit(150, "lb"),
  32530. name: "Dressed",
  32531. image: {
  32532. source: "./media/characters/casselene-yaro/dressed.svg",
  32533. extra: 4721 / 4541,
  32534. bottom: 82 / 4803
  32535. }
  32536. },
  32537. maw: {
  32538. height: math.unit(1, "feet"),
  32539. name: "Maw",
  32540. image: {
  32541. source: "./media/characters/casselene-yaro/maw.svg"
  32542. }
  32543. },
  32544. },
  32545. [
  32546. {
  32547. name: "Macro",
  32548. height: math.unit(190, "feet"),
  32549. default: true
  32550. },
  32551. ]
  32552. ))
  32553. characterMakers.push(() => makeCharacter(
  32554. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  32555. {
  32556. front: {
  32557. height: math.unit(10, "feet"),
  32558. weight: math.unit(15015, "lb"),
  32559. name: "Front",
  32560. image: {
  32561. source: "./media/characters/platine/front.svg",
  32562. extra: 1741/1650,
  32563. bottom: 84/1825
  32564. }
  32565. },
  32566. side: {
  32567. height: math.unit(10, "feet"),
  32568. weight: math.unit(15015, "lb"),
  32569. name: "Side",
  32570. image: {
  32571. source: "./media/characters/platine/side.svg",
  32572. extra: 1790/1705,
  32573. bottom: 29/1819
  32574. }
  32575. },
  32576. },
  32577. [
  32578. {
  32579. name: "Normal",
  32580. height: math.unit(10, "feet"),
  32581. default: true
  32582. },
  32583. {
  32584. name: "Macro",
  32585. height: math.unit(100, "feet")
  32586. },
  32587. {
  32588. name: "Megamacro",
  32589. height: math.unit(1000, "feet")
  32590. },
  32591. ]
  32592. ))
  32593. characterMakers.push(() => makeCharacter(
  32594. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  32595. {
  32596. front: {
  32597. height: math.unit(15 + 5 / 12, "feet"),
  32598. weight: math.unit(4600, "lb"),
  32599. name: "Front",
  32600. image: {
  32601. source: "./media/characters/neapolitan-ananassa/front.svg",
  32602. extra: 2903 / 2736,
  32603. bottom: 0 / 2903
  32604. }
  32605. },
  32606. side: {
  32607. height: math.unit(15 + 5 / 12, "feet"),
  32608. weight: math.unit(4600, "lb"),
  32609. name: "Side",
  32610. image: {
  32611. source: "./media/characters/neapolitan-ananassa/side.svg",
  32612. extra: 2925 / 2719,
  32613. bottom: 0 / 2925
  32614. }
  32615. },
  32616. back: {
  32617. height: math.unit(15 + 5 / 12, "feet"),
  32618. weight: math.unit(4600, "lb"),
  32619. name: "Back",
  32620. image: {
  32621. source: "./media/characters/neapolitan-ananassa/back.svg",
  32622. extra: 2903 / 2736,
  32623. bottom: 0 / 2903
  32624. }
  32625. },
  32626. },
  32627. [
  32628. {
  32629. name: "Normal",
  32630. height: math.unit(15 + 5 / 12, "feet"),
  32631. default: true
  32632. },
  32633. {
  32634. name: "Post-Millenium",
  32635. height: math.unit(35 + 5 / 12, "feet")
  32636. },
  32637. {
  32638. name: "Post-Era",
  32639. height: math.unit(450 + 5 / 12, "feet")
  32640. },
  32641. ]
  32642. ))
  32643. characterMakers.push(() => makeCharacter(
  32644. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  32645. {
  32646. front: {
  32647. height: math.unit(300, "meters"),
  32648. weight: math.unit(125000, "tonnes"),
  32649. name: "Front",
  32650. image: {
  32651. source: "./media/characters/pazuzu/front.svg",
  32652. extra: 877 / 794,
  32653. bottom: 47 / 924
  32654. }
  32655. },
  32656. },
  32657. [
  32658. {
  32659. name: "Macro",
  32660. height: math.unit(300, "meters"),
  32661. default: true
  32662. },
  32663. ]
  32664. ))
  32665. characterMakers.push(() => makeCharacter(
  32666. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  32667. {
  32668. side: {
  32669. height: math.unit(10 + 7 / 12, "feet"),
  32670. weight: math.unit(2.5, "tons"),
  32671. name: "Side",
  32672. image: {
  32673. source: "./media/characters/aasha/side.svg",
  32674. extra: 1345 / 1245,
  32675. bottom: 111 / 1456
  32676. }
  32677. },
  32678. back: {
  32679. height: math.unit(10 + 7 / 12, "feet"),
  32680. weight: math.unit(2.5, "tons"),
  32681. name: "Back",
  32682. image: {
  32683. source: "./media/characters/aasha/back.svg",
  32684. extra: 1133 / 1057,
  32685. bottom: 257 / 1390
  32686. }
  32687. },
  32688. },
  32689. [
  32690. {
  32691. name: "Normal",
  32692. height: math.unit(10 + 7 / 12, "feet"),
  32693. default: true
  32694. },
  32695. ]
  32696. ))
  32697. characterMakers.push(() => makeCharacter(
  32698. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  32699. {
  32700. front: {
  32701. height: math.unit(6 + 3 / 12, "feet"),
  32702. name: "Front",
  32703. image: {
  32704. source: "./media/characters/nevan/front.svg",
  32705. extra: 704 / 704,
  32706. bottom: 28 / 732
  32707. }
  32708. },
  32709. back: {
  32710. height: math.unit(6 + 3 / 12, "feet"),
  32711. name: "Back",
  32712. image: {
  32713. source: "./media/characters/nevan/back.svg",
  32714. extra: 714 / 714,
  32715. bottom: 21 / 735
  32716. }
  32717. },
  32718. frontFlaccid: {
  32719. height: math.unit(6 + 3 / 12, "feet"),
  32720. name: "Front (Flaccid)",
  32721. image: {
  32722. source: "./media/characters/nevan/front-flaccid.svg",
  32723. extra: 704 / 704,
  32724. bottom: 28 / 732
  32725. }
  32726. },
  32727. frontErect: {
  32728. height: math.unit(6 + 3 / 12, "feet"),
  32729. name: "Front (Erect)",
  32730. image: {
  32731. source: "./media/characters/nevan/front-erect.svg",
  32732. extra: 704 / 704,
  32733. bottom: 28 / 732
  32734. }
  32735. },
  32736. backFlaccid: {
  32737. height: math.unit(6 + 3 / 12, "feet"),
  32738. name: "Back (Flaccid)",
  32739. image: {
  32740. source: "./media/characters/nevan/back-flaccid.svg",
  32741. extra: 714 / 714,
  32742. bottom: 21 / 735
  32743. }
  32744. },
  32745. },
  32746. [
  32747. {
  32748. name: "Normal",
  32749. height: math.unit(6 + 3 / 12, "feet"),
  32750. default: true
  32751. },
  32752. ]
  32753. ))
  32754. characterMakers.push(() => makeCharacter(
  32755. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32756. {
  32757. front: {
  32758. height: math.unit(4, "feet"),
  32759. name: "Front",
  32760. image: {
  32761. source: "./media/characters/arhan/front.svg",
  32762. extra: 3368 / 3133,
  32763. bottom: 0 / 3368
  32764. }
  32765. },
  32766. side: {
  32767. height: math.unit(4, "feet"),
  32768. name: "Side",
  32769. image: {
  32770. source: "./media/characters/arhan/side.svg",
  32771. extra: 3347 / 3105,
  32772. bottom: 0 / 3347
  32773. }
  32774. },
  32775. tongue: {
  32776. height: math.unit(1.42, "feet"),
  32777. name: "Tongue",
  32778. image: {
  32779. source: "./media/characters/arhan/tongue.svg"
  32780. }
  32781. },
  32782. head: {
  32783. height: math.unit(0.85, "feet"),
  32784. name: "Head",
  32785. image: {
  32786. source: "./media/characters/arhan/head.svg"
  32787. }
  32788. },
  32789. },
  32790. [
  32791. {
  32792. name: "Normal",
  32793. height: math.unit(4, "feet"),
  32794. default: true
  32795. },
  32796. ]
  32797. ))
  32798. characterMakers.push(() => makeCharacter(
  32799. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32800. {
  32801. front: {
  32802. height: math.unit(5 + 7.5 / 12, "feet"),
  32803. weight: math.unit(120, "lb"),
  32804. name: "Front",
  32805. image: {
  32806. source: "./media/characters/digi-duncan/front.svg",
  32807. extra: 330 / 326,
  32808. bottom: 16 / 346
  32809. }
  32810. },
  32811. side: {
  32812. height: math.unit(5 + 7.5 / 12, "feet"),
  32813. weight: math.unit(120, "lb"),
  32814. name: "Side",
  32815. image: {
  32816. source: "./media/characters/digi-duncan/side.svg",
  32817. extra: 341 / 337,
  32818. bottom: 1 / 342
  32819. }
  32820. },
  32821. back: {
  32822. height: math.unit(5 + 7.5 / 12, "feet"),
  32823. weight: math.unit(120, "lb"),
  32824. name: "Back",
  32825. image: {
  32826. source: "./media/characters/digi-duncan/back.svg",
  32827. extra: 330 / 326,
  32828. bottom: 12 / 342
  32829. }
  32830. },
  32831. },
  32832. [
  32833. {
  32834. name: "Speck",
  32835. height: math.unit(0.25, "mm")
  32836. },
  32837. {
  32838. name: "Micro",
  32839. height: math.unit(5, "mm")
  32840. },
  32841. {
  32842. name: "Tiny",
  32843. height: math.unit(0.5, "inches"),
  32844. default: true
  32845. },
  32846. {
  32847. name: "Human",
  32848. height: math.unit(5 + 7.5 / 12, "feet")
  32849. },
  32850. {
  32851. name: "Minigiant",
  32852. height: math.unit(8 + 5.25, "feet")
  32853. },
  32854. {
  32855. name: "Giant",
  32856. height: math.unit(2000, "feet")
  32857. },
  32858. {
  32859. name: "Mega",
  32860. height: math.unit(371.1, "miles")
  32861. },
  32862. ]
  32863. ))
  32864. characterMakers.push(() => makeCharacter(
  32865. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32866. {
  32867. front: {
  32868. height: math.unit(2, "meters"),
  32869. weight: math.unit(350, "kg"),
  32870. name: "Front",
  32871. image: {
  32872. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32873. extra: 898 / 838,
  32874. bottom: 9 / 907
  32875. }
  32876. },
  32877. },
  32878. [
  32879. {
  32880. name: "Micro",
  32881. height: math.unit(8, "meters")
  32882. },
  32883. {
  32884. name: "Normal",
  32885. height: math.unit(50, "meters"),
  32886. default: true
  32887. },
  32888. {
  32889. name: "Macro",
  32890. height: math.unit(500, "meters")
  32891. },
  32892. ]
  32893. ))
  32894. characterMakers.push(() => makeCharacter(
  32895. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32896. {
  32897. front: {
  32898. height: math.unit(6 + 6 / 12, "feet"),
  32899. name: "Front",
  32900. image: {
  32901. source: "./media/characters/khardesh/front.svg",
  32902. extra: 1788/1596,
  32903. bottom: 66/1854
  32904. }
  32905. },
  32906. back: {
  32907. height: math.unit(6 + 6 / 12, "feet"),
  32908. name: "Back",
  32909. image: {
  32910. source: "./media/characters/khardesh/back.svg",
  32911. extra: 1781/1584,
  32912. bottom: 68/1849
  32913. }
  32914. },
  32915. },
  32916. [
  32917. {
  32918. name: "Normal",
  32919. height: math.unit(6 + 6 / 12, "feet"),
  32920. default: true
  32921. },
  32922. {
  32923. name: "Normal+",
  32924. height: math.unit(4, "meters")
  32925. },
  32926. {
  32927. name: "Macro",
  32928. height: math.unit(50, "meters")
  32929. },
  32930. {
  32931. name: "Macro+",
  32932. height: math.unit(100, "meters")
  32933. },
  32934. {
  32935. name: "Megamacro",
  32936. height: math.unit(20, "km")
  32937. },
  32938. ]
  32939. ))
  32940. characterMakers.push(() => makeCharacter(
  32941. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32942. {
  32943. front: {
  32944. height: math.unit(6, "feet"),
  32945. weight: math.unit(150, "lb"),
  32946. name: "Front",
  32947. image: {
  32948. source: "./media/characters/kosho/front.svg",
  32949. extra: 1847 / 1847,
  32950. bottom: 86 / 1933
  32951. }
  32952. },
  32953. },
  32954. [
  32955. {
  32956. name: "Second-stage micro",
  32957. height: math.unit(0.5, "inches")
  32958. },
  32959. {
  32960. name: "First-stage micro",
  32961. height: math.unit(6, "inches")
  32962. },
  32963. {
  32964. name: "Normal",
  32965. height: math.unit(6, "feet"),
  32966. default: true
  32967. },
  32968. {
  32969. name: "First-stage macro",
  32970. height: math.unit(72, "feet")
  32971. },
  32972. {
  32973. name: "Second-stage macro",
  32974. height: math.unit(864, "feet")
  32975. },
  32976. ]
  32977. ))
  32978. characterMakers.push(() => makeCharacter(
  32979. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32980. {
  32981. normal: {
  32982. height: math.unit(4 + 6 / 12, "feet"),
  32983. name: "Normal",
  32984. image: {
  32985. source: "./media/characters/hydra/normal.svg",
  32986. extra: 2833 / 2634,
  32987. bottom: 68 / 2901
  32988. }
  32989. },
  32990. smol: {
  32991. height: math.unit(0.705, "inches"),
  32992. name: "Smol",
  32993. image: {
  32994. source: "./media/characters/hydra/smol.svg",
  32995. extra: 2715 / 2540,
  32996. bottom: 0 / 2715
  32997. }
  32998. },
  32999. },
  33000. [
  33001. {
  33002. name: "Normal",
  33003. height: math.unit(4 + 6 / 12, "feet"),
  33004. default: true
  33005. }
  33006. ]
  33007. ))
  33008. characterMakers.push(() => makeCharacter(
  33009. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  33010. {
  33011. front: {
  33012. height: math.unit(0.6, "cm"),
  33013. name: "Front",
  33014. image: {
  33015. source: "./media/characters/daz/front.svg",
  33016. extra: 1682 / 1164,
  33017. bottom: 42 / 1724
  33018. }
  33019. },
  33020. },
  33021. [
  33022. {
  33023. name: "Normal",
  33024. height: math.unit(0.6, "cm"),
  33025. default: true
  33026. },
  33027. ]
  33028. ))
  33029. characterMakers.push(() => makeCharacter(
  33030. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  33031. {
  33032. front: {
  33033. height: math.unit(6, "feet"),
  33034. weight: math.unit(235, "lb"),
  33035. name: "Front",
  33036. image: {
  33037. source: "./media/characters/theo-pangolin/front.svg",
  33038. extra: 1996 / 1969,
  33039. bottom: 115 / 2111
  33040. }
  33041. },
  33042. back: {
  33043. height: math.unit(6, "feet"),
  33044. weight: math.unit(235, "lb"),
  33045. name: "Back",
  33046. image: {
  33047. source: "./media/characters/theo-pangolin/back.svg",
  33048. extra: 1979 / 1979,
  33049. bottom: 40 / 2019
  33050. }
  33051. },
  33052. feral: {
  33053. height: math.unit(2, "feet"),
  33054. weight: math.unit(30, "lb"),
  33055. name: "Feral",
  33056. image: {
  33057. source: "./media/characters/theo-pangolin/feral.svg",
  33058. extra: 803 / 791,
  33059. bottom: 181 / 984
  33060. }
  33061. },
  33062. footFive: {
  33063. height: math.unit(1.43, "feet"),
  33064. name: "Foot (Five Toes)",
  33065. image: {
  33066. source: "./media/characters/theo-pangolin/foot-five.svg"
  33067. }
  33068. },
  33069. footFour: {
  33070. height: math.unit(1.43, "feet"),
  33071. name: "Foot (Four Toes)",
  33072. image: {
  33073. source: "./media/characters/theo-pangolin/foot-four.svg"
  33074. }
  33075. },
  33076. handFour: {
  33077. height: math.unit(0.81, "feet"),
  33078. name: "Hand (Four Fingers)",
  33079. image: {
  33080. source: "./media/characters/theo-pangolin/hand-four.svg"
  33081. }
  33082. },
  33083. handThree: {
  33084. height: math.unit(0.81, "feet"),
  33085. name: "Hand (Three Fingers)",
  33086. image: {
  33087. source: "./media/characters/theo-pangolin/hand-three.svg"
  33088. }
  33089. },
  33090. headFront: {
  33091. height: math.unit(1.37, "feet"),
  33092. name: "Head (Front)",
  33093. image: {
  33094. source: "./media/characters/theo-pangolin/head-front.svg"
  33095. }
  33096. },
  33097. headSide: {
  33098. height: math.unit(1.43, "feet"),
  33099. name: "Head (Side)",
  33100. image: {
  33101. source: "./media/characters/theo-pangolin/head-side.svg"
  33102. }
  33103. },
  33104. tongue: {
  33105. height: math.unit(2.29, "feet"),
  33106. name: "Tongue",
  33107. image: {
  33108. source: "./media/characters/theo-pangolin/tongue.svg"
  33109. }
  33110. },
  33111. },
  33112. [
  33113. {
  33114. name: "Normal",
  33115. height: math.unit(6, "feet")
  33116. },
  33117. {
  33118. name: "Macro",
  33119. height: math.unit(400, "feet"),
  33120. default: true
  33121. },
  33122. ]
  33123. ))
  33124. characterMakers.push(() => makeCharacter(
  33125. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  33126. {
  33127. front: {
  33128. height: math.unit(6, "inches"),
  33129. weight: math.unit(0.036, "kg"),
  33130. name: "Front",
  33131. image: {
  33132. source: "./media/characters/renée/front.svg",
  33133. extra: 900 / 886,
  33134. bottom: 8 / 908
  33135. }
  33136. },
  33137. },
  33138. [
  33139. {
  33140. name: "Nano",
  33141. height: math.unit(1, "nm")
  33142. },
  33143. {
  33144. name: "Micro",
  33145. height: math.unit(1, "mm")
  33146. },
  33147. {
  33148. name: "Normal",
  33149. height: math.unit(6, "inches")
  33150. },
  33151. {
  33152. name: "Macro",
  33153. height: math.unit(2000, "feet"),
  33154. default: true
  33155. },
  33156. {
  33157. name: "Megamacro",
  33158. height: math.unit(2, "km")
  33159. },
  33160. {
  33161. name: "Gigamacro",
  33162. height: math.unit(2000, "km")
  33163. },
  33164. {
  33165. name: "Teramacro",
  33166. height: math.unit(250000, "km")
  33167. },
  33168. ]
  33169. ))
  33170. characterMakers.push(() => makeCharacter(
  33171. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  33172. {
  33173. front: {
  33174. height: math.unit(4, "meters"),
  33175. weight: math.unit(150, "kg"),
  33176. name: "Front",
  33177. image: {
  33178. source: "./media/characters/caledvwlch/front.svg",
  33179. extra: 1757/1537,
  33180. bottom: 31/1788
  33181. }
  33182. },
  33183. side: {
  33184. height: math.unit(4, "meters"),
  33185. weight: math.unit(150, "kg"),
  33186. name: "Side",
  33187. image: {
  33188. source: "./media/characters/caledvwlch/side.svg",
  33189. extra: 1605 / 1536,
  33190. bottom: 31 / 1636
  33191. }
  33192. },
  33193. back: {
  33194. height: math.unit(4, "meters"),
  33195. weight: math.unit(150, "kg"),
  33196. name: "Back",
  33197. image: {
  33198. source: "./media/characters/caledvwlch/back.svg",
  33199. extra: 1635 / 1565,
  33200. bottom: 27 / 1662
  33201. }
  33202. },
  33203. },
  33204. [
  33205. {
  33206. name: "\"Incognito\"",
  33207. height: math.unit(4, "meters")
  33208. },
  33209. {
  33210. name: "Small rampage",
  33211. height: math.unit(600, "meters")
  33212. },
  33213. {
  33214. name: "Mega",
  33215. height: math.unit(30, "km")
  33216. },
  33217. {
  33218. name: "Home-size",
  33219. height: math.unit(50, "km"),
  33220. default: true
  33221. },
  33222. {
  33223. name: "Giga",
  33224. height: math.unit(300, "km")
  33225. },
  33226. {
  33227. name: "Lounging",
  33228. height: math.unit(11000, "km")
  33229. },
  33230. {
  33231. name: "Planet snacking",
  33232. height: math.unit(2000000, "km")
  33233. },
  33234. ]
  33235. ))
  33236. characterMakers.push(() => makeCharacter(
  33237. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  33238. {
  33239. front: {
  33240. height: math.unit(6, "feet"),
  33241. weight: math.unit(215, "lb"),
  33242. name: "Front",
  33243. image: {
  33244. source: "./media/characters/sapphire-svell/front.svg",
  33245. extra: 495 / 455,
  33246. bottom: 20 / 515
  33247. }
  33248. },
  33249. back: {
  33250. height: math.unit(6, "feet"),
  33251. weight: math.unit(216, "lb"),
  33252. name: "Back",
  33253. image: {
  33254. source: "./media/characters/sapphire-svell/back.svg",
  33255. extra: 497 / 477,
  33256. bottom: 7 / 504
  33257. }
  33258. },
  33259. maw: {
  33260. height: math.unit(1.57, "feet"),
  33261. name: "Maw",
  33262. image: {
  33263. source: "./media/characters/sapphire-svell/maw.svg"
  33264. }
  33265. },
  33266. foot: {
  33267. height: math.unit(1.07, "feet"),
  33268. name: "Foot",
  33269. image: {
  33270. source: "./media/characters/sapphire-svell/foot.svg"
  33271. }
  33272. },
  33273. toering: {
  33274. height: math.unit(1.7, "inch"),
  33275. name: "Toering",
  33276. image: {
  33277. source: "./media/characters/sapphire-svell/toering.svg"
  33278. }
  33279. },
  33280. },
  33281. [
  33282. {
  33283. name: "Normal",
  33284. height: math.unit(300, "feet"),
  33285. default: true
  33286. },
  33287. {
  33288. name: "Augmented",
  33289. height: math.unit(1250, "feet")
  33290. },
  33291. {
  33292. name: "Unleashed",
  33293. height: math.unit(3000, "feet")
  33294. },
  33295. ]
  33296. ))
  33297. characterMakers.push(() => makeCharacter(
  33298. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  33299. {
  33300. side: {
  33301. height: math.unit(2 + 3 / 12, "feet"),
  33302. weight: math.unit(110, "lb"),
  33303. name: "Side",
  33304. image: {
  33305. source: "./media/characters/glitch-flux/side.svg",
  33306. extra: 997 / 805,
  33307. bottom: 20 / 1017
  33308. }
  33309. },
  33310. },
  33311. [
  33312. {
  33313. name: "Normal",
  33314. height: math.unit(2 + 3 / 12, "feet"),
  33315. default: true
  33316. },
  33317. ]
  33318. ))
  33319. characterMakers.push(() => makeCharacter(
  33320. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  33321. {
  33322. front: {
  33323. height: math.unit(4, "meters"),
  33324. name: "Front",
  33325. image: {
  33326. source: "./media/characters/mid/front.svg",
  33327. extra: 507 / 476,
  33328. bottom: 17 / 524
  33329. }
  33330. },
  33331. back: {
  33332. height: math.unit(4, "meters"),
  33333. name: "Back",
  33334. image: {
  33335. source: "./media/characters/mid/back.svg",
  33336. extra: 519 / 487,
  33337. bottom: 7 / 526
  33338. }
  33339. },
  33340. stuck: {
  33341. height: math.unit(2.2, "meters"),
  33342. name: "Stuck",
  33343. image: {
  33344. source: "./media/characters/mid/stuck.svg",
  33345. extra: 1951 / 1869,
  33346. bottom: 88 / 2039
  33347. }
  33348. }
  33349. },
  33350. [
  33351. {
  33352. name: "Normal",
  33353. height: math.unit(4, "meters"),
  33354. default: true
  33355. },
  33356. {
  33357. name: "Big",
  33358. height: math.unit(10, "meters")
  33359. },
  33360. {
  33361. name: "Macro",
  33362. height: math.unit(800, "meters")
  33363. },
  33364. {
  33365. name: "Megamacro",
  33366. height: math.unit(100, "km")
  33367. },
  33368. {
  33369. name: "Overgrown",
  33370. height: math.unit(1, "parsec")
  33371. },
  33372. ]
  33373. ))
  33374. characterMakers.push(() => makeCharacter(
  33375. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  33376. {
  33377. front: {
  33378. height: math.unit(2.5, "meters"),
  33379. weight: math.unit(225, "kg"),
  33380. name: "Front",
  33381. image: {
  33382. source: "./media/characters/iris/front.svg",
  33383. extra: 3348 / 3251,
  33384. bottom: 205 / 3553
  33385. }
  33386. },
  33387. maw: {
  33388. height: math.unit(0.56, "meter"),
  33389. name: "Maw",
  33390. image: {
  33391. source: "./media/characters/iris/maw.svg"
  33392. }
  33393. },
  33394. },
  33395. [
  33396. {
  33397. name: "Mewter cat",
  33398. height: math.unit(1.2, "meters")
  33399. },
  33400. {
  33401. name: "Normal",
  33402. height: math.unit(2.5, "meters"),
  33403. default: true
  33404. },
  33405. {
  33406. name: "Minimacro",
  33407. height: math.unit(18, "feet")
  33408. },
  33409. {
  33410. name: "Macro",
  33411. height: math.unit(140, "feet")
  33412. },
  33413. {
  33414. name: "Macro+",
  33415. height: math.unit(180, "meters")
  33416. },
  33417. {
  33418. name: "Megamacro",
  33419. height: math.unit(2746, "meters")
  33420. },
  33421. ]
  33422. ))
  33423. characterMakers.push(() => makeCharacter(
  33424. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  33425. {
  33426. front: {
  33427. height: math.unit(6, "feet"),
  33428. weight: math.unit(135, "lb"),
  33429. name: "Front",
  33430. image: {
  33431. source: "./media/characters/axel/front.svg",
  33432. extra: 908 / 908,
  33433. bottom: 58 / 966
  33434. }
  33435. },
  33436. side: {
  33437. height: math.unit(6, "feet"),
  33438. weight: math.unit(135, "lb"),
  33439. name: "Side",
  33440. image: {
  33441. source: "./media/characters/axel/side.svg",
  33442. extra: 958 / 958,
  33443. bottom: 11 / 969
  33444. }
  33445. },
  33446. back: {
  33447. height: math.unit(6, "feet"),
  33448. weight: math.unit(135, "lb"),
  33449. name: "Back",
  33450. image: {
  33451. source: "./media/characters/axel/back.svg",
  33452. extra: 887 / 887,
  33453. bottom: 34 / 921
  33454. }
  33455. },
  33456. head: {
  33457. height: math.unit(1.07, "feet"),
  33458. name: "Head",
  33459. image: {
  33460. source: "./media/characters/axel/head.svg"
  33461. }
  33462. },
  33463. beak: {
  33464. height: math.unit(1.4, "feet"),
  33465. name: "Beak",
  33466. image: {
  33467. source: "./media/characters/axel/beak.svg"
  33468. }
  33469. },
  33470. beakSide: {
  33471. height: math.unit(1.4, "feet"),
  33472. name: "Beak Side",
  33473. image: {
  33474. source: "./media/characters/axel/beak-side.svg"
  33475. }
  33476. },
  33477. sheath: {
  33478. height: math.unit(0.5, "feet"),
  33479. name: "Sheath",
  33480. image: {
  33481. source: "./media/characters/axel/sheath.svg"
  33482. }
  33483. },
  33484. dick: {
  33485. height: math.unit(0.98, "feet"),
  33486. name: "Dick",
  33487. image: {
  33488. source: "./media/characters/axel/dick.svg"
  33489. }
  33490. },
  33491. },
  33492. [
  33493. {
  33494. name: "Macro",
  33495. height: math.unit(68, "meters"),
  33496. default: true
  33497. },
  33498. ]
  33499. ))
  33500. characterMakers.push(() => makeCharacter(
  33501. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  33502. {
  33503. front: {
  33504. height: math.unit(3.5, "meters"),
  33505. weight: math.unit(1200, "kg"),
  33506. name: "Front",
  33507. image: {
  33508. source: "./media/characters/joanna/front.svg",
  33509. extra: 1596 / 1488,
  33510. bottom: 29 / 1625
  33511. }
  33512. },
  33513. back: {
  33514. height: math.unit(3.5, "meters"),
  33515. weight: math.unit(1200, "kg"),
  33516. name: "Back",
  33517. image: {
  33518. source: "./media/characters/joanna/back.svg",
  33519. extra: 1594 / 1495,
  33520. bottom: 26 / 1620
  33521. }
  33522. },
  33523. frontShorts: {
  33524. height: math.unit(3.5, "meters"),
  33525. weight: math.unit(1200, "kg"),
  33526. name: "Front (Shorts)",
  33527. image: {
  33528. source: "./media/characters/joanna/front-shorts.svg",
  33529. extra: 1596 / 1488,
  33530. bottom: 29 / 1625
  33531. }
  33532. },
  33533. frontBiker: {
  33534. height: math.unit(3.5, "meters"),
  33535. weight: math.unit(1200, "kg"),
  33536. name: "Front (Biker)",
  33537. image: {
  33538. source: "./media/characters/joanna/front-biker.svg",
  33539. extra: 1596 / 1488,
  33540. bottom: 29 / 1625
  33541. }
  33542. },
  33543. backBiker: {
  33544. height: math.unit(3.5, "meters"),
  33545. weight: math.unit(1200, "kg"),
  33546. name: "Back (Biker)",
  33547. image: {
  33548. source: "./media/characters/joanna/back-biker.svg",
  33549. extra: 1594 / 1495,
  33550. bottom: 88 / 1682
  33551. }
  33552. },
  33553. bikeLeft: {
  33554. height: math.unit(2.4, "meters"),
  33555. weight: math.unit(1600, "kg"),
  33556. name: "Bike (Left)",
  33557. image: {
  33558. source: "./media/characters/joanna/bike-left.svg",
  33559. extra: 720 / 720,
  33560. bottom: 8 / 728
  33561. }
  33562. },
  33563. bikeRight: {
  33564. height: math.unit(2.4, "meters"),
  33565. weight: math.unit(1600, "kg"),
  33566. name: "Bike (Right)",
  33567. image: {
  33568. source: "./media/characters/joanna/bike-right.svg",
  33569. extra: 720 / 720,
  33570. bottom: 8 / 728
  33571. }
  33572. },
  33573. },
  33574. [
  33575. {
  33576. name: "Incognito",
  33577. height: math.unit(3.5, "meters")
  33578. },
  33579. {
  33580. name: "Casual Big",
  33581. height: math.unit(200, "meters")
  33582. },
  33583. {
  33584. name: "Macro",
  33585. height: math.unit(600, "meters")
  33586. },
  33587. {
  33588. name: "Original",
  33589. height: math.unit(20, "km"),
  33590. default: true
  33591. },
  33592. {
  33593. name: "Giga",
  33594. height: math.unit(400, "km")
  33595. },
  33596. {
  33597. name: "Lounging",
  33598. height: math.unit(1500, "km")
  33599. },
  33600. {
  33601. name: "Planetary",
  33602. height: math.unit(200000, "km")
  33603. },
  33604. ]
  33605. ))
  33606. characterMakers.push(() => makeCharacter(
  33607. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  33608. {
  33609. front: {
  33610. height: math.unit(6, "feet"),
  33611. weight: math.unit(150, "lb"),
  33612. name: "Front",
  33613. image: {
  33614. source: "./media/characters/hugo-sigil/front.svg",
  33615. extra: 522 / 500,
  33616. bottom: 2 / 524
  33617. }
  33618. },
  33619. back: {
  33620. height: math.unit(6, "feet"),
  33621. weight: math.unit(150, "lb"),
  33622. name: "Back",
  33623. image: {
  33624. source: "./media/characters/hugo-sigil/back.svg",
  33625. extra: 519 / 495,
  33626. bottom: 5 / 524
  33627. }
  33628. },
  33629. maw: {
  33630. height: math.unit(1.4, "feet"),
  33631. weight: math.unit(150, "lb"),
  33632. name: "Maw",
  33633. image: {
  33634. source: "./media/characters/hugo-sigil/maw.svg"
  33635. }
  33636. },
  33637. feet: {
  33638. height: math.unit(1.56, "feet"),
  33639. weight: math.unit(150, "lb"),
  33640. name: "Feet",
  33641. image: {
  33642. source: "./media/characters/hugo-sigil/feet.svg",
  33643. extra: 177 / 177,
  33644. bottom: 12 / 189
  33645. }
  33646. },
  33647. },
  33648. [
  33649. {
  33650. name: "Normal",
  33651. height: math.unit(6, "feet")
  33652. },
  33653. {
  33654. name: "Macro",
  33655. height: math.unit(200, "feet"),
  33656. default: true
  33657. },
  33658. ]
  33659. ))
  33660. characterMakers.push(() => makeCharacter(
  33661. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  33662. {
  33663. front: {
  33664. height: math.unit(6, "feet"),
  33665. weight: math.unit(150, "lb"),
  33666. name: "Front",
  33667. image: {
  33668. source: "./media/characters/peri/front.svg",
  33669. extra: 2354 / 2233,
  33670. bottom: 49 / 2403
  33671. }
  33672. },
  33673. },
  33674. [
  33675. {
  33676. name: "Really Small",
  33677. height: math.unit(1, "nm")
  33678. },
  33679. {
  33680. name: "Micro",
  33681. height: math.unit(4, "inches")
  33682. },
  33683. {
  33684. name: "Normal",
  33685. height: math.unit(7, "inches"),
  33686. default: true
  33687. },
  33688. {
  33689. name: "Macro",
  33690. height: math.unit(400, "feet")
  33691. },
  33692. {
  33693. name: "Megamacro",
  33694. height: math.unit(100, "miles")
  33695. },
  33696. ]
  33697. ))
  33698. characterMakers.push(() => makeCharacter(
  33699. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  33700. {
  33701. frontSlim: {
  33702. height: math.unit(7, "feet"),
  33703. name: "Front (Slim)",
  33704. image: {
  33705. source: "./media/characters/issilora/front-slim.svg",
  33706. extra: 529 / 449,
  33707. bottom: 53 / 582
  33708. }
  33709. },
  33710. sideSlim: {
  33711. height: math.unit(7, "feet"),
  33712. name: "Side (Slim)",
  33713. image: {
  33714. source: "./media/characters/issilora/side-slim.svg",
  33715. extra: 570 / 480,
  33716. bottom: 30 / 600
  33717. }
  33718. },
  33719. backSlim: {
  33720. height: math.unit(7, "feet"),
  33721. name: "Back (Slim)",
  33722. image: {
  33723. source: "./media/characters/issilora/back-slim.svg",
  33724. extra: 537 / 455,
  33725. bottom: 46 / 583
  33726. }
  33727. },
  33728. frontBuff: {
  33729. height: math.unit(7, "feet"),
  33730. name: "Front (Buff)",
  33731. image: {
  33732. source: "./media/characters/issilora/front-buff.svg",
  33733. extra: 2310 / 2035,
  33734. bottom: 335 / 2645
  33735. }
  33736. },
  33737. head: {
  33738. height: math.unit(1.94, "feet"),
  33739. name: "Head",
  33740. image: {
  33741. source: "./media/characters/issilora/head.svg"
  33742. }
  33743. },
  33744. },
  33745. [
  33746. {
  33747. name: "Minimum",
  33748. height: math.unit(7, "feet")
  33749. },
  33750. {
  33751. name: "Comfortable",
  33752. height: math.unit(17, "feet")
  33753. },
  33754. {
  33755. name: "Fun Size",
  33756. height: math.unit(47, "feet")
  33757. },
  33758. {
  33759. name: "Natural Macro",
  33760. height: math.unit(137, "feet"),
  33761. default: true
  33762. },
  33763. {
  33764. name: "Maximum Kaiju",
  33765. height: math.unit(397, "feet")
  33766. },
  33767. ]
  33768. ))
  33769. characterMakers.push(() => makeCharacter(
  33770. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33771. {
  33772. front: {
  33773. height: math.unit(50 + 9/12, "feet"),
  33774. weight: math.unit(32.8, "tons"),
  33775. name: "Front",
  33776. image: {
  33777. source: "./media/characters/irb'iiritaahn/front.svg",
  33778. extra: 1878/1826,
  33779. bottom: 326/2204
  33780. }
  33781. },
  33782. back: {
  33783. height: math.unit(50 + 9/12, "feet"),
  33784. weight: math.unit(32.8, "tons"),
  33785. name: "Back",
  33786. image: {
  33787. source: "./media/characters/irb'iiritaahn/back.svg",
  33788. extra: 2052/2018,
  33789. bottom: 152/2204
  33790. }
  33791. },
  33792. head: {
  33793. height: math.unit(12.86, "feet"),
  33794. name: "Head",
  33795. image: {
  33796. source: "./media/characters/irb'iiritaahn/head.svg"
  33797. }
  33798. },
  33799. maw: {
  33800. height: math.unit(9.66, "feet"),
  33801. name: "Maw",
  33802. image: {
  33803. source: "./media/characters/irb'iiritaahn/maw.svg"
  33804. }
  33805. },
  33806. frontDick: {
  33807. height: math.unit(8.78461, "feet"),
  33808. name: "Front Dick",
  33809. image: {
  33810. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33811. }
  33812. },
  33813. rearDick: {
  33814. height: math.unit(8.78461, "feet"),
  33815. name: "Rear Dick",
  33816. image: {
  33817. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33818. }
  33819. },
  33820. rearDickUnfolded: {
  33821. height: math.unit(8.78, "feet"),
  33822. name: "Rear Dick (Unfolded)",
  33823. image: {
  33824. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33825. }
  33826. },
  33827. wings: {
  33828. height: math.unit(43, "feet"),
  33829. name: "Wings",
  33830. image: {
  33831. source: "./media/characters/irb'iiritaahn/wings.svg"
  33832. }
  33833. },
  33834. },
  33835. [
  33836. {
  33837. name: "Macro",
  33838. height: math.unit(50 + 9/12, "feet"),
  33839. default: true
  33840. },
  33841. ]
  33842. ))
  33843. characterMakers.push(() => makeCharacter(
  33844. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33845. {
  33846. front: {
  33847. height: math.unit(205, "cm"),
  33848. weight: math.unit(102, "kg"),
  33849. name: "Front",
  33850. image: {
  33851. source: "./media/characters/irbisgreif/front.svg",
  33852. extra: 785/706,
  33853. bottom: 13/798
  33854. }
  33855. },
  33856. back: {
  33857. height: math.unit(205, "cm"),
  33858. weight: math.unit(102, "kg"),
  33859. name: "Back",
  33860. image: {
  33861. source: "./media/characters/irbisgreif/back.svg",
  33862. extra: 713/701,
  33863. bottom: 26/739
  33864. }
  33865. },
  33866. frontDressed: {
  33867. height: math.unit(216, "cm"),
  33868. weight: math.unit(102, "kg"),
  33869. name: "Front-dressed",
  33870. image: {
  33871. source: "./media/characters/irbisgreif/front-dressed.svg",
  33872. extra: 902/776,
  33873. bottom: 14/916
  33874. }
  33875. },
  33876. sideDressed: {
  33877. height: math.unit(195, "cm"),
  33878. weight: math.unit(102, "kg"),
  33879. name: "Side-dressed",
  33880. image: {
  33881. source: "./media/characters/irbisgreif/side-dressed.svg",
  33882. extra: 788/688,
  33883. bottom: 21/809
  33884. }
  33885. },
  33886. backDressed: {
  33887. height: math.unit(216, "cm"),
  33888. weight: math.unit(102, "kg"),
  33889. name: "Back-dressed",
  33890. image: {
  33891. source: "./media/characters/irbisgreif/back-dressed.svg",
  33892. extra: 901/783,
  33893. bottom: 10/911
  33894. }
  33895. },
  33896. dick: {
  33897. height: math.unit(0.49, "feet"),
  33898. name: "Dick",
  33899. image: {
  33900. source: "./media/characters/irbisgreif/dick.svg"
  33901. }
  33902. },
  33903. wingTop: {
  33904. height: math.unit(1.93 , "feet"),
  33905. name: "Wing-top",
  33906. image: {
  33907. source: "./media/characters/irbisgreif/wing-top.svg"
  33908. }
  33909. },
  33910. wingBottom: {
  33911. height: math.unit(1.93 , "feet"),
  33912. name: "Wing-bottom",
  33913. image: {
  33914. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33915. }
  33916. },
  33917. },
  33918. [
  33919. {
  33920. name: "Normal",
  33921. height: math.unit(216, "cm"),
  33922. default: true
  33923. },
  33924. ]
  33925. ))
  33926. characterMakers.push(() => makeCharacter(
  33927. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33928. {
  33929. front: {
  33930. height: math.unit(6, "feet"),
  33931. weight: math.unit(150, "lb"),
  33932. name: "Front",
  33933. image: {
  33934. source: "./media/characters/pride/front.svg",
  33935. extra: 1299/1230,
  33936. bottom: 18/1317
  33937. }
  33938. },
  33939. },
  33940. [
  33941. {
  33942. name: "Normal",
  33943. height: math.unit(7, "feet")
  33944. },
  33945. {
  33946. name: "Mini-macro",
  33947. height: math.unit(11, "feet")
  33948. },
  33949. {
  33950. name: "Macro",
  33951. height: math.unit(15, "meters"),
  33952. default: true
  33953. },
  33954. {
  33955. name: "Macro+",
  33956. height: math.unit(40, "meters")
  33957. },
  33958. ]
  33959. ))
  33960. characterMakers.push(() => makeCharacter(
  33961. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33962. {
  33963. front: {
  33964. height: math.unit(4 + 2 / 12, "feet"),
  33965. weight: math.unit(95, "lb"),
  33966. name: "Front",
  33967. image: {
  33968. source: "./media/characters/vaelophis-nyx/front.svg",
  33969. extra: 2532/2330,
  33970. bottom: 0/2532
  33971. }
  33972. },
  33973. back: {
  33974. height: math.unit(4 + 2 / 12, "feet"),
  33975. weight: math.unit(95, "lb"),
  33976. name: "Back",
  33977. image: {
  33978. source: "./media/characters/vaelophis-nyx/back.svg",
  33979. extra: 2484/2361,
  33980. bottom: 0/2484
  33981. }
  33982. },
  33983. feralSide: {
  33984. height: math.unit(2 + 1/12, "feet"),
  33985. weight: math.unit(20, "lb"),
  33986. name: "Feral (Side)",
  33987. image: {
  33988. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33989. extra: 1721/1581,
  33990. bottom: 70/1791
  33991. }
  33992. },
  33993. feralLazing: {
  33994. height: math.unit(1.08, "feet"),
  33995. weight: math.unit(20, "lb"),
  33996. name: "Feral (Lazing)",
  33997. image: {
  33998. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33999. extra: 822/822,
  34000. bottom: 248/1070
  34001. }
  34002. },
  34003. ear: {
  34004. height: math.unit(0.416, "feet"),
  34005. name: "Ear",
  34006. image: {
  34007. source: "./media/characters/vaelophis-nyx/ear.svg"
  34008. }
  34009. },
  34010. eye: {
  34011. height: math.unit(0.0748, "feet"),
  34012. name: "Eye",
  34013. image: {
  34014. source: "./media/characters/vaelophis-nyx/eye.svg"
  34015. }
  34016. },
  34017. mouth: {
  34018. height: math.unit(0.378, "feet"),
  34019. name: "Mouth",
  34020. image: {
  34021. source: "./media/characters/vaelophis-nyx/mouth.svg"
  34022. }
  34023. },
  34024. spade: {
  34025. height: math.unit(0.55, "feet"),
  34026. name: "Spade",
  34027. image: {
  34028. source: "./media/characters/vaelophis-nyx/spade.svg"
  34029. }
  34030. },
  34031. },
  34032. [
  34033. {
  34034. name: "Normal",
  34035. height: math.unit(4 + 2/12, "feet"),
  34036. default: true
  34037. },
  34038. ]
  34039. ))
  34040. characterMakers.push(() => makeCharacter(
  34041. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  34042. {
  34043. front: {
  34044. height: math.unit(7, "feet"),
  34045. weight: math.unit(231, "lb"),
  34046. name: "Front",
  34047. image: {
  34048. source: "./media/characters/flux/front.svg",
  34049. extra: 919/871,
  34050. bottom: 0/919
  34051. }
  34052. },
  34053. back: {
  34054. height: math.unit(7, "feet"),
  34055. weight: math.unit(231, "lb"),
  34056. name: "Back",
  34057. image: {
  34058. source: "./media/characters/flux/back.svg",
  34059. extra: 1040/992,
  34060. bottom: 0/1040
  34061. }
  34062. },
  34063. frontDressed: {
  34064. height: math.unit(7, "feet"),
  34065. weight: math.unit(231, "lb"),
  34066. name: "Front (Dressed)",
  34067. image: {
  34068. source: "./media/characters/flux/front-dressed.svg",
  34069. extra: 919/871,
  34070. bottom: 0/919
  34071. }
  34072. },
  34073. feralSide: {
  34074. height: math.unit(5, "feet"),
  34075. weight: math.unit(150, "lb"),
  34076. name: "Feral (Side)",
  34077. image: {
  34078. source: "./media/characters/flux/feral-side.svg",
  34079. extra: 598/528,
  34080. bottom: 28/626
  34081. }
  34082. },
  34083. head: {
  34084. height: math.unit(1.585, "feet"),
  34085. name: "Head",
  34086. image: {
  34087. source: "./media/characters/flux/head.svg"
  34088. }
  34089. },
  34090. headSide: {
  34091. height: math.unit(1.74, "feet"),
  34092. name: "Head (Side)",
  34093. image: {
  34094. source: "./media/characters/flux/head-side.svg"
  34095. }
  34096. },
  34097. headSideFire: {
  34098. height: math.unit(1.76, "feet"),
  34099. name: "Head (Side, Fire)",
  34100. image: {
  34101. source: "./media/characters/flux/head-side-fire.svg"
  34102. }
  34103. },
  34104. },
  34105. [
  34106. {
  34107. name: "Normal",
  34108. height: math.unit(7, "feet"),
  34109. default: true
  34110. },
  34111. ]
  34112. ))
  34113. characterMakers.push(() => makeCharacter(
  34114. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  34115. {
  34116. front: {
  34117. height: math.unit(9, "feet"),
  34118. weight: math.unit(1012, "lb"),
  34119. name: "Front",
  34120. image: {
  34121. source: "./media/characters/ulfra-lupae/front.svg",
  34122. extra: 1083/1011,
  34123. bottom: 67/1150
  34124. }
  34125. },
  34126. },
  34127. [
  34128. {
  34129. name: "Micro",
  34130. height: math.unit(6, "inches")
  34131. },
  34132. {
  34133. name: "Socializing",
  34134. height: math.unit(6 + 5/12, "feet")
  34135. },
  34136. {
  34137. name: "Normal",
  34138. height: math.unit(9, "feet"),
  34139. default: true
  34140. },
  34141. {
  34142. name: "Macro",
  34143. height: math.unit(150, "feet")
  34144. },
  34145. ]
  34146. ))
  34147. characterMakers.push(() => makeCharacter(
  34148. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  34149. {
  34150. front: {
  34151. height: math.unit(5 + 2/12, "feet"),
  34152. weight: math.unit(120, "lb"),
  34153. name: "Front",
  34154. image: {
  34155. source: "./media/characters/timber/front.svg",
  34156. extra: 2814/2705,
  34157. bottom: 181/2995
  34158. }
  34159. },
  34160. },
  34161. [
  34162. {
  34163. name: "Normal",
  34164. height: math.unit(5 + 2/12, "feet"),
  34165. default: true
  34166. },
  34167. ]
  34168. ))
  34169. characterMakers.push(() => makeCharacter(
  34170. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  34171. {
  34172. front: {
  34173. height: math.unit(9, "feet"),
  34174. name: "Front",
  34175. image: {
  34176. source: "./media/characters/nicki/front.svg",
  34177. extra: 1240/990,
  34178. bottom: 45/1285
  34179. },
  34180. form: "anthro",
  34181. default: true
  34182. },
  34183. side: {
  34184. height: math.unit(9, "feet"),
  34185. name: "Side",
  34186. image: {
  34187. source: "./media/characters/nicki/side.svg",
  34188. extra: 1047/973,
  34189. bottom: 61/1108
  34190. },
  34191. form: "anthro"
  34192. },
  34193. back: {
  34194. height: math.unit(9, "feet"),
  34195. name: "Back",
  34196. image: {
  34197. source: "./media/characters/nicki/back.svg",
  34198. extra: 1006/965,
  34199. bottom: 39/1045
  34200. },
  34201. form: "anthro"
  34202. },
  34203. taur: {
  34204. height: math.unit(15, "feet"),
  34205. name: "Taur",
  34206. image: {
  34207. source: "./media/characters/nicki/taur.svg",
  34208. extra: 1592/1347,
  34209. bottom: 0/1592
  34210. },
  34211. form: "taur",
  34212. default: true
  34213. },
  34214. },
  34215. [
  34216. {
  34217. name: "Normal",
  34218. height: math.unit(9, "feet"),
  34219. form: "anthro",
  34220. default: true
  34221. },
  34222. {
  34223. name: "Normal",
  34224. height: math.unit(15, "feet"),
  34225. form: "taur",
  34226. default: true
  34227. }
  34228. ],
  34229. {
  34230. "anthro": {
  34231. name: "Anthro",
  34232. default: true
  34233. },
  34234. "taur": {
  34235. name: "Taur"
  34236. }
  34237. }
  34238. ))
  34239. characterMakers.push(() => makeCharacter(
  34240. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  34241. {
  34242. front: {
  34243. height: math.unit(7 + 10/12, "feet"),
  34244. weight: math.unit(3.5, "tons"),
  34245. name: "Front",
  34246. image: {
  34247. source: "./media/characters/lee/front.svg",
  34248. extra: 1773/1615,
  34249. bottom: 86/1859
  34250. }
  34251. },
  34252. hand: {
  34253. height: math.unit(1.78, "feet"),
  34254. name: "Hand",
  34255. image: {
  34256. source: "./media/characters/lee/hand.svg"
  34257. }
  34258. },
  34259. maw: {
  34260. height: math.unit(1.18, "feet"),
  34261. name: "Maw",
  34262. image: {
  34263. source: "./media/characters/lee/maw.svg"
  34264. }
  34265. },
  34266. },
  34267. [
  34268. {
  34269. name: "Normal",
  34270. height: math.unit(7 + 10/12, "feet"),
  34271. default: true
  34272. },
  34273. ]
  34274. ))
  34275. characterMakers.push(() => makeCharacter(
  34276. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  34277. {
  34278. front: {
  34279. height: math.unit(9, "feet"),
  34280. name: "Front",
  34281. image: {
  34282. source: "./media/characters/guti/front.svg",
  34283. extra: 4551/4355,
  34284. bottom: 123/4674
  34285. }
  34286. },
  34287. tongue: {
  34288. height: math.unit(1, "feet"),
  34289. name: "Tongue",
  34290. image: {
  34291. source: "./media/characters/guti/tongue.svg"
  34292. }
  34293. },
  34294. paw: {
  34295. height: math.unit(1.18, "feet"),
  34296. name: "Paw",
  34297. image: {
  34298. source: "./media/characters/guti/paw.svg"
  34299. }
  34300. },
  34301. },
  34302. [
  34303. {
  34304. name: "Normal",
  34305. height: math.unit(9, "feet"),
  34306. default: true
  34307. },
  34308. ]
  34309. ))
  34310. characterMakers.push(() => makeCharacter(
  34311. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  34312. {
  34313. side: {
  34314. height: math.unit(5, "meters"),
  34315. name: "Side",
  34316. image: {
  34317. source: "./media/characters/vesper/side.svg",
  34318. extra: 1605/1518,
  34319. bottom: 0/1605
  34320. }
  34321. },
  34322. },
  34323. [
  34324. {
  34325. name: "Small",
  34326. height: math.unit(5, "meters")
  34327. },
  34328. {
  34329. name: "Sage",
  34330. height: math.unit(100, "meters"),
  34331. default: true
  34332. },
  34333. {
  34334. name: "Fun Size",
  34335. height: math.unit(600, "meters")
  34336. },
  34337. {
  34338. name: "Goddess",
  34339. height: math.unit(20000, "km")
  34340. },
  34341. {
  34342. name: "Maximum",
  34343. height: math.unit(5, "galaxies")
  34344. },
  34345. ]
  34346. ))
  34347. characterMakers.push(() => makeCharacter(
  34348. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  34349. {
  34350. front: {
  34351. height: math.unit(6 + 3/12, "feet"),
  34352. weight: math.unit(190, "lb"),
  34353. name: "Front",
  34354. image: {
  34355. source: "./media/characters/gawain/front.svg",
  34356. extra: 2222/2139,
  34357. bottom: 90/2312
  34358. }
  34359. },
  34360. back: {
  34361. height: math.unit(6 + 3/12, "feet"),
  34362. weight: math.unit(190, "lb"),
  34363. name: "Back",
  34364. image: {
  34365. source: "./media/characters/gawain/back.svg",
  34366. extra: 2199/2111,
  34367. bottom: 73/2272
  34368. }
  34369. },
  34370. },
  34371. [
  34372. {
  34373. name: "Normal",
  34374. height: math.unit(6 + 3/12, "feet"),
  34375. default: true
  34376. },
  34377. ]
  34378. ))
  34379. characterMakers.push(() => makeCharacter(
  34380. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  34381. {
  34382. side: {
  34383. height: math.unit(3.5, "meters"),
  34384. weight: math.unit(16000, "lb"),
  34385. name: "Side",
  34386. image: {
  34387. source: "./media/characters/dascalti/side.svg",
  34388. extra: 392/273,
  34389. bottom: 47/439
  34390. }
  34391. },
  34392. breath: {
  34393. height: math.unit(7.4, "feet"),
  34394. name: "Breath",
  34395. image: {
  34396. source: "./media/characters/dascalti/breath.svg"
  34397. }
  34398. },
  34399. fed: {
  34400. height: math.unit(3.6, "meters"),
  34401. weight: math.unit(16000, "lb"),
  34402. name: "Fed",
  34403. image: {
  34404. source: "./media/characters/dascalti/fed.svg",
  34405. extra: 1419/820,
  34406. bottom: 95/1514
  34407. }
  34408. },
  34409. },
  34410. [
  34411. {
  34412. name: "Normal",
  34413. height: math.unit(3.5, "meters"),
  34414. default: true
  34415. },
  34416. ]
  34417. ))
  34418. characterMakers.push(() => makeCharacter(
  34419. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  34420. {
  34421. front: {
  34422. height: math.unit(3 + 5/12, "feet"),
  34423. name: "Front",
  34424. image: {
  34425. source: "./media/characters/mauve/front.svg",
  34426. extra: 1126/1033,
  34427. bottom: 65/1191
  34428. }
  34429. },
  34430. side: {
  34431. height: math.unit(3 + 5/12, "feet"),
  34432. name: "Side",
  34433. image: {
  34434. source: "./media/characters/mauve/side.svg",
  34435. extra: 1089/1001,
  34436. bottom: 29/1118
  34437. }
  34438. },
  34439. back: {
  34440. height: math.unit(3 + 5/12, "feet"),
  34441. name: "Back",
  34442. image: {
  34443. source: "./media/characters/mauve/back.svg",
  34444. extra: 1173/1053,
  34445. bottom: 109/1282
  34446. }
  34447. },
  34448. },
  34449. [
  34450. {
  34451. name: "Normal",
  34452. height: math.unit(3 + 5/12, "feet"),
  34453. default: true
  34454. },
  34455. ]
  34456. ))
  34457. characterMakers.push(() => makeCharacter(
  34458. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  34459. {
  34460. front: {
  34461. height: math.unit(6 + 3/12, "feet"),
  34462. weight: math.unit(430, "lb"),
  34463. name: "Front",
  34464. image: {
  34465. source: "./media/characters/carlos/front.svg",
  34466. extra: 1964/1913,
  34467. bottom: 70/2034
  34468. }
  34469. },
  34470. },
  34471. [
  34472. {
  34473. name: "Normal",
  34474. height: math.unit(6 + 3/12, "feet"),
  34475. default: true
  34476. },
  34477. ]
  34478. ))
  34479. characterMakers.push(() => makeCharacter(
  34480. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  34481. {
  34482. back: {
  34483. height: math.unit(5 + 10/12, "feet"),
  34484. weight: math.unit(200, "lb"),
  34485. name: "Back",
  34486. image: {
  34487. source: "./media/characters/jax/back.svg",
  34488. extra: 764/739,
  34489. bottom: 25/789
  34490. }
  34491. },
  34492. },
  34493. [
  34494. {
  34495. name: "Normal",
  34496. height: math.unit(5 + 10/12, "feet"),
  34497. default: true
  34498. },
  34499. ]
  34500. ))
  34501. characterMakers.push(() => makeCharacter(
  34502. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  34503. {
  34504. front: {
  34505. height: math.unit(8, "feet"),
  34506. weight: math.unit(250, "lb"),
  34507. name: "Front",
  34508. image: {
  34509. source: "./media/characters/eikthynir/front.svg",
  34510. extra: 1332/1166,
  34511. bottom: 82/1414
  34512. }
  34513. },
  34514. back: {
  34515. height: math.unit(8, "feet"),
  34516. weight: math.unit(250, "lb"),
  34517. name: "Back",
  34518. image: {
  34519. source: "./media/characters/eikthynir/back.svg",
  34520. extra: 1342/1190,
  34521. bottom: 19/1361
  34522. }
  34523. },
  34524. dick: {
  34525. height: math.unit(2.35, "feet"),
  34526. name: "Dick",
  34527. image: {
  34528. source: "./media/characters/eikthynir/dick.svg"
  34529. }
  34530. },
  34531. },
  34532. [
  34533. {
  34534. name: "Normal",
  34535. height: math.unit(8, "feet"),
  34536. default: true
  34537. },
  34538. ]
  34539. ))
  34540. characterMakers.push(() => makeCharacter(
  34541. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  34542. {
  34543. front: {
  34544. height: math.unit(99, "meters"),
  34545. weight: math.unit(13000, "tons"),
  34546. name: "Front",
  34547. image: {
  34548. source: "./media/characters/zlmos/front.svg",
  34549. extra: 2202/1992,
  34550. bottom: 315/2517
  34551. }
  34552. },
  34553. },
  34554. [
  34555. {
  34556. name: "Macro",
  34557. height: math.unit(99, "meters"),
  34558. default: true
  34559. },
  34560. ]
  34561. ))
  34562. characterMakers.push(() => makeCharacter(
  34563. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  34564. {
  34565. front: {
  34566. height: math.unit(6 + 5/12, "feet"),
  34567. name: "Front",
  34568. image: {
  34569. source: "./media/characters/purri/front.svg",
  34570. extra: 1698/1610,
  34571. bottom: 32/1730
  34572. }
  34573. },
  34574. frontAlt: {
  34575. height: math.unit(6 + 5/12, "feet"),
  34576. name: "Front (Alt)",
  34577. image: {
  34578. source: "./media/characters/purri/front-alt.svg",
  34579. extra: 450/420,
  34580. bottom: 26/476
  34581. }
  34582. },
  34583. boots: {
  34584. height: math.unit(5.5, "feet"),
  34585. name: "Boots",
  34586. image: {
  34587. source: "./media/characters/purri/boots.svg",
  34588. extra: 905/853,
  34589. bottom: 18/923
  34590. },
  34591. extraAttributes: {
  34592. "shoeSize": {
  34593. name: "Shoe Size",
  34594. power: 1,
  34595. type: "length",
  34596. base: math.unit(12, "ShoeSizeMensUS")
  34597. },
  34598. "platformHeight": {
  34599. name: "Platform Height",
  34600. power: 1,
  34601. type: "length",
  34602. base: math.unit(2, "inches")
  34603. },
  34604. }
  34605. },
  34606. lying: {
  34607. height: math.unit(2, "feet"),
  34608. name: "Lying",
  34609. image: {
  34610. source: "./media/characters/purri/lying.svg",
  34611. extra: 940/843,
  34612. bottom: 146/1086
  34613. }
  34614. },
  34615. devious: {
  34616. height: math.unit(1.77, "feet"),
  34617. name: "Devious",
  34618. image: {
  34619. source: "./media/characters/purri/devious.svg",
  34620. extra: 1440/1155,
  34621. bottom: 147/1587
  34622. }
  34623. },
  34624. bean: {
  34625. height: math.unit(1.94, "feet"),
  34626. name: "Bean",
  34627. image: {
  34628. source: "./media/characters/purri/bean.svg"
  34629. }
  34630. },
  34631. },
  34632. [
  34633. {
  34634. name: "Micro",
  34635. height: math.unit(1, "mm")
  34636. },
  34637. {
  34638. name: "Normal",
  34639. height: math.unit(6 + 5/12, "feet"),
  34640. default: true
  34641. },
  34642. {
  34643. name: "Macro :3c",
  34644. height: math.unit(2, "miles")
  34645. },
  34646. ]
  34647. ))
  34648. characterMakers.push(() => makeCharacter(
  34649. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  34650. {
  34651. front: {
  34652. height: math.unit(6 + 2/12, "feet"),
  34653. weight: math.unit(250, "lb"),
  34654. name: "Front",
  34655. image: {
  34656. source: "./media/characters/moonlight/front.svg",
  34657. extra: 1044/908,
  34658. bottom: 56/1100
  34659. }
  34660. },
  34661. feral: {
  34662. height: math.unit(3 + 1/12, "feet"),
  34663. weight: math.unit(50, "kg"),
  34664. name: "Feral",
  34665. image: {
  34666. source: "./media/characters/moonlight/feral.svg",
  34667. extra: 3705/2791,
  34668. bottom: 145/3850
  34669. }
  34670. },
  34671. paw: {
  34672. height: math.unit(1, "feet"),
  34673. name: "Paw",
  34674. image: {
  34675. source: "./media/characters/moonlight/paw.svg"
  34676. }
  34677. },
  34678. paws: {
  34679. height: math.unit(0.98, "feet"),
  34680. name: "Paws",
  34681. image: {
  34682. source: "./media/characters/moonlight/paws.svg",
  34683. extra: 939/939,
  34684. bottom: 50/989
  34685. }
  34686. },
  34687. mouth: {
  34688. height: math.unit(0.48, "feet"),
  34689. name: "Mouth",
  34690. image: {
  34691. source: "./media/characters/moonlight/mouth.svg"
  34692. }
  34693. },
  34694. dick: {
  34695. height: math.unit(1.46, "feet"),
  34696. name: "Dick",
  34697. image: {
  34698. source: "./media/characters/moonlight/dick.svg"
  34699. }
  34700. },
  34701. },
  34702. [
  34703. {
  34704. name: "Normal",
  34705. height: math.unit(6 + 2/12, "feet"),
  34706. default: true
  34707. },
  34708. {
  34709. name: "Macro",
  34710. height: math.unit(300, "feet")
  34711. },
  34712. {
  34713. name: "Macro+",
  34714. height: math.unit(1, "mile")
  34715. },
  34716. {
  34717. name: "Mt. Moon",
  34718. height: math.unit(5, "miles")
  34719. },
  34720. {
  34721. name: "Megamacro",
  34722. height: math.unit(15, "miles")
  34723. },
  34724. ]
  34725. ))
  34726. characterMakers.push(() => makeCharacter(
  34727. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  34728. {
  34729. back: {
  34730. height: math.unit(6, "feet"),
  34731. weight: math.unit(150, "lb"),
  34732. name: "Back",
  34733. image: {
  34734. source: "./media/characters/sylen/back.svg",
  34735. extra: 1335/1273,
  34736. bottom: 107/1442
  34737. }
  34738. },
  34739. },
  34740. [
  34741. {
  34742. name: "Normal",
  34743. height: math.unit(5 + 5/12, "feet")
  34744. },
  34745. {
  34746. name: "Megamacro",
  34747. height: math.unit(3, "miles"),
  34748. default: true
  34749. },
  34750. ]
  34751. ))
  34752. characterMakers.push(() => makeCharacter(
  34753. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  34754. {
  34755. front: {
  34756. height: math.unit(6, "feet"),
  34757. weight: math.unit(190, "lb"),
  34758. name: "Front",
  34759. image: {
  34760. source: "./media/characters/huttser/front.svg",
  34761. extra: 1152/1058,
  34762. bottom: 23/1175
  34763. }
  34764. },
  34765. side: {
  34766. height: math.unit(6, "feet"),
  34767. weight: math.unit(190, "lb"),
  34768. name: "Side",
  34769. image: {
  34770. source: "./media/characters/huttser/side.svg",
  34771. extra: 1174/1065,
  34772. bottom: 18/1192
  34773. }
  34774. },
  34775. back: {
  34776. height: math.unit(6, "feet"),
  34777. weight: math.unit(190, "lb"),
  34778. name: "Back",
  34779. image: {
  34780. source: "./media/characters/huttser/back.svg",
  34781. extra: 1158/1056,
  34782. bottom: 12/1170
  34783. }
  34784. },
  34785. },
  34786. [
  34787. ]
  34788. ))
  34789. characterMakers.push(() => makeCharacter(
  34790. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34791. {
  34792. side: {
  34793. height: math.unit(12 + 9/12, "feet"),
  34794. weight: math.unit(15000, "lb"),
  34795. name: "Side",
  34796. image: {
  34797. source: "./media/characters/faan/side.svg",
  34798. extra: 2747/2697,
  34799. bottom: 0/2747
  34800. }
  34801. },
  34802. front: {
  34803. height: math.unit(12 + 9/12, "feet"),
  34804. weight: math.unit(15000, "lb"),
  34805. name: "Front",
  34806. image: {
  34807. source: "./media/characters/faan/front.svg",
  34808. extra: 607/571,
  34809. bottom: 24/631
  34810. }
  34811. },
  34812. head: {
  34813. height: math.unit(2.85, "feet"),
  34814. name: "Head",
  34815. image: {
  34816. source: "./media/characters/faan/head.svg"
  34817. }
  34818. },
  34819. headAlt: {
  34820. height: math.unit(3.13, "feet"),
  34821. name: "Head-alt",
  34822. image: {
  34823. source: "./media/characters/faan/head-alt.svg"
  34824. }
  34825. },
  34826. },
  34827. [
  34828. {
  34829. name: "Normal",
  34830. height: math.unit(12 + 9/12, "feet"),
  34831. default: true
  34832. },
  34833. ]
  34834. ))
  34835. characterMakers.push(() => makeCharacter(
  34836. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34837. {
  34838. front: {
  34839. height: math.unit(6, "feet"),
  34840. weight: math.unit(300, "lb"),
  34841. name: "Front",
  34842. image: {
  34843. source: "./media/characters/tanio/front.svg",
  34844. extra: 711/673,
  34845. bottom: 25/736
  34846. }
  34847. },
  34848. },
  34849. [
  34850. {
  34851. name: "Normal",
  34852. height: math.unit(6, "feet"),
  34853. default: true
  34854. },
  34855. ]
  34856. ))
  34857. characterMakers.push(() => makeCharacter(
  34858. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34859. {
  34860. front: {
  34861. height: math.unit(3, "inches"),
  34862. name: "Front",
  34863. image: {
  34864. source: "./media/characters/noboru/front.svg",
  34865. extra: 1039/932,
  34866. bottom: 18/1057
  34867. }
  34868. },
  34869. },
  34870. [
  34871. {
  34872. name: "Micro",
  34873. height: math.unit(3, "inches"),
  34874. default: true
  34875. },
  34876. ]
  34877. ))
  34878. characterMakers.push(() => makeCharacter(
  34879. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34880. {
  34881. front: {
  34882. height: math.unit(1.85, "meters"),
  34883. weight: math.unit(80, "kg"),
  34884. name: "Front",
  34885. image: {
  34886. source: "./media/characters/daniel-barrett/front.svg",
  34887. extra: 355/337,
  34888. bottom: 9/364
  34889. }
  34890. },
  34891. },
  34892. [
  34893. {
  34894. name: "Pico",
  34895. height: math.unit(0.0433, "mm")
  34896. },
  34897. {
  34898. name: "Nano",
  34899. height: math.unit(1.5, "mm")
  34900. },
  34901. {
  34902. name: "Micro",
  34903. height: math.unit(5.3, "cm"),
  34904. default: true
  34905. },
  34906. {
  34907. name: "Normal",
  34908. height: math.unit(1.85, "meters")
  34909. },
  34910. {
  34911. name: "Macro",
  34912. height: math.unit(64.7, "meters")
  34913. },
  34914. {
  34915. name: "Megamacro",
  34916. height: math.unit(2.26, "km")
  34917. },
  34918. {
  34919. name: "Gigamacro",
  34920. height: math.unit(79, "km")
  34921. },
  34922. {
  34923. name: "Teramacro",
  34924. height: math.unit(2765, "km")
  34925. },
  34926. {
  34927. name: "Petamacro",
  34928. height: math.unit(96678, "km")
  34929. },
  34930. ]
  34931. ))
  34932. characterMakers.push(() => makeCharacter(
  34933. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34934. {
  34935. front: {
  34936. height: math.unit(30, "meters"),
  34937. weight: math.unit(400, "tons"),
  34938. name: "Front",
  34939. image: {
  34940. source: "./media/characters/zeel/front.svg",
  34941. extra: 2599/2599,
  34942. bottom: 226/2825
  34943. }
  34944. },
  34945. },
  34946. [
  34947. {
  34948. name: "Macro",
  34949. height: math.unit(30, "meters"),
  34950. default: true
  34951. },
  34952. ]
  34953. ))
  34954. characterMakers.push(() => makeCharacter(
  34955. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34956. {
  34957. front: {
  34958. height: math.unit(6 + 7/12, "feet"),
  34959. weight: math.unit(210, "lb"),
  34960. name: "Front",
  34961. image: {
  34962. source: "./media/characters/tarn/front.svg",
  34963. extra: 3517/3220,
  34964. bottom: 91/3608
  34965. }
  34966. },
  34967. back: {
  34968. height: math.unit(6 + 7/12, "feet"),
  34969. weight: math.unit(210, "lb"),
  34970. name: "Back",
  34971. image: {
  34972. source: "./media/characters/tarn/back.svg",
  34973. extra: 3566/3241,
  34974. bottom: 34/3600
  34975. }
  34976. },
  34977. dick: {
  34978. height: math.unit(1.65, "feet"),
  34979. name: "Dick",
  34980. image: {
  34981. source: "./media/characters/tarn/dick.svg"
  34982. }
  34983. },
  34984. paw: {
  34985. height: math.unit(1.80, "feet"),
  34986. name: "Paw",
  34987. image: {
  34988. source: "./media/characters/tarn/paw.svg"
  34989. }
  34990. },
  34991. tongue: {
  34992. height: math.unit(0.97, "feet"),
  34993. name: "Tongue",
  34994. image: {
  34995. source: "./media/characters/tarn/tongue.svg"
  34996. }
  34997. },
  34998. },
  34999. [
  35000. {
  35001. name: "Micro",
  35002. height: math.unit(4, "inches")
  35003. },
  35004. {
  35005. name: "Normal",
  35006. height: math.unit(6 + 7/12, "feet"),
  35007. default: true
  35008. },
  35009. {
  35010. name: "Macro",
  35011. height: math.unit(300, "feet")
  35012. },
  35013. ]
  35014. ))
  35015. characterMakers.push(() => makeCharacter(
  35016. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  35017. {
  35018. front: {
  35019. height: math.unit(5 + 7/12, "feet"),
  35020. weight: math.unit(80, "kg"),
  35021. name: "Front",
  35022. image: {
  35023. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  35024. extra: 3023/2865,
  35025. bottom: 33/3056
  35026. }
  35027. },
  35028. back: {
  35029. height: math.unit(5 + 7/12, "feet"),
  35030. weight: math.unit(80, "kg"),
  35031. name: "Back",
  35032. image: {
  35033. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  35034. extra: 3020/2886,
  35035. bottom: 30/3050
  35036. }
  35037. },
  35038. dick: {
  35039. height: math.unit(0.98, "feet"),
  35040. name: "Dick",
  35041. image: {
  35042. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  35043. }
  35044. },
  35045. anatomy: {
  35046. height: math.unit(2.86, "feet"),
  35047. name: "Anatomy",
  35048. image: {
  35049. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  35050. }
  35051. },
  35052. },
  35053. [
  35054. {
  35055. name: "Really Small",
  35056. height: math.unit(2, "inches")
  35057. },
  35058. {
  35059. name: "Micro",
  35060. height: math.unit(5.583, "inches")
  35061. },
  35062. {
  35063. name: "Normal",
  35064. height: math.unit(5 + 7/12, "feet"),
  35065. default: true
  35066. },
  35067. {
  35068. name: "Macro",
  35069. height: math.unit(67, "feet")
  35070. },
  35071. {
  35072. name: "Megamacro",
  35073. height: math.unit(134, "feet")
  35074. },
  35075. ]
  35076. ))
  35077. characterMakers.push(() => makeCharacter(
  35078. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  35079. {
  35080. front: {
  35081. height: math.unit(9, "feet"),
  35082. weight: math.unit(120, "lb"),
  35083. name: "Front",
  35084. image: {
  35085. source: "./media/characters/sally/front.svg",
  35086. extra: 1506/1349,
  35087. bottom: 66/1572
  35088. }
  35089. },
  35090. },
  35091. [
  35092. {
  35093. name: "Normal",
  35094. height: math.unit(9, "feet"),
  35095. default: true
  35096. },
  35097. ]
  35098. ))
  35099. characterMakers.push(() => makeCharacter(
  35100. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  35101. {
  35102. front: {
  35103. height: math.unit(8, "feet"),
  35104. weight: math.unit(900, "lb"),
  35105. name: "Front",
  35106. image: {
  35107. source: "./media/characters/owen/front.svg",
  35108. extra: 1761/1657,
  35109. bottom: 74/1835
  35110. }
  35111. },
  35112. side: {
  35113. height: math.unit(8, "feet"),
  35114. weight: math.unit(900, "lb"),
  35115. name: "Side",
  35116. image: {
  35117. source: "./media/characters/owen/side.svg",
  35118. extra: 1797/1734,
  35119. bottom: 30/1827
  35120. }
  35121. },
  35122. back: {
  35123. height: math.unit(8, "feet"),
  35124. weight: math.unit(900, "lb"),
  35125. name: "Back",
  35126. image: {
  35127. source: "./media/characters/owen/back.svg",
  35128. extra: 1796/1706,
  35129. bottom: 59/1855
  35130. }
  35131. },
  35132. maw: {
  35133. height: math.unit(1.76, "feet"),
  35134. name: "Maw",
  35135. image: {
  35136. source: "./media/characters/owen/maw.svg"
  35137. }
  35138. },
  35139. },
  35140. [
  35141. {
  35142. name: "Normal",
  35143. height: math.unit(8, "feet"),
  35144. default: true
  35145. },
  35146. ]
  35147. ))
  35148. characterMakers.push(() => makeCharacter(
  35149. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  35150. {
  35151. front: {
  35152. height: math.unit(4, "feet"),
  35153. weight: math.unit(400, "lb"),
  35154. name: "Front",
  35155. image: {
  35156. source: "./media/characters/ryth/front.svg",
  35157. extra: 1920/1748,
  35158. bottom: 42/1962
  35159. }
  35160. },
  35161. back: {
  35162. height: math.unit(4, "feet"),
  35163. weight: math.unit(400, "lb"),
  35164. name: "Back",
  35165. image: {
  35166. source: "./media/characters/ryth/back.svg",
  35167. extra: 1897/1690,
  35168. bottom: 89/1986
  35169. }
  35170. },
  35171. mouth: {
  35172. height: math.unit(1.39, "feet"),
  35173. name: "Mouth",
  35174. image: {
  35175. source: "./media/characters/ryth/mouth.svg"
  35176. }
  35177. },
  35178. tailmaw: {
  35179. height: math.unit(1.23, "feet"),
  35180. name: "Tailmaw",
  35181. image: {
  35182. source: "./media/characters/ryth/tailmaw.svg"
  35183. }
  35184. },
  35185. goia: {
  35186. height: math.unit(4, "meters"),
  35187. weight: math.unit(10800, "lb"),
  35188. name: "Goia",
  35189. image: {
  35190. source: "./media/characters/ryth/goia.svg",
  35191. extra: 745/640,
  35192. bottom: 107/852
  35193. }
  35194. },
  35195. goiaFront: {
  35196. height: math.unit(4, "meters"),
  35197. weight: math.unit(10800, "lb"),
  35198. name: "Goia (Front)",
  35199. image: {
  35200. source: "./media/characters/ryth/goia-front.svg",
  35201. extra: 750/586,
  35202. bottom: 114/864
  35203. }
  35204. },
  35205. goiaMaw: {
  35206. height: math.unit(5.55, "feet"),
  35207. name: "Goia Maw",
  35208. image: {
  35209. source: "./media/characters/ryth/goia-maw.svg"
  35210. }
  35211. },
  35212. goiaForepaw: {
  35213. height: math.unit(3.5, "feet"),
  35214. name: "Goia Forepaw",
  35215. image: {
  35216. source: "./media/characters/ryth/goia-forepaw.svg"
  35217. }
  35218. },
  35219. goiaHindpaw: {
  35220. height: math.unit(5.55, "feet"),
  35221. name: "Goia Hindpaw",
  35222. image: {
  35223. source: "./media/characters/ryth/goia-hindpaw.svg"
  35224. }
  35225. },
  35226. },
  35227. [
  35228. {
  35229. name: "Normal",
  35230. height: math.unit(4, "feet"),
  35231. default: true
  35232. },
  35233. ]
  35234. ))
  35235. characterMakers.push(() => makeCharacter(
  35236. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  35237. {
  35238. front: {
  35239. height: math.unit(7, "feet"),
  35240. weight: math.unit(180, "lb"),
  35241. name: "Front",
  35242. image: {
  35243. source: "./media/characters/necrolance/front.svg",
  35244. extra: 1062/947,
  35245. bottom: 41/1103
  35246. }
  35247. },
  35248. back: {
  35249. height: math.unit(7, "feet"),
  35250. weight: math.unit(180, "lb"),
  35251. name: "Back",
  35252. image: {
  35253. source: "./media/characters/necrolance/back.svg",
  35254. extra: 1045/984,
  35255. bottom: 14/1059
  35256. }
  35257. },
  35258. wing: {
  35259. height: math.unit(2.67, "feet"),
  35260. name: "Wing",
  35261. image: {
  35262. source: "./media/characters/necrolance/wing.svg"
  35263. }
  35264. },
  35265. },
  35266. [
  35267. {
  35268. name: "Normal",
  35269. height: math.unit(7, "feet"),
  35270. default: true
  35271. },
  35272. ]
  35273. ))
  35274. characterMakers.push(() => makeCharacter(
  35275. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  35276. {
  35277. front: {
  35278. height: math.unit(76, "meters"),
  35279. weight: math.unit(30000, "tons"),
  35280. name: "Front",
  35281. image: {
  35282. source: "./media/characters/tyler/front.svg",
  35283. extra: 1640/1640,
  35284. bottom: 114/1754
  35285. }
  35286. },
  35287. },
  35288. [
  35289. {
  35290. name: "Macro",
  35291. height: math.unit(76, "meters"),
  35292. default: true
  35293. },
  35294. ]
  35295. ))
  35296. characterMakers.push(() => makeCharacter(
  35297. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  35298. {
  35299. front: {
  35300. height: math.unit(4 + 11/12, "feet"),
  35301. weight: math.unit(132, "lb"),
  35302. name: "Front",
  35303. image: {
  35304. source: "./media/characters/icey/front.svg",
  35305. extra: 2750/2550,
  35306. bottom: 33/2783
  35307. }
  35308. },
  35309. back: {
  35310. height: math.unit(4 + 11/12, "feet"),
  35311. weight: math.unit(132, "lb"),
  35312. name: "Back",
  35313. image: {
  35314. source: "./media/characters/icey/back.svg",
  35315. extra: 2624/2481,
  35316. bottom: 35/2659
  35317. }
  35318. },
  35319. },
  35320. [
  35321. {
  35322. name: "Normal",
  35323. height: math.unit(4 + 11/12, "feet"),
  35324. default: true
  35325. },
  35326. ]
  35327. ))
  35328. characterMakers.push(() => makeCharacter(
  35329. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  35330. {
  35331. front: {
  35332. height: math.unit(100, "feet"),
  35333. weight: math.unit(0, "lb"),
  35334. name: "Front",
  35335. image: {
  35336. source: "./media/characters/smile/front.svg",
  35337. extra: 2983/2912,
  35338. bottom: 162/3145
  35339. }
  35340. },
  35341. back: {
  35342. height: math.unit(100, "feet"),
  35343. weight: math.unit(0, "lb"),
  35344. name: "Back",
  35345. image: {
  35346. source: "./media/characters/smile/back.svg",
  35347. extra: 3143/3031,
  35348. bottom: 91/3234
  35349. }
  35350. },
  35351. head: {
  35352. height: math.unit(26.3, "feet"),
  35353. weight: math.unit(0, "lb"),
  35354. name: "Head",
  35355. image: {
  35356. source: "./media/characters/smile/head.svg"
  35357. }
  35358. },
  35359. collar: {
  35360. height: math.unit(5.3, "feet"),
  35361. weight: math.unit(0, "lb"),
  35362. name: "Collar",
  35363. image: {
  35364. source: "./media/characters/smile/collar.svg"
  35365. }
  35366. },
  35367. },
  35368. [
  35369. {
  35370. name: "Macro",
  35371. height: math.unit(100, "feet"),
  35372. default: true
  35373. },
  35374. ]
  35375. ))
  35376. characterMakers.push(() => makeCharacter(
  35377. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  35378. {
  35379. dragon: {
  35380. height: math.unit(26, "feet"),
  35381. weight: math.unit(36, "tons"),
  35382. name: "Dragon",
  35383. image: {
  35384. source: "./media/characters/arimphae/dragon.svg",
  35385. extra: 1574/983,
  35386. bottom: 357/1931
  35387. }
  35388. },
  35389. drake: {
  35390. height: math.unit(9, "feet"),
  35391. weight: math.unit(1.5, "tons"),
  35392. name: "Drake",
  35393. image: {
  35394. source: "./media/characters/arimphae/drake.svg",
  35395. extra: 1120/925,
  35396. bottom: 435/1555
  35397. }
  35398. },
  35399. },
  35400. [
  35401. {
  35402. name: "Small",
  35403. height: math.unit(26*5/9, "feet")
  35404. },
  35405. {
  35406. name: "Normal",
  35407. height: math.unit(26, "feet"),
  35408. default: true
  35409. },
  35410. ]
  35411. ))
  35412. characterMakers.push(() => makeCharacter(
  35413. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  35414. {
  35415. front: {
  35416. height: math.unit(8 + 9/12, "feet"),
  35417. name: "Front",
  35418. image: {
  35419. source: "./media/characters/xander/front.svg",
  35420. extra: 1237/974,
  35421. bottom: 94/1331
  35422. }
  35423. },
  35424. },
  35425. [
  35426. {
  35427. name: "Normal",
  35428. height: math.unit(8 + 9/12, "feet"),
  35429. default: true
  35430. },
  35431. {
  35432. name: "Gaze Grabber",
  35433. height: math.unit(13 + 8/12, "feet")
  35434. },
  35435. {
  35436. name: "Jaw Dropper",
  35437. height: math.unit(27, "feet")
  35438. },
  35439. {
  35440. name: "Show Stopper",
  35441. height: math.unit(136, "feet")
  35442. },
  35443. {
  35444. name: "Superstar",
  35445. height: math.unit(1.9e6, "miles")
  35446. },
  35447. ]
  35448. ))
  35449. characterMakers.push(() => makeCharacter(
  35450. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  35451. {
  35452. side: {
  35453. height: math.unit(2100, "feet"),
  35454. name: "Side",
  35455. image: {
  35456. source: "./media/characters/osiris/side.svg",
  35457. extra: 1105/939,
  35458. bottom: 167/1272
  35459. }
  35460. },
  35461. },
  35462. [
  35463. {
  35464. name: "Macro",
  35465. height: math.unit(2100, "feet"),
  35466. default: true
  35467. },
  35468. ]
  35469. ))
  35470. characterMakers.push(() => makeCharacter(
  35471. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  35472. {
  35473. front: {
  35474. height: math.unit(6 + 8/12, "feet"),
  35475. weight: math.unit(225, "lb"),
  35476. name: "Front",
  35477. image: {
  35478. source: "./media/characters/rhys-londe/front.svg",
  35479. extra: 2258/2141,
  35480. bottom: 188/2446
  35481. }
  35482. },
  35483. back: {
  35484. height: math.unit(6 + 8/12, "feet"),
  35485. weight: math.unit(225, "lb"),
  35486. name: "Back",
  35487. image: {
  35488. source: "./media/characters/rhys-londe/back.svg",
  35489. extra: 2237/2137,
  35490. bottom: 63/2300
  35491. }
  35492. },
  35493. frontNsfw: {
  35494. height: math.unit(6 + 8/12, "feet"),
  35495. weight: math.unit(225, "lb"),
  35496. name: "Front (NSFW)",
  35497. image: {
  35498. source: "./media/characters/rhys-londe/front-nsfw.svg",
  35499. extra: 2258/2141,
  35500. bottom: 188/2446
  35501. }
  35502. },
  35503. backNsfw: {
  35504. height: math.unit(6 + 8/12, "feet"),
  35505. weight: math.unit(225, "lb"),
  35506. name: "Back (NSFW)",
  35507. image: {
  35508. source: "./media/characters/rhys-londe/back-nsfw.svg",
  35509. extra: 2237/2137,
  35510. bottom: 63/2300
  35511. }
  35512. },
  35513. dick: {
  35514. height: math.unit(30, "inches"),
  35515. name: "Dick",
  35516. image: {
  35517. source: "./media/characters/rhys-londe/dick.svg"
  35518. }
  35519. },
  35520. maw: {
  35521. height: math.unit(1.6, "feet"),
  35522. name: "Maw",
  35523. image: {
  35524. source: "./media/characters/rhys-londe/maw.svg"
  35525. }
  35526. },
  35527. },
  35528. [
  35529. {
  35530. name: "Normal",
  35531. height: math.unit(6 + 8/12, "feet"),
  35532. default: true
  35533. },
  35534. ]
  35535. ))
  35536. characterMakers.push(() => makeCharacter(
  35537. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  35538. {
  35539. front: {
  35540. height: math.unit(3 + 10/12, "feet"),
  35541. weight: math.unit(90, "lb"),
  35542. name: "Front",
  35543. image: {
  35544. source: "./media/characters/taivas-ensim/front.svg",
  35545. extra: 1327/1216,
  35546. bottom: 96/1423
  35547. }
  35548. },
  35549. back: {
  35550. height: math.unit(3 + 10/12, "feet"),
  35551. weight: math.unit(90, "lb"),
  35552. name: "Back",
  35553. image: {
  35554. source: "./media/characters/taivas-ensim/back.svg",
  35555. extra: 1355/1247,
  35556. bottom: 11/1366
  35557. }
  35558. },
  35559. frontNsfw: {
  35560. height: math.unit(3 + 10/12, "feet"),
  35561. weight: math.unit(90, "lb"),
  35562. name: "Front (NSFW)",
  35563. image: {
  35564. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  35565. extra: 1327/1216,
  35566. bottom: 96/1423
  35567. }
  35568. },
  35569. backNsfw: {
  35570. height: math.unit(3 + 10/12, "feet"),
  35571. weight: math.unit(90, "lb"),
  35572. name: "Back (NSFW)",
  35573. image: {
  35574. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  35575. extra: 1355/1247,
  35576. bottom: 11/1366
  35577. }
  35578. },
  35579. },
  35580. [
  35581. {
  35582. name: "Normal",
  35583. height: math.unit(3 + 10/12, "feet"),
  35584. default: true
  35585. },
  35586. ]
  35587. ))
  35588. characterMakers.push(() => makeCharacter(
  35589. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  35590. {
  35591. front: {
  35592. height: math.unit(9 + 6/12, "feet"),
  35593. weight: math.unit(940, "lb"),
  35594. name: "Front",
  35595. image: {
  35596. source: "./media/characters/byliss/front.svg",
  35597. extra: 1327/1290,
  35598. bottom: 82/1409
  35599. }
  35600. },
  35601. back: {
  35602. height: math.unit(9 + 6/12, "feet"),
  35603. weight: math.unit(940, "lb"),
  35604. name: "Back",
  35605. image: {
  35606. source: "./media/characters/byliss/back.svg",
  35607. extra: 1376/1349,
  35608. bottom: 9/1385
  35609. }
  35610. },
  35611. frontNsfw: {
  35612. height: math.unit(9 + 6/12, "feet"),
  35613. weight: math.unit(940, "lb"),
  35614. name: "Front (NSFW)",
  35615. image: {
  35616. source: "./media/characters/byliss/front-nsfw.svg",
  35617. extra: 1327/1290,
  35618. bottom: 82/1409
  35619. }
  35620. },
  35621. backNsfw: {
  35622. height: math.unit(9 + 6/12, "feet"),
  35623. weight: math.unit(940, "lb"),
  35624. name: "Back (NSFW)",
  35625. image: {
  35626. source: "./media/characters/byliss/back-nsfw.svg",
  35627. extra: 1376/1349,
  35628. bottom: 9/1385
  35629. }
  35630. },
  35631. },
  35632. [
  35633. {
  35634. name: "Normal",
  35635. height: math.unit(9 + 6/12, "feet"),
  35636. default: true
  35637. },
  35638. ]
  35639. ))
  35640. characterMakers.push(() => makeCharacter(
  35641. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  35642. {
  35643. front: {
  35644. height: math.unit(5 + 2/12, "feet"),
  35645. weight: math.unit(200, "lb"),
  35646. name: "Front",
  35647. image: {
  35648. source: "./media/characters/noraly/front.svg",
  35649. extra: 4985/4773,
  35650. bottom: 150/5135
  35651. }
  35652. },
  35653. full: {
  35654. height: math.unit(5 + 2/12, "feet"),
  35655. weight: math.unit(164, "lb"),
  35656. name: "Full",
  35657. image: {
  35658. source: "./media/characters/noraly/full.svg",
  35659. extra: 1114/1059,
  35660. bottom: 35/1149
  35661. }
  35662. },
  35663. fuller: {
  35664. height: math.unit(5 + 2/12, "feet"),
  35665. weight: math.unit(230, "lb"),
  35666. name: "Fuller",
  35667. image: {
  35668. source: "./media/characters/noraly/fuller.svg",
  35669. extra: 1114/1059,
  35670. bottom: 35/1149
  35671. }
  35672. },
  35673. fullest: {
  35674. height: math.unit(5 + 2/12, "feet"),
  35675. weight: math.unit(300, "lb"),
  35676. name: "Fullest",
  35677. image: {
  35678. source: "./media/characters/noraly/fullest.svg",
  35679. extra: 1114/1059,
  35680. bottom: 35/1149
  35681. }
  35682. },
  35683. },
  35684. [
  35685. {
  35686. name: "Normal",
  35687. height: math.unit(5 + 2/12, "feet"),
  35688. default: true
  35689. },
  35690. ]
  35691. ))
  35692. characterMakers.push(() => makeCharacter(
  35693. { name: "Pera", species: ["snake"], tags: ["naga"] },
  35694. {
  35695. front: {
  35696. height: math.unit(5 + 2/12, "feet"),
  35697. weight: math.unit(210, "lb"),
  35698. name: "Front",
  35699. image: {
  35700. source: "./media/characters/pera/front.svg",
  35701. extra: 1560/1531,
  35702. bottom: 165/1725
  35703. }
  35704. },
  35705. back: {
  35706. height: math.unit(5 + 2/12, "feet"),
  35707. weight: math.unit(210, "lb"),
  35708. name: "Back",
  35709. image: {
  35710. source: "./media/characters/pera/back.svg",
  35711. extra: 1523/1493,
  35712. bottom: 152/1675
  35713. }
  35714. },
  35715. dick: {
  35716. height: math.unit(2.4, "feet"),
  35717. name: "Dick",
  35718. image: {
  35719. source: "./media/characters/pera/dick.svg"
  35720. }
  35721. },
  35722. },
  35723. [
  35724. {
  35725. name: "Normal",
  35726. height: math.unit(5 + 2/12, "feet"),
  35727. default: true
  35728. },
  35729. ]
  35730. ))
  35731. characterMakers.push(() => makeCharacter(
  35732. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  35733. {
  35734. front: {
  35735. height: math.unit(12, "feet"),
  35736. weight: math.unit(3200, "lb"),
  35737. name: "Front",
  35738. image: {
  35739. source: "./media/characters/julian/front.svg",
  35740. extra: 2962/2701,
  35741. bottom: 184/3146
  35742. }
  35743. },
  35744. maw: {
  35745. height: math.unit(5.35, "feet"),
  35746. name: "Maw",
  35747. image: {
  35748. source: "./media/characters/julian/maw.svg"
  35749. }
  35750. },
  35751. paw: {
  35752. height: math.unit(3.07, "feet"),
  35753. name: "Paw",
  35754. image: {
  35755. source: "./media/characters/julian/paw.svg"
  35756. }
  35757. },
  35758. },
  35759. [
  35760. {
  35761. name: "Default",
  35762. height: math.unit(12, "feet"),
  35763. default: true
  35764. },
  35765. {
  35766. name: "Big",
  35767. height: math.unit(50, "feet")
  35768. },
  35769. {
  35770. name: "Really Big",
  35771. height: math.unit(1, "mile")
  35772. },
  35773. {
  35774. name: "Extremely Big",
  35775. height: math.unit(100, "miles")
  35776. },
  35777. {
  35778. name: "Planet Hugger",
  35779. height: math.unit(200, "megameters")
  35780. },
  35781. {
  35782. name: "Unreasonably Big",
  35783. height: math.unit(1e300, "meters")
  35784. },
  35785. ]
  35786. ))
  35787. characterMakers.push(() => makeCharacter(
  35788. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35789. {
  35790. solgooleo: {
  35791. height: math.unit(4, "meters"),
  35792. weight: math.unit(6000*1.5, "kg"),
  35793. volume: math.unit(6000, "liters"),
  35794. name: "Solgooleo",
  35795. image: {
  35796. source: "./media/characters/pi/solgooleo.svg",
  35797. extra: 388/331,
  35798. bottom: 29/417
  35799. }
  35800. },
  35801. },
  35802. [
  35803. {
  35804. name: "Normal",
  35805. height: math.unit(4, "meters"),
  35806. default: true
  35807. },
  35808. ]
  35809. ))
  35810. characterMakers.push(() => makeCharacter(
  35811. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35812. {
  35813. front: {
  35814. height: math.unit(8, "feet"),
  35815. weight: math.unit(4, "tons"),
  35816. name: "Front",
  35817. image: {
  35818. source: "./media/characters/shaun/front.svg",
  35819. extra: 503/495,
  35820. bottom: 20/523
  35821. }
  35822. },
  35823. back: {
  35824. height: math.unit(8, "feet"),
  35825. weight: math.unit(4, "tons"),
  35826. name: "Back",
  35827. image: {
  35828. source: "./media/characters/shaun/back.svg",
  35829. extra: 487/480,
  35830. bottom: 20/507
  35831. }
  35832. },
  35833. },
  35834. [
  35835. {
  35836. name: "Lorg",
  35837. height: math.unit(8, "feet"),
  35838. default: true
  35839. },
  35840. ]
  35841. ))
  35842. characterMakers.push(() => makeCharacter(
  35843. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35844. {
  35845. frontAnthro: {
  35846. height: math.unit(7, "feet"),
  35847. name: "Front",
  35848. image: {
  35849. source: "./media/characters/sini/front-anthro.svg",
  35850. extra: 726/678,
  35851. bottom: 35/761
  35852. },
  35853. form: "anthro",
  35854. default: true
  35855. },
  35856. backAnthro: {
  35857. height: math.unit(7, "feet"),
  35858. name: "Back",
  35859. image: {
  35860. source: "./media/characters/sini/back-anthro.svg",
  35861. extra: 743/701,
  35862. bottom: 12/755
  35863. },
  35864. form: "anthro",
  35865. },
  35866. frontAnthroNsfw: {
  35867. height: math.unit(7, "feet"),
  35868. name: "Front (NSFW)",
  35869. image: {
  35870. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35871. extra: 726/678,
  35872. bottom: 35/761
  35873. },
  35874. form: "anthro"
  35875. },
  35876. backAnthroNsfw: {
  35877. height: math.unit(7, "feet"),
  35878. name: "Back (NSFW)",
  35879. image: {
  35880. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35881. extra: 743/701,
  35882. bottom: 12/755
  35883. },
  35884. form: "anthro",
  35885. },
  35886. mawAnthro: {
  35887. height: math.unit(2.14, "feet"),
  35888. name: "Maw",
  35889. image: {
  35890. source: "./media/characters/sini/maw-anthro.svg"
  35891. },
  35892. form: "anthro"
  35893. },
  35894. dick: {
  35895. height: math.unit(1.45, "feet"),
  35896. name: "Dick",
  35897. image: {
  35898. source: "./media/characters/sini/dick-anthro.svg"
  35899. },
  35900. form: "anthro"
  35901. },
  35902. feral: {
  35903. height: math.unit(16, "feet"),
  35904. name: "Feral",
  35905. image: {
  35906. source: "./media/characters/sini/feral.svg",
  35907. extra: 814/605,
  35908. bottom: 11/825
  35909. },
  35910. form: "feral",
  35911. default: true
  35912. },
  35913. feralNsfw: {
  35914. height: math.unit(16, "feet"),
  35915. name: "Feral (NSFW)",
  35916. image: {
  35917. source: "./media/characters/sini/feral-nsfw.svg",
  35918. extra: 814/605,
  35919. bottom: 11/825
  35920. },
  35921. form: "feral"
  35922. },
  35923. mawFeral: {
  35924. height: math.unit(5.66, "feet"),
  35925. name: "Maw",
  35926. image: {
  35927. source: "./media/characters/sini/maw-feral.svg"
  35928. },
  35929. form: "feral",
  35930. },
  35931. pawFeral: {
  35932. height: math.unit(5.17, "feet"),
  35933. name: "Paw",
  35934. image: {
  35935. source: "./media/characters/sini/paw-feral.svg"
  35936. },
  35937. form: "feral",
  35938. },
  35939. rumpFeral: {
  35940. height: math.unit(13.11, "feet"),
  35941. name: "Rump",
  35942. image: {
  35943. source: "./media/characters/sini/rump-feral.svg"
  35944. },
  35945. form: "feral",
  35946. },
  35947. dickFeral: {
  35948. height: math.unit(1, "feet"),
  35949. name: "Dick",
  35950. image: {
  35951. source: "./media/characters/sini/dick-feral.svg"
  35952. },
  35953. form: "feral",
  35954. },
  35955. eyeFeral: {
  35956. height: math.unit(1.23, "feet"),
  35957. name: "Eye",
  35958. image: {
  35959. source: "./media/characters/sini/eye-feral.svg"
  35960. },
  35961. form: "feral",
  35962. },
  35963. },
  35964. [
  35965. {
  35966. name: "Normal",
  35967. height: math.unit(7, "feet"),
  35968. default: true,
  35969. form: "anthro"
  35970. },
  35971. {
  35972. name: "Normal",
  35973. height: math.unit(16, "feet"),
  35974. default: true,
  35975. form: "feral"
  35976. },
  35977. ],
  35978. {
  35979. "anthro": {
  35980. name: "Anthro",
  35981. default: true
  35982. },
  35983. "feral": {
  35984. name: "Feral",
  35985. }
  35986. }
  35987. ))
  35988. characterMakers.push(() => makeCharacter(
  35989. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35990. {
  35991. side: {
  35992. height: math.unit(47.2, "meters"),
  35993. weight: math.unit(10000, "tons"),
  35994. name: "Side",
  35995. image: {
  35996. source: "./media/characters/raylldo/side.svg",
  35997. extra: 2363/642,
  35998. bottom: 221/2584
  35999. }
  36000. },
  36001. top: {
  36002. height: math.unit(240, "meters"),
  36003. weight: math.unit(10000, "tons"),
  36004. name: "Top",
  36005. image: {
  36006. source: "./media/characters/raylldo/top.svg"
  36007. }
  36008. },
  36009. bottom: {
  36010. height: math.unit(240, "meters"),
  36011. weight: math.unit(10000, "tons"),
  36012. name: "Bottom",
  36013. image: {
  36014. source: "./media/characters/raylldo/bottom.svg"
  36015. }
  36016. },
  36017. head: {
  36018. height: math.unit(38.6, "meters"),
  36019. name: "Head",
  36020. image: {
  36021. source: "./media/characters/raylldo/head.svg",
  36022. extra: 1335/1112,
  36023. bottom: 0/1335
  36024. }
  36025. },
  36026. maw: {
  36027. height: math.unit(16.37, "meters"),
  36028. name: "Maw",
  36029. image: {
  36030. source: "./media/characters/raylldo/maw.svg",
  36031. extra: 883/660,
  36032. bottom: 0/883
  36033. },
  36034. extraAttributes: {
  36035. preyCapacity: {
  36036. name: "Capacity",
  36037. power: 3,
  36038. type: "volume",
  36039. base: math.unit(1000, "people")
  36040. },
  36041. tongueSize: {
  36042. name: "Tongue Size",
  36043. power: 2,
  36044. type: "area",
  36045. base: math.unit(21, "m^2")
  36046. }
  36047. }
  36048. },
  36049. forepaw: {
  36050. height: math.unit(18, "meters"),
  36051. name: "Forepaw",
  36052. image: {
  36053. source: "./media/characters/raylldo/forepaw.svg"
  36054. }
  36055. },
  36056. hindpaw: {
  36057. height: math.unit(23, "meters"),
  36058. name: "Hindpaw",
  36059. image: {
  36060. source: "./media/characters/raylldo/hindpaw.svg"
  36061. }
  36062. },
  36063. genitals: {
  36064. height: math.unit(42, "meters"),
  36065. name: "Genitals",
  36066. image: {
  36067. source: "./media/characters/raylldo/genitals.svg"
  36068. }
  36069. },
  36070. },
  36071. [
  36072. {
  36073. name: "Normal",
  36074. height: math.unit(47.2, "meters"),
  36075. default: true
  36076. },
  36077. ]
  36078. ))
  36079. characterMakers.push(() => makeCharacter(
  36080. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  36081. {
  36082. anthroFront: {
  36083. height: math.unit(9, "feet"),
  36084. weight: math.unit(600, "lb"),
  36085. name: "Anthro (Front)",
  36086. image: {
  36087. source: "./media/characters/glint/anthro-front.svg",
  36088. extra: 1097/1018,
  36089. bottom: 28/1125
  36090. }
  36091. },
  36092. anthroBack: {
  36093. height: math.unit(9, "feet"),
  36094. weight: math.unit(600, "lb"),
  36095. name: "Anthro (Back)",
  36096. image: {
  36097. source: "./media/characters/glint/anthro-back.svg",
  36098. extra: 1154/997,
  36099. bottom: 36/1190
  36100. }
  36101. },
  36102. feral: {
  36103. height: math.unit(11, "feet"),
  36104. weight: math.unit(50000, "lb"),
  36105. name: "Feral",
  36106. image: {
  36107. source: "./media/characters/glint/feral.svg",
  36108. extra: 3035/1585,
  36109. bottom: 1169/4204
  36110. }
  36111. },
  36112. dickAnthro: {
  36113. height: math.unit(0.7, "meters"),
  36114. name: "Dick (Anthro)",
  36115. image: {
  36116. source: "./media/characters/glint/dick-anthro.svg"
  36117. }
  36118. },
  36119. dickFeral: {
  36120. height: math.unit(2.65, "meters"),
  36121. name: "Dick (Feral)",
  36122. image: {
  36123. source: "./media/characters/glint/dick-feral.svg"
  36124. }
  36125. },
  36126. slitHidden: {
  36127. height: math.unit(5.85, "meters"),
  36128. name: "Slit (Hidden)",
  36129. image: {
  36130. source: "./media/characters/glint/slit-hidden.svg"
  36131. }
  36132. },
  36133. slitErect: {
  36134. height: math.unit(5.85, "meters"),
  36135. name: "Slit (Erect)",
  36136. image: {
  36137. source: "./media/characters/glint/slit-erect.svg"
  36138. }
  36139. },
  36140. mawAnthro: {
  36141. height: math.unit(0.63, "meters"),
  36142. name: "Maw (Anthro)",
  36143. image: {
  36144. source: "./media/characters/glint/maw.svg"
  36145. }
  36146. },
  36147. mawFeral: {
  36148. height: math.unit(2.89, "meters"),
  36149. name: "Maw (Feral)",
  36150. image: {
  36151. source: "./media/characters/glint/maw.svg"
  36152. }
  36153. },
  36154. },
  36155. [
  36156. {
  36157. name: "Normal",
  36158. height: math.unit(9, "feet"),
  36159. default: true
  36160. },
  36161. ]
  36162. ))
  36163. characterMakers.push(() => makeCharacter(
  36164. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  36165. {
  36166. side: {
  36167. height: math.unit(15, "feet"),
  36168. weight: math.unit(5000, "kg"),
  36169. name: "Side",
  36170. image: {
  36171. source: "./media/characters/kairne/side.svg",
  36172. extra: 979/811,
  36173. bottom: 13/992
  36174. }
  36175. },
  36176. front: {
  36177. height: math.unit(15, "feet"),
  36178. weight: math.unit(5000, "kg"),
  36179. name: "Front",
  36180. image: {
  36181. source: "./media/characters/kairne/front.svg",
  36182. extra: 908/814,
  36183. bottom: 26/934
  36184. }
  36185. },
  36186. sideNsfw: {
  36187. height: math.unit(15, "feet"),
  36188. weight: math.unit(5000, "kg"),
  36189. name: "Side (NSFW)",
  36190. image: {
  36191. source: "./media/characters/kairne/side-nsfw.svg",
  36192. extra: 979/811,
  36193. bottom: 13/992
  36194. }
  36195. },
  36196. frontNsfw: {
  36197. height: math.unit(15, "feet"),
  36198. weight: math.unit(5000, "kg"),
  36199. name: "Front (NSFW)",
  36200. image: {
  36201. source: "./media/characters/kairne/front-nsfw.svg",
  36202. extra: 908/814,
  36203. bottom: 26/934
  36204. }
  36205. },
  36206. dickCaged: {
  36207. height: math.unit(0.65, "meters"),
  36208. name: "Dick-caged",
  36209. image: {
  36210. source: "./media/characters/kairne/dick-caged.svg"
  36211. }
  36212. },
  36213. dick: {
  36214. height: math.unit(0.79, "meters"),
  36215. name: "Dick",
  36216. image: {
  36217. source: "./media/characters/kairne/dick.svg"
  36218. }
  36219. },
  36220. genitals: {
  36221. height: math.unit(1.29, "meters"),
  36222. name: "Genitals",
  36223. image: {
  36224. source: "./media/characters/kairne/genitals.svg"
  36225. }
  36226. },
  36227. maw: {
  36228. height: math.unit(1.73, "meters"),
  36229. name: "Maw",
  36230. image: {
  36231. source: "./media/characters/kairne/maw.svg"
  36232. }
  36233. },
  36234. },
  36235. [
  36236. {
  36237. name: "Normal",
  36238. height: math.unit(15, "feet"),
  36239. default: true
  36240. },
  36241. ]
  36242. ))
  36243. characterMakers.push(() => makeCharacter(
  36244. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  36245. {
  36246. front: {
  36247. height: math.unit(5 + 8/12, "feet"),
  36248. weight: math.unit(139, "lb"),
  36249. name: "Front",
  36250. image: {
  36251. source: "./media/characters/biscuit-jackal/front.svg",
  36252. extra: 2106/1961,
  36253. bottom: 58/2164
  36254. }
  36255. },
  36256. back: {
  36257. height: math.unit(5 + 8/12, "feet"),
  36258. weight: math.unit(139, "lb"),
  36259. name: "Back",
  36260. image: {
  36261. source: "./media/characters/biscuit-jackal/back.svg",
  36262. extra: 2132/1976,
  36263. bottom: 57/2189
  36264. }
  36265. },
  36266. werejackal: {
  36267. height: math.unit(6 + 3/12, "feet"),
  36268. weight: math.unit(188, "lb"),
  36269. name: "Werejackal",
  36270. image: {
  36271. source: "./media/characters/biscuit-jackal/werejackal.svg",
  36272. extra: 2373/2178,
  36273. bottom: 53/2426
  36274. }
  36275. },
  36276. },
  36277. [
  36278. {
  36279. name: "Normal",
  36280. height: math.unit(5 + 8/12, "feet"),
  36281. default: true
  36282. },
  36283. ]
  36284. ))
  36285. characterMakers.push(() => makeCharacter(
  36286. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  36287. {
  36288. front: {
  36289. height: math.unit(140, "cm"),
  36290. weight: math.unit(45, "kg"),
  36291. name: "Front",
  36292. image: {
  36293. source: "./media/characters/tayra-white/front.svg",
  36294. extra: 2229/2192,
  36295. bottom: 75/2304
  36296. }
  36297. },
  36298. },
  36299. [
  36300. {
  36301. name: "Normal",
  36302. height: math.unit(140, "cm"),
  36303. default: true
  36304. },
  36305. ]
  36306. ))
  36307. characterMakers.push(() => makeCharacter(
  36308. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  36309. {
  36310. front: {
  36311. height: math.unit(4 + 5/12, "feet"),
  36312. name: "Front",
  36313. image: {
  36314. source: "./media/characters/scoop/front.svg",
  36315. extra: 1257/1136,
  36316. bottom: 69/1326
  36317. }
  36318. },
  36319. back: {
  36320. height: math.unit(4 + 5/12, "feet"),
  36321. name: "Back",
  36322. image: {
  36323. source: "./media/characters/scoop/back.svg",
  36324. extra: 1321/1152,
  36325. bottom: 32/1353
  36326. }
  36327. },
  36328. maw: {
  36329. height: math.unit(0.68, "feet"),
  36330. name: "Maw",
  36331. image: {
  36332. source: "./media/characters/scoop/maw.svg"
  36333. }
  36334. },
  36335. },
  36336. [
  36337. {
  36338. name: "Really Small",
  36339. height: math.unit(1, "mm")
  36340. },
  36341. {
  36342. name: "Micro",
  36343. height: math.unit(1, "inch")
  36344. },
  36345. {
  36346. name: "Normal",
  36347. height: math.unit(4 + 5/12, "feet"),
  36348. default: true
  36349. },
  36350. {
  36351. name: "Macro",
  36352. height: math.unit(200, "feet")
  36353. },
  36354. {
  36355. name: "Megamacro",
  36356. height: math.unit(3240, "feet")
  36357. },
  36358. {
  36359. name: "Teramacro",
  36360. height: math.unit(2500, "miles")
  36361. },
  36362. ]
  36363. ))
  36364. characterMakers.push(() => makeCharacter(
  36365. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  36366. {
  36367. front: {
  36368. height: math.unit(15 + 7/12, "feet"),
  36369. weight: math.unit(1150, "tons"),
  36370. name: "Front",
  36371. image: {
  36372. source: "./media/characters/saphinara/front.svg",
  36373. extra: 1837/1643,
  36374. bottom: 84/1921
  36375. },
  36376. form: "normal",
  36377. default: true
  36378. },
  36379. side: {
  36380. height: math.unit(15 + 7/12, "feet"),
  36381. weight: math.unit(1150, "tons"),
  36382. name: "Side",
  36383. image: {
  36384. source: "./media/characters/saphinara/side.svg",
  36385. extra: 605/547,
  36386. bottom: 6/611
  36387. },
  36388. form: "normal"
  36389. },
  36390. back: {
  36391. height: math.unit(15 + 7/12, "feet"),
  36392. weight: math.unit(1150, "tons"),
  36393. name: "Back",
  36394. image: {
  36395. source: "./media/characters/saphinara/back.svg",
  36396. extra: 591/531,
  36397. bottom: 13/604
  36398. },
  36399. form: "normal"
  36400. },
  36401. frontTail: {
  36402. height: math.unit(15 + 7/12, "feet"),
  36403. weight: math.unit(1150, "tons"),
  36404. name: "Front (Full Tail)",
  36405. image: {
  36406. source: "./media/characters/saphinara/front-tail.svg",
  36407. extra: 2256/1630,
  36408. bottom: 261/2517
  36409. },
  36410. form: "normal"
  36411. },
  36412. insides: {
  36413. height: math.unit(11.92, "feet"),
  36414. name: "Insides",
  36415. image: {
  36416. source: "./media/characters/saphinara/insides.svg"
  36417. },
  36418. form: "normal"
  36419. },
  36420. head: {
  36421. height: math.unit(4.17, "feet"),
  36422. name: "Head",
  36423. image: {
  36424. source: "./media/characters/saphinara/head.svg"
  36425. },
  36426. form: "normal"
  36427. },
  36428. tongue: {
  36429. height: math.unit(4.60, "feet"),
  36430. name: "Tongue",
  36431. image: {
  36432. source: "./media/characters/saphinara/tongue.svg"
  36433. },
  36434. form: "normal"
  36435. },
  36436. headEnraged: {
  36437. height: math.unit(5.55, "feet"),
  36438. name: "Head (Enraged)",
  36439. image: {
  36440. source: "./media/characters/saphinara/head-enraged.svg"
  36441. },
  36442. form: "normal"
  36443. },
  36444. wings: {
  36445. height: math.unit(11.95, "feet"),
  36446. name: "Wings",
  36447. image: {
  36448. source: "./media/characters/saphinara/wings.svg"
  36449. },
  36450. form: "normal"
  36451. },
  36452. feathers: {
  36453. height: math.unit(8.92, "feet"),
  36454. name: "Feathers",
  36455. image: {
  36456. source: "./media/characters/saphinara/feathers.svg"
  36457. },
  36458. form: "normal"
  36459. },
  36460. shackles: {
  36461. height: math.unit(2, "feet"),
  36462. name: "Shackles",
  36463. image: {
  36464. source: "./media/characters/saphinara/shackles.svg"
  36465. },
  36466. form: "normal"
  36467. },
  36468. eyes: {
  36469. height: math.unit(1.331, "feet"),
  36470. name: "Eyes",
  36471. image: {
  36472. source: "./media/characters/saphinara/eyes.svg"
  36473. },
  36474. form: "normal"
  36475. },
  36476. eyesEnraged: {
  36477. height: math.unit(1.331, "feet"),
  36478. name: "Eyes (Enraged)",
  36479. image: {
  36480. source: "./media/characters/saphinara/eyes-enraged.svg"
  36481. },
  36482. form: "normal"
  36483. },
  36484. trueFormSide: {
  36485. height: math.unit(200, "feet"),
  36486. weight: math.unit(1e7, "tons"),
  36487. name: "Side",
  36488. image: {
  36489. source: "./media/characters/saphinara/true-form-side.svg",
  36490. extra: 1399/770,
  36491. bottom: 97/1496
  36492. },
  36493. form: "true-form",
  36494. default: true
  36495. },
  36496. trueFormMaw: {
  36497. height: math.unit(71.5, "feet"),
  36498. name: "Maw",
  36499. image: {
  36500. source: "./media/characters/saphinara/true-form-maw.svg",
  36501. extra: 2302/1453,
  36502. bottom: 0/2302
  36503. },
  36504. form: "true-form"
  36505. },
  36506. meowberusSide: {
  36507. height: math.unit(75, "feet"),
  36508. weight: math.unit(180000, "kg"),
  36509. preyCapacity: math.unit(50000, "people"),
  36510. name: "Side",
  36511. image: {
  36512. source: "./media/characters/saphinara/meowberus-side.svg",
  36513. extra: 1400/711,
  36514. bottom: 126/1526
  36515. },
  36516. form: "meowberus",
  36517. extraAttributes: {
  36518. "pawArea": {
  36519. name: "Paw Size",
  36520. power: 2,
  36521. type: "area",
  36522. base: math.unit(35, "m^2")
  36523. }
  36524. }
  36525. },
  36526. },
  36527. [
  36528. {
  36529. name: "Normal",
  36530. height: math.unit(15 + 7/12, "feet"),
  36531. default: true,
  36532. form: "normal"
  36533. },
  36534. {
  36535. name: "Angry",
  36536. height: math.unit(30 + 6/12, "feet"),
  36537. form: "normal"
  36538. },
  36539. {
  36540. name: "Enraged",
  36541. height: math.unit(102 + 1/12, "feet"),
  36542. form: "normal"
  36543. },
  36544. {
  36545. name: "True",
  36546. height: math.unit(200, "feet"),
  36547. default: true,
  36548. form: "true-form"
  36549. },
  36550. {
  36551. name: "Normal",
  36552. height: math.unit(75, "feet"),
  36553. default: true,
  36554. form: "meowberus"
  36555. },
  36556. ],
  36557. {
  36558. "normal": {
  36559. name: "Normal",
  36560. default: true
  36561. },
  36562. "true-form": {
  36563. name: "True Form"
  36564. },
  36565. "meowberus": {
  36566. name: "Meowberus",
  36567. },
  36568. }
  36569. ))
  36570. characterMakers.push(() => makeCharacter(
  36571. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  36572. {
  36573. front: {
  36574. height: math.unit(6 + 8/12, "feet"),
  36575. weight: math.unit(300, "lb"),
  36576. name: "Front",
  36577. image: {
  36578. source: "./media/characters/jrain/front.svg",
  36579. extra: 3039/2865,
  36580. bottom: 399/3438
  36581. }
  36582. },
  36583. back: {
  36584. height: math.unit(6 + 8/12, "feet"),
  36585. weight: math.unit(300, "lb"),
  36586. name: "Back",
  36587. image: {
  36588. source: "./media/characters/jrain/back.svg",
  36589. extra: 3089/2938,
  36590. bottom: 172/3261
  36591. }
  36592. },
  36593. head: {
  36594. height: math.unit(2.14, "feet"),
  36595. name: "Head",
  36596. image: {
  36597. source: "./media/characters/jrain/head.svg"
  36598. }
  36599. },
  36600. maw: {
  36601. height: math.unit(1.77, "feet"),
  36602. name: "Maw",
  36603. image: {
  36604. source: "./media/characters/jrain/maw.svg"
  36605. }
  36606. },
  36607. leftHand: {
  36608. height: math.unit(1.1, "feet"),
  36609. name: "Left Hand",
  36610. image: {
  36611. source: "./media/characters/jrain/left-hand.svg"
  36612. }
  36613. },
  36614. rightHand: {
  36615. height: math.unit(1.1, "feet"),
  36616. name: "Right Hand",
  36617. image: {
  36618. source: "./media/characters/jrain/right-hand.svg"
  36619. }
  36620. },
  36621. eye: {
  36622. height: math.unit(0.35, "feet"),
  36623. name: "Eye",
  36624. image: {
  36625. source: "./media/characters/jrain/eye.svg"
  36626. }
  36627. },
  36628. },
  36629. [
  36630. {
  36631. name: "Normal",
  36632. height: math.unit(6 + 8/12, "feet"),
  36633. default: true
  36634. },
  36635. {
  36636. name: "Casually Large",
  36637. height: math.unit(25, "feet")
  36638. },
  36639. {
  36640. name: "Giant",
  36641. height: math.unit(100, "feet")
  36642. },
  36643. {
  36644. name: "Kaiju",
  36645. height: math.unit(300, "feet")
  36646. },
  36647. ]
  36648. ))
  36649. characterMakers.push(() => makeCharacter(
  36650. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  36651. {
  36652. dragon: {
  36653. height: math.unit(5, "meters"),
  36654. name: "Dragon",
  36655. image: {
  36656. source: "./media/characters/sabrina/dragon.svg",
  36657. extra: 3670 / 2365,
  36658. bottom: 333 / 4003
  36659. }
  36660. },
  36661. gryphon: {
  36662. height: math.unit(3, "meters"),
  36663. name: "Gryphon",
  36664. image: {
  36665. source: "./media/characters/sabrina/gryphon.svg",
  36666. extra: 1576 / 945,
  36667. bottom: 71 / 1647
  36668. }
  36669. },
  36670. snake: {
  36671. height: math.unit(12, "meters"),
  36672. name: "Snake",
  36673. image: {
  36674. source: "./media/characters/sabrina/snake.svg",
  36675. extra: 1758 / 1320,
  36676. bottom: 186 / 1944
  36677. }
  36678. },
  36679. collar: {
  36680. height: math.unit(1.86, "meters"),
  36681. name: "Collar",
  36682. image: {
  36683. source: "./media/characters/sabrina/collar.svg"
  36684. }
  36685. },
  36686. eye: {
  36687. height: math.unit(0.53, "meters"),
  36688. name: "Eye",
  36689. image: {
  36690. source: "./media/characters/sabrina/eye.svg"
  36691. }
  36692. },
  36693. foot: {
  36694. height: math.unit(1.86, "meters"),
  36695. name: "Foot",
  36696. image: {
  36697. source: "./media/characters/sabrina/foot.svg"
  36698. }
  36699. },
  36700. hand: {
  36701. height: math.unit(1.32, "meters"),
  36702. name: "Hand",
  36703. image: {
  36704. source: "./media/characters/sabrina/hand.svg"
  36705. }
  36706. },
  36707. head: {
  36708. height: math.unit(2.44, "meters"),
  36709. name: "Head",
  36710. image: {
  36711. source: "./media/characters/sabrina/head.svg"
  36712. }
  36713. },
  36714. headAngry: {
  36715. height: math.unit(2.44, "meters"),
  36716. name: "Head (Angry))",
  36717. image: {
  36718. source: "./media/characters/sabrina/head-angry.svg"
  36719. }
  36720. },
  36721. maw: {
  36722. height: math.unit(1.65, "meters"),
  36723. name: "Maw",
  36724. image: {
  36725. source: "./media/characters/sabrina/maw.svg"
  36726. }
  36727. },
  36728. spikes: {
  36729. height: math.unit(1.69, "meters"),
  36730. name: "Spikes",
  36731. image: {
  36732. source: "./media/characters/sabrina/spikes.svg"
  36733. }
  36734. },
  36735. stomach: {
  36736. height: math.unit(1.15, "meters"),
  36737. name: "Stomach",
  36738. image: {
  36739. source: "./media/characters/sabrina/stomach.svg"
  36740. }
  36741. },
  36742. tongue: {
  36743. height: math.unit(1.27, "meters"),
  36744. name: "Tongue",
  36745. image: {
  36746. source: "./media/characters/sabrina/tongue.svg"
  36747. }
  36748. },
  36749. wingDorsal: {
  36750. height: math.unit(4.85, "meters"),
  36751. name: "Wing (Dorsal)",
  36752. image: {
  36753. source: "./media/characters/sabrina/wing-dorsal.svg"
  36754. }
  36755. },
  36756. wingVentral: {
  36757. height: math.unit(4.85, "meters"),
  36758. name: "Wing (Ventral)",
  36759. image: {
  36760. source: "./media/characters/sabrina/wing-ventral.svg"
  36761. }
  36762. },
  36763. },
  36764. [
  36765. {
  36766. name: "Normal",
  36767. height: math.unit(5, "meters"),
  36768. default: true
  36769. },
  36770. ]
  36771. ))
  36772. characterMakers.push(() => makeCharacter(
  36773. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  36774. {
  36775. frontMaid: {
  36776. height: math.unit(5 + 5/12, "feet"),
  36777. weight: math.unit(130, "lb"),
  36778. name: "Front (Maid)",
  36779. image: {
  36780. source: "./media/characters/midnight-tales/front-maid.svg",
  36781. extra: 489/454,
  36782. bottom: 61/550
  36783. }
  36784. },
  36785. frontFormal: {
  36786. height: math.unit(5 + 5/12, "feet"),
  36787. weight: math.unit(130, "lb"),
  36788. name: "Front (Formal)",
  36789. image: {
  36790. source: "./media/characters/midnight-tales/front-formal.svg",
  36791. extra: 489/454,
  36792. bottom: 61/550
  36793. }
  36794. },
  36795. back: {
  36796. height: math.unit(5 + 5/12, "feet"),
  36797. weight: math.unit(130, "lb"),
  36798. name: "Back",
  36799. image: {
  36800. source: "./media/characters/midnight-tales/back.svg",
  36801. extra: 498/456,
  36802. bottom: 33/531
  36803. }
  36804. },
  36805. frontBeast: {
  36806. height: math.unit(40, "feet"),
  36807. weight: math.unit(64000, "lb"),
  36808. name: "Front (Beast)",
  36809. image: {
  36810. source: "./media/characters/midnight-tales/front-beast.svg",
  36811. extra: 927/860,
  36812. bottom: 53/980
  36813. }
  36814. },
  36815. backBeast: {
  36816. height: math.unit(40, "feet"),
  36817. weight: math.unit(64000, "lb"),
  36818. name: "Back (Beast)",
  36819. image: {
  36820. source: "./media/characters/midnight-tales/back-beast.svg",
  36821. extra: 929/855,
  36822. bottom: 16/945
  36823. }
  36824. },
  36825. footBeast: {
  36826. height: math.unit(6.7, "feet"),
  36827. name: "Foot (Beast)",
  36828. image: {
  36829. source: "./media/characters/midnight-tales/foot-beast.svg"
  36830. }
  36831. },
  36832. headBeast: {
  36833. height: math.unit(8, "feet"),
  36834. name: "Head (Beast)",
  36835. image: {
  36836. source: "./media/characters/midnight-tales/head-beast.svg"
  36837. }
  36838. },
  36839. },
  36840. [
  36841. {
  36842. name: "Normal",
  36843. height: math.unit(5 + 5 / 12, "feet"),
  36844. default: true
  36845. },
  36846. {
  36847. name: "Macro",
  36848. height: math.unit(25, "feet")
  36849. },
  36850. ]
  36851. ))
  36852. characterMakers.push(() => makeCharacter(
  36853. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36854. {
  36855. front: {
  36856. height: math.unit(5 + 10/12, "feet"),
  36857. name: "Front",
  36858. image: {
  36859. source: "./media/characters/argon/front.svg",
  36860. extra: 2009/1935,
  36861. bottom: 118/2127
  36862. }
  36863. },
  36864. back: {
  36865. height: math.unit(5 + 10/12, "feet"),
  36866. name: "Back",
  36867. image: {
  36868. source: "./media/characters/argon/back.svg",
  36869. extra: 2047/1992,
  36870. bottom: 20/2067
  36871. }
  36872. },
  36873. frontDressed: {
  36874. height: math.unit(5 + 10/12, "feet"),
  36875. name: "Front (Dressed)",
  36876. image: {
  36877. source: "./media/characters/argon/front-dressed.svg",
  36878. extra: 2009/1935,
  36879. bottom: 118/2127
  36880. }
  36881. },
  36882. },
  36883. [
  36884. {
  36885. name: "Normal",
  36886. height: math.unit(5 + 10/12, "feet"),
  36887. default: true
  36888. },
  36889. ]
  36890. ))
  36891. characterMakers.push(() => makeCharacter(
  36892. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  36893. {
  36894. front: {
  36895. height: math.unit(8 + 6/12, "feet"),
  36896. weight: math.unit(1150, "lb"),
  36897. name: "Front",
  36898. image: {
  36899. source: "./media/characters/kichi/front.svg",
  36900. extra: 1267/1164,
  36901. bottom: 61/1328
  36902. }
  36903. },
  36904. back: {
  36905. height: math.unit(8 + 6/12, "feet"),
  36906. weight: math.unit(1150, "lb"),
  36907. name: "Back",
  36908. image: {
  36909. source: "./media/characters/kichi/back.svg",
  36910. extra: 1273/1166,
  36911. bottom: 33/1306
  36912. }
  36913. },
  36914. },
  36915. [
  36916. {
  36917. name: "Normal",
  36918. height: math.unit(8 + 6/12, "feet"),
  36919. default: true
  36920. },
  36921. ]
  36922. ))
  36923. characterMakers.push(() => makeCharacter(
  36924. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36925. {
  36926. front: {
  36927. height: math.unit(6, "feet"),
  36928. weight: math.unit(210, "lb"),
  36929. name: "Front",
  36930. image: {
  36931. source: "./media/characters/manetel-greyscale/front.svg",
  36932. extra: 350/312,
  36933. bottom: 8/358
  36934. }
  36935. },
  36936. },
  36937. [
  36938. {
  36939. name: "Micro",
  36940. height: math.unit(2, "inches")
  36941. },
  36942. {
  36943. name: "Normal",
  36944. height: math.unit(6, "feet"),
  36945. default: true
  36946. },
  36947. {
  36948. name: "Minimacro",
  36949. height: math.unit(17, "feet")
  36950. },
  36951. {
  36952. name: "Macro",
  36953. height: math.unit(117, "feet")
  36954. },
  36955. ]
  36956. ))
  36957. characterMakers.push(() => makeCharacter(
  36958. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36959. {
  36960. side: {
  36961. height: math.unit(5 + 1/12, "feet"),
  36962. weight: math.unit(418, "lb"),
  36963. name: "Side",
  36964. image: {
  36965. source: "./media/characters/softpurr/side.svg",
  36966. extra: 1993/1945,
  36967. bottom: 134/2127
  36968. }
  36969. },
  36970. front: {
  36971. height: math.unit(5 + 1/12, "feet"),
  36972. weight: math.unit(418, "lb"),
  36973. name: "Front",
  36974. image: {
  36975. source: "./media/characters/softpurr/front.svg",
  36976. extra: 1950/1856,
  36977. bottom: 174/2124
  36978. }
  36979. },
  36980. paw: {
  36981. height: math.unit(1, "feet"),
  36982. name: "Paw",
  36983. image: {
  36984. source: "./media/characters/softpurr/paw.svg"
  36985. }
  36986. },
  36987. },
  36988. [
  36989. {
  36990. name: "Normal",
  36991. height: math.unit(5 + 1/12, "feet"),
  36992. default: true
  36993. },
  36994. ]
  36995. ))
  36996. characterMakers.push(() => makeCharacter(
  36997. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36998. {
  36999. front: {
  37000. height: math.unit(260, "meters"),
  37001. name: "Front",
  37002. image: {
  37003. source: "./media/characters/anahita/front.svg",
  37004. extra: 665/635,
  37005. bottom: 89/754
  37006. }
  37007. },
  37008. },
  37009. [
  37010. {
  37011. name: "Macro",
  37012. height: math.unit(260, "meters"),
  37013. default: true
  37014. },
  37015. ]
  37016. ))
  37017. characterMakers.push(() => makeCharacter(
  37018. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  37019. {
  37020. front: {
  37021. height: math.unit(4 + 10/12, "feet"),
  37022. weight: math.unit(160, "lb"),
  37023. name: "Front",
  37024. image: {
  37025. source: "./media/characters/chip-mouse/front.svg",
  37026. extra: 3528/3408,
  37027. bottom: 0/3528
  37028. }
  37029. },
  37030. frontNsfw: {
  37031. height: math.unit(4 + 10/12, "feet"),
  37032. weight: math.unit(160, "lb"),
  37033. name: "Front (NSFW)",
  37034. image: {
  37035. source: "./media/characters/chip-mouse/front-nsfw.svg",
  37036. extra: 3528/3408,
  37037. bottom: 0/3528
  37038. }
  37039. },
  37040. },
  37041. [
  37042. {
  37043. name: "Normal",
  37044. height: math.unit(4 + 10/12, "feet"),
  37045. default: true
  37046. },
  37047. ]
  37048. ))
  37049. characterMakers.push(() => makeCharacter(
  37050. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  37051. {
  37052. side: {
  37053. height: math.unit(10, "feet"),
  37054. weight: math.unit(14000, "lb"),
  37055. name: "Side",
  37056. image: {
  37057. source: "./media/characters/kremm/side.svg",
  37058. extra: 1390/1053,
  37059. bottom: 90/1480
  37060. }
  37061. },
  37062. gut: {
  37063. height: math.unit(5.8, "feet"),
  37064. name: "Gut",
  37065. image: {
  37066. source: "./media/characters/kremm/gut.svg"
  37067. }
  37068. },
  37069. ass: {
  37070. height: math.unit(6.1, "feet"),
  37071. name: "Ass",
  37072. image: {
  37073. source: "./media/characters/kremm/ass.svg"
  37074. }
  37075. },
  37076. jaws: {
  37077. height: math.unit(2.2, "feet"),
  37078. name: "Jaws",
  37079. image: {
  37080. source: "./media/characters/kremm/jaws.svg"
  37081. }
  37082. },
  37083. dick: {
  37084. height: math.unit(4.26, "feet"),
  37085. name: "Dick",
  37086. image: {
  37087. source: "./media/characters/kremm/dick.svg"
  37088. }
  37089. },
  37090. },
  37091. [
  37092. {
  37093. name: "Normal",
  37094. height: math.unit(10, "feet"),
  37095. default: true
  37096. },
  37097. ]
  37098. ))
  37099. characterMakers.push(() => makeCharacter(
  37100. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  37101. {
  37102. front: {
  37103. height: math.unit(30, "stories"),
  37104. name: "Front",
  37105. image: {
  37106. source: "./media/characters/kai/front.svg",
  37107. extra: 1892/1718,
  37108. bottom: 162/2054
  37109. }
  37110. },
  37111. },
  37112. [
  37113. {
  37114. name: "Macro",
  37115. height: math.unit(30, "stories"),
  37116. default: true
  37117. },
  37118. ]
  37119. ))
  37120. characterMakers.push(() => makeCharacter(
  37121. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  37122. {
  37123. front: {
  37124. height: math.unit(6 + 4/12, "feet"),
  37125. weight: math.unit(145, "lb"),
  37126. name: "Front",
  37127. image: {
  37128. source: "./media/characters/sykes/front.svg",
  37129. extra: 1321 / 1187,
  37130. bottom: 66 / 1387
  37131. }
  37132. },
  37133. back: {
  37134. height: math.unit(6 + 4/12, "feet"),
  37135. weight: math.unit(145, "lb"),
  37136. name: "Back",
  37137. image: {
  37138. source: "./media/characters/sykes/back.svg",
  37139. extra: 1326/1181,
  37140. bottom: 31/1357
  37141. }
  37142. },
  37143. traditionalOutfit: {
  37144. height: math.unit(6 + 4/12, "feet"),
  37145. weight: math.unit(145, "lb"),
  37146. name: "Traditional Outfit",
  37147. image: {
  37148. source: "./media/characters/sykes/traditional-outfit.svg",
  37149. extra: 1321 / 1187,
  37150. bottom: 66 / 1387
  37151. }
  37152. },
  37153. adventureOutfit: {
  37154. height: math.unit(6 + 4/12, "feet"),
  37155. weight: math.unit(145, "lb"),
  37156. name: "Adventure Outfit",
  37157. image: {
  37158. source: "./media/characters/sykes/adventure-outfit.svg",
  37159. extra: 1321 / 1187,
  37160. bottom: 66 / 1387
  37161. }
  37162. },
  37163. handLeft: {
  37164. height: math.unit(0.9, "feet"),
  37165. name: "Hand (Left)",
  37166. image: {
  37167. source: "./media/characters/sykes/hand-left.svg"
  37168. }
  37169. },
  37170. handRight: {
  37171. height: math.unit(0.839, "feet"),
  37172. name: "Hand (Right)",
  37173. image: {
  37174. source: "./media/characters/sykes/hand-right.svg"
  37175. }
  37176. },
  37177. leftFoot: {
  37178. height: math.unit(1.2, "feet"),
  37179. name: "Foot (Left)",
  37180. image: {
  37181. source: "./media/characters/sykes/foot-left.svg"
  37182. }
  37183. },
  37184. rightFoot: {
  37185. height: math.unit(1.2, "feet"),
  37186. name: "Foot (Right)",
  37187. image: {
  37188. source: "./media/characters/sykes/foot-right.svg"
  37189. }
  37190. },
  37191. maw: {
  37192. height: math.unit(1.93, "feet"),
  37193. name: "Maw",
  37194. image: {
  37195. source: "./media/characters/sykes/maw.svg"
  37196. }
  37197. },
  37198. teeth: {
  37199. height: math.unit(0.51, "feet"),
  37200. name: "Teeth",
  37201. image: {
  37202. source: "./media/characters/sykes/teeth.svg"
  37203. }
  37204. },
  37205. tongue: {
  37206. height: math.unit(2.13, "feet"),
  37207. name: "Tongue",
  37208. image: {
  37209. source: "./media/characters/sykes/tongue.svg"
  37210. }
  37211. },
  37212. uvula: {
  37213. height: math.unit(0.16, "feet"),
  37214. name: "Uvula",
  37215. image: {
  37216. source: "./media/characters/sykes/uvula.svg"
  37217. }
  37218. },
  37219. collar: {
  37220. height: math.unit(0.287, "feet"),
  37221. name: "Collar",
  37222. image: {
  37223. source: "./media/characters/sykes/collar.svg"
  37224. }
  37225. },
  37226. tail: {
  37227. height: math.unit(3.8, "feet"),
  37228. name: "Tail",
  37229. image: {
  37230. source: "./media/characters/sykes/tail.svg"
  37231. }
  37232. },
  37233. },
  37234. [
  37235. {
  37236. name: "Shrunken",
  37237. height: math.unit(5, "inches")
  37238. },
  37239. {
  37240. name: "Normal",
  37241. height: math.unit(6 + 4 / 12, "feet"),
  37242. default: true
  37243. },
  37244. {
  37245. name: "Big",
  37246. height: math.unit(15, "feet")
  37247. },
  37248. ]
  37249. ))
  37250. characterMakers.push(() => makeCharacter(
  37251. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  37252. {
  37253. front: {
  37254. height: math.unit(5 + 8/12, "feet"),
  37255. weight: math.unit(190, "lb"),
  37256. name: "Front",
  37257. image: {
  37258. source: "./media/characters/oven-otter/front.svg",
  37259. extra: 1809/1740,
  37260. bottom: 181/1990
  37261. }
  37262. },
  37263. back: {
  37264. height: math.unit(5 + 8/12, "feet"),
  37265. weight: math.unit(190, "lb"),
  37266. name: "Back",
  37267. image: {
  37268. source: "./media/characters/oven-otter/back.svg",
  37269. extra: 1709/1635,
  37270. bottom: 118/1827
  37271. }
  37272. },
  37273. hand: {
  37274. height: math.unit(1.07, "feet"),
  37275. name: "Hand",
  37276. image: {
  37277. source: "./media/characters/oven-otter/hand.svg"
  37278. }
  37279. },
  37280. beans: {
  37281. height: math.unit(1.74, "feet"),
  37282. name: "Beans",
  37283. image: {
  37284. source: "./media/characters/oven-otter/beans.svg"
  37285. }
  37286. },
  37287. },
  37288. [
  37289. {
  37290. name: "Micro",
  37291. height: math.unit(0.5, "inches")
  37292. },
  37293. {
  37294. name: "Normal",
  37295. height: math.unit(5 + 8/12, "feet"),
  37296. default: true
  37297. },
  37298. {
  37299. name: "Macro",
  37300. height: math.unit(250, "feet")
  37301. },
  37302. {
  37303. name: "Really High",
  37304. height: math.unit(420, "feet")
  37305. },
  37306. ]
  37307. ))
  37308. characterMakers.push(() => makeCharacter(
  37309. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  37310. {
  37311. front: {
  37312. height: math.unit(5, "meters"),
  37313. weight: math.unit(292000000000000, "kg"),
  37314. name: "Front",
  37315. image: {
  37316. source: "./media/characters/devourer/front.svg",
  37317. extra: 1800/1733,
  37318. bottom: 211/2011
  37319. }
  37320. },
  37321. maw: {
  37322. height: math.unit(1.1, "meter"),
  37323. name: "Maw",
  37324. image: {
  37325. source: "./media/characters/devourer/maw.svg"
  37326. }
  37327. },
  37328. },
  37329. [
  37330. {
  37331. name: "Small",
  37332. height: math.unit(3, "meters")
  37333. },
  37334. {
  37335. name: "Large",
  37336. height: math.unit(5, "meters"),
  37337. default: true
  37338. },
  37339. ]
  37340. ))
  37341. characterMakers.push(() => makeCharacter(
  37342. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  37343. {
  37344. front: {
  37345. height: math.unit(6, "feet"),
  37346. weight: math.unit(400, "lb"),
  37347. name: "Front",
  37348. image: {
  37349. source: "./media/characters/ellarby/front.svg",
  37350. extra: 1909/1763,
  37351. bottom: 80/1989
  37352. }
  37353. },
  37354. back: {
  37355. height: math.unit(6, "feet"),
  37356. weight: math.unit(400, "lb"),
  37357. name: "Back",
  37358. image: {
  37359. source: "./media/characters/ellarby/back.svg",
  37360. extra: 1914/1784,
  37361. bottom: 172/2086
  37362. }
  37363. },
  37364. },
  37365. [
  37366. {
  37367. name: "Mischief",
  37368. height: math.unit(18, "inches")
  37369. },
  37370. {
  37371. name: "Trouble",
  37372. height: math.unit(12, "feet")
  37373. },
  37374. {
  37375. name: "Havoc",
  37376. height: math.unit(200, "feet"),
  37377. default: true
  37378. },
  37379. {
  37380. name: "Pandemonium",
  37381. height: math.unit(1, "mile")
  37382. },
  37383. {
  37384. name: "Catastrophe",
  37385. height: math.unit(100, "miles")
  37386. },
  37387. ]
  37388. ))
  37389. characterMakers.push(() => makeCharacter(
  37390. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  37391. {
  37392. front: {
  37393. height: math.unit(4.7, "meters"),
  37394. weight: math.unit(6500, "kg"),
  37395. name: "Front",
  37396. image: {
  37397. source: "./media/characters/vex/front.svg",
  37398. extra: 1288/1140,
  37399. bottom: 100/1388
  37400. }
  37401. },
  37402. },
  37403. [
  37404. {
  37405. name: "Normal",
  37406. height: math.unit(4.7, "meters"),
  37407. default: true
  37408. },
  37409. ]
  37410. ))
  37411. characterMakers.push(() => makeCharacter(
  37412. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  37413. {
  37414. normal: {
  37415. height: math.unit(6, "feet"),
  37416. weight: math.unit(350, "lb"),
  37417. name: "Normal",
  37418. image: {
  37419. source: "./media/characters/teshy/normal.svg",
  37420. extra: 1795/1735,
  37421. bottom: 16/1811
  37422. }
  37423. },
  37424. monsterFront: {
  37425. height: math.unit(12, "feet"),
  37426. weight: math.unit(4700, "lb"),
  37427. name: "Monster (Front)",
  37428. image: {
  37429. source: "./media/characters/teshy/monster-front.svg",
  37430. extra: 2042/2034,
  37431. bottom: 128/2170
  37432. }
  37433. },
  37434. monsterSide: {
  37435. height: math.unit(12, "feet"),
  37436. weight: math.unit(4700, "lb"),
  37437. name: "Monster (Side)",
  37438. image: {
  37439. source: "./media/characters/teshy/monster-side.svg",
  37440. extra: 2067/2056,
  37441. bottom: 70/2137
  37442. }
  37443. },
  37444. monsterBack: {
  37445. height: math.unit(12, "feet"),
  37446. weight: math.unit(4700, "lb"),
  37447. name: "Monster (Back)",
  37448. image: {
  37449. source: "./media/characters/teshy/monster-back.svg",
  37450. extra: 1921/1914,
  37451. bottom: 171/2092
  37452. }
  37453. },
  37454. },
  37455. [
  37456. {
  37457. name: "Normal",
  37458. height: math.unit(6, "feet"),
  37459. default: true
  37460. },
  37461. ]
  37462. ))
  37463. characterMakers.push(() => makeCharacter(
  37464. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  37465. {
  37466. front: {
  37467. height: math.unit(6, "feet"),
  37468. name: "Front",
  37469. image: {
  37470. source: "./media/characters/ramey/front.svg",
  37471. extra: 790/787,
  37472. bottom: 27/817
  37473. }
  37474. },
  37475. },
  37476. [
  37477. {
  37478. name: "Normal",
  37479. height: math.unit(6, "feet"),
  37480. default: true
  37481. },
  37482. ]
  37483. ))
  37484. characterMakers.push(() => makeCharacter(
  37485. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  37486. {
  37487. front: {
  37488. height: math.unit(5 + 5/12, "feet"),
  37489. weight: math.unit(120, "lb"),
  37490. name: "Front",
  37491. image: {
  37492. source: "./media/characters/phirae/front.svg",
  37493. extra: 2491/2436,
  37494. bottom: 38/2529
  37495. }
  37496. },
  37497. },
  37498. [
  37499. {
  37500. name: "Normal",
  37501. height: math.unit(5 + 5/12, "feet"),
  37502. default: true
  37503. },
  37504. ]
  37505. ))
  37506. characterMakers.push(() => makeCharacter(
  37507. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  37508. {
  37509. front: {
  37510. height: math.unit(5 + 3/12, "feet"),
  37511. name: "Front",
  37512. image: {
  37513. source: "./media/characters/stagglas/front.svg",
  37514. extra: 962/882,
  37515. bottom: 53/1015
  37516. }
  37517. },
  37518. feral: {
  37519. height: math.unit(335, "cm"),
  37520. name: "Feral",
  37521. image: {
  37522. source: "./media/characters/stagglas/feral.svg",
  37523. extra: 1732/1090,
  37524. bottom: 48/1780
  37525. }
  37526. },
  37527. },
  37528. [
  37529. {
  37530. name: "Normal",
  37531. height: math.unit(5 + 3/12, "feet"),
  37532. default: true
  37533. },
  37534. ]
  37535. ))
  37536. characterMakers.push(() => makeCharacter(
  37537. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  37538. {
  37539. front: {
  37540. height: math.unit(5 + 4/12, "feet"),
  37541. weight: math.unit(145, "lb"),
  37542. name: "Front",
  37543. image: {
  37544. source: "./media/characters/starra/front.svg",
  37545. extra: 1790/1691,
  37546. bottom: 91/1881
  37547. }
  37548. },
  37549. },
  37550. [
  37551. {
  37552. name: "Normal",
  37553. height: math.unit(5 + 4/12, "feet"),
  37554. default: true
  37555. },
  37556. ]
  37557. ))
  37558. characterMakers.push(() => makeCharacter(
  37559. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  37560. {
  37561. front: {
  37562. height: math.unit(3.5, "meters"),
  37563. name: "Front",
  37564. image: {
  37565. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  37566. extra: 1248/972,
  37567. bottom: 38/1286
  37568. }
  37569. },
  37570. },
  37571. [
  37572. {
  37573. name: "Normal",
  37574. height: math.unit(3.5, "meters"),
  37575. default: true
  37576. },
  37577. ]
  37578. ))
  37579. characterMakers.push(() => makeCharacter(
  37580. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  37581. {
  37582. side: {
  37583. height: math.unit(8 + 2/12, "feet"),
  37584. weight: math.unit(1240, "lb"),
  37585. name: "Side",
  37586. image: {
  37587. source: "./media/characters/mika-valentine/side.svg",
  37588. extra: 2670/2501,
  37589. bottom: 250/2920
  37590. }
  37591. },
  37592. },
  37593. [
  37594. {
  37595. name: "Normal",
  37596. height: math.unit(8 + 2/12, "feet"),
  37597. default: true
  37598. },
  37599. ]
  37600. ))
  37601. characterMakers.push(() => makeCharacter(
  37602. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  37603. {
  37604. front: {
  37605. height: math.unit(7 + 2/12, "feet"),
  37606. name: "Front",
  37607. image: {
  37608. source: "./media/characters/xoltol/front.svg",
  37609. extra: 2212/2124,
  37610. bottom: 84/2296
  37611. }
  37612. },
  37613. side: {
  37614. height: math.unit(7 + 2/12, "feet"),
  37615. name: "Side",
  37616. image: {
  37617. source: "./media/characters/xoltol/side.svg",
  37618. extra: 2273/2197,
  37619. bottom: 26/2299
  37620. }
  37621. },
  37622. hand: {
  37623. height: math.unit(2.5, "feet"),
  37624. name: "Hand",
  37625. image: {
  37626. source: "./media/characters/xoltol/hand.svg"
  37627. }
  37628. },
  37629. },
  37630. [
  37631. {
  37632. name: "Small-ish",
  37633. height: math.unit(5 + 11/12, "feet")
  37634. },
  37635. {
  37636. name: "Normal",
  37637. height: math.unit(7 + 2/12, "feet")
  37638. },
  37639. {
  37640. name: "\"Macro\"",
  37641. height: math.unit(14 + 9/12, "feet"),
  37642. default: true
  37643. },
  37644. {
  37645. name: "Alternate Height",
  37646. height: math.unit(20, "feet")
  37647. },
  37648. {
  37649. name: "Actually Macro",
  37650. height: math.unit(100, "feet")
  37651. },
  37652. ]
  37653. ))
  37654. characterMakers.push(() => makeCharacter(
  37655. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  37656. {
  37657. front: {
  37658. height: math.unit(5 + 2/12, "feet"),
  37659. weight: math.unit(75, "kg"),
  37660. name: "Front",
  37661. image: {
  37662. source: "./media/characters/kotetsu-redwood/front.svg",
  37663. extra: 1053/942,
  37664. bottom: 60/1113
  37665. }
  37666. },
  37667. },
  37668. [
  37669. {
  37670. name: "Normal",
  37671. height: math.unit(5 + 2/12, "feet"),
  37672. default: true
  37673. },
  37674. ]
  37675. ))
  37676. characterMakers.push(() => makeCharacter(
  37677. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  37678. {
  37679. front: {
  37680. height: math.unit(2.4, "meters"),
  37681. weight: math.unit(125, "kg"),
  37682. name: "Front",
  37683. image: {
  37684. source: "./media/characters/lilith/front.svg",
  37685. extra: 1590/1513,
  37686. bottom: 203/1793
  37687. }
  37688. },
  37689. },
  37690. [
  37691. {
  37692. name: "Humanoid",
  37693. height: math.unit(2.4, "meters")
  37694. },
  37695. {
  37696. name: "Normal",
  37697. height: math.unit(6, "meters"),
  37698. default: true
  37699. },
  37700. {
  37701. name: "Largest",
  37702. height: math.unit(55, "meters")
  37703. },
  37704. ]
  37705. ))
  37706. characterMakers.push(() => makeCharacter(
  37707. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  37708. {
  37709. front: {
  37710. height: math.unit(8 + 4/12, "feet"),
  37711. weight: math.unit(535, "lb"),
  37712. name: "Front",
  37713. image: {
  37714. source: "./media/characters/beh'kah-bolger/front.svg",
  37715. extra: 1660/1603,
  37716. bottom: 37/1697
  37717. }
  37718. },
  37719. },
  37720. [
  37721. {
  37722. name: "Normal",
  37723. height: math.unit(8 + 4/12, "feet"),
  37724. default: true
  37725. },
  37726. {
  37727. name: "Kaiju",
  37728. height: math.unit(250, "feet")
  37729. },
  37730. {
  37731. name: "Still Growing",
  37732. height: math.unit(10, "miles")
  37733. },
  37734. {
  37735. name: "Continental",
  37736. height: math.unit(5000, "miles")
  37737. },
  37738. {
  37739. name: "Final Form",
  37740. height: math.unit(2500000, "miles")
  37741. },
  37742. ]
  37743. ))
  37744. characterMakers.push(() => makeCharacter(
  37745. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  37746. {
  37747. front: {
  37748. height: math.unit(7 + 2/12, "feet"),
  37749. weight: math.unit(230, "kg"),
  37750. name: "Front",
  37751. image: {
  37752. source: "./media/characters/tatyana-milewska/front.svg",
  37753. extra: 1199/1150,
  37754. bottom: 86/1285
  37755. }
  37756. },
  37757. },
  37758. [
  37759. {
  37760. name: "Normal",
  37761. height: math.unit(7 + 2/12, "feet"),
  37762. default: true
  37763. },
  37764. {
  37765. name: "Big",
  37766. height: math.unit(12, "feet")
  37767. },
  37768. {
  37769. name: "Minimacro",
  37770. height: math.unit(20, "feet")
  37771. },
  37772. {
  37773. name: "Macro",
  37774. height: math.unit(120, "feet")
  37775. },
  37776. ]
  37777. ))
  37778. characterMakers.push(() => makeCharacter(
  37779. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  37780. {
  37781. front: {
  37782. height: math.unit(7 + 8/12, "feet"),
  37783. weight: math.unit(152, "kg"),
  37784. name: "Front",
  37785. image: {
  37786. source: "./media/characters/helen-arri/front.svg",
  37787. extra: 440/423,
  37788. bottom: 14/454
  37789. }
  37790. },
  37791. back: {
  37792. height: math.unit(7 + 8/12, "feet"),
  37793. weight: math.unit(152, "kg"),
  37794. name: "Back",
  37795. image: {
  37796. source: "./media/characters/helen-arri/back.svg",
  37797. extra: 443/426,
  37798. bottom: 8/451
  37799. }
  37800. },
  37801. },
  37802. [
  37803. {
  37804. name: "Normal",
  37805. height: math.unit(7 + 8/12, "feet"),
  37806. default: true
  37807. },
  37808. {
  37809. name: "Big",
  37810. height: math.unit(14, "feet")
  37811. },
  37812. {
  37813. name: "Minimacro",
  37814. height: math.unit(24, "feet")
  37815. },
  37816. {
  37817. name: "Macro",
  37818. height: math.unit(140, "feet")
  37819. },
  37820. ]
  37821. ))
  37822. characterMakers.push(() => makeCharacter(
  37823. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  37824. {
  37825. front: {
  37826. height: math.unit(6, "meters"),
  37827. name: "Front",
  37828. image: {
  37829. source: "./media/characters/ehanu-rehu/front.svg",
  37830. extra: 1800/1800,
  37831. bottom: 59/1859
  37832. }
  37833. },
  37834. },
  37835. [
  37836. {
  37837. name: "Normal",
  37838. height: math.unit(6, "meters"),
  37839. default: true
  37840. },
  37841. ]
  37842. ))
  37843. characterMakers.push(() => makeCharacter(
  37844. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  37845. {
  37846. front: {
  37847. height: math.unit(7 + 3/12, "feet"),
  37848. name: "Front",
  37849. image: {
  37850. source: "./media/characters/renholder/front.svg",
  37851. extra: 3096/2960,
  37852. bottom: 250/3346
  37853. }
  37854. },
  37855. },
  37856. [
  37857. {
  37858. name: "Normal Bat",
  37859. height: math.unit(7 + 3/12, "feet"),
  37860. default: true
  37861. },
  37862. {
  37863. name: "Slightly Tall Bat",
  37864. height: math.unit(100, "feet")
  37865. },
  37866. {
  37867. name: "Big Bat",
  37868. height: math.unit(1000, "feet")
  37869. },
  37870. {
  37871. name: "City-Sized Bat",
  37872. height: math.unit(200000, "feet")
  37873. },
  37874. {
  37875. name: "Bigger Bat",
  37876. height: math.unit(10000, "miles")
  37877. },
  37878. {
  37879. name: "Solar Sized Bat",
  37880. height: math.unit(100, "AU")
  37881. },
  37882. {
  37883. name: "Galactic Bat",
  37884. height: math.unit(200000, "lightyears")
  37885. },
  37886. {
  37887. name: "Universally Known Bat",
  37888. height: math.unit(1, "universe")
  37889. },
  37890. ]
  37891. ))
  37892. characterMakers.push(() => makeCharacter(
  37893. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  37894. {
  37895. front: {
  37896. height: math.unit(6 + 11/12, "feet"),
  37897. weight: math.unit(250, "lb"),
  37898. name: "Front",
  37899. image: {
  37900. source: "./media/characters/cookiecat/front.svg",
  37901. extra: 893/827,
  37902. bottom: 14/907
  37903. }
  37904. },
  37905. },
  37906. [
  37907. {
  37908. name: "Micro",
  37909. height: math.unit(3, "inches")
  37910. },
  37911. {
  37912. name: "Normal",
  37913. height: math.unit(6 + 11/12, "feet"),
  37914. default: true
  37915. },
  37916. {
  37917. name: "Macro",
  37918. height: math.unit(100, "feet")
  37919. },
  37920. {
  37921. name: "Macro+",
  37922. height: math.unit(404, "feet")
  37923. },
  37924. {
  37925. name: "Megamacro",
  37926. height: math.unit(165, "miles")
  37927. },
  37928. {
  37929. name: "Planetary",
  37930. height: math.unit(4600, "miles")
  37931. },
  37932. ]
  37933. ))
  37934. characterMakers.push(() => makeCharacter(
  37935. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  37936. {
  37937. front: {
  37938. height: math.unit(10 + 3/12, "feet"),
  37939. weight: math.unit(1500, "lb"),
  37940. name: "Front",
  37941. image: {
  37942. source: "./media/characters/tux-kusanagi/front.svg",
  37943. extra: 944/840,
  37944. bottom: 39/983
  37945. }
  37946. },
  37947. back: {
  37948. height: math.unit(10 + 3/12, "feet"),
  37949. weight: math.unit(1500, "lb"),
  37950. name: "Back",
  37951. image: {
  37952. source: "./media/characters/tux-kusanagi/back.svg",
  37953. extra: 941/842,
  37954. bottom: 28/969
  37955. }
  37956. },
  37957. rump: {
  37958. height: math.unit(5.25, "feet"),
  37959. name: "Rump",
  37960. image: {
  37961. source: "./media/characters/tux-kusanagi/rump.svg"
  37962. }
  37963. },
  37964. beak: {
  37965. height: math.unit(1.54, "feet"),
  37966. name: "Beak",
  37967. image: {
  37968. source: "./media/characters/tux-kusanagi/beak.svg"
  37969. }
  37970. },
  37971. },
  37972. [
  37973. {
  37974. name: "Normal",
  37975. height: math.unit(10 + 3/12, "feet"),
  37976. default: true
  37977. },
  37978. ]
  37979. ))
  37980. characterMakers.push(() => makeCharacter(
  37981. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37982. {
  37983. front: {
  37984. height: math.unit(58, "feet"),
  37985. weight: math.unit(200, "tons"),
  37986. name: "Front",
  37987. image: {
  37988. source: "./media/characters/uzarmazari/front.svg",
  37989. extra: 1575/1455,
  37990. bottom: 152/1727
  37991. }
  37992. },
  37993. back: {
  37994. height: math.unit(58, "feet"),
  37995. weight: math.unit(200, "tons"),
  37996. name: "Back",
  37997. image: {
  37998. source: "./media/characters/uzarmazari/back.svg",
  37999. extra: 1585/1510,
  38000. bottom: 157/1742
  38001. }
  38002. },
  38003. head: {
  38004. height: math.unit(26, "feet"),
  38005. name: "Head",
  38006. image: {
  38007. source: "./media/characters/uzarmazari/head.svg"
  38008. }
  38009. },
  38010. },
  38011. [
  38012. {
  38013. name: "Normal",
  38014. height: math.unit(58, "feet"),
  38015. default: true
  38016. },
  38017. ]
  38018. ))
  38019. characterMakers.push(() => makeCharacter(
  38020. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  38021. {
  38022. side: {
  38023. height: math.unit(15, "feet"),
  38024. name: "Side",
  38025. image: {
  38026. source: "./media/characters/akitu/side.svg",
  38027. extra: 1421/1321,
  38028. bottom: 157/1578
  38029. }
  38030. },
  38031. front: {
  38032. height: math.unit(15, "feet"),
  38033. name: "Front",
  38034. image: {
  38035. source: "./media/characters/akitu/front.svg",
  38036. extra: 1435/1326,
  38037. bottom: 232/1667
  38038. }
  38039. },
  38040. },
  38041. [
  38042. {
  38043. name: "Normal",
  38044. height: math.unit(15, "feet"),
  38045. default: true
  38046. },
  38047. ]
  38048. ))
  38049. characterMakers.push(() => makeCharacter(
  38050. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  38051. {
  38052. front: {
  38053. height: math.unit(10 + 8/12, "feet"),
  38054. name: "Front",
  38055. image: {
  38056. source: "./media/characters/azalie-croixland/front.svg",
  38057. extra: 1972/1856,
  38058. bottom: 31/2003
  38059. }
  38060. },
  38061. },
  38062. [
  38063. {
  38064. name: "Original Height",
  38065. height: math.unit(5 + 4/12, "feet")
  38066. },
  38067. {
  38068. name: "Normal Height",
  38069. height: math.unit(10 + 8/12, "feet"),
  38070. default: true
  38071. },
  38072. ]
  38073. ))
  38074. characterMakers.push(() => makeCharacter(
  38075. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  38076. {
  38077. side: {
  38078. height: math.unit(7 + 1/12, "feet"),
  38079. weight: math.unit(245, "lb"),
  38080. name: "Side",
  38081. image: {
  38082. source: "./media/characters/kavus-kazian/side.svg",
  38083. extra: 349/342,
  38084. bottom: 15/364
  38085. }
  38086. },
  38087. },
  38088. [
  38089. {
  38090. name: "Normal",
  38091. height: math.unit(7 + 1/12, "feet"),
  38092. default: true
  38093. },
  38094. ]
  38095. ))
  38096. characterMakers.push(() => makeCharacter(
  38097. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  38098. {
  38099. normalFront: {
  38100. height: math.unit(5 + 11/12, "feet"),
  38101. name: "Front",
  38102. image: {
  38103. source: "./media/characters/moonlight-rose/normal-front.svg",
  38104. extra: 1980/1825,
  38105. bottom: 18/1998
  38106. },
  38107. form: "normal",
  38108. default: true
  38109. },
  38110. normalBack: {
  38111. height: math.unit(5 + 11/12, "feet"),
  38112. name: "Back",
  38113. image: {
  38114. source: "./media/characters/moonlight-rose/normal-back.svg",
  38115. extra: 2010/1839,
  38116. bottom: 10/2020
  38117. },
  38118. form: "normal"
  38119. },
  38120. demonFront: {
  38121. height: math.unit(1.5, "earths"),
  38122. name: "Front",
  38123. image: {
  38124. source: "./media/characters/moonlight-rose/demon.svg",
  38125. extra: 1400/1294,
  38126. bottom: 45/1445
  38127. },
  38128. form: "demon",
  38129. default: true
  38130. },
  38131. terraFront: {
  38132. height: math.unit(1.5, "earths"),
  38133. name: "Front",
  38134. image: {
  38135. source: "./media/characters/moonlight-rose/terra.svg"
  38136. },
  38137. form: "terra",
  38138. default: true
  38139. },
  38140. jupiterFront: {
  38141. height: math.unit(69911*2, "km"),
  38142. name: "Front",
  38143. image: {
  38144. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  38145. extra: 1367/1286,
  38146. bottom: 55/1422
  38147. },
  38148. form: "jupiter",
  38149. default: true
  38150. },
  38151. neptuneFront: {
  38152. height: math.unit(24622*2, "feet"),
  38153. name: "Front",
  38154. image: {
  38155. source: "./media/characters/moonlight-rose/neptune-front.svg",
  38156. extra: 1851/1712,
  38157. bottom: 0/1851
  38158. },
  38159. form: "neptune",
  38160. default: true
  38161. },
  38162. },
  38163. [
  38164. {
  38165. name: "\"Natural\" Height",
  38166. height: math.unit(5 + 11/12, "feet"),
  38167. form: "normal"
  38168. },
  38169. {
  38170. name: "Smallest comfortable size",
  38171. height: math.unit(40, "meters"),
  38172. form: "normal"
  38173. },
  38174. {
  38175. name: "Common size",
  38176. height: math.unit(50, "km"),
  38177. form: "normal",
  38178. default: true
  38179. },
  38180. {
  38181. name: "Normal",
  38182. height: math.unit(1.5, "earths"),
  38183. form: "demon",
  38184. default: true
  38185. },
  38186. {
  38187. name: "Universal",
  38188. height: math.unit(15, "universes"),
  38189. form: "demon"
  38190. },
  38191. {
  38192. name: "Earth",
  38193. height: math.unit(1.5, "earths"),
  38194. form: "terra",
  38195. default: true
  38196. },
  38197. {
  38198. name: "Super Earth",
  38199. height: math.unit(67.5, "earths"),
  38200. form: "terra"
  38201. },
  38202. {
  38203. name: "Doesn't fit in a solar system...",
  38204. height: math.unit(1, "galaxy"),
  38205. form: "terra"
  38206. },
  38207. {
  38208. name: "Saturn",
  38209. height: math.unit(58232*2, "km"),
  38210. form: "jupiter"
  38211. },
  38212. {
  38213. name: "Jupiter",
  38214. height: math.unit(69911*2, "km"),
  38215. form: "jupiter",
  38216. default: true
  38217. },
  38218. {
  38219. name: "HD 100546 b",
  38220. height: math.unit(482938, "km"),
  38221. form: "jupiter"
  38222. },
  38223. {
  38224. name: "Enceladus",
  38225. height: math.unit(513*2, "km"),
  38226. form: "neptune"
  38227. },
  38228. {
  38229. name: "Europe",
  38230. height: math.unit(1560*2, "km"),
  38231. form: "neptune"
  38232. },
  38233. {
  38234. name: "Neptune",
  38235. height: math.unit(24622*2, "km"),
  38236. form: "neptune",
  38237. default: true
  38238. },
  38239. {
  38240. name: "CoRoT-9b",
  38241. height: math.unit(75067*2, "km"),
  38242. form: "neptune"
  38243. },
  38244. ],
  38245. {
  38246. "normal": {
  38247. name: "Normal",
  38248. default: true
  38249. },
  38250. "demon": {
  38251. name: "Demon"
  38252. },
  38253. "terra": {
  38254. name: "Terra"
  38255. },
  38256. "jupiter": {
  38257. name: "Jupiter"
  38258. },
  38259. "neptune": {
  38260. name: "Neptune"
  38261. }
  38262. }
  38263. ))
  38264. characterMakers.push(() => makeCharacter(
  38265. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  38266. {
  38267. front: {
  38268. height: math.unit(16, "feet"),
  38269. weight: math.unit(610, "kg"),
  38270. name: "Front",
  38271. image: {
  38272. source: "./media/characters/huckle/front.svg",
  38273. extra: 1731/1625,
  38274. bottom: 33/1764
  38275. }
  38276. },
  38277. back: {
  38278. height: math.unit(16, "feet"),
  38279. weight: math.unit(610, "kg"),
  38280. name: "Back",
  38281. image: {
  38282. source: "./media/characters/huckle/back.svg",
  38283. extra: 1738/1651,
  38284. bottom: 37/1775
  38285. }
  38286. },
  38287. laughing: {
  38288. height: math.unit(3.75, "feet"),
  38289. name: "Laughing",
  38290. image: {
  38291. source: "./media/characters/huckle/laughing.svg"
  38292. }
  38293. },
  38294. angry: {
  38295. height: math.unit(4.15, "feet"),
  38296. name: "Angry",
  38297. image: {
  38298. source: "./media/characters/huckle/angry.svg"
  38299. }
  38300. },
  38301. },
  38302. [
  38303. {
  38304. name: "Normal",
  38305. height: math.unit(16, "feet"),
  38306. default: true
  38307. },
  38308. {
  38309. name: "Mini Macro",
  38310. height: math.unit(463, "feet")
  38311. },
  38312. {
  38313. name: "Macro",
  38314. height: math.unit(1680, "meters")
  38315. },
  38316. {
  38317. name: "Mega Macro",
  38318. height: math.unit(175, "km")
  38319. },
  38320. {
  38321. name: "Terra Macro",
  38322. height: math.unit(32, "gigameters")
  38323. },
  38324. {
  38325. name: "Multiverse+",
  38326. height: math.unit(2.56e23, "yottameters")
  38327. },
  38328. ]
  38329. ))
  38330. characterMakers.push(() => makeCharacter(
  38331. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  38332. {
  38333. front: {
  38334. height: math.unit(6 + 9/12, "feet"),
  38335. weight: math.unit(280, "lb"),
  38336. name: "Front",
  38337. image: {
  38338. source: "./media/characters/candy/front.svg",
  38339. extra: 234/217,
  38340. bottom: 11/245
  38341. }
  38342. },
  38343. },
  38344. [
  38345. {
  38346. name: "Really Small",
  38347. height: math.unit(0.1, "nm")
  38348. },
  38349. {
  38350. name: "Micro",
  38351. height: math.unit(2, "inches")
  38352. },
  38353. {
  38354. name: "Normal",
  38355. height: math.unit(6 + 9/12, "feet"),
  38356. default: true
  38357. },
  38358. {
  38359. name: "Small Macro",
  38360. height: math.unit(69, "feet")
  38361. },
  38362. {
  38363. name: "Macro",
  38364. height: math.unit(160, "feet")
  38365. },
  38366. {
  38367. name: "Megamacro",
  38368. height: math.unit(22000, "miles")
  38369. },
  38370. {
  38371. name: "Gigamacro",
  38372. height: math.unit(50000, "miles")
  38373. },
  38374. ]
  38375. ))
  38376. characterMakers.push(() => makeCharacter(
  38377. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  38378. {
  38379. front: {
  38380. height: math.unit(4, "feet"),
  38381. weight: math.unit(90, "lb"),
  38382. name: "Front",
  38383. image: {
  38384. source: "./media/characters/joey-mcdonald/front.svg",
  38385. extra: 1059/852,
  38386. bottom: 33/1092
  38387. }
  38388. },
  38389. back: {
  38390. height: math.unit(4, "feet"),
  38391. weight: math.unit(90, "lb"),
  38392. name: "Back",
  38393. image: {
  38394. source: "./media/characters/joey-mcdonald/back.svg",
  38395. extra: 1077/879,
  38396. bottom: 5/1082
  38397. }
  38398. },
  38399. frontKobold: {
  38400. height: math.unit(4, "feet"),
  38401. weight: math.unit(100, "lb"),
  38402. name: "Front-kobold",
  38403. image: {
  38404. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  38405. extra: 1480/1367,
  38406. bottom: 0/1480
  38407. }
  38408. },
  38409. backKobold: {
  38410. height: math.unit(4, "feet"),
  38411. weight: math.unit(100, "lb"),
  38412. name: "Back-kobold",
  38413. image: {
  38414. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  38415. extra: 1449/1361,
  38416. bottom: 0/1449
  38417. }
  38418. },
  38419. },
  38420. [
  38421. {
  38422. name: "Normal",
  38423. height: math.unit(4, "feet"),
  38424. default: true
  38425. },
  38426. ]
  38427. ))
  38428. characterMakers.push(() => makeCharacter(
  38429. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  38430. {
  38431. front: {
  38432. height: math.unit(12 + 6/12, "feet"),
  38433. name: "Front",
  38434. image: {
  38435. source: "./media/characters/kass-lockheed/front.svg",
  38436. extra: 354/343,
  38437. bottom: 9/363
  38438. }
  38439. },
  38440. back: {
  38441. height: math.unit(12 + 6/12, "feet"),
  38442. name: "Back",
  38443. image: {
  38444. source: "./media/characters/kass-lockheed/back.svg",
  38445. extra: 364/352,
  38446. bottom: 3/367
  38447. }
  38448. },
  38449. dick: {
  38450. height: math.unit(3.12, "feet"),
  38451. name: "Dick",
  38452. image: {
  38453. source: "./media/characters/kass-lockheed/dick.svg"
  38454. }
  38455. },
  38456. head: {
  38457. height: math.unit(2.6, "feet"),
  38458. name: "Head",
  38459. image: {
  38460. source: "./media/characters/kass-lockheed/head.svg"
  38461. }
  38462. },
  38463. bleh: {
  38464. height: math.unit(2.85, "feet"),
  38465. name: "Bleh",
  38466. image: {
  38467. source: "./media/characters/kass-lockheed/bleh.svg"
  38468. }
  38469. },
  38470. smug: {
  38471. height: math.unit(2.85, "feet"),
  38472. name: "Smug",
  38473. image: {
  38474. source: "./media/characters/kass-lockheed/smug.svg"
  38475. }
  38476. },
  38477. },
  38478. [
  38479. {
  38480. name: "Normal",
  38481. height: math.unit(12 + 6/12, "feet"),
  38482. default: true
  38483. },
  38484. ]
  38485. ))
  38486. characterMakers.push(() => makeCharacter(
  38487. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  38488. {
  38489. front: {
  38490. height: math.unit(6 + 2/12, "feet"),
  38491. name: "Front",
  38492. image: {
  38493. source: "./media/characters/taylor/front.svg",
  38494. extra: 639/495,
  38495. bottom: 12/651
  38496. }
  38497. },
  38498. },
  38499. [
  38500. {
  38501. name: "Normal",
  38502. height: math.unit(6 + 2/12, "feet"),
  38503. default: true
  38504. },
  38505. {
  38506. name: "Big",
  38507. height: math.unit(15, "feet")
  38508. },
  38509. {
  38510. name: "Lorg",
  38511. height: math.unit(80, "feet")
  38512. },
  38513. {
  38514. name: "Too Lorg",
  38515. height: math.unit(120, "feet")
  38516. },
  38517. ]
  38518. ))
  38519. characterMakers.push(() => makeCharacter(
  38520. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  38521. {
  38522. front: {
  38523. height: math.unit(15, "feet"),
  38524. name: "Front",
  38525. image: {
  38526. source: "./media/characters/kaizer/front.svg",
  38527. extra: 1612/1436,
  38528. bottom: 43/1655
  38529. }
  38530. },
  38531. },
  38532. [
  38533. {
  38534. name: "Normal",
  38535. height: math.unit(15, "feet"),
  38536. default: true
  38537. },
  38538. ]
  38539. ))
  38540. characterMakers.push(() => makeCharacter(
  38541. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  38542. {
  38543. front: {
  38544. height: math.unit(2, "feet"),
  38545. weight: math.unit(30, "lb"),
  38546. name: "Front",
  38547. image: {
  38548. source: "./media/characters/sandy/front.svg",
  38549. extra: 1439/1307,
  38550. bottom: 194/1633
  38551. }
  38552. },
  38553. },
  38554. [
  38555. {
  38556. name: "Normal",
  38557. height: math.unit(2, "feet"),
  38558. default: true
  38559. },
  38560. ]
  38561. ))
  38562. characterMakers.push(() => makeCharacter(
  38563. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  38564. {
  38565. front: {
  38566. height: math.unit(3, "feet"),
  38567. name: "Front",
  38568. image: {
  38569. source: "./media/characters/mellvi/front.svg",
  38570. extra: 1831/1630,
  38571. bottom: 58/1889
  38572. }
  38573. },
  38574. },
  38575. [
  38576. {
  38577. name: "Normal",
  38578. height: math.unit(3, "feet"),
  38579. default: true
  38580. },
  38581. ]
  38582. ))
  38583. characterMakers.push(() => makeCharacter(
  38584. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  38585. {
  38586. front: {
  38587. height: math.unit(5 + 11/12, "feet"),
  38588. weight: math.unit(200, "lb"),
  38589. name: "Front",
  38590. image: {
  38591. source: "./media/characters/shirou/front.svg",
  38592. extra: 2491/2383,
  38593. bottom: 189/2680
  38594. }
  38595. },
  38596. back: {
  38597. height: math.unit(5 + 11/12, "feet"),
  38598. weight: math.unit(200, "lb"),
  38599. name: "Back",
  38600. image: {
  38601. source: "./media/characters/shirou/back.svg",
  38602. extra: 2554/2450,
  38603. bottom: 76/2630
  38604. }
  38605. },
  38606. },
  38607. [
  38608. {
  38609. name: "Normal",
  38610. height: math.unit(5 + 11/12, "feet"),
  38611. default: true
  38612. },
  38613. ]
  38614. ))
  38615. characterMakers.push(() => makeCharacter(
  38616. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  38617. {
  38618. front: {
  38619. height: math.unit(6 + 3/12, "feet"),
  38620. weight: math.unit(177, "lb"),
  38621. name: "Front",
  38622. image: {
  38623. source: "./media/characters/noryu/front.svg",
  38624. extra: 973/885,
  38625. bottom: 10/983
  38626. }
  38627. },
  38628. },
  38629. [
  38630. {
  38631. name: "Normal",
  38632. height: math.unit(6 + 3/12, "feet"),
  38633. default: true
  38634. },
  38635. ]
  38636. ))
  38637. characterMakers.push(() => makeCharacter(
  38638. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  38639. {
  38640. front: {
  38641. height: math.unit(5 + 6/12, "feet"),
  38642. weight: math.unit(170, "lb"),
  38643. name: "Front",
  38644. image: {
  38645. source: "./media/characters/mevolas-rubenido/front.svg",
  38646. extra: 2109/1901,
  38647. bottom: 96/2205
  38648. }
  38649. },
  38650. },
  38651. [
  38652. {
  38653. name: "Normal",
  38654. height: math.unit(5 + 6/12, "feet"),
  38655. default: true
  38656. },
  38657. ]
  38658. ))
  38659. characterMakers.push(() => makeCharacter(
  38660. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  38661. {
  38662. front: {
  38663. height: math.unit(100, "feet"),
  38664. name: "Front",
  38665. image: {
  38666. source: "./media/characters/dee/front.svg",
  38667. extra: 2153/2036,
  38668. bottom: 59/2212
  38669. }
  38670. },
  38671. back: {
  38672. height: math.unit(100, "feet"),
  38673. name: "Back",
  38674. image: {
  38675. source: "./media/characters/dee/back.svg",
  38676. extra: 2183/2058,
  38677. bottom: 75/2258
  38678. }
  38679. },
  38680. foot: {
  38681. height: math.unit(19.43, "feet"),
  38682. name: "Foot",
  38683. image: {
  38684. source: "./media/characters/dee/foot.svg"
  38685. }
  38686. },
  38687. hoof: {
  38688. height: math.unit(20.6, "feet"),
  38689. name: "Hoof",
  38690. image: {
  38691. source: "./media/characters/dee/hoof.svg"
  38692. }
  38693. },
  38694. },
  38695. [
  38696. {
  38697. name: "Macro",
  38698. height: math.unit(100, "feet"),
  38699. default: true
  38700. },
  38701. ]
  38702. ))
  38703. characterMakers.push(() => makeCharacter(
  38704. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  38705. {
  38706. front: {
  38707. height: math.unit(5 + 6/12, "feet"),
  38708. name: "Front",
  38709. image: {
  38710. source: "./media/characters/teh/front.svg",
  38711. extra: 1002/847,
  38712. bottom: 62/1064
  38713. }
  38714. },
  38715. },
  38716. [
  38717. {
  38718. name: "Normal",
  38719. height: math.unit(5 + 6/12, "feet"),
  38720. default: true
  38721. },
  38722. ]
  38723. ))
  38724. characterMakers.push(() => makeCharacter(
  38725. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  38726. {
  38727. side: {
  38728. height: math.unit(6 + 1/12, "feet"),
  38729. weight: math.unit(204, "lb"),
  38730. name: "Side",
  38731. image: {
  38732. source: "./media/characters/quicksilver-ayukoti/side.svg",
  38733. extra: 974/775,
  38734. bottom: 169/1143
  38735. }
  38736. },
  38737. sitting: {
  38738. height: math.unit(6 + 2/12, "feet"),
  38739. weight: math.unit(204, "lb"),
  38740. name: "Sitting",
  38741. image: {
  38742. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  38743. extra: 1175/964,
  38744. bottom: 378/1553
  38745. }
  38746. },
  38747. },
  38748. [
  38749. {
  38750. name: "Normal",
  38751. height: math.unit(6 + 1/12, "feet"),
  38752. default: true
  38753. },
  38754. ]
  38755. ))
  38756. characterMakers.push(() => makeCharacter(
  38757. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  38758. {
  38759. front: {
  38760. height: math.unit(6, "inches"),
  38761. name: "Front",
  38762. image: {
  38763. source: "./media/characters/tululi/front.svg",
  38764. extra: 1997/1876,
  38765. bottom: 20/2017
  38766. }
  38767. },
  38768. },
  38769. [
  38770. {
  38771. name: "Normal",
  38772. height: math.unit(6, "inches"),
  38773. default: true
  38774. },
  38775. ]
  38776. ))
  38777. characterMakers.push(() => makeCharacter(
  38778. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  38779. {
  38780. front: {
  38781. height: math.unit(4 + 1/12, "feet"),
  38782. name: "Front",
  38783. image: {
  38784. source: "./media/characters/star/front.svg",
  38785. extra: 1493/1189,
  38786. bottom: 48/1541
  38787. }
  38788. },
  38789. },
  38790. [
  38791. {
  38792. name: "Normal",
  38793. height: math.unit(4 + 1/12, "feet"),
  38794. default: true
  38795. },
  38796. ]
  38797. ))
  38798. characterMakers.push(() => makeCharacter(
  38799. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  38800. {
  38801. front: {
  38802. height: math.unit(6 + 3/12, "feet"),
  38803. name: "Front",
  38804. image: {
  38805. source: "./media/characters/comet/front.svg",
  38806. extra: 1681/1462,
  38807. bottom: 26/1707
  38808. }
  38809. },
  38810. },
  38811. [
  38812. {
  38813. name: "Normal",
  38814. height: math.unit(6 + 3/12, "feet"),
  38815. default: true
  38816. },
  38817. ]
  38818. ))
  38819. characterMakers.push(() => makeCharacter(
  38820. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  38821. {
  38822. front: {
  38823. height: math.unit(950, "feet"),
  38824. name: "Front",
  38825. image: {
  38826. source: "./media/characters/vortex/front.svg",
  38827. extra: 1497/1434,
  38828. bottom: 56/1553
  38829. }
  38830. },
  38831. maw: {
  38832. height: math.unit(285, "feet"),
  38833. name: "Maw",
  38834. image: {
  38835. source: "./media/characters/vortex/maw.svg"
  38836. }
  38837. },
  38838. },
  38839. [
  38840. {
  38841. name: "Macro",
  38842. height: math.unit(950, "feet"),
  38843. default: true
  38844. },
  38845. ]
  38846. ))
  38847. characterMakers.push(() => makeCharacter(
  38848. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  38849. {
  38850. front: {
  38851. height: math.unit(600, "feet"),
  38852. weight: math.unit(0.02, "grams"),
  38853. name: "Front",
  38854. image: {
  38855. source: "./media/characters/doodle/front.svg",
  38856. extra: 1578/1413,
  38857. bottom: 37/1615
  38858. }
  38859. },
  38860. },
  38861. [
  38862. {
  38863. name: "Macro",
  38864. height: math.unit(600, "feet"),
  38865. default: true
  38866. },
  38867. ]
  38868. ))
  38869. characterMakers.push(() => makeCharacter(
  38870. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  38871. {
  38872. front: {
  38873. height: math.unit(6 + 6/12, "feet"),
  38874. name: "Front",
  38875. image: {
  38876. source: "./media/characters/jai/front.svg",
  38877. extra: 1645/1534,
  38878. bottom: 115/1760
  38879. }
  38880. },
  38881. },
  38882. [
  38883. {
  38884. name: "Normal",
  38885. height: math.unit(6 + 6/12, "feet"),
  38886. default: true
  38887. },
  38888. ]
  38889. ))
  38890. characterMakers.push(() => makeCharacter(
  38891. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  38892. {
  38893. front: {
  38894. height: math.unit(6 + 8/12, "feet"),
  38895. name: "Front",
  38896. image: {
  38897. source: "./media/characters/pixel/front.svg",
  38898. extra: 1900/1735,
  38899. bottom: 63/1963
  38900. }
  38901. },
  38902. },
  38903. [
  38904. {
  38905. name: "Normal",
  38906. height: math.unit(6 + 8/12, "feet"),
  38907. default: true
  38908. },
  38909. ]
  38910. ))
  38911. characterMakers.push(() => makeCharacter(
  38912. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38913. {
  38914. back: {
  38915. height: math.unit(4 + 1/12, "feet"),
  38916. weight: math.unit(75, "lb"),
  38917. name: "Back",
  38918. image: {
  38919. source: "./media/characters/rhett/back.svg",
  38920. extra: 930/878,
  38921. bottom: 25/955
  38922. }
  38923. },
  38924. front: {
  38925. height: math.unit(4 + 1/12, "feet"),
  38926. weight: math.unit(75, "lb"),
  38927. name: "Front",
  38928. image: {
  38929. source: "./media/characters/rhett/front.svg",
  38930. extra: 1682/1586,
  38931. bottom: 92/1774
  38932. }
  38933. },
  38934. },
  38935. [
  38936. {
  38937. name: "Micro",
  38938. height: math.unit(8, "inches")
  38939. },
  38940. {
  38941. name: "Tiny",
  38942. height: math.unit(2, "feet")
  38943. },
  38944. {
  38945. name: "Normal",
  38946. height: math.unit(4 + 1/12, "feet"),
  38947. default: true
  38948. },
  38949. ]
  38950. ))
  38951. characterMakers.push(() => makeCharacter(
  38952. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  38953. {
  38954. front: {
  38955. height: math.unit(3 + 3/12, "feet"),
  38956. name: "Front",
  38957. image: {
  38958. source: "./media/characters/penny/front.svg",
  38959. extra: 1406/1311,
  38960. bottom: 26/1432
  38961. }
  38962. },
  38963. },
  38964. [
  38965. {
  38966. name: "Normal",
  38967. height: math.unit(3 + 3/12, "feet"),
  38968. default: true
  38969. },
  38970. ]
  38971. ))
  38972. characterMakers.push(() => makeCharacter(
  38973. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38974. {
  38975. front: {
  38976. height: math.unit(4 + 11/12, "feet"),
  38977. name: "Front",
  38978. image: {
  38979. source: "./media/characters/monty/front.svg",
  38980. extra: 1479/1209,
  38981. bottom: 0/1479
  38982. }
  38983. },
  38984. },
  38985. [
  38986. {
  38987. name: "Normal",
  38988. height: math.unit(4 + 11/12, "feet"),
  38989. default: true
  38990. },
  38991. ]
  38992. ))
  38993. characterMakers.push(() => makeCharacter(
  38994. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38995. {
  38996. front: {
  38997. height: math.unit(8 + 4/12, "feet"),
  38998. name: "Front",
  38999. image: {
  39000. source: "./media/characters/sterling/front.svg",
  39001. extra: 1420/1236,
  39002. bottom: 27/1447
  39003. }
  39004. },
  39005. },
  39006. [
  39007. {
  39008. name: "Normal",
  39009. height: math.unit(8 + 4/12, "feet"),
  39010. default: true
  39011. },
  39012. ]
  39013. ))
  39014. characterMakers.push(() => makeCharacter(
  39015. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  39016. {
  39017. front: {
  39018. height: math.unit(15, "feet"),
  39019. name: "Front",
  39020. image: {
  39021. source: "./media/characters/marble/front.svg",
  39022. extra: 973/937,
  39023. bottom: 32/1005
  39024. }
  39025. },
  39026. },
  39027. [
  39028. {
  39029. name: "Normal",
  39030. height: math.unit(15, "feet"),
  39031. default: true
  39032. },
  39033. ]
  39034. ))
  39035. characterMakers.push(() => makeCharacter(
  39036. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  39037. {
  39038. front: {
  39039. height: math.unit(3, "inches"),
  39040. name: "Front",
  39041. image: {
  39042. source: "./media/characters/powder/front.svg",
  39043. extra: 1504/1334,
  39044. bottom: 518/2022
  39045. }
  39046. },
  39047. },
  39048. [
  39049. {
  39050. name: "Normal",
  39051. height: math.unit(3, "inches"),
  39052. default: true
  39053. },
  39054. ]
  39055. ))
  39056. characterMakers.push(() => makeCharacter(
  39057. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  39058. {
  39059. front: {
  39060. height: math.unit(4 + 5/12, "feet"),
  39061. name: "Front",
  39062. image: {
  39063. source: "./media/characters/joey-raccoon/front.svg",
  39064. extra: 1273/1197,
  39065. bottom: 0/1273
  39066. }
  39067. },
  39068. },
  39069. [
  39070. {
  39071. name: "Normal",
  39072. height: math.unit(4 + 5/12, "feet"),
  39073. default: true
  39074. },
  39075. ]
  39076. ))
  39077. characterMakers.push(() => makeCharacter(
  39078. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  39079. {
  39080. front: {
  39081. height: math.unit(8 + 4/12, "feet"),
  39082. name: "Front",
  39083. image: {
  39084. source: "./media/characters/vick/front.svg",
  39085. extra: 2187/2118,
  39086. bottom: 47/2234
  39087. }
  39088. },
  39089. },
  39090. [
  39091. {
  39092. name: "Normal",
  39093. height: math.unit(8 + 4/12, "feet"),
  39094. default: true
  39095. },
  39096. ]
  39097. ))
  39098. characterMakers.push(() => makeCharacter(
  39099. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  39100. {
  39101. front: {
  39102. height: math.unit(5 + 5/12, "feet"),
  39103. name: "Front",
  39104. image: {
  39105. source: "./media/characters/mitsy/front.svg",
  39106. extra: 1842/1695,
  39107. bottom: 0/1842
  39108. }
  39109. },
  39110. },
  39111. [
  39112. {
  39113. name: "Normal",
  39114. height: math.unit(5 + 5/12, "feet"),
  39115. default: true
  39116. },
  39117. ]
  39118. ))
  39119. characterMakers.push(() => makeCharacter(
  39120. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  39121. {
  39122. front: {
  39123. height: math.unit(6 + 3/12, "feet"),
  39124. name: "Front",
  39125. image: {
  39126. source: "./media/characters/silvy/front.svg",
  39127. extra: 1995/1836,
  39128. bottom: 225/2220
  39129. }
  39130. },
  39131. },
  39132. [
  39133. {
  39134. name: "Normal",
  39135. height: math.unit(6 + 3/12, "feet"),
  39136. default: true
  39137. },
  39138. ]
  39139. ))
  39140. characterMakers.push(() => makeCharacter(
  39141. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  39142. {
  39143. front: {
  39144. height: math.unit(3 + 8/12, "feet"),
  39145. name: "Front",
  39146. image: {
  39147. source: "./media/characters/rodney/front.svg",
  39148. extra: 1956/1747,
  39149. bottom: 31/1987
  39150. }
  39151. },
  39152. frontDressed: {
  39153. height: math.unit(2.9, "feet"),
  39154. name: "Front (Dressed)",
  39155. image: {
  39156. source: "./media/characters/rodney/front-dressed.svg",
  39157. extra: 1382/1241,
  39158. bottom: 385/1767
  39159. }
  39160. },
  39161. },
  39162. [
  39163. {
  39164. name: "Normal",
  39165. height: math.unit(3 + 8/12, "feet"),
  39166. default: true
  39167. },
  39168. ]
  39169. ))
  39170. characterMakers.push(() => makeCharacter(
  39171. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  39172. {
  39173. front: {
  39174. height: math.unit(5 + 9/12, "feet"),
  39175. weight: math.unit(194, "lbs"),
  39176. name: "Front",
  39177. image: {
  39178. source: "./media/characters/zakail-sudekai/front.svg",
  39179. extra: 2696/2533,
  39180. bottom: 248/2944
  39181. }
  39182. },
  39183. maw: {
  39184. height: math.unit(1.35, "feet"),
  39185. name: "Maw",
  39186. image: {
  39187. source: "./media/characters/zakail-sudekai/maw.svg"
  39188. }
  39189. },
  39190. },
  39191. [
  39192. {
  39193. name: "Normal",
  39194. height: math.unit(5 + 9/12, "feet"),
  39195. default: true
  39196. },
  39197. ]
  39198. ))
  39199. characterMakers.push(() => makeCharacter(
  39200. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  39201. {
  39202. front: {
  39203. height: math.unit(8 + 4/12, "feet"),
  39204. weight: math.unit(1200, "lb"),
  39205. name: "Front",
  39206. image: {
  39207. source: "./media/characters/eleanor/front.svg",
  39208. extra: 1226/1192,
  39209. bottom: 52/1278
  39210. }
  39211. },
  39212. back: {
  39213. height: math.unit(8 + 4/12, "feet"),
  39214. weight: math.unit(1200, "lb"),
  39215. name: "Back",
  39216. image: {
  39217. source: "./media/characters/eleanor/back.svg",
  39218. extra: 1242/1184,
  39219. bottom: 60/1302
  39220. }
  39221. },
  39222. head: {
  39223. height: math.unit(2.62, "feet"),
  39224. name: "Head",
  39225. image: {
  39226. source: "./media/characters/eleanor/head.svg"
  39227. }
  39228. },
  39229. },
  39230. [
  39231. {
  39232. name: "Normal",
  39233. height: math.unit(8 + 4/12, "feet"),
  39234. default: true
  39235. },
  39236. ]
  39237. ))
  39238. characterMakers.push(() => makeCharacter(
  39239. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  39240. {
  39241. front: {
  39242. height: math.unit(8 + 4/12, "feet"),
  39243. weight: math.unit(750, "lb"),
  39244. name: "Front",
  39245. image: {
  39246. source: "./media/characters/tanya/front.svg",
  39247. extra: 1749/1615,
  39248. bottom: 33/1782
  39249. }
  39250. },
  39251. },
  39252. [
  39253. {
  39254. name: "Normal",
  39255. height: math.unit(8 + 4/12, "feet"),
  39256. default: true
  39257. },
  39258. ]
  39259. ))
  39260. characterMakers.push(() => makeCharacter(
  39261. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  39262. {
  39263. front: {
  39264. height: math.unit(5, "feet"),
  39265. weight: math.unit(225, "lb"),
  39266. name: "Front",
  39267. image: {
  39268. source: "./media/characters/cindy/front.svg",
  39269. extra: 1320/1250,
  39270. bottom: 42/1362
  39271. }
  39272. },
  39273. frontDressed: {
  39274. height: math.unit(5, "feet"),
  39275. weight: math.unit(225, "lb"),
  39276. name: "Front (Dressed)",
  39277. image: {
  39278. source: "./media/characters/cindy/front-dressed.svg",
  39279. extra: 1320/1250,
  39280. bottom: 42/1362
  39281. }
  39282. },
  39283. back: {
  39284. height: math.unit(5, "feet"),
  39285. weight: math.unit(225, "lb"),
  39286. name: "Back",
  39287. image: {
  39288. source: "./media/characters/cindy/back.svg",
  39289. extra: 1384/1346,
  39290. bottom: 14/1398
  39291. }
  39292. },
  39293. },
  39294. [
  39295. {
  39296. name: "Normal",
  39297. height: math.unit(5, "feet"),
  39298. default: true
  39299. },
  39300. ]
  39301. ))
  39302. characterMakers.push(() => makeCharacter(
  39303. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  39304. {
  39305. front: {
  39306. height: math.unit(6 + 9/12, "feet"),
  39307. weight: math.unit(440, "lb"),
  39308. name: "Front",
  39309. image: {
  39310. source: "./media/characters/wilbur-owen/front.svg",
  39311. extra: 1575/1448,
  39312. bottom: 72/1647
  39313. }
  39314. },
  39315. back: {
  39316. height: math.unit(6 + 9/12, "feet"),
  39317. weight: math.unit(440, "lb"),
  39318. name: "Back",
  39319. image: {
  39320. source: "./media/characters/wilbur-owen/back.svg",
  39321. extra: 1578/1445,
  39322. bottom: 36/1614
  39323. }
  39324. },
  39325. },
  39326. [
  39327. {
  39328. name: "Normal",
  39329. height: math.unit(6 + 9/12, "feet"),
  39330. default: true
  39331. },
  39332. ]
  39333. ))
  39334. characterMakers.push(() => makeCharacter(
  39335. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  39336. {
  39337. front: {
  39338. height: math.unit(6 + 5/12, "feet"),
  39339. weight: math.unit(650, "lb"),
  39340. name: "Front",
  39341. image: {
  39342. source: "./media/characters/keegan/front.svg",
  39343. extra: 2387/2198,
  39344. bottom: 33/2420
  39345. }
  39346. },
  39347. side: {
  39348. height: math.unit(6 + 5/12, "feet"),
  39349. weight: math.unit(650, "lb"),
  39350. name: "Side",
  39351. image: {
  39352. source: "./media/characters/keegan/side.svg",
  39353. extra: 2390/2202,
  39354. bottom: 47/2437
  39355. }
  39356. },
  39357. back: {
  39358. height: math.unit(6 + 5/12, "feet"),
  39359. weight: math.unit(650, "lb"),
  39360. name: "Back",
  39361. image: {
  39362. source: "./media/characters/keegan/back.svg",
  39363. extra: 2418/2268,
  39364. bottom: 15/2433
  39365. }
  39366. },
  39367. frontSfw: {
  39368. height: math.unit(6 + 5/12, "feet"),
  39369. weight: math.unit(650, "lb"),
  39370. name: "Front (SFW)",
  39371. image: {
  39372. source: "./media/characters/keegan/front-sfw.svg",
  39373. extra: 2387/2198,
  39374. bottom: 33/2420
  39375. }
  39376. },
  39377. beans: {
  39378. height: math.unit(1.85, "feet"),
  39379. name: "Beans",
  39380. image: {
  39381. source: "./media/characters/keegan/beans.svg"
  39382. }
  39383. },
  39384. },
  39385. [
  39386. {
  39387. name: "Normal",
  39388. height: math.unit(6 + 5/12, "feet"),
  39389. default: true
  39390. },
  39391. ]
  39392. ))
  39393. characterMakers.push(() => makeCharacter(
  39394. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  39395. {
  39396. front: {
  39397. height: math.unit(9, "feet"),
  39398. name: "Front",
  39399. image: {
  39400. source: "./media/characters/colton/front.svg",
  39401. extra: 1589/1326,
  39402. bottom: 139/1728
  39403. }
  39404. },
  39405. },
  39406. [
  39407. {
  39408. name: "Normal",
  39409. height: math.unit(9, "feet"),
  39410. default: true
  39411. },
  39412. ]
  39413. ))
  39414. characterMakers.push(() => makeCharacter(
  39415. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  39416. {
  39417. front: {
  39418. height: math.unit(2 + 9/12, "feet"),
  39419. name: "Front",
  39420. image: {
  39421. source: "./media/characters/bora/front.svg",
  39422. extra: 1265/1250,
  39423. bottom: 24/1289
  39424. }
  39425. },
  39426. },
  39427. [
  39428. {
  39429. name: "Normal",
  39430. height: math.unit(2 + 9/12, "feet"),
  39431. default: true
  39432. },
  39433. ]
  39434. ))
  39435. characterMakers.push(() => makeCharacter(
  39436. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  39437. {
  39438. front: {
  39439. height: math.unit(8, "feet"),
  39440. name: "Front",
  39441. image: {
  39442. source: "./media/characters/myu-myu/front.svg",
  39443. extra: 1949/1857,
  39444. bottom: 90/2039
  39445. }
  39446. },
  39447. },
  39448. [
  39449. {
  39450. name: "Normal",
  39451. height: math.unit(8, "feet"),
  39452. default: true
  39453. },
  39454. {
  39455. name: "Big",
  39456. height: math.unit(15, "feet")
  39457. },
  39458. {
  39459. name: "BIG",
  39460. height: math.unit(25, "feet")
  39461. },
  39462. ]
  39463. ))
  39464. characterMakers.push(() => makeCharacter(
  39465. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  39466. {
  39467. side: {
  39468. height: math.unit(7 + 5/12, "feet"),
  39469. weight: math.unit(2800, "lb"),
  39470. name: "Side",
  39471. image: {
  39472. source: "./media/characters/haloren/side.svg",
  39473. extra: 1793/409,
  39474. bottom: 59/1852
  39475. }
  39476. },
  39477. frontPaw: {
  39478. height: math.unit(2.36, "feet"),
  39479. name: "Front paw",
  39480. image: {
  39481. source: "./media/characters/haloren/front-paw.svg"
  39482. }
  39483. },
  39484. hindPaw: {
  39485. height: math.unit(3.18, "feet"),
  39486. name: "Hind paw",
  39487. image: {
  39488. source: "./media/characters/haloren/hind-paw.svg"
  39489. }
  39490. },
  39491. maw: {
  39492. height: math.unit(5.05, "feet"),
  39493. name: "Maw",
  39494. image: {
  39495. source: "./media/characters/haloren/maw.svg"
  39496. }
  39497. },
  39498. dick: {
  39499. height: math.unit(2.90, "feet"),
  39500. name: "Dick",
  39501. image: {
  39502. source: "./media/characters/haloren/dick.svg"
  39503. }
  39504. },
  39505. },
  39506. [
  39507. {
  39508. name: "Normal",
  39509. height: math.unit(7 + 5/12, "feet"),
  39510. default: true
  39511. },
  39512. {
  39513. name: "Enhanced",
  39514. height: math.unit(14 + 3/12, "feet")
  39515. },
  39516. ]
  39517. ))
  39518. characterMakers.push(() => makeCharacter(
  39519. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  39520. {
  39521. front: {
  39522. height: math.unit(171, "cm"),
  39523. name: "Front",
  39524. image: {
  39525. source: "./media/characters/kimmy/front.svg",
  39526. extra: 1491/1435,
  39527. bottom: 53/1544
  39528. }
  39529. },
  39530. },
  39531. [
  39532. {
  39533. name: "Small",
  39534. height: math.unit(9, "cm")
  39535. },
  39536. {
  39537. name: "Normal",
  39538. height: math.unit(171, "cm"),
  39539. default: true
  39540. },
  39541. ]
  39542. ))
  39543. characterMakers.push(() => makeCharacter(
  39544. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  39545. {
  39546. front: {
  39547. height: math.unit(8, "feet"),
  39548. weight: math.unit(300, "lb"),
  39549. name: "Front",
  39550. image: {
  39551. source: "./media/characters/galeboomer/front.svg",
  39552. extra: 4651/4415,
  39553. bottom: 162/4813
  39554. }
  39555. },
  39556. back: {
  39557. height: math.unit(8, "feet"),
  39558. weight: math.unit(300, "lb"),
  39559. name: "Back",
  39560. image: {
  39561. source: "./media/characters/galeboomer/back.svg",
  39562. extra: 4544/4314,
  39563. bottom: 16/4560
  39564. }
  39565. },
  39566. frontAlt: {
  39567. height: math.unit(8, "feet"),
  39568. weight: math.unit(300, "lb"),
  39569. name: "Front (Alt)",
  39570. image: {
  39571. source: "./media/characters/galeboomer/front-alt.svg",
  39572. extra: 4458/4228,
  39573. bottom: 68/4526
  39574. }
  39575. },
  39576. maw: {
  39577. height: math.unit(1.2, "feet"),
  39578. name: "Maw",
  39579. image: {
  39580. source: "./media/characters/galeboomer/maw.svg"
  39581. }
  39582. },
  39583. },
  39584. [
  39585. {
  39586. name: "Normal",
  39587. height: math.unit(8, "feet"),
  39588. default: true
  39589. },
  39590. ]
  39591. ))
  39592. characterMakers.push(() => makeCharacter(
  39593. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  39594. {
  39595. front: {
  39596. height: math.unit(5 + 9/12, "feet"),
  39597. weight: math.unit(120, "lb"),
  39598. name: "Front",
  39599. image: {
  39600. source: "./media/characters/chyr/front.svg",
  39601. extra: 1323/1254,
  39602. bottom: 63/1386
  39603. }
  39604. },
  39605. back: {
  39606. height: math.unit(5 + 9/12, "feet"),
  39607. weight: math.unit(120, "lb"),
  39608. name: "Back",
  39609. image: {
  39610. source: "./media/characters/chyr/back.svg",
  39611. extra: 1323/1252,
  39612. bottom: 48/1371
  39613. }
  39614. },
  39615. },
  39616. [
  39617. {
  39618. name: "Normal",
  39619. height: math.unit(5 + 9/12, "feet"),
  39620. default: true
  39621. },
  39622. ]
  39623. ))
  39624. characterMakers.push(() => makeCharacter(
  39625. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  39626. {
  39627. front: {
  39628. height: math.unit(7, "feet"),
  39629. weight: math.unit(310, "lb"),
  39630. name: "Front",
  39631. image: {
  39632. source: "./media/characters/solarus/front.svg",
  39633. extra: 2415/2021,
  39634. bottom: 103/2518
  39635. }
  39636. },
  39637. back: {
  39638. height: math.unit(7, "feet"),
  39639. weight: math.unit(310, "lb"),
  39640. name: "Back",
  39641. image: {
  39642. source: "./media/characters/solarus/back.svg",
  39643. extra: 2463/2089,
  39644. bottom: 79/2542
  39645. }
  39646. },
  39647. },
  39648. [
  39649. {
  39650. name: "Normal",
  39651. height: math.unit(7, "feet"),
  39652. default: true
  39653. },
  39654. ]
  39655. ))
  39656. characterMakers.push(() => makeCharacter(
  39657. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  39658. {
  39659. front: {
  39660. height: math.unit(16, "feet"),
  39661. name: "Front",
  39662. image: {
  39663. source: "./media/characters/mutsuju-koizaemon/front.svg",
  39664. extra: 1844/1780,
  39665. bottom: 58/1902
  39666. }
  39667. },
  39668. winterCoat: {
  39669. height: math.unit(16, "feet"),
  39670. name: "Winter Coat",
  39671. image: {
  39672. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  39673. extra: 1807/1775,
  39674. bottom: 69/1876
  39675. }
  39676. },
  39677. },
  39678. [
  39679. {
  39680. name: "Normal",
  39681. height: math.unit(16, "feet"),
  39682. default: true
  39683. },
  39684. {
  39685. name: "Chicago Size",
  39686. height: math.unit(560, "feet")
  39687. },
  39688. ]
  39689. ))
  39690. characterMakers.push(() => makeCharacter(
  39691. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  39692. {
  39693. front: {
  39694. height: math.unit(11 + 6/12, "feet"),
  39695. weight: math.unit(1366, "lb"),
  39696. name: "Front",
  39697. image: {
  39698. source: "./media/characters/lexor/front.svg",
  39699. extra: 1560/1481,
  39700. bottom: 211/1771
  39701. }
  39702. },
  39703. back: {
  39704. height: math.unit(11 + 6/12, "feet"),
  39705. weight: math.unit(1366, "lb"),
  39706. name: "Back",
  39707. image: {
  39708. source: "./media/characters/lexor/back.svg",
  39709. extra: 1614/1533,
  39710. bottom: 76/1690
  39711. }
  39712. },
  39713. maw: {
  39714. height: math.unit(3, "feet"),
  39715. name: "Maw",
  39716. image: {
  39717. source: "./media/characters/lexor/maw.svg"
  39718. }
  39719. },
  39720. dick: {
  39721. height: math.unit(2.59, "feet"),
  39722. name: "Dick",
  39723. image: {
  39724. source: "./media/characters/lexor/dick.svg"
  39725. }
  39726. },
  39727. },
  39728. [
  39729. {
  39730. name: "Normal",
  39731. height: math.unit(11 + 6/12, "feet"),
  39732. default: true
  39733. },
  39734. ]
  39735. ))
  39736. characterMakers.push(() => makeCharacter(
  39737. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  39738. {
  39739. front: {
  39740. height: math.unit(5 + 8/12, "feet"),
  39741. name: "Front",
  39742. image: {
  39743. source: "./media/characters/magnum/front.svg",
  39744. extra: 942/855,
  39745. bottom: 26/968
  39746. }
  39747. },
  39748. },
  39749. [
  39750. {
  39751. name: "Normal",
  39752. height: math.unit(5 + 8/12, "feet"),
  39753. default: true
  39754. },
  39755. ]
  39756. ))
  39757. characterMakers.push(() => makeCharacter(
  39758. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  39759. {
  39760. front: {
  39761. height: math.unit(18 + 4/12, "feet"),
  39762. weight: math.unit(1500, "kg"),
  39763. name: "Front",
  39764. image: {
  39765. source: "./media/characters/solas-sharpsman/front.svg",
  39766. extra: 1698/1589,
  39767. bottom: 0/1698
  39768. }
  39769. },
  39770. },
  39771. [
  39772. {
  39773. name: "Normal",
  39774. height: math.unit(18 + 4/12, "feet"),
  39775. default: true
  39776. },
  39777. ]
  39778. ))
  39779. characterMakers.push(() => makeCharacter(
  39780. { name: "October", species: ["tiger"], tags: ["anthro"] },
  39781. {
  39782. front: {
  39783. height: math.unit(5 + 5/12, "feet"),
  39784. weight: math.unit(180, "lb"),
  39785. name: "Front",
  39786. image: {
  39787. source: "./media/characters/october/front.svg",
  39788. extra: 1800/1650,
  39789. bottom: 0/1800
  39790. }
  39791. },
  39792. frontNsfw: {
  39793. height: math.unit(5 + 5/12, "feet"),
  39794. weight: math.unit(180, "lb"),
  39795. name: "Front (NSFW)",
  39796. image: {
  39797. source: "./media/characters/october/front-nsfw.svg",
  39798. extra: 1392/1307,
  39799. bottom: 42/1434
  39800. }
  39801. },
  39802. },
  39803. [
  39804. {
  39805. name: "Normal",
  39806. height: math.unit(5 + 5/12, "feet"),
  39807. default: true
  39808. },
  39809. ]
  39810. ))
  39811. characterMakers.push(() => makeCharacter(
  39812. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  39813. {
  39814. front: {
  39815. height: math.unit(8 + 6/12, "feet"),
  39816. name: "Front",
  39817. image: {
  39818. source: "./media/characters/essynkardi/front.svg",
  39819. extra: 1541/1457,
  39820. bottom: 47/1588
  39821. }
  39822. },
  39823. },
  39824. [
  39825. {
  39826. name: "Normal",
  39827. height: math.unit(8 + 6/12, "feet"),
  39828. default: true
  39829. },
  39830. ]
  39831. ))
  39832. characterMakers.push(() => makeCharacter(
  39833. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  39834. {
  39835. front: {
  39836. height: math.unit(6 + 6/12, "feet"),
  39837. weight: math.unit(7, "lb"),
  39838. name: "Front",
  39839. image: {
  39840. source: "./media/characters/icky/front.svg",
  39841. extra: 813/782,
  39842. bottom: 66/879
  39843. }
  39844. },
  39845. back: {
  39846. height: math.unit(6 + 6/12, "feet"),
  39847. weight: math.unit(7, "lb"),
  39848. name: "Back",
  39849. image: {
  39850. source: "./media/characters/icky/back.svg",
  39851. extra: 754/735,
  39852. bottom: 56/810
  39853. }
  39854. },
  39855. },
  39856. [
  39857. {
  39858. name: "Normal",
  39859. height: math.unit(6 + 6/12, "feet"),
  39860. default: true
  39861. },
  39862. ]
  39863. ))
  39864. characterMakers.push(() => makeCharacter(
  39865. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  39866. {
  39867. front: {
  39868. height: math.unit(15, "feet"),
  39869. name: "Front",
  39870. image: {
  39871. source: "./media/characters/rojas/front.svg",
  39872. extra: 1462/1408,
  39873. bottom: 95/1557
  39874. }
  39875. },
  39876. back: {
  39877. height: math.unit(15, "feet"),
  39878. name: "Back",
  39879. image: {
  39880. source: "./media/characters/rojas/back.svg",
  39881. extra: 1023/954,
  39882. bottom: 28/1051
  39883. }
  39884. },
  39885. },
  39886. [
  39887. {
  39888. name: "Normal",
  39889. height: math.unit(15, "feet"),
  39890. default: true
  39891. },
  39892. ]
  39893. ))
  39894. characterMakers.push(() => makeCharacter(
  39895. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  39896. {
  39897. frontHuman: {
  39898. height: math.unit(5 + 7/12, "feet"),
  39899. name: "Front (Human)",
  39900. image: {
  39901. source: "./media/characters/alek-dryagan/front-human.svg",
  39902. extra: 1687/1667,
  39903. bottom: 69/1756
  39904. }
  39905. },
  39906. backHuman: {
  39907. height: math.unit(5 + 7/12, "feet"),
  39908. name: "Back (Human)",
  39909. image: {
  39910. source: "./media/characters/alek-dryagan/back-human.svg",
  39911. extra: 1670/1649,
  39912. bottom: 65/1735
  39913. }
  39914. },
  39915. frontDemi: {
  39916. height: math.unit(65, "feet"),
  39917. name: "Front (Demi)",
  39918. image: {
  39919. source: "./media/characters/alek-dryagan/front-demi.svg",
  39920. extra: 1669/1642,
  39921. bottom: 49/1718
  39922. }
  39923. },
  39924. backDemi: {
  39925. height: math.unit(65, "feet"),
  39926. name: "Back (Demi)",
  39927. image: {
  39928. source: "./media/characters/alek-dryagan/back-demi.svg",
  39929. extra: 1658/1637,
  39930. bottom: 40/1698
  39931. }
  39932. },
  39933. mawHuman: {
  39934. height: math.unit(0.3, "feet"),
  39935. name: "Maw (Human)",
  39936. image: {
  39937. source: "./media/characters/alek-dryagan/maw-human.svg"
  39938. }
  39939. },
  39940. mawDemi: {
  39941. height: math.unit(3.8, "feet"),
  39942. name: "Maw (Demi)",
  39943. image: {
  39944. source: "./media/characters/alek-dryagan/maw-demi.svg"
  39945. }
  39946. },
  39947. },
  39948. [
  39949. {
  39950. name: "Normal",
  39951. height: math.unit(5 + 7/12, "feet"),
  39952. default: true
  39953. },
  39954. ]
  39955. ))
  39956. characterMakers.push(() => makeCharacter(
  39957. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  39958. {
  39959. frontHuman: {
  39960. height: math.unit(5 + 2/12, "feet"),
  39961. name: "Front (Human)",
  39962. image: {
  39963. source: "./media/characters/gen/front-human.svg",
  39964. extra: 1627/1538,
  39965. bottom: 71/1698
  39966. }
  39967. },
  39968. backHuman: {
  39969. height: math.unit(5 + 2/12, "feet"),
  39970. name: "Back (Human)",
  39971. image: {
  39972. source: "./media/characters/gen/back-human.svg",
  39973. extra: 1638/1548,
  39974. bottom: 69/1707
  39975. }
  39976. },
  39977. frontDemi: {
  39978. height: math.unit(5 + 2/12, "feet"),
  39979. name: "Front (Demi)",
  39980. image: {
  39981. source: "./media/characters/gen/front-demi.svg",
  39982. extra: 1627/1538,
  39983. bottom: 71/1698
  39984. }
  39985. },
  39986. backDemi: {
  39987. height: math.unit(5 + 2/12, "feet"),
  39988. name: "Back (Demi)",
  39989. image: {
  39990. source: "./media/characters/gen/back-demi.svg",
  39991. extra: 1638/1548,
  39992. bottom: 69/1707
  39993. }
  39994. },
  39995. },
  39996. [
  39997. {
  39998. name: "Normal",
  39999. height: math.unit(5 + 2/12, "feet"),
  40000. default: true
  40001. },
  40002. ]
  40003. ))
  40004. characterMakers.push(() => makeCharacter(
  40005. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  40006. {
  40007. frontImp: {
  40008. height: math.unit(1 + 11/12, "feet"),
  40009. name: "Front (Imp)",
  40010. image: {
  40011. source: "./media/characters/max-kobold/front-imp.svg",
  40012. extra: 1238/1134,
  40013. bottom: 81/1319
  40014. }
  40015. },
  40016. backImp: {
  40017. height: math.unit(1 + 11/12, "feet"),
  40018. name: "Back (Imp)",
  40019. image: {
  40020. source: "./media/characters/max-kobold/back-imp.svg",
  40021. extra: 1334/1175,
  40022. bottom: 34/1368
  40023. }
  40024. },
  40025. frontDemi: {
  40026. height: math.unit(5 + 9/12, "feet"),
  40027. name: "Front (Demi)",
  40028. image: {
  40029. source: "./media/characters/max-kobold/front-demi.svg",
  40030. extra: 1715/1685,
  40031. bottom: 54/1769
  40032. }
  40033. },
  40034. backDemi: {
  40035. height: math.unit(5 + 9/12, "feet"),
  40036. name: "Back (Demi)",
  40037. image: {
  40038. source: "./media/characters/max-kobold/back-demi.svg",
  40039. extra: 1752/1729,
  40040. bottom: 41/1793
  40041. }
  40042. },
  40043. handImp: {
  40044. height: math.unit(0.45, "feet"),
  40045. name: "Hand (Imp)",
  40046. image: {
  40047. source: "./media/characters/max-kobold/hand.svg"
  40048. }
  40049. },
  40050. pawImp: {
  40051. height: math.unit(0.46, "feet"),
  40052. name: "Paw (Imp)",
  40053. image: {
  40054. source: "./media/characters/max-kobold/paw.svg"
  40055. }
  40056. },
  40057. handDemi: {
  40058. height: math.unit(0.80, "feet"),
  40059. name: "Hand (Demi)",
  40060. image: {
  40061. source: "./media/characters/max-kobold/hand.svg"
  40062. }
  40063. },
  40064. pawDemi: {
  40065. height: math.unit(1.1, "feet"),
  40066. name: "Paw (Demi)",
  40067. image: {
  40068. source: "./media/characters/max-kobold/paw.svg"
  40069. }
  40070. },
  40071. headImp: {
  40072. height: math.unit(1.33, "feet"),
  40073. name: "Head (Imp)",
  40074. image: {
  40075. source: "./media/characters/max-kobold/head-imp.svg"
  40076. }
  40077. },
  40078. mawImp: {
  40079. height: math.unit(0.75, "feet"),
  40080. name: "Maw (Imp)",
  40081. image: {
  40082. source: "./media/characters/max-kobold/maw-imp.svg"
  40083. }
  40084. },
  40085. mawDemi: {
  40086. height: math.unit(0.42, "feet"),
  40087. name: "Maw (Demi)",
  40088. image: {
  40089. source: "./media/characters/max-kobold/maw-demi.svg"
  40090. }
  40091. },
  40092. },
  40093. [
  40094. {
  40095. name: "Normal",
  40096. height: math.unit(1 + 11/12, "feet"),
  40097. default: true
  40098. },
  40099. ]
  40100. ))
  40101. characterMakers.push(() => makeCharacter(
  40102. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  40103. {
  40104. front: {
  40105. height: math.unit(7 + 5/12, "feet"),
  40106. name: "Front",
  40107. image: {
  40108. source: "./media/characters/carbon/front.svg",
  40109. extra: 1754/1689,
  40110. bottom: 65/1819
  40111. }
  40112. },
  40113. back: {
  40114. height: math.unit(7 + 5/12, "feet"),
  40115. name: "Back",
  40116. image: {
  40117. source: "./media/characters/carbon/back.svg",
  40118. extra: 1762/1695,
  40119. bottom: 24/1786
  40120. }
  40121. },
  40122. frontGigantamax: {
  40123. height: math.unit(150, "feet"),
  40124. name: "Front (Gigantamax)",
  40125. image: {
  40126. source: "./media/characters/carbon/front-gigantamax.svg",
  40127. extra: 1826/1669,
  40128. bottom: 59/1885
  40129. }
  40130. },
  40131. backGigantamax: {
  40132. height: math.unit(150, "feet"),
  40133. name: "Back (Gigantamax)",
  40134. image: {
  40135. source: "./media/characters/carbon/back-gigantamax.svg",
  40136. extra: 1796/1653,
  40137. bottom: 53/1849
  40138. }
  40139. },
  40140. maw: {
  40141. height: math.unit(0.48, "feet"),
  40142. name: "Maw",
  40143. image: {
  40144. source: "./media/characters/carbon/maw.svg"
  40145. }
  40146. },
  40147. mawGigantamax: {
  40148. height: math.unit(7.5, "feet"),
  40149. name: "Maw (Gigantamax)",
  40150. image: {
  40151. source: "./media/characters/carbon/maw-gigantamax.svg"
  40152. }
  40153. },
  40154. },
  40155. [
  40156. {
  40157. name: "Normal",
  40158. height: math.unit(7 + 5/12, "feet"),
  40159. default: true
  40160. },
  40161. ]
  40162. ))
  40163. characterMakers.push(() => makeCharacter(
  40164. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  40165. {
  40166. front: {
  40167. height: math.unit(6, "feet"),
  40168. name: "Front",
  40169. image: {
  40170. source: "./media/characters/maverick/front.svg",
  40171. extra: 1672/1661,
  40172. bottom: 85/1757
  40173. }
  40174. },
  40175. back: {
  40176. height: math.unit(6, "feet"),
  40177. name: "Back",
  40178. image: {
  40179. source: "./media/characters/maverick/back.svg",
  40180. extra: 1642/1631,
  40181. bottom: 38/1680
  40182. }
  40183. },
  40184. },
  40185. [
  40186. {
  40187. name: "Normal",
  40188. height: math.unit(6, "feet"),
  40189. default: true
  40190. },
  40191. ]
  40192. ))
  40193. characterMakers.push(() => makeCharacter(
  40194. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  40195. {
  40196. front: {
  40197. height: math.unit(15, "feet"),
  40198. weight: math.unit(615, "lb"),
  40199. name: "Front",
  40200. image: {
  40201. source: "./media/characters/grockle/front.svg",
  40202. extra: 1535/1427,
  40203. bottom: 56/1591
  40204. }
  40205. },
  40206. },
  40207. [
  40208. {
  40209. name: "Normal",
  40210. height: math.unit(15, "feet"),
  40211. default: true
  40212. },
  40213. {
  40214. name: "Large",
  40215. height: math.unit(150, "feet")
  40216. },
  40217. {
  40218. name: "Macro",
  40219. height: math.unit(1876, "feet")
  40220. },
  40221. {
  40222. name: "Mega Macro",
  40223. height: math.unit(121940, "feet")
  40224. },
  40225. {
  40226. name: "Giga Macro",
  40227. height: math.unit(750, "km")
  40228. },
  40229. {
  40230. name: "Tera Macro",
  40231. height: math.unit(750000, "km")
  40232. },
  40233. {
  40234. name: "Galactic",
  40235. height: math.unit(1.4e5, "km")
  40236. },
  40237. {
  40238. name: "Godlike",
  40239. height: math.unit(9.8e280, "galaxies")
  40240. },
  40241. ]
  40242. ))
  40243. characterMakers.push(() => makeCharacter(
  40244. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  40245. {
  40246. front: {
  40247. height: math.unit(11, "meters"),
  40248. weight: math.unit(20, "tonnes"),
  40249. name: "Front",
  40250. image: {
  40251. source: "./media/characters/alistair/front.svg",
  40252. extra: 1265/1009,
  40253. bottom: 93/1358
  40254. }
  40255. },
  40256. },
  40257. [
  40258. {
  40259. name: "Normal",
  40260. height: math.unit(11, "meters"),
  40261. default: true
  40262. },
  40263. ]
  40264. ))
  40265. characterMakers.push(() => makeCharacter(
  40266. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  40267. {
  40268. front: {
  40269. height: math.unit(5 + 8/12, "feet"),
  40270. name: "Front",
  40271. image: {
  40272. source: "./media/characters/haruka/front.svg",
  40273. extra: 2012/1952,
  40274. bottom: 0/2012
  40275. }
  40276. },
  40277. },
  40278. [
  40279. {
  40280. name: "Normal",
  40281. height: math.unit(5 + 8/12, "feet"),
  40282. default: true
  40283. },
  40284. ]
  40285. ))
  40286. characterMakers.push(() => makeCharacter(
  40287. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  40288. {
  40289. back: {
  40290. height: math.unit(9, "feet"),
  40291. name: "Back",
  40292. image: {
  40293. source: "./media/characters/vivian-sylveon/back.svg",
  40294. extra: 1853/1714,
  40295. bottom: 0/1853
  40296. }
  40297. },
  40298. hyper: {
  40299. height: math.unit(5.58, "feet"),
  40300. name: "Hyper",
  40301. preyCapacity: math.unit(2.80616218797, "m^3"),
  40302. image: {
  40303. source: "./media/characters/vivian-sylveon/hyper.svg",
  40304. extra: 999/676,
  40305. bottom: 697/1696
  40306. },
  40307. },
  40308. paw: {
  40309. height: math.unit(1.8, "feet"),
  40310. name: "Paw",
  40311. image: {
  40312. source: "./media/characters/vivian-sylveon/paw.svg"
  40313. }
  40314. },
  40315. danger: {
  40316. height: math.unit(7.5, "feet"),
  40317. name: "DANGER",
  40318. image: {
  40319. source: "./media/characters/vivian-sylveon/danger.svg"
  40320. }
  40321. },
  40322. },
  40323. [
  40324. {
  40325. name: "Normal",
  40326. height: math.unit(9, "feet"),
  40327. default: true
  40328. },
  40329. {
  40330. name: "Macro",
  40331. height: math.unit(500, "feet")
  40332. },
  40333. {
  40334. name: "Megamacro",
  40335. height: math.unit(600, "miles")
  40336. },
  40337. {
  40338. name: "Gigamacro",
  40339. height: math.unit(30000, "miles")
  40340. },
  40341. ]
  40342. ))
  40343. characterMakers.push(() => makeCharacter(
  40344. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  40345. {
  40346. anthro: {
  40347. height: math.unit(5 + 10/12, "feet"),
  40348. weight: math.unit(100, "lb"),
  40349. name: "Anthro",
  40350. image: {
  40351. source: "./media/characters/daiki/anthro.svg",
  40352. extra: 1115/1027,
  40353. bottom: 69/1184
  40354. }
  40355. },
  40356. feral: {
  40357. height: math.unit(200, "feet"),
  40358. name: "Feral",
  40359. image: {
  40360. source: "./media/characters/daiki/feral.svg",
  40361. extra: 1256/313,
  40362. bottom: 39/1295
  40363. }
  40364. },
  40365. feralHead: {
  40366. height: math.unit(171, "feet"),
  40367. name: "Feral Head",
  40368. image: {
  40369. source: "./media/characters/daiki/feral-head.svg"
  40370. }
  40371. },
  40372. manaDragon: {
  40373. height: math.unit(170, "meters"),
  40374. name: "Mana-dragon",
  40375. image: {
  40376. source: "./media/characters/daiki/mana-dragon.svg",
  40377. extra: 763/420,
  40378. bottom: 97/860
  40379. }
  40380. },
  40381. },
  40382. [
  40383. {
  40384. name: "Normal",
  40385. height: math.unit(5 + 10/12, "feet"),
  40386. default: true
  40387. },
  40388. ]
  40389. ))
  40390. characterMakers.push(() => makeCharacter(
  40391. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  40392. {
  40393. fullyEquippedFront: {
  40394. height: math.unit(3 + 1/12, "feet"),
  40395. weight: math.unit(24, "lb"),
  40396. name: "Fully Equipped (Front)",
  40397. image: {
  40398. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  40399. extra: 687/605,
  40400. bottom: 18/705
  40401. }
  40402. },
  40403. fullyEquippedBack: {
  40404. height: math.unit(3 + 1/12, "feet"),
  40405. weight: math.unit(24, "lb"),
  40406. name: "Fully Equipped (Back)",
  40407. image: {
  40408. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  40409. extra: 689/590,
  40410. bottom: 18/707
  40411. }
  40412. },
  40413. dailyWear: {
  40414. height: math.unit(3 + 1/12, "feet"),
  40415. weight: math.unit(24, "lb"),
  40416. name: "Daily Wear",
  40417. image: {
  40418. source: "./media/characters/tea-spot/daily-wear.svg",
  40419. extra: 701/620,
  40420. bottom: 21/722
  40421. }
  40422. },
  40423. maidWork: {
  40424. height: math.unit(3 + 1/12, "feet"),
  40425. weight: math.unit(24, "lb"),
  40426. name: "Maid Work",
  40427. image: {
  40428. source: "./media/characters/tea-spot/maid-work.svg",
  40429. extra: 693/609,
  40430. bottom: 15/708
  40431. }
  40432. },
  40433. },
  40434. [
  40435. {
  40436. name: "Normal",
  40437. height: math.unit(3 + 1/12, "feet"),
  40438. default: true
  40439. },
  40440. ]
  40441. ))
  40442. characterMakers.push(() => makeCharacter(
  40443. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  40444. {
  40445. front: {
  40446. height: math.unit(175, "cm"),
  40447. weight: math.unit(75, "kg"),
  40448. name: "Front",
  40449. image: {
  40450. source: "./media/characters/chee/front.svg",
  40451. extra: 1796/1740,
  40452. bottom: 40/1836
  40453. }
  40454. },
  40455. },
  40456. [
  40457. {
  40458. name: "Micro-Micro",
  40459. height: math.unit(1, "nm")
  40460. },
  40461. {
  40462. name: "Micro-erst",
  40463. height: math.unit(1, "micrometer")
  40464. },
  40465. {
  40466. name: "Micro-er",
  40467. height: math.unit(1, "cm")
  40468. },
  40469. {
  40470. name: "Normal",
  40471. height: math.unit(175, "cm"),
  40472. default: true
  40473. },
  40474. {
  40475. name: "Macro",
  40476. height: math.unit(100, "m")
  40477. },
  40478. {
  40479. name: "Macro-er",
  40480. height: math.unit(1, "km")
  40481. },
  40482. {
  40483. name: "Macro-erst",
  40484. height: math.unit(10, "km")
  40485. },
  40486. {
  40487. name: "Macro-Macro",
  40488. height: math.unit(100, "km")
  40489. },
  40490. ]
  40491. ))
  40492. characterMakers.push(() => makeCharacter(
  40493. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  40494. {
  40495. front: {
  40496. height: math.unit(11 + 9/12, "feet"),
  40497. weight: math.unit(935, "lb"),
  40498. name: "Front",
  40499. image: {
  40500. source: "./media/characters/kingsley/front.svg",
  40501. extra: 1803/1674,
  40502. bottom: 127/1930
  40503. }
  40504. },
  40505. frontNude: {
  40506. height: math.unit(11 + 9/12, "feet"),
  40507. weight: math.unit(935, "lb"),
  40508. name: "Front (Nude)",
  40509. image: {
  40510. source: "./media/characters/kingsley/front-nude.svg",
  40511. extra: 1803/1674,
  40512. bottom: 127/1930
  40513. }
  40514. },
  40515. },
  40516. [
  40517. {
  40518. name: "Normal",
  40519. height: math.unit(11 + 9/12, "feet"),
  40520. default: true
  40521. },
  40522. ]
  40523. ))
  40524. characterMakers.push(() => makeCharacter(
  40525. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  40526. {
  40527. side: {
  40528. height: math.unit(9, "feet"),
  40529. name: "Side",
  40530. image: {
  40531. source: "./media/characters/rymel/side.svg",
  40532. extra: 792/469,
  40533. bottom: 121/913
  40534. }
  40535. },
  40536. maw: {
  40537. height: math.unit(2.4, "meters"),
  40538. name: "Maw",
  40539. image: {
  40540. source: "./media/characters/rymel/maw.svg"
  40541. }
  40542. },
  40543. },
  40544. [
  40545. {
  40546. name: "House Drake",
  40547. height: math.unit(2, "feet")
  40548. },
  40549. {
  40550. name: "Reduced",
  40551. height: math.unit(4.5, "feet")
  40552. },
  40553. {
  40554. name: "Normal",
  40555. height: math.unit(9, "feet"),
  40556. default: true
  40557. },
  40558. ]
  40559. ))
  40560. characterMakers.push(() => makeCharacter(
  40561. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  40562. {
  40563. front: {
  40564. height: math.unit(1.74, "meters"),
  40565. weight: math.unit(55, "kg"),
  40566. name: "Front",
  40567. image: {
  40568. source: "./media/characters/rubus/front.svg",
  40569. extra: 1894/1742,
  40570. bottom: 44/1938
  40571. }
  40572. },
  40573. },
  40574. [
  40575. {
  40576. name: "Normal",
  40577. height: math.unit(1.74, "meters"),
  40578. default: true
  40579. },
  40580. ]
  40581. ))
  40582. characterMakers.push(() => makeCharacter(
  40583. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  40584. {
  40585. front: {
  40586. height: math.unit(5 + 2/12, "feet"),
  40587. weight: math.unit(112, "lb"),
  40588. name: "Front",
  40589. image: {
  40590. source: "./media/characters/cassie-kingston/front.svg",
  40591. extra: 1438/1390,
  40592. bottom: 47/1485
  40593. }
  40594. },
  40595. },
  40596. [
  40597. {
  40598. name: "Normal",
  40599. height: math.unit(5 + 2/12, "feet"),
  40600. default: true
  40601. },
  40602. {
  40603. name: "Macro",
  40604. height: math.unit(128, "feet")
  40605. },
  40606. {
  40607. name: "Megamacro",
  40608. height: math.unit(2.56, "miles")
  40609. },
  40610. ]
  40611. ))
  40612. characterMakers.push(() => makeCharacter(
  40613. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  40614. {
  40615. front: {
  40616. height: math.unit(7, "feet"),
  40617. name: "Front",
  40618. image: {
  40619. source: "./media/characters/fox/front.svg",
  40620. extra: 1798/1703,
  40621. bottom: 55/1853
  40622. }
  40623. },
  40624. back: {
  40625. height: math.unit(7, "feet"),
  40626. name: "Back",
  40627. image: {
  40628. source: "./media/characters/fox/back.svg",
  40629. extra: 1748/1649,
  40630. bottom: 32/1780
  40631. }
  40632. },
  40633. head: {
  40634. height: math.unit(1.95, "feet"),
  40635. name: "Head",
  40636. image: {
  40637. source: "./media/characters/fox/head.svg"
  40638. }
  40639. },
  40640. dick: {
  40641. height: math.unit(1.33, "feet"),
  40642. name: "Dick",
  40643. image: {
  40644. source: "./media/characters/fox/dick.svg"
  40645. }
  40646. },
  40647. foot: {
  40648. height: math.unit(1, "feet"),
  40649. name: "Foot",
  40650. image: {
  40651. source: "./media/characters/fox/foot.svg"
  40652. }
  40653. },
  40654. paw: {
  40655. height: math.unit(0.92, "feet"),
  40656. name: "Paw",
  40657. image: {
  40658. source: "./media/characters/fox/paw.svg"
  40659. }
  40660. },
  40661. },
  40662. [
  40663. {
  40664. name: "Small",
  40665. height: math.unit(3, "inches")
  40666. },
  40667. {
  40668. name: "\"Realistic\"",
  40669. height: math.unit(7, "feet")
  40670. },
  40671. {
  40672. name: "Normal",
  40673. height: math.unit(150, "feet"),
  40674. default: true
  40675. },
  40676. {
  40677. name: "BIG",
  40678. height: math.unit(1200, "feet")
  40679. },
  40680. {
  40681. name: "👀",
  40682. height: math.unit(5, "miles")
  40683. },
  40684. {
  40685. name: "👀👀👀",
  40686. height: math.unit(64, "miles")
  40687. },
  40688. ]
  40689. ))
  40690. characterMakers.push(() => makeCharacter(
  40691. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  40692. {
  40693. front: {
  40694. height: math.unit(625, "feet"),
  40695. name: "Front",
  40696. image: {
  40697. source: "./media/characters/asonja-rossa/front.svg",
  40698. extra: 1833/1686,
  40699. bottom: 24/1857
  40700. }
  40701. },
  40702. back: {
  40703. height: math.unit(625, "feet"),
  40704. name: "Back",
  40705. image: {
  40706. source: "./media/characters/asonja-rossa/back.svg",
  40707. extra: 1852/1753,
  40708. bottom: 26/1878
  40709. }
  40710. },
  40711. },
  40712. [
  40713. {
  40714. name: "Macro",
  40715. height: math.unit(625, "feet"),
  40716. default: true
  40717. },
  40718. ]
  40719. ))
  40720. characterMakers.push(() => makeCharacter(
  40721. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  40722. {
  40723. side: {
  40724. height: math.unit(8, "feet"),
  40725. name: "Side",
  40726. image: {
  40727. source: "./media/characters/rezukii/side.svg",
  40728. extra: 979/542,
  40729. bottom: 87/1066
  40730. }
  40731. },
  40732. sitting: {
  40733. height: math.unit(14.6, "feet"),
  40734. name: "Sitting",
  40735. image: {
  40736. source: "./media/characters/rezukii/sitting.svg",
  40737. extra: 1023/813,
  40738. bottom: 45/1068
  40739. }
  40740. },
  40741. },
  40742. [
  40743. {
  40744. name: "Tiny",
  40745. height: math.unit(2, "feet")
  40746. },
  40747. {
  40748. name: "Smol",
  40749. height: math.unit(4, "feet")
  40750. },
  40751. {
  40752. name: "Normal",
  40753. height: math.unit(8, "feet"),
  40754. default: true
  40755. },
  40756. {
  40757. name: "Big",
  40758. height: math.unit(12, "feet")
  40759. },
  40760. {
  40761. name: "Macro",
  40762. height: math.unit(30, "feet")
  40763. },
  40764. ]
  40765. ))
  40766. characterMakers.push(() => makeCharacter(
  40767. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  40768. {
  40769. front: {
  40770. height: math.unit(14, "feet"),
  40771. weight: math.unit(9.5, "tonnes"),
  40772. name: "Front",
  40773. image: {
  40774. source: "./media/characters/dawnheart/front.svg",
  40775. extra: 2792/2675,
  40776. bottom: 64/2856
  40777. }
  40778. },
  40779. },
  40780. [
  40781. {
  40782. name: "Normal",
  40783. height: math.unit(14, "feet"),
  40784. default: true
  40785. },
  40786. ]
  40787. ))
  40788. characterMakers.push(() => makeCharacter(
  40789. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  40790. {
  40791. front: {
  40792. height: math.unit(1.7, "m"),
  40793. name: "Front",
  40794. image: {
  40795. source: "./media/characters/gladi/front.svg",
  40796. extra: 1460/1362,
  40797. bottom: 19/1479
  40798. }
  40799. },
  40800. back: {
  40801. height: math.unit(1.7, "m"),
  40802. name: "Back",
  40803. image: {
  40804. source: "./media/characters/gladi/back.svg",
  40805. extra: 1459/1357,
  40806. bottom: 12/1471
  40807. }
  40808. },
  40809. feral: {
  40810. height: math.unit(2.05, "m"),
  40811. name: "Feral",
  40812. image: {
  40813. source: "./media/characters/gladi/feral.svg",
  40814. extra: 821/557,
  40815. bottom: 91/912
  40816. }
  40817. },
  40818. },
  40819. [
  40820. {
  40821. name: "Shortest",
  40822. height: math.unit(70, "cm")
  40823. },
  40824. {
  40825. name: "Normal",
  40826. height: math.unit(1.7, "m")
  40827. },
  40828. {
  40829. name: "Macro",
  40830. height: math.unit(10, "m"),
  40831. default: true
  40832. },
  40833. {
  40834. name: "Tallest",
  40835. height: math.unit(200, "m")
  40836. },
  40837. ]
  40838. ))
  40839. characterMakers.push(() => makeCharacter(
  40840. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  40841. {
  40842. front: {
  40843. height: math.unit(5 + 7/12, "feet"),
  40844. weight: math.unit(2, "tons"),
  40845. name: "Front",
  40846. image: {
  40847. source: "./media/characters/erdno/front.svg",
  40848. extra: 1234/1129,
  40849. bottom: 35/1269
  40850. }
  40851. },
  40852. angled: {
  40853. height: math.unit(5 + 7/12, "feet"),
  40854. weight: math.unit(2, "tons"),
  40855. name: "Angled",
  40856. image: {
  40857. source: "./media/characters/erdno/angled.svg",
  40858. extra: 1185/1139,
  40859. bottom: 36/1221
  40860. }
  40861. },
  40862. side: {
  40863. height: math.unit(5 + 7/12, "feet"),
  40864. weight: math.unit(2, "tons"),
  40865. name: "Side",
  40866. image: {
  40867. source: "./media/characters/erdno/side.svg",
  40868. extra: 1191/1144,
  40869. bottom: 40/1231
  40870. }
  40871. },
  40872. back: {
  40873. height: math.unit(5 + 7/12, "feet"),
  40874. weight: math.unit(2, "tons"),
  40875. name: "Back",
  40876. image: {
  40877. source: "./media/characters/erdno/back.svg",
  40878. extra: 1202/1146,
  40879. bottom: 17/1219
  40880. }
  40881. },
  40882. frontNsfw: {
  40883. height: math.unit(5 + 7/12, "feet"),
  40884. weight: math.unit(2, "tons"),
  40885. name: "Front (NSFW)",
  40886. image: {
  40887. source: "./media/characters/erdno/front-nsfw.svg",
  40888. extra: 1234/1129,
  40889. bottom: 35/1269
  40890. }
  40891. },
  40892. angledNsfw: {
  40893. height: math.unit(5 + 7/12, "feet"),
  40894. weight: math.unit(2, "tons"),
  40895. name: "Angled (NSFW)",
  40896. image: {
  40897. source: "./media/characters/erdno/angled-nsfw.svg",
  40898. extra: 1185/1139,
  40899. bottom: 36/1221
  40900. }
  40901. },
  40902. sideNsfw: {
  40903. height: math.unit(5 + 7/12, "feet"),
  40904. weight: math.unit(2, "tons"),
  40905. name: "Side (NSFW)",
  40906. image: {
  40907. source: "./media/characters/erdno/side-nsfw.svg",
  40908. extra: 1191/1144,
  40909. bottom: 40/1231
  40910. }
  40911. },
  40912. backNsfw: {
  40913. height: math.unit(5 + 7/12, "feet"),
  40914. weight: math.unit(2, "tons"),
  40915. name: "Back (NSFW)",
  40916. image: {
  40917. source: "./media/characters/erdno/back-nsfw.svg",
  40918. extra: 1202/1146,
  40919. bottom: 17/1219
  40920. }
  40921. },
  40922. frontHyper: {
  40923. height: math.unit(5 + 7/12, "feet"),
  40924. weight: math.unit(2, "tons"),
  40925. name: "Front (Hyper)",
  40926. image: {
  40927. source: "./media/characters/erdno/front-hyper.svg",
  40928. extra: 1298/1136,
  40929. bottom: 35/1333
  40930. }
  40931. },
  40932. },
  40933. [
  40934. {
  40935. name: "Normal",
  40936. height: math.unit(5 + 7/12, "feet"),
  40937. default: true
  40938. },
  40939. {
  40940. name: "Big",
  40941. height: math.unit(5.7, "meters")
  40942. },
  40943. {
  40944. name: "Macro",
  40945. height: math.unit(5.7, "kilometers")
  40946. },
  40947. {
  40948. name: "Megamacro",
  40949. height: math.unit(5.7, "earths")
  40950. },
  40951. ]
  40952. ))
  40953. characterMakers.push(() => makeCharacter(
  40954. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  40955. {
  40956. front: {
  40957. height: math.unit(5 + 10/12, "feet"),
  40958. weight: math.unit(150, "lb"),
  40959. name: "Front",
  40960. image: {
  40961. source: "./media/characters/jamie/front.svg",
  40962. extra: 1908/1768,
  40963. bottom: 19/1927
  40964. }
  40965. },
  40966. },
  40967. [
  40968. {
  40969. name: "Minimum",
  40970. height: math.unit(2, "cm")
  40971. },
  40972. {
  40973. name: "Micro",
  40974. height: math.unit(3, "inches")
  40975. },
  40976. {
  40977. name: "Normal",
  40978. height: math.unit(5 + 10/12, "feet"),
  40979. default: true
  40980. },
  40981. {
  40982. name: "Macro",
  40983. height: math.unit(150, "feet")
  40984. },
  40985. {
  40986. name: "Megamacro",
  40987. height: math.unit(10000, "m")
  40988. },
  40989. ]
  40990. ))
  40991. characterMakers.push(() => makeCharacter(
  40992. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40993. {
  40994. front: {
  40995. height: math.unit(2, "meters"),
  40996. weight: math.unit(100, "kg"),
  40997. name: "Front",
  40998. image: {
  40999. source: "./media/characters/shiron/front.svg",
  41000. extra: 2103/1985,
  41001. bottom: 98/2201
  41002. }
  41003. },
  41004. back: {
  41005. height: math.unit(2, "meters"),
  41006. weight: math.unit(100, "kg"),
  41007. name: "Back",
  41008. image: {
  41009. source: "./media/characters/shiron/back.svg",
  41010. extra: 2110/2015,
  41011. bottom: 89/2199
  41012. }
  41013. },
  41014. hand: {
  41015. height: math.unit(0.96, "feet"),
  41016. name: "Hand",
  41017. image: {
  41018. source: "./media/characters/shiron/hand.svg"
  41019. }
  41020. },
  41021. foot: {
  41022. height: math.unit(1.464, "feet"),
  41023. name: "Foot",
  41024. image: {
  41025. source: "./media/characters/shiron/foot.svg"
  41026. }
  41027. },
  41028. },
  41029. [
  41030. {
  41031. name: "Normal",
  41032. height: math.unit(2, "meters")
  41033. },
  41034. {
  41035. name: "Macro",
  41036. height: math.unit(500, "meters"),
  41037. default: true
  41038. },
  41039. {
  41040. name: "Megamacro",
  41041. height: math.unit(20, "km")
  41042. },
  41043. ]
  41044. ))
  41045. characterMakers.push(() => makeCharacter(
  41046. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  41047. {
  41048. front: {
  41049. height: math.unit(6, "feet"),
  41050. name: "Front",
  41051. image: {
  41052. source: "./media/characters/sam/front.svg",
  41053. extra: 849/826,
  41054. bottom: 19/868
  41055. }
  41056. },
  41057. },
  41058. [
  41059. {
  41060. name: "Normal",
  41061. height: math.unit(6, "feet"),
  41062. default: true
  41063. },
  41064. ]
  41065. ))
  41066. characterMakers.push(() => makeCharacter(
  41067. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  41068. {
  41069. front: {
  41070. height: math.unit(8 + 4/12, "feet"),
  41071. weight: math.unit(122, "kg"),
  41072. name: "Front",
  41073. image: {
  41074. source: "./media/characters/namori-kurogawa/front.svg",
  41075. extra: 1894/1576,
  41076. bottom: 34/1928
  41077. }
  41078. },
  41079. },
  41080. [
  41081. {
  41082. name: "Normal",
  41083. height: math.unit(8 + 4/12, "feet"),
  41084. default: true
  41085. },
  41086. ]
  41087. ))
  41088. characterMakers.push(() => makeCharacter(
  41089. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  41090. {
  41091. front: {
  41092. height: math.unit(9, "feet"),
  41093. weight: math.unit(621, "lb"),
  41094. name: "Front",
  41095. image: {
  41096. source: "./media/characters/unmru/front.svg",
  41097. extra: 1853/1747,
  41098. bottom: 73/1926
  41099. }
  41100. },
  41101. side: {
  41102. height: math.unit(9, "feet"),
  41103. weight: math.unit(621, "lb"),
  41104. name: "Side",
  41105. image: {
  41106. source: "./media/characters/unmru/side.svg",
  41107. extra: 1781/1671,
  41108. bottom: 127/1908
  41109. }
  41110. },
  41111. back: {
  41112. height: math.unit(9, "feet"),
  41113. weight: math.unit(621, "lb"),
  41114. name: "Back",
  41115. image: {
  41116. source: "./media/characters/unmru/back.svg",
  41117. extra: 1894/1765,
  41118. bottom: 75/1969
  41119. }
  41120. },
  41121. dick: {
  41122. height: math.unit(3, "feet"),
  41123. weight: math.unit(35, "lb"),
  41124. name: "Dick",
  41125. image: {
  41126. source: "./media/characters/unmru/dick.svg"
  41127. }
  41128. },
  41129. },
  41130. [
  41131. {
  41132. name: "Normal",
  41133. height: math.unit(9, "feet")
  41134. },
  41135. {
  41136. name: "Natural",
  41137. height: math.unit(27, "feet"),
  41138. default: true
  41139. },
  41140. {
  41141. name: "Giant",
  41142. height: math.unit(90, "feet")
  41143. },
  41144. {
  41145. name: "Kaiju",
  41146. height: math.unit(270, "feet")
  41147. },
  41148. {
  41149. name: "Macro",
  41150. height: math.unit(900, "feet")
  41151. },
  41152. {
  41153. name: "Macro+",
  41154. height: math.unit(2700, "feet")
  41155. },
  41156. {
  41157. name: "Megamacro",
  41158. height: math.unit(9000, "feet")
  41159. },
  41160. {
  41161. name: "City-Crushing",
  41162. height: math.unit(27000, "feet")
  41163. },
  41164. {
  41165. name: "Mountain-Mashing",
  41166. height: math.unit(90000, "feet")
  41167. },
  41168. {
  41169. name: "Earth-Eclipsing",
  41170. height: math.unit(2.7e8, "feet")
  41171. },
  41172. {
  41173. name: "Sol-Swallowing",
  41174. height: math.unit(9e10, "feet")
  41175. },
  41176. {
  41177. name: "Majoris-Munching",
  41178. height: math.unit(2.7e13, "feet")
  41179. },
  41180. ]
  41181. ))
  41182. characterMakers.push(() => makeCharacter(
  41183. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  41184. {
  41185. front: {
  41186. height: math.unit(1, "inch"),
  41187. name: "Front",
  41188. image: {
  41189. source: "./media/characters/squeaks-mouse/front.svg",
  41190. extra: 352/308,
  41191. bottom: 25/377
  41192. }
  41193. },
  41194. },
  41195. [
  41196. {
  41197. name: "Micro",
  41198. height: math.unit(1, "inch"),
  41199. default: true
  41200. },
  41201. ]
  41202. ))
  41203. characterMakers.push(() => makeCharacter(
  41204. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  41205. {
  41206. side: {
  41207. height: math.unit(35, "feet"),
  41208. name: "Side",
  41209. image: {
  41210. source: "./media/characters/sayko/side.svg",
  41211. extra: 1697/1021,
  41212. bottom: 82/1779
  41213. }
  41214. },
  41215. head: {
  41216. height: math.unit(16, "feet"),
  41217. name: "Head",
  41218. image: {
  41219. source: "./media/characters/sayko/head.svg"
  41220. }
  41221. },
  41222. forepaw: {
  41223. height: math.unit(7.85, "feet"),
  41224. name: "Forepaw",
  41225. image: {
  41226. source: "./media/characters/sayko/forepaw.svg"
  41227. }
  41228. },
  41229. hindpaw: {
  41230. height: math.unit(8.8, "feet"),
  41231. name: "Hindpaw",
  41232. image: {
  41233. source: "./media/characters/sayko/hindpaw.svg"
  41234. }
  41235. },
  41236. },
  41237. [
  41238. {
  41239. name: "Normal",
  41240. height: math.unit(35, "feet"),
  41241. default: true
  41242. },
  41243. {
  41244. name: "Colossus",
  41245. height: math.unit(100, "meters")
  41246. },
  41247. {
  41248. name: "\"Small\" Deity",
  41249. height: math.unit(1, "km")
  41250. },
  41251. {
  41252. name: "\"Large\" Deity",
  41253. height: math.unit(15, "km")
  41254. },
  41255. ]
  41256. ))
  41257. characterMakers.push(() => makeCharacter(
  41258. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  41259. {
  41260. front: {
  41261. height: math.unit(6, "feet"),
  41262. weight: math.unit(250, "lb"),
  41263. name: "Front",
  41264. image: {
  41265. source: "./media/characters/mukiro/front.svg",
  41266. extra: 1368/1310,
  41267. bottom: 34/1402
  41268. }
  41269. },
  41270. },
  41271. [
  41272. {
  41273. name: "Normal",
  41274. height: math.unit(6, "feet"),
  41275. default: true
  41276. },
  41277. ]
  41278. ))
  41279. characterMakers.push(() => makeCharacter(
  41280. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  41281. {
  41282. front: {
  41283. height: math.unit(12 + 4/12, "feet"),
  41284. name: "Front",
  41285. image: {
  41286. source: "./media/characters/zeph-the-tiger-god/front.svg",
  41287. extra: 1346/1311,
  41288. bottom: 65/1411
  41289. }
  41290. },
  41291. },
  41292. [
  41293. {
  41294. name: "Base",
  41295. height: math.unit(12 + 4/12, "feet"),
  41296. default: true
  41297. },
  41298. {
  41299. name: "Macro",
  41300. height: math.unit(150, "feet")
  41301. },
  41302. {
  41303. name: "Mega",
  41304. height: math.unit(2, "miles")
  41305. },
  41306. {
  41307. name: "Demi God",
  41308. height: math.unit(4, "AU")
  41309. },
  41310. {
  41311. name: "God Size",
  41312. height: math.unit(1, "universe")
  41313. },
  41314. ]
  41315. ))
  41316. characterMakers.push(() => makeCharacter(
  41317. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  41318. {
  41319. front: {
  41320. height: math.unit(3 + 3/12, "feet"),
  41321. weight: math.unit(88, "lb"),
  41322. name: "Front",
  41323. image: {
  41324. source: "./media/characters/trey/front.svg",
  41325. extra: 1815/1509,
  41326. bottom: 60/1875
  41327. }
  41328. },
  41329. },
  41330. [
  41331. {
  41332. name: "Normal",
  41333. height: math.unit(3 + 3/12, "feet"),
  41334. default: true
  41335. },
  41336. ]
  41337. ))
  41338. characterMakers.push(() => makeCharacter(
  41339. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  41340. {
  41341. front: {
  41342. height: math.unit(4, "meters"),
  41343. name: "Front",
  41344. image: {
  41345. source: "./media/characters/adelonda/front.svg",
  41346. extra: 1077/982,
  41347. bottom: 39/1116
  41348. }
  41349. },
  41350. back: {
  41351. height: math.unit(4, "meters"),
  41352. name: "Back",
  41353. image: {
  41354. source: "./media/characters/adelonda/back.svg",
  41355. extra: 1105/1003,
  41356. bottom: 25/1130
  41357. }
  41358. },
  41359. feral: {
  41360. height: math.unit(40/1.5, "meters"),
  41361. name: "Feral",
  41362. image: {
  41363. source: "./media/characters/adelonda/feral.svg",
  41364. extra: 597/271,
  41365. bottom: 387/984
  41366. }
  41367. },
  41368. },
  41369. [
  41370. {
  41371. name: "Normal",
  41372. height: math.unit(4, "meters"),
  41373. default: true
  41374. },
  41375. ]
  41376. ))
  41377. characterMakers.push(() => makeCharacter(
  41378. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  41379. {
  41380. front: {
  41381. height: math.unit(8 + 4/12, "feet"),
  41382. weight: math.unit(670, "lb"),
  41383. name: "Front",
  41384. image: {
  41385. source: "./media/characters/acadiel/front.svg",
  41386. extra: 1901/1595,
  41387. bottom: 142/2043
  41388. }
  41389. },
  41390. },
  41391. [
  41392. {
  41393. name: "Normal",
  41394. height: math.unit(8 + 4/12, "feet"),
  41395. default: true
  41396. },
  41397. {
  41398. name: "Macro",
  41399. height: math.unit(200, "feet")
  41400. },
  41401. ]
  41402. ))
  41403. characterMakers.push(() => makeCharacter(
  41404. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  41405. {
  41406. front: {
  41407. height: math.unit(6 + 2/12, "feet"),
  41408. weight: math.unit(185, "lb"),
  41409. name: "Front",
  41410. image: {
  41411. source: "./media/characters/kayne-ein/front.svg",
  41412. extra: 1780/1560,
  41413. bottom: 81/1861
  41414. }
  41415. },
  41416. },
  41417. [
  41418. {
  41419. name: "Normal",
  41420. height: math.unit(6 + 2/12, "feet"),
  41421. default: true
  41422. },
  41423. {
  41424. name: "Transformation Stage",
  41425. height: math.unit(15, "feet")
  41426. },
  41427. {
  41428. name: "Macro",
  41429. height: math.unit(150, "feet")
  41430. },
  41431. {
  41432. name: "Earth's Shadow",
  41433. height: math.unit(6200, "miles")
  41434. },
  41435. {
  41436. name: "Universal Demon",
  41437. height: math.unit(28e9, "parsecs")
  41438. },
  41439. {
  41440. name: "Multiverse God",
  41441. height: math.unit(3, "multiverses")
  41442. },
  41443. ]
  41444. ))
  41445. characterMakers.push(() => makeCharacter(
  41446. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  41447. {
  41448. front: {
  41449. height: math.unit(5 + 5/12, "feet"),
  41450. name: "Front",
  41451. image: {
  41452. source: "./media/characters/fawn/front.svg",
  41453. extra: 1873/1731,
  41454. bottom: 95/1968
  41455. }
  41456. },
  41457. back: {
  41458. height: math.unit(5 + 5/12, "feet"),
  41459. name: "Back",
  41460. image: {
  41461. source: "./media/characters/fawn/back.svg",
  41462. extra: 1813/1700,
  41463. bottom: 14/1827
  41464. }
  41465. },
  41466. hoof: {
  41467. height: math.unit(1.45, "feet"),
  41468. name: "Hoof",
  41469. image: {
  41470. source: "./media/characters/fawn/hoof.svg"
  41471. }
  41472. },
  41473. },
  41474. [
  41475. {
  41476. name: "Normal",
  41477. height: math.unit(5 + 5/12, "feet"),
  41478. default: true
  41479. },
  41480. ]
  41481. ))
  41482. characterMakers.push(() => makeCharacter(
  41483. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  41484. {
  41485. front: {
  41486. height: math.unit(2 + 5/12, "feet"),
  41487. name: "Front",
  41488. image: {
  41489. source: "./media/characters/orion/front.svg",
  41490. extra: 1366/1304,
  41491. bottom: 43/1409
  41492. }
  41493. },
  41494. paw: {
  41495. height: math.unit(0.52, "feet"),
  41496. name: "Paw",
  41497. image: {
  41498. source: "./media/characters/orion/paw.svg"
  41499. }
  41500. },
  41501. },
  41502. [
  41503. {
  41504. name: "Normal",
  41505. height: math.unit(2 + 5/12, "feet"),
  41506. default: true
  41507. },
  41508. ]
  41509. ))
  41510. characterMakers.push(() => makeCharacter(
  41511. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  41512. {
  41513. front: {
  41514. height: math.unit(5 + 10/12, "feet"),
  41515. name: "Front",
  41516. image: {
  41517. source: "./media/characters/vera/front.svg",
  41518. extra: 1680/1575,
  41519. bottom: 49/1729
  41520. }
  41521. },
  41522. back: {
  41523. height: math.unit(5 + 10/12, "feet"),
  41524. name: "Back",
  41525. image: {
  41526. source: "./media/characters/vera/back.svg",
  41527. extra: 1700/1588,
  41528. bottom: 18/1718
  41529. }
  41530. },
  41531. arcanine: {
  41532. height: math.unit(6 + 8/12, "feet"),
  41533. name: "Arcanine",
  41534. image: {
  41535. source: "./media/characters/vera/arcanine.svg",
  41536. extra: 1590/1511,
  41537. bottom: 71/1661
  41538. }
  41539. },
  41540. maw: {
  41541. height: math.unit(0.82, "feet"),
  41542. name: "Maw",
  41543. image: {
  41544. source: "./media/characters/vera/maw.svg"
  41545. }
  41546. },
  41547. mawArcanine: {
  41548. height: math.unit(0.97, "feet"),
  41549. name: "Maw (Arcanine)",
  41550. image: {
  41551. source: "./media/characters/vera/maw-arcanine.svg"
  41552. }
  41553. },
  41554. paw: {
  41555. height: math.unit(0.75, "feet"),
  41556. name: "Paw",
  41557. image: {
  41558. source: "./media/characters/vera/paw.svg"
  41559. }
  41560. },
  41561. pawprint: {
  41562. height: math.unit(0.52, "feet"),
  41563. name: "Pawprint",
  41564. image: {
  41565. source: "./media/characters/vera/pawprint.svg"
  41566. }
  41567. },
  41568. },
  41569. [
  41570. {
  41571. name: "Normal",
  41572. height: math.unit(5 + 10/12, "feet"),
  41573. default: true
  41574. },
  41575. {
  41576. name: "Macro",
  41577. height: math.unit(75, "feet")
  41578. },
  41579. ]
  41580. ))
  41581. characterMakers.push(() => makeCharacter(
  41582. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  41583. {
  41584. front: {
  41585. height: math.unit(4, "feet"),
  41586. weight: math.unit(40, "lb"),
  41587. name: "Front",
  41588. image: {
  41589. source: "./media/characters/orvan-rabbit/front.svg",
  41590. extra: 1896/1642,
  41591. bottom: 29/1925
  41592. }
  41593. },
  41594. },
  41595. [
  41596. {
  41597. name: "Normal",
  41598. height: math.unit(4, "feet"),
  41599. default: true
  41600. },
  41601. ]
  41602. ))
  41603. characterMakers.push(() => makeCharacter(
  41604. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  41605. {
  41606. front: {
  41607. height: math.unit(6, "feet"),
  41608. weight: math.unit(168, "lb"),
  41609. name: "Front",
  41610. image: {
  41611. source: "./media/characters/lisa/front.svg",
  41612. extra: 2065/1867,
  41613. bottom: 46/2111
  41614. }
  41615. },
  41616. back: {
  41617. height: math.unit(6, "feet"),
  41618. weight: math.unit(168, "lb"),
  41619. name: "Back",
  41620. image: {
  41621. source: "./media/characters/lisa/back.svg",
  41622. extra: 1982/1838,
  41623. bottom: 29/2011
  41624. }
  41625. },
  41626. maw: {
  41627. height: math.unit(0.81, "feet"),
  41628. name: "Maw",
  41629. image: {
  41630. source: "./media/characters/lisa/maw.svg"
  41631. }
  41632. },
  41633. paw: {
  41634. height: math.unit(0.9, "feet"),
  41635. name: "Paw",
  41636. image: {
  41637. source: "./media/characters/lisa/paw.svg"
  41638. }
  41639. },
  41640. caribousune: {
  41641. height: math.unit(7 + 2/12, "feet"),
  41642. weight: math.unit(268, "lb"),
  41643. name: "Caribousune",
  41644. image: {
  41645. source: "./media/characters/lisa/caribousune.svg",
  41646. extra: 1843/1633,
  41647. bottom: 29/1872
  41648. }
  41649. },
  41650. frontCaribousune: {
  41651. height: math.unit(7 + 2/12, "feet"),
  41652. weight: math.unit(268, "lb"),
  41653. name: "Front (Caribousune)",
  41654. image: {
  41655. source: "./media/characters/lisa/front-caribousune.svg",
  41656. extra: 1818/1638,
  41657. bottom: 52/1870
  41658. }
  41659. },
  41660. sideCaribousune: {
  41661. height: math.unit(7 + 2/12, "feet"),
  41662. weight: math.unit(268, "lb"),
  41663. name: "Side (Caribousune)",
  41664. image: {
  41665. source: "./media/characters/lisa/side-caribousune.svg",
  41666. extra: 1851/1635,
  41667. bottom: 16/1867
  41668. }
  41669. },
  41670. backCaribousune: {
  41671. height: math.unit(7 + 2/12, "feet"),
  41672. weight: math.unit(268, "lb"),
  41673. name: "Back (Caribousune)",
  41674. image: {
  41675. source: "./media/characters/lisa/back-caribousune.svg",
  41676. extra: 1801/1604,
  41677. bottom: 44/1845
  41678. }
  41679. },
  41680. caribou: {
  41681. height: math.unit(7 + 2/12, "feet"),
  41682. weight: math.unit(268, "lb"),
  41683. name: "Caribou",
  41684. image: {
  41685. source: "./media/characters/lisa/caribou.svg",
  41686. extra: 1843/1633,
  41687. bottom: 29/1872
  41688. }
  41689. },
  41690. frontCaribou: {
  41691. height: math.unit(7 + 2/12, "feet"),
  41692. weight: math.unit(268, "lb"),
  41693. name: "Front (Caribou)",
  41694. image: {
  41695. source: "./media/characters/lisa/front-caribou.svg",
  41696. extra: 1818/1638,
  41697. bottom: 52/1870
  41698. }
  41699. },
  41700. sideCaribou: {
  41701. height: math.unit(7 + 2/12, "feet"),
  41702. weight: math.unit(268, "lb"),
  41703. name: "Side (Caribou)",
  41704. image: {
  41705. source: "./media/characters/lisa/side-caribou.svg",
  41706. extra: 1851/1635,
  41707. bottom: 16/1867
  41708. }
  41709. },
  41710. backCaribou: {
  41711. height: math.unit(7 + 2/12, "feet"),
  41712. weight: math.unit(268, "lb"),
  41713. name: "Back (Caribou)",
  41714. image: {
  41715. source: "./media/characters/lisa/back-caribou.svg",
  41716. extra: 1801/1604,
  41717. bottom: 44/1845
  41718. }
  41719. },
  41720. mawCaribou: {
  41721. height: math.unit(1.45, "feet"),
  41722. name: "Maw (Caribou)",
  41723. image: {
  41724. source: "./media/characters/lisa/maw-caribou.svg"
  41725. }
  41726. },
  41727. mawCaribousune: {
  41728. height: math.unit(1.45, "feet"),
  41729. name: "Maw (Caribousune)",
  41730. image: {
  41731. source: "./media/characters/lisa/maw-caribousune.svg"
  41732. }
  41733. },
  41734. pawCaribousune: {
  41735. height: math.unit(1.61, "feet"),
  41736. name: "Paw (Caribou)",
  41737. image: {
  41738. source: "./media/characters/lisa/paw-caribousune.svg"
  41739. }
  41740. },
  41741. },
  41742. [
  41743. {
  41744. name: "Normal",
  41745. height: math.unit(6, "feet")
  41746. },
  41747. {
  41748. name: "God Size",
  41749. height: math.unit(72, "feet"),
  41750. default: true
  41751. },
  41752. {
  41753. name: "Towering",
  41754. height: math.unit(288, "feet")
  41755. },
  41756. {
  41757. name: "City Size",
  41758. height: math.unit(48384, "feet")
  41759. },
  41760. {
  41761. name: "Continental",
  41762. height: math.unit(4200, "miles")
  41763. },
  41764. {
  41765. name: "Planet Eater",
  41766. height: math.unit(42, "earths")
  41767. },
  41768. {
  41769. name: "Star Swallower",
  41770. height: math.unit(42, "solarradii")
  41771. },
  41772. {
  41773. name: "System Swallower",
  41774. height: math.unit(84000, "AU")
  41775. },
  41776. {
  41777. name: "Galaxy Gobbler",
  41778. height: math.unit(42, "galaxies")
  41779. },
  41780. {
  41781. name: "Universe Devourer",
  41782. height: math.unit(42, "universes")
  41783. },
  41784. {
  41785. name: "Multiverse Muncher",
  41786. height: math.unit(42, "multiverses")
  41787. },
  41788. ]
  41789. ))
  41790. characterMakers.push(() => makeCharacter(
  41791. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  41792. {
  41793. front: {
  41794. height: math.unit(36, "feet"),
  41795. name: "Front",
  41796. image: {
  41797. source: "./media/characters/shadow-rat/front.svg",
  41798. extra: 1845/1758,
  41799. bottom: 83/1928
  41800. }
  41801. },
  41802. },
  41803. [
  41804. {
  41805. name: "Macro",
  41806. height: math.unit(36, "feet"),
  41807. default: true
  41808. },
  41809. ]
  41810. ))
  41811. characterMakers.push(() => makeCharacter(
  41812. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  41813. {
  41814. side: {
  41815. height: math.unit(8, "feet"),
  41816. weight: math.unit(2630, "lb"),
  41817. name: "Side",
  41818. image: {
  41819. source: "./media/characters/torallia/side.svg",
  41820. extra: 2164/2021,
  41821. bottom: 371/2535
  41822. }
  41823. },
  41824. },
  41825. [
  41826. {
  41827. name: "Mortal Interaction",
  41828. height: math.unit(8, "feet")
  41829. },
  41830. {
  41831. name: "Natural",
  41832. height: math.unit(24, "feet"),
  41833. default: true
  41834. },
  41835. {
  41836. name: "Giant",
  41837. height: math.unit(80, "feet")
  41838. },
  41839. {
  41840. name: "Kaiju",
  41841. height: math.unit(240, "feet")
  41842. },
  41843. {
  41844. name: "Macro",
  41845. height: math.unit(800, "feet")
  41846. },
  41847. {
  41848. name: "Macro+",
  41849. height: math.unit(2400, "feet")
  41850. },
  41851. {
  41852. name: "Macro++",
  41853. height: math.unit(8000, "feet")
  41854. },
  41855. {
  41856. name: "City-Crushing",
  41857. height: math.unit(24000, "feet")
  41858. },
  41859. {
  41860. name: "Mountain-Mashing",
  41861. height: math.unit(80000, "feet")
  41862. },
  41863. {
  41864. name: "District Demolisher",
  41865. height: math.unit(240000, "feet")
  41866. },
  41867. {
  41868. name: "Tri-County Terror",
  41869. height: math.unit(800000, "feet")
  41870. },
  41871. {
  41872. name: "State Smasher",
  41873. height: math.unit(2.4e6, "feet")
  41874. },
  41875. {
  41876. name: "Nation Nemesis",
  41877. height: math.unit(8e6, "feet")
  41878. },
  41879. {
  41880. name: "Continent Cracker",
  41881. height: math.unit(2.4e7, "feet")
  41882. },
  41883. {
  41884. name: "Planet-Pillaging",
  41885. height: math.unit(8e7, "feet")
  41886. },
  41887. {
  41888. name: "Earth-Eclipsing",
  41889. height: math.unit(2.4e8, "feet")
  41890. },
  41891. {
  41892. name: "Jovian-Jostling",
  41893. height: math.unit(8e8, "feet")
  41894. },
  41895. {
  41896. name: "Gas Giant Gulper",
  41897. height: math.unit(2.4e9, "feet")
  41898. },
  41899. {
  41900. name: "Astral Annihilator",
  41901. height: math.unit(8e9, "feet")
  41902. },
  41903. {
  41904. name: "Celestial Conqueror",
  41905. height: math.unit(2.4e10, "feet")
  41906. },
  41907. {
  41908. name: "Sol-Swallowing",
  41909. height: math.unit(8e10, "feet")
  41910. },
  41911. {
  41912. name: "Hunter of the Heavens",
  41913. height: math.unit(2.4e13, "feet")
  41914. },
  41915. ]
  41916. ))
  41917. characterMakers.push(() => makeCharacter(
  41918. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  41919. {
  41920. front: {
  41921. height: math.unit(10, "feet"),
  41922. weight: math.unit(844, "kilograms"),
  41923. name: "Front",
  41924. image: {
  41925. source: "./media/characters/rebecca-pawlson/front.svg",
  41926. extra: 1196/1099,
  41927. bottom: 81/1277
  41928. },
  41929. extraAttributes: {
  41930. "pawSize": {
  41931. name: "Paw Size",
  41932. power: 2,
  41933. type: "area",
  41934. base: math.unit(0.2 * 0.375, "meters^2")
  41935. },
  41936. "handSize": {
  41937. name: "Hand Size",
  41938. power: 2,
  41939. type: "area",
  41940. base: math.unit(0.2 * 0.35, "meters^2")
  41941. },
  41942. "breastDiameter": {
  41943. name: "Breast Diameter",
  41944. power: 1,
  41945. type: "length",
  41946. base: math.unit(0.5, "meters")
  41947. },
  41948. "breastVolume": {
  41949. name: "Breast Volume",
  41950. power: 3,
  41951. type: "volume",
  41952. base: math.unit(0.065, "m^3")
  41953. },
  41954. "breastMass": {
  41955. name: "Breast Mass",
  41956. power: 3,
  41957. type: "mass",
  41958. base: math.unit(65, "kg")
  41959. },
  41960. "nippleDiameter": {
  41961. name: "Nipple Diameter",
  41962. power: 1,
  41963. type: "length",
  41964. base: math.unit(0.1, "meters")
  41965. },
  41966. }
  41967. },
  41968. back: {
  41969. height: math.unit(10, "feet"),
  41970. weight: math.unit(844, "kilograms"),
  41971. name: "Back",
  41972. image: {
  41973. source: "./media/characters/rebecca-pawlson/back.svg",
  41974. extra: 879/776,
  41975. bottom: 43/922
  41976. },
  41977. extraAttributes: {
  41978. "pawSize": {
  41979. name: "Paw Size",
  41980. power: 2,
  41981. type: "area",
  41982. base: math.unit(0.2 * 0.375, "meters^2")
  41983. },
  41984. "handSize": {
  41985. name: "Hand Size",
  41986. power: 2,
  41987. type: "area",
  41988. base: math.unit(0.2 * 0.35, "meters^2")
  41989. },
  41990. "breastDiameter": {
  41991. name: "Breast Diameter",
  41992. power: 1,
  41993. type: "length",
  41994. base: math.unit(0.5, "meters")
  41995. },
  41996. "breastVolume": {
  41997. name: "Breast Volume",
  41998. power: 3,
  41999. type: "volume",
  42000. base: math.unit(0.065, "m^3")
  42001. },
  42002. "breastMass": {
  42003. name: "Breast Mass",
  42004. power: 3,
  42005. type: "mass",
  42006. base: math.unit(65, "kg")
  42007. },
  42008. "nippleDiameter": {
  42009. name: "Nipple Diameter",
  42010. power: 1,
  42011. type: "length",
  42012. base: math.unit(0.1, "meters")
  42013. },
  42014. }
  42015. },
  42016. },
  42017. [
  42018. {
  42019. name: "Normal",
  42020. height: math.unit(6 + 8/12, "feet")
  42021. },
  42022. {
  42023. name: "Mini Macro",
  42024. height: math.unit(10, "feet"),
  42025. default: true
  42026. },
  42027. {
  42028. name: "Macro",
  42029. height: math.unit(100, "feet")
  42030. },
  42031. {
  42032. name: "Mega Macro",
  42033. height: math.unit(2500, "feet")
  42034. },
  42035. {
  42036. name: "Giga Macro",
  42037. height: math.unit(50, "miles")
  42038. },
  42039. ]
  42040. ))
  42041. characterMakers.push(() => makeCharacter(
  42042. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  42043. {
  42044. front: {
  42045. height: math.unit(7 + 6/12, "feet"),
  42046. weight: math.unit(600, "lb"),
  42047. name: "Front",
  42048. image: {
  42049. source: "./media/characters/moxie-nova/front.svg",
  42050. extra: 1734/1652,
  42051. bottom: 41/1775
  42052. }
  42053. },
  42054. },
  42055. [
  42056. {
  42057. name: "Normal",
  42058. height: math.unit(7 + 6/12, "feet"),
  42059. default: true
  42060. },
  42061. ]
  42062. ))
  42063. characterMakers.push(() => makeCharacter(
  42064. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  42065. {
  42066. goat: {
  42067. height: math.unit(4, "feet"),
  42068. weight: math.unit(180, "lb"),
  42069. name: "Goat",
  42070. image: {
  42071. source: "./media/characters/tiffany/goat.svg",
  42072. extra: 1845/1595,
  42073. bottom: 106/1951
  42074. }
  42075. },
  42076. front: {
  42077. height: math.unit(5, "feet"),
  42078. weight: math.unit(150, "lb"),
  42079. name: "Foxcoon",
  42080. image: {
  42081. source: "./media/characters/tiffany/foxcoon.svg",
  42082. extra: 1941/1845,
  42083. bottom: 58/1999
  42084. }
  42085. },
  42086. },
  42087. [
  42088. {
  42089. name: "Normal",
  42090. height: math.unit(5, "feet"),
  42091. default: true
  42092. },
  42093. ]
  42094. ))
  42095. characterMakers.push(() => makeCharacter(
  42096. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  42097. {
  42098. front: {
  42099. height: math.unit(8, "feet"),
  42100. weight: math.unit(300, "lb"),
  42101. name: "Front",
  42102. image: {
  42103. source: "./media/characters/raxinath/front.svg",
  42104. extra: 1407/1309,
  42105. bottom: 39/1446
  42106. }
  42107. },
  42108. back: {
  42109. height: math.unit(8, "feet"),
  42110. weight: math.unit(300, "lb"),
  42111. name: "Back",
  42112. image: {
  42113. source: "./media/characters/raxinath/back.svg",
  42114. extra: 1405/1315,
  42115. bottom: 9/1414
  42116. }
  42117. },
  42118. },
  42119. [
  42120. {
  42121. name: "Speck",
  42122. height: math.unit(0.5, "nm")
  42123. },
  42124. {
  42125. name: "Micro",
  42126. height: math.unit(3, "inches")
  42127. },
  42128. {
  42129. name: "Kobold",
  42130. height: math.unit(3, "feet")
  42131. },
  42132. {
  42133. name: "Normal",
  42134. height: math.unit(8, "feet"),
  42135. default: true
  42136. },
  42137. {
  42138. name: "Giant",
  42139. height: math.unit(50, "feet")
  42140. },
  42141. {
  42142. name: "Macro",
  42143. height: math.unit(1000, "feet")
  42144. },
  42145. {
  42146. name: "Megamacro",
  42147. height: math.unit(1, "mile")
  42148. },
  42149. ]
  42150. ))
  42151. characterMakers.push(() => makeCharacter(
  42152. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  42153. {
  42154. front: {
  42155. height: math.unit(10, "feet"),
  42156. weight: math.unit(1442, "lb"),
  42157. name: "Front",
  42158. image: {
  42159. source: "./media/characters/mal-dragon/front.svg",
  42160. extra: 1515/1444,
  42161. bottom: 113/1628
  42162. }
  42163. },
  42164. back: {
  42165. height: math.unit(10, "feet"),
  42166. weight: math.unit(1442, "lb"),
  42167. name: "Back",
  42168. image: {
  42169. source: "./media/characters/mal-dragon/back.svg",
  42170. extra: 1527/1434,
  42171. bottom: 25/1552
  42172. }
  42173. },
  42174. },
  42175. [
  42176. {
  42177. name: "Mortal Interaction",
  42178. height: math.unit(10, "feet"),
  42179. default: true
  42180. },
  42181. {
  42182. name: "Large",
  42183. height: math.unit(30, "feet")
  42184. },
  42185. {
  42186. name: "Kaiju",
  42187. height: math.unit(300, "feet")
  42188. },
  42189. {
  42190. name: "Megamacro",
  42191. height: math.unit(10000, "feet")
  42192. },
  42193. {
  42194. name: "Continent Cracker",
  42195. height: math.unit(30000000, "feet")
  42196. },
  42197. {
  42198. name: "Sol-Swallowing",
  42199. height: math.unit(1e11, "feet")
  42200. },
  42201. {
  42202. name: "Light Universal",
  42203. height: math.unit(5, "universes")
  42204. },
  42205. {
  42206. name: "Universe Atoms",
  42207. height: math.unit(1.829e9, "universes")
  42208. },
  42209. {
  42210. name: "Light Multiversal",
  42211. height: math.unit(5, "multiverses")
  42212. },
  42213. {
  42214. name: "Multiverse Atoms",
  42215. height: math.unit(1.829e9, "multiverses")
  42216. },
  42217. {
  42218. name: "Fabric of Time",
  42219. height: math.unit(1e262, "multiverses")
  42220. },
  42221. ]
  42222. ))
  42223. characterMakers.push(() => makeCharacter(
  42224. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  42225. {
  42226. front: {
  42227. height: math.unit(9, "feet"),
  42228. weight: math.unit(1050, "lb"),
  42229. name: "Front",
  42230. image: {
  42231. source: "./media/characters/tabitha/front.svg",
  42232. extra: 2083/1994,
  42233. bottom: 68/2151
  42234. }
  42235. },
  42236. },
  42237. [
  42238. {
  42239. name: "Baseline",
  42240. height: math.unit(9, "feet"),
  42241. default: true
  42242. },
  42243. {
  42244. name: "Giant",
  42245. height: math.unit(90, "feet")
  42246. },
  42247. {
  42248. name: "Macro",
  42249. height: math.unit(900, "feet")
  42250. },
  42251. {
  42252. name: "Megamacro",
  42253. height: math.unit(9000, "feet")
  42254. },
  42255. {
  42256. name: "City-Crushing",
  42257. height: math.unit(27000, "feet")
  42258. },
  42259. {
  42260. name: "Mountain-Mashing",
  42261. height: math.unit(90000, "feet")
  42262. },
  42263. {
  42264. name: "Nation Nemesis",
  42265. height: math.unit(9e6, "feet")
  42266. },
  42267. {
  42268. name: "Continent Cracker",
  42269. height: math.unit(27e6, "feet")
  42270. },
  42271. {
  42272. name: "Earth-Eclipsing",
  42273. height: math.unit(2.7e8, "feet")
  42274. },
  42275. {
  42276. name: "Gas Giant Gulper",
  42277. height: math.unit(2.7e9, "feet")
  42278. },
  42279. {
  42280. name: "Sol-Swallowing",
  42281. height: math.unit(9e10, "feet")
  42282. },
  42283. {
  42284. name: "Galaxy Gulper",
  42285. height: math.unit(9, "galaxies")
  42286. },
  42287. {
  42288. name: "Cosmos Churner",
  42289. height: math.unit(9, "universes")
  42290. },
  42291. ]
  42292. ))
  42293. characterMakers.push(() => makeCharacter(
  42294. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  42295. {
  42296. front: {
  42297. height: math.unit(160, "cm"),
  42298. weight: math.unit(55, "kg"),
  42299. name: "Front",
  42300. image: {
  42301. source: "./media/characters/tow/front.svg",
  42302. extra: 1751/1722,
  42303. bottom: 74/1825
  42304. }
  42305. },
  42306. },
  42307. [
  42308. {
  42309. name: "Norm",
  42310. height: math.unit(160, "cm")
  42311. },
  42312. {
  42313. name: "Casual",
  42314. height: math.unit(3200, "m"),
  42315. default: true
  42316. },
  42317. {
  42318. name: "Show-Off",
  42319. height: math.unit(160, "km")
  42320. },
  42321. ]
  42322. ))
  42323. characterMakers.push(() => makeCharacter(
  42324. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  42325. {
  42326. front: {
  42327. height: math.unit(7 + 11/12, "feet"),
  42328. weight: math.unit(342.8, "lb"),
  42329. name: "Front",
  42330. image: {
  42331. source: "./media/characters/vivian-orca-dragon/front.svg",
  42332. extra: 1890/1865,
  42333. bottom: 28/1918
  42334. }
  42335. },
  42336. },
  42337. [
  42338. {
  42339. name: "Micro",
  42340. height: math.unit(5, "inches")
  42341. },
  42342. {
  42343. name: "Normal",
  42344. height: math.unit(7 + 11/12, "feet"),
  42345. default: true
  42346. },
  42347. {
  42348. name: "Macro",
  42349. height: math.unit(395 + 7/12, "feet")
  42350. },
  42351. ]
  42352. ))
  42353. characterMakers.push(() => makeCharacter(
  42354. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  42355. {
  42356. side: {
  42357. height: math.unit(10, "feet"),
  42358. weight: math.unit(1442, "lb"),
  42359. name: "Side",
  42360. image: {
  42361. source: "./media/characters/lotherakon/side.svg",
  42362. extra: 1604/1497,
  42363. bottom: 89/1693
  42364. }
  42365. },
  42366. },
  42367. [
  42368. {
  42369. name: "Mortal Interaction",
  42370. height: math.unit(10, "feet")
  42371. },
  42372. {
  42373. name: "Large",
  42374. height: math.unit(30, "feet"),
  42375. default: true
  42376. },
  42377. {
  42378. name: "Giant",
  42379. height: math.unit(100, "feet")
  42380. },
  42381. {
  42382. name: "Kaiju",
  42383. height: math.unit(300, "feet")
  42384. },
  42385. {
  42386. name: "Macro",
  42387. height: math.unit(1000, "feet")
  42388. },
  42389. {
  42390. name: "Macro+",
  42391. height: math.unit(3000, "feet")
  42392. },
  42393. {
  42394. name: "Megamacro",
  42395. height: math.unit(10000, "feet")
  42396. },
  42397. {
  42398. name: "City-Crushing",
  42399. height: math.unit(30000, "feet")
  42400. },
  42401. {
  42402. name: "Continent Cracker",
  42403. height: math.unit(30e6, "feet")
  42404. },
  42405. {
  42406. name: "Earth Eclipsing",
  42407. height: math.unit(3e8, "feet")
  42408. },
  42409. {
  42410. name: "Gas Giant Gulper",
  42411. height: math.unit(3e9, "feet")
  42412. },
  42413. {
  42414. name: "Sol-Swallowing",
  42415. height: math.unit(1e11, "feet")
  42416. },
  42417. {
  42418. name: "System Swallower",
  42419. height: math.unit(3e14, "feet")
  42420. },
  42421. {
  42422. name: "Galaxy Gulper",
  42423. height: math.unit(10, "galaxies")
  42424. },
  42425. {
  42426. name: "Light Universal",
  42427. height: math.unit(5, "universes")
  42428. },
  42429. {
  42430. name: "Universe Palm",
  42431. height: math.unit(20, "universes")
  42432. },
  42433. {
  42434. name: "Light Multiversal",
  42435. height: math.unit(5, "multiverses")
  42436. },
  42437. {
  42438. name: "Multiverse Palm",
  42439. height: math.unit(20, "multiverses")
  42440. },
  42441. {
  42442. name: "Inferno Incarnate",
  42443. height: math.unit(1e7, "multiverses")
  42444. },
  42445. ]
  42446. ))
  42447. characterMakers.push(() => makeCharacter(
  42448. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  42449. {
  42450. front: {
  42451. height: math.unit(8, "feet"),
  42452. weight: math.unit(1200, "lb"),
  42453. name: "Front",
  42454. image: {
  42455. source: "./media/characters/malithee/front.svg",
  42456. extra: 1675/1640,
  42457. bottom: 162/1837
  42458. }
  42459. },
  42460. },
  42461. [
  42462. {
  42463. name: "Mortal Interaction",
  42464. height: math.unit(8, "feet"),
  42465. default: true
  42466. },
  42467. {
  42468. name: "Large",
  42469. height: math.unit(24, "feet")
  42470. },
  42471. {
  42472. name: "Kaiju",
  42473. height: math.unit(240, "feet")
  42474. },
  42475. {
  42476. name: "Megamacro",
  42477. height: math.unit(8000, "feet")
  42478. },
  42479. {
  42480. name: "Continent Cracker",
  42481. height: math.unit(24e6, "feet")
  42482. },
  42483. {
  42484. name: "Earth-Eclipsing",
  42485. height: math.unit(2.4e8, "feet")
  42486. },
  42487. {
  42488. name: "Sol-Swallowing",
  42489. height: math.unit(8e10, "feet")
  42490. },
  42491. {
  42492. name: "Galaxy Gulper",
  42493. height: math.unit(8, "galaxies")
  42494. },
  42495. {
  42496. name: "Light Universal",
  42497. height: math.unit(4, "universes")
  42498. },
  42499. {
  42500. name: "Universe Atoms",
  42501. height: math.unit(1.829e9, "universes")
  42502. },
  42503. {
  42504. name: "Light Multiversal",
  42505. height: math.unit(4, "multiverses")
  42506. },
  42507. {
  42508. name: "Multiverse Atoms",
  42509. height: math.unit(1.829e9, "multiverses")
  42510. },
  42511. {
  42512. name: "Nigh-Omnipresence",
  42513. height: math.unit(8e261, "multiverses")
  42514. },
  42515. ]
  42516. ))
  42517. characterMakers.push(() => makeCharacter(
  42518. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  42519. {
  42520. front: {
  42521. height: math.unit(10, "feet"),
  42522. weight: math.unit(1500, "lb"),
  42523. name: "Front",
  42524. image: {
  42525. source: "./media/characters/miles-thestia/front.svg",
  42526. extra: 1812/1727,
  42527. bottom: 86/1898
  42528. }
  42529. },
  42530. back: {
  42531. height: math.unit(10, "feet"),
  42532. weight: math.unit(1500, "lb"),
  42533. name: "Back",
  42534. image: {
  42535. source: "./media/characters/miles-thestia/back.svg",
  42536. extra: 1799/1690,
  42537. bottom: 47/1846
  42538. }
  42539. },
  42540. frontNsfw: {
  42541. height: math.unit(10, "feet"),
  42542. weight: math.unit(1500, "lb"),
  42543. name: "Front (NSFW)",
  42544. image: {
  42545. source: "./media/characters/miles-thestia/front-nsfw.svg",
  42546. extra: 1812/1727,
  42547. bottom: 86/1898
  42548. }
  42549. },
  42550. },
  42551. [
  42552. {
  42553. name: "Mini-Macro",
  42554. height: math.unit(10, "feet"),
  42555. default: true
  42556. },
  42557. ]
  42558. ))
  42559. characterMakers.push(() => makeCharacter(
  42560. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  42561. {
  42562. front: {
  42563. height: math.unit(25, "feet"),
  42564. name: "Front",
  42565. image: {
  42566. source: "./media/characters/titan-s-wulf/front.svg",
  42567. extra: 1560/1484,
  42568. bottom: 76/1636
  42569. }
  42570. },
  42571. },
  42572. [
  42573. {
  42574. name: "Smallest",
  42575. height: math.unit(25, "feet"),
  42576. default: true
  42577. },
  42578. {
  42579. name: "Normal",
  42580. height: math.unit(200, "feet")
  42581. },
  42582. {
  42583. name: "Macro",
  42584. height: math.unit(200000, "feet")
  42585. },
  42586. {
  42587. name: "Multiversal Original",
  42588. height: math.unit(10000, "multiverses")
  42589. },
  42590. ]
  42591. ))
  42592. characterMakers.push(() => makeCharacter(
  42593. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  42594. {
  42595. front: {
  42596. height: math.unit(8, "feet"),
  42597. weight: math.unit(553, "lb"),
  42598. name: "Front",
  42599. image: {
  42600. source: "./media/characters/tawendeh/front.svg",
  42601. extra: 2365/2268,
  42602. bottom: 83/2448
  42603. }
  42604. },
  42605. frontClothed: {
  42606. height: math.unit(8, "feet"),
  42607. weight: math.unit(553, "lb"),
  42608. name: "Front (Clothed)",
  42609. image: {
  42610. source: "./media/characters/tawendeh/front-clothed.svg",
  42611. extra: 2365/2268,
  42612. bottom: 83/2448
  42613. }
  42614. },
  42615. back: {
  42616. height: math.unit(8, "feet"),
  42617. weight: math.unit(553, "lb"),
  42618. name: "Back",
  42619. image: {
  42620. source: "./media/characters/tawendeh/back.svg",
  42621. extra: 2397/2294,
  42622. bottom: 42/2439
  42623. }
  42624. },
  42625. },
  42626. [
  42627. {
  42628. name: "Mortal Interaction",
  42629. height: math.unit(8, "feet"),
  42630. default: true
  42631. },
  42632. {
  42633. name: "Giant",
  42634. height: math.unit(80, "feet")
  42635. },
  42636. {
  42637. name: "Macro",
  42638. height: math.unit(800, "feet")
  42639. },
  42640. {
  42641. name: "Megamacro",
  42642. height: math.unit(8000, "feet")
  42643. },
  42644. {
  42645. name: "City-Crushing",
  42646. height: math.unit(24000, "feet")
  42647. },
  42648. {
  42649. name: "Mountain-Mashing",
  42650. height: math.unit(80000, "feet")
  42651. },
  42652. {
  42653. name: "Nation Nemesis",
  42654. height: math.unit(8e6, "feet")
  42655. },
  42656. {
  42657. name: "Continent Cracker",
  42658. height: math.unit(24e6, "feet")
  42659. },
  42660. {
  42661. name: "Earth-Eclipsing",
  42662. height: math.unit(2.4e8, "feet")
  42663. },
  42664. {
  42665. name: "Gas Giant Gulper",
  42666. height: math.unit(2.4e9, "feet")
  42667. },
  42668. {
  42669. name: "Sol-Swallowing",
  42670. height: math.unit(8e10, "feet")
  42671. },
  42672. {
  42673. name: "Galaxy Gulper",
  42674. height: math.unit(8, "galaxies")
  42675. },
  42676. {
  42677. name: "Cosmos Churner",
  42678. height: math.unit(8, "universes")
  42679. },
  42680. {
  42681. name: "Omnipotent Otter",
  42682. height: math.unit(80, "universes")
  42683. },
  42684. ]
  42685. ))
  42686. characterMakers.push(() => makeCharacter(
  42687. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  42688. {
  42689. front: {
  42690. height: math.unit(2.6, "meters"),
  42691. weight: math.unit(900, "kg"),
  42692. name: "Front",
  42693. image: {
  42694. source: "./media/characters/neesha/front.svg",
  42695. extra: 1803/1653,
  42696. bottom: 128/1931
  42697. }
  42698. },
  42699. },
  42700. [
  42701. {
  42702. name: "Normal",
  42703. height: math.unit(2.6, "meters"),
  42704. default: true
  42705. },
  42706. {
  42707. name: "Macro",
  42708. height: math.unit(50, "meters")
  42709. },
  42710. ]
  42711. ))
  42712. characterMakers.push(() => makeCharacter(
  42713. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  42714. {
  42715. front: {
  42716. height: math.unit(5, "feet"),
  42717. weight: math.unit(185, "lb"),
  42718. name: "Front",
  42719. image: {
  42720. source: "./media/characters/kyera/front.svg",
  42721. extra: 1875/1790,
  42722. bottom: 96/1971
  42723. }
  42724. },
  42725. },
  42726. [
  42727. {
  42728. name: "Normal",
  42729. height: math.unit(5, "feet"),
  42730. default: true
  42731. },
  42732. ]
  42733. ))
  42734. characterMakers.push(() => makeCharacter(
  42735. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  42736. {
  42737. front: {
  42738. height: math.unit(7 + 6/12, "feet"),
  42739. weight: math.unit(540, "lb"),
  42740. name: "Front",
  42741. image: {
  42742. source: "./media/characters/yuko/front.svg",
  42743. extra: 1282/1222,
  42744. bottom: 101/1383
  42745. }
  42746. },
  42747. frontClothed: {
  42748. height: math.unit(7 + 6/12, "feet"),
  42749. weight: math.unit(540, "lb"),
  42750. name: "Front (Clothed)",
  42751. image: {
  42752. source: "./media/characters/yuko/front-clothed.svg",
  42753. extra: 1282/1222,
  42754. bottom: 101/1383
  42755. }
  42756. },
  42757. },
  42758. [
  42759. {
  42760. name: "Normal",
  42761. height: math.unit(7 + 6/12, "feet"),
  42762. default: true
  42763. },
  42764. {
  42765. name: "Macro",
  42766. height: math.unit(26 + 9/12, "feet")
  42767. },
  42768. {
  42769. name: "Megamacro",
  42770. height: math.unit(300, "feet")
  42771. },
  42772. {
  42773. name: "Gigamacro",
  42774. height: math.unit(5000, "feet")
  42775. },
  42776. {
  42777. name: "Planetary",
  42778. height: math.unit(10000, "miles")
  42779. },
  42780. ]
  42781. ))
  42782. characterMakers.push(() => makeCharacter(
  42783. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  42784. {
  42785. front: {
  42786. height: math.unit(8 + 2/12, "feet"),
  42787. weight: math.unit(600, "lb"),
  42788. name: "Front",
  42789. image: {
  42790. source: "./media/characters/deam-nitrel/front.svg",
  42791. extra: 1308/1234,
  42792. bottom: 125/1433
  42793. }
  42794. },
  42795. },
  42796. [
  42797. {
  42798. name: "Normal",
  42799. height: math.unit(8 + 2/12, "feet"),
  42800. default: true
  42801. },
  42802. ]
  42803. ))
  42804. characterMakers.push(() => makeCharacter(
  42805. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  42806. {
  42807. front: {
  42808. height: math.unit(6.1, "feet"),
  42809. weight: math.unit(180, "lb"),
  42810. name: "Front",
  42811. image: {
  42812. source: "./media/characters/skyress/front.svg",
  42813. extra: 1045/915,
  42814. bottom: 28/1073
  42815. }
  42816. },
  42817. maw: {
  42818. height: math.unit(1, "feet"),
  42819. name: "Maw",
  42820. image: {
  42821. source: "./media/characters/skyress/maw.svg"
  42822. }
  42823. },
  42824. },
  42825. [
  42826. {
  42827. name: "Normal",
  42828. height: math.unit(6.1, "feet"),
  42829. default: true
  42830. },
  42831. {
  42832. name: "Macro",
  42833. height: math.unit(200, "feet")
  42834. },
  42835. ]
  42836. ))
  42837. characterMakers.push(() => makeCharacter(
  42838. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  42839. {
  42840. front: {
  42841. height: math.unit(4 + 2/12, "feet"),
  42842. weight: math.unit(40, "kg"),
  42843. name: "Front",
  42844. image: {
  42845. source: "./media/characters/amethyst-jones/front.svg",
  42846. extra: 1220/1150,
  42847. bottom: 101/1321
  42848. }
  42849. },
  42850. },
  42851. [
  42852. {
  42853. name: "Normal",
  42854. height: math.unit(4 + 2/12, "feet"),
  42855. default: true
  42856. },
  42857. ]
  42858. ))
  42859. characterMakers.push(() => makeCharacter(
  42860. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  42861. {
  42862. front: {
  42863. height: math.unit(1.7, "m"),
  42864. weight: math.unit(135, "lb"),
  42865. name: "Front",
  42866. image: {
  42867. source: "./media/characters/jade/front.svg",
  42868. extra: 1818/1767,
  42869. bottom: 32/1850
  42870. }
  42871. },
  42872. back: {
  42873. height: math.unit(1.7, "m"),
  42874. weight: math.unit(135, "lb"),
  42875. name: "Back",
  42876. image: {
  42877. source: "./media/characters/jade/back.svg",
  42878. extra: 1869/1809,
  42879. bottom: 35/1904
  42880. }
  42881. },
  42882. hand: {
  42883. height: math.unit(0.24, "m"),
  42884. name: "Hand",
  42885. image: {
  42886. source: "./media/characters/jade/hand.svg"
  42887. }
  42888. },
  42889. foot: {
  42890. height: math.unit(0.263, "m"),
  42891. name: "Foot",
  42892. image: {
  42893. source: "./media/characters/jade/foot.svg"
  42894. }
  42895. },
  42896. dick: {
  42897. height: math.unit(0.47, "m"),
  42898. name: "Dick",
  42899. image: {
  42900. source: "./media/characters/jade/dick.svg"
  42901. }
  42902. },
  42903. },
  42904. [
  42905. {
  42906. name: "Micro",
  42907. height: math.unit(22, "cm")
  42908. },
  42909. {
  42910. name: "Normal",
  42911. height: math.unit(1.7, "m"),
  42912. default: true
  42913. },
  42914. {
  42915. name: "Macro",
  42916. height: math.unit(152, "m")
  42917. },
  42918. ]
  42919. ))
  42920. characterMakers.push(() => makeCharacter(
  42921. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  42922. {
  42923. front: {
  42924. height: math.unit(100, "miles"),
  42925. weight: math.unit(20000, "tons"),
  42926. name: "Front",
  42927. image: {
  42928. source: "./media/characters/cookie/front.svg",
  42929. extra: 1125/1070,
  42930. bottom: 30/1155
  42931. }
  42932. },
  42933. },
  42934. [
  42935. {
  42936. name: "Big",
  42937. height: math.unit(50, "feet")
  42938. },
  42939. {
  42940. name: "Macro",
  42941. height: math.unit(100, "miles"),
  42942. default: true
  42943. },
  42944. {
  42945. name: "Megamacro",
  42946. height: math.unit(90000, "miles")
  42947. },
  42948. ]
  42949. ))
  42950. characterMakers.push(() => makeCharacter(
  42951. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  42952. {
  42953. front: {
  42954. height: math.unit(6, "feet"),
  42955. weight: math.unit(145, "lb"),
  42956. name: "Front",
  42957. image: {
  42958. source: "./media/characters/farzian/front.svg",
  42959. extra: 1902/1693,
  42960. bottom: 108/2010
  42961. }
  42962. },
  42963. },
  42964. [
  42965. {
  42966. name: "Macro",
  42967. height: math.unit(500, "feet"),
  42968. default: true
  42969. },
  42970. ]
  42971. ))
  42972. characterMakers.push(() => makeCharacter(
  42973. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  42974. {
  42975. front: {
  42976. height: math.unit(3 + 6/12, "feet"),
  42977. weight: math.unit(50, "lb"),
  42978. name: "Front",
  42979. image: {
  42980. source: "./media/characters/kimberly-tilson/front.svg",
  42981. extra: 1400/1322,
  42982. bottom: 36/1436
  42983. }
  42984. },
  42985. back: {
  42986. height: math.unit(3 + 6/12, "feet"),
  42987. weight: math.unit(50, "lb"),
  42988. name: "Back",
  42989. image: {
  42990. source: "./media/characters/kimberly-tilson/back.svg",
  42991. extra: 1370/1307,
  42992. bottom: 20/1390
  42993. }
  42994. },
  42995. },
  42996. [
  42997. {
  42998. name: "Normal",
  42999. height: math.unit(3 + 6/12, "feet"),
  43000. default: true
  43001. },
  43002. ]
  43003. ))
  43004. characterMakers.push(() => makeCharacter(
  43005. { name: "Harthos", species: ["peacekeeper", "allusus"], tags: ["anthro"] },
  43006. {
  43007. front: {
  43008. height: math.unit(350, "meters"),
  43009. weight: math.unit(7.57059e+8, "lb"),
  43010. name: "Front",
  43011. image: {
  43012. source: "./media/characters/harthos/front.svg",
  43013. extra: 455/446,
  43014. bottom: 15/470
  43015. },
  43016. form: "peacekeeper",
  43017. default: true
  43018. },
  43019. allusus_front: {
  43020. height: math.unit(270, "meters"),
  43021. weight: math.unit(3.47550e+8, "lb"),
  43022. name: "Front",
  43023. image: {
  43024. source: "./media/characters/harthos/allusus-front.svg",
  43025. extra: 455/446,
  43026. bottom: 15/470
  43027. },
  43028. form: "allusus",
  43029. },
  43030. },
  43031. [
  43032. {
  43033. name: "Macro",
  43034. height: math.unit(350, "meters"),
  43035. default: true,
  43036. form: "peacekeeper"
  43037. },
  43038. {
  43039. name: "Macro",
  43040. height: math.unit(270, "meters"),
  43041. default: true,
  43042. form: "allusus"
  43043. },
  43044. ],
  43045. {
  43046. "peacekeeper": {
  43047. name: "Peacekeeper",
  43048. default: true
  43049. },
  43050. "allusus": {
  43051. name: "Allusus",
  43052. },
  43053. }
  43054. ))
  43055. characterMakers.push(() => makeCharacter(
  43056. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  43057. {
  43058. front: {
  43059. height: math.unit(15, "feet"),
  43060. name: "Front",
  43061. image: {
  43062. source: "./media/characters/hypatia/front.svg",
  43063. extra: 1653/1591,
  43064. bottom: 79/1732
  43065. }
  43066. },
  43067. },
  43068. [
  43069. {
  43070. name: "Normal",
  43071. height: math.unit(15, "feet")
  43072. },
  43073. {
  43074. name: "Small",
  43075. height: math.unit(300, "feet")
  43076. },
  43077. {
  43078. name: "Macro",
  43079. height: math.unit(2500, "feet"),
  43080. default: true
  43081. },
  43082. {
  43083. name: "Mega Macro",
  43084. height: math.unit(1500, "miles")
  43085. },
  43086. {
  43087. name: "Giga Macro",
  43088. height: math.unit(1.5e6, "miles")
  43089. },
  43090. ]
  43091. ))
  43092. characterMakers.push(() => makeCharacter(
  43093. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  43094. {
  43095. front: {
  43096. height: math.unit(6, "feet"),
  43097. weight: math.unit(200, "lb"),
  43098. name: "Front",
  43099. image: {
  43100. source: "./media/characters/wulver/front.svg",
  43101. extra: 1724/1632,
  43102. bottom: 130/1854
  43103. }
  43104. },
  43105. frontNsfw: {
  43106. height: math.unit(6, "feet"),
  43107. weight: math.unit(200, "lb"),
  43108. name: "Front (NSFW)",
  43109. image: {
  43110. source: "./media/characters/wulver/front-nsfw.svg",
  43111. extra: 1724/1632,
  43112. bottom: 130/1854
  43113. }
  43114. },
  43115. },
  43116. [
  43117. {
  43118. name: "Human-Sized",
  43119. height: math.unit(6, "feet")
  43120. },
  43121. {
  43122. name: "Normal",
  43123. height: math.unit(4, "meters"),
  43124. default: true
  43125. },
  43126. {
  43127. name: "Large",
  43128. height: math.unit(6, "m")
  43129. },
  43130. ]
  43131. ))
  43132. characterMakers.push(() => makeCharacter(
  43133. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  43134. {
  43135. front: {
  43136. height: math.unit(7, "feet"),
  43137. name: "Front",
  43138. image: {
  43139. source: "./media/characters/maru/front.svg",
  43140. extra: 1595/1570,
  43141. bottom: 0/1595
  43142. }
  43143. },
  43144. },
  43145. [
  43146. {
  43147. name: "Normal",
  43148. height: math.unit(7, "feet"),
  43149. default: true
  43150. },
  43151. {
  43152. name: "Macro",
  43153. height: math.unit(700, "feet")
  43154. },
  43155. {
  43156. name: "Mega Macro",
  43157. height: math.unit(25, "miles")
  43158. },
  43159. ]
  43160. ))
  43161. characterMakers.push(() => makeCharacter(
  43162. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  43163. {
  43164. front: {
  43165. height: math.unit(6, "feet"),
  43166. weight: math.unit(170, "lb"),
  43167. name: "Front",
  43168. image: {
  43169. source: "./media/characters/xenon/front.svg",
  43170. extra: 1376/1305,
  43171. bottom: 56/1432
  43172. }
  43173. },
  43174. back: {
  43175. height: math.unit(6, "feet"),
  43176. weight: math.unit(170, "lb"),
  43177. name: "Back",
  43178. image: {
  43179. source: "./media/characters/xenon/back.svg",
  43180. extra: 1328/1259,
  43181. bottom: 95/1423
  43182. }
  43183. },
  43184. maw: {
  43185. height: math.unit(0.52, "feet"),
  43186. name: "Maw",
  43187. image: {
  43188. source: "./media/characters/xenon/maw.svg"
  43189. }
  43190. },
  43191. handLeft: {
  43192. height: math.unit(0.82 * 169 / 153, "feet"),
  43193. name: "Hand (Left)",
  43194. image: {
  43195. source: "./media/characters/xenon/hand-left.svg"
  43196. }
  43197. },
  43198. handRight: {
  43199. height: math.unit(0.82, "feet"),
  43200. name: "Hand (Right)",
  43201. image: {
  43202. source: "./media/characters/xenon/hand-right.svg"
  43203. }
  43204. },
  43205. footLeft: {
  43206. height: math.unit(1.13, "feet"),
  43207. name: "Foot (Left)",
  43208. image: {
  43209. source: "./media/characters/xenon/foot-left.svg"
  43210. }
  43211. },
  43212. footRight: {
  43213. height: math.unit(1.13 * 194 / 196, "feet"),
  43214. name: "Foot (Right)",
  43215. image: {
  43216. source: "./media/characters/xenon/foot-right.svg"
  43217. }
  43218. },
  43219. },
  43220. [
  43221. {
  43222. name: "Micro",
  43223. height: math.unit(0.8, "inches")
  43224. },
  43225. {
  43226. name: "Normal",
  43227. height: math.unit(6, "feet")
  43228. },
  43229. {
  43230. name: "Macro",
  43231. height: math.unit(50, "feet"),
  43232. default: true
  43233. },
  43234. {
  43235. name: "Macro+",
  43236. height: math.unit(250, "feet")
  43237. },
  43238. {
  43239. name: "Megamacro",
  43240. height: math.unit(1500, "feet")
  43241. },
  43242. ]
  43243. ))
  43244. characterMakers.push(() => makeCharacter(
  43245. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  43246. {
  43247. front: {
  43248. height: math.unit(7 + 5/12, "feet"),
  43249. name: "Front",
  43250. image: {
  43251. source: "./media/characters/zane/front.svg",
  43252. extra: 1260/1203,
  43253. bottom: 94/1354
  43254. }
  43255. },
  43256. back: {
  43257. height: math.unit(5.05, "feet"),
  43258. name: "Back",
  43259. image: {
  43260. source: "./media/characters/zane/back.svg",
  43261. extra: 893/829,
  43262. bottom: 30/923
  43263. }
  43264. },
  43265. werewolf: {
  43266. height: math.unit(11, "feet"),
  43267. name: "Werewolf",
  43268. image: {
  43269. source: "./media/characters/zane/werewolf.svg",
  43270. extra: 1383/1323,
  43271. bottom: 89/1472
  43272. }
  43273. },
  43274. foot: {
  43275. height: math.unit(1.46, "feet"),
  43276. name: "Foot",
  43277. image: {
  43278. source: "./media/characters/zane/foot.svg"
  43279. }
  43280. },
  43281. footFront: {
  43282. height: math.unit(0.784, "feet"),
  43283. name: "Foot (Front)",
  43284. image: {
  43285. source: "./media/characters/zane/foot-front.svg"
  43286. }
  43287. },
  43288. dick: {
  43289. height: math.unit(1.95, "feet"),
  43290. name: "Dick",
  43291. image: {
  43292. source: "./media/characters/zane/dick.svg"
  43293. }
  43294. },
  43295. dickWerewolf: {
  43296. height: math.unit(3.77, "feet"),
  43297. name: "Dick (Werewolf)",
  43298. image: {
  43299. source: "./media/characters/zane/dick.svg"
  43300. }
  43301. },
  43302. },
  43303. [
  43304. {
  43305. name: "Normal",
  43306. height: math.unit(7 + 5/12, "feet"),
  43307. default: true
  43308. },
  43309. ]
  43310. ))
  43311. characterMakers.push(() => makeCharacter(
  43312. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  43313. {
  43314. front: {
  43315. height: math.unit(6 + 2/12, "feet"),
  43316. weight: math.unit(284, "lb"),
  43317. name: "Front",
  43318. image: {
  43319. source: "./media/characters/benni-desparque/front.svg",
  43320. extra: 878/729,
  43321. bottom: 58/936
  43322. }
  43323. },
  43324. back: {
  43325. height: math.unit(6 + 2/12, "feet"),
  43326. weight: math.unit(284, "lb"),
  43327. name: "Back",
  43328. image: {
  43329. source: "./media/characters/benni-desparque/back.svg",
  43330. extra: 901/756,
  43331. bottom: 51/952
  43332. }
  43333. },
  43334. dressed: {
  43335. height: math.unit(6 + 2/12 + 0.5/12, "feet"),
  43336. weight: math.unit(284, "lb"),
  43337. name: "Dressed",
  43338. image: {
  43339. source: "./media/characters/benni-desparque/dressed.svg",
  43340. extra: 1514/1276,
  43341. bottom: 65/1579
  43342. }
  43343. },
  43344. hand: {
  43345. height: math.unit(1.28, "feet"),
  43346. name: "Hand",
  43347. image: {
  43348. source: "./media/characters/benni-desparque/hand.svg"
  43349. }
  43350. },
  43351. foot: {
  43352. height: math.unit(1.53, "feet"),
  43353. name: "Foot",
  43354. image: {
  43355. source: "./media/characters/benni-desparque/foot.svg"
  43356. }
  43357. },
  43358. aiControlUnit: {
  43359. height: math.unit(0.175, "feet"),
  43360. name: "AI Control Unit",
  43361. image: {
  43362. source: "./media/characters/benni-desparque/ai-control-unit.svg"
  43363. }
  43364. },
  43365. },
  43366. [
  43367. {
  43368. name: "Civilian",
  43369. height: math.unit(6 + 2/12, "feet")
  43370. },
  43371. {
  43372. name: "Normal",
  43373. height: math.unit(98, "feet"),
  43374. default: true
  43375. },
  43376. {
  43377. name: "Kaiju Fighter",
  43378. height: math.unit(268, "feet")
  43379. },
  43380. ]
  43381. ))
  43382. characterMakers.push(() => makeCharacter(
  43383. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  43384. {
  43385. front: {
  43386. height: math.unit(5, "feet"),
  43387. weight: math.unit(105, "lb"),
  43388. name: "Front",
  43389. image: {
  43390. source: "./media/characters/maxine/front.svg",
  43391. extra: 1386/1250,
  43392. bottom: 71/1457
  43393. }
  43394. },
  43395. },
  43396. [
  43397. {
  43398. name: "Normal",
  43399. height: math.unit(5, "feet"),
  43400. default: true
  43401. },
  43402. ]
  43403. ))
  43404. characterMakers.push(() => makeCharacter(
  43405. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  43406. {
  43407. front: {
  43408. height: math.unit(11 + 7/12, "feet"),
  43409. weight: math.unit(9576, "lb"),
  43410. name: "Front",
  43411. image: {
  43412. source: "./media/characters/scaly/front.svg",
  43413. extra: 888/867,
  43414. bottom: 36/924
  43415. }
  43416. },
  43417. },
  43418. [
  43419. {
  43420. name: "Normal",
  43421. height: math.unit(11 + 7/12, "feet"),
  43422. default: true
  43423. },
  43424. ]
  43425. ))
  43426. characterMakers.push(() => makeCharacter(
  43427. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  43428. {
  43429. front: {
  43430. height: math.unit(6 + 3/12, "feet"),
  43431. name: "Front",
  43432. image: {
  43433. source: "./media/characters/saelria/front.svg",
  43434. extra: 1243/1138,
  43435. bottom: 46/1289
  43436. }
  43437. },
  43438. },
  43439. [
  43440. {
  43441. name: "Micro",
  43442. height: math.unit(6, "inches"),
  43443. },
  43444. {
  43445. name: "Normal",
  43446. height: math.unit(6 + 3/12, "feet"),
  43447. default: true
  43448. },
  43449. {
  43450. name: "Macro",
  43451. height: math.unit(25, "feet")
  43452. },
  43453. ]
  43454. ))
  43455. characterMakers.push(() => makeCharacter(
  43456. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  43457. {
  43458. front: {
  43459. height: math.unit(80, "meters"),
  43460. weight: math.unit(7000, "tonnes"),
  43461. name: "Front",
  43462. image: {
  43463. source: "./media/characters/tef/front.svg",
  43464. extra: 2036/1991,
  43465. bottom: 54/2090
  43466. }
  43467. },
  43468. back: {
  43469. height: math.unit(80, "meters"),
  43470. weight: math.unit(7000, "tonnes"),
  43471. name: "Back",
  43472. image: {
  43473. source: "./media/characters/tef/back.svg",
  43474. extra: 2036/1991,
  43475. bottom: 54/2090
  43476. }
  43477. },
  43478. },
  43479. [
  43480. {
  43481. name: "Macro",
  43482. height: math.unit(80, "meters"),
  43483. default: true
  43484. },
  43485. ]
  43486. ))
  43487. characterMakers.push(() => makeCharacter(
  43488. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  43489. {
  43490. front: {
  43491. height: math.unit(13, "feet"),
  43492. weight: math.unit(6, "tons"),
  43493. name: "Front",
  43494. image: {
  43495. source: "./media/characters/rover/front.svg",
  43496. extra: 1233/1156,
  43497. bottom: 50/1283
  43498. }
  43499. },
  43500. back: {
  43501. height: math.unit(13, "feet"),
  43502. weight: math.unit(6, "tons"),
  43503. name: "Back",
  43504. image: {
  43505. source: "./media/characters/rover/back.svg",
  43506. extra: 1327/1258,
  43507. bottom: 39/1366
  43508. }
  43509. },
  43510. },
  43511. [
  43512. {
  43513. name: "Normal",
  43514. height: math.unit(13, "feet"),
  43515. default: true
  43516. },
  43517. {
  43518. name: "Macro",
  43519. height: math.unit(1300, "feet")
  43520. },
  43521. {
  43522. name: "Megamacro",
  43523. height: math.unit(1300, "miles")
  43524. },
  43525. {
  43526. name: "Gigamacro",
  43527. height: math.unit(1300000, "miles")
  43528. },
  43529. ]
  43530. ))
  43531. characterMakers.push(() => makeCharacter(
  43532. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  43533. {
  43534. front: {
  43535. height: math.unit(10, "feet"),
  43536. weight: math.unit(500, "lb"),
  43537. name: "Front",
  43538. image: {
  43539. source: "./media/characters/ariz/front.svg",
  43540. extra: 461/450,
  43541. bottom: 16/477
  43542. }
  43543. },
  43544. },
  43545. [
  43546. {
  43547. name: "MiniMacro",
  43548. height: math.unit(10, "feet"),
  43549. default: true
  43550. },
  43551. ]
  43552. ))
  43553. characterMakers.push(() => makeCharacter(
  43554. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  43555. {
  43556. front: {
  43557. height: math.unit(6, "feet"),
  43558. weight: math.unit(140, "lb"),
  43559. name: "Front",
  43560. image: {
  43561. source: "./media/characters/sigrun/front.svg",
  43562. extra: 1418/1359,
  43563. bottom: 27/1445
  43564. }
  43565. },
  43566. },
  43567. [
  43568. {
  43569. name: "Macro",
  43570. height: math.unit(35, "feet"),
  43571. default: true
  43572. },
  43573. ]
  43574. ))
  43575. characterMakers.push(() => makeCharacter(
  43576. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  43577. {
  43578. front: {
  43579. height: math.unit(6, "feet"),
  43580. weight: math.unit(150, "lb"),
  43581. name: "Front",
  43582. image: {
  43583. source: "./media/characters/numin/front.svg",
  43584. extra: 1433/1388,
  43585. bottom: 12/1445
  43586. }
  43587. },
  43588. },
  43589. [
  43590. {
  43591. name: "Macro",
  43592. height: math.unit(21.5, "km"),
  43593. default: true
  43594. },
  43595. ]
  43596. ))
  43597. characterMakers.push(() => makeCharacter(
  43598. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  43599. {
  43600. front: {
  43601. height: math.unit(6, "feet"),
  43602. weight: math.unit(463, "lb"),
  43603. name: "Front",
  43604. image: {
  43605. source: "./media/characters/melwa/front.svg",
  43606. extra: 1307/1248,
  43607. bottom: 93/1400
  43608. }
  43609. },
  43610. },
  43611. [
  43612. {
  43613. name: "Macro",
  43614. height: math.unit(50, "meters"),
  43615. default: true
  43616. },
  43617. ]
  43618. ))
  43619. characterMakers.push(() => makeCharacter(
  43620. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  43621. {
  43622. front: {
  43623. height: math.unit(325, "feet"),
  43624. name: "Front",
  43625. image: {
  43626. source: "./media/characters/zorkaiju/front.svg",
  43627. extra: 1955/1814,
  43628. bottom: 40/1995
  43629. }
  43630. },
  43631. frontExtended: {
  43632. height: math.unit(325, "feet"),
  43633. name: "Front (Extended)",
  43634. image: {
  43635. source: "./media/characters/zorkaiju/front-extended.svg",
  43636. extra: 1955/1814,
  43637. bottom: 40/1995
  43638. }
  43639. },
  43640. side: {
  43641. height: math.unit(325, "feet"),
  43642. name: "Side",
  43643. image: {
  43644. source: "./media/characters/zorkaiju/side.svg",
  43645. extra: 1495/1396,
  43646. bottom: 17/1512
  43647. }
  43648. },
  43649. sideExtended: {
  43650. height: math.unit(325, "feet"),
  43651. name: "Side (Extended)",
  43652. image: {
  43653. source: "./media/characters/zorkaiju/side-extended.svg",
  43654. extra: 1495/1396,
  43655. bottom: 17/1512
  43656. }
  43657. },
  43658. back: {
  43659. height: math.unit(325, "feet"),
  43660. name: "Back",
  43661. image: {
  43662. source: "./media/characters/zorkaiju/back.svg",
  43663. extra: 1959/1821,
  43664. bottom: 31/1990
  43665. }
  43666. },
  43667. backExtended: {
  43668. height: math.unit(325, "feet"),
  43669. name: "Back (Extended)",
  43670. image: {
  43671. source: "./media/characters/zorkaiju/back-extended.svg",
  43672. extra: 1959/1821,
  43673. bottom: 31/1990
  43674. }
  43675. },
  43676. hand: {
  43677. height: math.unit(58.4, "feet"),
  43678. name: "Hand",
  43679. image: {
  43680. source: "./media/characters/zorkaiju/hand.svg"
  43681. }
  43682. },
  43683. handExtended: {
  43684. height: math.unit(61.4, "feet"),
  43685. name: "Hand (Extended)",
  43686. image: {
  43687. source: "./media/characters/zorkaiju/hand-extended.svg"
  43688. }
  43689. },
  43690. foot: {
  43691. height: math.unit(95, "feet"),
  43692. name: "Foot",
  43693. image: {
  43694. source: "./media/characters/zorkaiju/foot.svg"
  43695. }
  43696. },
  43697. leftArm: {
  43698. height: math.unit(59, "feet"),
  43699. name: "Left Arm",
  43700. image: {
  43701. source: "./media/characters/zorkaiju/left-arm.svg"
  43702. }
  43703. },
  43704. rightArm: {
  43705. height: math.unit(59, "feet"),
  43706. name: "Right Arm",
  43707. image: {
  43708. source: "./media/characters/zorkaiju/right-arm.svg"
  43709. }
  43710. },
  43711. leftArmExtended: {
  43712. height: math.unit(59 * 1.033546, "feet"),
  43713. name: "Left Arm (Extended)",
  43714. image: {
  43715. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  43716. }
  43717. },
  43718. rightArmExtended: {
  43719. height: math.unit(59 * 1.0496, "feet"),
  43720. name: "Right Arm (Extended)",
  43721. image: {
  43722. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  43723. }
  43724. },
  43725. tail: {
  43726. height: math.unit(104, "feet"),
  43727. name: "Tail",
  43728. image: {
  43729. source: "./media/characters/zorkaiju/tail.svg"
  43730. }
  43731. },
  43732. tailExtended: {
  43733. height: math.unit(104, "feet"),
  43734. name: "Tail (Extended)",
  43735. image: {
  43736. source: "./media/characters/zorkaiju/tail-extended.svg"
  43737. }
  43738. },
  43739. tailBottom: {
  43740. height: math.unit(104, "feet"),
  43741. name: "Tail Bottom",
  43742. image: {
  43743. source: "./media/characters/zorkaiju/tail-bottom.svg"
  43744. }
  43745. },
  43746. crystal: {
  43747. height: math.unit(27.54, "feet"),
  43748. name: "Crystal",
  43749. image: {
  43750. source: "./media/characters/zorkaiju/crystal.svg"
  43751. }
  43752. },
  43753. },
  43754. [
  43755. {
  43756. name: "Kaiju",
  43757. height: math.unit(325, "feet"),
  43758. default: true
  43759. },
  43760. ]
  43761. ))
  43762. characterMakers.push(() => makeCharacter(
  43763. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  43764. {
  43765. front: {
  43766. height: math.unit(6 + 1/12, "feet"),
  43767. weight: math.unit(115, "lb"),
  43768. name: "Front",
  43769. image: {
  43770. source: "./media/characters/bailey-belfry/front.svg",
  43771. extra: 1240/1121,
  43772. bottom: 101/1341
  43773. }
  43774. },
  43775. },
  43776. [
  43777. {
  43778. name: "Normal",
  43779. height: math.unit(6 + 1/12, "feet"),
  43780. default: true
  43781. },
  43782. ]
  43783. ))
  43784. characterMakers.push(() => makeCharacter(
  43785. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  43786. {
  43787. side: {
  43788. height: math.unit(4, "meters"),
  43789. weight: math.unit(250, "kg"),
  43790. name: "Side",
  43791. image: {
  43792. source: "./media/characters/blacky/side.svg",
  43793. extra: 1027/919,
  43794. bottom: 43/1070
  43795. }
  43796. },
  43797. maw: {
  43798. height: math.unit(1, "meters"),
  43799. name: "Maw",
  43800. image: {
  43801. source: "./media/characters/blacky/maw.svg"
  43802. }
  43803. },
  43804. paw: {
  43805. height: math.unit(1, "meters"),
  43806. name: "Paw",
  43807. image: {
  43808. source: "./media/characters/blacky/paw.svg"
  43809. }
  43810. },
  43811. },
  43812. [
  43813. {
  43814. name: "Normal",
  43815. height: math.unit(4, "meters"),
  43816. default: true
  43817. },
  43818. ]
  43819. ))
  43820. characterMakers.push(() => makeCharacter(
  43821. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  43822. {
  43823. front: {
  43824. height: math.unit(170, "cm"),
  43825. weight: math.unit(66, "kg"),
  43826. name: "Front",
  43827. image: {
  43828. source: "./media/characters/thux-ei/front.svg",
  43829. extra: 1109/1011,
  43830. bottom: 8/1117
  43831. }
  43832. },
  43833. },
  43834. [
  43835. {
  43836. name: "Normal",
  43837. height: math.unit(170, "cm"),
  43838. default: true
  43839. },
  43840. ]
  43841. ))
  43842. characterMakers.push(() => makeCharacter(
  43843. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  43844. {
  43845. front: {
  43846. height: math.unit(5, "feet"),
  43847. weight: math.unit(120, "lb"),
  43848. name: "Front",
  43849. image: {
  43850. source: "./media/characters/roxanne-voltaire/front.svg",
  43851. extra: 1901/1779,
  43852. bottom: 53/1954
  43853. }
  43854. },
  43855. },
  43856. [
  43857. {
  43858. name: "Normal",
  43859. height: math.unit(5, "feet"),
  43860. default: true
  43861. },
  43862. {
  43863. name: "Giant",
  43864. height: math.unit(50, "feet")
  43865. },
  43866. {
  43867. name: "Titan",
  43868. height: math.unit(500, "feet")
  43869. },
  43870. {
  43871. name: "Macro",
  43872. height: math.unit(5000, "feet")
  43873. },
  43874. {
  43875. name: "Megamacro",
  43876. height: math.unit(50000, "feet")
  43877. },
  43878. {
  43879. name: "Gigamacro",
  43880. height: math.unit(500000, "feet")
  43881. },
  43882. {
  43883. name: "Teramacro",
  43884. height: math.unit(5e6, "feet")
  43885. },
  43886. ]
  43887. ))
  43888. characterMakers.push(() => makeCharacter(
  43889. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  43890. {
  43891. front: {
  43892. height: math.unit(6 + 2/12, "feet"),
  43893. name: "Front",
  43894. image: {
  43895. source: "./media/characters/squeaks/front.svg",
  43896. extra: 1823/1768,
  43897. bottom: 138/1961
  43898. }
  43899. },
  43900. },
  43901. [
  43902. {
  43903. name: "Micro",
  43904. height: math.unit(0.5, "inches")
  43905. },
  43906. {
  43907. name: "Normal",
  43908. height: math.unit(6 + 2/12, "feet"),
  43909. default: true
  43910. },
  43911. {
  43912. name: "Macro",
  43913. height: math.unit(600, "feet")
  43914. },
  43915. ]
  43916. ))
  43917. characterMakers.push(() => makeCharacter(
  43918. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  43919. {
  43920. front: {
  43921. height: math.unit(1.72, "meters"),
  43922. name: "Front",
  43923. image: {
  43924. source: "./media/characters/archinger/front.svg",
  43925. extra: 1861/1675,
  43926. bottom: 125/1986
  43927. }
  43928. },
  43929. back: {
  43930. height: math.unit(1.72, "meters"),
  43931. name: "Back",
  43932. image: {
  43933. source: "./media/characters/archinger/back.svg",
  43934. extra: 1844/1701,
  43935. bottom: 104/1948
  43936. }
  43937. },
  43938. cock: {
  43939. height: math.unit(0.59, "feet"),
  43940. name: "Cock",
  43941. image: {
  43942. source: "./media/characters/archinger/cock.svg"
  43943. }
  43944. },
  43945. },
  43946. [
  43947. {
  43948. name: "Normal",
  43949. height: math.unit(1.72, "meters"),
  43950. default: true
  43951. },
  43952. {
  43953. name: "Macro",
  43954. height: math.unit(84, "meters")
  43955. },
  43956. {
  43957. name: "Macro+",
  43958. height: math.unit(112, "meters")
  43959. },
  43960. {
  43961. name: "Macro++",
  43962. height: math.unit(960, "meters")
  43963. },
  43964. {
  43965. name: "Macro+++",
  43966. height: math.unit(4, "km")
  43967. },
  43968. {
  43969. name: "Macro++++",
  43970. height: math.unit(48, "km")
  43971. },
  43972. {
  43973. name: "Macro+++++",
  43974. height: math.unit(4500, "km")
  43975. },
  43976. ]
  43977. ))
  43978. characterMakers.push(() => makeCharacter(
  43979. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  43980. {
  43981. front: {
  43982. height: math.unit(5 + 5/12, "feet"),
  43983. name: "Front",
  43984. image: {
  43985. source: "./media/characters/alsnapz/front.svg",
  43986. extra: 1157/1065,
  43987. bottom: 42/1199
  43988. }
  43989. },
  43990. },
  43991. [
  43992. {
  43993. name: "Normal",
  43994. height: math.unit(5 + 5/12, "feet"),
  43995. default: true
  43996. },
  43997. ]
  43998. ))
  43999. characterMakers.push(() => makeCharacter(
  44000. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  44001. {
  44002. side: {
  44003. height: math.unit(3.2, "earths"),
  44004. name: "Side",
  44005. image: {
  44006. source: "./media/characters/mag/side.svg",
  44007. extra: 1331/1008,
  44008. bottom: 52/1383
  44009. }
  44010. },
  44011. wing: {
  44012. height: math.unit(1.94, "earths"),
  44013. name: "Wing",
  44014. image: {
  44015. source: "./media/characters/mag/wing.svg"
  44016. }
  44017. },
  44018. dick: {
  44019. height: math.unit(1.8, "earths"),
  44020. name: "Dick",
  44021. image: {
  44022. source: "./media/characters/mag/dick.svg"
  44023. }
  44024. },
  44025. ass: {
  44026. height: math.unit(1.33, "earths"),
  44027. name: "Ass",
  44028. image: {
  44029. source: "./media/characters/mag/ass.svg"
  44030. }
  44031. },
  44032. head: {
  44033. height: math.unit(1.1, "earths"),
  44034. name: "Head",
  44035. image: {
  44036. source: "./media/characters/mag/head.svg"
  44037. }
  44038. },
  44039. maw: {
  44040. height: math.unit(1.62, "earths"),
  44041. name: "Maw",
  44042. image: {
  44043. source: "./media/characters/mag/maw.svg"
  44044. }
  44045. },
  44046. },
  44047. [
  44048. {
  44049. name: "Small",
  44050. height: math.unit(162, "feet")
  44051. },
  44052. {
  44053. name: "Normal",
  44054. height: math.unit(3.2, "earths"),
  44055. default: true
  44056. },
  44057. ]
  44058. ))
  44059. characterMakers.push(() => makeCharacter(
  44060. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  44061. {
  44062. front: {
  44063. height: math.unit(512, "feet"),
  44064. weight: math.unit(63509, "tonnes"),
  44065. name: "Front",
  44066. image: {
  44067. source: "./media/characters/vorrel-harroc/front.svg",
  44068. extra: 1075/1063,
  44069. bottom: 62/1137
  44070. }
  44071. },
  44072. },
  44073. [
  44074. {
  44075. name: "Normal",
  44076. height: math.unit(10, "feet")
  44077. },
  44078. {
  44079. name: "Macro",
  44080. height: math.unit(512, "feet"),
  44081. default: true
  44082. },
  44083. {
  44084. name: "Megamacro",
  44085. height: math.unit(256, "miles")
  44086. },
  44087. {
  44088. name: "Gigamacro",
  44089. height: math.unit(4096, "miles")
  44090. },
  44091. ]
  44092. ))
  44093. characterMakers.push(() => makeCharacter(
  44094. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  44095. {
  44096. side: {
  44097. height: math.unit(50, "feet"),
  44098. name: "Side",
  44099. image: {
  44100. source: "./media/characters/froimar/side.svg",
  44101. extra: 855/638,
  44102. bottom: 99/954
  44103. }
  44104. },
  44105. },
  44106. [
  44107. {
  44108. name: "Macro",
  44109. height: math.unit(50, "feet"),
  44110. default: true
  44111. },
  44112. ]
  44113. ))
  44114. characterMakers.push(() => makeCharacter(
  44115. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  44116. {
  44117. front: {
  44118. height: math.unit(210, "miles"),
  44119. name: "Front",
  44120. image: {
  44121. source: "./media/characters/timothy/front.svg",
  44122. extra: 1007/943,
  44123. bottom: 62/1069
  44124. }
  44125. },
  44126. frontSkirt: {
  44127. height: math.unit(210, "miles"),
  44128. name: "Front (Skirt)",
  44129. image: {
  44130. source: "./media/characters/timothy/front-skirt.svg",
  44131. extra: 1007/943,
  44132. bottom: 62/1069
  44133. }
  44134. },
  44135. frontCoat: {
  44136. height: math.unit(210, "miles"),
  44137. name: "Front (Coat)",
  44138. image: {
  44139. source: "./media/characters/timothy/front-coat.svg",
  44140. extra: 1007/943,
  44141. bottom: 62/1069
  44142. }
  44143. },
  44144. },
  44145. [
  44146. {
  44147. name: "Macro",
  44148. height: math.unit(210, "miles"),
  44149. default: true
  44150. },
  44151. {
  44152. name: "Megamacro",
  44153. height: math.unit(210000, "miles")
  44154. },
  44155. ]
  44156. ))
  44157. characterMakers.push(() => makeCharacter(
  44158. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  44159. {
  44160. front: {
  44161. height: math.unit(188, "feet"),
  44162. name: "Front",
  44163. image: {
  44164. source: "./media/characters/pyotr/front.svg",
  44165. extra: 1912/1826,
  44166. bottom: 18/1930
  44167. }
  44168. },
  44169. },
  44170. [
  44171. {
  44172. name: "Macro",
  44173. height: math.unit(188, "feet"),
  44174. default: true
  44175. },
  44176. {
  44177. name: "Megamacro",
  44178. height: math.unit(8, "miles")
  44179. },
  44180. ]
  44181. ))
  44182. characterMakers.push(() => makeCharacter(
  44183. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  44184. {
  44185. side: {
  44186. height: math.unit(10, "feet"),
  44187. weight: math.unit(4500, "lb"),
  44188. name: "Side",
  44189. image: {
  44190. source: "./media/characters/ackart/side.svg",
  44191. extra: 1776/1668,
  44192. bottom: 116/1892
  44193. }
  44194. },
  44195. },
  44196. [
  44197. {
  44198. name: "Normal",
  44199. height: math.unit(10, "feet"),
  44200. default: true
  44201. },
  44202. ]
  44203. ))
  44204. characterMakers.push(() => makeCharacter(
  44205. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  44206. {
  44207. side: {
  44208. height: math.unit(21, "feet"),
  44209. name: "Side",
  44210. image: {
  44211. source: "./media/characters/nolow/side.svg",
  44212. extra: 1484/1434,
  44213. bottom: 85/1569
  44214. }
  44215. },
  44216. sideErect: {
  44217. height: math.unit(21, "feet"),
  44218. name: "Side-erect",
  44219. image: {
  44220. source: "./media/characters/nolow/side-erect.svg",
  44221. extra: 1484/1434,
  44222. bottom: 85/1569
  44223. }
  44224. },
  44225. },
  44226. [
  44227. {
  44228. name: "Regular",
  44229. height: math.unit(12, "feet")
  44230. },
  44231. {
  44232. name: "Big Chee",
  44233. height: math.unit(21, "feet"),
  44234. default: true
  44235. },
  44236. ]
  44237. ))
  44238. characterMakers.push(() => makeCharacter(
  44239. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  44240. {
  44241. front: {
  44242. height: math.unit(7, "feet"),
  44243. weight: math.unit(250, "lb"),
  44244. name: "Front",
  44245. image: {
  44246. source: "./media/characters/nines/front.svg",
  44247. extra: 1741/1607,
  44248. bottom: 41/1782
  44249. }
  44250. },
  44251. side: {
  44252. height: math.unit(7, "feet"),
  44253. weight: math.unit(250, "lb"),
  44254. name: "Side",
  44255. image: {
  44256. source: "./media/characters/nines/side.svg",
  44257. extra: 1854/1735,
  44258. bottom: 93/1947
  44259. }
  44260. },
  44261. back: {
  44262. height: math.unit(7, "feet"),
  44263. weight: math.unit(250, "lb"),
  44264. name: "Back",
  44265. image: {
  44266. source: "./media/characters/nines/back.svg",
  44267. extra: 1748/1615,
  44268. bottom: 20/1768
  44269. }
  44270. },
  44271. },
  44272. [
  44273. {
  44274. name: "Megamacro",
  44275. height: math.unit(99, "km"),
  44276. default: true
  44277. },
  44278. ]
  44279. ))
  44280. characterMakers.push(() => makeCharacter(
  44281. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  44282. {
  44283. front: {
  44284. height: math.unit(5 + 10/12, "feet"),
  44285. weight: math.unit(210, "lb"),
  44286. name: "Front",
  44287. image: {
  44288. source: "./media/characters/zenith/front.svg",
  44289. extra: 1531/1452,
  44290. bottom: 198/1729
  44291. }
  44292. },
  44293. back: {
  44294. height: math.unit(5 + 10/12, "feet"),
  44295. weight: math.unit(210, "lb"),
  44296. name: "Back",
  44297. image: {
  44298. source: "./media/characters/zenith/back.svg",
  44299. extra: 1571/1487,
  44300. bottom: 75/1646
  44301. }
  44302. },
  44303. },
  44304. [
  44305. {
  44306. name: "Normal",
  44307. height: math.unit(5 + 10/12, "feet"),
  44308. default: true
  44309. }
  44310. ]
  44311. ))
  44312. characterMakers.push(() => makeCharacter(
  44313. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  44314. {
  44315. front: {
  44316. height: math.unit(4, "feet"),
  44317. weight: math.unit(60, "lb"),
  44318. name: "Front",
  44319. image: {
  44320. source: "./media/characters/jasper/front.svg",
  44321. extra: 1450/1379,
  44322. bottom: 19/1469
  44323. }
  44324. },
  44325. },
  44326. [
  44327. {
  44328. name: "Normal",
  44329. height: math.unit(4, "feet"),
  44330. default: true
  44331. },
  44332. ]
  44333. ))
  44334. characterMakers.push(() => makeCharacter(
  44335. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  44336. {
  44337. front: {
  44338. height: math.unit(6 + 5/12, "feet"),
  44339. weight: math.unit(290, "lb"),
  44340. name: "Front",
  44341. image: {
  44342. source: "./media/characters/tiberius-thyben/front.svg",
  44343. extra: 757/739,
  44344. bottom: 39/796
  44345. }
  44346. },
  44347. },
  44348. [
  44349. {
  44350. name: "Micro",
  44351. height: math.unit(1.5, "inches")
  44352. },
  44353. {
  44354. name: "Normal",
  44355. height: math.unit(6 + 5/12, "feet"),
  44356. default: true
  44357. },
  44358. {
  44359. name: "Macro",
  44360. height: math.unit(300, "feet")
  44361. },
  44362. ]
  44363. ))
  44364. characterMakers.push(() => makeCharacter(
  44365. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  44366. {
  44367. front: {
  44368. height: math.unit(5 + 6/12, "feet"),
  44369. weight: math.unit(60, "kg"),
  44370. name: "Front",
  44371. image: {
  44372. source: "./media/characters/sabre/front.svg",
  44373. extra: 738/671,
  44374. bottom: 27/765
  44375. }
  44376. },
  44377. },
  44378. [
  44379. {
  44380. name: "Teeny",
  44381. height: math.unit(2, "inches")
  44382. },
  44383. {
  44384. name: "Smol",
  44385. height: math.unit(8, "inches")
  44386. },
  44387. {
  44388. name: "Normal",
  44389. height: math.unit(5 + 6/12, "feet"),
  44390. default: true
  44391. },
  44392. {
  44393. name: "Mini-Macro",
  44394. height: math.unit(15, "feet")
  44395. },
  44396. {
  44397. name: "Macro",
  44398. height: math.unit(50, "feet")
  44399. },
  44400. ]
  44401. ))
  44402. characterMakers.push(() => makeCharacter(
  44403. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  44404. {
  44405. front: {
  44406. height: math.unit(6 + 4/12, "feet"),
  44407. weight: math.unit(170, "lb"),
  44408. name: "Front",
  44409. image: {
  44410. source: "./media/characters/charlie/front.svg",
  44411. extra: 1348/1228,
  44412. bottom: 15/1363
  44413. }
  44414. },
  44415. },
  44416. [
  44417. {
  44418. name: "Macro",
  44419. height: math.unit(1700, "meters"),
  44420. default: true
  44421. },
  44422. {
  44423. name: "MegaMacro",
  44424. height: math.unit(20400, "meters")
  44425. },
  44426. ]
  44427. ))
  44428. characterMakers.push(() => makeCharacter(
  44429. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  44430. {
  44431. front: {
  44432. height: math.unit(1.96, "meters"),
  44433. weight: math.unit(220, "lb"),
  44434. name: "Front",
  44435. image: {
  44436. source: "./media/characters/susan-grant/front.svg",
  44437. extra: 482/478,
  44438. bottom: 7/489
  44439. }
  44440. },
  44441. },
  44442. [
  44443. {
  44444. name: "Normal",
  44445. height: math.unit(1.96, "meters"),
  44446. default: true
  44447. },
  44448. {
  44449. name: "Macro",
  44450. height: math.unit(76.2, "meters")
  44451. },
  44452. {
  44453. name: "MegaMacro",
  44454. height: math.unit(305, "meters")
  44455. },
  44456. {
  44457. name: "GigaMacro",
  44458. height: math.unit(1220, "meters")
  44459. },
  44460. {
  44461. name: "SuperMacro",
  44462. height: math.unit(4878, "meters")
  44463. },
  44464. ]
  44465. ))
  44466. characterMakers.push(() => makeCharacter(
  44467. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  44468. {
  44469. front: {
  44470. height: math.unit(5 + 4/12, "feet"),
  44471. weight: math.unit(110, "lb"),
  44472. name: "Front",
  44473. image: {
  44474. source: "./media/characters/axel-isanov/front.svg",
  44475. extra: 1096/1065,
  44476. bottom: 13/1109
  44477. }
  44478. },
  44479. },
  44480. [
  44481. {
  44482. name: "Normal",
  44483. height: math.unit(5 + 4/12, "feet"),
  44484. default: true
  44485. },
  44486. ]
  44487. ))
  44488. characterMakers.push(() => makeCharacter(
  44489. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  44490. {
  44491. front: {
  44492. height: math.unit(9, "feet"),
  44493. weight: math.unit(467, "lb"),
  44494. name: "Front",
  44495. image: {
  44496. source: "./media/characters/necahual/front.svg",
  44497. extra: 920/873,
  44498. bottom: 26/946
  44499. }
  44500. },
  44501. back: {
  44502. height: math.unit(9, "feet"),
  44503. weight: math.unit(467, "lb"),
  44504. name: "Back",
  44505. image: {
  44506. source: "./media/characters/necahual/back.svg",
  44507. extra: 930/884,
  44508. bottom: 16/946
  44509. }
  44510. },
  44511. frontUnderwear: {
  44512. height: math.unit(9, "feet"),
  44513. weight: math.unit(467, "lb"),
  44514. name: "Front (Underwear)",
  44515. image: {
  44516. source: "./media/characters/necahual/front-underwear.svg",
  44517. extra: 920/873,
  44518. bottom: 26/946
  44519. }
  44520. },
  44521. frontDressed: {
  44522. height: math.unit(9, "feet"),
  44523. weight: math.unit(467, "lb"),
  44524. name: "Front (Dressed)",
  44525. image: {
  44526. source: "./media/characters/necahual/front-dressed.svg",
  44527. extra: 920/873,
  44528. bottom: 26/946
  44529. }
  44530. },
  44531. },
  44532. [
  44533. {
  44534. name: "Comprsesed",
  44535. height: math.unit(9, "feet")
  44536. },
  44537. {
  44538. name: "Natural",
  44539. height: math.unit(15, "feet"),
  44540. default: true
  44541. },
  44542. {
  44543. name: "Boosted",
  44544. height: math.unit(50, "feet")
  44545. },
  44546. {
  44547. name: "Boosted+",
  44548. height: math.unit(150, "feet")
  44549. },
  44550. {
  44551. name: "Max",
  44552. height: math.unit(500, "feet")
  44553. },
  44554. ]
  44555. ))
  44556. characterMakers.push(() => makeCharacter(
  44557. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  44558. {
  44559. front: {
  44560. height: math.unit(22 + 1/12, "feet"),
  44561. weight: math.unit(3200, "lb"),
  44562. name: "Front",
  44563. image: {
  44564. source: "./media/characters/theo-acacia/front.svg",
  44565. extra: 1796/1741,
  44566. bottom: 83/1879
  44567. }
  44568. },
  44569. frontUnderwear: {
  44570. height: math.unit(22 + 1/12, "feet"),
  44571. weight: math.unit(3200, "lb"),
  44572. name: "Front (Underwear)",
  44573. image: {
  44574. source: "./media/characters/theo-acacia/front-underwear.svg",
  44575. extra: 1796/1741,
  44576. bottom: 83/1879
  44577. }
  44578. },
  44579. frontNude: {
  44580. height: math.unit(22 + 1/12, "feet"),
  44581. weight: math.unit(3200, "lb"),
  44582. name: "Front (Nude)",
  44583. image: {
  44584. source: "./media/characters/theo-acacia/front-nude.svg",
  44585. extra: 1796/1741,
  44586. bottom: 83/1879
  44587. }
  44588. },
  44589. },
  44590. [
  44591. {
  44592. name: "Normal",
  44593. height: math.unit(22 + 1/12, "feet"),
  44594. default: true
  44595. },
  44596. ]
  44597. ))
  44598. characterMakers.push(() => makeCharacter(
  44599. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44600. {
  44601. front: {
  44602. height: math.unit(20, "feet"),
  44603. name: "Front",
  44604. image: {
  44605. source: "./media/characters/astra/front.svg",
  44606. extra: 1850/1714,
  44607. bottom: 106/1956
  44608. }
  44609. },
  44610. frontUndressed: {
  44611. height: math.unit(20, "feet"),
  44612. name: "Front (Undressed)",
  44613. image: {
  44614. source: "./media/characters/astra/front-undressed.svg",
  44615. extra: 1926/1749,
  44616. bottom: 0/1926
  44617. }
  44618. },
  44619. hand: {
  44620. height: math.unit(1.53, "feet"),
  44621. name: "Hand",
  44622. image: {
  44623. source: "./media/characters/astra/hand.svg"
  44624. }
  44625. },
  44626. paw: {
  44627. height: math.unit(1.53, "feet"),
  44628. name: "Paw",
  44629. image: {
  44630. source: "./media/characters/astra/paw.svg"
  44631. }
  44632. },
  44633. },
  44634. [
  44635. {
  44636. name: "Smallest",
  44637. height: math.unit(20, "feet")
  44638. },
  44639. {
  44640. name: "Normal",
  44641. height: math.unit(1e9, "miles"),
  44642. default: true
  44643. },
  44644. {
  44645. name: "Larger",
  44646. height: math.unit(5, "multiverses")
  44647. },
  44648. {
  44649. name: "Largest",
  44650. height: math.unit(1e9, "multiverses")
  44651. },
  44652. ]
  44653. ))
  44654. characterMakers.push(() => makeCharacter(
  44655. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44656. {
  44657. front: {
  44658. height: math.unit(8, "feet"),
  44659. name: "Front",
  44660. image: {
  44661. source: "./media/characters/breanna/front.svg",
  44662. extra: 1912/1632,
  44663. bottom: 33/1945
  44664. }
  44665. },
  44666. },
  44667. [
  44668. {
  44669. name: "Smallest",
  44670. height: math.unit(8, "feet")
  44671. },
  44672. {
  44673. name: "Normal",
  44674. height: math.unit(1, "mile"),
  44675. default: true
  44676. },
  44677. {
  44678. name: "Maximum",
  44679. height: math.unit(1500000000000, "lightyears")
  44680. },
  44681. ]
  44682. ))
  44683. characterMakers.push(() => makeCharacter(
  44684. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  44685. {
  44686. front: {
  44687. height: math.unit(5 + 11/12, "feet"),
  44688. weight: math.unit(155, "lb"),
  44689. name: "Front",
  44690. image: {
  44691. source: "./media/characters/cai/front.svg",
  44692. extra: 1823/1702,
  44693. bottom: 32/1855
  44694. }
  44695. },
  44696. back: {
  44697. height: math.unit(5 + 11/12, "feet"),
  44698. weight: math.unit(155, "lb"),
  44699. name: "Back",
  44700. image: {
  44701. source: "./media/characters/cai/back.svg",
  44702. extra: 1809/1708,
  44703. bottom: 31/1840
  44704. }
  44705. },
  44706. },
  44707. [
  44708. {
  44709. name: "Normal",
  44710. height: math.unit(5 + 11/12, "feet"),
  44711. default: true
  44712. },
  44713. {
  44714. name: "Big",
  44715. height: math.unit(15, "feet")
  44716. },
  44717. {
  44718. name: "Macro",
  44719. height: math.unit(200, "feet")
  44720. },
  44721. ]
  44722. ))
  44723. characterMakers.push(() => makeCharacter(
  44724. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  44725. {
  44726. front: {
  44727. height: math.unit(5 + 6/12, "feet"),
  44728. weight: math.unit(160, "lb"),
  44729. name: "Front",
  44730. image: {
  44731. source: "./media/characters/zanna-virtuedòttir/front.svg",
  44732. extra: 1227/1174,
  44733. bottom: 37/1264
  44734. }
  44735. },
  44736. },
  44737. [
  44738. {
  44739. name: "Macro",
  44740. height: math.unit(444, "meters"),
  44741. default: true
  44742. },
  44743. ]
  44744. ))
  44745. characterMakers.push(() => makeCharacter(
  44746. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  44747. {
  44748. front: {
  44749. height: math.unit(18 + 7/12, "feet"),
  44750. name: "Front",
  44751. image: {
  44752. source: "./media/characters/rex/front.svg",
  44753. extra: 1941/1807,
  44754. bottom: 66/2007
  44755. }
  44756. },
  44757. back: {
  44758. height: math.unit(18 + 7/12, "feet"),
  44759. name: "Back",
  44760. image: {
  44761. source: "./media/characters/rex/back.svg",
  44762. extra: 1937/1822,
  44763. bottom: 42/1979
  44764. }
  44765. },
  44766. boot: {
  44767. height: math.unit(3.45, "feet"),
  44768. name: "Boot",
  44769. image: {
  44770. source: "./media/characters/rex/boot.svg"
  44771. }
  44772. },
  44773. paw: {
  44774. height: math.unit(4.17, "feet"),
  44775. name: "Paw",
  44776. image: {
  44777. source: "./media/characters/rex/paw.svg"
  44778. }
  44779. },
  44780. head: {
  44781. height: math.unit(6.728, "feet"),
  44782. name: "Head",
  44783. image: {
  44784. source: "./media/characters/rex/head.svg"
  44785. }
  44786. },
  44787. },
  44788. [
  44789. {
  44790. name: "Nano",
  44791. height: math.unit(18 + 7/12, "feet")
  44792. },
  44793. {
  44794. name: "Micro",
  44795. height: math.unit(1.5, "megameters")
  44796. },
  44797. {
  44798. name: "Normal",
  44799. height: math.unit(440, "megameters"),
  44800. default: true
  44801. },
  44802. {
  44803. name: "Macro",
  44804. height: math.unit(2.5, "gigameters")
  44805. },
  44806. {
  44807. name: "Gigamacro",
  44808. height: math.unit(2, "galaxies")
  44809. },
  44810. ]
  44811. ))
  44812. characterMakers.push(() => makeCharacter(
  44813. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  44814. {
  44815. side: {
  44816. height: math.unit(32, "feet"),
  44817. weight: math.unit(250000, "lb"),
  44818. name: "Side",
  44819. image: {
  44820. source: "./media/characters/silverwing/side.svg",
  44821. extra: 1100/1019,
  44822. bottom: 204/1304
  44823. }
  44824. },
  44825. },
  44826. [
  44827. {
  44828. name: "Normal",
  44829. height: math.unit(32, "feet"),
  44830. default: true
  44831. },
  44832. ]
  44833. ))
  44834. characterMakers.push(() => makeCharacter(
  44835. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  44836. {
  44837. front: {
  44838. height: math.unit(6 + 6/12, "feet"),
  44839. weight: math.unit(350, "lb"),
  44840. name: "Front",
  44841. image: {
  44842. source: "./media/characters/tristan-hawthorne/front.svg",
  44843. extra: 1159/1124,
  44844. bottom: 37/1196
  44845. },
  44846. form: "labrador",
  44847. default: true
  44848. },
  44849. skunkFront: {
  44850. height: math.unit(4 + 6/12, "feet"),
  44851. weight: math.unit(120, "lb"),
  44852. name: "Front",
  44853. image: {
  44854. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  44855. extra: 1609/1551,
  44856. bottom: 169/1778
  44857. },
  44858. form: "skunk",
  44859. default: true
  44860. },
  44861. },
  44862. [
  44863. {
  44864. name: "Normal",
  44865. height: math.unit(6 + 6/12, "feet"),
  44866. form: "labrador",
  44867. default: true
  44868. },
  44869. {
  44870. name: "Normal",
  44871. height: math.unit(4 + 6/12, "feet"),
  44872. form: "skunk",
  44873. default: true
  44874. },
  44875. ],
  44876. {
  44877. "labrador": {
  44878. name: "Labrador",
  44879. default: true
  44880. },
  44881. "skunk": {
  44882. name: "Skunk"
  44883. }
  44884. }
  44885. ))
  44886. characterMakers.push(() => makeCharacter(
  44887. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  44888. {
  44889. front: {
  44890. height: math.unit(5 + 11/12, "feet"),
  44891. weight: math.unit(190, "lb"),
  44892. name: "Front",
  44893. image: {
  44894. source: "./media/characters/mizu/front.svg",
  44895. extra: 1988/1788,
  44896. bottom: 14/2002
  44897. }
  44898. },
  44899. },
  44900. [
  44901. {
  44902. name: "Normal",
  44903. height: math.unit(5 + 11/12, "feet"),
  44904. default: true
  44905. },
  44906. ]
  44907. ))
  44908. characterMakers.push(() => makeCharacter(
  44909. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  44910. {
  44911. front: {
  44912. height: math.unit(1.7, "feet"),
  44913. weight: math.unit(50, "lb"),
  44914. name: "Front",
  44915. image: {
  44916. source: "./media/characters/dechroma/front.svg",
  44917. extra: 1095/859,
  44918. bottom: 64/1159
  44919. }
  44920. },
  44921. },
  44922. [
  44923. {
  44924. name: "Normal",
  44925. height: math.unit(1.7, "feet"),
  44926. default: true
  44927. },
  44928. ]
  44929. ))
  44930. characterMakers.push(() => makeCharacter(
  44931. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  44932. {
  44933. side: {
  44934. height: math.unit(30, "feet"),
  44935. name: "Side",
  44936. image: {
  44937. source: "./media/characters/veluren-thanazel/side.svg",
  44938. extra: 1611/633,
  44939. bottom: 118/1729
  44940. }
  44941. },
  44942. front: {
  44943. height: math.unit(30, "feet"),
  44944. name: "Front",
  44945. image: {
  44946. source: "./media/characters/veluren-thanazel/front.svg",
  44947. extra: 1486/636,
  44948. bottom: 238/1724
  44949. }
  44950. },
  44951. head: {
  44952. height: math.unit(21.4, "feet"),
  44953. name: "Head",
  44954. image: {
  44955. source: "./media/characters/veluren-thanazel/head.svg"
  44956. }
  44957. },
  44958. genitals: {
  44959. height: math.unit(19.4, "feet"),
  44960. name: "Genitals",
  44961. image: {
  44962. source: "./media/characters/veluren-thanazel/genitals.svg"
  44963. }
  44964. },
  44965. },
  44966. [
  44967. {
  44968. name: "Social",
  44969. height: math.unit(6, "feet")
  44970. },
  44971. {
  44972. name: "Play",
  44973. height: math.unit(12, "feet")
  44974. },
  44975. {
  44976. name: "True",
  44977. height: math.unit(30, "feet"),
  44978. default: true
  44979. },
  44980. ]
  44981. ))
  44982. characterMakers.push(() => makeCharacter(
  44983. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  44984. {
  44985. front: {
  44986. height: math.unit(7 + 6/12, "feet"),
  44987. weight: math.unit(500, "kg"),
  44988. name: "Front",
  44989. image: {
  44990. source: "./media/characters/arcturas/front.svg",
  44991. extra: 1700/1500,
  44992. bottom: 145/1845
  44993. }
  44994. },
  44995. },
  44996. [
  44997. {
  44998. name: "Normal",
  44999. height: math.unit(7 + 6/12, "feet"),
  45000. default: true
  45001. },
  45002. ]
  45003. ))
  45004. characterMakers.push(() => makeCharacter(
  45005. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  45006. {
  45007. side: {
  45008. height: math.unit(6, "feet"),
  45009. weight: math.unit(2, "tons"),
  45010. name: "Side",
  45011. image: {
  45012. source: "./media/characters/vitaen/side.svg",
  45013. extra: 1157/617,
  45014. bottom: 122/1279
  45015. }
  45016. },
  45017. },
  45018. [
  45019. {
  45020. name: "Normal",
  45021. height: math.unit(6, "feet"),
  45022. default: true
  45023. },
  45024. ]
  45025. ))
  45026. characterMakers.push(() => makeCharacter(
  45027. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  45028. {
  45029. front: {
  45030. height: math.unit(19, "feet"),
  45031. name: "Front",
  45032. image: {
  45033. source: "./media/characters/fia-dreamweaver/front.svg",
  45034. extra: 1630/1504,
  45035. bottom: 25/1655
  45036. }
  45037. },
  45038. },
  45039. [
  45040. {
  45041. name: "Normal",
  45042. height: math.unit(19, "feet"),
  45043. default: true
  45044. },
  45045. ]
  45046. ))
  45047. characterMakers.push(() => makeCharacter(
  45048. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  45049. {
  45050. front: {
  45051. height: math.unit(5 + 4/12, "feet"),
  45052. name: "Front",
  45053. image: {
  45054. source: "./media/characters/artan/front.svg",
  45055. extra: 1618/1535,
  45056. bottom: 46/1664
  45057. }
  45058. },
  45059. back: {
  45060. height: math.unit(5 + 4/12, "feet"),
  45061. name: "Back",
  45062. image: {
  45063. source: "./media/characters/artan/back.svg",
  45064. extra: 1618/1543,
  45065. bottom: 31/1649
  45066. }
  45067. },
  45068. },
  45069. [
  45070. {
  45071. name: "Normal",
  45072. height: math.unit(5 + 4/12, "feet"),
  45073. default: true
  45074. },
  45075. ]
  45076. ))
  45077. characterMakers.push(() => makeCharacter(
  45078. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  45079. {
  45080. side: {
  45081. height: math.unit(182, "cm"),
  45082. weight: math.unit(1000, "lb"),
  45083. name: "Side",
  45084. image: {
  45085. source: "./media/characters/silver-dragon/side.svg",
  45086. extra: 710/287,
  45087. bottom: 88/798
  45088. }
  45089. },
  45090. },
  45091. [
  45092. {
  45093. name: "Normal",
  45094. height: math.unit(182, "cm"),
  45095. default: true
  45096. },
  45097. ]
  45098. ))
  45099. characterMakers.push(() => makeCharacter(
  45100. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  45101. {
  45102. side: {
  45103. height: math.unit(6 + 6/12, "feet"),
  45104. weight: math.unit(1.5, "tons"),
  45105. name: "Side",
  45106. image: {
  45107. source: "./media/characters/zephyr/side.svg",
  45108. extra: 1433/586,
  45109. bottom: 109/1542
  45110. }
  45111. },
  45112. },
  45113. [
  45114. {
  45115. name: "Normal",
  45116. height: math.unit(6 + 6/12, "feet"),
  45117. default: true
  45118. },
  45119. ]
  45120. ))
  45121. characterMakers.push(() => makeCharacter(
  45122. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  45123. {
  45124. side: {
  45125. height: math.unit(1, "feet"),
  45126. name: "Side",
  45127. image: {
  45128. source: "./media/characters/vixye/side.svg",
  45129. extra: 632/541,
  45130. bottom: 0/632
  45131. }
  45132. },
  45133. },
  45134. [
  45135. {
  45136. name: "Normal",
  45137. height: math.unit(1, "feet"),
  45138. default: true
  45139. },
  45140. {
  45141. name: "True",
  45142. height: math.unit(1e15, "multiverses")
  45143. },
  45144. ]
  45145. ))
  45146. characterMakers.push(() => makeCharacter(
  45147. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  45148. {
  45149. front: {
  45150. height: math.unit(8 + 2/12, "feet"),
  45151. weight: math.unit(650, "lb"),
  45152. name: "Front",
  45153. image: {
  45154. source: "./media/characters/darla-mac-lochlainn/front.svg",
  45155. extra: 1174/1137,
  45156. bottom: 82/1256
  45157. }
  45158. },
  45159. back: {
  45160. height: math.unit(8 + 2/12, "feet"),
  45161. weight: math.unit(650, "lb"),
  45162. name: "Back",
  45163. image: {
  45164. source: "./media/characters/darla-mac-lochlainn/back.svg",
  45165. extra: 1204/1157,
  45166. bottom: 46/1250
  45167. }
  45168. },
  45169. },
  45170. [
  45171. {
  45172. name: "Wildform",
  45173. height: math.unit(8 + 2/12, "feet"),
  45174. default: true
  45175. },
  45176. ]
  45177. ))
  45178. characterMakers.push(() => makeCharacter(
  45179. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  45180. {
  45181. front: {
  45182. height: math.unit(18, "feet"),
  45183. name: "Front",
  45184. image: {
  45185. source: "./media/characters/cyphin/front.svg",
  45186. extra: 970/886,
  45187. bottom: 42/1012
  45188. }
  45189. },
  45190. back: {
  45191. height: math.unit(18, "feet"),
  45192. name: "Back",
  45193. image: {
  45194. source: "./media/characters/cyphin/back.svg",
  45195. extra: 1009/894,
  45196. bottom: 24/1033
  45197. }
  45198. },
  45199. head: {
  45200. height: math.unit(5.05, "feet"),
  45201. name: "Head",
  45202. image: {
  45203. source: "./media/characters/cyphin/head.svg"
  45204. }
  45205. },
  45206. tailbud: {
  45207. height: math.unit(5, "feet"),
  45208. name: "Tailbud",
  45209. image: {
  45210. source: "./media/characters/cyphin/tailbud.svg"
  45211. }
  45212. },
  45213. },
  45214. [
  45215. ]
  45216. ))
  45217. characterMakers.push(() => makeCharacter(
  45218. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  45219. {
  45220. side: {
  45221. height: math.unit(10, "feet"),
  45222. weight: math.unit(6, "tons"),
  45223. name: "Side",
  45224. image: {
  45225. source: "./media/characters/raijin/side.svg",
  45226. extra: 1529/613,
  45227. bottom: 337/1866
  45228. }
  45229. },
  45230. },
  45231. [
  45232. {
  45233. name: "Normal",
  45234. height: math.unit(10, "feet"),
  45235. default: true
  45236. },
  45237. ]
  45238. ))
  45239. characterMakers.push(() => makeCharacter(
  45240. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  45241. {
  45242. side: {
  45243. height: math.unit(9, "feet"),
  45244. name: "Side",
  45245. image: {
  45246. source: "./media/characters/nilghais/side.svg",
  45247. extra: 1047/744,
  45248. bottom: 91/1138
  45249. }
  45250. },
  45251. head: {
  45252. height: math.unit(3.14, "feet"),
  45253. name: "Head",
  45254. image: {
  45255. source: "./media/characters/nilghais/head.svg"
  45256. }
  45257. },
  45258. mouth: {
  45259. height: math.unit(4.6, "feet"),
  45260. name: "Mouth",
  45261. image: {
  45262. source: "./media/characters/nilghais/mouth.svg"
  45263. }
  45264. },
  45265. wings: {
  45266. height: math.unit(24, "feet"),
  45267. name: "Wings",
  45268. image: {
  45269. source: "./media/characters/nilghais/wings.svg"
  45270. }
  45271. },
  45272. ass: {
  45273. height: math.unit(6.12, "feet"),
  45274. name: "Ass",
  45275. image: {
  45276. source: "./media/characters/nilghais/ass.svg"
  45277. }
  45278. },
  45279. },
  45280. [
  45281. {
  45282. name: "Normal",
  45283. height: math.unit(9, "feet"),
  45284. default: true
  45285. },
  45286. ]
  45287. ))
  45288. characterMakers.push(() => makeCharacter(
  45289. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  45290. {
  45291. regular: {
  45292. height: math.unit(16 + 2/12, "feet"),
  45293. weight: math.unit(2300, "lb"),
  45294. name: "Regular",
  45295. image: {
  45296. source: "./media/characters/zolgar/regular.svg",
  45297. extra: 1246/1004,
  45298. bottom: 124/1370
  45299. }
  45300. },
  45301. boxers: {
  45302. height: math.unit(16 + 2/12, "feet"),
  45303. weight: math.unit(2300, "lb"),
  45304. name: "Boxers",
  45305. image: {
  45306. source: "./media/characters/zolgar/boxers.svg",
  45307. extra: 1246/1004,
  45308. bottom: 124/1370
  45309. }
  45310. },
  45311. armored: {
  45312. height: math.unit(16 + 2/12, "feet"),
  45313. weight: math.unit(2300, "lb"),
  45314. name: "Armored",
  45315. image: {
  45316. source: "./media/characters/zolgar/armored.svg",
  45317. extra: 1246/1004,
  45318. bottom: 124/1370
  45319. }
  45320. },
  45321. goth: {
  45322. height: math.unit(16 + 2/12, "feet"),
  45323. weight: math.unit(2300, "lb"),
  45324. name: "Goth",
  45325. image: {
  45326. source: "./media/characters/zolgar/goth.svg",
  45327. extra: 1246/1004,
  45328. bottom: 124/1370
  45329. }
  45330. },
  45331. },
  45332. [
  45333. {
  45334. name: "Shrunken Down",
  45335. height: math.unit(9 + 2/12, "feet")
  45336. },
  45337. {
  45338. name: "Normal",
  45339. height: math.unit(16 + 2/12, "feet"),
  45340. default: true
  45341. },
  45342. ]
  45343. ))
  45344. characterMakers.push(() => makeCharacter(
  45345. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  45346. {
  45347. front: {
  45348. height: math.unit(6, "feet"),
  45349. weight: math.unit(168, "lb"),
  45350. name: "Front",
  45351. image: {
  45352. source: "./media/characters/luca/front.svg",
  45353. extra: 841/667,
  45354. bottom: 102/943
  45355. }
  45356. },
  45357. },
  45358. [
  45359. {
  45360. name: "Normal",
  45361. height: math.unit(6, "feet"),
  45362. default: true
  45363. },
  45364. ]
  45365. ))
  45366. characterMakers.push(() => makeCharacter(
  45367. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  45368. {
  45369. side: {
  45370. height: math.unit(7 + 3/12, "feet"),
  45371. weight: math.unit(312, "lb"),
  45372. name: "Side",
  45373. image: {
  45374. source: "./media/characters/zezo/side.svg",
  45375. extra: 1192/1067,
  45376. bottom: 63/1255
  45377. }
  45378. },
  45379. },
  45380. [
  45381. {
  45382. name: "Normal",
  45383. height: math.unit(7 + 3/12, "feet"),
  45384. default: true
  45385. },
  45386. ]
  45387. ))
  45388. characterMakers.push(() => makeCharacter(
  45389. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  45390. {
  45391. front: {
  45392. height: math.unit(5 + 5/12, "feet"),
  45393. weight: math.unit(170, "lb"),
  45394. name: "Front",
  45395. image: {
  45396. source: "./media/characters/mayso/front.svg",
  45397. extra: 1215/1108,
  45398. bottom: 16/1231
  45399. }
  45400. },
  45401. },
  45402. [
  45403. {
  45404. name: "Normal",
  45405. height: math.unit(5 + 5/12, "feet"),
  45406. default: true
  45407. },
  45408. ]
  45409. ))
  45410. characterMakers.push(() => makeCharacter(
  45411. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  45412. {
  45413. front: {
  45414. height: math.unit(4 + 3/12, "feet"),
  45415. weight: math.unit(80, "lb"),
  45416. name: "Front",
  45417. image: {
  45418. source: "./media/characters/hess/front.svg",
  45419. extra: 1200/1123,
  45420. bottom: 16/1216
  45421. }
  45422. },
  45423. },
  45424. [
  45425. {
  45426. name: "Normal",
  45427. height: math.unit(4 + 3/12, "feet"),
  45428. default: true
  45429. },
  45430. ]
  45431. ))
  45432. characterMakers.push(() => makeCharacter(
  45433. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  45434. {
  45435. front: {
  45436. height: math.unit(1.9, "meters"),
  45437. name: "Front",
  45438. image: {
  45439. source: "./media/characters/ashgar/front.svg",
  45440. extra: 1177/1146,
  45441. bottom: 99/1276
  45442. }
  45443. },
  45444. back: {
  45445. height: math.unit(1.9, "meters"),
  45446. name: "Back",
  45447. image: {
  45448. source: "./media/characters/ashgar/back.svg",
  45449. extra: 1201/1183,
  45450. bottom: 53/1254
  45451. }
  45452. },
  45453. feral: {
  45454. height: math.unit(1.4, "meters"),
  45455. name: "Feral",
  45456. image: {
  45457. source: "./media/characters/ashgar/feral.svg",
  45458. extra: 370/345,
  45459. bottom: 45/415
  45460. }
  45461. },
  45462. },
  45463. [
  45464. {
  45465. name: "Normal",
  45466. height: math.unit(1.9, "meters"),
  45467. default: true
  45468. },
  45469. ]
  45470. ))
  45471. characterMakers.push(() => makeCharacter(
  45472. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  45473. {
  45474. regular: {
  45475. height: math.unit(6, "feet"),
  45476. weight: math.unit(220, "lb"),
  45477. name: "Regular",
  45478. image: {
  45479. source: "./media/characters/phillip/regular.svg",
  45480. extra: 1373/1277,
  45481. bottom: 75/1448
  45482. }
  45483. },
  45484. dressed: {
  45485. height: math.unit(6, "feet"),
  45486. weight: math.unit(220, "lb"),
  45487. name: "Dressed",
  45488. image: {
  45489. source: "./media/characters/phillip/dressed.svg",
  45490. extra: 1373/1277,
  45491. bottom: 75/1448
  45492. }
  45493. },
  45494. paw: {
  45495. height: math.unit(1.44, "feet"),
  45496. name: "Paw",
  45497. image: {
  45498. source: "./media/characters/phillip/paw.svg"
  45499. }
  45500. },
  45501. },
  45502. [
  45503. {
  45504. name: "Normal",
  45505. height: math.unit(6, "feet"),
  45506. default: true
  45507. },
  45508. ]
  45509. ))
  45510. characterMakers.push(() => makeCharacter(
  45511. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  45512. {
  45513. side: {
  45514. height: math.unit(42, "feet"),
  45515. name: "Side",
  45516. image: {
  45517. source: "./media/characters/uvula/side.svg",
  45518. extra: 683/586,
  45519. bottom: 60/743
  45520. }
  45521. },
  45522. front: {
  45523. height: math.unit(42, "feet"),
  45524. name: "Front",
  45525. image: {
  45526. source: "./media/characters/uvula/front.svg",
  45527. extra: 705/613,
  45528. bottom: 54/759
  45529. }
  45530. },
  45531. maw: {
  45532. height: math.unit(23.5, "feet"),
  45533. name: "Maw",
  45534. image: {
  45535. source: "./media/characters/uvula/maw.svg"
  45536. }
  45537. },
  45538. },
  45539. [
  45540. {
  45541. name: "Original Size",
  45542. height: math.unit(14, "inches")
  45543. },
  45544. {
  45545. name: "Human Size",
  45546. height: math.unit(6, "feet")
  45547. },
  45548. {
  45549. name: "Big",
  45550. height: math.unit(42, "feet"),
  45551. default: true
  45552. },
  45553. {
  45554. name: "Bigger",
  45555. height: math.unit(100, "feet")
  45556. },
  45557. ]
  45558. ))
  45559. characterMakers.push(() => makeCharacter(
  45560. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  45561. {
  45562. front: {
  45563. height: math.unit(5 + 11/12, "feet"),
  45564. name: "Front",
  45565. image: {
  45566. source: "./media/characters/lannah/front.svg",
  45567. extra: 1208/1113,
  45568. bottom: 97/1305
  45569. }
  45570. },
  45571. },
  45572. [
  45573. {
  45574. name: "Normal",
  45575. height: math.unit(5 + 11/12, "feet"),
  45576. default: true
  45577. },
  45578. ]
  45579. ))
  45580. characterMakers.push(() => makeCharacter(
  45581. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  45582. {
  45583. front: {
  45584. height: math.unit(6 + 3/12, "feet"),
  45585. weight: math.unit(3.5, "tons"),
  45586. name: "Front",
  45587. image: {
  45588. source: "./media/characters/emberflame/front.svg",
  45589. extra: 1198/672,
  45590. bottom: 82/1280
  45591. }
  45592. },
  45593. side: {
  45594. height: math.unit(6 + 3/12, "feet"),
  45595. weight: math.unit(3.5, "tons"),
  45596. name: "Side",
  45597. image: {
  45598. source: "./media/characters/emberflame/side.svg",
  45599. extra: 938/527,
  45600. bottom: 56/994
  45601. }
  45602. },
  45603. },
  45604. [
  45605. {
  45606. name: "Normal",
  45607. height: math.unit(6 + 3/12, "feet"),
  45608. default: true
  45609. },
  45610. ]
  45611. ))
  45612. characterMakers.push(() => makeCharacter(
  45613. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  45614. {
  45615. side: {
  45616. height: math.unit(17.5, "feet"),
  45617. weight: math.unit(35, "tons"),
  45618. name: "Side",
  45619. image: {
  45620. source: "./media/characters/sophie-ambrose/side.svg",
  45621. extra: 1573/1242,
  45622. bottom: 71/1644
  45623. }
  45624. },
  45625. maw: {
  45626. height: math.unit(7.4, "feet"),
  45627. name: "Maw",
  45628. image: {
  45629. source: "./media/characters/sophie-ambrose/maw.svg"
  45630. }
  45631. },
  45632. },
  45633. [
  45634. {
  45635. name: "Normal",
  45636. height: math.unit(17.5, "feet"),
  45637. default: true
  45638. },
  45639. ]
  45640. ))
  45641. characterMakers.push(() => makeCharacter(
  45642. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  45643. {
  45644. front: {
  45645. height: math.unit(280, "feet"),
  45646. weight: math.unit(550, "tons"),
  45647. name: "Front",
  45648. image: {
  45649. source: "./media/characters/king-mugi/front.svg",
  45650. extra: 1102/947,
  45651. bottom: 104/1206
  45652. }
  45653. },
  45654. },
  45655. [
  45656. {
  45657. name: "King Mugi",
  45658. height: math.unit(280, "feet"),
  45659. default: true
  45660. },
  45661. ]
  45662. ))
  45663. characterMakers.push(() => makeCharacter(
  45664. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  45665. {
  45666. female: {
  45667. height: math.unit(300, "meters"),
  45668. name: "Front",
  45669. image: {
  45670. source: "./media/characters/nova-fox/female.svg",
  45671. extra: 664/632,
  45672. bottom: 51/715
  45673. },
  45674. form: "female",
  45675. default: true
  45676. },
  45677. male: {
  45678. height: math.unit(300, "meters"),
  45679. name: "Front",
  45680. image: {
  45681. source: "./media/characters/nova-fox/male.svg",
  45682. extra: 663/631,
  45683. bottom: 30/693
  45684. },
  45685. form: "male",
  45686. default: true
  45687. },
  45688. },
  45689. [
  45690. {
  45691. name: "Macro",
  45692. height: math.unit(300, "meters"),
  45693. default: true,
  45694. allForms: true
  45695. },
  45696. ],
  45697. {
  45698. "female": {
  45699. name: "Female",
  45700. default: true
  45701. },
  45702. "male": {
  45703. name: "Male",
  45704. },
  45705. }
  45706. ))
  45707. characterMakers.push(() => makeCharacter(
  45708. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  45709. {
  45710. front: {
  45711. height: math.unit(6 + 3/12, "feet"),
  45712. weight: math.unit(170, "lb"),
  45713. name: "Front",
  45714. image: {
  45715. source: "./media/characters/sam-bat/front.svg",
  45716. extra: 1601/1411,
  45717. bottom: 125/1726
  45718. }
  45719. },
  45720. back: {
  45721. height: math.unit(6 + 3/12, "feet"),
  45722. weight: math.unit(170, "lb"),
  45723. name: "Back",
  45724. image: {
  45725. source: "./media/characters/sam-bat/back.svg",
  45726. extra: 1577/1405,
  45727. bottom: 58/1635
  45728. }
  45729. },
  45730. },
  45731. [
  45732. {
  45733. name: "Normal",
  45734. height: math.unit(6 + 3/12, "feet"),
  45735. default: true
  45736. },
  45737. ]
  45738. ))
  45739. characterMakers.push(() => makeCharacter(
  45740. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  45741. {
  45742. front: {
  45743. height: math.unit(59, "feet"),
  45744. weight: math.unit(40000, "lb"),
  45745. name: "Front",
  45746. image: {
  45747. source: "./media/characters/inari/front.svg",
  45748. extra: 1884/1350,
  45749. bottom: 95/1979
  45750. }
  45751. },
  45752. },
  45753. [
  45754. {
  45755. name: "Gigantamax",
  45756. height: math.unit(59, "feet"),
  45757. default: true
  45758. },
  45759. ]
  45760. ))
  45761. characterMakers.push(() => makeCharacter(
  45762. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  45763. {
  45764. front: {
  45765. height: math.unit(5 + 8/12, "feet"),
  45766. name: "Front",
  45767. image: {
  45768. source: "./media/characters/elizabeth/front.svg",
  45769. extra: 1395/1298,
  45770. bottom: 54/1449
  45771. }
  45772. },
  45773. mouth: {
  45774. height: math.unit(1.97, "feet"),
  45775. name: "Mouth",
  45776. image: {
  45777. source: "./media/characters/elizabeth/mouth.svg"
  45778. }
  45779. },
  45780. foot: {
  45781. height: math.unit(1.17, "feet"),
  45782. name: "Foot",
  45783. image: {
  45784. source: "./media/characters/elizabeth/foot.svg"
  45785. }
  45786. },
  45787. },
  45788. [
  45789. {
  45790. name: "Normal",
  45791. height: math.unit(5 + 8/12, "feet"),
  45792. default: true
  45793. },
  45794. {
  45795. name: "Minimacro",
  45796. height: math.unit(18, "feet")
  45797. },
  45798. {
  45799. name: "Macro",
  45800. height: math.unit(180, "feet")
  45801. },
  45802. ]
  45803. ))
  45804. characterMakers.push(() => makeCharacter(
  45805. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  45806. {
  45807. front: {
  45808. height: math.unit(5 + 2/12, "feet"),
  45809. name: "Front",
  45810. image: {
  45811. source: "./media/characters/october-gossamer/front.svg",
  45812. extra: 505/454,
  45813. bottom: 7/512
  45814. }
  45815. },
  45816. back: {
  45817. height: math.unit(5 + 2/12, "feet"),
  45818. name: "Back",
  45819. image: {
  45820. source: "./media/characters/october-gossamer/back.svg",
  45821. extra: 501/454,
  45822. bottom: 11/512
  45823. }
  45824. },
  45825. },
  45826. [
  45827. {
  45828. name: "Normal",
  45829. height: math.unit(5 + 2/12, "feet"),
  45830. default: true
  45831. },
  45832. ]
  45833. ))
  45834. characterMakers.push(() => makeCharacter(
  45835. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  45836. {
  45837. front: {
  45838. height: math.unit(5, "feet"),
  45839. name: "Front",
  45840. image: {
  45841. source: "./media/characters/epiglottis/front.svg",
  45842. extra: 923/849,
  45843. bottom: 17/940
  45844. }
  45845. },
  45846. },
  45847. [
  45848. {
  45849. name: "Original Size",
  45850. height: math.unit(10, "inches")
  45851. },
  45852. {
  45853. name: "Human Size",
  45854. height: math.unit(5, "feet"),
  45855. default: true
  45856. },
  45857. {
  45858. name: "Big",
  45859. height: math.unit(25, "feet")
  45860. },
  45861. {
  45862. name: "Bigger",
  45863. height: math.unit(50, "feet")
  45864. },
  45865. {
  45866. name: "oh lawd",
  45867. height: math.unit(75, "feet")
  45868. },
  45869. ]
  45870. ))
  45871. characterMakers.push(() => makeCharacter(
  45872. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  45873. {
  45874. front: {
  45875. height: math.unit(2 + 4/12, "feet"),
  45876. weight: math.unit(60, "lb"),
  45877. name: "Front",
  45878. image: {
  45879. source: "./media/characters/lerm/front.svg",
  45880. extra: 796/790,
  45881. bottom: 79/875
  45882. }
  45883. },
  45884. },
  45885. [
  45886. {
  45887. name: "Normal",
  45888. height: math.unit(2 + 4/12, "feet"),
  45889. default: true
  45890. },
  45891. ]
  45892. ))
  45893. characterMakers.push(() => makeCharacter(
  45894. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  45895. {
  45896. front: {
  45897. height: math.unit(5.5, "feet"),
  45898. weight: math.unit(130, "lb"),
  45899. name: "Front",
  45900. image: {
  45901. source: "./media/characters/xena-nebadon/front.svg",
  45902. extra: 1828/1730,
  45903. bottom: 79/1907
  45904. }
  45905. },
  45906. },
  45907. [
  45908. {
  45909. name: "Tiny Puppy",
  45910. height: math.unit(3, "inches")
  45911. },
  45912. {
  45913. name: "Normal",
  45914. height: math.unit(5.5, "feet"),
  45915. default: true
  45916. },
  45917. {
  45918. name: "Lotta Lady",
  45919. height: math.unit(12, "feet")
  45920. },
  45921. {
  45922. name: "Pretty Big",
  45923. height: math.unit(100, "feet")
  45924. },
  45925. {
  45926. name: "Big",
  45927. height: math.unit(500, "feet")
  45928. },
  45929. {
  45930. name: "Skyscraper Toys",
  45931. height: math.unit(2500, "feet")
  45932. },
  45933. {
  45934. name: "Plane Catcher",
  45935. height: math.unit(8, "miles")
  45936. },
  45937. {
  45938. name: "Planet Toys",
  45939. height: math.unit(15, "earths")
  45940. },
  45941. {
  45942. name: "Stardust",
  45943. height: math.unit(0.25, "galaxies")
  45944. },
  45945. {
  45946. name: "Snacks",
  45947. height: math.unit(70, "universes")
  45948. },
  45949. ]
  45950. ))
  45951. characterMakers.push(() => makeCharacter(
  45952. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  45953. {
  45954. front: {
  45955. height: math.unit(1.6, "meters"),
  45956. weight: math.unit(60, "kg"),
  45957. name: "Front",
  45958. image: {
  45959. source: "./media/characters/bounty/front.svg",
  45960. extra: 1426/1308,
  45961. bottom: 15/1441
  45962. }
  45963. },
  45964. back: {
  45965. height: math.unit(1.6, "meters"),
  45966. weight: math.unit(60, "kg"),
  45967. name: "Back",
  45968. image: {
  45969. source: "./media/characters/bounty/back.svg",
  45970. extra: 1417/1307,
  45971. bottom: 8/1425
  45972. }
  45973. },
  45974. },
  45975. [
  45976. {
  45977. name: "Normal",
  45978. height: math.unit(1.6, "meters"),
  45979. default: true
  45980. },
  45981. {
  45982. name: "Macro",
  45983. height: math.unit(300, "meters")
  45984. },
  45985. ]
  45986. ))
  45987. characterMakers.push(() => makeCharacter(
  45988. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  45989. {
  45990. front: {
  45991. height: math.unit(2 + 8/12, "feet"),
  45992. weight: math.unit(15, "lb"),
  45993. name: "Front",
  45994. image: {
  45995. source: "./media/characters/mochi/front.svg",
  45996. extra: 1022/852,
  45997. bottom: 435/1457
  45998. }
  45999. },
  46000. back: {
  46001. height: math.unit(2 + 8/12, "feet"),
  46002. weight: math.unit(15, "lb"),
  46003. name: "Back",
  46004. image: {
  46005. source: "./media/characters/mochi/back.svg",
  46006. extra: 1335/1119,
  46007. bottom: 39/1374
  46008. }
  46009. },
  46010. bird: {
  46011. height: math.unit(2 + 8/12, "feet"),
  46012. weight: math.unit(15, "lb"),
  46013. name: "Bird",
  46014. image: {
  46015. source: "./media/characters/mochi/bird.svg",
  46016. extra: 1251/1113,
  46017. bottom: 178/1429
  46018. }
  46019. },
  46020. kaiju: {
  46021. height: math.unit(154, "feet"),
  46022. weight: math.unit(1e7, "lb"),
  46023. name: "Kaiju",
  46024. image: {
  46025. source: "./media/characters/mochi/kaiju.svg",
  46026. extra: 460/324,
  46027. bottom: 40/500
  46028. }
  46029. },
  46030. head: {
  46031. height: math.unit(1.21, "feet"),
  46032. name: "Head",
  46033. image: {
  46034. source: "./media/characters/mochi/head.svg"
  46035. }
  46036. },
  46037. alternateTail: {
  46038. height: math.unit(2 + 8/12, "feet"),
  46039. weight: math.unit(45, "lb"),
  46040. name: "Alternate Tail",
  46041. image: {
  46042. source: "./media/characters/mochi/alternate-tail.svg",
  46043. extra: 139/76,
  46044. bottom: 45/184
  46045. }
  46046. },
  46047. },
  46048. [
  46049. {
  46050. name: "Micro",
  46051. height: math.unit(2, "inches")
  46052. },
  46053. {
  46054. name: "Normal",
  46055. height: math.unit(2 + 8/12, "feet"),
  46056. default: true
  46057. },
  46058. {
  46059. name: "Macro",
  46060. height: math.unit(106, "feet")
  46061. },
  46062. ]
  46063. ))
  46064. characterMakers.push(() => makeCharacter(
  46065. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  46066. {
  46067. front: {
  46068. height: math.unit(5.67, "feet"),
  46069. weight: math.unit(135, "lb"),
  46070. name: "Front",
  46071. image: {
  46072. source: "./media/characters/sarel/front.svg",
  46073. extra: 865/788,
  46074. bottom: 97/962
  46075. }
  46076. },
  46077. back: {
  46078. height: math.unit(5.67, "feet"),
  46079. weight: math.unit(135, "lb"),
  46080. name: "Back",
  46081. image: {
  46082. source: "./media/characters/sarel/back.svg",
  46083. extra: 857/777,
  46084. bottom: 32/889
  46085. }
  46086. },
  46087. chozoan: {
  46088. height: math.unit(5.67, "feet"),
  46089. weight: math.unit(135, "lb"),
  46090. name: "Chozoan",
  46091. image: {
  46092. source: "./media/characters/sarel/chozoan.svg",
  46093. extra: 865/788,
  46094. bottom: 97/962
  46095. }
  46096. },
  46097. current: {
  46098. height: math.unit(5.67, "feet"),
  46099. weight: math.unit(135, "lb"),
  46100. name: "Current",
  46101. image: {
  46102. source: "./media/characters/sarel/current.svg",
  46103. extra: 865/788,
  46104. bottom: 97/962
  46105. }
  46106. },
  46107. head: {
  46108. height: math.unit(1.77, "feet"),
  46109. name: "Head",
  46110. image: {
  46111. source: "./media/characters/sarel/head.svg"
  46112. }
  46113. },
  46114. claws: {
  46115. height: math.unit(1.8, "feet"),
  46116. name: "Claws",
  46117. image: {
  46118. source: "./media/characters/sarel/claws.svg"
  46119. }
  46120. },
  46121. clawsAlt: {
  46122. height: math.unit(1.8, "feet"),
  46123. name: "Claws-alt",
  46124. image: {
  46125. source: "./media/characters/sarel/claws-alt.svg"
  46126. }
  46127. },
  46128. },
  46129. [
  46130. {
  46131. name: "Normal",
  46132. height: math.unit(5.67, "feet"),
  46133. default: true
  46134. },
  46135. ]
  46136. ))
  46137. characterMakers.push(() => makeCharacter(
  46138. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  46139. {
  46140. front: {
  46141. height: math.unit(5500, "feet"),
  46142. name: "Front",
  46143. image: {
  46144. source: "./media/characters/alyonia/front.svg",
  46145. extra: 1200/1135,
  46146. bottom: 29/1229
  46147. }
  46148. },
  46149. back: {
  46150. height: math.unit(5500, "feet"),
  46151. name: "Back",
  46152. image: {
  46153. source: "./media/characters/alyonia/back.svg",
  46154. extra: 1205/1138,
  46155. bottom: 10/1215
  46156. }
  46157. },
  46158. },
  46159. [
  46160. {
  46161. name: "Small",
  46162. height: math.unit(10, "feet")
  46163. },
  46164. {
  46165. name: "Macro",
  46166. height: math.unit(500, "feet")
  46167. },
  46168. {
  46169. name: "Mega Macro",
  46170. height: math.unit(5500, "feet"),
  46171. default: true
  46172. },
  46173. {
  46174. name: "Mega Macro+",
  46175. height: math.unit(500000, "feet")
  46176. },
  46177. {
  46178. name: "Giga Macro",
  46179. height: math.unit(3000, "miles")
  46180. },
  46181. {
  46182. name: "Tera Macro",
  46183. height: math.unit(2.8e6, "miles")
  46184. },
  46185. {
  46186. name: "Galactic",
  46187. height: math.unit(120000, "lightyears")
  46188. },
  46189. ]
  46190. ))
  46191. characterMakers.push(() => makeCharacter(
  46192. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  46193. {
  46194. werewolf: {
  46195. height: math.unit(8, "feet"),
  46196. weight: math.unit(425, "lb"),
  46197. name: "Werewolf",
  46198. image: {
  46199. source: "./media/characters/autumn/werewolf.svg",
  46200. extra: 2154/2031,
  46201. bottom: 160/2314
  46202. }
  46203. },
  46204. human: {
  46205. height: math.unit(5 + 8/12, "feet"),
  46206. weight: math.unit(150, "lb"),
  46207. name: "Human",
  46208. image: {
  46209. source: "./media/characters/autumn/human.svg",
  46210. extra: 1200/1149,
  46211. bottom: 30/1230
  46212. }
  46213. },
  46214. },
  46215. [
  46216. {
  46217. name: "Normal",
  46218. height: math.unit(8, "feet"),
  46219. default: true
  46220. },
  46221. ]
  46222. ))
  46223. characterMakers.push(() => makeCharacter(
  46224. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  46225. {
  46226. front: {
  46227. height: math.unit(8 + 5/12, "feet"),
  46228. weight: math.unit(825, "lb"),
  46229. name: "Front",
  46230. image: {
  46231. source: "./media/characters/cobalt-charizard/front.svg",
  46232. extra: 1268/1155,
  46233. bottom: 122/1390
  46234. }
  46235. },
  46236. side: {
  46237. height: math.unit(8 + 5/12, "feet"),
  46238. weight: math.unit(825, "lb"),
  46239. name: "Side",
  46240. image: {
  46241. source: "./media/characters/cobalt-charizard/side.svg",
  46242. extra: 1348/1257,
  46243. bottom: 58/1406
  46244. }
  46245. },
  46246. gMax: {
  46247. height: math.unit(134 + 11/12, "feet"),
  46248. name: "G-Max",
  46249. image: {
  46250. source: "./media/characters/cobalt-charizard/g-max.svg",
  46251. extra: 1835/1541,
  46252. bottom: 151/1986
  46253. }
  46254. },
  46255. },
  46256. [
  46257. {
  46258. name: "Normal",
  46259. height: math.unit(8 + 5/12, "feet"),
  46260. default: true
  46261. },
  46262. ]
  46263. ))
  46264. characterMakers.push(() => makeCharacter(
  46265. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  46266. {
  46267. front: {
  46268. height: math.unit(6 + 3/12, "feet"),
  46269. weight: math.unit(210, "lb"),
  46270. name: "Front",
  46271. image: {
  46272. source: "./media/characters/stella/front.svg",
  46273. extra: 3549/3335,
  46274. bottom: 51/3600
  46275. }
  46276. },
  46277. },
  46278. [
  46279. {
  46280. name: "Normal",
  46281. height: math.unit(6 + 3/12, "feet"),
  46282. default: true
  46283. },
  46284. ]
  46285. ))
  46286. characterMakers.push(() => makeCharacter(
  46287. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  46288. {
  46289. front: {
  46290. height: math.unit(5, "feet"),
  46291. weight: math.unit(90, "lb"),
  46292. name: "Front",
  46293. image: {
  46294. source: "./media/characters/riley-bishop/front.svg",
  46295. extra: 1450/1428,
  46296. bottom: 152/1602
  46297. }
  46298. },
  46299. },
  46300. [
  46301. {
  46302. name: "Normal",
  46303. height: math.unit(5, "feet"),
  46304. default: true
  46305. },
  46306. ]
  46307. ))
  46308. characterMakers.push(() => makeCharacter(
  46309. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  46310. {
  46311. side: {
  46312. height: math.unit(8 + 2/12, "feet"),
  46313. weight: math.unit(500, "kg"),
  46314. name: "Side",
  46315. image: {
  46316. source: "./media/characters/theo-arcanine/side.svg",
  46317. extra: 1342/1074,
  46318. bottom: 111/1453
  46319. }
  46320. },
  46321. },
  46322. [
  46323. {
  46324. name: "Normal",
  46325. height: math.unit(8 + 2/12, "feet"),
  46326. default: true
  46327. },
  46328. ]
  46329. ))
  46330. characterMakers.push(() => makeCharacter(
  46331. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  46332. {
  46333. front: {
  46334. height: math.unit(4, "feet"),
  46335. name: "Front",
  46336. image: {
  46337. source: "./media/characters/kali/front.svg",
  46338. extra: 1074/867,
  46339. bottom: 34/1108
  46340. }
  46341. },
  46342. back: {
  46343. height: math.unit(4, "feet"),
  46344. name: "Back",
  46345. image: {
  46346. source: "./media/characters/kali/back.svg",
  46347. extra: 1068/863,
  46348. bottom: 26/1094
  46349. }
  46350. },
  46351. frontAlt: {
  46352. height: math.unit(4, "feet"),
  46353. name: "Front (Alt)",
  46354. image: {
  46355. source: "./media/characters/kali/front-alt.svg",
  46356. extra: 1921/1357,
  46357. bottom: 70/1991
  46358. }
  46359. },
  46360. },
  46361. [
  46362. {
  46363. name: "Normal",
  46364. height: math.unit(4, "feet"),
  46365. default: true
  46366. },
  46367. {
  46368. name: "Big'vali",
  46369. height: math.unit(11, "feet")
  46370. },
  46371. {
  46372. name: "Macro",
  46373. height: math.unit(32, "meters")
  46374. },
  46375. {
  46376. name: "Macro+",
  46377. height: math.unit(150, "meters")
  46378. },
  46379. {
  46380. name: "Megamacro",
  46381. height: math.unit(7500, "meters")
  46382. },
  46383. {
  46384. name: "Megamacro+",
  46385. height: math.unit(80, "kilometers")
  46386. },
  46387. ]
  46388. ))
  46389. characterMakers.push(() => makeCharacter(
  46390. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  46391. {
  46392. side: {
  46393. height: math.unit(5 + 11/12, "feet"),
  46394. weight: math.unit(236, "lb"),
  46395. name: "Side",
  46396. image: {
  46397. source: "./media/characters/gapp/side.svg",
  46398. extra: 775/340,
  46399. bottom: 58/833
  46400. }
  46401. },
  46402. mouth: {
  46403. height: math.unit(2.98, "feet"),
  46404. name: "Mouth",
  46405. image: {
  46406. source: "./media/characters/gapp/mouth.svg"
  46407. }
  46408. },
  46409. },
  46410. [
  46411. {
  46412. name: "Normal",
  46413. height: math.unit(5 + 1/12, "feet"),
  46414. default: true
  46415. },
  46416. ]
  46417. ))
  46418. characterMakers.push(() => makeCharacter(
  46419. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  46420. {
  46421. front: {
  46422. height: math.unit(6, "feet"),
  46423. name: "Front",
  46424. image: {
  46425. source: "./media/characters/persephone/front.svg",
  46426. extra: 1895/1717,
  46427. bottom: 96/1991
  46428. }
  46429. },
  46430. back: {
  46431. height: math.unit(6, "feet"),
  46432. name: "Back",
  46433. image: {
  46434. source: "./media/characters/persephone/back.svg",
  46435. extra: 1868/1679,
  46436. bottom: 26/1894
  46437. }
  46438. },
  46439. casual: {
  46440. height: math.unit(6, "feet"),
  46441. name: "Casual",
  46442. image: {
  46443. source: "./media/characters/persephone/casual.svg",
  46444. extra: 1713/1541,
  46445. bottom: 76/1789
  46446. }
  46447. },
  46448. gaming: {
  46449. height: math.unit(3.55, "feet"),
  46450. name: "Gaming",
  46451. image: {
  46452. source: "./media/characters/persephone/gaming.svg",
  46453. extra: 1242/1038,
  46454. bottom: 66/1308
  46455. }
  46456. },
  46457. head: {
  46458. height: math.unit(2.15, "feet"),
  46459. name: "😐",
  46460. image: {
  46461. source: "./media/characters/persephone/head.svg"
  46462. }
  46463. },
  46464. talking: {
  46465. height: math.unit(2.5, "feet"),
  46466. name: "💬",
  46467. image: {
  46468. source: "./media/characters/persephone/talking.svg"
  46469. }
  46470. },
  46471. hmm: {
  46472. height: math.unit(2.28, "feet"),
  46473. name: "🤨",
  46474. image: {
  46475. source: "./media/characters/persephone/hmm.svg"
  46476. }
  46477. },
  46478. },
  46479. [
  46480. {
  46481. name: "Human Size",
  46482. height: math.unit(6, "feet")
  46483. },
  46484. {
  46485. name: "Big Steppy",
  46486. height: math.unit(600, "meters"),
  46487. default: true
  46488. },
  46489. {
  46490. name: "Galaxy Brain",
  46491. height: math.unit(1, "zettameter")
  46492. },
  46493. ]
  46494. ))
  46495. characterMakers.push(() => makeCharacter(
  46496. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  46497. {
  46498. front: {
  46499. height: math.unit(1.85, "meters"),
  46500. name: "Front",
  46501. image: {
  46502. source: "./media/characters/riley-foxthing/front.svg",
  46503. extra: 1495/1354,
  46504. bottom: 122/1617
  46505. }
  46506. },
  46507. frontAlt: {
  46508. height: math.unit(1.85, "meters"),
  46509. name: "Front (Alt)",
  46510. image: {
  46511. source: "./media/characters/riley-foxthing/front-alt.svg",
  46512. extra: 1572/1389,
  46513. bottom: 116/1688
  46514. }
  46515. },
  46516. },
  46517. [
  46518. {
  46519. name: "Normal Sized",
  46520. height: math.unit(1.85, "meters"),
  46521. default: true
  46522. },
  46523. {
  46524. name: "Quite Sizable",
  46525. height: math.unit(5, "meters")
  46526. },
  46527. {
  46528. name: "Rather Large",
  46529. height: math.unit(20, "meters")
  46530. },
  46531. {
  46532. name: "Macro",
  46533. height: math.unit(450, "meters")
  46534. },
  46535. {
  46536. name: "Giga",
  46537. height: math.unit(5, "km")
  46538. },
  46539. ]
  46540. ))
  46541. characterMakers.push(() => makeCharacter(
  46542. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  46543. {
  46544. front: {
  46545. height: math.unit(6, "feet"),
  46546. weight: math.unit(200, "lb"),
  46547. name: "Front",
  46548. image: {
  46549. source: "./media/characters/blizzard/front.svg",
  46550. extra: 1136/990,
  46551. bottom: 136/1272
  46552. }
  46553. },
  46554. back: {
  46555. height: math.unit(6, "feet"),
  46556. weight: math.unit(200, "lb"),
  46557. name: "Back",
  46558. image: {
  46559. source: "./media/characters/blizzard/back.svg",
  46560. extra: 1175/1034,
  46561. bottom: 97/1272
  46562. }
  46563. },
  46564. sitting: {
  46565. height: math.unit(3.725, "feet"),
  46566. weight: math.unit(200, "lb"),
  46567. name: "Sitting",
  46568. image: {
  46569. source: "./media/characters/blizzard/sitting.svg",
  46570. extra: 581/485,
  46571. bottom: 90/671
  46572. }
  46573. },
  46574. frontWizard: {
  46575. height: math.unit(7.9, "feet"),
  46576. weight: math.unit(200, "lb"),
  46577. name: "Front (Wizard)",
  46578. image: {
  46579. source: "./media/characters/blizzard/front-wizard.svg"
  46580. }
  46581. },
  46582. backWizard: {
  46583. height: math.unit(7.9, "feet"),
  46584. weight: math.unit(200, "lb"),
  46585. name: "Back (Wizard)",
  46586. image: {
  46587. source: "./media/characters/blizzard/back-wizard.svg"
  46588. }
  46589. },
  46590. frontNsfw: {
  46591. height: math.unit(6, "feet"),
  46592. weight: math.unit(200, "lb"),
  46593. name: "Front (NSFW)",
  46594. image: {
  46595. source: "./media/characters/blizzard/front-nsfw.svg",
  46596. extra: 1136/990,
  46597. bottom: 136/1272
  46598. }
  46599. },
  46600. backNsfw: {
  46601. height: math.unit(6, "feet"),
  46602. weight: math.unit(200, "lb"),
  46603. name: "Back (NSFW)",
  46604. image: {
  46605. source: "./media/characters/blizzard/back-nsfw.svg",
  46606. extra: 1175/1034,
  46607. bottom: 97/1272
  46608. }
  46609. },
  46610. sittingNsfw: {
  46611. height: math.unit(3.725, "feet"),
  46612. weight: math.unit(200, "lb"),
  46613. name: "Sitting (NSFW)",
  46614. image: {
  46615. source: "./media/characters/blizzard/sitting-nsfw.svg",
  46616. extra: 581/485,
  46617. bottom: 90/671
  46618. }
  46619. },
  46620. wizardFrontNsfw: {
  46621. height: math.unit(7.9, "feet"),
  46622. weight: math.unit(200, "lb"),
  46623. name: "Wizard (Front, NSFW)",
  46624. image: {
  46625. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  46626. }
  46627. },
  46628. },
  46629. [
  46630. {
  46631. name: "Normal",
  46632. height: math.unit(6, "feet"),
  46633. default: true
  46634. },
  46635. ]
  46636. ))
  46637. characterMakers.push(() => makeCharacter(
  46638. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  46639. {
  46640. front: {
  46641. height: math.unit(5 + 2/12, "feet"),
  46642. name: "Front",
  46643. image: {
  46644. source: "./media/characters/lumi/front.svg",
  46645. extra: 1328/1268,
  46646. bottom: 103/1431
  46647. }
  46648. },
  46649. back: {
  46650. height: math.unit(5 + 2/12, "feet"),
  46651. name: "Back",
  46652. image: {
  46653. source: "./media/characters/lumi/back.svg",
  46654. extra: 1381/1327,
  46655. bottom: 43/1424
  46656. }
  46657. },
  46658. },
  46659. [
  46660. {
  46661. name: "Normal",
  46662. height: math.unit(5 + 2/12, "feet"),
  46663. default: true
  46664. },
  46665. ]
  46666. ))
  46667. characterMakers.push(() => makeCharacter(
  46668. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  46669. {
  46670. front: {
  46671. height: math.unit(5 + 9/12, "feet"),
  46672. name: "Front",
  46673. image: {
  46674. source: "./media/characters/aliya-cotton/front.svg",
  46675. extra: 577/564,
  46676. bottom: 29/606
  46677. }
  46678. },
  46679. },
  46680. [
  46681. {
  46682. name: "Normal",
  46683. height: math.unit(5 + 9/12, "feet"),
  46684. default: true
  46685. },
  46686. ]
  46687. ))
  46688. characterMakers.push(() => makeCharacter(
  46689. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  46690. {
  46691. front: {
  46692. height: math.unit(2.7, "meters"),
  46693. weight: math.unit(25000, "lb"),
  46694. name: "Front",
  46695. image: {
  46696. source: "./media/characters/noah-luxray/front.svg",
  46697. extra: 1644/825,
  46698. bottom: 339/1983
  46699. }
  46700. },
  46701. side: {
  46702. height: math.unit(2.97, "meters"),
  46703. weight: math.unit(25000, "lb"),
  46704. name: "Side",
  46705. image: {
  46706. source: "./media/characters/noah-luxray/side.svg",
  46707. extra: 1319/650,
  46708. bottom: 163/1482
  46709. }
  46710. },
  46711. dick: {
  46712. height: math.unit(7.4, "feet"),
  46713. weight: math.unit(2500, "lb"),
  46714. name: "Dick",
  46715. image: {
  46716. source: "./media/characters/noah-luxray/dick.svg"
  46717. }
  46718. },
  46719. dickAlt: {
  46720. height: math.unit(10.83, "feet"),
  46721. weight: math.unit(2500, "lb"),
  46722. name: "Dick-alt",
  46723. image: {
  46724. source: "./media/characters/noah-luxray/dick-alt.svg"
  46725. }
  46726. },
  46727. },
  46728. [
  46729. {
  46730. name: "BIG",
  46731. height: math.unit(2.7, "meters"),
  46732. default: true
  46733. },
  46734. ]
  46735. ))
  46736. characterMakers.push(() => makeCharacter(
  46737. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  46738. {
  46739. standing: {
  46740. height: math.unit(183, "cm"),
  46741. weight: math.unit(68, "kg"),
  46742. name: "Standing",
  46743. image: {
  46744. source: "./media/characters/arion/standing.svg",
  46745. extra: 1869/1807,
  46746. bottom: 93/1962
  46747. }
  46748. },
  46749. reclining: {
  46750. height: math.unit(70.5, "cm"),
  46751. weight: math.unit(68, "lb"),
  46752. name: "Reclining",
  46753. image: {
  46754. source: "./media/characters/arion/reclining.svg",
  46755. extra: 937/870,
  46756. bottom: 63/1000
  46757. }
  46758. },
  46759. },
  46760. [
  46761. {
  46762. name: "Colossus Size, Low",
  46763. height: math.unit(33, "meters"),
  46764. default: true
  46765. },
  46766. {
  46767. name: "Colossus Size, Mid",
  46768. height: math.unit(52, "meters")
  46769. },
  46770. {
  46771. name: "Colossus Size, High",
  46772. height: math.unit(60, "meters")
  46773. },
  46774. {
  46775. name: "Titan Size, Low",
  46776. height: math.unit(91, "meters"),
  46777. },
  46778. {
  46779. name: "Titan Size, Mid",
  46780. height: math.unit(122, "meters")
  46781. },
  46782. {
  46783. name: "Titan Size, High",
  46784. height: math.unit(162, "meters")
  46785. },
  46786. ]
  46787. ))
  46788. characterMakers.push(() => makeCharacter(
  46789. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  46790. {
  46791. front: {
  46792. height: math.unit(53, "meters"),
  46793. name: "Front",
  46794. image: {
  46795. source: "./media/characters/stellar-marbey/front.svg",
  46796. extra: 1913/1805,
  46797. bottom: 92/2005
  46798. }
  46799. },
  46800. back: {
  46801. height: math.unit(53, "meters"),
  46802. name: "Back",
  46803. image: {
  46804. source: "./media/characters/stellar-marbey/back.svg",
  46805. extra: 1960/1851,
  46806. bottom: 28/1988
  46807. }
  46808. },
  46809. mouth: {
  46810. height: math.unit(3.5, "meters"),
  46811. name: "Mouth",
  46812. image: {
  46813. source: "./media/characters/stellar-marbey/mouth.svg"
  46814. }
  46815. },
  46816. },
  46817. [
  46818. {
  46819. name: "Macro",
  46820. height: math.unit(53, "meters"),
  46821. default: true
  46822. },
  46823. ]
  46824. ))
  46825. characterMakers.push(() => makeCharacter(
  46826. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  46827. {
  46828. front: {
  46829. height: math.unit(8 + 1/12, "feet"),
  46830. weight: math.unit(233, "lb"),
  46831. name: "Front",
  46832. image: {
  46833. source: "./media/characters/matsu/front.svg",
  46834. extra: 832/772,
  46835. bottom: 40/872
  46836. }
  46837. },
  46838. back: {
  46839. height: math.unit(8 + 1/12, "feet"),
  46840. weight: math.unit(233, "lb"),
  46841. name: "Back",
  46842. image: {
  46843. source: "./media/characters/matsu/back.svg",
  46844. extra: 839/780,
  46845. bottom: 47/886
  46846. }
  46847. },
  46848. },
  46849. [
  46850. {
  46851. name: "Normal",
  46852. height: math.unit(8 + 1/12, "feet"),
  46853. default: true
  46854. },
  46855. ]
  46856. ))
  46857. characterMakers.push(() => makeCharacter(
  46858. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  46859. {
  46860. front: {
  46861. height: math.unit(4, "feet"),
  46862. weight: math.unit(148, "lb"),
  46863. name: "Front",
  46864. image: {
  46865. source: "./media/characters/thiz/front.svg",
  46866. extra: 1913/1748,
  46867. bottom: 62/1975
  46868. }
  46869. },
  46870. },
  46871. [
  46872. {
  46873. name: "Normal",
  46874. height: math.unit(4, "feet"),
  46875. default: true
  46876. },
  46877. ]
  46878. ))
  46879. characterMakers.push(() => makeCharacter(
  46880. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  46881. {
  46882. front: {
  46883. height: math.unit(7 + 6/12, "feet"),
  46884. weight: math.unit(267, "lb"),
  46885. name: "Front",
  46886. image: {
  46887. source: "./media/characters/marcel/front.svg",
  46888. extra: 1221/1096,
  46889. bottom: 76/1297
  46890. }
  46891. },
  46892. },
  46893. [
  46894. {
  46895. name: "Normal",
  46896. height: math.unit(7 + 6/12, "feet"),
  46897. default: true
  46898. },
  46899. ]
  46900. ))
  46901. characterMakers.push(() => makeCharacter(
  46902. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  46903. {
  46904. side: {
  46905. height: math.unit(42, "meters"),
  46906. name: "Side",
  46907. image: {
  46908. source: "./media/characters/flake/side.svg",
  46909. extra: 1525/1306,
  46910. bottom: 209/1734
  46911. }
  46912. },
  46913. },
  46914. [
  46915. {
  46916. name: "Normal",
  46917. height: math.unit(42, "meters"),
  46918. default: true
  46919. },
  46920. ]
  46921. ))
  46922. characterMakers.push(() => makeCharacter(
  46923. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  46924. {
  46925. dressed: {
  46926. height: math.unit(6 + 4/12, "feet"),
  46927. weight: math.unit(520, "lb"),
  46928. name: "Dressed",
  46929. image: {
  46930. source: "./media/characters/someonne/dressed.svg",
  46931. extra: 1020/1010,
  46932. bottom: 178/1198
  46933. }
  46934. },
  46935. undressed: {
  46936. height: math.unit(6 + 4/12, "feet"),
  46937. weight: math.unit(520, "lb"),
  46938. name: "Undressed",
  46939. image: {
  46940. source: "./media/characters/someonne/undressed.svg",
  46941. extra: 1019/1014,
  46942. bottom: 169/1188
  46943. }
  46944. },
  46945. },
  46946. [
  46947. {
  46948. name: "Normal",
  46949. height: math.unit(6 + 4/12, "feet"),
  46950. default: true
  46951. },
  46952. ]
  46953. ))
  46954. characterMakers.push(() => makeCharacter(
  46955. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  46956. {
  46957. front: {
  46958. height: math.unit(3, "feet"),
  46959. weight: math.unit(30, "lb"),
  46960. name: "Front",
  46961. image: {
  46962. source: "./media/characters/till/front.svg",
  46963. extra: 892/823,
  46964. bottom: 55/947
  46965. }
  46966. },
  46967. },
  46968. [
  46969. {
  46970. name: "Normal",
  46971. height: math.unit(3, "feet"),
  46972. default: true
  46973. },
  46974. ]
  46975. ))
  46976. characterMakers.push(() => makeCharacter(
  46977. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  46978. {
  46979. front: {
  46980. height: math.unit(9 + 8/12, "feet"),
  46981. weight: math.unit(800, "lb"),
  46982. name: "Front",
  46983. image: {
  46984. source: "./media/characters/sydney-heki/front.svg",
  46985. extra: 1360/1300,
  46986. bottom: 22/1382
  46987. }
  46988. },
  46989. back: {
  46990. height: math.unit(9 + 8/12, "feet"),
  46991. weight: math.unit(800, "lb"),
  46992. name: "Back",
  46993. image: {
  46994. source: "./media/characters/sydney-heki/back.svg",
  46995. extra: 1356/1293,
  46996. bottom: 12/1368
  46997. }
  46998. },
  46999. frontDressed: {
  47000. height: math.unit(9 + 8/12, "feet"),
  47001. weight: math.unit(800, "lb"),
  47002. name: "Front-dressed",
  47003. image: {
  47004. source: "./media/characters/sydney-heki/front-dressed.svg",
  47005. extra: 1360/1300,
  47006. bottom: 22/1382
  47007. }
  47008. },
  47009. },
  47010. [
  47011. {
  47012. name: "Normal",
  47013. height: math.unit(9 + 8/12, "feet"),
  47014. default: true
  47015. },
  47016. {
  47017. name: "Macro",
  47018. height: math.unit(500, "feet")
  47019. },
  47020. {
  47021. name: "Megamacro",
  47022. height: math.unit(3.6, "miles")
  47023. },
  47024. ]
  47025. ))
  47026. characterMakers.push(() => makeCharacter(
  47027. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  47028. {
  47029. front: {
  47030. height: math.unit(200, "cm"),
  47031. weight: math.unit(250, "lb"),
  47032. name: "Front",
  47033. image: {
  47034. source: "./media/characters/fowler-karlsson/front.svg",
  47035. extra: 897/845,
  47036. bottom: 123/1020
  47037. }
  47038. },
  47039. back: {
  47040. height: math.unit(200, "cm"),
  47041. weight: math.unit(250, "lb"),
  47042. name: "Back",
  47043. image: {
  47044. source: "./media/characters/fowler-karlsson/back.svg",
  47045. extra: 999/944,
  47046. bottom: 26/1025
  47047. }
  47048. },
  47049. dick: {
  47050. height: math.unit(1.92, "feet"),
  47051. weight: math.unit(150, "lb"),
  47052. name: "Dick",
  47053. image: {
  47054. source: "./media/characters/fowler-karlsson/dick.svg"
  47055. }
  47056. },
  47057. },
  47058. [
  47059. {
  47060. name: "Normal",
  47061. height: math.unit(200, "cm"),
  47062. default: true
  47063. },
  47064. {
  47065. name: "Smaller Macro",
  47066. height: math.unit(90, "m")
  47067. },
  47068. {
  47069. name: "Macro",
  47070. height: math.unit(150, "m")
  47071. },
  47072. {
  47073. name: "Bigger Macro",
  47074. height: math.unit(300, "m")
  47075. },
  47076. ]
  47077. ))
  47078. characterMakers.push(() => makeCharacter(
  47079. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  47080. {
  47081. side: {
  47082. height: math.unit(8 + 2/12, "feet"),
  47083. weight: math.unit(1, "tonne"),
  47084. name: "Side",
  47085. image: {
  47086. source: "./media/characters/rylide/side.svg",
  47087. extra: 1318/1034,
  47088. bottom: 106/1424
  47089. }
  47090. },
  47091. sitting: {
  47092. height: math.unit(303, "cm"),
  47093. weight: math.unit(1, "tonne"),
  47094. name: "Sitting",
  47095. image: {
  47096. source: "./media/characters/rylide/sitting.svg",
  47097. extra: 1303/1103,
  47098. bottom: 36/1339
  47099. }
  47100. },
  47101. },
  47102. [
  47103. {
  47104. name: "Normal",
  47105. height: math.unit(8 + 2/12, "feet"),
  47106. default: true
  47107. },
  47108. ]
  47109. ))
  47110. characterMakers.push(() => makeCharacter(
  47111. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  47112. {
  47113. front: {
  47114. height: math.unit(5 + 10/12, "feet"),
  47115. weight: math.unit(160, "lb"),
  47116. name: "Front",
  47117. image: {
  47118. source: "./media/characters/pudask/front.svg",
  47119. extra: 1616/1590,
  47120. bottom: 161/1777
  47121. }
  47122. },
  47123. },
  47124. [
  47125. {
  47126. name: "Ferret Height",
  47127. height: math.unit(2 + 5/12, "feet")
  47128. },
  47129. {
  47130. name: "Canon Height",
  47131. height: math.unit(5 + 10/12, "feet"),
  47132. default: true
  47133. },
  47134. ]
  47135. ))
  47136. characterMakers.push(() => makeCharacter(
  47137. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  47138. {
  47139. front: {
  47140. height: math.unit(3 + 6/12, "feet"),
  47141. weight: math.unit(60, "lb"),
  47142. name: "Front",
  47143. image: {
  47144. source: "./media/characters/ramita/front.svg",
  47145. extra: 1402/1232,
  47146. bottom: 62/1464
  47147. }
  47148. },
  47149. dressed: {
  47150. height: math.unit(3 + 6/12, "feet"),
  47151. weight: math.unit(60, "lb"),
  47152. name: "Dressed",
  47153. image: {
  47154. source: "./media/characters/ramita/dressed.svg",
  47155. extra: 1534/1249,
  47156. bottom: 50/1584
  47157. }
  47158. },
  47159. },
  47160. [
  47161. {
  47162. name: "Normal",
  47163. height: math.unit(3 + 6/12, "feet"),
  47164. default: true
  47165. },
  47166. ]
  47167. ))
  47168. characterMakers.push(() => makeCharacter(
  47169. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  47170. {
  47171. front: {
  47172. height: math.unit(8, "feet"),
  47173. name: "Front",
  47174. image: {
  47175. source: "./media/characters/ark/front.svg",
  47176. extra: 772/693,
  47177. bottom: 45/817
  47178. }
  47179. },
  47180. },
  47181. [
  47182. {
  47183. name: "Normal",
  47184. height: math.unit(8, "feet"),
  47185. default: true
  47186. },
  47187. ]
  47188. ))
  47189. characterMakers.push(() => makeCharacter(
  47190. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  47191. {
  47192. front: {
  47193. height: math.unit(6, "feet"),
  47194. weight: math.unit(250, "lb"),
  47195. volume: math.unit(5/8, "gallons"),
  47196. name: "Front",
  47197. image: {
  47198. source: "./media/characters/ludwig-horn/front.svg",
  47199. extra: 1782/1635,
  47200. bottom: 96/1878
  47201. }
  47202. },
  47203. back: {
  47204. height: math.unit(6, "feet"),
  47205. weight: math.unit(250, "lb"),
  47206. volume: math.unit(5/8, "gallons"),
  47207. name: "Back",
  47208. image: {
  47209. source: "./media/characters/ludwig-horn/back.svg",
  47210. extra: 1874/1729,
  47211. bottom: 27/1901
  47212. }
  47213. },
  47214. dick: {
  47215. height: math.unit(1.05, "feet"),
  47216. weight: math.unit(15, "lb"),
  47217. volume: math.unit(5/8, "gallons"),
  47218. name: "Dick",
  47219. image: {
  47220. source: "./media/characters/ludwig-horn/dick.svg"
  47221. }
  47222. },
  47223. },
  47224. [
  47225. {
  47226. name: "Small",
  47227. height: math.unit(6, "feet")
  47228. },
  47229. {
  47230. name: "Typical",
  47231. height: math.unit(12, "feet"),
  47232. default: true
  47233. },
  47234. {
  47235. name: "Building",
  47236. height: math.unit(80, "feet")
  47237. },
  47238. {
  47239. name: "Town",
  47240. height: math.unit(800, "feet")
  47241. },
  47242. {
  47243. name: "Kingdom",
  47244. height: math.unit(80000, "feet")
  47245. },
  47246. {
  47247. name: "Planet",
  47248. height: math.unit(8000000, "feet")
  47249. },
  47250. {
  47251. name: "Universe",
  47252. height: math.unit(8000000000, "feet")
  47253. },
  47254. {
  47255. name: "Transcended",
  47256. height: math.unit(8e27, "feet")
  47257. },
  47258. ]
  47259. ))
  47260. characterMakers.push(() => makeCharacter(
  47261. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  47262. {
  47263. front: {
  47264. height: math.unit(5, "feet"),
  47265. weight: math.unit(50, "kg"),
  47266. name: "Front",
  47267. image: {
  47268. source: "./media/characters/biot-avery/front.svg",
  47269. extra: 1295/1232,
  47270. bottom: 86/1381
  47271. }
  47272. },
  47273. },
  47274. [
  47275. {
  47276. name: "Normal",
  47277. height: math.unit(5, "feet"),
  47278. default: true
  47279. },
  47280. ]
  47281. ))
  47282. characterMakers.push(() => makeCharacter(
  47283. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  47284. {
  47285. front: {
  47286. height: math.unit(6, "feet"),
  47287. name: "Front",
  47288. image: {
  47289. source: "./media/characters/kitsune-kiro/front.svg",
  47290. extra: 1270/1158,
  47291. bottom: 42/1312
  47292. }
  47293. },
  47294. frontAlt: {
  47295. height: math.unit(6, "feet"),
  47296. name: "Front-alt",
  47297. image: {
  47298. source: "./media/characters/kitsune-kiro/front-alt.svg",
  47299. extra: 1130/1081,
  47300. bottom: 36/1166
  47301. }
  47302. },
  47303. },
  47304. [
  47305. {
  47306. name: "Smol",
  47307. height: math.unit(3, "feet")
  47308. },
  47309. {
  47310. name: "Normal",
  47311. height: math.unit(6, "feet"),
  47312. default: true
  47313. },
  47314. ]
  47315. ))
  47316. characterMakers.push(() => makeCharacter(
  47317. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  47318. {
  47319. front: {
  47320. height: math.unit(6, "feet"),
  47321. weight: math.unit(125, "lb"),
  47322. name: "Front",
  47323. image: {
  47324. source: "./media/characters/jack-thatcher/front.svg",
  47325. extra: 1474/1370,
  47326. bottom: 26/1500
  47327. }
  47328. },
  47329. back: {
  47330. height: math.unit(6, "feet"),
  47331. weight: math.unit(125, "lb"),
  47332. name: "Back",
  47333. image: {
  47334. source: "./media/characters/jack-thatcher/back.svg",
  47335. extra: 1489/1384,
  47336. bottom: 18/1507
  47337. }
  47338. },
  47339. },
  47340. [
  47341. {
  47342. name: "Normal",
  47343. height: math.unit(6, "feet"),
  47344. default: true
  47345. },
  47346. {
  47347. name: "Macro",
  47348. height: math.unit(75, "feet")
  47349. },
  47350. {
  47351. name: "Macro-er",
  47352. height: math.unit(250, "feet")
  47353. },
  47354. ]
  47355. ))
  47356. characterMakers.push(() => makeCharacter(
  47357. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  47358. {
  47359. front: {
  47360. height: math.unit(7, "feet"),
  47361. weight: math.unit(110, "kg"),
  47362. name: "Front",
  47363. image: {
  47364. source: "./media/characters/max-hyper/front.svg",
  47365. extra: 1969/1881,
  47366. bottom: 49/2018
  47367. }
  47368. },
  47369. },
  47370. [
  47371. {
  47372. name: "Normal",
  47373. height: math.unit(7, "feet"),
  47374. default: true
  47375. },
  47376. ]
  47377. ))
  47378. characterMakers.push(() => makeCharacter(
  47379. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  47380. {
  47381. front: {
  47382. height: math.unit(5 + 5/12, "feet"),
  47383. weight: math.unit(160, "lb"),
  47384. name: "Front",
  47385. image: {
  47386. source: "./media/characters/spook/front.svg",
  47387. extra: 794/791,
  47388. bottom: 54/848
  47389. }
  47390. },
  47391. back: {
  47392. height: math.unit(5 + 5/12, "feet"),
  47393. weight: math.unit(160, "lb"),
  47394. name: "Back",
  47395. image: {
  47396. source: "./media/characters/spook/back.svg",
  47397. extra: 812/798,
  47398. bottom: 32/844
  47399. }
  47400. },
  47401. },
  47402. [
  47403. {
  47404. name: "Normal",
  47405. height: math.unit(5 + 5/12, "feet"),
  47406. default: true
  47407. },
  47408. ]
  47409. ))
  47410. characterMakers.push(() => makeCharacter(
  47411. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  47412. {
  47413. front: {
  47414. height: math.unit(18, "feet"),
  47415. name: "Front",
  47416. image: {
  47417. source: "./media/characters/xeaduulix/front.svg",
  47418. extra: 1380/1166,
  47419. bottom: 110/1490
  47420. }
  47421. },
  47422. back: {
  47423. height: math.unit(18, "feet"),
  47424. name: "Back",
  47425. image: {
  47426. source: "./media/characters/xeaduulix/back.svg",
  47427. extra: 1592/1170,
  47428. bottom: 128/1720
  47429. }
  47430. },
  47431. frontNsfw: {
  47432. height: math.unit(18, "feet"),
  47433. name: "Front (NSFW)",
  47434. image: {
  47435. source: "./media/characters/xeaduulix/front-nsfw.svg",
  47436. extra: 1380/1166,
  47437. bottom: 110/1490
  47438. }
  47439. },
  47440. backNsfw: {
  47441. height: math.unit(18, "feet"),
  47442. name: "Back (NSFW)",
  47443. image: {
  47444. source: "./media/characters/xeaduulix/back-nsfw.svg",
  47445. extra: 1592/1170,
  47446. bottom: 128/1720
  47447. }
  47448. },
  47449. },
  47450. [
  47451. {
  47452. name: "Normal",
  47453. height: math.unit(18, "feet"),
  47454. default: true
  47455. },
  47456. ]
  47457. ))
  47458. characterMakers.push(() => makeCharacter(
  47459. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  47460. {
  47461. spreadWings: {
  47462. height: math.unit(20, "feet"),
  47463. name: "Spread Wings",
  47464. image: {
  47465. source: "./media/characters/fledge/spread-wings.svg",
  47466. extra: 693/635,
  47467. bottom: 26/719
  47468. }
  47469. },
  47470. front: {
  47471. height: math.unit(20, "feet"),
  47472. name: "Front",
  47473. image: {
  47474. source: "./media/characters/fledge/front.svg",
  47475. extra: 684/637,
  47476. bottom: 18/702
  47477. }
  47478. },
  47479. frontAlt: {
  47480. height: math.unit(20, "feet"),
  47481. name: "Front (Alt)",
  47482. image: {
  47483. source: "./media/characters/fledge/front-alt.svg",
  47484. extra: 708/664,
  47485. bottom: 13/721
  47486. }
  47487. },
  47488. back: {
  47489. height: math.unit(20, "feet"),
  47490. name: "Back",
  47491. image: {
  47492. source: "./media/characters/fledge/back.svg",
  47493. extra: 718/634,
  47494. bottom: 22/740
  47495. }
  47496. },
  47497. head: {
  47498. height: math.unit(5.55, "feet"),
  47499. name: "Head",
  47500. image: {
  47501. source: "./media/characters/fledge/head.svg"
  47502. }
  47503. },
  47504. headAlt: {
  47505. height: math.unit(5.1, "feet"),
  47506. name: "Head (Alt)",
  47507. image: {
  47508. source: "./media/characters/fledge/head-alt.svg"
  47509. }
  47510. },
  47511. },
  47512. [
  47513. {
  47514. name: "Small",
  47515. height: math.unit(6 + 2/12, "feet")
  47516. },
  47517. {
  47518. name: "Big",
  47519. height: math.unit(20, "feet"),
  47520. default: true
  47521. },
  47522. {
  47523. name: "Giant",
  47524. height: math.unit(100, "feet")
  47525. },
  47526. {
  47527. name: "Macro",
  47528. height: math.unit(200, "feet")
  47529. },
  47530. ]
  47531. ))
  47532. characterMakers.push(() => makeCharacter(
  47533. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  47534. {
  47535. front: {
  47536. height: math.unit(1, "meter"),
  47537. name: "Front",
  47538. image: {
  47539. source: "./media/characters/atlas-morenai/front.svg",
  47540. extra: 1275/1043,
  47541. bottom: 19/1294
  47542. }
  47543. },
  47544. back: {
  47545. height: math.unit(1, "meter"),
  47546. name: "Back",
  47547. image: {
  47548. source: "./media/characters/atlas-morenai/back.svg",
  47549. extra: 1141/1001,
  47550. bottom: 25/1166
  47551. }
  47552. },
  47553. },
  47554. [
  47555. {
  47556. name: "Normal",
  47557. height: math.unit(1, "meter"),
  47558. default: true
  47559. },
  47560. {
  47561. name: "Magic-Infused",
  47562. height: math.unit(5, "meters")
  47563. },
  47564. ]
  47565. ))
  47566. characterMakers.push(() => makeCharacter(
  47567. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  47568. {
  47569. front: {
  47570. height: math.unit(5, "meters"),
  47571. name: "Front",
  47572. image: {
  47573. source: "./media/characters/cintia/front.svg",
  47574. extra: 1312/1228,
  47575. bottom: 38/1350
  47576. }
  47577. },
  47578. back: {
  47579. height: math.unit(5, "meters"),
  47580. name: "Back",
  47581. image: {
  47582. source: "./media/characters/cintia/back.svg",
  47583. extra: 1260/1166,
  47584. bottom: 98/1358
  47585. }
  47586. },
  47587. frontDick: {
  47588. height: math.unit(5, "meters"),
  47589. name: "Front (Dick)",
  47590. image: {
  47591. source: "./media/characters/cintia/front-dick.svg",
  47592. extra: 1312/1228,
  47593. bottom: 38/1350
  47594. }
  47595. },
  47596. backDick: {
  47597. height: math.unit(5, "meters"),
  47598. name: "Back (Dick)",
  47599. image: {
  47600. source: "./media/characters/cintia/back-dick.svg",
  47601. extra: 1260/1166,
  47602. bottom: 98/1358
  47603. }
  47604. },
  47605. bust: {
  47606. height: math.unit(1.97, "meters"),
  47607. name: "Bust",
  47608. image: {
  47609. source: "./media/characters/cintia/bust.svg",
  47610. extra: 617/565,
  47611. bottom: 0/617
  47612. }
  47613. },
  47614. },
  47615. [
  47616. {
  47617. name: "Normal",
  47618. height: math.unit(5, "meters"),
  47619. default: true
  47620. },
  47621. ]
  47622. ))
  47623. characterMakers.push(() => makeCharacter(
  47624. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  47625. {
  47626. side: {
  47627. height: math.unit(100, "feet"),
  47628. name: "Side",
  47629. image: {
  47630. source: "./media/characters/denora/side.svg",
  47631. extra: 875/803,
  47632. bottom: 9/884
  47633. }
  47634. },
  47635. },
  47636. [
  47637. {
  47638. name: "Standard",
  47639. height: math.unit(100, "feet"),
  47640. default: true
  47641. },
  47642. {
  47643. name: "Grand",
  47644. height: math.unit(1000, "feet")
  47645. },
  47646. {
  47647. name: "Conquering",
  47648. height: math.unit(10000, "feet")
  47649. },
  47650. ]
  47651. ))
  47652. characterMakers.push(() => makeCharacter(
  47653. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  47654. {
  47655. dressed: {
  47656. height: math.unit(8 + 5/12, "feet"),
  47657. weight: math.unit(700, "lb"),
  47658. name: "Dressed",
  47659. image: {
  47660. source: "./media/characters/kiva/dressed.svg",
  47661. extra: 1102/1055,
  47662. bottom: 60/1162
  47663. }
  47664. },
  47665. nude: {
  47666. height: math.unit(8 + 5/12, "feet"),
  47667. weight: math.unit(700, "lb"),
  47668. name: "Nude",
  47669. image: {
  47670. source: "./media/characters/kiva/nude.svg",
  47671. extra: 1102/1055,
  47672. bottom: 60/1162
  47673. }
  47674. },
  47675. },
  47676. [
  47677. {
  47678. name: "Base Height",
  47679. height: math.unit(8 + 5/12, "feet"),
  47680. default: true
  47681. },
  47682. {
  47683. name: "Macro",
  47684. height: math.unit(100, "feet")
  47685. },
  47686. {
  47687. name: "Max",
  47688. height: math.unit(3280, "feet")
  47689. },
  47690. ]
  47691. ))
  47692. characterMakers.push(() => makeCharacter(
  47693. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  47694. {
  47695. front: {
  47696. height: math.unit(6 + 8/12, "feet"),
  47697. weight: math.unit(250, "lb"),
  47698. name: "Front",
  47699. image: {
  47700. source: "./media/characters/ztragon/front.svg",
  47701. extra: 1825/1684,
  47702. bottom: 98/1923
  47703. }
  47704. },
  47705. },
  47706. [
  47707. {
  47708. name: "Normal",
  47709. height: math.unit(6 + 8/12, "feet"),
  47710. default: true
  47711. },
  47712. {
  47713. name: "Macro",
  47714. height: math.unit(80, "feet")
  47715. },
  47716. ]
  47717. ))
  47718. characterMakers.push(() => makeCharacter(
  47719. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  47720. {
  47721. front: {
  47722. height: math.unit(10.4, "feet"),
  47723. weight: math.unit(2, "tons"),
  47724. name: "Front",
  47725. image: {
  47726. source: "./media/characters/yesenia/front.svg",
  47727. extra: 1479/1474,
  47728. bottom: 233/1712
  47729. }
  47730. },
  47731. },
  47732. [
  47733. {
  47734. name: "Normal",
  47735. height: math.unit(10.4, "feet"),
  47736. default: true
  47737. },
  47738. ]
  47739. ))
  47740. characterMakers.push(() => makeCharacter(
  47741. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  47742. {
  47743. normal: {
  47744. height: math.unit(6 + 1/12, "feet"),
  47745. weight: math.unit(180, "lb"),
  47746. name: "Normal",
  47747. image: {
  47748. source: "./media/characters/leanne-lycheborne/normal.svg",
  47749. extra: 1748/1660,
  47750. bottom: 98/1846
  47751. }
  47752. },
  47753. were: {
  47754. height: math.unit(12, "feet"),
  47755. weight: math.unit(1600, "lb"),
  47756. name: "Were",
  47757. image: {
  47758. source: "./media/characters/leanne-lycheborne/were.svg",
  47759. extra: 1485/1432,
  47760. bottom: 66/1551
  47761. }
  47762. },
  47763. },
  47764. [
  47765. {
  47766. name: "Normal",
  47767. height: math.unit(6 + 1/12, "feet"),
  47768. default: true
  47769. },
  47770. ]
  47771. ))
  47772. characterMakers.push(() => makeCharacter(
  47773. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  47774. {
  47775. side: {
  47776. height: math.unit(13, "feet"),
  47777. name: "Side",
  47778. image: {
  47779. source: "./media/characters/kira-tyler/side.svg",
  47780. extra: 693/393,
  47781. bottom: 58/751
  47782. }
  47783. },
  47784. },
  47785. [
  47786. {
  47787. name: "Normal",
  47788. height: math.unit(13, "feet"),
  47789. default: true
  47790. },
  47791. ]
  47792. ))
  47793. characterMakers.push(() => makeCharacter(
  47794. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  47795. {
  47796. front: {
  47797. height: math.unit(10.3, "feet"),
  47798. weight: math.unit(150, "lb"),
  47799. name: "Front",
  47800. image: {
  47801. source: "./media/characters/blaze/front.svg",
  47802. extra: 1378/1286,
  47803. bottom: 172/1550
  47804. }
  47805. },
  47806. },
  47807. [
  47808. {
  47809. name: "Normal",
  47810. height: math.unit(10.3, "feet"),
  47811. default: true
  47812. },
  47813. ]
  47814. ))
  47815. characterMakers.push(() => makeCharacter(
  47816. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  47817. {
  47818. side: {
  47819. height: math.unit(2, "meters"),
  47820. weight: math.unit(400, "kg"),
  47821. name: "Side",
  47822. image: {
  47823. source: "./media/characters/anu/side.svg",
  47824. extra: 506/394,
  47825. bottom: 18/524
  47826. }
  47827. },
  47828. },
  47829. [
  47830. {
  47831. name: "Humanoid",
  47832. height: math.unit(2, "meters")
  47833. },
  47834. {
  47835. name: "Normal",
  47836. height: math.unit(5, "meters"),
  47837. default: true
  47838. },
  47839. ]
  47840. ))
  47841. characterMakers.push(() => makeCharacter(
  47842. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  47843. {
  47844. front: {
  47845. height: math.unit(5 + 5/12, "feet"),
  47846. weight: math.unit(170, "lb"),
  47847. name: "Front",
  47848. image: {
  47849. source: "./media/characters/synx-the-lynx/front.svg",
  47850. extra: 1893/1745,
  47851. bottom: 17/1910
  47852. }
  47853. },
  47854. side: {
  47855. height: math.unit(5 + 5/12, "feet"),
  47856. weight: math.unit(170, "lb"),
  47857. name: "Side",
  47858. image: {
  47859. source: "./media/characters/synx-the-lynx/side.svg",
  47860. extra: 1884/1740,
  47861. bottom: 39/1923
  47862. }
  47863. },
  47864. back: {
  47865. height: math.unit(5 + 5/12, "feet"),
  47866. weight: math.unit(170, "lb"),
  47867. name: "Back",
  47868. image: {
  47869. source: "./media/characters/synx-the-lynx/back.svg",
  47870. extra: 1903/1755,
  47871. bottom: 14/1917
  47872. }
  47873. },
  47874. },
  47875. [
  47876. {
  47877. name: "Normal",
  47878. height: math.unit(5 + 5/12, "feet"),
  47879. default: true
  47880. },
  47881. ]
  47882. ))
  47883. characterMakers.push(() => makeCharacter(
  47884. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  47885. {
  47886. back: {
  47887. height: math.unit(15, "feet"),
  47888. name: "Back",
  47889. image: {
  47890. source: "./media/characters/nadezda-fex/back.svg",
  47891. extra: 1695/1481,
  47892. bottom: 25/1720
  47893. }
  47894. },
  47895. },
  47896. [
  47897. {
  47898. name: "Normal",
  47899. height: math.unit(15, "feet"),
  47900. default: true
  47901. },
  47902. {
  47903. name: "Macro",
  47904. height: math.unit(2.5, "miles")
  47905. },
  47906. {
  47907. name: "Goddess",
  47908. height: math.unit(2, "multiverses")
  47909. },
  47910. ]
  47911. ))
  47912. characterMakers.push(() => makeCharacter(
  47913. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  47914. {
  47915. front: {
  47916. height: math.unit(216, "cm"),
  47917. name: "Front",
  47918. image: {
  47919. source: "./media/characters/lev/front.svg",
  47920. extra: 1728/1670,
  47921. bottom: 82/1810
  47922. }
  47923. },
  47924. back: {
  47925. height: math.unit(216, "cm"),
  47926. name: "Back",
  47927. image: {
  47928. source: "./media/characters/lev/back.svg",
  47929. extra: 1738/1675,
  47930. bottom: 24/1762
  47931. }
  47932. },
  47933. dressed: {
  47934. height: math.unit(216, "cm"),
  47935. name: "Dressed",
  47936. image: {
  47937. source: "./media/characters/lev/dressed.svg",
  47938. extra: 1397/1351,
  47939. bottom: 73/1470
  47940. }
  47941. },
  47942. head: {
  47943. height: math.unit(0.51, "meter"),
  47944. name: "Head",
  47945. image: {
  47946. source: "./media/characters/lev/head.svg"
  47947. }
  47948. },
  47949. },
  47950. [
  47951. {
  47952. name: "Normal",
  47953. height: math.unit(216, "cm"),
  47954. default: true
  47955. },
  47956. {
  47957. name: "Relatively Macro",
  47958. height: math.unit(80, "meters")
  47959. },
  47960. {
  47961. name: "Megamacro",
  47962. height: math.unit(21600, "meters")
  47963. },
  47964. {
  47965. name: "Megamacro+",
  47966. height: math.unit(64800, "meters")
  47967. },
  47968. ]
  47969. ))
  47970. characterMakers.push(() => makeCharacter(
  47971. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  47972. {
  47973. front: {
  47974. height: math.unit(2, "meters"),
  47975. weight: math.unit(80, "kg"),
  47976. name: "Front",
  47977. image: {
  47978. source: "./media/characters/moka/front.svg",
  47979. extra: 1337/1255,
  47980. bottom: 58/1395
  47981. }
  47982. },
  47983. },
  47984. [
  47985. {
  47986. name: "Micro",
  47987. height: math.unit(15, "cm")
  47988. },
  47989. {
  47990. name: "Normal",
  47991. height: math.unit(2, "meters"),
  47992. default: true
  47993. },
  47994. {
  47995. name: "Macro",
  47996. height: math.unit(20, "meters"),
  47997. },
  47998. ]
  47999. ))
  48000. characterMakers.push(() => makeCharacter(
  48001. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  48002. {
  48003. front: {
  48004. height: math.unit(9, "feet"),
  48005. weight: math.unit(240, "lb"),
  48006. name: "Front",
  48007. image: {
  48008. source: "./media/characters/kuzco/front.svg",
  48009. extra: 1593/1487,
  48010. bottom: 32/1625
  48011. }
  48012. },
  48013. side: {
  48014. height: math.unit(9, "feet"),
  48015. weight: math.unit(240, "lb"),
  48016. name: "Side",
  48017. image: {
  48018. source: "./media/characters/kuzco/side.svg",
  48019. extra: 1575/1485,
  48020. bottom: 30/1605
  48021. }
  48022. },
  48023. back: {
  48024. height: math.unit(9, "feet"),
  48025. weight: math.unit(240, "lb"),
  48026. name: "Back",
  48027. image: {
  48028. source: "./media/characters/kuzco/back.svg",
  48029. extra: 1603/1514,
  48030. bottom: 14/1617
  48031. }
  48032. },
  48033. },
  48034. [
  48035. {
  48036. name: "Normal",
  48037. height: math.unit(9, "feet"),
  48038. default: true
  48039. },
  48040. ]
  48041. ))
  48042. characterMakers.push(() => makeCharacter(
  48043. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  48044. {
  48045. side: {
  48046. height: math.unit(2, "meters"),
  48047. weight: math.unit(300, "kg"),
  48048. name: "Side",
  48049. image: {
  48050. source: "./media/characters/ceruleus/side.svg",
  48051. extra: 1068/974,
  48052. bottom: 126/1194
  48053. }
  48054. },
  48055. maw: {
  48056. height: math.unit(0.8125, "meter"),
  48057. name: "Maw",
  48058. image: {
  48059. source: "./media/characters/ceruleus/maw.svg"
  48060. }
  48061. },
  48062. },
  48063. [
  48064. {
  48065. name: "Normal",
  48066. height: math.unit(16, "meters"),
  48067. default: true
  48068. },
  48069. ]
  48070. ))
  48071. characterMakers.push(() => makeCharacter(
  48072. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  48073. {
  48074. front: {
  48075. height: math.unit(9, "feet"),
  48076. weight: math.unit(500, "kg"),
  48077. name: "Front",
  48078. image: {
  48079. source: "./media/characters/acouya/front.svg",
  48080. extra: 1660/1473,
  48081. bottom: 28/1688
  48082. }
  48083. },
  48084. },
  48085. [
  48086. {
  48087. name: "Normal",
  48088. height: math.unit(9, "feet"),
  48089. default: true
  48090. },
  48091. ]
  48092. ))
  48093. characterMakers.push(() => makeCharacter(
  48094. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  48095. {
  48096. front: {
  48097. height: math.unit(5 + 6/12, "feet"),
  48098. weight: math.unit(195, "lb"),
  48099. name: "Front",
  48100. image: {
  48101. source: "./media/characters/vant/front.svg",
  48102. extra: 1396/1320,
  48103. bottom: 20/1416
  48104. }
  48105. },
  48106. back: {
  48107. height: math.unit(5 + 6/12, "feet"),
  48108. weight: math.unit(195, "lb"),
  48109. name: "Back",
  48110. image: {
  48111. source: "./media/characters/vant/back.svg",
  48112. extra: 1396/1320,
  48113. bottom: 20/1416
  48114. }
  48115. },
  48116. maw: {
  48117. height: math.unit(0.75, "feet"),
  48118. name: "Maw",
  48119. image: {
  48120. source: "./media/characters/vant/maw.svg"
  48121. }
  48122. },
  48123. paw: {
  48124. height: math.unit(1.07, "feet"),
  48125. name: "Paw",
  48126. image: {
  48127. source: "./media/characters/vant/paw.svg"
  48128. }
  48129. },
  48130. },
  48131. [
  48132. {
  48133. name: "Micro",
  48134. height: math.unit(0.25, "inches")
  48135. },
  48136. {
  48137. name: "Normal",
  48138. height: math.unit(5 + 6/12, "feet"),
  48139. default: true
  48140. },
  48141. {
  48142. name: "Macro",
  48143. height: math.unit(75, "feet")
  48144. },
  48145. ]
  48146. ))
  48147. characterMakers.push(() => makeCharacter(
  48148. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  48149. {
  48150. front: {
  48151. height: math.unit(30, "meters"),
  48152. weight: math.unit(363, "tons"),
  48153. name: "Front",
  48154. image: {
  48155. source: "./media/characters/ahra/front.svg",
  48156. extra: 1914/1814,
  48157. bottom: 46/1960
  48158. }
  48159. },
  48160. },
  48161. [
  48162. {
  48163. name: "Macro",
  48164. height: math.unit(30, "meters"),
  48165. default: true
  48166. },
  48167. ]
  48168. ))
  48169. characterMakers.push(() => makeCharacter(
  48170. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  48171. {
  48172. undressed: {
  48173. height: math.unit(2, "m"),
  48174. weight: math.unit(250, "kg"),
  48175. name: "Undressed",
  48176. image: {
  48177. source: "./media/characters/coriander/undressed.svg",
  48178. extra: 1757/1606,
  48179. bottom: 107/1864
  48180. }
  48181. },
  48182. dressed: {
  48183. height: math.unit(2, "m"),
  48184. weight: math.unit(250, "kg"),
  48185. name: "Dressed",
  48186. image: {
  48187. source: "./media/characters/coriander/dressed.svg",
  48188. extra: 1757/1606,
  48189. bottom: 107/1864
  48190. }
  48191. },
  48192. },
  48193. [
  48194. {
  48195. name: "Normal",
  48196. height: math.unit(4, "meters"),
  48197. default: true
  48198. },
  48199. {
  48200. name: "XL",
  48201. height: math.unit(6, "meters")
  48202. },
  48203. {
  48204. name: "XXL",
  48205. height: math.unit(8, "meters")
  48206. },
  48207. ]
  48208. ))
  48209. characterMakers.push(() => makeCharacter(
  48210. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  48211. {
  48212. front: {
  48213. height: math.unit(6, "feet"),
  48214. name: "Front",
  48215. image: {
  48216. source: "./media/characters/syrinx/front.svg",
  48217. extra: 1557/1259,
  48218. bottom: 171/1728
  48219. }
  48220. },
  48221. },
  48222. [
  48223. {
  48224. name: "Normal",
  48225. height: math.unit(6 + 3/12, "feet"),
  48226. default: true
  48227. },
  48228. ]
  48229. ))
  48230. characterMakers.push(() => makeCharacter(
  48231. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  48232. {
  48233. front: {
  48234. height: math.unit(11 + 6/12, "feet"),
  48235. weight: math.unit(1.5, "tons"),
  48236. name: "Front",
  48237. image: {
  48238. source: "./media/characters/bor/front.svg",
  48239. extra: 1189/1109,
  48240. bottom: 170/1359
  48241. }
  48242. },
  48243. },
  48244. [
  48245. {
  48246. name: "Normal",
  48247. height: math.unit(11 + 6/12, "feet"),
  48248. default: true
  48249. },
  48250. {
  48251. name: "Macro",
  48252. height: math.unit(32 + 9/12, "feet")
  48253. },
  48254. ]
  48255. ))
  48256. characterMakers.push(() => makeCharacter(
  48257. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  48258. {
  48259. anthro: {
  48260. height: math.unit(9, "feet"),
  48261. weight: math.unit(2076, "lb"),
  48262. name: "Anthro",
  48263. image: {
  48264. source: "./media/characters/abacus/anthro.svg",
  48265. extra: 1540/1494,
  48266. bottom: 233/1773
  48267. }
  48268. },
  48269. pigeon: {
  48270. height: math.unit(1, "feet"),
  48271. name: "Pigeon",
  48272. image: {
  48273. source: "./media/characters/abacus/pigeon.svg",
  48274. extra: 528/525,
  48275. bottom: 46/574
  48276. }
  48277. },
  48278. },
  48279. [
  48280. {
  48281. name: "Normal",
  48282. height: math.unit(9, "feet"),
  48283. default: true
  48284. },
  48285. ]
  48286. ))
  48287. characterMakers.push(() => makeCharacter(
  48288. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  48289. {
  48290. side: {
  48291. height: math.unit(6, "feet"),
  48292. name: "Side",
  48293. image: {
  48294. source: "./media/characters/delkhan/side.svg",
  48295. extra: 1884/1786,
  48296. bottom: 308/2192
  48297. }
  48298. },
  48299. head: {
  48300. height: math.unit(3.38, "feet"),
  48301. name: "Head",
  48302. image: {
  48303. source: "./media/characters/delkhan/head.svg"
  48304. }
  48305. },
  48306. },
  48307. [
  48308. {
  48309. name: "Normal",
  48310. height: math.unit(72, "feet"),
  48311. default: true
  48312. },
  48313. {
  48314. name: "Giant",
  48315. height: math.unit(172, "feet")
  48316. },
  48317. ]
  48318. ))
  48319. characterMakers.push(() => makeCharacter(
  48320. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  48321. {
  48322. standing: {
  48323. height: math.unit(6, "feet"),
  48324. name: "Standing",
  48325. image: {
  48326. source: "./media/characters/euchidat/standing.svg",
  48327. extra: 1612/1553,
  48328. bottom: 116/1728
  48329. }
  48330. },
  48331. leaning: {
  48332. height: math.unit(6, "feet"),
  48333. name: "Leaning",
  48334. image: {
  48335. source: "./media/characters/euchidat/leaning.svg",
  48336. extra: 1719/1674,
  48337. bottom: 27/1746
  48338. }
  48339. },
  48340. },
  48341. [
  48342. {
  48343. name: "Normal",
  48344. height: math.unit(175, "feet"),
  48345. default: true
  48346. },
  48347. {
  48348. name: "Megamacro",
  48349. height: math.unit(190, "miles")
  48350. },
  48351. {
  48352. name: "Gigamacro",
  48353. height: math.unit(190000, "miles")
  48354. },
  48355. ]
  48356. ))
  48357. characterMakers.push(() => makeCharacter(
  48358. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  48359. {
  48360. front: {
  48361. height: math.unit(6, "feet"),
  48362. weight: math.unit(150, "lb"),
  48363. name: "Front",
  48364. image: {
  48365. source: "./media/characters/rebecca-stack/front.svg",
  48366. extra: 1256/1201,
  48367. bottom: 18/1274
  48368. }
  48369. },
  48370. },
  48371. [
  48372. {
  48373. name: "Normal",
  48374. height: math.unit(5 + 8/12, "feet"),
  48375. default: true
  48376. },
  48377. {
  48378. name: "Demolitionist",
  48379. height: math.unit(200, "feet")
  48380. },
  48381. {
  48382. name: "Out of Control",
  48383. height: math.unit(2, "miles")
  48384. },
  48385. {
  48386. name: "Giga",
  48387. height: math.unit(7200, "miles")
  48388. },
  48389. ]
  48390. ))
  48391. characterMakers.push(() => makeCharacter(
  48392. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  48393. {
  48394. front: {
  48395. height: math.unit(6, "feet"),
  48396. weight: math.unit(150, "lb"),
  48397. name: "Front",
  48398. image: {
  48399. source: "./media/characters/jenny-cartwright/front.svg",
  48400. extra: 1384/1376,
  48401. bottom: 58/1442
  48402. }
  48403. },
  48404. },
  48405. [
  48406. {
  48407. name: "Normal",
  48408. height: math.unit(6 + 7/12, "feet"),
  48409. default: true
  48410. },
  48411. {
  48412. name: "Librarian",
  48413. height: math.unit(55, "feet")
  48414. },
  48415. {
  48416. name: "Sightseer",
  48417. height: math.unit(50, "miles")
  48418. },
  48419. {
  48420. name: "Giga",
  48421. height: math.unit(30000, "miles")
  48422. },
  48423. ]
  48424. ))
  48425. characterMakers.push(() => makeCharacter(
  48426. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  48427. {
  48428. nude: {
  48429. height: math.unit(8, "feet"),
  48430. weight: math.unit(225, "lb"),
  48431. name: "Nude",
  48432. image: {
  48433. source: "./media/characters/marvy/nude.svg",
  48434. extra: 1900/1683,
  48435. bottom: 89/1989
  48436. }
  48437. },
  48438. dressed: {
  48439. height: math.unit(8, "feet"),
  48440. weight: math.unit(225, "lb"),
  48441. name: "Dressed",
  48442. image: {
  48443. source: "./media/characters/marvy/dressed.svg",
  48444. extra: 1900/1683,
  48445. bottom: 89/1989
  48446. }
  48447. },
  48448. head: {
  48449. height: math.unit(2.85, "feet"),
  48450. name: "Head",
  48451. image: {
  48452. source: "./media/characters/marvy/head.svg"
  48453. }
  48454. },
  48455. },
  48456. [
  48457. {
  48458. name: "Normal",
  48459. height: math.unit(8, "feet"),
  48460. default: true
  48461. },
  48462. ]
  48463. ))
  48464. characterMakers.push(() => makeCharacter(
  48465. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  48466. {
  48467. front: {
  48468. height: math.unit(8, "feet"),
  48469. weight: math.unit(250, "lb"),
  48470. name: "Front",
  48471. image: {
  48472. source: "./media/characters/leah/front.svg",
  48473. extra: 1257/1149,
  48474. bottom: 109/1366
  48475. }
  48476. },
  48477. },
  48478. [
  48479. {
  48480. name: "Normal",
  48481. height: math.unit(8, "feet"),
  48482. default: true
  48483. },
  48484. {
  48485. name: "Minimacro",
  48486. height: math.unit(40, "feet")
  48487. },
  48488. {
  48489. name: "Macro",
  48490. height: math.unit(124, "feet")
  48491. },
  48492. {
  48493. name: "Megamacro",
  48494. height: math.unit(850, "feet")
  48495. },
  48496. ]
  48497. ))
  48498. characterMakers.push(() => makeCharacter(
  48499. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  48500. {
  48501. side: {
  48502. height: math.unit(13 + 6/12, "feet"),
  48503. weight: math.unit(3200, "lb"),
  48504. name: "Side",
  48505. image: {
  48506. source: "./media/characters/alvir/side.svg",
  48507. extra: 896/589,
  48508. bottom: 26/922
  48509. }
  48510. },
  48511. },
  48512. [
  48513. {
  48514. name: "Normal",
  48515. height: math.unit(13 + 6/12, "feet"),
  48516. default: true
  48517. },
  48518. ]
  48519. ))
  48520. characterMakers.push(() => makeCharacter(
  48521. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  48522. {
  48523. front: {
  48524. height: math.unit(5 + 4/12, "feet"),
  48525. weight: math.unit(236, "lb"),
  48526. name: "Front",
  48527. image: {
  48528. source: "./media/characters/zaina-khalil/front.svg",
  48529. extra: 1533/1485,
  48530. bottom: 94/1627
  48531. }
  48532. },
  48533. side: {
  48534. height: math.unit(5 + 4/12, "feet"),
  48535. weight: math.unit(236, "lb"),
  48536. name: "Side",
  48537. image: {
  48538. source: "./media/characters/zaina-khalil/side.svg",
  48539. extra: 1537/1498,
  48540. bottom: 66/1603
  48541. }
  48542. },
  48543. back: {
  48544. height: math.unit(5 + 4/12, "feet"),
  48545. weight: math.unit(236, "lb"),
  48546. name: "Back",
  48547. image: {
  48548. source: "./media/characters/zaina-khalil/back.svg",
  48549. extra: 1546/1494,
  48550. bottom: 89/1635
  48551. }
  48552. },
  48553. },
  48554. [
  48555. {
  48556. name: "Normal",
  48557. height: math.unit(5 + 4/12, "feet"),
  48558. default: true
  48559. },
  48560. ]
  48561. ))
  48562. characterMakers.push(() => makeCharacter(
  48563. { name: "Terry", species: ["husky"], tags: ["taur"] },
  48564. {
  48565. side: {
  48566. height: math.unit(12, "feet"),
  48567. weight: math.unit(4000, "lb"),
  48568. name: "Side",
  48569. image: {
  48570. source: "./media/characters/terry/side.svg",
  48571. extra: 1518/1439,
  48572. bottom: 149/1667
  48573. }
  48574. },
  48575. },
  48576. [
  48577. {
  48578. name: "Normal",
  48579. height: math.unit(12, "feet"),
  48580. default: true
  48581. },
  48582. ]
  48583. ))
  48584. characterMakers.push(() => makeCharacter(
  48585. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  48586. {
  48587. front: {
  48588. height: math.unit(12, "feet"),
  48589. weight: math.unit(1500, "lb"),
  48590. name: "Front",
  48591. image: {
  48592. source: "./media/characters/kahea/front.svg",
  48593. extra: 1722/1617,
  48594. bottom: 179/1901
  48595. }
  48596. },
  48597. },
  48598. [
  48599. {
  48600. name: "Normal",
  48601. height: math.unit(12, "feet"),
  48602. default: true
  48603. },
  48604. ]
  48605. ))
  48606. characterMakers.push(() => makeCharacter(
  48607. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  48608. {
  48609. demonFront: {
  48610. height: math.unit(36, "feet"),
  48611. name: "Front",
  48612. image: {
  48613. source: "./media/characters/alex-xuria/demon-front.svg",
  48614. extra: 1705/1673,
  48615. bottom: 198/1903
  48616. },
  48617. form: "demon",
  48618. default: true
  48619. },
  48620. demonBack: {
  48621. height: math.unit(36, "feet"),
  48622. name: "Back",
  48623. image: {
  48624. source: "./media/characters/alex-xuria/demon-back.svg",
  48625. extra: 1725/1693,
  48626. bottom: 70/1795
  48627. },
  48628. form: "demon"
  48629. },
  48630. demonHead: {
  48631. height: math.unit(2.14, "meters"),
  48632. name: "Head",
  48633. image: {
  48634. source: "./media/characters/alex-xuria/demon-head.svg"
  48635. },
  48636. form: "demon"
  48637. },
  48638. demonHand: {
  48639. height: math.unit(1.61, "meters"),
  48640. name: "Hand",
  48641. image: {
  48642. source: "./media/characters/alex-xuria/demon-hand.svg"
  48643. },
  48644. form: "demon"
  48645. },
  48646. demonPaw: {
  48647. height: math.unit(1.35, "meters"),
  48648. name: "Paw",
  48649. image: {
  48650. source: "./media/characters/alex-xuria/demon-paw.svg"
  48651. },
  48652. form: "demon"
  48653. },
  48654. demonFoot: {
  48655. height: math.unit(2.2, "meters"),
  48656. name: "Foot",
  48657. image: {
  48658. source: "./media/characters/alex-xuria/demon-foot.svg"
  48659. },
  48660. form: "demon"
  48661. },
  48662. demonCock: {
  48663. height: math.unit(1.74, "meters"),
  48664. name: "Cock",
  48665. image: {
  48666. source: "./media/characters/alex-xuria/demon-cock.svg"
  48667. },
  48668. form: "demon"
  48669. },
  48670. demonTailClosed: {
  48671. height: math.unit(1.47, "meters"),
  48672. name: "Tail (Closed)",
  48673. image: {
  48674. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  48675. },
  48676. form: "demon"
  48677. },
  48678. demonTailOpen: {
  48679. height: math.unit(2.85, "meters"),
  48680. name: "Tail (Open)",
  48681. image: {
  48682. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  48683. },
  48684. form: "demon"
  48685. },
  48686. incubusFront: {
  48687. height: math.unit(12, "feet"),
  48688. name: "Front",
  48689. image: {
  48690. source: "./media/characters/alex-xuria/incubus-front.svg",
  48691. extra: 1754/1677,
  48692. bottom: 125/1879
  48693. },
  48694. form: "incubus",
  48695. default: true
  48696. },
  48697. incubusBack: {
  48698. height: math.unit(12, "feet"),
  48699. name: "Back",
  48700. image: {
  48701. source: "./media/characters/alex-xuria/incubus-back.svg",
  48702. extra: 1702/1647,
  48703. bottom: 30/1732
  48704. },
  48705. form: "incubus"
  48706. },
  48707. incubusHead: {
  48708. height: math.unit(3.45, "feet"),
  48709. name: "Head",
  48710. image: {
  48711. source: "./media/characters/alex-xuria/incubus-head.svg"
  48712. },
  48713. form: "incubus"
  48714. },
  48715. rabbitFront: {
  48716. height: math.unit(6, "feet"),
  48717. name: "Front",
  48718. image: {
  48719. source: "./media/characters/alex-xuria/rabbit-front.svg",
  48720. extra: 1369/1349,
  48721. bottom: 45/1414
  48722. },
  48723. form: "rabbit",
  48724. default: true
  48725. },
  48726. rabbitSide: {
  48727. height: math.unit(6, "feet"),
  48728. name: "Side",
  48729. image: {
  48730. source: "./media/characters/alex-xuria/rabbit-side.svg",
  48731. extra: 1370/1356,
  48732. bottom: 37/1407
  48733. },
  48734. form: "rabbit"
  48735. },
  48736. rabbitBack: {
  48737. height: math.unit(6, "feet"),
  48738. name: "Back",
  48739. image: {
  48740. source: "./media/characters/alex-xuria/rabbit-back.svg",
  48741. extra: 1375/1358,
  48742. bottom: 43/1418
  48743. },
  48744. form: "rabbit"
  48745. },
  48746. },
  48747. [
  48748. {
  48749. name: "Normal",
  48750. height: math.unit(6, "feet"),
  48751. default: true,
  48752. form: "rabbit"
  48753. },
  48754. {
  48755. name: "Incubus",
  48756. height: math.unit(12, "feet"),
  48757. default: true,
  48758. form: "incubus"
  48759. },
  48760. {
  48761. name: "Demon",
  48762. height: math.unit(36, "feet"),
  48763. default: true,
  48764. form: "demon"
  48765. }
  48766. ],
  48767. {
  48768. "demon": {
  48769. name: "Demon",
  48770. default: true
  48771. },
  48772. "incubus": {
  48773. name: "Incubus",
  48774. },
  48775. "rabbit": {
  48776. name: "Rabbit"
  48777. }
  48778. }
  48779. ))
  48780. characterMakers.push(() => makeCharacter(
  48781. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  48782. {
  48783. front: {
  48784. height: math.unit(7 + 5/12, "feet"),
  48785. weight: math.unit(510, "lb"),
  48786. name: "Front",
  48787. image: {
  48788. source: "./media/characters/syrup/front.svg",
  48789. extra: 932/916,
  48790. bottom: 26/958
  48791. }
  48792. },
  48793. },
  48794. [
  48795. {
  48796. name: "Normal",
  48797. height: math.unit(7 + 5/12, "feet"),
  48798. default: true
  48799. },
  48800. {
  48801. name: "Big",
  48802. height: math.unit(50, "feet")
  48803. },
  48804. {
  48805. name: "Macro",
  48806. height: math.unit(300, "feet")
  48807. },
  48808. {
  48809. name: "Megamacro",
  48810. height: math.unit(1, "mile")
  48811. },
  48812. ]
  48813. ))
  48814. characterMakers.push(() => makeCharacter(
  48815. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  48816. {
  48817. front: {
  48818. height: math.unit(6 + 9/12, "feet"),
  48819. name: "Front",
  48820. image: {
  48821. source: "./media/characters/zeimne/front.svg",
  48822. extra: 1969/1806,
  48823. bottom: 53/2022
  48824. }
  48825. },
  48826. },
  48827. [
  48828. {
  48829. name: "Normal",
  48830. height: math.unit(6 + 9/12, "feet"),
  48831. default: true
  48832. },
  48833. {
  48834. name: "Giant",
  48835. height: math.unit(550, "feet")
  48836. },
  48837. {
  48838. name: "Mega",
  48839. height: math.unit(3, "miles")
  48840. },
  48841. {
  48842. name: "Giga",
  48843. height: math.unit(250, "miles")
  48844. },
  48845. {
  48846. name: "Tera",
  48847. height: math.unit(1, "AU")
  48848. },
  48849. ]
  48850. ))
  48851. characterMakers.push(() => makeCharacter(
  48852. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  48853. {
  48854. front: {
  48855. height: math.unit(5 + 2/12, "feet"),
  48856. name: "Front",
  48857. image: {
  48858. source: "./media/characters/grar/front.svg",
  48859. extra: 1331/1119,
  48860. bottom: 60/1391
  48861. }
  48862. },
  48863. back: {
  48864. height: math.unit(5 + 2/12, "feet"),
  48865. name: "Back",
  48866. image: {
  48867. source: "./media/characters/grar/back.svg",
  48868. extra: 1385/1169,
  48869. bottom: 23/1408
  48870. }
  48871. },
  48872. },
  48873. [
  48874. {
  48875. name: "Normal",
  48876. height: math.unit(5 + 2/12, "feet"),
  48877. default: true
  48878. },
  48879. ]
  48880. ))
  48881. characterMakers.push(() => makeCharacter(
  48882. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  48883. {
  48884. front: {
  48885. height: math.unit(13 + 7/12, "feet"),
  48886. weight: math.unit(2200, "lb"),
  48887. name: "Front",
  48888. image: {
  48889. source: "./media/characters/endraya/front.svg",
  48890. extra: 1289/1215,
  48891. bottom: 50/1339
  48892. }
  48893. },
  48894. nude: {
  48895. height: math.unit(13 + 7/12, "feet"),
  48896. weight: math.unit(2200, "lb"),
  48897. name: "Nude",
  48898. image: {
  48899. source: "./media/characters/endraya/nude.svg",
  48900. extra: 1247/1171,
  48901. bottom: 40/1287
  48902. }
  48903. },
  48904. head: {
  48905. height: math.unit(2.6, "feet"),
  48906. name: "Head",
  48907. image: {
  48908. source: "./media/characters/endraya/head.svg"
  48909. }
  48910. },
  48911. slit: {
  48912. height: math.unit(3.4, "feet"),
  48913. name: "Slit",
  48914. image: {
  48915. source: "./media/characters/endraya/slit.svg"
  48916. }
  48917. },
  48918. },
  48919. [
  48920. {
  48921. name: "Normal",
  48922. height: math.unit(13 + 7/12, "feet"),
  48923. default: true
  48924. },
  48925. {
  48926. name: "Macro",
  48927. height: math.unit(200, "feet")
  48928. },
  48929. ]
  48930. ))
  48931. characterMakers.push(() => makeCharacter(
  48932. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  48933. {
  48934. front: {
  48935. height: math.unit(1.81, "meters"),
  48936. weight: math.unit(69, "kg"),
  48937. name: "Front",
  48938. image: {
  48939. source: "./media/characters/rodryana/front.svg",
  48940. extra: 2002/1921,
  48941. bottom: 53/2055
  48942. }
  48943. },
  48944. back: {
  48945. height: math.unit(1.81, "meters"),
  48946. weight: math.unit(69, "kg"),
  48947. name: "Back",
  48948. image: {
  48949. source: "./media/characters/rodryana/back.svg",
  48950. extra: 1993/1926,
  48951. bottom: 48/2041
  48952. }
  48953. },
  48954. maw: {
  48955. height: math.unit(0.19769417475, "meters"),
  48956. name: "Maw",
  48957. image: {
  48958. source: "./media/characters/rodryana/maw.svg"
  48959. }
  48960. },
  48961. slit: {
  48962. height: math.unit(0.31631067961, "meters"),
  48963. name: "Slit",
  48964. image: {
  48965. source: "./media/characters/rodryana/slit.svg"
  48966. }
  48967. },
  48968. },
  48969. [
  48970. {
  48971. name: "Normal",
  48972. height: math.unit(1.81, "meters")
  48973. },
  48974. {
  48975. name: "Mini Macro",
  48976. height: math.unit(181, "meters")
  48977. },
  48978. {
  48979. name: "Macro",
  48980. height: math.unit(452, "meters"),
  48981. default: true
  48982. },
  48983. {
  48984. name: "Mega Macro",
  48985. height: math.unit(1.375, "km")
  48986. },
  48987. {
  48988. name: "Giga Macro",
  48989. height: math.unit(13.575, "km")
  48990. },
  48991. ]
  48992. ))
  48993. characterMakers.push(() => makeCharacter(
  48994. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  48995. {
  48996. front: {
  48997. height: math.unit(6, "feet"),
  48998. weight: math.unit(1000, "lb"),
  48999. name: "Front",
  49000. image: {
  49001. source: "./media/characters/asaya/front.svg",
  49002. extra: 1460/1200,
  49003. bottom: 71/1531
  49004. }
  49005. },
  49006. },
  49007. [
  49008. {
  49009. name: "Normal",
  49010. height: math.unit(8, "km"),
  49011. default: true
  49012. },
  49013. ]
  49014. ))
  49015. characterMakers.push(() => makeCharacter(
  49016. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  49017. {
  49018. front: {
  49019. height: math.unit(3.5, "meters"),
  49020. name: "Front",
  49021. image: {
  49022. source: "./media/characters/sarzu-and-israz/front.svg",
  49023. extra: 1570/1558,
  49024. bottom: 150/1720
  49025. },
  49026. },
  49027. back: {
  49028. height: math.unit(3.5, "meters"),
  49029. name: "Back",
  49030. image: {
  49031. source: "./media/characters/sarzu-and-israz/back.svg",
  49032. extra: 1523/1509,
  49033. bottom: 132/1655
  49034. },
  49035. },
  49036. frontFemale: {
  49037. height: math.unit(3.5, "meters"),
  49038. name: "Front (Female)",
  49039. image: {
  49040. source: "./media/characters/sarzu-and-israz/front-female.svg",
  49041. extra: 1570/1558,
  49042. bottom: 150/1720
  49043. },
  49044. },
  49045. frontHerm: {
  49046. height: math.unit(3.5, "meters"),
  49047. name: "Front (Herm)",
  49048. image: {
  49049. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  49050. extra: 1570/1558,
  49051. bottom: 150/1720
  49052. },
  49053. },
  49054. },
  49055. [
  49056. {
  49057. name: "Normal",
  49058. height: math.unit(3.5, "meters"),
  49059. default: true,
  49060. },
  49061. {
  49062. name: "Macro",
  49063. height: math.unit(65.5, "meters"),
  49064. },
  49065. ],
  49066. ))
  49067. characterMakers.push(() => makeCharacter(
  49068. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  49069. {
  49070. front: {
  49071. height: math.unit(6, "feet"),
  49072. weight: math.unit(250, "lb"),
  49073. name: "Front",
  49074. image: {
  49075. source: "./media/characters/zenimma/front.svg",
  49076. extra: 1346/1320,
  49077. bottom: 58/1404
  49078. }
  49079. },
  49080. back: {
  49081. height: math.unit(6, "feet"),
  49082. weight: math.unit(250, "lb"),
  49083. name: "Back",
  49084. image: {
  49085. source: "./media/characters/zenimma/back.svg",
  49086. extra: 1324/1308,
  49087. bottom: 44/1368
  49088. }
  49089. },
  49090. dick: {
  49091. height: math.unit(1.44, "feet"),
  49092. name: "Dick",
  49093. image: {
  49094. source: "./media/characters/zenimma/dick.svg"
  49095. }
  49096. },
  49097. },
  49098. [
  49099. {
  49100. name: "Canon Height",
  49101. height: math.unit(66, "miles"),
  49102. default: true
  49103. },
  49104. ]
  49105. ))
  49106. characterMakers.push(() => makeCharacter(
  49107. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  49108. {
  49109. nude: {
  49110. height: math.unit(6, "feet"),
  49111. weight: math.unit(150, "lb"),
  49112. name: "Nude",
  49113. image: {
  49114. source: "./media/characters/shavon/nude.svg",
  49115. extra: 1242/1096,
  49116. bottom: 98/1340
  49117. }
  49118. },
  49119. dressed: {
  49120. height: math.unit(6, "feet"),
  49121. weight: math.unit(150, "lb"),
  49122. name: "Dressed",
  49123. image: {
  49124. source: "./media/characters/shavon/dressed.svg",
  49125. extra: 1242/1096,
  49126. bottom: 98/1340
  49127. }
  49128. },
  49129. },
  49130. [
  49131. {
  49132. name: "Macro",
  49133. height: math.unit(255, "feet"),
  49134. default: true
  49135. },
  49136. ]
  49137. ))
  49138. characterMakers.push(() => makeCharacter(
  49139. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  49140. {
  49141. front: {
  49142. height: math.unit(6, "feet"),
  49143. name: "Front",
  49144. image: {
  49145. source: "./media/characters/steph/front.svg",
  49146. extra: 1430/1330,
  49147. bottom: 54/1484
  49148. }
  49149. },
  49150. },
  49151. [
  49152. {
  49153. name: "Normal",
  49154. height: math.unit(6, "feet"),
  49155. default: true
  49156. },
  49157. ]
  49158. ))
  49159. characterMakers.push(() => makeCharacter(
  49160. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  49161. {
  49162. front: {
  49163. height: math.unit(9, "feet"),
  49164. weight: math.unit(400, "lb"),
  49165. name: "Front",
  49166. image: {
  49167. source: "./media/characters/kil'aman/front.svg",
  49168. extra: 1210/1159,
  49169. bottom: 109/1319
  49170. }
  49171. },
  49172. head: {
  49173. height: math.unit(2.14, "feet"),
  49174. name: "Head",
  49175. image: {
  49176. source: "./media/characters/kil'aman/head.svg"
  49177. }
  49178. },
  49179. maw: {
  49180. height: math.unit(1.21, "feet"),
  49181. name: "Maw",
  49182. image: {
  49183. source: "./media/characters/kil'aman/maw.svg"
  49184. }
  49185. },
  49186. foot: {
  49187. height: math.unit(1.7, "feet"),
  49188. name: "Foot",
  49189. image: {
  49190. source: "./media/characters/kil'aman/foot.svg"
  49191. }
  49192. },
  49193. dick: {
  49194. height: math.unit(2.1, "feet"),
  49195. name: "Dick",
  49196. image: {
  49197. source: "./media/characters/kil'aman/dick.svg"
  49198. }
  49199. },
  49200. },
  49201. [
  49202. {
  49203. name: "Normal",
  49204. height: math.unit(9, "feet")
  49205. },
  49206. {
  49207. name: "Canon Height",
  49208. height: math.unit(10, "miles"),
  49209. default: true
  49210. },
  49211. {
  49212. name: "Maximum",
  49213. height: math.unit(6e9, "miles")
  49214. },
  49215. ]
  49216. ))
  49217. characterMakers.push(() => makeCharacter(
  49218. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  49219. {
  49220. front: {
  49221. height: math.unit(90, "feet"),
  49222. weight: math.unit(675000, "lb"),
  49223. name: "Front",
  49224. image: {
  49225. source: "./media/characters/qadan/front.svg",
  49226. extra: 1012/1004,
  49227. bottom: 78/1090
  49228. }
  49229. },
  49230. back: {
  49231. height: math.unit(90, "feet"),
  49232. weight: math.unit(675000, "lb"),
  49233. name: "Back",
  49234. image: {
  49235. source: "./media/characters/qadan/back.svg",
  49236. extra: 1042/1031,
  49237. bottom: 55/1097
  49238. }
  49239. },
  49240. armored: {
  49241. height: math.unit(90, "feet"),
  49242. weight: math.unit(675000, "lb"),
  49243. name: "Armored",
  49244. image: {
  49245. source: "./media/characters/qadan/armored.svg",
  49246. extra: 1047/1037,
  49247. bottom: 48/1095
  49248. }
  49249. },
  49250. },
  49251. [
  49252. {
  49253. name: "Normal",
  49254. height: math.unit(90, "feet"),
  49255. default: true
  49256. },
  49257. ]
  49258. ))
  49259. characterMakers.push(() => makeCharacter(
  49260. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  49261. {
  49262. front: {
  49263. height: math.unit(6, "feet"),
  49264. weight: math.unit(225, "lb"),
  49265. name: "Front",
  49266. image: {
  49267. source: "./media/characters/brooke/front.svg",
  49268. extra: 1050/1010,
  49269. bottom: 66/1116
  49270. }
  49271. },
  49272. back: {
  49273. height: math.unit(6, "feet"),
  49274. weight: math.unit(225, "lb"),
  49275. name: "Back",
  49276. image: {
  49277. source: "./media/characters/brooke/back.svg",
  49278. extra: 1053/1013,
  49279. bottom: 41/1094
  49280. }
  49281. },
  49282. dressed: {
  49283. height: math.unit(6, "feet"),
  49284. weight: math.unit(225, "lb"),
  49285. name: "Dressed",
  49286. image: {
  49287. source: "./media/characters/brooke/dressed.svg",
  49288. extra: 1050/1010,
  49289. bottom: 66/1116
  49290. }
  49291. },
  49292. },
  49293. [
  49294. {
  49295. name: "Canon Height",
  49296. height: math.unit(500, "miles"),
  49297. default: true
  49298. },
  49299. ]
  49300. ))
  49301. characterMakers.push(() => makeCharacter(
  49302. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  49303. {
  49304. front: {
  49305. height: math.unit(6 + 2/12, "feet"),
  49306. weight: math.unit(210, "lb"),
  49307. name: "Front",
  49308. image: {
  49309. source: "./media/characters/wubs/front.svg",
  49310. extra: 1345/1325,
  49311. bottom: 70/1415
  49312. }
  49313. },
  49314. back: {
  49315. height: math.unit(6 + 2/12, "feet"),
  49316. weight: math.unit(210, "lb"),
  49317. name: "Back",
  49318. image: {
  49319. source: "./media/characters/wubs/back.svg",
  49320. extra: 1296/1275,
  49321. bottom: 58/1354
  49322. }
  49323. },
  49324. },
  49325. [
  49326. {
  49327. name: "Normal",
  49328. height: math.unit(6 + 2/12, "feet"),
  49329. default: true
  49330. },
  49331. {
  49332. name: "Macro",
  49333. height: math.unit(1000, "feet")
  49334. },
  49335. {
  49336. name: "Megamacro",
  49337. height: math.unit(1, "mile")
  49338. },
  49339. ]
  49340. ))
  49341. characterMakers.push(() => makeCharacter(
  49342. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  49343. {
  49344. front: {
  49345. height: math.unit(4, "feet"),
  49346. weight: math.unit(120, "lb"),
  49347. name: "Front",
  49348. image: {
  49349. source: "./media/characters/blue/front.svg",
  49350. extra: 1636/1525,
  49351. bottom: 43/1679
  49352. }
  49353. },
  49354. back: {
  49355. height: math.unit(4, "feet"),
  49356. weight: math.unit(120, "lb"),
  49357. name: "Back",
  49358. image: {
  49359. source: "./media/characters/blue/back.svg",
  49360. extra: 1660/1560,
  49361. bottom: 57/1717
  49362. }
  49363. },
  49364. paws: {
  49365. height: math.unit(0.826, "feet"),
  49366. name: "Paws",
  49367. image: {
  49368. source: "./media/characters/blue/paws.svg"
  49369. }
  49370. },
  49371. },
  49372. [
  49373. {
  49374. name: "Micro",
  49375. height: math.unit(3, "inches")
  49376. },
  49377. {
  49378. name: "Normal",
  49379. height: math.unit(4, "feet"),
  49380. default: true
  49381. },
  49382. {
  49383. name: "Femenine Form",
  49384. height: math.unit(14, "feet")
  49385. },
  49386. {
  49387. name: "Werebat Form",
  49388. height: math.unit(18, "feet")
  49389. },
  49390. ]
  49391. ))
  49392. characterMakers.push(() => makeCharacter(
  49393. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  49394. {
  49395. female: {
  49396. height: math.unit(7 + 4/12, "feet"),
  49397. weight: math.unit(243, "lb"),
  49398. name: "Female",
  49399. image: {
  49400. source: "./media/characters/kaya/female.svg",
  49401. extra: 975/898,
  49402. bottom: 34/1009
  49403. }
  49404. },
  49405. herm: {
  49406. height: math.unit(7 + 4/12, "feet"),
  49407. weight: math.unit(243, "lb"),
  49408. name: "Herm",
  49409. image: {
  49410. source: "./media/characters/kaya/herm.svg",
  49411. extra: 975/898,
  49412. bottom: 34/1009
  49413. }
  49414. },
  49415. },
  49416. [
  49417. {
  49418. name: "Normal",
  49419. height: math.unit(7 + 4/12, "feet"),
  49420. default: true
  49421. },
  49422. ]
  49423. ))
  49424. characterMakers.push(() => makeCharacter(
  49425. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  49426. {
  49427. female: {
  49428. height: math.unit(9 + 4/12, "feet"),
  49429. weight: math.unit(398, "lb"),
  49430. name: "Female",
  49431. image: {
  49432. source: "./media/characters/kassandra/female.svg",
  49433. extra: 908/839,
  49434. bottom: 61/969
  49435. }
  49436. },
  49437. intersex: {
  49438. height: math.unit(9 + 4/12, "feet"),
  49439. weight: math.unit(398, "lb"),
  49440. name: "Intersex",
  49441. image: {
  49442. source: "./media/characters/kassandra/intersex.svg",
  49443. extra: 908/839,
  49444. bottom: 61/969
  49445. }
  49446. },
  49447. },
  49448. [
  49449. {
  49450. name: "Normal",
  49451. height: math.unit(9 + 4/12, "feet"),
  49452. default: true
  49453. },
  49454. ]
  49455. ))
  49456. characterMakers.push(() => makeCharacter(
  49457. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  49458. {
  49459. front: {
  49460. height: math.unit(3, "meters"),
  49461. name: "Front",
  49462. image: {
  49463. source: "./media/characters/amy/front.svg",
  49464. extra: 1380/1343,
  49465. bottom: 70/1450
  49466. }
  49467. },
  49468. back: {
  49469. height: math.unit(3, "meters"),
  49470. name: "Back",
  49471. image: {
  49472. source: "./media/characters/amy/back.svg",
  49473. extra: 1380/1347,
  49474. bottom: 66/1446
  49475. }
  49476. },
  49477. },
  49478. [
  49479. {
  49480. name: "Normal",
  49481. height: math.unit(3, "meters"),
  49482. default: true
  49483. },
  49484. ]
  49485. ))
  49486. characterMakers.push(() => makeCharacter(
  49487. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  49488. {
  49489. side: {
  49490. height: math.unit(47, "cm"),
  49491. weight: math.unit(10.8, "kg"),
  49492. name: "Side",
  49493. image: {
  49494. source: "./media/characters/alphaschakal/side.svg",
  49495. extra: 1058/568,
  49496. bottom: 62/1120
  49497. }
  49498. },
  49499. back: {
  49500. height: math.unit(78, "cm"),
  49501. weight: math.unit(10.8, "kg"),
  49502. name: "Back",
  49503. image: {
  49504. source: "./media/characters/alphaschakal/back.svg",
  49505. extra: 1102/942,
  49506. bottom: 185/1287
  49507. }
  49508. },
  49509. head: {
  49510. height: math.unit(28, "cm"),
  49511. name: "Head",
  49512. image: {
  49513. source: "./media/characters/alphaschakal/head.svg",
  49514. extra: 696/508,
  49515. bottom: 0/696
  49516. }
  49517. },
  49518. paw: {
  49519. height: math.unit(16, "cm"),
  49520. name: "Paw",
  49521. image: {
  49522. source: "./media/characters/alphaschakal/paw.svg"
  49523. }
  49524. },
  49525. },
  49526. [
  49527. {
  49528. name: "Normal",
  49529. height: math.unit(47, "cm"),
  49530. default: true
  49531. },
  49532. {
  49533. name: "Macro",
  49534. height: math.unit(340, "cm")
  49535. },
  49536. ]
  49537. ))
  49538. characterMakers.push(() => makeCharacter(
  49539. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  49540. {
  49541. front: {
  49542. height: math.unit(36, "earths"),
  49543. name: "Front",
  49544. image: {
  49545. source: "./media/characters/ecobyss/front.svg",
  49546. extra: 1282/1215,
  49547. bottom: 11/1293
  49548. }
  49549. },
  49550. back: {
  49551. height: math.unit(36, "earths"),
  49552. name: "Back",
  49553. image: {
  49554. source: "./media/characters/ecobyss/back.svg",
  49555. extra: 1291/1222,
  49556. bottom: 8/1299
  49557. }
  49558. },
  49559. },
  49560. [
  49561. {
  49562. name: "Normal",
  49563. height: math.unit(36, "earths"),
  49564. default: true
  49565. },
  49566. ]
  49567. ))
  49568. characterMakers.push(() => makeCharacter(
  49569. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  49570. {
  49571. front: {
  49572. height: math.unit(12, "feet"),
  49573. name: "Front",
  49574. image: {
  49575. source: "./media/characters/vasuk/front.svg",
  49576. extra: 1326/1207,
  49577. bottom: 64/1390
  49578. }
  49579. },
  49580. },
  49581. [
  49582. {
  49583. name: "Normal",
  49584. height: math.unit(12, "feet"),
  49585. default: true
  49586. },
  49587. ]
  49588. ))
  49589. characterMakers.push(() => makeCharacter(
  49590. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  49591. {
  49592. side: {
  49593. height: math.unit(100, "feet"),
  49594. name: "Side",
  49595. image: {
  49596. source: "./media/characters/linneaus/side.svg",
  49597. extra: 987/807,
  49598. bottom: 47/1034
  49599. }
  49600. },
  49601. },
  49602. [
  49603. {
  49604. name: "Macro",
  49605. height: math.unit(100, "feet"),
  49606. default: true
  49607. },
  49608. ]
  49609. ))
  49610. characterMakers.push(() => makeCharacter(
  49611. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  49612. {
  49613. front: {
  49614. height: math.unit(8, "feet"),
  49615. weight: math.unit(1200, "lb"),
  49616. name: "Front",
  49617. image: {
  49618. source: "./media/characters/nyterious-daligdig/front.svg",
  49619. extra: 1284/1094,
  49620. bottom: 84/1368
  49621. }
  49622. },
  49623. back: {
  49624. height: math.unit(8, "feet"),
  49625. weight: math.unit(1200, "lb"),
  49626. name: "Back",
  49627. image: {
  49628. source: "./media/characters/nyterious-daligdig/back.svg",
  49629. extra: 1301/1121,
  49630. bottom: 129/1430
  49631. }
  49632. },
  49633. mouth: {
  49634. height: math.unit(1.464, "feet"),
  49635. name: "Mouth",
  49636. image: {
  49637. source: "./media/characters/nyterious-daligdig/mouth.svg"
  49638. }
  49639. },
  49640. },
  49641. [
  49642. {
  49643. name: "Small",
  49644. height: math.unit(8, "feet"),
  49645. default: true
  49646. },
  49647. {
  49648. name: "Normal",
  49649. height: math.unit(15, "feet")
  49650. },
  49651. {
  49652. name: "Macro",
  49653. height: math.unit(90, "feet")
  49654. },
  49655. ]
  49656. ))
  49657. characterMakers.push(() => makeCharacter(
  49658. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  49659. {
  49660. front: {
  49661. height: math.unit(7 + 4/12, "feet"),
  49662. weight: math.unit(252, "lb"),
  49663. name: "Front",
  49664. image: {
  49665. source: "./media/characters/bandel/front.svg",
  49666. extra: 1946/1775,
  49667. bottom: 26/1972
  49668. }
  49669. },
  49670. back: {
  49671. height: math.unit(7 + 4/12, "feet"),
  49672. weight: math.unit(252, "lb"),
  49673. name: "Back",
  49674. image: {
  49675. source: "./media/characters/bandel/back.svg",
  49676. extra: 1940/1770,
  49677. bottom: 25/1965
  49678. }
  49679. },
  49680. maw: {
  49681. height: math.unit(2.15, "feet"),
  49682. name: "Maw",
  49683. image: {
  49684. source: "./media/characters/bandel/maw.svg"
  49685. }
  49686. },
  49687. stomach: {
  49688. height: math.unit(1.95, "feet"),
  49689. name: "Stomach",
  49690. image: {
  49691. source: "./media/characters/bandel/stomach.svg"
  49692. }
  49693. },
  49694. },
  49695. [
  49696. {
  49697. name: "Normal",
  49698. height: math.unit(7 + 4/12, "feet"),
  49699. default: true
  49700. },
  49701. ]
  49702. ))
  49703. characterMakers.push(() => makeCharacter(
  49704. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  49705. {
  49706. front: {
  49707. height: math.unit(10 + 5/12, "feet"),
  49708. weight: math.unit(773.5, "kg"),
  49709. name: "Front",
  49710. image: {
  49711. source: "./media/characters/zed/front.svg",
  49712. extra: 987/941,
  49713. bottom: 52/1039
  49714. }
  49715. },
  49716. },
  49717. [
  49718. {
  49719. name: "Short",
  49720. height: math.unit(5 + 4/12, "feet")
  49721. },
  49722. {
  49723. name: "Average",
  49724. height: math.unit(10 + 5/12, "feet"),
  49725. default: true
  49726. },
  49727. {
  49728. name: "Mini-Macro",
  49729. height: math.unit(24 + 9/12, "feet")
  49730. },
  49731. {
  49732. name: "Macro",
  49733. height: math.unit(249, "feet")
  49734. },
  49735. {
  49736. name: "Mega-Macro",
  49737. height: math.unit(12490, "feet")
  49738. },
  49739. {
  49740. name: "Giga-Macro",
  49741. height: math.unit(24.9, "miles")
  49742. },
  49743. {
  49744. name: "Tera-Macro",
  49745. height: math.unit(24900, "miles")
  49746. },
  49747. {
  49748. name: "Cosmic Scale",
  49749. height: math.unit(38.9, "lightyears")
  49750. },
  49751. {
  49752. name: "Universal Scale",
  49753. height: math.unit(138e12, "lightyears")
  49754. },
  49755. ]
  49756. ))
  49757. characterMakers.push(() => makeCharacter(
  49758. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  49759. {
  49760. front: {
  49761. height: math.unit(1561, "inches"),
  49762. name: "Front",
  49763. image: {
  49764. source: "./media/characters/ivan/front.svg",
  49765. extra: 1126/1071,
  49766. bottom: 26/1152
  49767. }
  49768. },
  49769. back: {
  49770. height: math.unit(1561, "inches"),
  49771. name: "Back",
  49772. image: {
  49773. source: "./media/characters/ivan/back.svg",
  49774. extra: 1134/1079,
  49775. bottom: 30/1164
  49776. }
  49777. },
  49778. },
  49779. [
  49780. {
  49781. name: "Normal",
  49782. height: math.unit(1561, "inches"),
  49783. default: true
  49784. },
  49785. ]
  49786. ))
  49787. characterMakers.push(() => makeCharacter(
  49788. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  49789. {
  49790. front: {
  49791. height: math.unit(5 + 7/12, "feet"),
  49792. weight: math.unit(150, "lb"),
  49793. name: "Front",
  49794. image: {
  49795. source: "./media/characters/robin-arctic-hare/front.svg",
  49796. extra: 1148/974,
  49797. bottom: 20/1168
  49798. }
  49799. },
  49800. },
  49801. [
  49802. {
  49803. name: "Normal",
  49804. height: math.unit(5 + 7/12, "feet"),
  49805. default: true
  49806. },
  49807. ]
  49808. ))
  49809. characterMakers.push(() => makeCharacter(
  49810. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  49811. {
  49812. side: {
  49813. height: math.unit(5, "feet"),
  49814. name: "Side",
  49815. image: {
  49816. source: "./media/characters/birch/side.svg",
  49817. extra: 985/796,
  49818. bottom: 111/1096
  49819. }
  49820. },
  49821. },
  49822. [
  49823. {
  49824. name: "Normal",
  49825. height: math.unit(5, "feet"),
  49826. default: true
  49827. },
  49828. ]
  49829. ))
  49830. characterMakers.push(() => makeCharacter(
  49831. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  49832. {
  49833. front: {
  49834. height: math.unit(4, "feet"),
  49835. name: "Front",
  49836. image: {
  49837. source: "./media/characters/rasp/front.svg",
  49838. extra: 561/478,
  49839. bottom: 74/635
  49840. }
  49841. },
  49842. },
  49843. [
  49844. {
  49845. name: "Normal",
  49846. height: math.unit(4, "feet"),
  49847. default: true
  49848. },
  49849. ]
  49850. ))
  49851. characterMakers.push(() => makeCharacter(
  49852. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  49853. {
  49854. front: {
  49855. height: math.unit(4 + 6/12, "feet"),
  49856. name: "Front",
  49857. image: {
  49858. source: "./media/characters/agatha/front.svg",
  49859. extra: 947/933,
  49860. bottom: 42/989
  49861. }
  49862. },
  49863. back: {
  49864. height: math.unit(4 + 6/12, "feet"),
  49865. name: "Back",
  49866. image: {
  49867. source: "./media/characters/agatha/back.svg",
  49868. extra: 935/922,
  49869. bottom: 48/983
  49870. }
  49871. },
  49872. },
  49873. [
  49874. {
  49875. name: "Normal",
  49876. height: math.unit(4 + 6 /12, "feet"),
  49877. default: true
  49878. },
  49879. {
  49880. name: "Max Size",
  49881. height: math.unit(500, "feet")
  49882. },
  49883. ]
  49884. ))
  49885. characterMakers.push(() => makeCharacter(
  49886. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  49887. {
  49888. side: {
  49889. height: math.unit(30, "feet"),
  49890. name: "Side",
  49891. image: {
  49892. source: "./media/characters/roggy/side.svg",
  49893. extra: 909/643,
  49894. bottom: 63/972
  49895. }
  49896. },
  49897. lounging: {
  49898. height: math.unit(20, "feet"),
  49899. name: "Lounging",
  49900. image: {
  49901. source: "./media/characters/roggy/lounging.svg",
  49902. extra: 643/479,
  49903. bottom: 145/788
  49904. }
  49905. },
  49906. handpaw: {
  49907. height: math.unit(13.1, "feet"),
  49908. name: "Handpaw",
  49909. image: {
  49910. source: "./media/characters/roggy/handpaw.svg"
  49911. }
  49912. },
  49913. footpaw: {
  49914. height: math.unit(15.8, "feet"),
  49915. name: "Footpaw",
  49916. image: {
  49917. source: "./media/characters/roggy/footpaw.svg"
  49918. }
  49919. },
  49920. },
  49921. [
  49922. {
  49923. name: "Menacing",
  49924. height: math.unit(30, "feet"),
  49925. default: true
  49926. },
  49927. ]
  49928. ))
  49929. characterMakers.push(() => makeCharacter(
  49930. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  49931. {
  49932. front: {
  49933. height: math.unit(5 + 7/12, "feet"),
  49934. weight: math.unit(135, "lb"),
  49935. name: "Front",
  49936. image: {
  49937. source: "./media/characters/naomi/front.svg",
  49938. extra: 1209/1154,
  49939. bottom: 129/1338
  49940. }
  49941. },
  49942. back: {
  49943. height: math.unit(5 + 7/12, "feet"),
  49944. weight: math.unit(135, "lb"),
  49945. name: "Back",
  49946. image: {
  49947. source: "./media/characters/naomi/back.svg",
  49948. extra: 1252/1190,
  49949. bottom: 23/1275
  49950. }
  49951. },
  49952. },
  49953. [
  49954. {
  49955. name: "Normal",
  49956. height: math.unit(5 + 7 /12, "feet"),
  49957. default: true
  49958. },
  49959. ]
  49960. ))
  49961. characterMakers.push(() => makeCharacter(
  49962. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  49963. {
  49964. side: {
  49965. height: math.unit(35, "meters"),
  49966. name: "Side",
  49967. image: {
  49968. source: "./media/characters/kimpi/side.svg",
  49969. extra: 419/382,
  49970. bottom: 63/482
  49971. }
  49972. },
  49973. hand: {
  49974. height: math.unit(8.96, "meters"),
  49975. name: "Hand",
  49976. image: {
  49977. source: "./media/characters/kimpi/hand.svg"
  49978. }
  49979. },
  49980. },
  49981. [
  49982. {
  49983. name: "Normal",
  49984. height: math.unit(35, "meters"),
  49985. default: true
  49986. },
  49987. ]
  49988. ))
  49989. characterMakers.push(() => makeCharacter(
  49990. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  49991. {
  49992. front: {
  49993. height: math.unit(4 + 4/12, "feet"),
  49994. name: "Front",
  49995. image: {
  49996. source: "./media/characters/pepper-purrloin/front.svg",
  49997. extra: 1141/1024,
  49998. bottom: 21/1162
  49999. }
  50000. },
  50001. },
  50002. [
  50003. {
  50004. name: "Normal",
  50005. height: math.unit(4 + 4/12, "feet"),
  50006. default: true
  50007. },
  50008. ]
  50009. ))
  50010. characterMakers.push(() => makeCharacter(
  50011. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  50012. {
  50013. front: {
  50014. height: math.unit(6 + 2/12, "feet"),
  50015. name: "Front",
  50016. image: {
  50017. source: "./media/characters/raphael/front.svg",
  50018. extra: 1101/962,
  50019. bottom: 59/1160
  50020. }
  50021. },
  50022. },
  50023. [
  50024. {
  50025. name: "Normal",
  50026. height: math.unit(6 + 2/12, "feet"),
  50027. default: true
  50028. },
  50029. ]
  50030. ))
  50031. characterMakers.push(() => makeCharacter(
  50032. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  50033. {
  50034. front: {
  50035. height: math.unit(6, "feet"),
  50036. weight: math.unit(150, "lb"),
  50037. name: "Front",
  50038. image: {
  50039. source: "./media/characters/victor-williams/front.svg",
  50040. extra: 1894/1825,
  50041. bottom: 67/1961
  50042. }
  50043. },
  50044. },
  50045. [
  50046. {
  50047. name: "Normal",
  50048. height: math.unit(6, "feet"),
  50049. default: true
  50050. },
  50051. ]
  50052. ))
  50053. characterMakers.push(() => makeCharacter(
  50054. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  50055. {
  50056. front: {
  50057. height: math.unit(5 + 8/12, "feet"),
  50058. weight: math.unit(150, "lb"),
  50059. name: "Front",
  50060. image: {
  50061. source: "./media/characters/rachel/front.svg",
  50062. extra: 1902/1787,
  50063. bottom: 46/1948
  50064. }
  50065. },
  50066. },
  50067. [
  50068. {
  50069. name: "Base Height",
  50070. height: math.unit(5 + 8/12, "feet"),
  50071. default: true
  50072. },
  50073. {
  50074. name: "Macro",
  50075. height: math.unit(200, "feet")
  50076. },
  50077. {
  50078. name: "Mega Macro",
  50079. height: math.unit(1, "mile")
  50080. },
  50081. {
  50082. name: "Giga Macro",
  50083. height: math.unit(1500, "miles")
  50084. },
  50085. {
  50086. name: "Tera Macro",
  50087. height: math.unit(8000, "miles")
  50088. },
  50089. {
  50090. name: "Tera Macro+",
  50091. height: math.unit(2e5, "miles")
  50092. },
  50093. ]
  50094. ))
  50095. characterMakers.push(() => makeCharacter(
  50096. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  50097. {
  50098. front: {
  50099. height: math.unit(6.5, "feet"),
  50100. name: "Front",
  50101. image: {
  50102. source: "./media/characters/svetlana-rozovskaya/front.svg",
  50103. extra: 860/819,
  50104. bottom: 307/1167
  50105. }
  50106. },
  50107. back: {
  50108. height: math.unit(6.5, "feet"),
  50109. name: "Back",
  50110. image: {
  50111. source: "./media/characters/svetlana-rozovskaya/back.svg",
  50112. extra: 880/837,
  50113. bottom: 395/1275
  50114. }
  50115. },
  50116. sleeping: {
  50117. height: math.unit(2.79, "feet"),
  50118. name: "Sleeping",
  50119. image: {
  50120. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  50121. extra: 465/383,
  50122. bottom: 263/728
  50123. }
  50124. },
  50125. maw: {
  50126. height: math.unit(2.52, "feet"),
  50127. name: "Maw",
  50128. image: {
  50129. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  50130. }
  50131. },
  50132. },
  50133. [
  50134. {
  50135. name: "Normal",
  50136. height: math.unit(6.5, "feet"),
  50137. default: true
  50138. },
  50139. ]
  50140. ))
  50141. characterMakers.push(() => makeCharacter(
  50142. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  50143. {
  50144. front: {
  50145. height: math.unit(5, "feet"),
  50146. name: "Front",
  50147. image: {
  50148. source: "./media/characters/nova-nerium/front.svg",
  50149. extra: 1548/1392,
  50150. bottom: 374/1922
  50151. }
  50152. },
  50153. back: {
  50154. height: math.unit(5, "feet"),
  50155. name: "Back",
  50156. image: {
  50157. source: "./media/characters/nova-nerium/back.svg",
  50158. extra: 1658/1468,
  50159. bottom: 257/1915
  50160. }
  50161. },
  50162. },
  50163. [
  50164. {
  50165. name: "Normal",
  50166. height: math.unit(5, "feet"),
  50167. default: true
  50168. },
  50169. ]
  50170. ))
  50171. characterMakers.push(() => makeCharacter(
  50172. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  50173. {
  50174. front: {
  50175. height: math.unit(5 + 4/12, "feet"),
  50176. name: "Front",
  50177. image: {
  50178. source: "./media/characters/ashe-pyriph/front.svg",
  50179. extra: 1935/1747,
  50180. bottom: 60/1995
  50181. }
  50182. },
  50183. },
  50184. [
  50185. {
  50186. name: "Normal",
  50187. height: math.unit(5 + 4/12, "feet"),
  50188. default: true
  50189. },
  50190. ]
  50191. ))
  50192. characterMakers.push(() => makeCharacter(
  50193. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  50194. {
  50195. front: {
  50196. height: math.unit(8.7, "feet"),
  50197. name: "Front",
  50198. image: {
  50199. source: "./media/characters/flicker-wisp/front.svg",
  50200. extra: 1835/1613,
  50201. bottom: 449/2284
  50202. }
  50203. },
  50204. side: {
  50205. height: math.unit(8.7, "feet"),
  50206. name: "Side",
  50207. image: {
  50208. source: "./media/characters/flicker-wisp/side.svg",
  50209. extra: 1841/1642,
  50210. bottom: 336/2177
  50211. },
  50212. default: true
  50213. },
  50214. maw: {
  50215. height: math.unit(3.35, "feet"),
  50216. name: "Maw",
  50217. image: {
  50218. source: "./media/characters/flicker-wisp/maw.svg",
  50219. extra: 2338/1506,
  50220. bottom: 0/2338
  50221. }
  50222. },
  50223. ovipositor: {
  50224. height: math.unit(4.95, "feet"),
  50225. name: "Ovipositor",
  50226. image: {
  50227. source: "./media/characters/flicker-wisp/ovipositor.svg"
  50228. }
  50229. },
  50230. egg: {
  50231. height: math.unit(0.385, "feet"),
  50232. weight: math.unit(2, "lb"),
  50233. name: "Egg",
  50234. image: {
  50235. source: "./media/characters/flicker-wisp/egg.svg"
  50236. }
  50237. },
  50238. },
  50239. [
  50240. {
  50241. name: "Normal",
  50242. height: math.unit(8.7, "feet"),
  50243. default: true
  50244. },
  50245. ]
  50246. ))
  50247. characterMakers.push(() => makeCharacter(
  50248. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  50249. {
  50250. side: {
  50251. height: math.unit(11, "feet"),
  50252. name: "Side",
  50253. image: {
  50254. source: "./media/characters/faefnul/side.svg",
  50255. extra: 1100/1007,
  50256. bottom: 0/1100
  50257. }
  50258. },
  50259. },
  50260. [
  50261. {
  50262. name: "Normal",
  50263. height: math.unit(11, "feet"),
  50264. default: true
  50265. },
  50266. ]
  50267. ))
  50268. characterMakers.push(() => makeCharacter(
  50269. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  50270. {
  50271. front: {
  50272. height: math.unit(6 + 2/12, "feet"),
  50273. name: "Front",
  50274. image: {
  50275. source: "./media/characters/shady/front.svg",
  50276. extra: 502/461,
  50277. bottom: 9/511
  50278. }
  50279. },
  50280. kneeling: {
  50281. height: math.unit(4.6, "feet"),
  50282. name: "Kneeling",
  50283. image: {
  50284. source: "./media/characters/shady/kneeling.svg",
  50285. extra: 1328/1219,
  50286. bottom: 117/1445
  50287. }
  50288. },
  50289. maw: {
  50290. height: math.unit(2, "feet"),
  50291. name: "Maw",
  50292. image: {
  50293. source: "./media/characters/shady/maw.svg"
  50294. }
  50295. },
  50296. },
  50297. [
  50298. {
  50299. name: "Nano",
  50300. height: math.unit(1, "mm")
  50301. },
  50302. {
  50303. name: "Micro",
  50304. height: math.unit(12, "mm")
  50305. },
  50306. {
  50307. name: "Tiny",
  50308. height: math.unit(3, "inches")
  50309. },
  50310. {
  50311. name: "Normal",
  50312. height: math.unit(6 + 2/12, "feet"),
  50313. default: true
  50314. },
  50315. {
  50316. name: "Big",
  50317. height: math.unit(15, "feet")
  50318. },
  50319. {
  50320. name: "Macro",
  50321. height: math.unit(150, "feet")
  50322. },
  50323. {
  50324. name: "Titanic",
  50325. height: math.unit(500, "feet")
  50326. },
  50327. ]
  50328. ))
  50329. characterMakers.push(() => makeCharacter(
  50330. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  50331. {
  50332. front: {
  50333. height: math.unit(12, "feet"),
  50334. name: "Front",
  50335. image: {
  50336. source: "./media/characters/fenrir/front.svg",
  50337. extra: 968/875,
  50338. bottom: 22/990
  50339. }
  50340. },
  50341. },
  50342. [
  50343. {
  50344. name: "Big",
  50345. height: math.unit(12, "feet"),
  50346. default: true
  50347. },
  50348. ]
  50349. ))
  50350. characterMakers.push(() => makeCharacter(
  50351. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  50352. {
  50353. front: {
  50354. height: math.unit(5 + 4/12, "feet"),
  50355. name: "Front",
  50356. image: {
  50357. source: "./media/characters/makar/front.svg",
  50358. extra: 1181/1112,
  50359. bottom: 78/1259
  50360. }
  50361. },
  50362. },
  50363. [
  50364. {
  50365. name: "Normal",
  50366. height: math.unit(5 + 4/12, "feet"),
  50367. default: true
  50368. },
  50369. ]
  50370. ))
  50371. characterMakers.push(() => makeCharacter(
  50372. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  50373. {
  50374. front: {
  50375. height: math.unit(5 + 7/12, "feet"),
  50376. name: "Front",
  50377. image: {
  50378. source: "./media/characters/callow/front.svg",
  50379. extra: 1482/1304,
  50380. bottom: 23/1505
  50381. }
  50382. },
  50383. back: {
  50384. height: math.unit(5 + 7/12, "feet"),
  50385. name: "Back",
  50386. image: {
  50387. source: "./media/characters/callow/back.svg",
  50388. extra: 1484/1296,
  50389. bottom: 25/1509
  50390. }
  50391. },
  50392. },
  50393. [
  50394. {
  50395. name: "Micro",
  50396. height: math.unit(3, "inches"),
  50397. default: true
  50398. },
  50399. {
  50400. name: "Normal",
  50401. height: math.unit(5 + 7/12, "feet")
  50402. },
  50403. ]
  50404. ))
  50405. characterMakers.push(() => makeCharacter(
  50406. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  50407. {
  50408. front: {
  50409. height: math.unit(6 + 2/12, "feet"),
  50410. name: "Front",
  50411. image: {
  50412. source: "./media/characters/natel/front.svg",
  50413. extra: 1833/1692,
  50414. bottom: 166/1999
  50415. }
  50416. },
  50417. },
  50418. [
  50419. {
  50420. name: "Normal",
  50421. height: math.unit(6 + 2/12, "feet"),
  50422. default: true
  50423. },
  50424. ]
  50425. ))
  50426. characterMakers.push(() => makeCharacter(
  50427. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  50428. {
  50429. front: {
  50430. height: math.unit(1.75, "meters"),
  50431. name: "Front",
  50432. image: {
  50433. source: "./media/characters/misu/front.svg",
  50434. extra: 1690/1558,
  50435. bottom: 234/1924
  50436. }
  50437. },
  50438. back: {
  50439. height: math.unit(1.75, "meters"),
  50440. name: "Back",
  50441. image: {
  50442. source: "./media/characters/misu/back.svg",
  50443. extra: 1762/1618,
  50444. bottom: 146/1908
  50445. }
  50446. },
  50447. frontNude: {
  50448. height: math.unit(1.75, "meters"),
  50449. name: "Front (Nude)",
  50450. image: {
  50451. source: "./media/characters/misu/front-nude.svg",
  50452. extra: 1690/1558,
  50453. bottom: 234/1924
  50454. }
  50455. },
  50456. backNude: {
  50457. height: math.unit(1.75, "meters"),
  50458. name: "Back (Nude)",
  50459. image: {
  50460. source: "./media/characters/misu/back-nude.svg",
  50461. extra: 1762/1618,
  50462. bottom: 146/1908
  50463. }
  50464. },
  50465. frontErect: {
  50466. height: math.unit(1.75, "meters"),
  50467. name: "Front (Erect)",
  50468. image: {
  50469. source: "./media/characters/misu/front-erect.svg",
  50470. extra: 1690/1558,
  50471. bottom: 234/1924
  50472. }
  50473. },
  50474. maw: {
  50475. height: math.unit(0.47, "meters"),
  50476. name: "Maw",
  50477. image: {
  50478. source: "./media/characters/misu/maw.svg"
  50479. }
  50480. },
  50481. head: {
  50482. height: math.unit(0.35, "meters"),
  50483. name: "Head",
  50484. image: {
  50485. source: "./media/characters/misu/head.svg"
  50486. }
  50487. },
  50488. rear: {
  50489. height: math.unit(0.47, "meters"),
  50490. name: "Rear",
  50491. image: {
  50492. source: "./media/characters/misu/rear.svg"
  50493. }
  50494. },
  50495. },
  50496. [
  50497. {
  50498. name: "Normal",
  50499. height: math.unit(1.75, "meters")
  50500. },
  50501. {
  50502. name: "Not good for the people",
  50503. height: math.unit(42, "meters")
  50504. },
  50505. {
  50506. name: "Not good for the neighborhood",
  50507. height: math.unit(135, "meters")
  50508. },
  50509. {
  50510. name: "Bit bigger problem",
  50511. height: math.unit(380, "meters"),
  50512. default: true
  50513. },
  50514. {
  50515. name: "Not good for the city",
  50516. height: math.unit(1.5, "km")
  50517. },
  50518. {
  50519. name: "Not good for the county",
  50520. height: math.unit(5.5, "km")
  50521. },
  50522. {
  50523. name: "Not good for the state",
  50524. height: math.unit(25, "km")
  50525. },
  50526. {
  50527. name: "Not good for the country",
  50528. height: math.unit(125, "km")
  50529. },
  50530. {
  50531. name: "Not good for the continent",
  50532. height: math.unit(2100, "km")
  50533. },
  50534. {
  50535. name: "Not good for the planet",
  50536. height: math.unit(35000, "km")
  50537. },
  50538. {
  50539. name: "Just no",
  50540. height: math.unit(8.5e18, "km")
  50541. },
  50542. ]
  50543. ))
  50544. characterMakers.push(() => makeCharacter(
  50545. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  50546. {
  50547. front: {
  50548. height: math.unit(6.5, "feet"),
  50549. name: "Front",
  50550. image: {
  50551. source: "./media/characters/poppy/front.svg",
  50552. extra: 1878/1812,
  50553. bottom: 43/1921
  50554. }
  50555. },
  50556. feet: {
  50557. height: math.unit(1.06, "feet"),
  50558. name: "Feet",
  50559. image: {
  50560. source: "./media/characters/poppy/feet.svg",
  50561. extra: 1083/1083,
  50562. bottom: 87/1170
  50563. }
  50564. },
  50565. },
  50566. [
  50567. {
  50568. name: "Human",
  50569. height: math.unit(6.5, "feet")
  50570. },
  50571. {
  50572. name: "Default",
  50573. height: math.unit(300, "feet"),
  50574. default: true
  50575. },
  50576. {
  50577. name: "Huge",
  50578. height: math.unit(850, "feet")
  50579. },
  50580. {
  50581. name: "Mega",
  50582. height: math.unit(8000, "feet")
  50583. },
  50584. {
  50585. name: "Giga",
  50586. height: math.unit(300, "miles")
  50587. },
  50588. ]
  50589. ))
  50590. characterMakers.push(() => makeCharacter(
  50591. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  50592. {
  50593. bipedal: {
  50594. height: math.unit(7, "feet"),
  50595. name: "Bipedal",
  50596. image: {
  50597. source: "./media/characters/zener/bipedal.svg",
  50598. extra: 874/805,
  50599. bottom: 109/983
  50600. }
  50601. },
  50602. quadrupedal: {
  50603. height: math.unit(4.64, "feet"),
  50604. name: "Quadrupedal",
  50605. image: {
  50606. source: "./media/characters/zener/quadrupedal.svg",
  50607. extra: 638/507,
  50608. bottom: 190/828
  50609. }
  50610. },
  50611. cock: {
  50612. height: math.unit(18, "inches"),
  50613. name: "Cock",
  50614. image: {
  50615. source: "./media/characters/zener/cock.svg"
  50616. }
  50617. },
  50618. },
  50619. [
  50620. {
  50621. name: "Normal",
  50622. height: math.unit(7, "feet"),
  50623. default: true
  50624. },
  50625. ]
  50626. ))
  50627. characterMakers.push(() => makeCharacter(
  50628. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  50629. {
  50630. nude: {
  50631. height: math.unit(5 + 6/12, "feet"),
  50632. name: "Nude",
  50633. image: {
  50634. source: "./media/characters/charlie-dog/nude.svg",
  50635. extra: 768/734,
  50636. bottom: 26/794
  50637. }
  50638. },
  50639. dressed: {
  50640. height: math.unit(5 + 6/12, "feet"),
  50641. name: "Dressed",
  50642. image: {
  50643. source: "./media/characters/charlie-dog/dressed.svg",
  50644. extra: 768/734,
  50645. bottom: 26/794
  50646. }
  50647. },
  50648. },
  50649. [
  50650. {
  50651. name: "Normal",
  50652. height: math.unit(5 + 6/12, "feet"),
  50653. default: true
  50654. },
  50655. ]
  50656. ))
  50657. characterMakers.push(() => makeCharacter(
  50658. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  50659. {
  50660. front: {
  50661. height: math.unit(6 + 4/12, "feet"),
  50662. name: "Front",
  50663. image: {
  50664. source: "./media/characters/ir'istrasz/front.svg",
  50665. extra: 1014/977,
  50666. bottom: 65/1079
  50667. }
  50668. },
  50669. back: {
  50670. height: math.unit(6 + 4/12, "feet"),
  50671. name: "Back",
  50672. image: {
  50673. source: "./media/characters/ir'istrasz/back.svg",
  50674. extra: 1024/992,
  50675. bottom: 34/1058
  50676. }
  50677. },
  50678. },
  50679. [
  50680. {
  50681. name: "Normal",
  50682. height: math.unit(6 + 4/12, "feet"),
  50683. default: true
  50684. },
  50685. ]
  50686. ))
  50687. characterMakers.push(() => makeCharacter(
  50688. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  50689. {
  50690. front: {
  50691. height: math.unit(5 + 8/12, "feet"),
  50692. name: "Front",
  50693. image: {
  50694. source: "./media/characters/dee-ditto/front.svg",
  50695. extra: 1874/1785,
  50696. bottom: 68/1942
  50697. }
  50698. },
  50699. back: {
  50700. height: math.unit(5 + 8/12, "feet"),
  50701. name: "Back",
  50702. image: {
  50703. source: "./media/characters/dee-ditto/back.svg",
  50704. extra: 1870/1783,
  50705. bottom: 77/1947
  50706. }
  50707. },
  50708. },
  50709. [
  50710. {
  50711. name: "Normal",
  50712. height: math.unit(5 + 8/12, "feet"),
  50713. default: true
  50714. },
  50715. ]
  50716. ))
  50717. characterMakers.push(() => makeCharacter(
  50718. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  50719. {
  50720. front: {
  50721. height: math.unit(7 + 6/12, "feet"),
  50722. name: "Front",
  50723. image: {
  50724. source: "./media/characters/fey/front.svg",
  50725. extra: 995/979,
  50726. bottom: 30/1025
  50727. }
  50728. },
  50729. back: {
  50730. height: math.unit(7 + 6/12, "feet"),
  50731. name: "Back",
  50732. image: {
  50733. source: "./media/characters/fey/back.svg",
  50734. extra: 1079/1008,
  50735. bottom: 5/1084
  50736. }
  50737. },
  50738. dressed: {
  50739. height: math.unit(7 + 6/12, "feet"),
  50740. name: "Dressed",
  50741. image: {
  50742. source: "./media/characters/fey/dressed.svg",
  50743. extra: 995/979,
  50744. bottom: 30/1025
  50745. }
  50746. },
  50747. },
  50748. [
  50749. {
  50750. name: "Normal",
  50751. height: math.unit(7 + 6/12, "feet"),
  50752. default: true
  50753. },
  50754. ]
  50755. ))
  50756. characterMakers.push(() => makeCharacter(
  50757. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  50758. {
  50759. standing: {
  50760. height: math.unit(17, "feet"),
  50761. name: "Standing",
  50762. image: {
  50763. source: "./media/characters/aster/standing.svg",
  50764. extra: 1798/1598,
  50765. bottom: 117/1915
  50766. }
  50767. },
  50768. },
  50769. [
  50770. {
  50771. name: "Normal",
  50772. height: math.unit(17, "feet"),
  50773. default: true
  50774. },
  50775. {
  50776. name: "Homewrecker",
  50777. height: math.unit(95, "feet")
  50778. },
  50779. {
  50780. name: "Planet Devourer",
  50781. height: math.unit(1008000, "miles")
  50782. },
  50783. ]
  50784. ))
  50785. characterMakers.push(() => makeCharacter(
  50786. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  50787. {
  50788. front: {
  50789. height: math.unit(6 + 5/12, "feet"),
  50790. weight: math.unit(265, "lb"),
  50791. name: "Front",
  50792. image: {
  50793. source: "./media/characters/devon-childs/front.svg",
  50794. extra: 1795/1721,
  50795. bottom: 41/1836
  50796. }
  50797. },
  50798. side: {
  50799. height: math.unit(6 + 5/12, "feet"),
  50800. weight: math.unit(265, "lb"),
  50801. name: "Side",
  50802. image: {
  50803. source: "./media/characters/devon-childs/side.svg",
  50804. extra: 1812/1738,
  50805. bottom: 30/1842
  50806. }
  50807. },
  50808. back: {
  50809. height: math.unit(6 + 5/12, "feet"),
  50810. weight: math.unit(265, "lb"),
  50811. name: "Back",
  50812. image: {
  50813. source: "./media/characters/devon-childs/back.svg",
  50814. extra: 1808/1735,
  50815. bottom: 23/1831
  50816. }
  50817. },
  50818. hand: {
  50819. height: math.unit(1.464, "feet"),
  50820. name: "Hand",
  50821. image: {
  50822. source: "./media/characters/devon-childs/hand.svg"
  50823. }
  50824. },
  50825. foot: {
  50826. height: math.unit(1.6, "feet"),
  50827. name: "Foot",
  50828. image: {
  50829. source: "./media/characters/devon-childs/foot.svg"
  50830. }
  50831. },
  50832. },
  50833. [
  50834. {
  50835. name: "Micro",
  50836. height: math.unit(7, "cm")
  50837. },
  50838. {
  50839. name: "Normal",
  50840. height: math.unit(6 + 5/12, "feet"),
  50841. default: true
  50842. },
  50843. {
  50844. name: "Macro",
  50845. height: math.unit(154, "feet")
  50846. },
  50847. ]
  50848. ))
  50849. characterMakers.push(() => makeCharacter(
  50850. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  50851. {
  50852. front: {
  50853. height: math.unit(6, "feet"),
  50854. weight: math.unit(180, "lb"),
  50855. name: "Front",
  50856. image: {
  50857. source: "./media/characters/lydemox-vir/front.svg",
  50858. extra: 1632/1435,
  50859. bottom: 58/1690
  50860. }
  50861. },
  50862. frontSFW: {
  50863. height: math.unit(6, "feet"),
  50864. weight: math.unit(180, "lb"),
  50865. name: "Front (SFW)",
  50866. image: {
  50867. source: "./media/characters/lydemox-vir/front-sfw.svg",
  50868. extra: 1632/1435,
  50869. bottom: 58/1690
  50870. }
  50871. },
  50872. back: {
  50873. height: math.unit(6, "feet"),
  50874. weight: math.unit(180, "lb"),
  50875. name: "Back",
  50876. image: {
  50877. source: "./media/characters/lydemox-vir/back.svg",
  50878. extra: 1593/1408,
  50879. bottom: 31/1624
  50880. }
  50881. },
  50882. paw: {
  50883. height: math.unit(1.85, "feet"),
  50884. name: "Paw",
  50885. image: {
  50886. source: "./media/characters/lydemox-vir/paw.svg"
  50887. }
  50888. },
  50889. dick: {
  50890. height: math.unit(1.8, "feet"),
  50891. name: "Dick",
  50892. image: {
  50893. source: "./media/characters/lydemox-vir/dick.svg"
  50894. }
  50895. },
  50896. },
  50897. [
  50898. {
  50899. name: "Macro",
  50900. height: math.unit(100, "feet"),
  50901. default: true
  50902. },
  50903. {
  50904. name: "Teramacro",
  50905. height: math.unit(1, "earth")
  50906. },
  50907. {
  50908. name: "Planetary",
  50909. height: math.unit(20, "earths")
  50910. },
  50911. ]
  50912. ))
  50913. characterMakers.push(() => makeCharacter(
  50914. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  50915. {
  50916. front: {
  50917. height: math.unit(15 + 8/12, "feet"),
  50918. weight: math.unit(1237, "kg"),
  50919. name: "Front",
  50920. image: {
  50921. source: "./media/characters/mia/front.svg",
  50922. extra: 1573/1446,
  50923. bottom: 58/1631
  50924. }
  50925. },
  50926. },
  50927. [
  50928. {
  50929. name: "Small",
  50930. height: math.unit(9 + 5/12, "feet")
  50931. },
  50932. {
  50933. name: "Normal",
  50934. height: math.unit(15 + 8/12, "feet"),
  50935. default: true
  50936. },
  50937. ]
  50938. ))
  50939. characterMakers.push(() => makeCharacter(
  50940. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  50941. {
  50942. front: {
  50943. height: math.unit(10 + 6/12, "feet"),
  50944. weight: math.unit(1.3, "tons"),
  50945. name: "Front",
  50946. image: {
  50947. source: "./media/characters/mr-graves/front.svg",
  50948. extra: 1779/1695,
  50949. bottom: 198/1977
  50950. }
  50951. },
  50952. },
  50953. [
  50954. {
  50955. name: "Normal",
  50956. height: math.unit(10 + 6 /12, "feet"),
  50957. default: true
  50958. },
  50959. ]
  50960. ))
  50961. characterMakers.push(() => makeCharacter(
  50962. { name: "Jess", species: ["human"], tags: ["anthro"] },
  50963. {
  50964. dressedFront: {
  50965. height: math.unit(5 + 8/12, "feet"),
  50966. weight: math.unit(125, "lb"),
  50967. name: "Dressed (Front)",
  50968. image: {
  50969. source: "./media/characters/jess/dressed-front.svg",
  50970. extra: 1176/1152,
  50971. bottom: 42/1218
  50972. }
  50973. },
  50974. dressedSide: {
  50975. height: math.unit(5 + 8/12, "feet"),
  50976. weight: math.unit(125, "lb"),
  50977. name: "Dressed (Side)",
  50978. image: {
  50979. source: "./media/characters/jess/dressed-side.svg",
  50980. extra: 1204/1190,
  50981. bottom: 6/1210
  50982. }
  50983. },
  50984. nudeFront: {
  50985. height: math.unit(5 + 8/12, "feet"),
  50986. weight: math.unit(125, "lb"),
  50987. name: "Nude (Front)",
  50988. image: {
  50989. source: "./media/characters/jess/nude-front.svg",
  50990. extra: 1176/1152,
  50991. bottom: 42/1218
  50992. }
  50993. },
  50994. nudeSide: {
  50995. height: math.unit(5 + 8/12, "feet"),
  50996. weight: math.unit(125, "lb"),
  50997. name: "Nude (Side)",
  50998. image: {
  50999. source: "./media/characters/jess/nude-side.svg",
  51000. extra: 1204/1190,
  51001. bottom: 6/1210
  51002. }
  51003. },
  51004. organsFront: {
  51005. height: math.unit(2.83799342105, "feet"),
  51006. name: "Organs (Front)",
  51007. image: {
  51008. source: "./media/characters/jess/organs-front.svg"
  51009. }
  51010. },
  51011. organsSide: {
  51012. height: math.unit(2.64225290474, "feet"),
  51013. name: "Organs (Side)",
  51014. image: {
  51015. source: "./media/characters/jess/organs-side.svg"
  51016. }
  51017. },
  51018. digestiveTractFront: {
  51019. height: math.unit(2.8106580871, "feet"),
  51020. name: "Digestive Tract (Front)",
  51021. image: {
  51022. source: "./media/characters/jess/digestive-tract-front.svg"
  51023. }
  51024. },
  51025. digestiveTractSide: {
  51026. height: math.unit(2.54365045014, "feet"),
  51027. name: "Digestive Tract (Side)",
  51028. image: {
  51029. source: "./media/characters/jess/digestive-tract-side.svg"
  51030. }
  51031. },
  51032. respiratorySystemFront: {
  51033. height: math.unit(1.11196233456, "feet"),
  51034. name: "Respiratory System (Front)",
  51035. image: {
  51036. source: "./media/characters/jess/respiratory-system-front.svg"
  51037. }
  51038. },
  51039. respiratorySystemSide: {
  51040. height: math.unit(0.89327966297, "feet"),
  51041. name: "Respiratory System (Side)",
  51042. image: {
  51043. source: "./media/characters/jess/respiratory-system-side.svg"
  51044. }
  51045. },
  51046. urinaryTractFront: {
  51047. height: math.unit(1.16126356186, "feet"),
  51048. name: "Urinary Tract (Front)",
  51049. image: {
  51050. source: "./media/characters/jess/urinary-tract-front.svg"
  51051. }
  51052. },
  51053. urinaryTractSide: {
  51054. height: math.unit(1.20910039627, "feet"),
  51055. name: "Urinary Tract (Side)",
  51056. image: {
  51057. source: "./media/characters/jess/urinary-tract-side.svg"
  51058. }
  51059. },
  51060. reproductiveOrgansFront: {
  51061. height: math.unit(0.48422591566, "feet"),
  51062. name: "Reproductive Organs (Front)",
  51063. image: {
  51064. source: "./media/characters/jess/reproductive-organs-front.svg"
  51065. }
  51066. },
  51067. reproductiveOrgansSide: {
  51068. height: math.unit(0.61553314481, "feet"),
  51069. name: "Reproductive Organs (Side)",
  51070. image: {
  51071. source: "./media/characters/jess/reproductive-organs-side.svg"
  51072. }
  51073. },
  51074. breastsFront: {
  51075. height: math.unit(0.47690395121, "feet"),
  51076. name: "Breasts (Front)",
  51077. image: {
  51078. source: "./media/characters/jess/breasts-front.svg"
  51079. }
  51080. },
  51081. breastsSide: {
  51082. height: math.unit(0.30556998307, "feet"),
  51083. name: "Breasts (Side)",
  51084. image: {
  51085. source: "./media/characters/jess/breasts-side.svg"
  51086. }
  51087. },
  51088. heartFront: {
  51089. height: math.unit(0.53011022622, "feet"),
  51090. name: "Heart (Front)",
  51091. image: {
  51092. source: "./media/characters/jess/heart-front.svg"
  51093. }
  51094. },
  51095. heartSide: {
  51096. height: math.unit(0.51790695213, "feet"),
  51097. name: "Heart (Side)",
  51098. image: {
  51099. source: "./media/characters/jess/heart-side.svg"
  51100. }
  51101. },
  51102. earsAndNoseFront: {
  51103. height: math.unit(0.29385483995, "feet"),
  51104. name: "Ears and Nose (Front)",
  51105. image: {
  51106. source: "./media/characters/jess/ears-and-nose-front.svg"
  51107. }
  51108. },
  51109. earsAndNoseSide: {
  51110. height: math.unit(0.18109658741, "feet"),
  51111. name: "Ears and Nose (Side)",
  51112. image: {
  51113. source: "./media/characters/jess/ears-and-nose-side.svg"
  51114. }
  51115. },
  51116. },
  51117. [
  51118. {
  51119. name: "Normal",
  51120. height: math.unit(5 + 8/12, "feet"),
  51121. default: true
  51122. },
  51123. ]
  51124. ))
  51125. characterMakers.push(() => makeCharacter(
  51126. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  51127. {
  51128. front: {
  51129. height: math.unit(6, "feet"),
  51130. weight: math.unit(6.64467e-7, "grams"),
  51131. name: "Front",
  51132. image: {
  51133. source: "./media/characters/wimpering/front.svg",
  51134. extra: 597/587,
  51135. bottom: 34/631
  51136. }
  51137. },
  51138. },
  51139. [
  51140. {
  51141. name: "Micro",
  51142. height: math.unit(0.4, "mm"),
  51143. default: true
  51144. },
  51145. ]
  51146. ))
  51147. characterMakers.push(() => makeCharacter(
  51148. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  51149. {
  51150. front: {
  51151. height: math.unit(5 + 2/12, "feet"),
  51152. weight: math.unit(110, "lb"),
  51153. name: "Front",
  51154. image: {
  51155. source: "./media/characters/keltre/front.svg",
  51156. extra: 1099/1057,
  51157. bottom: 22/1121
  51158. }
  51159. },
  51160. back: {
  51161. height: math.unit(5 + 2/12, "feet"),
  51162. weight: math.unit(110, "lb"),
  51163. name: "Back",
  51164. image: {
  51165. source: "./media/characters/keltre/back.svg",
  51166. extra: 1095/1053,
  51167. bottom: 17/1112
  51168. }
  51169. },
  51170. dressed: {
  51171. height: math.unit(5 + 2/12, "feet"),
  51172. weight: math.unit(110, "lb"),
  51173. name: "Dressed",
  51174. image: {
  51175. source: "./media/characters/keltre/dressed.svg",
  51176. extra: 1099/1057,
  51177. bottom: 22/1121
  51178. }
  51179. },
  51180. winter: {
  51181. height: math.unit(5 + 2/12, "feet"),
  51182. weight: math.unit(110, "lb"),
  51183. name: "Winter",
  51184. image: {
  51185. source: "./media/characters/keltre/winter.svg",
  51186. extra: 1099/1057,
  51187. bottom: 22/1121
  51188. }
  51189. },
  51190. head: {
  51191. height: math.unit(1.61 * 0.86, "feet"),
  51192. name: "Head",
  51193. image: {
  51194. source: "./media/characters/keltre/head.svg",
  51195. extra: 534/421,
  51196. bottom: 0/534
  51197. }
  51198. },
  51199. hand: {
  51200. height: math.unit(1.3 * 0.86, "feet"),
  51201. name: "Hand",
  51202. image: {
  51203. source: "./media/characters/keltre/hand.svg"
  51204. }
  51205. },
  51206. foot: {
  51207. height: math.unit(1.8 * 0.86, "feet"),
  51208. name: "Foot",
  51209. image: {
  51210. source: "./media/characters/keltre/foot.svg"
  51211. }
  51212. },
  51213. },
  51214. [
  51215. {
  51216. name: "Fine",
  51217. height: math.unit(1, "inch")
  51218. },
  51219. {
  51220. name: "Dimnutive",
  51221. height: math.unit(4, "inches")
  51222. },
  51223. {
  51224. name: "Tiny",
  51225. height: math.unit(1, "foot")
  51226. },
  51227. {
  51228. name: "Small",
  51229. height: math.unit(3, "feet")
  51230. },
  51231. {
  51232. name: "Normal",
  51233. height: math.unit(5 + 2/12, "feet"),
  51234. default: true
  51235. },
  51236. ]
  51237. ))
  51238. characterMakers.push(() => makeCharacter(
  51239. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  51240. {
  51241. front: {
  51242. height: math.unit(6 + 2/12, "feet"),
  51243. name: "Front",
  51244. image: {
  51245. source: "./media/characters/nox/front.svg",
  51246. extra: 1917/1830,
  51247. bottom: 74/1991
  51248. }
  51249. },
  51250. back: {
  51251. height: math.unit(6 + 2/12, "feet"),
  51252. name: "Back",
  51253. image: {
  51254. source: "./media/characters/nox/back.svg",
  51255. extra: 1896/1815,
  51256. bottom: 21/1917
  51257. }
  51258. },
  51259. head: {
  51260. height: math.unit(1.1, "feet"),
  51261. name: "Head",
  51262. image: {
  51263. source: "./media/characters/nox/head.svg",
  51264. extra: 874/704,
  51265. bottom: 0/874
  51266. }
  51267. },
  51268. tattoo: {
  51269. height: math.unit(0.729, "feet"),
  51270. name: "Tattoo",
  51271. image: {
  51272. source: "./media/characters/nox/tattoo.svg"
  51273. }
  51274. },
  51275. },
  51276. [
  51277. {
  51278. name: "Normal",
  51279. height: math.unit(6 + 2/12, "feet")
  51280. },
  51281. {
  51282. name: "Gigamacro",
  51283. height: math.unit(2, "earths"),
  51284. default: true
  51285. },
  51286. {
  51287. name: "Cosmic",
  51288. height: math.unit(867, "yottameters")
  51289. },
  51290. ]
  51291. ))
  51292. characterMakers.push(() => makeCharacter(
  51293. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  51294. {
  51295. front: {
  51296. height: math.unit(6, "feet"),
  51297. weight: math.unit(150, "lb"),
  51298. name: "Front",
  51299. image: {
  51300. source: "./media/characters/caspian/front.svg",
  51301. extra: 1443/1359,
  51302. bottom: 0/1443
  51303. }
  51304. },
  51305. back: {
  51306. height: math.unit(6, "feet"),
  51307. weight: math.unit(150, "lb"),
  51308. name: "Back",
  51309. image: {
  51310. source: "./media/characters/caspian/back.svg",
  51311. extra: 1379/1309,
  51312. bottom: 0/1379
  51313. }
  51314. },
  51315. head: {
  51316. height: math.unit(0.9, "feet"),
  51317. name: "Head",
  51318. image: {
  51319. source: "./media/characters/caspian/head.svg",
  51320. extra: 692/492,
  51321. bottom: 0/692
  51322. }
  51323. },
  51324. headAlt: {
  51325. height: math.unit(0.95, "feet"),
  51326. name: "Head (Alt)",
  51327. image: {
  51328. source: "./media/characters/caspian/head-alt.svg",
  51329. extra: 668/508,
  51330. bottom: 0/668
  51331. }
  51332. },
  51333. hand: {
  51334. height: math.unit(0.8, "feet"),
  51335. name: "Hand",
  51336. image: {
  51337. source: "./media/characters/caspian/hand.svg"
  51338. }
  51339. },
  51340. paw: {
  51341. height: math.unit(0.95, "feet"),
  51342. name: "Paw",
  51343. image: {
  51344. source: "./media/characters/caspian/paw.svg"
  51345. }
  51346. },
  51347. },
  51348. [
  51349. {
  51350. name: "Normal",
  51351. height: math.unit(162, "feet"),
  51352. default: true
  51353. },
  51354. ]
  51355. ))
  51356. characterMakers.push(() => makeCharacter(
  51357. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  51358. {
  51359. front: {
  51360. height: math.unit(6, "feet"),
  51361. name: "Front",
  51362. image: {
  51363. source: "./media/characters/myra-aisling/front.svg",
  51364. extra: 1268/1166,
  51365. bottom: 73/1341
  51366. }
  51367. },
  51368. back: {
  51369. height: math.unit(6, "feet"),
  51370. name: "Back",
  51371. image: {
  51372. source: "./media/characters/myra-aisling/back.svg",
  51373. extra: 1249/1149,
  51374. bottom: 79/1328
  51375. }
  51376. },
  51377. dressed: {
  51378. height: math.unit(6, "feet"),
  51379. name: "Dressed",
  51380. image: {
  51381. source: "./media/characters/myra-aisling/dressed.svg",
  51382. extra: 1290/1189,
  51383. bottom: 47/1337
  51384. }
  51385. },
  51386. hand: {
  51387. height: math.unit(1.1, "feet"),
  51388. name: "Hand",
  51389. image: {
  51390. source: "./media/characters/myra-aisling/hand.svg"
  51391. }
  51392. },
  51393. paw: {
  51394. height: math.unit(1.23, "feet"),
  51395. name: "Paw",
  51396. image: {
  51397. source: "./media/characters/myra-aisling/paw.svg"
  51398. }
  51399. },
  51400. },
  51401. [
  51402. {
  51403. name: "Normal",
  51404. height: math.unit(160, "feet"),
  51405. default: true
  51406. },
  51407. ]
  51408. ))
  51409. characterMakers.push(() => makeCharacter(
  51410. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  51411. {
  51412. front: {
  51413. height: math.unit(6, "feet"),
  51414. name: "Front",
  51415. image: {
  51416. source: "./media/characters/tenley-sidero/front.svg",
  51417. extra: 1365/1276,
  51418. bottom: 47/1412
  51419. }
  51420. },
  51421. back: {
  51422. height: math.unit(6, "feet"),
  51423. name: "Back",
  51424. image: {
  51425. source: "./media/characters/tenley-sidero/back.svg",
  51426. extra: 1383/1283,
  51427. bottom: 35/1418
  51428. }
  51429. },
  51430. dressed: {
  51431. height: math.unit(6, "feet"),
  51432. name: "Dressed",
  51433. image: {
  51434. source: "./media/characters/tenley-sidero/dressed.svg",
  51435. extra: 1364/1275,
  51436. bottom: 42/1406
  51437. }
  51438. },
  51439. head: {
  51440. height: math.unit(1.47, "feet"),
  51441. name: "Head",
  51442. image: {
  51443. source: "./media/characters/tenley-sidero/head.svg",
  51444. extra: 610/490,
  51445. bottom: 0/610
  51446. }
  51447. },
  51448. },
  51449. [
  51450. {
  51451. name: "Normal",
  51452. height: math.unit(154, "feet"),
  51453. default: true
  51454. },
  51455. ]
  51456. ))
  51457. characterMakers.push(() => makeCharacter(
  51458. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  51459. {
  51460. front: {
  51461. height: math.unit(5, "inches"),
  51462. name: "Front",
  51463. image: {
  51464. source: "./media/characters/mallory/front.svg",
  51465. extra: 1919/1678,
  51466. bottom: 29/1948
  51467. }
  51468. },
  51469. hand: {
  51470. height: math.unit(0.73, "inches"),
  51471. name: "Hand",
  51472. image: {
  51473. source: "./media/characters/mallory/hand.svg"
  51474. }
  51475. },
  51476. paw: {
  51477. height: math.unit(0.68, "inches"),
  51478. name: "Paw",
  51479. image: {
  51480. source: "./media/characters/mallory/paw.svg"
  51481. }
  51482. },
  51483. },
  51484. [
  51485. {
  51486. name: "Small",
  51487. height: math.unit(5, "inches"),
  51488. default: true
  51489. },
  51490. ]
  51491. ))
  51492. characterMakers.push(() => makeCharacter(
  51493. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  51494. {
  51495. naked: {
  51496. height: math.unit(6, "feet"),
  51497. name: "Naked",
  51498. image: {
  51499. source: "./media/characters/mab/naked.svg",
  51500. extra: 1855/1757,
  51501. bottom: 208/2063
  51502. }
  51503. },
  51504. outside: {
  51505. height: math.unit(6, "feet"),
  51506. name: "Outside",
  51507. image: {
  51508. source: "./media/characters/mab/outside.svg",
  51509. extra: 1855/1757,
  51510. bottom: 208/2063
  51511. }
  51512. },
  51513. party: {
  51514. height: math.unit(6, "feet"),
  51515. name: "Party",
  51516. image: {
  51517. source: "./media/characters/mab/party.svg",
  51518. extra: 1855/1757,
  51519. bottom: 208/2063
  51520. }
  51521. },
  51522. },
  51523. [
  51524. {
  51525. name: "Normal",
  51526. height: math.unit(165, "feet"),
  51527. default: true
  51528. },
  51529. ]
  51530. ))
  51531. characterMakers.push(() => makeCharacter(
  51532. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  51533. {
  51534. feral: {
  51535. height: math.unit(12, "feet"),
  51536. weight: math.unit(20000, "lb"),
  51537. name: "Side",
  51538. image: {
  51539. source: "./media/characters/winter/feral.svg",
  51540. extra: 1286/943,
  51541. bottom: 112/1398
  51542. },
  51543. form: "feral",
  51544. default: true
  51545. },
  51546. feralNsfw: {
  51547. height: math.unit(12, "feet"),
  51548. weight: math.unit(20000, "lb"),
  51549. name: "Side (NSFW)",
  51550. image: {
  51551. source: "./media/characters/winter/feral-nsfw.svg",
  51552. extra: 1286/943,
  51553. bottom: 112/1398
  51554. },
  51555. form: "feral"
  51556. },
  51557. dick: {
  51558. height: math.unit(3.79, "feet"),
  51559. name: "Dick",
  51560. image: {
  51561. source: "./media/characters/winter/dick.svg"
  51562. },
  51563. form: "feral"
  51564. },
  51565. anthro: {
  51566. height: math.unit(12, "feet"),
  51567. weight: math.unit(10, "tons"),
  51568. name: "Anthro",
  51569. image: {
  51570. source: "./media/characters/winter/anthro.svg",
  51571. extra: 1701/1553,
  51572. bottom: 64/1765
  51573. },
  51574. form: "anthro",
  51575. default: true
  51576. },
  51577. },
  51578. [
  51579. {
  51580. name: "Big",
  51581. height: math.unit(12, "feet"),
  51582. default: true,
  51583. form: "feral"
  51584. },
  51585. {
  51586. name: "Big",
  51587. height: math.unit(12, "feet"),
  51588. default: true,
  51589. form: "anthro"
  51590. },
  51591. ],
  51592. {
  51593. "feral": {
  51594. name: "Feral",
  51595. default: true
  51596. },
  51597. "anthro": {
  51598. name: "Anthro"
  51599. }
  51600. }
  51601. ))
  51602. characterMakers.push(() => makeCharacter(
  51603. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  51604. {
  51605. front: {
  51606. height: math.unit(4.1, "inches"),
  51607. name: "Front",
  51608. image: {
  51609. source: "./media/characters/alto/front.svg",
  51610. extra: 736/627,
  51611. bottom: 90/826
  51612. }
  51613. },
  51614. },
  51615. [
  51616. {
  51617. name: "Normal",
  51618. height: math.unit(4.1, "inches"),
  51619. default: true
  51620. },
  51621. ]
  51622. ))
  51623. characterMakers.push(() => makeCharacter(
  51624. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  51625. {
  51626. sitting: {
  51627. height: math.unit(3, "feet"),
  51628. name: "Sitting",
  51629. image: {
  51630. source: "./media/characters/ratstrid-v/sitting.svg",
  51631. extra: 355/310,
  51632. bottom: 136/491
  51633. }
  51634. },
  51635. },
  51636. [
  51637. {
  51638. name: "Normal",
  51639. height: math.unit(3, "feet"),
  51640. default: true
  51641. },
  51642. ]
  51643. ))
  51644. characterMakers.push(() => makeCharacter(
  51645. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  51646. {
  51647. back: {
  51648. height: math.unit(6, "feet"),
  51649. weight: math.unit(450, "lb"),
  51650. name: "Back",
  51651. image: {
  51652. source: "./media/characters/siz/back.svg",
  51653. extra: 1449/1274,
  51654. bottom: 13/1462
  51655. }
  51656. },
  51657. },
  51658. [
  51659. {
  51660. name: "Smallest",
  51661. height: math.unit(18 + 3/12, "feet")
  51662. },
  51663. {
  51664. name: "Modest",
  51665. height: math.unit(56 + 8/12, "feet"),
  51666. default: true
  51667. },
  51668. {
  51669. name: "Largest",
  51670. height: math.unit(3590, "feet")
  51671. },
  51672. ]
  51673. ))
  51674. characterMakers.push(() => makeCharacter(
  51675. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  51676. {
  51677. front: {
  51678. height: math.unit(5 + 9/12, "feet"),
  51679. weight: math.unit(150, "lb"),
  51680. name: "Front",
  51681. image: {
  51682. source: "./media/characters/ven/front.svg",
  51683. extra: 1372/1320,
  51684. bottom: 73/1445
  51685. }
  51686. },
  51687. side: {
  51688. height: math.unit(5 + 9/12, "feet"),
  51689. weight: math.unit(1150, "lb"),
  51690. name: "Side",
  51691. image: {
  51692. source: "./media/characters/ven/side.svg",
  51693. extra: 1119/1070,
  51694. bottom: 42/1161
  51695. },
  51696. default: true
  51697. },
  51698. },
  51699. [
  51700. {
  51701. name: "Normal",
  51702. height: math.unit(5 + 9/12, "feet"),
  51703. default: true
  51704. },
  51705. ]
  51706. ))
  51707. characterMakers.push(() => makeCharacter(
  51708. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  51709. {
  51710. front: {
  51711. height: math.unit(12, "feet"),
  51712. weight: math.unit(1000, "kg"),
  51713. name: "Front",
  51714. image: {
  51715. source: "./media/characters/maple/front.svg",
  51716. extra: 1193/1081,
  51717. bottom: 22/1215
  51718. }
  51719. },
  51720. },
  51721. [
  51722. {
  51723. name: "Compressed",
  51724. height: math.unit(7, "feet")
  51725. },
  51726. {
  51727. name: "Normal",
  51728. height: math.unit(12, "feet"),
  51729. default: true
  51730. },
  51731. ]
  51732. ))
  51733. characterMakers.push(() => makeCharacter(
  51734. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  51735. {
  51736. front: {
  51737. height: math.unit(9, "feet"),
  51738. weight: math.unit(1500, "lb"),
  51739. name: "Front",
  51740. image: {
  51741. source: "./media/characters/nora/front.svg",
  51742. extra: 1348/1286,
  51743. bottom: 218/1566
  51744. }
  51745. },
  51746. erect: {
  51747. height: math.unit(9, "feet"),
  51748. weight: math.unit(11500, "lb"),
  51749. name: "Erect",
  51750. image: {
  51751. source: "./media/characters/nora/erect.svg",
  51752. extra: 1488/1433,
  51753. bottom: 133/1621
  51754. }
  51755. },
  51756. },
  51757. [
  51758. {
  51759. name: "Normal",
  51760. height: math.unit(9, "feet"),
  51761. default: true
  51762. },
  51763. ]
  51764. ))
  51765. characterMakers.push(() => makeCharacter(
  51766. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  51767. {
  51768. front: {
  51769. height: math.unit(25, "feet"),
  51770. weight: math.unit(27500, "lb"),
  51771. name: "Front",
  51772. image: {
  51773. source: "./media/characters/north-caudin/front.svg",
  51774. extra: 1184/1082,
  51775. bottom: 23/1207
  51776. }
  51777. },
  51778. },
  51779. [
  51780. {
  51781. name: "Compressed",
  51782. height: math.unit(10, "feet")
  51783. },
  51784. {
  51785. name: "Normal",
  51786. height: math.unit(25, "feet"),
  51787. default: true
  51788. },
  51789. ]
  51790. ))
  51791. characterMakers.push(() => makeCharacter(
  51792. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  51793. {
  51794. front: {
  51795. height: math.unit(9, "feet"),
  51796. weight: math.unit(1250, "lb"),
  51797. name: "Front",
  51798. image: {
  51799. source: "./media/characters/merrian/front.svg",
  51800. extra: 2393/2304,
  51801. bottom: 40/2433
  51802. }
  51803. },
  51804. },
  51805. [
  51806. {
  51807. name: "Normal",
  51808. height: math.unit(9, "feet"),
  51809. default: true
  51810. },
  51811. ]
  51812. ))
  51813. characterMakers.push(() => makeCharacter(
  51814. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  51815. {
  51816. front: {
  51817. height: math.unit(9, "feet"),
  51818. weight: math.unit(1000, "lb"),
  51819. name: "Front",
  51820. image: {
  51821. source: "./media/characters/hazel/front.svg",
  51822. extra: 2351/2298,
  51823. bottom: 38/2389
  51824. }
  51825. },
  51826. },
  51827. [
  51828. {
  51829. name: "Normal",
  51830. height: math.unit(9, "feet"),
  51831. default: true
  51832. },
  51833. ]
  51834. ))
  51835. characterMakers.push(() => makeCharacter(
  51836. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  51837. {
  51838. front: {
  51839. height: math.unit(13, "feet"),
  51840. weight: math.unit(3200, "lb"),
  51841. name: "Front",
  51842. image: {
  51843. source: "./media/characters/emma/front.svg",
  51844. extra: 2263/2029,
  51845. bottom: 68/2331
  51846. }
  51847. },
  51848. },
  51849. [
  51850. {
  51851. name: "Normal",
  51852. height: math.unit(13, "feet"),
  51853. default: true
  51854. },
  51855. ]
  51856. ))
  51857. characterMakers.push(() => makeCharacter(
  51858. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  51859. {
  51860. front: {
  51861. height: math.unit(11 + 9/12, "feet"),
  51862. weight: math.unit(2500, "lb"),
  51863. name: "Front",
  51864. image: {
  51865. source: "./media/characters/ilumina/front.svg",
  51866. extra: 2248/2209,
  51867. bottom: 164/2412
  51868. }
  51869. },
  51870. },
  51871. [
  51872. {
  51873. name: "Normal",
  51874. height: math.unit(11 + 9/12, "feet"),
  51875. default: true
  51876. },
  51877. ]
  51878. ))
  51879. characterMakers.push(() => makeCharacter(
  51880. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  51881. {
  51882. front: {
  51883. height: math.unit(8 + 10/12, "feet"),
  51884. weight: math.unit(1350, "lb"),
  51885. name: "Front",
  51886. image: {
  51887. source: "./media/characters/moonshine/front.svg",
  51888. extra: 2395/2288,
  51889. bottom: 40/2435
  51890. }
  51891. },
  51892. },
  51893. [
  51894. {
  51895. name: "Normal",
  51896. height: math.unit(8 + 10/12, "feet"),
  51897. default: true
  51898. },
  51899. ]
  51900. ))
  51901. characterMakers.push(() => makeCharacter(
  51902. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  51903. {
  51904. front: {
  51905. height: math.unit(14, "feet"),
  51906. weight: math.unit(3400, "lb"),
  51907. name: "Front",
  51908. image: {
  51909. source: "./media/characters/aletia/front.svg",
  51910. extra: 1185/1052,
  51911. bottom: 21/1206
  51912. }
  51913. },
  51914. },
  51915. [
  51916. {
  51917. name: "Compressed",
  51918. height: math.unit(8, "feet")
  51919. },
  51920. {
  51921. name: "Normal",
  51922. height: math.unit(14, "feet"),
  51923. default: true
  51924. },
  51925. ]
  51926. ))
  51927. characterMakers.push(() => makeCharacter(
  51928. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  51929. {
  51930. front: {
  51931. height: math.unit(17, "feet"),
  51932. weight: math.unit(6500, "lb"),
  51933. name: "Front",
  51934. image: {
  51935. source: "./media/characters/deidra/front.svg",
  51936. extra: 1201/1081,
  51937. bottom: 16/1217
  51938. }
  51939. },
  51940. },
  51941. [
  51942. {
  51943. name: "Compressed",
  51944. height: math.unit(9 + 6/12, "feet")
  51945. },
  51946. {
  51947. name: "Normal",
  51948. height: math.unit(17, "feet"),
  51949. default: true
  51950. },
  51951. ]
  51952. ))
  51953. characterMakers.push(() => makeCharacter(
  51954. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  51955. {
  51956. front: {
  51957. height: math.unit(7 + 4/12, "feet"),
  51958. weight: math.unit(280, "lb"),
  51959. name: "Front",
  51960. image: {
  51961. source: "./media/characters/freki-yrmori/front.svg",
  51962. extra: 1286/1182,
  51963. bottom: 29/1315
  51964. }
  51965. },
  51966. maw: {
  51967. height: math.unit(0.9, "feet"),
  51968. name: "Maw",
  51969. image: {
  51970. source: "./media/characters/freki-yrmori/maw.svg"
  51971. }
  51972. },
  51973. },
  51974. [
  51975. {
  51976. name: "Normal",
  51977. height: math.unit(7 + 4/12, "feet"),
  51978. default: true
  51979. },
  51980. {
  51981. name: "Macro",
  51982. height: math.unit(38.5, "meters")
  51983. },
  51984. ]
  51985. ))
  51986. characterMakers.push(() => makeCharacter(
  51987. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  51988. {
  51989. side: {
  51990. height: math.unit(47.2, "meters"),
  51991. weight: math.unit(10000, "tons"),
  51992. name: "Side",
  51993. image: {
  51994. source: "./media/characters/aetherios/side.svg",
  51995. extra: 2363/642,
  51996. bottom: 221/2584
  51997. }
  51998. },
  51999. top: {
  52000. height: math.unit(240, "meters"),
  52001. weight: math.unit(10000, "tons"),
  52002. name: "Top",
  52003. image: {
  52004. source: "./media/characters/aetherios/top.svg"
  52005. }
  52006. },
  52007. bottom: {
  52008. height: math.unit(240, "meters"),
  52009. weight: math.unit(10000, "tons"),
  52010. name: "Bottom",
  52011. image: {
  52012. source: "./media/characters/aetherios/bottom.svg"
  52013. }
  52014. },
  52015. head: {
  52016. height: math.unit(38.6, "meters"),
  52017. name: "Head",
  52018. image: {
  52019. source: "./media/characters/aetherios/head.svg",
  52020. extra: 1335/1112,
  52021. bottom: 0/1335
  52022. }
  52023. },
  52024. front: {
  52025. height: math.unit(29, "meters"),
  52026. name: "Front",
  52027. image: {
  52028. source: "./media/characters/aetherios/front.svg",
  52029. extra: 1266/953,
  52030. bottom: 158/1424
  52031. }
  52032. },
  52033. maw: {
  52034. height: math.unit(16.37, "meters"),
  52035. name: "Maw",
  52036. image: {
  52037. source: "./media/characters/aetherios/maw.svg",
  52038. extra: 748/637,
  52039. bottom: 0/748
  52040. },
  52041. extraAttributes: {
  52042. preyCapacity: {
  52043. name: "Capacity",
  52044. power: 3,
  52045. type: "volume",
  52046. base: math.unit(1000, "people")
  52047. },
  52048. tongueSize: {
  52049. name: "Tongue Size",
  52050. power: 2,
  52051. type: "area",
  52052. base: math.unit(21, "m^2")
  52053. }
  52054. }
  52055. },
  52056. forepaw: {
  52057. height: math.unit(18, "meters"),
  52058. name: "Forepaw",
  52059. image: {
  52060. source: "./media/characters/aetherios/forepaw.svg"
  52061. }
  52062. },
  52063. hindpaw: {
  52064. height: math.unit(23, "meters"),
  52065. name: "Hindpaw",
  52066. image: {
  52067. source: "./media/characters/aetherios/hindpaw.svg"
  52068. }
  52069. },
  52070. genitals: {
  52071. height: math.unit(42, "meters"),
  52072. name: "Genitals",
  52073. image: {
  52074. source: "./media/characters/aetherios/genitals.svg"
  52075. }
  52076. },
  52077. },
  52078. [
  52079. {
  52080. name: "Normal",
  52081. height: math.unit(47.2, "meters"),
  52082. default: true
  52083. },
  52084. {
  52085. name: "Macro",
  52086. height: math.unit(160, "meters")
  52087. },
  52088. {
  52089. name: "Mega",
  52090. height: math.unit(1.87, "km")
  52091. },
  52092. {
  52093. name: "Giga",
  52094. height: math.unit(40000, "km")
  52095. },
  52096. {
  52097. name: "Stellar",
  52098. height: math.unit(158000000, "km")
  52099. },
  52100. {
  52101. name: "Cosmic",
  52102. height: math.unit(9.46e12, "km")
  52103. },
  52104. ]
  52105. ))
  52106. characterMakers.push(() => makeCharacter(
  52107. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  52108. {
  52109. front: {
  52110. height: math.unit(5 + 4/12, "feet"),
  52111. weight: math.unit(80, "lb"),
  52112. name: "Front",
  52113. image: {
  52114. source: "./media/characters/mizu-gieeg/front.svg",
  52115. extra: 850/709,
  52116. bottom: 52/902
  52117. }
  52118. },
  52119. back: {
  52120. height: math.unit(5 + 4/12, "feet"),
  52121. weight: math.unit(80, "lb"),
  52122. name: "Back",
  52123. image: {
  52124. source: "./media/characters/mizu-gieeg/back.svg",
  52125. extra: 882/745,
  52126. bottom: 25/907
  52127. }
  52128. },
  52129. },
  52130. [
  52131. {
  52132. name: "Normal",
  52133. height: math.unit(5 + 4/12, "feet"),
  52134. default: true
  52135. },
  52136. ]
  52137. ))
  52138. characterMakers.push(() => makeCharacter(
  52139. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  52140. {
  52141. front: {
  52142. height: math.unit(6, "feet"),
  52143. name: "Front",
  52144. image: {
  52145. source: "./media/characters/roselle-st-papier/front.svg",
  52146. extra: 1430/1280,
  52147. bottom: 37/1467
  52148. }
  52149. },
  52150. back: {
  52151. height: math.unit(6, "feet"),
  52152. name: "Back",
  52153. image: {
  52154. source: "./media/characters/roselle-st-papier/back.svg",
  52155. extra: 1491/1296,
  52156. bottom: 23/1514
  52157. }
  52158. },
  52159. ear: {
  52160. height: math.unit(1.26, "feet"),
  52161. name: "Ear",
  52162. image: {
  52163. source: "./media/characters/roselle-st-papier/ear.svg"
  52164. }
  52165. },
  52166. },
  52167. [
  52168. {
  52169. name: "Normal",
  52170. height: math.unit(150, "feet"),
  52171. default: true
  52172. },
  52173. ]
  52174. ))
  52175. characterMakers.push(() => makeCharacter(
  52176. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  52177. {
  52178. front: {
  52179. height: math.unit(1, "inches"),
  52180. name: "Front",
  52181. image: {
  52182. source: "./media/characters/valargent/front.svg",
  52183. extra: 1825/1694,
  52184. bottom: 62/1887
  52185. }
  52186. },
  52187. back: {
  52188. height: math.unit(1, "inches"),
  52189. name: "Back",
  52190. image: {
  52191. source: "./media/characters/valargent/back.svg",
  52192. extra: 1775/1682,
  52193. bottom: 88/1863
  52194. }
  52195. },
  52196. },
  52197. [
  52198. {
  52199. name: "Micro",
  52200. height: math.unit(1, "inch"),
  52201. default: true
  52202. },
  52203. ]
  52204. ))
  52205. characterMakers.push(() => makeCharacter(
  52206. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  52207. {
  52208. front: {
  52209. height: math.unit(3.4, "meters"),
  52210. name: "Front",
  52211. image: {
  52212. source: "./media/characters/zarina/front.svg",
  52213. extra: 1733/1425,
  52214. bottom: 93/1826
  52215. }
  52216. },
  52217. squatting: {
  52218. height: math.unit(2.14, "meters"),
  52219. name: "Squatting",
  52220. image: {
  52221. source: "./media/characters/zarina/squatting.svg",
  52222. extra: 1073/788,
  52223. bottom: 63/1136
  52224. }
  52225. },
  52226. back: {
  52227. height: math.unit(2.14, "meters"),
  52228. name: "Back",
  52229. image: {
  52230. source: "./media/characters/zarina/back.svg",
  52231. extra: 1128/885,
  52232. bottom: 0/1128
  52233. }
  52234. },
  52235. },
  52236. [
  52237. {
  52238. name: "Normal",
  52239. height: math.unit(3.4, "meters"),
  52240. default: true
  52241. },
  52242. {
  52243. name: "Big",
  52244. height: math.unit(5, "meters")
  52245. },
  52246. {
  52247. name: "Macro",
  52248. height: math.unit(110, "meters")
  52249. },
  52250. ]
  52251. ))
  52252. characterMakers.push(() => makeCharacter(
  52253. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  52254. {
  52255. front: {
  52256. height: math.unit(7, "feet"),
  52257. name: "Front",
  52258. image: {
  52259. source: "./media/characters/ventus-astro-fox/front.svg",
  52260. extra: 1792/1623,
  52261. bottom: 28/1820
  52262. }
  52263. },
  52264. back: {
  52265. height: math.unit(7, "feet"),
  52266. name: "Back",
  52267. image: {
  52268. source: "./media/characters/ventus-astro-fox/back.svg",
  52269. extra: 1789/1620,
  52270. bottom: 31/1820
  52271. }
  52272. },
  52273. outfit: {
  52274. height: math.unit(7, "feet"),
  52275. name: "Outfit",
  52276. image: {
  52277. source: "./media/characters/ventus-astro-fox/outfit.svg",
  52278. extra: 1054/925,
  52279. bottom: 15/1069
  52280. }
  52281. },
  52282. head: {
  52283. height: math.unit(1.12, "feet"),
  52284. name: "Head",
  52285. image: {
  52286. source: "./media/characters/ventus-astro-fox/head.svg",
  52287. extra: 866/504,
  52288. bottom: 0/866
  52289. }
  52290. },
  52291. hand: {
  52292. height: math.unit(1, "feet"),
  52293. name: "Hand",
  52294. image: {
  52295. source: "./media/characters/ventus-astro-fox/hand.svg"
  52296. }
  52297. },
  52298. paw: {
  52299. height: math.unit(1.5, "feet"),
  52300. name: "Paw",
  52301. image: {
  52302. source: "./media/characters/ventus-astro-fox/paw.svg"
  52303. }
  52304. },
  52305. },
  52306. [
  52307. {
  52308. name: "Normal",
  52309. height: math.unit(7, "feet"),
  52310. default: true
  52311. },
  52312. {
  52313. name: "Macro",
  52314. height: math.unit(200, "feet")
  52315. },
  52316. {
  52317. name: "Cosmic",
  52318. height: math.unit(3, "universes")
  52319. },
  52320. ]
  52321. ))
  52322. characterMakers.push(() => makeCharacter(
  52323. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  52324. {
  52325. front: {
  52326. height: math.unit(3, "meters"),
  52327. weight: math.unit(7000, "lb"),
  52328. name: "Front",
  52329. image: {
  52330. source: "./media/characters/core-t/front.svg",
  52331. extra: 5729/4941,
  52332. bottom: 1129/6858
  52333. }
  52334. },
  52335. },
  52336. [
  52337. {
  52338. name: "Big",
  52339. height: math.unit(3, "meters"),
  52340. default: true
  52341. },
  52342. ]
  52343. ))
  52344. characterMakers.push(() => makeCharacter(
  52345. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  52346. {
  52347. normal: {
  52348. height: math.unit(6 + 6/12, "feet"),
  52349. weight: math.unit(275, "lb"),
  52350. name: "Front",
  52351. image: {
  52352. source: "./media/characters/cadbunny/normal.svg",
  52353. extra: 1129/947,
  52354. bottom: 93/1222
  52355. },
  52356. default: true,
  52357. form: "normal"
  52358. },
  52359. gigantamax: {
  52360. height: math.unit(26, "feet"),
  52361. weight: math.unit(16000, "lb"),
  52362. name: "Front",
  52363. image: {
  52364. source: "./media/characters/cadbunny/gigantamax.svg",
  52365. extra: 1133/944,
  52366. bottom: 90/1223
  52367. },
  52368. default: true,
  52369. form: "gigantamax"
  52370. },
  52371. },
  52372. [
  52373. {
  52374. name: "Normal",
  52375. height: math.unit(6 + 6/12, "feet"),
  52376. default: true,
  52377. form: "normal"
  52378. },
  52379. {
  52380. name: "Small",
  52381. height: math.unit(26, "feet"),
  52382. default: true,
  52383. form: "gigantamax"
  52384. },
  52385. {
  52386. name: "Large",
  52387. height: math.unit(78, "feet"),
  52388. form: "gigantamax"
  52389. },
  52390. ],
  52391. {
  52392. "normal": {
  52393. name: "Normal",
  52394. default: true
  52395. },
  52396. "gigantamax": {
  52397. name: "Gigantamax"
  52398. }
  52399. }
  52400. ))
  52401. characterMakers.push(() => makeCharacter(
  52402. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  52403. {
  52404. anthroFront: {
  52405. height: math.unit(8, "feet"),
  52406. weight: math.unit(300, "lb"),
  52407. name: "Front",
  52408. image: {
  52409. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  52410. extra: 1272/1176,
  52411. bottom: 53/1325
  52412. },
  52413. form: "anthro",
  52414. default: true
  52415. },
  52416. feralSide: {
  52417. height: math.unit(4, "feet"),
  52418. weight: math.unit(250, "lb"),
  52419. name: "Side",
  52420. image: {
  52421. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  52422. extra: 731/621,
  52423. bottom: 0/731
  52424. },
  52425. form: "feral",
  52426. default: true
  52427. },
  52428. },
  52429. [
  52430. {
  52431. name: "Regular",
  52432. height: math.unit(8, "feet"),
  52433. form: "anthro"
  52434. },
  52435. {
  52436. name: "Macro",
  52437. height: math.unit(250, "feet"),
  52438. form: "anthro",
  52439. default: true
  52440. },
  52441. {
  52442. name: "Regular",
  52443. height: math.unit(4, "feet"),
  52444. form: "feral"
  52445. },
  52446. {
  52447. name: "Macro",
  52448. height: math.unit(125, "feet"),
  52449. form: "feral",
  52450. default: true
  52451. },
  52452. ],
  52453. {
  52454. "anthro": {
  52455. name: "Anthro",
  52456. default: true
  52457. },
  52458. "feral": {
  52459. name: "Feral",
  52460. },
  52461. }
  52462. ))
  52463. characterMakers.push(() => makeCharacter(
  52464. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  52465. {
  52466. front: {
  52467. height: math.unit(11 + 10/12, "feet"),
  52468. weight: math.unit(1587, "kg"),
  52469. name: "Front",
  52470. image: {
  52471. source: "./media/characters/maple-javira-dragon/front.svg",
  52472. extra: 1136/744,
  52473. bottom: 73/1209
  52474. }
  52475. },
  52476. side: {
  52477. height: math.unit(11 + 10/12, "feet"),
  52478. weight: math.unit(1587, "kg"),
  52479. name: "Side",
  52480. image: {
  52481. source: "./media/characters/maple-javira-dragon/side.svg",
  52482. extra: 712/505,
  52483. bottom: 17/729
  52484. }
  52485. },
  52486. head: {
  52487. height: math.unit(8.05, "feet"),
  52488. name: "Head",
  52489. image: {
  52490. source: "./media/characters/maple-javira-dragon/head.svg",
  52491. extra: 1420/1344,
  52492. bottom: 0/1420
  52493. }
  52494. },
  52495. },
  52496. [
  52497. {
  52498. name: "Normal",
  52499. height: math.unit(11 + 10/12, "feet"),
  52500. default: true
  52501. },
  52502. ]
  52503. ))
  52504. characterMakers.push(() => makeCharacter(
  52505. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  52506. {
  52507. front: {
  52508. height: math.unit(117, "cm"),
  52509. weight: math.unit(50, "kg"),
  52510. name: "Front",
  52511. image: {
  52512. source: "./media/characters/sonia-wyverntail/front.svg",
  52513. extra: 708/592,
  52514. bottom: 25/733
  52515. }
  52516. },
  52517. },
  52518. [
  52519. {
  52520. name: "Normal",
  52521. height: math.unit(117, "cm"),
  52522. default: true
  52523. },
  52524. ]
  52525. ))
  52526. characterMakers.push(() => makeCharacter(
  52527. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  52528. {
  52529. front: {
  52530. height: math.unit(6 + 5/12, "feet"),
  52531. name: "Front",
  52532. image: {
  52533. source: "./media/characters/micah/front.svg",
  52534. extra: 1758/1546,
  52535. bottom: 214/1972
  52536. }
  52537. },
  52538. },
  52539. [
  52540. {
  52541. name: "Normal",
  52542. height: math.unit(6 + 5/12, "feet"),
  52543. default: true
  52544. },
  52545. ]
  52546. ))
  52547. characterMakers.push(() => makeCharacter(
  52548. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  52549. {
  52550. front: {
  52551. height: math.unit(1.75, "meters"),
  52552. weight: math.unit(100, "kg"),
  52553. name: "Front",
  52554. image: {
  52555. source: "./media/characters/zarya/front.svg",
  52556. extra: 741/735,
  52557. bottom: 44/785
  52558. },
  52559. extraAttributes: {
  52560. "tailLength": {
  52561. name: "Tail Length",
  52562. power: 1,
  52563. type: "length",
  52564. base: math.unit(180, "cm")
  52565. },
  52566. "pawLength": {
  52567. name: "Paw Length",
  52568. power: 1,
  52569. type: "length",
  52570. base: math.unit(31, "cm")
  52571. },
  52572. }
  52573. },
  52574. side: {
  52575. height: math.unit(1.75, "meters"),
  52576. weight: math.unit(100, "kg"),
  52577. name: "Side",
  52578. image: {
  52579. source: "./media/characters/zarya/side.svg",
  52580. extra: 776/770,
  52581. bottom: 17/793
  52582. },
  52583. extraAttributes: {
  52584. "tailLength": {
  52585. name: "Tail Length",
  52586. power: 1,
  52587. type: "length",
  52588. base: math.unit(180, "cm")
  52589. },
  52590. "pawLength": {
  52591. name: "Paw Length",
  52592. power: 1,
  52593. type: "length",
  52594. base: math.unit(31, "cm")
  52595. },
  52596. }
  52597. },
  52598. back: {
  52599. height: math.unit(1.75, "meters"),
  52600. weight: math.unit(100, "kg"),
  52601. name: "Back",
  52602. image: {
  52603. source: "./media/characters/zarya/back.svg",
  52604. extra: 741/735,
  52605. bottom: 44/785
  52606. },
  52607. extraAttributes: {
  52608. "tailLength": {
  52609. name: "Tail Length",
  52610. power: 1,
  52611. type: "length",
  52612. base: math.unit(180, "cm")
  52613. },
  52614. "pawLength": {
  52615. name: "Paw Length",
  52616. power: 1,
  52617. type: "length",
  52618. base: math.unit(31, "cm")
  52619. },
  52620. }
  52621. },
  52622. frontNoTail: {
  52623. height: math.unit(1.75, "meters"),
  52624. weight: math.unit(100, "kg"),
  52625. name: "Front (No Tail)",
  52626. image: {
  52627. source: "./media/characters/zarya/front-no-tail.svg",
  52628. extra: 741/735,
  52629. bottom: 44/785
  52630. },
  52631. extraAttributes: {
  52632. "tailLength": {
  52633. name: "Tail Length",
  52634. power: 1,
  52635. type: "length",
  52636. base: math.unit(180, "cm")
  52637. },
  52638. "pawLength": {
  52639. name: "Paw Length",
  52640. power: 1,
  52641. type: "length",
  52642. base: math.unit(31, "cm")
  52643. },
  52644. }
  52645. },
  52646. dressed: {
  52647. height: math.unit(1.75, "meters"),
  52648. weight: math.unit(100, "kg"),
  52649. name: "Dressed",
  52650. image: {
  52651. source: "./media/characters/zarya/dressed.svg",
  52652. extra: 683/672,
  52653. bottom: 79/762
  52654. },
  52655. extraAttributes: {
  52656. "tailLength": {
  52657. name: "Tail Length",
  52658. power: 1,
  52659. type: "length",
  52660. base: math.unit(180, "cm")
  52661. },
  52662. "pawLength": {
  52663. name: "Paw Length",
  52664. power: 1,
  52665. type: "length",
  52666. base: math.unit(31, "cm")
  52667. },
  52668. }
  52669. },
  52670. },
  52671. [
  52672. {
  52673. name: "Micro",
  52674. height: math.unit(5, "cm")
  52675. },
  52676. {
  52677. name: "Normal",
  52678. height: math.unit(1.75, "meters"),
  52679. default: true
  52680. },
  52681. {
  52682. name: "Macro",
  52683. height: math.unit(122, "meters")
  52684. },
  52685. ]
  52686. ))
  52687. characterMakers.push(() => makeCharacter(
  52688. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  52689. {
  52690. front: {
  52691. height: math.unit(7.5, "feet"),
  52692. name: "Front",
  52693. image: {
  52694. source: "./media/characters/sven-hatisson/front.svg",
  52695. extra: 917/857,
  52696. bottom: 42/959
  52697. }
  52698. },
  52699. back: {
  52700. height: math.unit(7.5, "feet"),
  52701. name: "Back",
  52702. image: {
  52703. source: "./media/characters/sven-hatisson/back.svg",
  52704. extra: 903/856,
  52705. bottom: 15/918
  52706. }
  52707. },
  52708. },
  52709. [
  52710. {
  52711. name: "Base Height",
  52712. height: math.unit(7.5, "feet")
  52713. },
  52714. {
  52715. name: "Usual Height",
  52716. height: math.unit(13.5, "feet"),
  52717. default: true
  52718. },
  52719. {
  52720. name: "Smaller Macro",
  52721. height: math.unit(85, "feet")
  52722. },
  52723. {
  52724. name: "Moderate Macro",
  52725. height: math.unit(320, "feet")
  52726. },
  52727. {
  52728. name: "Large Macro",
  52729. height: math.unit(1000, "feet")
  52730. },
  52731. {
  52732. name: "Largest Size",
  52733. height: math.unit(2, "miles")
  52734. },
  52735. ]
  52736. ))
  52737. characterMakers.push(() => makeCharacter(
  52738. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  52739. {
  52740. side: {
  52741. height: math.unit(1.8, "meters"),
  52742. weight: math.unit(275, "kg"),
  52743. name: "Side",
  52744. image: {
  52745. source: "./media/characters/terra/side.svg",
  52746. extra: 1273/1147,
  52747. bottom: 0/1273
  52748. }
  52749. },
  52750. },
  52751. [
  52752. {
  52753. name: "Normal",
  52754. height: math.unit(16.2, "meters"),
  52755. default: true
  52756. },
  52757. ]
  52758. ))
  52759. characterMakers.push(() => makeCharacter(
  52760. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  52761. {
  52762. borzoiFront: {
  52763. height: math.unit(6 + 9/12, "feet"),
  52764. name: "Front",
  52765. image: {
  52766. source: "./media/characters/rae/borzoi-front.svg",
  52767. extra: 1161/1098,
  52768. bottom: 31/1192
  52769. },
  52770. form: "borzoi",
  52771. default: true
  52772. },
  52773. werewolfFront: {
  52774. height: math.unit(8 + 7/12, "feet"),
  52775. name: "Front",
  52776. image: {
  52777. source: "./media/characters/rae/werewolf-front.svg",
  52778. extra: 1411/1334,
  52779. bottom: 127/1538
  52780. },
  52781. form: "werewolf",
  52782. default: true
  52783. },
  52784. },
  52785. [
  52786. {
  52787. name: "Normal",
  52788. height: math.unit(6 + 9/12, "feet"),
  52789. default: true,
  52790. form: "borzoi"
  52791. },
  52792. {
  52793. name: "Normal",
  52794. height: math.unit(8 + 7/12, "feet"),
  52795. default: true,
  52796. form: "werewolf"
  52797. },
  52798. ],
  52799. {
  52800. "borzoi": {
  52801. name: "Borzoi",
  52802. default: true
  52803. },
  52804. "werewolf": {
  52805. name: "Werewolf",
  52806. },
  52807. }
  52808. ))
  52809. characterMakers.push(() => makeCharacter(
  52810. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  52811. {
  52812. front: {
  52813. height: math.unit(8 + 7/12, "feet"),
  52814. weight: math.unit(482, "lb"),
  52815. name: "Front",
  52816. image: {
  52817. source: "./media/characters/kit/front.svg",
  52818. extra: 1247/1103,
  52819. bottom: 41/1288
  52820. }
  52821. },
  52822. back: {
  52823. height: math.unit(8 + 7/12, "feet"),
  52824. weight: math.unit(482, "lb"),
  52825. name: "Back",
  52826. image: {
  52827. source: "./media/characters/kit/back.svg",
  52828. extra: 1252/1123,
  52829. bottom: 21/1273
  52830. }
  52831. },
  52832. paw: {
  52833. height: math.unit(1.46, "feet"),
  52834. name: "Paw",
  52835. image: {
  52836. source: "./media/characters/kit/paw.svg"
  52837. }
  52838. },
  52839. },
  52840. [
  52841. {
  52842. name: "Normal",
  52843. height: math.unit(2.61, "meters"),
  52844. default: true
  52845. },
  52846. {
  52847. name: "\"Tall\"",
  52848. height: math.unit(8.21, "meters")
  52849. },
  52850. {
  52851. name: "Tall",
  52852. height: math.unit(19.6, "meters")
  52853. },
  52854. {
  52855. name: "Very Tall",
  52856. height: math.unit(57.91, "meters")
  52857. },
  52858. {
  52859. name: "Semi-Macro",
  52860. height: math.unit(138.64, "meters")
  52861. },
  52862. {
  52863. name: "Macro",
  52864. height: math.unit(831.99, "meters")
  52865. },
  52866. {
  52867. name: "EX-Macro",
  52868. height: math.unit(96451121, "meters")
  52869. },
  52870. {
  52871. name: "S1-Omnipotent",
  52872. height: math.unit(4.42074e+9, "meters")
  52873. },
  52874. {
  52875. name: "S2-Omnipotent",
  52876. height: math.unit(9.42074e+17, "meters")
  52877. },
  52878. {
  52879. name: "Omnipotent",
  52880. height: math.unit(4.23112e+24, "meters")
  52881. },
  52882. {
  52883. name: "Hypergod",
  52884. height: math.unit(5.05176e+27, "meters")
  52885. },
  52886. {
  52887. name: "Hypergod-EX",
  52888. height: math.unit(9.45532e+49, "meters")
  52889. },
  52890. {
  52891. name: "Hypergod-SP",
  52892. height: math.unit(9.45532e+195, "meters")
  52893. },
  52894. ]
  52895. ))
  52896. characterMakers.push(() => makeCharacter(
  52897. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  52898. {
  52899. side: {
  52900. height: math.unit(0.6, "meters"),
  52901. weight: math.unit(24, "kg"),
  52902. name: "Side",
  52903. image: {
  52904. source: "./media/characters/celeste/side.svg",
  52905. extra: 810/517,
  52906. bottom: 53/863
  52907. }
  52908. },
  52909. },
  52910. [
  52911. {
  52912. name: "Velociraptor",
  52913. height: math.unit(0.6, "meters"),
  52914. default: true
  52915. },
  52916. {
  52917. name: "Utahraptor",
  52918. height: math.unit(1.8, "meters")
  52919. },
  52920. {
  52921. name: "Gallimimus",
  52922. height: math.unit(4.0, "meters")
  52923. },
  52924. {
  52925. name: "Large",
  52926. height: math.unit(20, "meters")
  52927. },
  52928. {
  52929. name: "Planetary",
  52930. height: math.unit(50, "megameters")
  52931. },
  52932. {
  52933. name: "Stellar",
  52934. height: math.unit(1.5, "gigameters")
  52935. },
  52936. {
  52937. name: "Galactic",
  52938. height: math.unit(100, "exameters")
  52939. },
  52940. ]
  52941. ))
  52942. characterMakers.push(() => makeCharacter(
  52943. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  52944. {
  52945. front: {
  52946. height: math.unit(6, "feet"),
  52947. weight: math.unit(210, "lb"),
  52948. name: "Front",
  52949. image: {
  52950. source: "./media/characters/glacia/front.svg",
  52951. extra: 958/901,
  52952. bottom: 45/1003
  52953. }
  52954. },
  52955. },
  52956. [
  52957. {
  52958. name: "Macro",
  52959. height: math.unit(1000, "meters"),
  52960. default: true
  52961. },
  52962. ]
  52963. ))
  52964. characterMakers.push(() => makeCharacter(
  52965. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  52966. {
  52967. front: {
  52968. height: math.unit(4, "meters"),
  52969. name: "Front",
  52970. image: {
  52971. source: "./media/characters/giri/front.svg",
  52972. extra: 966/894,
  52973. bottom: 21/987
  52974. }
  52975. },
  52976. },
  52977. [
  52978. {
  52979. name: "Normal",
  52980. height: math.unit(4, "meters"),
  52981. default: true
  52982. },
  52983. ]
  52984. ))
  52985. characterMakers.push(() => makeCharacter(
  52986. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  52987. {
  52988. back: {
  52989. height: math.unit(4, "feet"),
  52990. weight: math.unit(37, "lb"),
  52991. name: "Back",
  52992. image: {
  52993. source: "./media/characters/tin/back.svg",
  52994. extra: 845/780,
  52995. bottom: 28/873
  52996. }
  52997. },
  52998. },
  52999. [
  53000. {
  53001. name: "Normal",
  53002. height: math.unit(4, "feet"),
  53003. default: true
  53004. },
  53005. ]
  53006. ))
  53007. characterMakers.push(() => makeCharacter(
  53008. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  53009. {
  53010. front: {
  53011. height: math.unit(25, "feet"),
  53012. name: "Front",
  53013. image: {
  53014. source: "./media/characters/cadenza-vivace/front.svg",
  53015. extra: 1842/1578,
  53016. bottom: 30/1872
  53017. }
  53018. },
  53019. },
  53020. [
  53021. {
  53022. name: "Macro",
  53023. height: math.unit(25, "feet"),
  53024. default: true
  53025. },
  53026. ]
  53027. ))
  53028. characterMakers.push(() => makeCharacter(
  53029. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  53030. {
  53031. front: {
  53032. height: math.unit(10, "feet"),
  53033. weight: math.unit(625, "kg"),
  53034. name: "Front",
  53035. image: {
  53036. source: "./media/characters/zain/front.svg",
  53037. extra: 1682/1498,
  53038. bottom: 223/1905
  53039. }
  53040. },
  53041. back: {
  53042. height: math.unit(10, "feet"),
  53043. weight: math.unit(625, "kg"),
  53044. name: "Back",
  53045. image: {
  53046. source: "./media/characters/zain/back.svg",
  53047. extra: 1814/1657,
  53048. bottom: 152/1966
  53049. }
  53050. },
  53051. head: {
  53052. height: math.unit(10, "feet"),
  53053. weight: math.unit(625, "kg"),
  53054. name: "Head",
  53055. image: {
  53056. source: "./media/characters/zain/head.svg",
  53057. extra: 1059/762,
  53058. bottom: 0/1059
  53059. }
  53060. },
  53061. },
  53062. [
  53063. {
  53064. name: "Normal",
  53065. height: math.unit(10, "feet"),
  53066. default: true
  53067. },
  53068. ]
  53069. ))
  53070. characterMakers.push(() => makeCharacter(
  53071. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  53072. {
  53073. front: {
  53074. height: math.unit(6 + 5/12, "feet"),
  53075. weight: math.unit(750, "lb"),
  53076. name: "Front",
  53077. image: {
  53078. source: "./media/characters/ruchex/front.svg",
  53079. extra: 877/820,
  53080. bottom: 17/894
  53081. },
  53082. extraAttributes: {
  53083. "width": {
  53084. name: "Width",
  53085. power: 1,
  53086. type: "length",
  53087. base: math.unit(4.757, "feet")
  53088. },
  53089. }
  53090. },
  53091. },
  53092. [
  53093. {
  53094. name: "Normal",
  53095. height: math.unit(6 + 5/12, "feet"),
  53096. default: true
  53097. },
  53098. ]
  53099. ))
  53100. characterMakers.push(() => makeCharacter(
  53101. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  53102. {
  53103. dressedFront: {
  53104. height: math.unit(191, "cm"),
  53105. weight: math.unit(80, "kg"),
  53106. name: "Front",
  53107. image: {
  53108. source: "./media/characters/buster/dressed-front.svg",
  53109. extra: 1022/973,
  53110. bottom: 69/1091
  53111. }
  53112. },
  53113. dressedBack: {
  53114. height: math.unit(191, "cm"),
  53115. weight: math.unit(80, "kg"),
  53116. name: "Back",
  53117. image: {
  53118. source: "./media/characters/buster/dressed-back.svg",
  53119. extra: 1018/970,
  53120. bottom: 55/1073
  53121. }
  53122. },
  53123. nudeFront: {
  53124. height: math.unit(191, "cm"),
  53125. weight: math.unit(80, "kg"),
  53126. name: "Front (Nude)",
  53127. image: {
  53128. source: "./media/characters/buster/nude-front.svg",
  53129. extra: 1022/973,
  53130. bottom: 69/1091
  53131. }
  53132. },
  53133. nudeBack: {
  53134. height: math.unit(191, "cm"),
  53135. weight: math.unit(80, "kg"),
  53136. name: "Back (Nude)",
  53137. image: {
  53138. source: "./media/characters/buster/nude-back.svg",
  53139. extra: 1018/970,
  53140. bottom: 55/1073
  53141. }
  53142. },
  53143. dick: {
  53144. height: math.unit(2.59, "feet"),
  53145. name: "Dick",
  53146. image: {
  53147. source: "./media/characters/buster/dick.svg"
  53148. }
  53149. },
  53150. ass: {
  53151. height: math.unit(1.2, "feet"),
  53152. name: "Ass",
  53153. image: {
  53154. source: "./media/characters/buster/ass.svg"
  53155. }
  53156. },
  53157. },
  53158. [
  53159. {
  53160. name: "Normal",
  53161. height: math.unit(191, "cm"),
  53162. default: true
  53163. },
  53164. ]
  53165. ))
  53166. characterMakers.push(() => makeCharacter(
  53167. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  53168. {
  53169. side: {
  53170. height: math.unit(8.1, "feet"),
  53171. weight: math.unit(3500, "lb"),
  53172. name: "Side",
  53173. image: {
  53174. source: "./media/characters/sonya/side.svg",
  53175. extra: 1730/1317,
  53176. bottom: 86/1816
  53177. }
  53178. },
  53179. },
  53180. [
  53181. {
  53182. name: "Normal",
  53183. height: math.unit(8.1, "feet"),
  53184. default: true
  53185. },
  53186. ]
  53187. ))
  53188. characterMakers.push(() => makeCharacter(
  53189. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  53190. {
  53191. front: {
  53192. height: math.unit(6, "feet"),
  53193. weight: math.unit(150, "lb"),
  53194. name: "Front",
  53195. image: {
  53196. source: "./media/characters/cadence-andrysiak/front.svg",
  53197. extra: 1164/1121,
  53198. bottom: 60/1224
  53199. }
  53200. },
  53201. back: {
  53202. height: math.unit(6, "feet"),
  53203. weight: math.unit(150, "lb"),
  53204. name: "Back",
  53205. image: {
  53206. source: "./media/characters/cadence-andrysiak/back.svg",
  53207. extra: 1200/1165,
  53208. bottom: 9/1209
  53209. }
  53210. },
  53211. dressed: {
  53212. height: math.unit(6, "feet"),
  53213. weight: math.unit(150, "lb"),
  53214. name: "Dressed",
  53215. image: {
  53216. source: "./media/characters/cadence-andrysiak/dressed.svg",
  53217. extra: 1164/1121,
  53218. bottom: 60/1224
  53219. }
  53220. },
  53221. },
  53222. [
  53223. {
  53224. name: "Micro",
  53225. height: math.unit(1, "mm")
  53226. },
  53227. {
  53228. name: "Normal",
  53229. height: math.unit(6, "feet"),
  53230. default: true
  53231. },
  53232. ]
  53233. ))
  53234. characterMakers.push(() => makeCharacter(
  53235. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  53236. {
  53237. front: {
  53238. height: math.unit(60, "inches"),
  53239. weight: math.unit(16, "lb"),
  53240. preyCapacity: math.unit(80, "liters"),
  53241. name: "Front",
  53242. image: {
  53243. source: "./media/characters/penny-lynx/front.svg",
  53244. extra: 1959/1769,
  53245. bottom: 49/2008
  53246. }
  53247. },
  53248. },
  53249. [
  53250. {
  53251. name: "Nokia",
  53252. height: math.unit(2, "inches")
  53253. },
  53254. {
  53255. name: "Desktop",
  53256. height: math.unit(24, "inches")
  53257. },
  53258. {
  53259. name: "TV",
  53260. height: math.unit(60, "inches")
  53261. },
  53262. {
  53263. name: "Jumbotron",
  53264. height: math.unit(12, "feet")
  53265. },
  53266. {
  53267. name: "Billboard",
  53268. height: math.unit(48, "feet"),
  53269. default: true
  53270. },
  53271. {
  53272. name: "IMAX",
  53273. height: math.unit(96, "feet")
  53274. },
  53275. {
  53276. name: "SINGULARITY",
  53277. height: math.unit(864938, "miles")
  53278. },
  53279. ]
  53280. ))
  53281. characterMakers.push(() => makeCharacter(
  53282. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  53283. {
  53284. front: {
  53285. height: math.unit(5 + 4/12, "feet"),
  53286. weight: math.unit(230, "lb"),
  53287. name: "Front",
  53288. image: {
  53289. source: "./media/characters/sukebe/front.svg",
  53290. extra: 2130/2038,
  53291. bottom: 90/2220
  53292. }
  53293. },
  53294. back: {
  53295. height: math.unit(3.48, "feet"),
  53296. weight: math.unit(230, "lb"),
  53297. name: "Back",
  53298. image: {
  53299. source: "./media/characters/sukebe/back.svg",
  53300. extra: 1670/1604,
  53301. bottom: 0/1670
  53302. }
  53303. },
  53304. },
  53305. [
  53306. {
  53307. name: "Normal",
  53308. height: math.unit(5 + 4/12, "feet"),
  53309. default: true
  53310. },
  53311. ]
  53312. ))
  53313. characterMakers.push(() => makeCharacter(
  53314. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  53315. {
  53316. front: {
  53317. height: math.unit(6, "feet"),
  53318. name: "Front",
  53319. image: {
  53320. source: "./media/characters/nylla/front.svg",
  53321. extra: 1868/1699,
  53322. bottom: 97/1965
  53323. }
  53324. },
  53325. back: {
  53326. height: math.unit(6, "feet"),
  53327. name: "Back",
  53328. image: {
  53329. source: "./media/characters/nylla/back.svg",
  53330. extra: 1889/1712,
  53331. bottom: 93/1982
  53332. }
  53333. },
  53334. frontNsfw: {
  53335. height: math.unit(6, "feet"),
  53336. name: "Front (NSFW)",
  53337. image: {
  53338. source: "./media/characters/nylla/front-nsfw.svg",
  53339. extra: 1868/1699,
  53340. bottom: 97/1965
  53341. },
  53342. extraAttributes: {
  53343. "dickLength": {
  53344. name: "Dick Length",
  53345. power: 1,
  53346. type: "length",
  53347. base: math.unit(1.4, "feet")
  53348. },
  53349. "cumVolume": {
  53350. name: "Cum Volume",
  53351. power: 3,
  53352. type: "volume",
  53353. base: math.unit(100, "mL")
  53354. },
  53355. }
  53356. },
  53357. backNsfw: {
  53358. height: math.unit(6, "feet"),
  53359. name: "Back (NSFW)",
  53360. image: {
  53361. source: "./media/characters/nylla/back-nsfw.svg",
  53362. extra: 1889/1712,
  53363. bottom: 93/1982
  53364. }
  53365. },
  53366. maw: {
  53367. height: math.unit(2.10, "feet"),
  53368. name: "Maw",
  53369. image: {
  53370. source: "./media/characters/nylla/maw.svg"
  53371. }
  53372. },
  53373. paws: {
  53374. height: math.unit(2.06, "feet"),
  53375. name: "Paws",
  53376. image: {
  53377. source: "./media/characters/nylla/paws.svg"
  53378. }
  53379. },
  53380. muzzle: {
  53381. height: math.unit(0.61, "feet"),
  53382. name: "Muzzle",
  53383. image: {
  53384. source: "./media/characters/nylla/muzzle.svg"
  53385. }
  53386. },
  53387. sheath: {
  53388. height: math.unit(1.305, "feet"),
  53389. name: "Sheath",
  53390. image: {
  53391. source: "./media/characters/nylla/sheath.svg"
  53392. }
  53393. },
  53394. },
  53395. [
  53396. {
  53397. name: "Micro",
  53398. height: math.unit(7.5, "inches")
  53399. },
  53400. {
  53401. name: "Normal",
  53402. height: math.unit(7, "feet"),
  53403. default: true
  53404. },
  53405. {
  53406. name: "Macro",
  53407. height: math.unit(60, "feet")
  53408. },
  53409. {
  53410. name: "Mega",
  53411. height: math.unit(200, "feet")
  53412. },
  53413. ]
  53414. ))
  53415. characterMakers.push(() => makeCharacter(
  53416. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  53417. {
  53418. front: {
  53419. height: math.unit(10, "feet"),
  53420. weight: math.unit(2300, "lb"),
  53421. name: "Front",
  53422. image: {
  53423. source: "./media/characters/hunt3r/front.svg",
  53424. extra: 1909/1742,
  53425. bottom: 46/1955
  53426. }
  53427. },
  53428. },
  53429. [
  53430. {
  53431. name: "Normal",
  53432. height: math.unit(10, "feet"),
  53433. default: true
  53434. },
  53435. ]
  53436. ))
  53437. characterMakers.push(() => makeCharacter(
  53438. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  53439. {
  53440. dressed: {
  53441. height: math.unit(11, "feet"),
  53442. weight: math.unit(18500, "lb"),
  53443. preyCapacity: math.unit(9, "people"),
  53444. name: "Dressed",
  53445. image: {
  53446. source: "./media/characters/cylphis/dressed.svg",
  53447. extra: 1028/1003,
  53448. bottom: 75/1103
  53449. },
  53450. },
  53451. undressed: {
  53452. height: math.unit(11, "feet"),
  53453. weight: math.unit(18500, "lb"),
  53454. preyCapacity: math.unit(9, "people"),
  53455. name: "Undressed",
  53456. image: {
  53457. source: "./media/characters/cylphis/undressed.svg",
  53458. extra: 1028/1003,
  53459. bottom: 75/1103
  53460. }
  53461. },
  53462. full: {
  53463. height: math.unit(11, "feet"),
  53464. weight: math.unit(18500 + 150*9, "lb"),
  53465. preyCapacity: math.unit(9, "people"),
  53466. name: "Full",
  53467. image: {
  53468. source: "./media/characters/cylphis/full.svg",
  53469. extra: 1028/1003,
  53470. bottom: 75/1103
  53471. }
  53472. },
  53473. },
  53474. [
  53475. {
  53476. name: "Small",
  53477. height: math.unit(8, "feet")
  53478. },
  53479. {
  53480. name: "Normal",
  53481. height: math.unit(11, "feet"),
  53482. default: true
  53483. },
  53484. ]
  53485. ))
  53486. characterMakers.push(() => makeCharacter(
  53487. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  53488. {
  53489. front: {
  53490. height: math.unit(2 + 7/12, "feet"),
  53491. name: "Front",
  53492. image: {
  53493. source: "./media/characters/orishan/front.svg",
  53494. extra: 1058/1023,
  53495. bottom: 23/1081
  53496. }
  53497. },
  53498. back: {
  53499. height: math.unit(2 + 7/12, "feet"),
  53500. name: "Back",
  53501. image: {
  53502. source: "./media/characters/orishan/back.svg",
  53503. extra: 1058/1023,
  53504. bottom: 23/1081
  53505. }
  53506. },
  53507. },
  53508. [
  53509. {
  53510. name: "Micro",
  53511. height: math.unit(2, "cm")
  53512. },
  53513. {
  53514. name: "Normal",
  53515. height: math.unit(2 + 7/12, "feet"),
  53516. default: true
  53517. },
  53518. ]
  53519. ))
  53520. characterMakers.push(() => makeCharacter(
  53521. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  53522. {
  53523. front: {
  53524. height: math.unit(3, "meters"),
  53525. weight: math.unit(508, "kg"),
  53526. name: "Front",
  53527. image: {
  53528. source: "./media/characters/seranis/front.svg",
  53529. extra: 1478/1454,
  53530. bottom: 41/1519
  53531. }
  53532. },
  53533. },
  53534. [
  53535. {
  53536. name: "Normal",
  53537. height: math.unit(3, "meters"),
  53538. default: true
  53539. },
  53540. {
  53541. name: "Macro",
  53542. height: math.unit(108, "meters")
  53543. },
  53544. {
  53545. name: "Megamacro",
  53546. height: math.unit(1250, "meters")
  53547. },
  53548. ]
  53549. ))
  53550. characterMakers.push(() => makeCharacter(
  53551. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  53552. {
  53553. undressed: {
  53554. height: math.unit(5 + 3/12, "feet"),
  53555. name: "Undressed",
  53556. image: {
  53557. source: "./media/characters/ankou/undressed.svg",
  53558. extra: 1301/1213,
  53559. bottom: 87/1388
  53560. }
  53561. },
  53562. dressed: {
  53563. height: math.unit(5 + 3/12, "feet"),
  53564. name: "Dressed",
  53565. image: {
  53566. source: "./media/characters/ankou/dressed.svg",
  53567. extra: 1301/1213,
  53568. bottom: 87/1388
  53569. }
  53570. },
  53571. head: {
  53572. height: math.unit(1.61, "feet"),
  53573. name: "Head",
  53574. image: {
  53575. source: "./media/characters/ankou/head.svg"
  53576. }
  53577. },
  53578. },
  53579. [
  53580. {
  53581. name: "Normal",
  53582. height: math.unit(5 + 3/12, "feet"),
  53583. default: true
  53584. },
  53585. ]
  53586. ))
  53587. characterMakers.push(() => makeCharacter(
  53588. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  53589. {
  53590. side: {
  53591. height: math.unit(6 + 3/12, "feet"),
  53592. weight: math.unit(200, "kg"),
  53593. name: "Side",
  53594. image: {
  53595. source: "./media/characters/juniper-skunktaur/side.svg",
  53596. extra: 1574/1229,
  53597. bottom: 38/1612
  53598. }
  53599. },
  53600. front: {
  53601. height: math.unit(6 + 3/12, "feet"),
  53602. weight: math.unit(200, "kg"),
  53603. name: "Front",
  53604. image: {
  53605. source: "./media/characters/juniper-skunktaur/front.svg",
  53606. extra: 1337/1278,
  53607. bottom: 22/1359
  53608. }
  53609. },
  53610. back: {
  53611. height: math.unit(6 + 3/12, "feet"),
  53612. weight: math.unit(200, "kg"),
  53613. name: "Back",
  53614. image: {
  53615. source: "./media/characters/juniper-skunktaur/back.svg",
  53616. extra: 1618/1273,
  53617. bottom: 13/1631
  53618. }
  53619. },
  53620. top: {
  53621. height: math.unit(2.62, "feet"),
  53622. weight: math.unit(200, "kg"),
  53623. name: "Top",
  53624. image: {
  53625. source: "./media/characters/juniper-skunktaur/top.svg"
  53626. }
  53627. },
  53628. },
  53629. [
  53630. {
  53631. name: "Normal",
  53632. height: math.unit(6 + 3/12, "feet"),
  53633. default: true
  53634. },
  53635. ]
  53636. ))
  53637. characterMakers.push(() => makeCharacter(
  53638. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  53639. {
  53640. front: {
  53641. height: math.unit(20.5, "feet"),
  53642. name: "Front",
  53643. image: {
  53644. source: "./media/characters/rei/front.svg",
  53645. extra: 1349/1195,
  53646. bottom: 31/1380
  53647. }
  53648. },
  53649. back: {
  53650. height: math.unit(20.5, "feet"),
  53651. name: "Back",
  53652. image: {
  53653. source: "./media/characters/rei/back.svg",
  53654. extra: 1358/1204,
  53655. bottom: 22/1380
  53656. }
  53657. },
  53658. pawsDigi: {
  53659. height: math.unit(3.45, "feet"),
  53660. name: "Paws (Digi)",
  53661. image: {
  53662. source: "./media/characters/rei/paws-digi.svg"
  53663. }
  53664. },
  53665. pawsPlanti: {
  53666. height: math.unit(3.45, "feet"),
  53667. name: "Paws (Planti)",
  53668. image: {
  53669. source: "./media/characters/rei/paws-planti.svg"
  53670. }
  53671. },
  53672. },
  53673. [
  53674. {
  53675. name: "Normal",
  53676. height: math.unit(20.5, "feet"),
  53677. default: true
  53678. },
  53679. ]
  53680. ))
  53681. characterMakers.push(() => makeCharacter(
  53682. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  53683. {
  53684. front: {
  53685. height: math.unit(5 + 11/12, "feet"),
  53686. name: "Front",
  53687. image: {
  53688. source: "./media/characters/carina/front.svg",
  53689. extra: 1720/1449,
  53690. bottom: 14/1734
  53691. }
  53692. },
  53693. back: {
  53694. height: math.unit(5 + 11/12, "feet"),
  53695. name: "Back",
  53696. image: {
  53697. source: "./media/characters/carina/back.svg",
  53698. extra: 1493/1445,
  53699. bottom: 17/1510
  53700. }
  53701. },
  53702. paw: {
  53703. height: math.unit(0.92, "feet"),
  53704. name: "Paw",
  53705. image: {
  53706. source: "./media/characters/carina/paw.svg"
  53707. }
  53708. },
  53709. },
  53710. [
  53711. {
  53712. name: "Normal",
  53713. height: math.unit(5 + 11/12, "feet"),
  53714. default: true
  53715. },
  53716. ]
  53717. ))
  53718. characterMakers.push(() => makeCharacter(
  53719. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  53720. {
  53721. normal_front: {
  53722. height: math.unit(4.88, "meters"),
  53723. name: "Front",
  53724. image: {
  53725. source: "./media/characters/maya/normal-front.svg",
  53726. extra: 1222/1145,
  53727. bottom: 57/1279
  53728. },
  53729. form: "normal",
  53730. default: true
  53731. },
  53732. monstrous_front: {
  53733. height: math.unit(10, "meters"),
  53734. name: "Front",
  53735. image: {
  53736. source: "./media/characters/maya/monstrous-front.svg",
  53737. extra: 1523/1109,
  53738. bottom: 113/1636
  53739. },
  53740. form: "monstrous",
  53741. extraAttributes: {
  53742. "swallowSize": {
  53743. name: "Tailmaw Bite Size",
  53744. power: 3,
  53745. type: "volume",
  53746. base: math.unit(43000, "liters")
  53747. },
  53748. }
  53749. },
  53750. taur_front: {
  53751. height: math.unit(10, "meters"),
  53752. name: "Front",
  53753. image: {
  53754. source: "./media/characters/maya/taur-front.svg",
  53755. extra: 743/506,
  53756. bottom: 101/844
  53757. },
  53758. form: "taur",
  53759. },
  53760. },
  53761. [
  53762. {
  53763. name: "Normal",
  53764. height: math.unit(4.88, "meters"),
  53765. default: true,
  53766. form: "normal"
  53767. },
  53768. {
  53769. name: "Macro",
  53770. height: math.unit(38.1, "meters"),
  53771. form: "normal"
  53772. },
  53773. {
  53774. name: "Macro+",
  53775. height: math.unit(152.4, "meters"),
  53776. form: "normal"
  53777. },
  53778. {
  53779. name: "Macro++",
  53780. height: math.unit(16.09, "km"),
  53781. form: "normal"
  53782. },
  53783. {
  53784. name: "Mega-macro",
  53785. height: math.unit(700, "megameters"),
  53786. form: "normal"
  53787. },
  53788. {
  53789. name: "Satiated",
  53790. height: math.unit(10, "meters"),
  53791. default: true,
  53792. form: "monstrous"
  53793. },
  53794. {
  53795. name: "Hungry",
  53796. height: math.unit(75, "meters"),
  53797. form: "monstrous"
  53798. },
  53799. {
  53800. name: "Ravenous",
  53801. height: math.unit(500, "meters"),
  53802. form: "monstrous"
  53803. },
  53804. {
  53805. name: "\"Normal\"",
  53806. height: math.unit(10, "meters"),
  53807. form: "taur"
  53808. },
  53809. {
  53810. name: "Macro",
  53811. height: math.unit(50, "meters"),
  53812. form: "taur"
  53813. },
  53814. ],
  53815. {
  53816. "normal": {
  53817. name: "Normal",
  53818. default: true
  53819. },
  53820. "monstrous": {
  53821. name: "Monstrous",
  53822. },
  53823. "taur": {
  53824. name: "Taur",
  53825. },
  53826. }
  53827. ))
  53828. characterMakers.push(() => makeCharacter(
  53829. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  53830. {
  53831. front: {
  53832. height: math.unit(6 + 2/12, "feet"),
  53833. weight: math.unit(500, "lb"),
  53834. preyCapacity: math.unit(4, "people"),
  53835. name: "Front",
  53836. image: {
  53837. source: "./media/characters/yepir/front.svg"
  53838. }
  53839. },
  53840. side: {
  53841. height: math.unit(6 + 2/12, "feet"),
  53842. weight: math.unit(500, "lb"),
  53843. preyCapacity: math.unit(4, "people"),
  53844. name: "Side",
  53845. image: {
  53846. source: "./media/characters/yepir/side.svg"
  53847. }
  53848. },
  53849. paw: {
  53850. height: math.unit(1.05, "feet"),
  53851. name: "Paw",
  53852. image: {
  53853. source: "./media/characters/yepir/paw.svg"
  53854. }
  53855. },
  53856. },
  53857. [
  53858. {
  53859. name: "Normal",
  53860. height: math.unit(6 + 2/12, "feet"),
  53861. default: true
  53862. },
  53863. ]
  53864. ))
  53865. characterMakers.push(() => makeCharacter(
  53866. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  53867. {
  53868. front: {
  53869. height: math.unit(5 + 4/12, "feet"),
  53870. name: "Front",
  53871. image: {
  53872. source: "./media/characters/russec/front.svg",
  53873. extra: 1926/1626,
  53874. bottom: 72/1998
  53875. }
  53876. },
  53877. back: {
  53878. height: math.unit(5 + 4/12, "feet"),
  53879. name: "Back",
  53880. image: {
  53881. source: "./media/characters/russec/back.svg",
  53882. extra: 1910/1591,
  53883. bottom: 48/1958
  53884. }
  53885. },
  53886. },
  53887. [
  53888. {
  53889. name: "Small",
  53890. height: math.unit(5 + 4/12, "feet")
  53891. },
  53892. {
  53893. name: "Normal",
  53894. height: math.unit(72, "feet"),
  53895. default: true
  53896. },
  53897. ]
  53898. ))
  53899. characterMakers.push(() => makeCharacter(
  53900. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  53901. {
  53902. side: {
  53903. height: math.unit(12, "feet"),
  53904. name: "Side",
  53905. image: {
  53906. source: "./media/characters/cianus/side.svg",
  53907. extra: 808/526,
  53908. bottom: 61/869
  53909. }
  53910. },
  53911. },
  53912. [
  53913. {
  53914. name: "Normal",
  53915. height: math.unit(12, "feet"),
  53916. default: true
  53917. },
  53918. ]
  53919. ))
  53920. characterMakers.push(() => makeCharacter(
  53921. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  53922. {
  53923. front: {
  53924. height: math.unit(9 + 6/12, "feet"),
  53925. weight: math.unit(300, "lb"),
  53926. name: "Front",
  53927. image: {
  53928. source: "./media/characters/ahab/front.svg",
  53929. extra: 1897/1868,
  53930. bottom: 121/2018
  53931. }
  53932. },
  53933. frontNsfw: {
  53934. height: math.unit(9 + 6/12, "feet"),
  53935. weight: math.unit(300, "lb"),
  53936. name: "Front-nsfw",
  53937. image: {
  53938. source: "./media/characters/ahab/front-nsfw.svg",
  53939. extra: 1897/1868,
  53940. bottom: 121/2018
  53941. }
  53942. },
  53943. },
  53944. [
  53945. {
  53946. name: "Normal",
  53947. height: math.unit(9 + 6/12, "feet")
  53948. },
  53949. {
  53950. name: "Macro",
  53951. height: math.unit(657, "feet"),
  53952. default: true
  53953. },
  53954. ]
  53955. ))
  53956. characterMakers.push(() => makeCharacter(
  53957. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  53958. {
  53959. front: {
  53960. height: math.unit(2.69, "meters"),
  53961. weight: math.unit(132, "kg"),
  53962. name: "Front",
  53963. image: {
  53964. source: "./media/characters/aarkus/front.svg",
  53965. extra: 1400/1231,
  53966. bottom: 34/1434
  53967. }
  53968. },
  53969. back: {
  53970. height: math.unit(2.69, "meters"),
  53971. weight: math.unit(132, "kg"),
  53972. name: "Back",
  53973. image: {
  53974. source: "./media/characters/aarkus/back.svg",
  53975. extra: 1381/1218,
  53976. bottom: 30/1411
  53977. }
  53978. },
  53979. frontNsfw: {
  53980. height: math.unit(2.69, "meters"),
  53981. weight: math.unit(132, "kg"),
  53982. name: "Front (NSFW)",
  53983. image: {
  53984. source: "./media/characters/aarkus/front-nsfw.svg",
  53985. extra: 1400/1231,
  53986. bottom: 34/1434
  53987. }
  53988. },
  53989. foot: {
  53990. height: math.unit(1.45, "feet"),
  53991. name: "Foot",
  53992. image: {
  53993. source: "./media/characters/aarkus/foot.svg"
  53994. }
  53995. },
  53996. head: {
  53997. height: math.unit(2.85, "feet"),
  53998. name: "Head",
  53999. image: {
  54000. source: "./media/characters/aarkus/head.svg"
  54001. }
  54002. },
  54003. headAlt: {
  54004. height: math.unit(3.07, "feet"),
  54005. name: "Head (Alt)",
  54006. image: {
  54007. source: "./media/characters/aarkus/head-alt.svg"
  54008. }
  54009. },
  54010. mouth: {
  54011. height: math.unit(1.25, "feet"),
  54012. name: "Mouth",
  54013. image: {
  54014. source: "./media/characters/aarkus/mouth.svg"
  54015. }
  54016. },
  54017. dick: {
  54018. height: math.unit(1.77, "feet"),
  54019. name: "Dick",
  54020. image: {
  54021. source: "./media/characters/aarkus/dick.svg"
  54022. }
  54023. },
  54024. },
  54025. [
  54026. {
  54027. name: "Normal",
  54028. height: math.unit(2.69, "meters"),
  54029. default: true
  54030. },
  54031. {
  54032. name: "Macro",
  54033. height: math.unit(269, "meters")
  54034. },
  54035. {
  54036. name: "Macro+",
  54037. height: math.unit(672.5, "meters")
  54038. },
  54039. {
  54040. name: "Megamacro",
  54041. height: math.unit(2.017, "km")
  54042. },
  54043. ]
  54044. ))
  54045. characterMakers.push(() => makeCharacter(
  54046. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  54047. {
  54048. front: {
  54049. height: math.unit(23.47, "cm"),
  54050. weight: math.unit(600, "grams"),
  54051. name: "Front",
  54052. image: {
  54053. source: "./media/characters/diode/front.svg",
  54054. extra: 1778/1396,
  54055. bottom: 95/1873
  54056. }
  54057. },
  54058. side: {
  54059. height: math.unit(23.47, "cm"),
  54060. weight: math.unit(600, "grams"),
  54061. name: "Side",
  54062. image: {
  54063. source: "./media/characters/diode/side.svg",
  54064. extra: 1831/1404,
  54065. bottom: 86/1917
  54066. }
  54067. },
  54068. wings: {
  54069. height: math.unit(0.683, "feet"),
  54070. name: "Wings",
  54071. image: {
  54072. source: "./media/characters/diode/wings.svg"
  54073. }
  54074. },
  54075. },
  54076. [
  54077. {
  54078. name: "Normal",
  54079. height: math.unit(23.47, "cm"),
  54080. default: true
  54081. },
  54082. ]
  54083. ))
  54084. characterMakers.push(() => makeCharacter(
  54085. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  54086. {
  54087. front: {
  54088. height: math.unit(6 + 3/12, "feet"),
  54089. weight: math.unit(250, "lb"),
  54090. name: "Front",
  54091. image: {
  54092. source: "./media/characters/reika/front.svg",
  54093. extra: 1120/1078,
  54094. bottom: 86/1206
  54095. }
  54096. },
  54097. },
  54098. [
  54099. {
  54100. name: "Normal",
  54101. height: math.unit(6 + 3/12, "feet"),
  54102. default: true
  54103. },
  54104. ]
  54105. ))
  54106. characterMakers.push(() => makeCharacter(
  54107. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  54108. {
  54109. front: {
  54110. height: math.unit(16 + 8/12, "feet"),
  54111. weight: math.unit(9000, "lb"),
  54112. name: "Front",
  54113. image: {
  54114. source: "./media/characters/lokuto-takama/front.svg",
  54115. extra: 1774/1632,
  54116. bottom: 147/1921
  54117. },
  54118. extraAttributes: {
  54119. "bustWidth": {
  54120. name: "Bust Width",
  54121. power: 1,
  54122. type: "length",
  54123. base: math.unit(2.4, "meters")
  54124. },
  54125. "breastWeight": {
  54126. name: "Breast Weight",
  54127. power: 3,
  54128. type: "mass",
  54129. base: math.unit(1000, "kg")
  54130. },
  54131. }
  54132. },
  54133. },
  54134. [
  54135. {
  54136. name: "Normal",
  54137. height: math.unit(16 + 8/12, "feet"),
  54138. default: true
  54139. },
  54140. ]
  54141. ))
  54142. characterMakers.push(() => makeCharacter(
  54143. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  54144. {
  54145. front: {
  54146. height: math.unit(10, "cm"),
  54147. weight: math.unit(850, "grams"),
  54148. name: "Front",
  54149. image: {
  54150. source: "./media/characters/owak-bone/front.svg",
  54151. extra: 1965/1801,
  54152. bottom: 31/1996
  54153. }
  54154. },
  54155. },
  54156. [
  54157. {
  54158. name: "Normal",
  54159. height: math.unit(10, "cm"),
  54160. default: true
  54161. },
  54162. ]
  54163. ))
  54164. characterMakers.push(() => makeCharacter(
  54165. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  54166. {
  54167. front: {
  54168. height: math.unit(2 + 6/12, "feet"),
  54169. weight: math.unit(9, "lb"),
  54170. name: "Front",
  54171. image: {
  54172. source: "./media/characters/muffin/front.svg",
  54173. extra: 1220/1195,
  54174. bottom: 84/1304
  54175. }
  54176. },
  54177. },
  54178. [
  54179. {
  54180. name: "Normal",
  54181. height: math.unit(2 + 6/12, "feet"),
  54182. default: true
  54183. },
  54184. ]
  54185. ))
  54186. characterMakers.push(() => makeCharacter(
  54187. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  54188. {
  54189. front: {
  54190. height: math.unit(7, "feet"),
  54191. name: "Front",
  54192. image: {
  54193. source: "./media/characters/chimera/front.svg",
  54194. extra: 1752/1614,
  54195. bottom: 68/1820
  54196. }
  54197. },
  54198. },
  54199. [
  54200. {
  54201. name: "Normal",
  54202. height: math.unit(7, "feet")
  54203. },
  54204. {
  54205. name: "Gigamacro",
  54206. height: math.unit(2.9, "gigameters"),
  54207. default: true
  54208. },
  54209. {
  54210. name: "Universal",
  54211. height: math.unit(1.56e26, "yottameters")
  54212. },
  54213. ]
  54214. ))
  54215. characterMakers.push(() => makeCharacter(
  54216. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  54217. {
  54218. front: {
  54219. height: math.unit(3, "feet"),
  54220. weight: math.unit(20, "lb"),
  54221. name: "Front",
  54222. image: {
  54223. source: "./media/characters/kit-fennec-fox/front.svg",
  54224. extra: 1027/932,
  54225. bottom: 16/1043
  54226. }
  54227. },
  54228. back: {
  54229. height: math.unit(3, "feet"),
  54230. weight: math.unit(20, "lb"),
  54231. name: "Back",
  54232. image: {
  54233. source: "./media/characters/kit-fennec-fox/back.svg",
  54234. extra: 1027/932,
  54235. bottom: 16/1043
  54236. }
  54237. },
  54238. },
  54239. [
  54240. {
  54241. name: "Normal",
  54242. height: math.unit(3, "feet"),
  54243. default: true
  54244. },
  54245. ]
  54246. ))
  54247. characterMakers.push(() => makeCharacter(
  54248. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  54249. {
  54250. front: {
  54251. height: math.unit(167, "cm"),
  54252. name: "Front",
  54253. image: {
  54254. source: "./media/characters/blue-otter/front.svg",
  54255. extra: 1951/1920,
  54256. bottom: 31/1982
  54257. }
  54258. },
  54259. },
  54260. [
  54261. {
  54262. name: "Otter-Sized",
  54263. height: math.unit(100, "cm")
  54264. },
  54265. {
  54266. name: "Normal",
  54267. height: math.unit(167, "cm"),
  54268. default: true
  54269. },
  54270. ]
  54271. ))
  54272. characterMakers.push(() => makeCharacter(
  54273. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  54274. {
  54275. front: {
  54276. height: math.unit(4 + 4/12, "feet"),
  54277. name: "Front",
  54278. image: {
  54279. source: "./media/characters/maverick-leopard-gecko/front.svg",
  54280. extra: 1072/1067,
  54281. bottom: 117/1189
  54282. }
  54283. },
  54284. back: {
  54285. height: math.unit(4 + 4/12, "feet"),
  54286. name: "Back",
  54287. image: {
  54288. source: "./media/characters/maverick-leopard-gecko/back.svg",
  54289. extra: 1135/1129,
  54290. bottom: 57/1192
  54291. }
  54292. },
  54293. head: {
  54294. height: math.unit(1.77, "feet"),
  54295. name: "Head",
  54296. image: {
  54297. source: "./media/characters/maverick-leopard-gecko/head.svg"
  54298. }
  54299. },
  54300. },
  54301. [
  54302. {
  54303. name: "Normal",
  54304. height: math.unit(4 + 4/12, "feet"),
  54305. default: true
  54306. },
  54307. ]
  54308. ))
  54309. characterMakers.push(() => makeCharacter(
  54310. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  54311. {
  54312. front: {
  54313. height: math.unit(2, "inches"),
  54314. name: "Front",
  54315. image: {
  54316. source: "./media/characters/carley-hartford/front.svg",
  54317. extra: 1035/988,
  54318. bottom: 23/1058
  54319. }
  54320. },
  54321. back: {
  54322. height: math.unit(2, "inches"),
  54323. name: "Back",
  54324. image: {
  54325. source: "./media/characters/carley-hartford/back.svg",
  54326. extra: 1035/988,
  54327. bottom: 23/1058
  54328. }
  54329. },
  54330. dressed: {
  54331. height: math.unit(2, "inches"),
  54332. name: "Dressed",
  54333. image: {
  54334. source: "./media/characters/carley-hartford/dressed.svg",
  54335. extra: 651/620,
  54336. bottom: 0/651
  54337. }
  54338. },
  54339. },
  54340. [
  54341. {
  54342. name: "Micro",
  54343. height: math.unit(2, "inches"),
  54344. default: true
  54345. },
  54346. {
  54347. name: "Macro",
  54348. height: math.unit(6 + 3/12, "feet")
  54349. },
  54350. ]
  54351. ))
  54352. characterMakers.push(() => makeCharacter(
  54353. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  54354. {
  54355. front: {
  54356. height: math.unit(2 + 3/12, "feet"),
  54357. weight: math.unit(15 + 7/16, "lb"),
  54358. name: "Front",
  54359. image: {
  54360. source: "./media/characters/duke/front.svg",
  54361. extra: 910/815,
  54362. bottom: 30/940
  54363. }
  54364. },
  54365. },
  54366. [
  54367. {
  54368. name: "Normal",
  54369. height: math.unit(2 + 3/12, "feet"),
  54370. default: true
  54371. },
  54372. ]
  54373. ))
  54374. characterMakers.push(() => makeCharacter(
  54375. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  54376. {
  54377. front: {
  54378. height: math.unit(5 + 4/12, "feet"),
  54379. weight: math.unit(156, "lb"),
  54380. name: "Front",
  54381. image: {
  54382. source: "./media/characters/dein/front.svg",
  54383. extra: 855/815,
  54384. bottom: 48/903
  54385. }
  54386. },
  54387. side: {
  54388. height: math.unit(5 + 4/12, "feet"),
  54389. weight: math.unit(156, "lb"),
  54390. name: "side",
  54391. image: {
  54392. source: "./media/characters/dein/side.svg",
  54393. extra: 846/803,
  54394. bottom: 25/871
  54395. }
  54396. },
  54397. maw: {
  54398. height: math.unit(1.45, "feet"),
  54399. name: "Maw",
  54400. image: {
  54401. source: "./media/characters/dein/maw.svg"
  54402. }
  54403. },
  54404. },
  54405. [
  54406. {
  54407. name: "Ferret Sized",
  54408. height: math.unit(2 + 5/12, "feet")
  54409. },
  54410. {
  54411. name: "Normal",
  54412. height: math.unit(5 + 4/12, "feet"),
  54413. default: true
  54414. },
  54415. ]
  54416. ))
  54417. characterMakers.push(() => makeCharacter(
  54418. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  54419. {
  54420. front: {
  54421. height: math.unit(84 + 8/12, "feet"),
  54422. weight: math.unit(942180, "lb"),
  54423. name: "Front",
  54424. image: {
  54425. source: "./media/characters/daurine-arima/front.svg",
  54426. extra: 1989/1782,
  54427. bottom: 37/2026
  54428. }
  54429. },
  54430. side: {
  54431. height: math.unit(84 + 8/12, "feet"),
  54432. weight: math.unit(942180, "lb"),
  54433. name: "Side",
  54434. image: {
  54435. source: "./media/characters/daurine-arima/side.svg",
  54436. extra: 1997/1790,
  54437. bottom: 21/2018
  54438. }
  54439. },
  54440. back: {
  54441. height: math.unit(84 + 8/12, "feet"),
  54442. weight: math.unit(942180, "lb"),
  54443. name: "Back",
  54444. image: {
  54445. source: "./media/characters/daurine-arima/back.svg",
  54446. extra: 1992/1800,
  54447. bottom: 12/2004
  54448. }
  54449. },
  54450. head: {
  54451. height: math.unit(15.5, "feet"),
  54452. name: "Head",
  54453. image: {
  54454. source: "./media/characters/daurine-arima/head.svg"
  54455. }
  54456. },
  54457. headAlt: {
  54458. height: math.unit(19.19, "feet"),
  54459. name: "Head (Alt)",
  54460. image: {
  54461. source: "./media/characters/daurine-arima/head-alt.svg"
  54462. }
  54463. },
  54464. },
  54465. [
  54466. {
  54467. name: "Minimum height",
  54468. height: math.unit(8 + 10/12, "feet")
  54469. },
  54470. {
  54471. name: "Comfort height",
  54472. height: math.unit(19 + 6 /12, "feet")
  54473. },
  54474. {
  54475. name: "\"Normal\" height",
  54476. height: math.unit(28 + 10/12, "feet")
  54477. },
  54478. {
  54479. name: "Base height",
  54480. height: math.unit(84 + 8/12, "feet"),
  54481. default: true
  54482. },
  54483. {
  54484. name: "Mini-macro",
  54485. height: math.unit(2360, "feet")
  54486. },
  54487. {
  54488. name: "Macro",
  54489. height: math.unit(10, "miles")
  54490. },
  54491. {
  54492. name: "Goddess",
  54493. height: math.unit(9.99e40, "yottameters")
  54494. },
  54495. ]
  54496. ))
  54497. characterMakers.push(() => makeCharacter(
  54498. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  54499. {
  54500. front: {
  54501. height: math.unit(2.3, "meters"),
  54502. name: "Front",
  54503. image: {
  54504. source: "./media/characters/cilenomon/front.svg",
  54505. extra: 1963/1778,
  54506. bottom: 54/2017
  54507. }
  54508. },
  54509. },
  54510. [
  54511. {
  54512. name: "Normal",
  54513. height: math.unit(2.3, "meters"),
  54514. default: true
  54515. },
  54516. {
  54517. name: "Big",
  54518. height: math.unit(5, "meters")
  54519. },
  54520. {
  54521. name: "Macro",
  54522. height: math.unit(30, "meters")
  54523. },
  54524. {
  54525. name: "True",
  54526. height: math.unit(1, "universe")
  54527. },
  54528. ]
  54529. ))
  54530. characterMakers.push(() => makeCharacter(
  54531. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  54532. {
  54533. front: {
  54534. height: math.unit(5, "feet"),
  54535. name: "Front",
  54536. image: {
  54537. source: "./media/characters/sen-mink/front.svg",
  54538. extra: 1727/1675,
  54539. bottom: 35/1762
  54540. }
  54541. },
  54542. },
  54543. [
  54544. {
  54545. name: "Normal",
  54546. height: math.unit(5, "feet"),
  54547. default: true
  54548. },
  54549. ]
  54550. ))
  54551. characterMakers.push(() => makeCharacter(
  54552. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  54553. {
  54554. front: {
  54555. height: math.unit(5.42999, "feet"),
  54556. weight: math.unit(100, "lb"),
  54557. name: "Front",
  54558. image: {
  54559. source: "./media/characters/ophois/front.svg",
  54560. extra: 1429/1286,
  54561. bottom: 60/1489
  54562. }
  54563. },
  54564. },
  54565. [
  54566. {
  54567. name: "Normal",
  54568. height: math.unit(5.42999, "feet"),
  54569. default: true
  54570. },
  54571. ]
  54572. ))
  54573. characterMakers.push(() => makeCharacter(
  54574. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  54575. {
  54576. front: {
  54577. height: math.unit(2, "meters"),
  54578. name: "Front",
  54579. image: {
  54580. source: "./media/characters/riley/front.svg",
  54581. extra: 1779/1754,
  54582. bottom: 139/1918
  54583. }
  54584. },
  54585. },
  54586. [
  54587. {
  54588. name: "Normal",
  54589. height: math.unit(2, "meters"),
  54590. default: true
  54591. },
  54592. ]
  54593. ))
  54594. characterMakers.push(() => makeCharacter(
  54595. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  54596. {
  54597. front: {
  54598. height: math.unit(6 + 2/12, "feet"),
  54599. weight: math.unit(195, "lb"),
  54600. preyCapacity: math.unit(6, "people"),
  54601. name: "Front",
  54602. image: {
  54603. source: "./media/characters/shuken-flash/front.svg",
  54604. extra: 1905/1739,
  54605. bottom: 65/1970
  54606. }
  54607. },
  54608. back: {
  54609. height: math.unit(6 + 2/12, "feet"),
  54610. weight: math.unit(195, "lb"),
  54611. preyCapacity: math.unit(6, "people"),
  54612. name: "Back",
  54613. image: {
  54614. source: "./media/characters/shuken-flash/back.svg",
  54615. extra: 1912/1751,
  54616. bottom: 13/1925
  54617. }
  54618. },
  54619. },
  54620. [
  54621. {
  54622. name: "Normal",
  54623. height: math.unit(6 + 2/12, "feet"),
  54624. default: true
  54625. },
  54626. ]
  54627. ))
  54628. characterMakers.push(() => makeCharacter(
  54629. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  54630. {
  54631. front: {
  54632. height: math.unit(5 + 9/12, "feet"),
  54633. weight: math.unit(150, "lb"),
  54634. name: "Front",
  54635. image: {
  54636. source: "./media/characters/plat/front.svg",
  54637. extra: 1816/1703,
  54638. bottom: 43/1859
  54639. }
  54640. },
  54641. side: {
  54642. height: math.unit(5 + 9/12, "feet"),
  54643. weight: math.unit(300, "lb"),
  54644. name: "Side",
  54645. image: {
  54646. source: "./media/characters/plat/side.svg",
  54647. extra: 1824/1699,
  54648. bottom: 18/1842
  54649. }
  54650. },
  54651. },
  54652. [
  54653. {
  54654. name: "Normal",
  54655. height: math.unit(5 + 9/12, "feet"),
  54656. default: true
  54657. },
  54658. ]
  54659. ))
  54660. characterMakers.push(() => makeCharacter(
  54661. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  54662. {
  54663. front: {
  54664. height: math.unit(9, "feet"),
  54665. weight: math.unit(1800, "lb"),
  54666. name: "Front",
  54667. image: {
  54668. source: "./media/characters/elaine/front.svg",
  54669. extra: 1833/1354,
  54670. bottom: 25/1858
  54671. }
  54672. },
  54673. back: {
  54674. height: math.unit(8.8, "feet"),
  54675. weight: math.unit(1800, "lb"),
  54676. name: "Back",
  54677. image: {
  54678. source: "./media/characters/elaine/back.svg",
  54679. extra: 1641/1233,
  54680. bottom: 53/1694
  54681. }
  54682. },
  54683. },
  54684. [
  54685. {
  54686. name: "Normal",
  54687. height: math.unit(9, "feet"),
  54688. default: true
  54689. },
  54690. ]
  54691. ))
  54692. characterMakers.push(() => makeCharacter(
  54693. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  54694. {
  54695. front: {
  54696. height: math.unit(17 + 9/12, "feet"),
  54697. weight: math.unit(8000, "lb"),
  54698. name: "Front",
  54699. image: {
  54700. source: "./media/characters/vera-raven/front.svg",
  54701. extra: 1457/1412,
  54702. bottom: 121/1578
  54703. }
  54704. },
  54705. side: {
  54706. height: math.unit(17 + 9/12, "feet"),
  54707. weight: math.unit(8000, "lb"),
  54708. name: "Side",
  54709. image: {
  54710. source: "./media/characters/vera-raven/side.svg",
  54711. extra: 1510/1464,
  54712. bottom: 54/1564
  54713. }
  54714. },
  54715. },
  54716. [
  54717. {
  54718. name: "Normal",
  54719. height: math.unit(17 + 9/12, "feet"),
  54720. default: true
  54721. },
  54722. ]
  54723. ))
  54724. characterMakers.push(() => makeCharacter(
  54725. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  54726. {
  54727. dressed: {
  54728. height: math.unit(6 + 9/12, "feet"),
  54729. name: "Dressed",
  54730. image: {
  54731. source: "./media/characters/nakisha/dressed.svg",
  54732. extra: 1909/1757,
  54733. bottom: 48/1957
  54734. }
  54735. },
  54736. nude: {
  54737. height: math.unit(6 + 9/12, "feet"),
  54738. name: "Nude",
  54739. image: {
  54740. source: "./media/characters/nakisha/nude.svg",
  54741. extra: 1917/1765,
  54742. bottom: 34/1951
  54743. }
  54744. },
  54745. },
  54746. [
  54747. {
  54748. name: "Normal",
  54749. height: math.unit(6 + 9/12, "feet"),
  54750. default: true
  54751. },
  54752. ]
  54753. ))
  54754. characterMakers.push(() => makeCharacter(
  54755. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  54756. {
  54757. front: {
  54758. height: math.unit(87, "meters"),
  54759. name: "Front",
  54760. image: {
  54761. source: "./media/characters/serafin/front.svg",
  54762. extra: 1919/1776,
  54763. bottom: 65/1984
  54764. }
  54765. },
  54766. },
  54767. [
  54768. {
  54769. name: "Normal",
  54770. height: math.unit(87, "meters"),
  54771. default: true
  54772. },
  54773. ]
  54774. ))
  54775. characterMakers.push(() => makeCharacter(
  54776. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  54777. {
  54778. front: {
  54779. height: math.unit(6, "feet"),
  54780. weight: math.unit(200, "lb"),
  54781. name: "Front",
  54782. image: {
  54783. source: "./media/characters/poptart/front.svg",
  54784. extra: 615/583,
  54785. bottom: 23/638
  54786. }
  54787. },
  54788. back: {
  54789. height: math.unit(6, "feet"),
  54790. weight: math.unit(200, "lb"),
  54791. name: "Back",
  54792. image: {
  54793. source: "./media/characters/poptart/back.svg",
  54794. extra: 617/584,
  54795. bottom: 22/639
  54796. }
  54797. },
  54798. frontNsfw: {
  54799. height: math.unit(6, "feet"),
  54800. weight: math.unit(200, "lb"),
  54801. name: "Front (NSFW)",
  54802. image: {
  54803. source: "./media/characters/poptart/front-nsfw.svg",
  54804. extra: 615/583,
  54805. bottom: 23/638
  54806. }
  54807. },
  54808. backNsfw: {
  54809. height: math.unit(6, "feet"),
  54810. weight: math.unit(200, "lb"),
  54811. name: "Back (NSFW)",
  54812. image: {
  54813. source: "./media/characters/poptart/back-nsfw.svg",
  54814. extra: 617/584,
  54815. bottom: 22/639
  54816. }
  54817. },
  54818. hand: {
  54819. height: math.unit(1.14, "feet"),
  54820. name: "Hand",
  54821. image: {
  54822. source: "./media/characters/poptart/hand.svg"
  54823. }
  54824. },
  54825. foot: {
  54826. height: math.unit(1.5, "feet"),
  54827. name: "Foot",
  54828. image: {
  54829. source: "./media/characters/poptart/foot.svg"
  54830. }
  54831. },
  54832. },
  54833. [
  54834. {
  54835. name: "Normal",
  54836. height: math.unit(6, "feet"),
  54837. default: true
  54838. },
  54839. {
  54840. name: "Grande",
  54841. height: math.unit(350, "feet")
  54842. },
  54843. {
  54844. name: "Massif",
  54845. height: math.unit(967, "feet")
  54846. },
  54847. ]
  54848. ))
  54849. characterMakers.push(() => makeCharacter(
  54850. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  54851. {
  54852. hyenaSide: {
  54853. height: math.unit(120, "cm"),
  54854. weight: math.unit(120, "lb"),
  54855. name: "Side",
  54856. image: {
  54857. source: "./media/characters/trance/hyena-side.svg",
  54858. extra: 998/904,
  54859. bottom: 76/1074
  54860. }
  54861. },
  54862. },
  54863. [
  54864. {
  54865. name: "Normal",
  54866. height: math.unit(120, "cm"),
  54867. default: true
  54868. },
  54869. {
  54870. name: "Dire",
  54871. height: math.unit(230, "cm")
  54872. },
  54873. {
  54874. name: "Macro",
  54875. height: math.unit(37, "feet")
  54876. },
  54877. ]
  54878. ))
  54879. characterMakers.push(() => makeCharacter(
  54880. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  54881. {
  54882. front: {
  54883. height: math.unit(6 + 3/12, "feet"),
  54884. name: "Front",
  54885. image: {
  54886. source: "./media/characters/michael-berretta/front.svg",
  54887. extra: 515/494,
  54888. bottom: 20/535
  54889. }
  54890. },
  54891. back: {
  54892. height: math.unit(6 + 3/12, "feet"),
  54893. name: "Back",
  54894. image: {
  54895. source: "./media/characters/michael-berretta/back.svg",
  54896. extra: 520/497,
  54897. bottom: 21/541
  54898. }
  54899. },
  54900. frontNsfw: {
  54901. height: math.unit(6 + 3/12, "feet"),
  54902. name: "Front (NSFW)",
  54903. image: {
  54904. source: "./media/characters/michael-berretta/front-nsfw.svg",
  54905. extra: 515/494,
  54906. bottom: 20/535
  54907. }
  54908. },
  54909. dick: {
  54910. height: math.unit(1, "feet"),
  54911. name: "Dick",
  54912. image: {
  54913. source: "./media/characters/michael-berretta/dick.svg"
  54914. }
  54915. },
  54916. },
  54917. [
  54918. {
  54919. name: "Normal",
  54920. height: math.unit(6 + 3/12, "feet"),
  54921. default: true
  54922. },
  54923. {
  54924. name: "Big",
  54925. height: math.unit(12, "feet")
  54926. },
  54927. {
  54928. name: "Macro",
  54929. height: math.unit(187.5, "feet")
  54930. },
  54931. ]
  54932. ))
  54933. characterMakers.push(() => makeCharacter(
  54934. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  54935. {
  54936. front: {
  54937. height: math.unit(9 + 9/12, "feet"),
  54938. weight: math.unit(1244, "lb"),
  54939. name: "Front",
  54940. image: {
  54941. source: "./media/characters/stella-edgecomb/front.svg",
  54942. extra: 1835/1706,
  54943. bottom: 49/1884
  54944. }
  54945. },
  54946. pen: {
  54947. height: math.unit(0.95, "feet"),
  54948. name: "Pen",
  54949. image: {
  54950. source: "./media/characters/stella-edgecomb/pen.svg"
  54951. }
  54952. },
  54953. },
  54954. [
  54955. {
  54956. name: "Cozy Bear",
  54957. height: math.unit(0.5, "inches")
  54958. },
  54959. {
  54960. name: "Normal",
  54961. height: math.unit(9 + 9/12, "feet"),
  54962. default: true
  54963. },
  54964. {
  54965. name: "Giga Bear",
  54966. height: math.unit(1, "mile")
  54967. },
  54968. {
  54969. name: "Great Bear",
  54970. height: math.unit(53, "miles")
  54971. },
  54972. {
  54973. name: "Goddess Bear",
  54974. height: math.unit(40000, "miles")
  54975. },
  54976. {
  54977. name: "Sun Bear",
  54978. height: math.unit(900000, "miles")
  54979. },
  54980. ]
  54981. ))
  54982. characterMakers.push(() => makeCharacter(
  54983. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  54984. {
  54985. anthroFront: {
  54986. height: math.unit(556, "cm"),
  54987. weight: math.unit(2650, "kg"),
  54988. preyCapacity: math.unit(3, "people"),
  54989. name: "Front",
  54990. image: {
  54991. source: "./media/characters/ash´iika/front.svg",
  54992. extra: 710/673,
  54993. bottom: 15/725
  54994. },
  54995. form: "anthro",
  54996. default: true
  54997. },
  54998. anthroSide: {
  54999. height: math.unit(556, "cm"),
  55000. weight: math.unit(2650, "kg"),
  55001. preyCapacity: math.unit(3, "people"),
  55002. name: "Side",
  55003. image: {
  55004. source: "./media/characters/ash´iika/side.svg",
  55005. extra: 696/676,
  55006. bottom: 13/709
  55007. },
  55008. form: "anthro"
  55009. },
  55010. anthroDressed: {
  55011. height: math.unit(556, "cm"),
  55012. weight: math.unit(2650, "kg"),
  55013. preyCapacity: math.unit(3, "people"),
  55014. name: "Dressed",
  55015. image: {
  55016. source: "./media/characters/ash´iika/dressed.svg",
  55017. extra: 710/673,
  55018. bottom: 15/725
  55019. },
  55020. form: "anthro"
  55021. },
  55022. anthroHead: {
  55023. height: math.unit(3.5, "feet"),
  55024. name: "Head",
  55025. image: {
  55026. source: "./media/characters/ash´iika/head.svg",
  55027. extra: 348/291,
  55028. bottom: 45/393
  55029. },
  55030. form: "anthro"
  55031. },
  55032. feralSide: {
  55033. height: math.unit(870, "cm"),
  55034. weight: math.unit(17500, "kg"),
  55035. preyCapacity: math.unit(15, "people"),
  55036. name: "Side",
  55037. image: {
  55038. source: "./media/characters/ash´iika/feral.svg",
  55039. extra: 595/199,
  55040. bottom: 7/602
  55041. },
  55042. form: "feral",
  55043. default: true,
  55044. },
  55045. },
  55046. [
  55047. {
  55048. name: "Normal",
  55049. height: math.unit(556, "cm"),
  55050. default: true,
  55051. form: "anthro"
  55052. },
  55053. {
  55054. name: "Macro",
  55055. height: math.unit(88, "meters"),
  55056. form: "anthro"
  55057. },
  55058. {
  55059. name: "Normal",
  55060. height: math.unit(870, "cm"),
  55061. default: true,
  55062. form: "feral"
  55063. },
  55064. {
  55065. name: "Large",
  55066. height: math.unit(25, "meters"),
  55067. form: "feral"
  55068. },
  55069. ],
  55070. {
  55071. "anthro": {
  55072. name: "Anthro",
  55073. default: true
  55074. },
  55075. "feral": {
  55076. name: "Feral",
  55077. },
  55078. }
  55079. ))
  55080. characterMakers.push(() => makeCharacter(
  55081. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  55082. {
  55083. front: {
  55084. height: math.unit(10, "feet"),
  55085. weight: math.unit(800, "lb"),
  55086. name: "Front",
  55087. image: {
  55088. source: "./media/characters/yen/front.svg",
  55089. extra: 443/411,
  55090. bottom: 6/449
  55091. }
  55092. },
  55093. sleeping: {
  55094. height: math.unit(10, "feet"),
  55095. weight: math.unit(800, "lb"),
  55096. name: "Sleeping",
  55097. image: {
  55098. source: "./media/characters/yen/sleeping.svg",
  55099. extra: 470/422,
  55100. bottom: 0/470
  55101. }
  55102. },
  55103. head: {
  55104. height: math.unit(2.2, "feet"),
  55105. name: "Head",
  55106. image: {
  55107. source: "./media/characters/yen/head.svg"
  55108. }
  55109. },
  55110. headAlt: {
  55111. height: math.unit(2.1, "feet"),
  55112. name: "Head (Alt)",
  55113. image: {
  55114. source: "./media/characters/yen/head-alt.svg"
  55115. }
  55116. },
  55117. },
  55118. [
  55119. {
  55120. name: "Normal",
  55121. height: math.unit(10, "feet"),
  55122. default: true
  55123. },
  55124. ]
  55125. ))
  55126. characterMakers.push(() => makeCharacter(
  55127. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  55128. {
  55129. front: {
  55130. height: math.unit(12, "feet"),
  55131. name: "Front",
  55132. image: {
  55133. source: "./media/characters/citra/front.svg",
  55134. extra: 1950/1710,
  55135. bottom: 47/1997
  55136. }
  55137. },
  55138. },
  55139. [
  55140. {
  55141. name: "Normal",
  55142. height: math.unit(12, "feet"),
  55143. default: true
  55144. },
  55145. ]
  55146. ))
  55147. characterMakers.push(() => makeCharacter(
  55148. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  55149. {
  55150. side: {
  55151. height: math.unit(7 + 10/12, "feet"),
  55152. name: "Side",
  55153. image: {
  55154. source: "./media/characters/sholstim/side.svg",
  55155. extra: 786/682,
  55156. bottom: 40/826
  55157. }
  55158. },
  55159. },
  55160. [
  55161. {
  55162. name: "Normal",
  55163. height: math.unit(7 + 10/12, "feet"),
  55164. default: true
  55165. },
  55166. ]
  55167. ))
  55168. characterMakers.push(() => makeCharacter(
  55169. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  55170. {
  55171. front: {
  55172. height: math.unit(3.10, "meters"),
  55173. name: "Front",
  55174. image: {
  55175. source: "./media/characters/aggyn/front.svg",
  55176. extra: 1188/963,
  55177. bottom: 24/1212
  55178. }
  55179. },
  55180. },
  55181. [
  55182. {
  55183. name: "Normal",
  55184. height: math.unit(3.10, "meters"),
  55185. default: true
  55186. },
  55187. ]
  55188. ))
  55189. characterMakers.push(() => makeCharacter(
  55190. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  55191. {
  55192. front: {
  55193. height: math.unit(7 + 5/12, "feet"),
  55194. weight: math.unit(687, "lb"),
  55195. name: "Front",
  55196. image: {
  55197. source: "./media/characters/alsandair-hergenroether/front.svg",
  55198. extra: 1251/1186,
  55199. bottom: 75/1326
  55200. }
  55201. },
  55202. back: {
  55203. height: math.unit(7 + 5/12, "feet"),
  55204. weight: math.unit(687, "lb"),
  55205. name: "Back",
  55206. image: {
  55207. source: "./media/characters/alsandair-hergenroether/back.svg",
  55208. extra: 1290/1229,
  55209. bottom: 17/1307
  55210. }
  55211. },
  55212. },
  55213. [
  55214. {
  55215. name: "Max Compression",
  55216. height: math.unit(7 + 5/12, "feet"),
  55217. default: true
  55218. },
  55219. {
  55220. name: "\"Normal\"",
  55221. height: math.unit(2, "universes")
  55222. },
  55223. ]
  55224. ))
  55225. characterMakers.push(() => makeCharacter(
  55226. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  55227. {
  55228. front: {
  55229. height: math.unit(4 + 1/12, "feet"),
  55230. weight: math.unit(92, "lb"),
  55231. name: "Front",
  55232. image: {
  55233. source: "./media/characters/ie/front.svg",
  55234. extra: 1585/1352,
  55235. bottom: 91/1676
  55236. }
  55237. },
  55238. },
  55239. [
  55240. {
  55241. name: "Normal",
  55242. height: math.unit(4 + 1/12, "feet"),
  55243. default: true
  55244. },
  55245. ]
  55246. ))
  55247. characterMakers.push(() => makeCharacter(
  55248. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  55249. {
  55250. anthro: {
  55251. height: math.unit(6, "feet"),
  55252. weight: math.unit(150, "lb"),
  55253. name: "Front",
  55254. image: {
  55255. source: "./media/characters/willow/anthro.svg",
  55256. extra: 1073/986,
  55257. bottom: 34/1107
  55258. },
  55259. form: "anthro",
  55260. default: true
  55261. },
  55262. taur: {
  55263. height: math.unit(6, "feet"),
  55264. weight: math.unit(150, "lb"),
  55265. name: "Side",
  55266. image: {
  55267. source: "./media/characters/willow/taur.svg",
  55268. extra: 647/512,
  55269. bottom: 136/783
  55270. },
  55271. form: "taur",
  55272. default: true
  55273. },
  55274. },
  55275. [
  55276. {
  55277. name: "Humanoid",
  55278. height: math.unit(2.7, "meters"),
  55279. form: "anthro"
  55280. },
  55281. {
  55282. name: "Normal",
  55283. height: math.unit(9, "meters"),
  55284. form: "anthro",
  55285. default: true
  55286. },
  55287. {
  55288. name: "Humanoid",
  55289. height: math.unit(2.1, "meters"),
  55290. form: "taur"
  55291. },
  55292. {
  55293. name: "Normal",
  55294. height: math.unit(7, "meters"),
  55295. form: "taur",
  55296. default: true
  55297. },
  55298. ],
  55299. {
  55300. "anthro": {
  55301. name: "Anthro",
  55302. default: true
  55303. },
  55304. "taur": {
  55305. name: "Taur",
  55306. },
  55307. }
  55308. ))
  55309. characterMakers.push(() => makeCharacter(
  55310. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  55311. {
  55312. front: {
  55313. height: math.unit(2 + 5/12, "feet"),
  55314. name: "Front",
  55315. image: {
  55316. source: "./media/characters/kyan/front.svg",
  55317. extra: 460/334,
  55318. bottom: 23/483
  55319. },
  55320. extraAttributes: {
  55321. "toeLength": {
  55322. name: "Toe Length",
  55323. power: 1,
  55324. type: "length",
  55325. base: math.unit(7, "cm")
  55326. },
  55327. "toeclawLength": {
  55328. name: "Toeclaw Length",
  55329. power: 1,
  55330. type: "length",
  55331. base: math.unit(4.7, "cm")
  55332. },
  55333. "earHeight": {
  55334. name: "Ear Height",
  55335. power: 1,
  55336. type: "length",
  55337. base: math.unit(14.1, "cm")
  55338. },
  55339. }
  55340. },
  55341. paws: {
  55342. height: math.unit(0.45, "feet"),
  55343. name: "Paws",
  55344. image: {
  55345. source: "./media/characters/kyan/paws.svg",
  55346. extra: 581/581,
  55347. bottom: 114/695
  55348. }
  55349. },
  55350. },
  55351. [
  55352. {
  55353. name: "Normal",
  55354. height: math.unit(2 + 5/12, "feet"),
  55355. default: true
  55356. },
  55357. ]
  55358. ))
  55359. characterMakers.push(() => makeCharacter(
  55360. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  55361. {
  55362. front: {
  55363. height: math.unit(2 + 2/3, "feet"),
  55364. name: "Front",
  55365. image: {
  55366. source: "./media/characters/xazzon/front.svg",
  55367. extra: 1109/984,
  55368. bottom: 42/1151
  55369. }
  55370. },
  55371. back: {
  55372. height: math.unit(2 + 2/3, "feet"),
  55373. name: "Back",
  55374. image: {
  55375. source: "./media/characters/xazzon/back.svg",
  55376. extra: 1095/971,
  55377. bottom: 23/1118
  55378. }
  55379. },
  55380. },
  55381. [
  55382. {
  55383. name: "Normal",
  55384. height: math.unit(2 + 2/3, "feet"),
  55385. default: true
  55386. },
  55387. ]
  55388. ))
  55389. characterMakers.push(() => makeCharacter(
  55390. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  55391. {
  55392. front: {
  55393. height: math.unit(8, "feet"),
  55394. weight: math.unit(300, "lb"),
  55395. name: "Front",
  55396. image: {
  55397. source: "./media/characters/khyla-shadowsong/front.svg",
  55398. extra: 861/798,
  55399. bottom: 32/893
  55400. }
  55401. },
  55402. side: {
  55403. height: math.unit(8, "feet"),
  55404. weight: math.unit(300, "lb"),
  55405. name: "Side",
  55406. image: {
  55407. source: "./media/characters/khyla-shadowsong/side.svg",
  55408. extra: 790/750,
  55409. bottom: 87/877
  55410. }
  55411. },
  55412. back: {
  55413. height: math.unit(8, "feet"),
  55414. weight: math.unit(300, "lb"),
  55415. name: "Back",
  55416. image: {
  55417. source: "./media/characters/khyla-shadowsong/back.svg",
  55418. extra: 855/808,
  55419. bottom: 14/869
  55420. }
  55421. },
  55422. head: {
  55423. height: math.unit(2.7, "feet"),
  55424. name: "Head",
  55425. image: {
  55426. source: "./media/characters/khyla-shadowsong/head.svg"
  55427. }
  55428. },
  55429. },
  55430. [
  55431. {
  55432. name: "Micro",
  55433. height: math.unit(6, "inches")
  55434. },
  55435. {
  55436. name: "Normal",
  55437. height: math.unit(8, "feet"),
  55438. default: true
  55439. },
  55440. ]
  55441. ))
  55442. characterMakers.push(() => makeCharacter(
  55443. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  55444. {
  55445. hyperFront: {
  55446. height: math.unit(9 + 4/12, "feet"),
  55447. weight: math.unit(2000, "lb"),
  55448. name: "Front",
  55449. image: {
  55450. source: "./media/characters/tiden/hyper-front.svg",
  55451. extra: 400/382,
  55452. bottom: 6/406
  55453. },
  55454. form: "hyper",
  55455. },
  55456. regularFront: {
  55457. height: math.unit(7 + 10/12, "feet"),
  55458. weight: math.unit(470, "lb"),
  55459. name: "Front",
  55460. image: {
  55461. source: "./media/characters/tiden/regular-front.svg",
  55462. extra: 468/442,
  55463. bottom: 6/474
  55464. },
  55465. form: "regular",
  55466. },
  55467. },
  55468. [
  55469. {
  55470. name: "Normal",
  55471. height: math.unit(9 + 4/12, "feet"),
  55472. default: true,
  55473. form: "hyper"
  55474. },
  55475. {
  55476. name: "Normal",
  55477. height: math.unit(7 + 10/12, "feet"),
  55478. default: true,
  55479. form: "regular"
  55480. },
  55481. ],
  55482. {
  55483. "hyper": {
  55484. name: "Hyper",
  55485. default: true
  55486. },
  55487. "regular": {
  55488. name: "Regular",
  55489. },
  55490. }
  55491. ))
  55492. characterMakers.push(() => makeCharacter(
  55493. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  55494. {
  55495. side: {
  55496. height: math.unit(6, "feet"),
  55497. weight: math.unit(150, "lb"),
  55498. name: "Side",
  55499. image: {
  55500. source: "./media/characters/jason-crowe/side.svg",
  55501. extra: 1771/766,
  55502. bottom: 219/1990
  55503. }
  55504. },
  55505. },
  55506. [
  55507. {
  55508. name: "Pocket Gryphon",
  55509. height: math.unit(6, "cm")
  55510. },
  55511. {
  55512. name: "Raven",
  55513. height: math.unit(60, "cm")
  55514. },
  55515. {
  55516. name: "Normal",
  55517. height: math.unit(1, "meter"),
  55518. default: true
  55519. },
  55520. ]
  55521. ))
  55522. characterMakers.push(() => makeCharacter(
  55523. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  55524. {
  55525. front: {
  55526. height: math.unit(9 + 6/12, "feet"),
  55527. weight: math.unit(1100, "lb"),
  55528. name: "Front",
  55529. image: {
  55530. source: "./media/characters/django/front.svg",
  55531. extra: 1231/1136,
  55532. bottom: 34/1265
  55533. }
  55534. },
  55535. side: {
  55536. height: math.unit(9 + 6/12, "feet"),
  55537. weight: math.unit(1100, "lb"),
  55538. name: "Side",
  55539. image: {
  55540. source: "./media/characters/django/side.svg",
  55541. extra: 1267/1174,
  55542. bottom: 9/1276
  55543. }
  55544. },
  55545. },
  55546. [
  55547. {
  55548. name: "Normal",
  55549. height: math.unit(9 + 6/12, "feet"),
  55550. default: true
  55551. },
  55552. {
  55553. name: "Macro 1",
  55554. height: math.unit(50, "feet")
  55555. },
  55556. {
  55557. name: "Macro 2",
  55558. height: math.unit(500, "feet")
  55559. },
  55560. {
  55561. name: "Mega Macro",
  55562. height: math.unit(5300, "feet")
  55563. },
  55564. ]
  55565. ))
  55566. characterMakers.push(() => makeCharacter(
  55567. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  55568. {
  55569. frontSfw: {
  55570. height: math.unit(120, "cm"),
  55571. weight: math.unit(15, "kg"),
  55572. name: "Front (SFW)",
  55573. image: {
  55574. source: "./media/characters/eri/front-sfw.svg",
  55575. extra: 1014/939,
  55576. bottom: 37/1051
  55577. },
  55578. form: "moth",
  55579. },
  55580. frontNsfw: {
  55581. height: math.unit(120, "cm"),
  55582. weight: math.unit(15, "kg"),
  55583. name: "Front (NSFW)",
  55584. image: {
  55585. source: "./media/characters/eri/front-nsfw.svg",
  55586. extra: 1014/939,
  55587. bottom: 37/1051
  55588. },
  55589. form: "moth",
  55590. default: true
  55591. },
  55592. egg: {
  55593. height: math.unit(10, "cm"),
  55594. name: "Egg",
  55595. image: {
  55596. source: "./media/characters/eri/egg.svg"
  55597. },
  55598. form: "egg",
  55599. default: true
  55600. },
  55601. },
  55602. [
  55603. {
  55604. name: "Normal",
  55605. height: math.unit(120, "cm"),
  55606. default: true,
  55607. form: "moth"
  55608. },
  55609. {
  55610. name: "Normal",
  55611. height: math.unit(10, "cm"),
  55612. default: true,
  55613. form: "egg"
  55614. },
  55615. ],
  55616. {
  55617. "moth": {
  55618. name: "Moth",
  55619. default: true
  55620. },
  55621. "egg": {
  55622. name: "Egg",
  55623. },
  55624. }
  55625. ))
  55626. characterMakers.push(() => makeCharacter(
  55627. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  55628. {
  55629. front: {
  55630. height: math.unit(200, "feet"),
  55631. name: "Front",
  55632. image: {
  55633. source: "./media/characters/bishop-dowser/front.svg",
  55634. extra: 933/868,
  55635. bottom: 106/1039
  55636. }
  55637. },
  55638. },
  55639. [
  55640. {
  55641. name: "Giant",
  55642. height: math.unit(200, "feet"),
  55643. default: true
  55644. },
  55645. ]
  55646. ))
  55647. characterMakers.push(() => makeCharacter(
  55648. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  55649. {
  55650. front: {
  55651. height: math.unit(2, "meters"),
  55652. preyCapacity: math.unit(3, "people"),
  55653. name: "Front",
  55654. image: {
  55655. source: "./media/characters/fryra/front.svg",
  55656. extra: 1025/948,
  55657. bottom: 30/1055
  55658. },
  55659. extraAttributes: {
  55660. "breastVolume": {
  55661. name: "Breast Volume",
  55662. power: 3,
  55663. type: "volume",
  55664. base: math.unit(8, "liters")
  55665. },
  55666. }
  55667. },
  55668. back: {
  55669. height: math.unit(2, "meters"),
  55670. preyCapacity: math.unit(3, "people"),
  55671. name: "Back",
  55672. image: {
  55673. source: "./media/characters/fryra/back.svg",
  55674. extra: 993/938,
  55675. bottom: 38/1031
  55676. },
  55677. extraAttributes: {
  55678. "breastVolume": {
  55679. name: "Breast Volume",
  55680. power: 3,
  55681. type: "volume",
  55682. base: math.unit(8, "liters")
  55683. },
  55684. }
  55685. },
  55686. head: {
  55687. height: math.unit(1.33, "feet"),
  55688. name: "Head",
  55689. image: {
  55690. source: "./media/characters/fryra/head.svg"
  55691. }
  55692. },
  55693. maw: {
  55694. height: math.unit(0.56, "feet"),
  55695. name: "Maw",
  55696. image: {
  55697. source: "./media/characters/fryra/maw.svg"
  55698. }
  55699. },
  55700. },
  55701. [
  55702. {
  55703. name: "Micro",
  55704. height: math.unit(5, "cm")
  55705. },
  55706. {
  55707. name: "Normal",
  55708. height: math.unit(2, "meters"),
  55709. default: true
  55710. },
  55711. {
  55712. name: "Small Macro",
  55713. height: math.unit(8, "meters")
  55714. },
  55715. {
  55716. name: "Macro",
  55717. height: math.unit(50, "meters")
  55718. },
  55719. {
  55720. name: "Megamacro",
  55721. height: math.unit(1, "km")
  55722. },
  55723. {
  55724. name: "Planetary",
  55725. height: math.unit(300000, "km")
  55726. },
  55727. {
  55728. name: "Universal",
  55729. height: math.unit(250, "lightyears")
  55730. },
  55731. {
  55732. name: "Fabric of Reality",
  55733. height: math.unit(1000, "multiverses")
  55734. },
  55735. ]
  55736. ))
  55737. characterMakers.push(() => makeCharacter(
  55738. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  55739. {
  55740. frontDressed: {
  55741. height: math.unit(6 + 2/12, "feet"),
  55742. name: "Front (Dressed)",
  55743. image: {
  55744. source: "./media/characters/fiera/front-dressed.svg",
  55745. extra: 1883/1793,
  55746. bottom: 70/1953
  55747. }
  55748. },
  55749. backDressed: {
  55750. height: math.unit(6 + 2/12, "feet"),
  55751. name: "Back (Dressed)",
  55752. image: {
  55753. source: "./media/characters/fiera/back-dressed.svg",
  55754. extra: 1847/1780,
  55755. bottom: 70/1917
  55756. }
  55757. },
  55758. frontNude: {
  55759. height: math.unit(6 + 2/12, "feet"),
  55760. name: "Front (Nude)",
  55761. image: {
  55762. source: "./media/characters/fiera/front-nude.svg",
  55763. extra: 1875/1785,
  55764. bottom: 66/1941
  55765. }
  55766. },
  55767. backNude: {
  55768. height: math.unit(6 + 2/12, "feet"),
  55769. name: "Back (Nude)",
  55770. image: {
  55771. source: "./media/characters/fiera/back-nude.svg",
  55772. extra: 1855/1788,
  55773. bottom: 44/1899
  55774. }
  55775. },
  55776. maw: {
  55777. height: math.unit(1.3, "feet"),
  55778. name: "Maw",
  55779. image: {
  55780. source: "./media/characters/fiera/maw.svg"
  55781. }
  55782. },
  55783. paw: {
  55784. height: math.unit(1, "feet"),
  55785. name: "Paw",
  55786. image: {
  55787. source: "./media/characters/fiera/paw.svg"
  55788. }
  55789. },
  55790. shoe: {
  55791. height: math.unit(1.05, "feet"),
  55792. name: "Shoe",
  55793. image: {
  55794. source: "./media/characters/fiera/shoe.svg"
  55795. }
  55796. },
  55797. },
  55798. [
  55799. {
  55800. name: "Normal",
  55801. height: math.unit(6 + 2/12, "feet"),
  55802. default: true
  55803. },
  55804. {
  55805. name: "Size Difference",
  55806. height: math.unit(13, "feet")
  55807. },
  55808. {
  55809. name: "Macro",
  55810. height: math.unit(60, "feet")
  55811. },
  55812. {
  55813. name: "Mega Macro",
  55814. height: math.unit(200, "feet")
  55815. },
  55816. ]
  55817. ))
  55818. characterMakers.push(() => makeCharacter(
  55819. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  55820. {
  55821. back: {
  55822. height: math.unit(6, "feet"),
  55823. name: "Back",
  55824. image: {
  55825. source: "./media/characters/flare/back.svg",
  55826. extra: 1883/1765,
  55827. bottom: 32/1915
  55828. }
  55829. },
  55830. },
  55831. [
  55832. {
  55833. name: "Normal",
  55834. height: math.unit(6 + 2/12, "feet"),
  55835. default: true
  55836. },
  55837. {
  55838. name: "Size Difference",
  55839. height: math.unit(13, "feet")
  55840. },
  55841. {
  55842. name: "Macro",
  55843. height: math.unit(60, "feet")
  55844. },
  55845. {
  55846. name: "Macro 2",
  55847. height: math.unit(100, "feet")
  55848. },
  55849. {
  55850. name: "Mega Macro",
  55851. height: math.unit(200, "feet")
  55852. },
  55853. ]
  55854. ))
  55855. characterMakers.push(() => makeCharacter(
  55856. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  55857. {
  55858. front: {
  55859. height: math.unit(2.2, "m"),
  55860. weight: math.unit(300, "kg"),
  55861. name: "Front",
  55862. image: {
  55863. source: "./media/characters/hanna/front.svg",
  55864. extra: 1696/1502,
  55865. bottom: 206/1902
  55866. }
  55867. },
  55868. },
  55869. [
  55870. {
  55871. name: "Humanoid",
  55872. height: math.unit(2.2, "meters")
  55873. },
  55874. {
  55875. name: "Normal",
  55876. height: math.unit(4.8, "meters"),
  55877. default: true
  55878. },
  55879. ]
  55880. ))
  55881. characterMakers.push(() => makeCharacter(
  55882. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  55883. {
  55884. front: {
  55885. height: math.unit(2.8, "meters"),
  55886. name: "Front",
  55887. image: {
  55888. source: "./media/characters/argo/front.svg",
  55889. extra: 731/518,
  55890. bottom: 84/815
  55891. }
  55892. },
  55893. },
  55894. [
  55895. {
  55896. name: "Normal",
  55897. height: math.unit(3, "meters"),
  55898. default: true
  55899. },
  55900. ]
  55901. ))
  55902. characterMakers.push(() => makeCharacter(
  55903. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  55904. {
  55905. side: {
  55906. height: math.unit(3.8, "meters"),
  55907. name: "Side",
  55908. image: {
  55909. source: "./media/characters/sybil/side.svg",
  55910. extra: 382/361,
  55911. bottom: 25/407
  55912. }
  55913. },
  55914. },
  55915. [
  55916. {
  55917. name: "Normal",
  55918. height: math.unit(3.8, "meters"),
  55919. default: true
  55920. },
  55921. ]
  55922. ))
  55923. characterMakers.push(() => makeCharacter(
  55924. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  55925. {
  55926. side: {
  55927. height: math.unit(6, "meters"),
  55928. name: "Side",
  55929. image: {
  55930. source: "./media/characters/plum/side.svg",
  55931. extra: 858/755,
  55932. bottom: 45/903
  55933. },
  55934. form: "taur",
  55935. default: true
  55936. },
  55937. back: {
  55938. height: math.unit(6.3, "meters"),
  55939. name: "Back",
  55940. image: {
  55941. source: "./media/characters/plum/back.svg",
  55942. extra: 887/813,
  55943. bottom: 32/919
  55944. },
  55945. form: "taur",
  55946. },
  55947. feral: {
  55948. height: math.unit(5.5, "meter"),
  55949. name: "Front",
  55950. image: {
  55951. source: "./media/characters/plum/feral.svg",
  55952. extra: 568/403,
  55953. bottom: 51/619
  55954. },
  55955. form: "feral",
  55956. default: true
  55957. },
  55958. head: {
  55959. height: math.unit(1.46, "meter"),
  55960. name: "Head",
  55961. image: {
  55962. source: "./media/characters/plum/head.svg"
  55963. },
  55964. form: "taur"
  55965. },
  55966. tailTop: {
  55967. height: math.unit(5.6, "meter"),
  55968. name: "Tail (Top)",
  55969. image: {
  55970. source: "./media/characters/plum/tail-top.svg"
  55971. },
  55972. form: "taur",
  55973. },
  55974. tailBottom: {
  55975. height: math.unit(5.6, "meter"),
  55976. name: "Tail (Bottom)",
  55977. image: {
  55978. source: "./media/characters/plum/tail-bottom.svg"
  55979. },
  55980. form: "taur",
  55981. },
  55982. feralHead: {
  55983. height: math.unit(2.56549521, "meter"),
  55984. name: "Head",
  55985. image: {
  55986. source: "./media/characters/plum/head.svg"
  55987. },
  55988. form: "feral"
  55989. },
  55990. feralTailTop: {
  55991. height: math.unit(5.44728435, "meter"),
  55992. name: "Tail (Top)",
  55993. image: {
  55994. source: "./media/characters/plum/tail-top.svg"
  55995. },
  55996. form: "feral",
  55997. },
  55998. feralTailBottom: {
  55999. height: math.unit(5.44728435, "meter"),
  56000. name: "Tail (Bottom)",
  56001. image: {
  56002. source: "./media/characters/plum/tail-bottom.svg"
  56003. },
  56004. form: "feral",
  56005. },
  56006. },
  56007. [
  56008. {
  56009. name: "Normal",
  56010. height: math.unit(6, "meters"),
  56011. default: true,
  56012. form: "taur"
  56013. },
  56014. {
  56015. name: "Normal",
  56016. height: math.unit(5.5, "meters"),
  56017. default: true,
  56018. form: "feral"
  56019. },
  56020. ],
  56021. {
  56022. "taur": {
  56023. name: "Taur",
  56024. default: true
  56025. },
  56026. "feral": {
  56027. name: "Feral",
  56028. },
  56029. }
  56030. ))
  56031. characterMakers.push(() => makeCharacter(
  56032. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  56033. {
  56034. front: {
  56035. height: math.unit(6, "feet"),
  56036. weight: math.unit(115, "lb"),
  56037. name: "Front",
  56038. image: {
  56039. source: "./media/characters/celeste-kitsune/front.svg",
  56040. extra: 393/366,
  56041. bottom: 7/400
  56042. }
  56043. },
  56044. side: {
  56045. height: math.unit(6, "feet"),
  56046. weight: math.unit(115, "lb"),
  56047. name: "Side",
  56048. image: {
  56049. source: "./media/characters/celeste-kitsune/side.svg",
  56050. extra: 818/765,
  56051. bottom: 40/858
  56052. }
  56053. },
  56054. },
  56055. [
  56056. {
  56057. name: "Megamacro",
  56058. height: math.unit(1500, "miles"),
  56059. default: true
  56060. },
  56061. ]
  56062. ))
  56063. characterMakers.push(() => makeCharacter(
  56064. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  56065. {
  56066. front: {
  56067. height: math.unit(8, "meters"),
  56068. name: "Front",
  56069. image: {
  56070. source: "./media/characters/io/front.svg",
  56071. extra: 865/722,
  56072. bottom: 58/923
  56073. }
  56074. },
  56075. back: {
  56076. height: math.unit(8, "meters"),
  56077. name: "Back",
  56078. image: {
  56079. source: "./media/characters/io/back.svg",
  56080. extra: 920/776,
  56081. bottom: 42/962
  56082. }
  56083. },
  56084. head: {
  56085. height: math.unit(5.09, "meters"),
  56086. name: "Head",
  56087. image: {
  56088. source: "./media/characters/io/head.svg"
  56089. }
  56090. },
  56091. hand: {
  56092. height: math.unit(1.6, "meters"),
  56093. name: "Hand",
  56094. image: {
  56095. source: "./media/characters/io/hand.svg"
  56096. }
  56097. },
  56098. foot: {
  56099. height: math.unit(2.4, "meters"),
  56100. name: "Foot",
  56101. image: {
  56102. source: "./media/characters/io/foot.svg"
  56103. }
  56104. },
  56105. },
  56106. [
  56107. {
  56108. name: "Normal",
  56109. height: math.unit(8, "meters"),
  56110. default: true
  56111. },
  56112. ]
  56113. ))
  56114. characterMakers.push(() => makeCharacter(
  56115. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  56116. {
  56117. side: {
  56118. height: math.unit(6 + 3/12, "feet"),
  56119. weight: math.unit(225, "lb"),
  56120. name: "Side",
  56121. image: {
  56122. source: "./media/characters/silas/side.svg",
  56123. extra: 703/653,
  56124. bottom: 23/726
  56125. },
  56126. extraAttributes: {
  56127. "pawLength": {
  56128. name: "Paw Length",
  56129. power: 1,
  56130. type: "length",
  56131. base: math.unit(12, "inches")
  56132. },
  56133. "pawWidth": {
  56134. name: "Paw Width",
  56135. power: 1,
  56136. type: "length",
  56137. base: math.unit(4.5, "inches")
  56138. },
  56139. "pawArea": {
  56140. name: "Paw Area",
  56141. power: 2,
  56142. type: "area",
  56143. base: math.unit(12 * 4.5, "inches^2")
  56144. },
  56145. }
  56146. },
  56147. },
  56148. [
  56149. {
  56150. name: "Normal",
  56151. height: math.unit(6 + 3/12, "feet"),
  56152. default: true
  56153. },
  56154. ]
  56155. ))
  56156. characterMakers.push(() => makeCharacter(
  56157. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  56158. {
  56159. back: {
  56160. height: math.unit(1.6, "meters"),
  56161. weight: math.unit(150, "lb"),
  56162. name: "Back",
  56163. image: {
  56164. source: "./media/characters/zari/back.svg",
  56165. extra: 424/411,
  56166. bottom: 32/456
  56167. },
  56168. extraAttributes: {
  56169. "bladderCapacity": {
  56170. name: "Bladder Size",
  56171. power: 3,
  56172. type: "volume",
  56173. base: math.unit(500, "mL")
  56174. },
  56175. "bladderFlow": {
  56176. name: "Flow Rate",
  56177. power: 3,
  56178. type: "volume",
  56179. base: math.unit(25, "mL")
  56180. },
  56181. }
  56182. },
  56183. },
  56184. [
  56185. {
  56186. name: "Normal",
  56187. height: math.unit(1.6, "meters"),
  56188. default: true
  56189. },
  56190. ]
  56191. ))
  56192. characterMakers.push(() => makeCharacter(
  56193. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  56194. {
  56195. front: {
  56196. height: math.unit(25, "feet"),
  56197. weight: math.unit(5, "tons"),
  56198. name: "Front",
  56199. image: {
  56200. source: "./media/characters/charlie-human/front.svg",
  56201. extra: 1870/1740,
  56202. bottom: 102/1972
  56203. },
  56204. extraAttributes: {
  56205. "dickLength": {
  56206. name: "Dick Length",
  56207. power: 1,
  56208. type: "length",
  56209. base: math.unit(9, "feet")
  56210. },
  56211. }
  56212. },
  56213. back: {
  56214. height: math.unit(25, "feet"),
  56215. weight: math.unit(5, "tons"),
  56216. name: "Back",
  56217. image: {
  56218. source: "./media/characters/charlie-human/back.svg",
  56219. extra: 1858/1733,
  56220. bottom: 105/1963
  56221. },
  56222. extraAttributes: {
  56223. "dickLength": {
  56224. name: "Dick Length",
  56225. power: 1,
  56226. type: "length",
  56227. base: math.unit(9, "feet")
  56228. },
  56229. }
  56230. },
  56231. },
  56232. [
  56233. {
  56234. name: "\"Normal\"",
  56235. height: math.unit(6 + 4/12, "feet")
  56236. },
  56237. {
  56238. name: "Big",
  56239. height: math.unit(25, "feet"),
  56240. default: true
  56241. },
  56242. ]
  56243. ))
  56244. characterMakers.push(() => makeCharacter(
  56245. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  56246. {
  56247. front: {
  56248. height: math.unit(6 + 4/12, "feet"),
  56249. weight: math.unit(320, "lb"),
  56250. name: "Front",
  56251. image: {
  56252. source: "./media/characters/ookitsu/front.svg",
  56253. extra: 1160/976,
  56254. bottom: 38/1198
  56255. }
  56256. },
  56257. frontNsfw: {
  56258. height: math.unit(6 + 4/12, "feet"),
  56259. weight: math.unit(320, "lb"),
  56260. name: "Front (NSFW)",
  56261. image: {
  56262. source: "./media/characters/ookitsu/front-nsfw.svg",
  56263. extra: 1160/976,
  56264. bottom: 38/1198
  56265. }
  56266. },
  56267. back: {
  56268. height: math.unit(6 + 4/12, "feet"),
  56269. weight: math.unit(320, "lb"),
  56270. name: "Back",
  56271. image: {
  56272. source: "./media/characters/ookitsu/back.svg",
  56273. extra: 1030/975,
  56274. bottom: 70/1100
  56275. }
  56276. },
  56277. head: {
  56278. height: math.unit(1.79, "feet"),
  56279. name: "Head",
  56280. image: {
  56281. source: "./media/characters/ookitsu/head.svg"
  56282. }
  56283. },
  56284. hand: {
  56285. height: math.unit(0.92, "feet"),
  56286. name: "Hand",
  56287. image: {
  56288. source: "./media/characters/ookitsu/hand.svg"
  56289. }
  56290. },
  56291. tails: {
  56292. height: math.unit(3.3, "feet"),
  56293. name: "Tails",
  56294. image: {
  56295. source: "./media/characters/ookitsu/tails.svg"
  56296. }
  56297. },
  56298. dick: {
  56299. height: math.unit(1.10833, "feet"),
  56300. name: "Dick",
  56301. image: {
  56302. source: "./media/characters/ookitsu/dick.svg"
  56303. }
  56304. },
  56305. },
  56306. [
  56307. {
  56308. name: "Normal",
  56309. height: math.unit(6 + 4/12, "feet"),
  56310. default: true
  56311. },
  56312. {
  56313. name: "Macro",
  56314. height: math.unit(30, "feet")
  56315. },
  56316. ]
  56317. ))
  56318. characterMakers.push(() => makeCharacter(
  56319. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  56320. {
  56321. anthroFront: {
  56322. height: math.unit(6, "feet"),
  56323. weight: math.unit(250, "lb"),
  56324. name: "Front",
  56325. image: {
  56326. source: "./media/characters/jhusky/anthro-front.svg",
  56327. extra: 474/439,
  56328. bottom: 7/481
  56329. },
  56330. form: "anthro",
  56331. default: true
  56332. },
  56333. taurSideSfw: {
  56334. height: math.unit(6 + 4/12, "feet"),
  56335. weight: math.unit(500, "lb"),
  56336. name: "Side (SFW)",
  56337. image: {
  56338. source: "./media/characters/jhusky/taur-side-sfw.svg",
  56339. extra: 1741/1629,
  56340. bottom: 196/1937
  56341. },
  56342. form: "taur",
  56343. default: true
  56344. },
  56345. taurSideNsfw: {
  56346. height: math.unit(6 + 4/12, "feet"),
  56347. weight: math.unit(500, "lb"),
  56348. name: "Taur (NSFW)",
  56349. image: {
  56350. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  56351. extra: 1741/1629,
  56352. bottom: 196/1937
  56353. },
  56354. form: "taur",
  56355. },
  56356. },
  56357. [
  56358. {
  56359. name: "Huge",
  56360. height: math.unit(500, "feet"),
  56361. form: "anthro"
  56362. },
  56363. {
  56364. name: "Macro",
  56365. height: math.unit(1000, "feet"),
  56366. default: true,
  56367. form: "anthro"
  56368. },
  56369. {
  56370. name: "Megamacro",
  56371. height: math.unit(10000, "feet"),
  56372. form: "anthro"
  56373. },
  56374. {
  56375. name: "Huge",
  56376. height: math.unit(528, "feet"),
  56377. form: "taur"
  56378. },
  56379. {
  56380. name: "Macro",
  56381. height: math.unit(1056, "feet"),
  56382. default: true,
  56383. form: "taur"
  56384. },
  56385. {
  56386. name: "Megamacro",
  56387. height: math.unit(10556, "feet"),
  56388. form: "taur"
  56389. },
  56390. ],
  56391. {
  56392. "anthro": {
  56393. name: "Anthro",
  56394. default: true
  56395. },
  56396. "taur": {
  56397. name: "Taur",
  56398. },
  56399. }
  56400. ))
  56401. characterMakers.push(() => makeCharacter(
  56402. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  56403. {
  56404. front: {
  56405. height: math.unit(8, "feet"),
  56406. weight: math.unit(500, "lb"),
  56407. name: "Front",
  56408. image: {
  56409. source: "./media/characters/armail/front.svg",
  56410. extra: 1753/1669,
  56411. bottom: 155/1908
  56412. }
  56413. },
  56414. back: {
  56415. height: math.unit(8, "feet"),
  56416. weight: math.unit(500, "lb"),
  56417. name: "Back",
  56418. image: {
  56419. source: "./media/characters/armail/back.svg",
  56420. extra: 1872/1803,
  56421. bottom: 63/1935
  56422. }
  56423. },
  56424. },
  56425. [
  56426. {
  56427. name: "Micro",
  56428. height: math.unit(0.25, "feet")
  56429. },
  56430. {
  56431. name: "Normal",
  56432. height: math.unit(8, "feet"),
  56433. default: true
  56434. },
  56435. {
  56436. name: "Mini-macro",
  56437. height: math.unit(30, "feet")
  56438. },
  56439. {
  56440. name: "Macro",
  56441. height: math.unit(400, "feet")
  56442. },
  56443. {
  56444. name: "Mega-macro",
  56445. height: math.unit(6000, "feet")
  56446. },
  56447. ]
  56448. ))
  56449. characterMakers.push(() => makeCharacter(
  56450. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  56451. {
  56452. front: {
  56453. height: math.unit(6 + 7/12, "feet"),
  56454. weight: math.unit(210, "lb"),
  56455. name: "Front",
  56456. image: {
  56457. source: "./media/characters/wilfred-t-buxton/front.svg",
  56458. extra: 1068/882,
  56459. bottom: 28/1096
  56460. }
  56461. },
  56462. },
  56463. [
  56464. {
  56465. name: "Normal",
  56466. height: math.unit(6 + 7/12, "feet"),
  56467. default: true
  56468. },
  56469. ]
  56470. ))
  56471. characterMakers.push(() => makeCharacter(
  56472. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  56473. {
  56474. front: {
  56475. height: math.unit(5 + 2/12, "feet"),
  56476. weight: math.unit(120, "lb"),
  56477. name: "Front",
  56478. image: {
  56479. source: "./media/characters/leighton-marrow/front.svg",
  56480. extra: 441/409,
  56481. bottom: 37/478
  56482. }
  56483. },
  56484. },
  56485. [
  56486. {
  56487. name: "Normal",
  56488. height: math.unit(5 + 2/12, "feet"),
  56489. default: true
  56490. },
  56491. ]
  56492. ))
  56493. characterMakers.push(() => makeCharacter(
  56494. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  56495. {
  56496. front: {
  56497. height: math.unit(4, "meters"),
  56498. weight: math.unit(1200, "kg"),
  56499. name: "Front",
  56500. image: {
  56501. source: "./media/characters/licos/front.svg",
  56502. extra: 1727/1604,
  56503. bottom: 101/1828
  56504. },
  56505. form: "anthro",
  56506. default: true
  56507. },
  56508. taur_side: {
  56509. height: math.unit(20, "meters"),
  56510. weight: math.unit(1100000, "kg"),
  56511. name: "Side",
  56512. image: {
  56513. source: "./media/characters/licos/taur.svg",
  56514. extra: 1158/1091,
  56515. bottom: 80/1238
  56516. },
  56517. form: "taur",
  56518. default: true
  56519. },
  56520. },
  56521. [
  56522. {
  56523. name: "Normal",
  56524. height: math.unit(4, "meters"),
  56525. default: true,
  56526. form: "anthro"
  56527. },
  56528. {
  56529. name: "Normal",
  56530. height: math.unit(20, "meters"),
  56531. default: true,
  56532. form: "taur"
  56533. },
  56534. ],
  56535. {
  56536. "anthro": {
  56537. name: "Anthro",
  56538. default: true
  56539. },
  56540. "taur": {
  56541. name: "Taur",
  56542. },
  56543. }
  56544. ))
  56545. characterMakers.push(() => makeCharacter(
  56546. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  56547. {
  56548. front: {
  56549. height: math.unit(10 + 3/12, "feet"),
  56550. name: "Front",
  56551. image: {
  56552. source: "./media/characters/theo-monkey/front.svg",
  56553. extra: 1735/1658,
  56554. bottom: 73/1808
  56555. }
  56556. },
  56557. back: {
  56558. height: math.unit(10 + 3/12, "feet"),
  56559. name: "Back",
  56560. image: {
  56561. source: "./media/characters/theo-monkey/back.svg",
  56562. extra: 1742/1664,
  56563. bottom: 33/1775
  56564. }
  56565. },
  56566. head: {
  56567. height: math.unit(2.29, "feet"),
  56568. name: "Head",
  56569. image: {
  56570. source: "./media/characters/theo-monkey/head.svg"
  56571. }
  56572. },
  56573. handPalm: {
  56574. height: math.unit(1.73, "feet"),
  56575. name: "Hand (Palm)",
  56576. image: {
  56577. source: "./media/characters/theo-monkey/hand-palm.svg"
  56578. }
  56579. },
  56580. handBack: {
  56581. height: math.unit(1.63, "feet"),
  56582. name: "Hand (Back)",
  56583. image: {
  56584. source: "./media/characters/theo-monkey/hand-back.svg"
  56585. }
  56586. },
  56587. footSole: {
  56588. height: math.unit(2.15, "feet"),
  56589. name: "Foot (Sole)",
  56590. image: {
  56591. source: "./media/characters/theo-monkey/foot-sole.svg"
  56592. }
  56593. },
  56594. footSide: {
  56595. height: math.unit(1.6, "feet"),
  56596. name: "Foot (Side)",
  56597. image: {
  56598. source: "./media/characters/theo-monkey/foot-side.svg"
  56599. }
  56600. },
  56601. },
  56602. [
  56603. {
  56604. name: "Normal",
  56605. height: math.unit(10 + 3/12, "feet"),
  56606. default: true
  56607. },
  56608. ]
  56609. ))
  56610. characterMakers.push(() => makeCharacter(
  56611. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  56612. {
  56613. front: {
  56614. height: math.unit(11, "feet"),
  56615. weight: math.unit(3000, "lb"),
  56616. preyCapacity: math.unit(10, "people"),
  56617. name: "Front",
  56618. image: {
  56619. source: "./media/characters/brook/front.svg",
  56620. extra: 909/835,
  56621. bottom: 108/1017
  56622. }
  56623. },
  56624. back: {
  56625. height: math.unit(11, "feet"),
  56626. weight: math.unit(3000, "lb"),
  56627. preyCapacity: math.unit(10, "people"),
  56628. name: "Back",
  56629. image: {
  56630. source: "./media/characters/brook/back.svg",
  56631. extra: 976/916,
  56632. bottom: 34/1010
  56633. }
  56634. },
  56635. backAlt: {
  56636. height: math.unit(11, "feet"),
  56637. weight: math.unit(3000, "lb"),
  56638. preyCapacity: math.unit(10, "people"),
  56639. name: "Back (Alt)",
  56640. image: {
  56641. source: "./media/characters/brook/back-alt.svg",
  56642. extra: 1283/1213,
  56643. bottom: 35/1318
  56644. }
  56645. },
  56646. bust: {
  56647. height: math.unit(9.0859030837, "feet"),
  56648. weight: math.unit(3000, "lb"),
  56649. preyCapacity: math.unit(10, "people"),
  56650. name: "Bust",
  56651. image: {
  56652. source: "./media/characters/brook/bust.svg",
  56653. extra: 2043/1923,
  56654. bottom: 0/2043
  56655. }
  56656. },
  56657. },
  56658. [
  56659. {
  56660. name: "Small",
  56661. height: math.unit(11, "feet"),
  56662. default: true
  56663. },
  56664. {
  56665. name: "Towering",
  56666. height: math.unit(5, "km")
  56667. },
  56668. {
  56669. name: "Enormous",
  56670. height: math.unit(25, "earths")
  56671. },
  56672. ]
  56673. ))
  56674. characterMakers.push(() => makeCharacter(
  56675. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  56676. {
  56677. front: {
  56678. height: math.unit(4, "feet"),
  56679. weight: math.unit(150, "lb"),
  56680. name: "Front",
  56681. image: {
  56682. source: "./media/characters/squishi/front.svg",
  56683. extra: 1428/1271,
  56684. bottom: 30/1458
  56685. },
  56686. extraAttributes: {
  56687. "pawSize": {
  56688. name: "Paw Size",
  56689. power: 1,
  56690. type: "length",
  56691. base: math.unit(14, "ShoeSizeMensUS"),
  56692. defaultUnit: "ShoeSizeMensUS"
  56693. },
  56694. }
  56695. },
  56696. side: {
  56697. height: math.unit(4, "feet"),
  56698. weight: math.unit(150, "lb"),
  56699. name: "Side",
  56700. image: {
  56701. source: "./media/characters/squishi/side.svg",
  56702. extra: 1428/1271,
  56703. bottom: 30/1458
  56704. },
  56705. extraAttributes: {
  56706. "pawSize": {
  56707. name: "Paw Size",
  56708. power: 1,
  56709. type: "length",
  56710. base: math.unit(14, "ShoeSizeMensUS"),
  56711. defaultUnit: "ShoeSizeMensUS"
  56712. },
  56713. }
  56714. },
  56715. back: {
  56716. height: math.unit(4, "feet"),
  56717. weight: math.unit(150, "lb"),
  56718. name: "Back",
  56719. image: {
  56720. source: "./media/characters/squishi/back.svg",
  56721. extra: 1428/1271,
  56722. bottom: 30/1458
  56723. },
  56724. extraAttributes: {
  56725. "pawSize": {
  56726. name: "Paw Size",
  56727. power: 1,
  56728. type: "length",
  56729. base: math.unit(14, "ShoeSizeMensUS"),
  56730. defaultUnit: "ShoeSizeMensUS"
  56731. },
  56732. }
  56733. },
  56734. },
  56735. [
  56736. {
  56737. name: "Normal",
  56738. height: math.unit(4, "feet"),
  56739. default: true
  56740. },
  56741. ]
  56742. ))
  56743. characterMakers.push(() => makeCharacter(
  56744. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  56745. {
  56746. front: {
  56747. height: math.unit(7 + 8/12, "feet"),
  56748. weight: math.unit(333, "lb"),
  56749. name: "Front",
  56750. image: {
  56751. source: "./media/characters/vincent-vasroc/front.svg",
  56752. extra: 1962/1860,
  56753. bottom: 41/2003
  56754. }
  56755. },
  56756. back: {
  56757. height: math.unit(7 + 8/12, "feet"),
  56758. weight: math.unit(333, "lb"),
  56759. name: "Back",
  56760. image: {
  56761. source: "./media/characters/vincent-vasroc/back.svg",
  56762. extra: 1952/1815,
  56763. bottom: 33/1985
  56764. }
  56765. },
  56766. paw: {
  56767. height: math.unit(1.24, "feet"),
  56768. name: "Paw",
  56769. image: {
  56770. source: "./media/characters/vincent-vasroc/paw.svg"
  56771. }
  56772. },
  56773. ear: {
  56774. height: math.unit(0.75, "feet"),
  56775. name: "Ear",
  56776. image: {
  56777. source: "./media/characters/vincent-vasroc/ear.svg"
  56778. }
  56779. },
  56780. },
  56781. [
  56782. {
  56783. name: "Nano",
  56784. height: math.unit(92, "micrometers")
  56785. },
  56786. {
  56787. name: "Normal",
  56788. height: math.unit(7 + 8/12, "feet"),
  56789. default: true
  56790. },
  56791. ]
  56792. ))
  56793. characterMakers.push(() => makeCharacter(
  56794. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  56795. {
  56796. frontNsfw: {
  56797. height: math.unit(40, "feet"),
  56798. weight: math.unit(58, "tons"),
  56799. name: "Front (NSFW)",
  56800. image: {
  56801. source: "./media/characters/ru-kahn/front-nsfw.svg",
  56802. extra: 1265/965,
  56803. bottom: 155/1420
  56804. }
  56805. },
  56806. frontSfw: {
  56807. height: math.unit(40, "feet"),
  56808. weight: math.unit(58, "tons"),
  56809. name: "Front (SFW)",
  56810. image: {
  56811. source: "./media/characters/ru-kahn/front-sfw.svg",
  56812. extra: 1265/965,
  56813. bottom: 80/1345
  56814. }
  56815. },
  56816. },
  56817. [
  56818. {
  56819. name: "Small",
  56820. height: math.unit(4, "feet")
  56821. },
  56822. {
  56823. name: "Normal",
  56824. height: math.unit(40, "feet"),
  56825. default: true
  56826. },
  56827. {
  56828. name: "Macro",
  56829. height: math.unit(400, "feet")
  56830. },
  56831. ]
  56832. ))
  56833. characterMakers.push(() => makeCharacter(
  56834. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  56835. {
  56836. frontNude: {
  56837. height: math.unit(6 + 5/12, "feet"),
  56838. name: "Front (Nude)",
  56839. image: {
  56840. source: "./media/characters/sylvie-laforge/front-nude.svg",
  56841. extra: 1369/1366,
  56842. bottom: 68/1437
  56843. }
  56844. },
  56845. frontDressed: {
  56846. height: math.unit(6 + 5/12, "feet"),
  56847. name: "Front (Dressed)",
  56848. image: {
  56849. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  56850. extra: 1369/1366,
  56851. bottom: 68/1437
  56852. }
  56853. },
  56854. },
  56855. [
  56856. {
  56857. name: "Normal",
  56858. height: math.unit(6 + 5/12, "feet"),
  56859. default: true
  56860. },
  56861. {
  56862. name: "Maximum",
  56863. height: math.unit(1930, "feet")
  56864. },
  56865. ]
  56866. ))
  56867. characterMakers.push(() => makeCharacter(
  56868. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  56869. {
  56870. front: {
  56871. height: math.unit(5 + 6/12, "feet"),
  56872. name: "Front",
  56873. image: {
  56874. source: "./media/characters/kaja/front.svg",
  56875. extra: 1874/1514,
  56876. bottom: 117/1991
  56877. }
  56878. },
  56879. },
  56880. [
  56881. {
  56882. name: "Normal",
  56883. height: math.unit(5 + 6/12, "feet"),
  56884. default: true
  56885. },
  56886. ]
  56887. ))
  56888. characterMakers.push(() => makeCharacter(
  56889. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  56890. {
  56891. front: {
  56892. height: math.unit(5 + 9/12, "feet"),
  56893. weight: math.unit(200, "lb"),
  56894. name: "Front",
  56895. image: {
  56896. source: "./media/characters/mark-smith/front.svg",
  56897. extra: 1004/943,
  56898. bottom: 58/1062
  56899. }
  56900. },
  56901. back: {
  56902. height: math.unit(5 + 9/12, "feet"),
  56903. weight: math.unit(200, "lb"),
  56904. name: "Back",
  56905. image: {
  56906. source: "./media/characters/mark-smith/back.svg",
  56907. extra: 1023/953,
  56908. bottom: 24/1047
  56909. }
  56910. },
  56911. head: {
  56912. height: math.unit(1.82, "feet"),
  56913. name: "Head",
  56914. image: {
  56915. source: "./media/characters/mark-smith/head.svg"
  56916. }
  56917. },
  56918. hand: {
  56919. height: math.unit(1.4, "feet"),
  56920. name: "Hand",
  56921. image: {
  56922. source: "./media/characters/mark-smith/hand.svg"
  56923. }
  56924. },
  56925. paw: {
  56926. height: math.unit(1.69, "feet"),
  56927. name: "Paw",
  56928. image: {
  56929. source: "./media/characters/mark-smith/paw.svg"
  56930. }
  56931. },
  56932. },
  56933. [
  56934. {
  56935. name: "Micro",
  56936. height: math.unit(0.25, "inches")
  56937. },
  56938. {
  56939. name: "Normal",
  56940. height: math.unit(5 + 9/12, "feet"),
  56941. default: true
  56942. },
  56943. {
  56944. name: "Macro",
  56945. height: math.unit(500, "feet")
  56946. },
  56947. ]
  56948. ))
  56949. characterMakers.push(() => makeCharacter(
  56950. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  56951. {
  56952. frontNude: {
  56953. height: math.unit(6, "feet"),
  56954. name: "Front (Nude)",
  56955. image: {
  56956. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  56957. extra: 1384/1321,
  56958. bottom: 57/1441
  56959. }
  56960. },
  56961. frontDressed: {
  56962. height: math.unit(6, "feet"),
  56963. name: "Front (Dressed)",
  56964. image: {
  56965. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  56966. extra: 1384/1321,
  56967. bottom: 57/1441
  56968. }
  56969. },
  56970. },
  56971. [
  56972. {
  56973. name: "Normal",
  56974. height: math.unit(6, "feet"),
  56975. default: true
  56976. },
  56977. {
  56978. name: "Maximum",
  56979. height: math.unit(1776, "feet")
  56980. },
  56981. ]
  56982. ))
  56983. characterMakers.push(() => makeCharacter(
  56984. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  56985. {
  56986. front: {
  56987. height: math.unit(2 + 4/12, "feet"),
  56988. weight: math.unit(350, "lb"),
  56989. name: "Front",
  56990. image: {
  56991. source: "./media/characters/devos/front.svg",
  56992. extra: 958/852,
  56993. bottom: 143/1101
  56994. }
  56995. },
  56996. },
  56997. [
  56998. {
  56999. name: "Base",
  57000. height: math.unit(2 + 4/12, "feet"),
  57001. default: true
  57002. },
  57003. ]
  57004. ))
  57005. characterMakers.push(() => makeCharacter(
  57006. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  57007. {
  57008. front: {
  57009. height: math.unit(9 + 2/12, "feet"),
  57010. name: "Front",
  57011. image: {
  57012. source: "./media/characters/hiveheart/front.svg",
  57013. extra: 394/364,
  57014. bottom: 65/459
  57015. }
  57016. },
  57017. back: {
  57018. height: math.unit(9 + 2/12, "feet"),
  57019. name: "Back",
  57020. image: {
  57021. source: "./media/characters/hiveheart/back.svg",
  57022. extra: 374/357,
  57023. bottom: 63/437
  57024. }
  57025. },
  57026. },
  57027. [
  57028. {
  57029. name: "Base",
  57030. height: math.unit(9 + 2/12, "feet"),
  57031. default: true
  57032. },
  57033. ]
  57034. ))
  57035. characterMakers.push(() => makeCharacter(
  57036. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  57037. {
  57038. front: {
  57039. height: math.unit(2.5, "inches"),
  57040. weight: math.unit(0.6, "oz"),
  57041. name: "Front",
  57042. image: {
  57043. source: "./media/characters/bryn/front.svg",
  57044. extra: 1484/1119,
  57045. bottom: 66/1550
  57046. }
  57047. },
  57048. back: {
  57049. height: math.unit(2.5, "inches"),
  57050. weight: math.unit(0.6, "oz"),
  57051. name: "Back",
  57052. image: {
  57053. source: "./media/characters/bryn/back.svg",
  57054. extra: 1472/1170,
  57055. bottom: 32/1504
  57056. }
  57057. },
  57058. wings: {
  57059. height: math.unit(2.5, "inches"),
  57060. weight: math.unit(0.6, "oz"),
  57061. name: "Wings",
  57062. image: {
  57063. source: "./media/characters/bryn/wings.svg",
  57064. extra: 567/448,
  57065. bottom: 10/577
  57066. }
  57067. },
  57068. dressed: {
  57069. height: math.unit(2.5, "inches"),
  57070. weight: math.unit(0.6, "oz"),
  57071. name: "Dressed",
  57072. image: {
  57073. source: "./media/characters/bryn/dressed.svg",
  57074. extra: 719/589,
  57075. bottom: 54/773
  57076. }
  57077. },
  57078. head: {
  57079. height: math.unit(1.75, "inches"),
  57080. name: "Head",
  57081. image: {
  57082. source: "./media/characters/bryn/head.svg"
  57083. }
  57084. },
  57085. foot: {
  57086. height: math.unit(0.4, "inches"),
  57087. name: "Foot",
  57088. image: {
  57089. source: "./media/characters/bryn/foot.svg"
  57090. }
  57091. },
  57092. },
  57093. [
  57094. {
  57095. name: "Normal",
  57096. height: math.unit(2.5, "inches"),
  57097. default: true
  57098. },
  57099. ]
  57100. ))
  57101. characterMakers.push(() => makeCharacter(
  57102. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  57103. {
  57104. side: {
  57105. height: math.unit(7, "feet"),
  57106. weight: math.unit(657, "kg"),
  57107. name: "Side",
  57108. image: {
  57109. source: "./media/characters/delta/side.svg",
  57110. extra: 781/212,
  57111. bottom: 7/788
  57112. },
  57113. extraAttributes: {
  57114. "wingspan": {
  57115. name: "Wingspan",
  57116. power: 1,
  57117. type: "length",
  57118. base: math.unit(48, "feet")
  57119. },
  57120. "length": {
  57121. name: "Length",
  57122. power: 1,
  57123. type: "length",
  57124. base: math.unit(21, "feet")
  57125. },
  57126. "pawSize": {
  57127. name: "Paw Size",
  57128. power: 2,
  57129. type: "area",
  57130. base: math.unit(1.5*1.4, "feet^2")
  57131. },
  57132. }
  57133. },
  57134. },
  57135. [
  57136. {
  57137. name: "Normal",
  57138. height: math.unit(6, "feet"),
  57139. default: true
  57140. },
  57141. ]
  57142. ))
  57143. characterMakers.push(() => makeCharacter(
  57144. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  57145. {
  57146. front: {
  57147. height: math.unit(6, "feet"),
  57148. name: "Front",
  57149. image: {
  57150. source: "./media/characters/pyrow/front.svg",
  57151. extra: 513/486,
  57152. bottom: 14/527
  57153. }
  57154. },
  57155. frontWing: {
  57156. height: math.unit(6, "feet"),
  57157. name: "Front (Wing)",
  57158. image: {
  57159. source: "./media/characters/pyrow/front-wing.svg",
  57160. extra: 539/383,
  57161. bottom: 20/559
  57162. }
  57163. },
  57164. back: {
  57165. height: math.unit(6, "feet"),
  57166. name: "Back",
  57167. image: {
  57168. source: "./media/characters/pyrow/back.svg",
  57169. extra: 500/473,
  57170. bottom: 9/509
  57171. }
  57172. },
  57173. },
  57174. [
  57175. {
  57176. name: "Normal",
  57177. height: math.unit(6, "feet"),
  57178. default: true
  57179. },
  57180. ]
  57181. ))
  57182. characterMakers.push(() => makeCharacter(
  57183. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  57184. {
  57185. front: {
  57186. height: math.unit(5, "meters"),
  57187. weight: math.unit(3, "tonnes"),
  57188. name: "Front",
  57189. image: {
  57190. source: "./media/characters/velikan/front.svg",
  57191. extra: 867/744,
  57192. bottom: 71/938
  57193. },
  57194. extraAttributes: {
  57195. "shoeSize": {
  57196. name: "Shoe Size",
  57197. power: 1,
  57198. type: "length",
  57199. base: math.unit(135, "ShoeSizeUK"),
  57200. defaultUnit: "ShoeSizeUK"
  57201. },
  57202. }
  57203. },
  57204. },
  57205. [
  57206. {
  57207. name: "Normal",
  57208. height: math.unit(5, "meters"),
  57209. default: true
  57210. },
  57211. {
  57212. name: "Macro",
  57213. height: math.unit(1, "km")
  57214. },
  57215. {
  57216. name: "Mega Macro",
  57217. height: math.unit(100, "km")
  57218. },
  57219. {
  57220. name: "Giga Macro",
  57221. height: math.unit(2, "megameters")
  57222. },
  57223. {
  57224. name: "Planetary",
  57225. height: math.unit(22, "megameters")
  57226. },
  57227. {
  57228. name: "Solar",
  57229. height: math.unit(8, "gigameters")
  57230. },
  57231. {
  57232. name: "Cosmic",
  57233. height: math.unit(10, "zettameters")
  57234. },
  57235. {
  57236. name: "Omni",
  57237. height: math.unit(9e260, "multiverses")
  57238. },
  57239. ]
  57240. ))
  57241. characterMakers.push(() => makeCharacter(
  57242. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  57243. {
  57244. front: {
  57245. height: math.unit(4 + 3/12, "feet"),
  57246. weight: math.unit(90, "lb"),
  57247. name: "Front",
  57248. image: {
  57249. source: "./media/characters/sabiki/front.svg",
  57250. extra: 1662/1423,
  57251. bottom: 65/1727
  57252. }
  57253. },
  57254. },
  57255. [
  57256. {
  57257. name: "Normal",
  57258. height: math.unit(4 + 3/12, "feet"),
  57259. default: true
  57260. },
  57261. ]
  57262. ))
  57263. characterMakers.push(() => makeCharacter(
  57264. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  57265. {
  57266. frontSfw: {
  57267. height: math.unit(2, "mm"),
  57268. name: "Front (SFW)",
  57269. image: {
  57270. source: "./media/characters/carmel/front-sfw.svg",
  57271. extra: 1131/1006,
  57272. bottom: 66/1197
  57273. }
  57274. },
  57275. frontNsfw: {
  57276. height: math.unit(2, "mm"),
  57277. name: "Front (NSFW)",
  57278. image: {
  57279. source: "./media/characters/carmel/front-nsfw.svg",
  57280. extra: 1131/1006,
  57281. bottom: 66/1197
  57282. }
  57283. },
  57284. foot: {
  57285. height: math.unit(0.3, "mm"),
  57286. name: "Foot",
  57287. image: {
  57288. source: "./media/characters/carmel/foot.svg"
  57289. }
  57290. },
  57291. tongue: {
  57292. height: math.unit(0.71, "mm"),
  57293. name: "Tongue",
  57294. image: {
  57295. source: "./media/characters/carmel/tongue.svg"
  57296. }
  57297. },
  57298. dick: {
  57299. height: math.unit(0.085, "mm"),
  57300. name: "Dick",
  57301. image: {
  57302. source: "./media/characters/carmel/dick.svg"
  57303. }
  57304. },
  57305. },
  57306. [
  57307. {
  57308. name: "Micro",
  57309. height: math.unit(2, "mm"),
  57310. default: true
  57311. },
  57312. {
  57313. name: "Normal",
  57314. height: math.unit(4 + 8/12, "feet")
  57315. },
  57316. {
  57317. name: "Mega Macro",
  57318. height: math.unit(250, "feet")
  57319. },
  57320. {
  57321. name: "BIGGER",
  57322. height: math.unit(1000, "feet")
  57323. },
  57324. {
  57325. name: "BIGGEST",
  57326. height: math.unit(2, "miles")
  57327. },
  57328. ]
  57329. ))
  57330. characterMakers.push(() => makeCharacter(
  57331. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  57332. {
  57333. front: {
  57334. height: math.unit(6.5, "feet"),
  57335. weight: math.unit(198, "lb"),
  57336. name: "Front",
  57337. image: {
  57338. source: "./media/characters/tamani/anthro.svg",
  57339. extra: 930/890,
  57340. bottom: 34/964
  57341. },
  57342. form: "anthro",
  57343. default: true
  57344. },
  57345. side: {
  57346. height: math.unit(6, "feet"),
  57347. weight: math.unit(198*2, "lb"),
  57348. name: "Side",
  57349. image: {
  57350. source: "./media/characters/tamani/feral.svg",
  57351. extra: 559/519,
  57352. bottom: 43/602
  57353. },
  57354. form: "feral"
  57355. },
  57356. },
  57357. [
  57358. {
  57359. name: "Normal",
  57360. height: math.unit(6.5, "feet"),
  57361. default: true,
  57362. form: "anthro"
  57363. },
  57364. {
  57365. name: "Normal",
  57366. height: math.unit(6, "feet"),
  57367. default: true,
  57368. form: "feral"
  57369. },
  57370. ],
  57371. {
  57372. "anthro": {
  57373. name: "Anthro",
  57374. default: true
  57375. },
  57376. "feral": {
  57377. name: "Feral",
  57378. },
  57379. }
  57380. ))
  57381. characterMakers.push(() => makeCharacter(
  57382. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  57383. {
  57384. front: {
  57385. height: math.unit(4 + 1/12, "feet"),
  57386. weight: math.unit(114, "lb"),
  57387. name: "Front",
  57388. image: {
  57389. source: "./media/characters/dex/front.svg",
  57390. extra: 787/680,
  57391. bottom: 18/805
  57392. }
  57393. },
  57394. side: {
  57395. height: math.unit(4 + 1/12, "feet"),
  57396. weight: math.unit(114, "lb"),
  57397. name: "Side",
  57398. image: {
  57399. source: "./media/characters/dex/side.svg",
  57400. extra: 785/680,
  57401. bottom: 12/797
  57402. }
  57403. },
  57404. back: {
  57405. height: math.unit(4 + 1/12, "feet"),
  57406. weight: math.unit(114, "lb"),
  57407. name: "Back",
  57408. image: {
  57409. source: "./media/characters/dex/back.svg",
  57410. extra: 785/681,
  57411. bottom: 17/802
  57412. }
  57413. },
  57414. loungewear: {
  57415. height: math.unit(4 + 1/12, "feet"),
  57416. weight: math.unit(114, "lb"),
  57417. name: "Loungewear",
  57418. image: {
  57419. source: "./media/characters/dex/loungewear.svg",
  57420. extra: 787/680,
  57421. bottom: 18/805
  57422. }
  57423. },
  57424. workout: {
  57425. height: math.unit(4 + 1/12, "feet"),
  57426. weight: math.unit(114, "lb"),
  57427. name: "Workout",
  57428. image: {
  57429. source: "./media/characters/dex/workout.svg",
  57430. extra: 787/680,
  57431. bottom: 18/805
  57432. }
  57433. },
  57434. schoolUniform: {
  57435. height: math.unit(4 + 1/12, "feet"),
  57436. weight: math.unit(114, "lb"),
  57437. name: "School-uniform",
  57438. image: {
  57439. source: "./media/characters/dex/school-uniform.svg",
  57440. extra: 787/680,
  57441. bottom: 18/805
  57442. }
  57443. },
  57444. maw: {
  57445. height: math.unit(0.55, "feet"),
  57446. name: "Maw",
  57447. image: {
  57448. source: "./media/characters/dex/maw.svg"
  57449. }
  57450. },
  57451. paw: {
  57452. height: math.unit(0.87, "feet"),
  57453. name: "Paw",
  57454. image: {
  57455. source: "./media/characters/dex/paw.svg"
  57456. }
  57457. },
  57458. bust: {
  57459. height: math.unit(1.67, "feet"),
  57460. name: "Bust",
  57461. image: {
  57462. source: "./media/characters/dex/bust.svg"
  57463. }
  57464. },
  57465. },
  57466. [
  57467. {
  57468. name: "Normal",
  57469. height: math.unit(4 + 1/12, "feet"),
  57470. default: true
  57471. },
  57472. ]
  57473. ))
  57474. characterMakers.push(() => makeCharacter(
  57475. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  57476. {
  57477. front: {
  57478. height: math.unit(4 + 3/12, "feet"),
  57479. weight: math.unit(60, "lb"),
  57480. name: "Front",
  57481. image: {
  57482. source: "./media/characters/silke/front.svg",
  57483. extra: 1334/1122,
  57484. bottom: 21/1355
  57485. }
  57486. },
  57487. back: {
  57488. height: math.unit(4 + 3/12, "feet"),
  57489. weight: math.unit(60, "lb"),
  57490. name: "Back",
  57491. image: {
  57492. source: "./media/characters/silke/back.svg",
  57493. extra: 1328/1092,
  57494. bottom: 16/1344
  57495. }
  57496. },
  57497. dressed: {
  57498. height: math.unit(4 + 3/12, "feet"),
  57499. weight: math.unit(60, "lb"),
  57500. name: "Dressed",
  57501. image: {
  57502. source: "./media/characters/silke/dressed.svg",
  57503. extra: 1334/1122,
  57504. bottom: 43/1377
  57505. }
  57506. },
  57507. },
  57508. [
  57509. {
  57510. name: "Normal",
  57511. height: math.unit(4 + 3/12, "feet"),
  57512. default: true
  57513. },
  57514. ]
  57515. ))
  57516. characterMakers.push(() => makeCharacter(
  57517. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  57518. {
  57519. front: {
  57520. height: math.unit(1.58, "meters"),
  57521. weight: math.unit(47, "kg"),
  57522. name: "Front",
  57523. image: {
  57524. source: "./media/characters/wireshark/front.svg",
  57525. extra: 883/838,
  57526. bottom: 66/949
  57527. }
  57528. },
  57529. },
  57530. [
  57531. {
  57532. name: "Normal",
  57533. height: math.unit(1.58, "meters"),
  57534. default: true
  57535. },
  57536. ]
  57537. ))
  57538. characterMakers.push(() => makeCharacter(
  57539. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  57540. {
  57541. front: {
  57542. height: math.unit(6, "meters"),
  57543. weight: math.unit(15000, "kg"),
  57544. name: "Front",
  57545. image: {
  57546. source: "./media/characters/gallagher/front.svg",
  57547. extra: 532/493,
  57548. bottom: 0/532
  57549. }
  57550. },
  57551. },
  57552. [
  57553. {
  57554. name: "Normal",
  57555. height: math.unit(6, "meters"),
  57556. default: true
  57557. },
  57558. ]
  57559. ))
  57560. characterMakers.push(() => makeCharacter(
  57561. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  57562. {
  57563. front: {
  57564. height: math.unit(2.4, "meters"),
  57565. weight: math.unit(270, "kg"),
  57566. name: "Front",
  57567. image: {
  57568. source: "./media/characters/alice/front.svg",
  57569. extra: 950/900,
  57570. bottom: 36/986
  57571. }
  57572. },
  57573. side: {
  57574. height: math.unit(2.4, "meters"),
  57575. weight: math.unit(270, "kg"),
  57576. name: "Side",
  57577. image: {
  57578. source: "./media/characters/alice/side.svg",
  57579. extra: 921/876,
  57580. bottom: 19/940
  57581. }
  57582. },
  57583. dressed: {
  57584. height: math.unit(2.4, "meters"),
  57585. weight: math.unit(270, "kg"),
  57586. name: "Dressed",
  57587. image: {
  57588. source: "./media/characters/alice/dressed.svg",
  57589. extra: 905/850,
  57590. bottom: 81/986
  57591. }
  57592. },
  57593. fishnet: {
  57594. height: math.unit(2.4, "meters"),
  57595. weight: math.unit(270, "kg"),
  57596. name: "Fishnet",
  57597. image: {
  57598. source: "./media/characters/alice/fishnet.svg",
  57599. extra: 905/850,
  57600. bottom: 81/986
  57601. }
  57602. },
  57603. },
  57604. [
  57605. {
  57606. name: "Normal",
  57607. height: math.unit(2.4, "meters"),
  57608. default: true
  57609. },
  57610. ]
  57611. ))
  57612. characterMakers.push(() => makeCharacter(
  57613. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  57614. {
  57615. front: {
  57616. height: math.unit(175.25, "feet"),
  57617. name: "Front",
  57618. image: {
  57619. source: "./media/characters/fio/front.svg",
  57620. extra: 1883/1591,
  57621. bottom: 34/1917
  57622. }
  57623. },
  57624. },
  57625. [
  57626. {
  57627. name: "Normal",
  57628. height: math.unit(175.25, "cm"),
  57629. default: true
  57630. },
  57631. ]
  57632. ))
  57633. characterMakers.push(() => makeCharacter(
  57634. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  57635. {
  57636. side: {
  57637. height: math.unit(6, "meters"),
  57638. weight: math.unit(3400, "kg"),
  57639. preyCapacity: math.unit(1700, "liters"),
  57640. name: "Side",
  57641. image: {
  57642. source: "./media/characters/hass/side.svg",
  57643. extra: 1058/997,
  57644. bottom: 177/1235
  57645. }
  57646. },
  57647. feeding: {
  57648. height: math.unit(6*0.63, "meters"),
  57649. weight: math.unit(3400, "kg"),
  57650. preyCapacity: math.unit(1700, "liters"),
  57651. name: "Feeding",
  57652. image: {
  57653. source: "./media/characters/hass/feeding.svg",
  57654. extra: 689/579,
  57655. bottom: 146/835
  57656. }
  57657. },
  57658. guts: {
  57659. height: math.unit(6, "meters"),
  57660. weight: math.unit(3400, "kg"),
  57661. name: "Guts",
  57662. image: {
  57663. source: "./media/characters/hass/guts.svg",
  57664. extra: 1223/1198,
  57665. bottom: 182/1405
  57666. }
  57667. },
  57668. dickFront: {
  57669. height: math.unit(1.4, "meters"),
  57670. name: "Dick (Front)",
  57671. image: {
  57672. source: "./media/characters/hass/dick-front.svg"
  57673. }
  57674. },
  57675. dickSide: {
  57676. height: math.unit(1.3, "meters"),
  57677. name: "Dick (Side)",
  57678. image: {
  57679. source: "./media/characters/hass/dick-side.svg"
  57680. }
  57681. },
  57682. dickBack: {
  57683. height: math.unit(1.4, "meters"),
  57684. name: "Dick (Back)",
  57685. image: {
  57686. source: "./media/characters/hass/dick-back.svg"
  57687. }
  57688. },
  57689. },
  57690. [
  57691. {
  57692. name: "Normal",
  57693. height: math.unit(6, "meters"),
  57694. default: true
  57695. },
  57696. ]
  57697. ))
  57698. characterMakers.push(() => makeCharacter(
  57699. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  57700. {
  57701. front: {
  57702. height: math.unit(4, "feet"),
  57703. weight: math.unit(60, "lb"),
  57704. name: "Front",
  57705. image: {
  57706. source: "./media/characters/hickory-finnegan/front.svg",
  57707. extra: 444/411,
  57708. bottom: 10/454
  57709. }
  57710. },
  57711. side: {
  57712. height: math.unit(4, "feet"),
  57713. weight: math.unit(60, "lb"),
  57714. name: "Side",
  57715. image: {
  57716. source: "./media/characters/hickory-finnegan/side.svg",
  57717. extra: 444/411,
  57718. bottom: 10/454
  57719. }
  57720. },
  57721. back: {
  57722. height: math.unit(4, "feet"),
  57723. weight: math.unit(60, "lb"),
  57724. name: "Back",
  57725. image: {
  57726. source: "./media/characters/hickory-finnegan/back.svg",
  57727. extra: 444/411,
  57728. bottom: 10/454
  57729. }
  57730. },
  57731. },
  57732. [
  57733. {
  57734. name: "Normal",
  57735. height: math.unit(4, "feet"),
  57736. default: true
  57737. },
  57738. ]
  57739. ))
  57740. characterMakers.push(() => makeCharacter(
  57741. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  57742. {
  57743. snivy_front: {
  57744. height: math.unit(2, "feet"),
  57745. weight: math.unit(17.9, "lb"),
  57746. name: "Front",
  57747. image: {
  57748. source: "./media/characters/robin-phox/snivy-front.svg",
  57749. extra: 569/504,
  57750. bottom: 33/602
  57751. },
  57752. form: "snivy",
  57753. default: true
  57754. },
  57755. snivy_frontNsfw: {
  57756. height: math.unit(2, "feet"),
  57757. weight: math.unit(17.9, "lb"),
  57758. name: "Front (NSFW)",
  57759. image: {
  57760. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  57761. extra: 569/504,
  57762. bottom: 33/602
  57763. },
  57764. form: "snivy",
  57765. },
  57766. snivy_back: {
  57767. height: math.unit(2, "feet"),
  57768. weight: math.unit(17.9, "lb"),
  57769. name: "Back",
  57770. image: {
  57771. source: "./media/characters/robin-phox/snivy-back.svg",
  57772. extra: 577/508,
  57773. bottom: 21/598
  57774. },
  57775. form: "snivy",
  57776. },
  57777. snivy_foot: {
  57778. height: math.unit(0.68, "feet"),
  57779. name: "Foot",
  57780. image: {
  57781. source: "./media/characters/robin-phox/snivy-foot.svg"
  57782. },
  57783. form: "snivy",
  57784. },
  57785. snivy_sole: {
  57786. height: math.unit(0.68, "feet"),
  57787. name: "Sole",
  57788. image: {
  57789. source: "./media/characters/robin-phox/snivy-sole.svg"
  57790. },
  57791. form: "snivy",
  57792. },
  57793. yoshi_front: {
  57794. height: math.unit(6, "feet"),
  57795. weight: math.unit(150, "lb"),
  57796. name: "Front",
  57797. image: {
  57798. source: "./media/characters/robin-phox/yoshi-front.svg",
  57799. extra: 890/792,
  57800. bottom: 29/919
  57801. },
  57802. form: "yoshi",
  57803. default: true
  57804. },
  57805. yoshi_frontNsfw: {
  57806. height: math.unit(6, "feet"),
  57807. weight: math.unit(150, "lb"),
  57808. name: "Front (NSFW)",
  57809. image: {
  57810. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  57811. extra: 890/792,
  57812. bottom: 29/919
  57813. },
  57814. form: "yoshi",
  57815. },
  57816. yoshi_back: {
  57817. height: math.unit(6, "feet"),
  57818. weight: math.unit(150, "lb"),
  57819. name: "Back",
  57820. image: {
  57821. source: "./media/characters/robin-phox/yoshi-back.svg",
  57822. extra: 890/792,
  57823. bottom: 29/919
  57824. },
  57825. form: "yoshi",
  57826. },
  57827. yoshi_foot: {
  57828. height: math.unit(1.5, "feet"),
  57829. name: "Foot",
  57830. image: {
  57831. source: "./media/characters/robin-phox/yoshi-foot.svg"
  57832. },
  57833. form: "yoshi",
  57834. },
  57835. delphox_front: {
  57836. height: math.unit(4 + 11/12, "feet"),
  57837. weight: math.unit(86, "lb"),
  57838. name: "Front",
  57839. image: {
  57840. source: "./media/characters/robin-phox/delphox-front.svg",
  57841. extra: 1266/1069,
  57842. bottom: 32/1298
  57843. },
  57844. form: "delphox",
  57845. default: true
  57846. },
  57847. delphox_frontNsfw: {
  57848. height: math.unit(4 + 11/12, "feet"),
  57849. weight: math.unit(86, "lb"),
  57850. name: "Front (NSFW)",
  57851. image: {
  57852. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  57853. extra: 1266/1069,
  57854. bottom: 32/1298
  57855. },
  57856. form: "delphox",
  57857. },
  57858. delphox_back: {
  57859. height: math.unit(4 + 11/12, "feet"),
  57860. weight: math.unit(86, "lb"),
  57861. name: "Back",
  57862. image: {
  57863. source: "./media/characters/robin-phox/delphox-back.svg",
  57864. extra: 1269/1083,
  57865. bottom: 15/1284
  57866. },
  57867. form: "delphox",
  57868. },
  57869. mienshao_front: {
  57870. height: math.unit(4 + 7/12, "feet"),
  57871. weight: math.unit(78.3, "lb"),
  57872. name: "Front",
  57873. image: {
  57874. source: "./media/characters/robin-phox/mienshao-front.svg",
  57875. extra: 1052/970,
  57876. bottom: 108/1160
  57877. },
  57878. form: "mienshao",
  57879. default: true
  57880. },
  57881. mienshao_frontNsfw: {
  57882. height: math.unit(4 + 7/12, "feet"),
  57883. weight: math.unit(78.3, "lb"),
  57884. name: "Front (NSFW)",
  57885. image: {
  57886. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  57887. extra: 1052/970,
  57888. bottom: 108/1160
  57889. },
  57890. form: "mienshao",
  57891. },
  57892. mienshao_back: {
  57893. height: math.unit(4 + 7/12, "feet"),
  57894. weight: math.unit(78.3, "lb"),
  57895. name: "Back",
  57896. image: {
  57897. source: "./media/characters/robin-phox/mienshao-back.svg",
  57898. extra: 1102/982,
  57899. bottom: 32/1134
  57900. },
  57901. form: "mienshao",
  57902. },
  57903. inteleon_front: {
  57904. height: math.unit(6 + 3/12, "feet"),
  57905. weight: math.unit(99.6, "lb"),
  57906. name: "Front",
  57907. image: {
  57908. source: "./media/characters/robin-phox/inteleon-front.svg",
  57909. extra: 910/799,
  57910. bottom: 76/986
  57911. },
  57912. form: "inteleon",
  57913. default: true
  57914. },
  57915. inteleon_frontNsfw: {
  57916. height: math.unit(6 + 3/12, "feet"),
  57917. weight: math.unit(99.6, "lb"),
  57918. name: "Front (NSFW)",
  57919. image: {
  57920. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  57921. extra: 910/799,
  57922. bottom: 76/986
  57923. },
  57924. form: "inteleon",
  57925. },
  57926. inteleon_back: {
  57927. height: math.unit(6 + 3/12, "feet"),
  57928. weight: math.unit(99.6, "lb"),
  57929. name: "Back",
  57930. image: {
  57931. source: "./media/characters/robin-phox/inteleon-back.svg",
  57932. extra: 907/796,
  57933. bottom: 25/932
  57934. },
  57935. form: "inteleon",
  57936. },
  57937. reshiram_front: {
  57938. height: math.unit(10 + 6/12, "feet"),
  57939. weight: math.unit(727.5, "lb"),
  57940. name: "Front",
  57941. image: {
  57942. source: "./media/characters/robin-phox/reshiram-front.svg",
  57943. extra: 1198/940,
  57944. bottom: 123/1321
  57945. },
  57946. form: "reshiram",
  57947. },
  57948. reshiram_frontNsfw: {
  57949. height: math.unit(10 + 6/12, "feet"),
  57950. weight: math.unit(727.5, "lb"),
  57951. name: "Front-nsfw",
  57952. image: {
  57953. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  57954. extra: 1198/940,
  57955. bottom: 123/1321
  57956. },
  57957. form: "reshiram",
  57958. },
  57959. reshiram_back: {
  57960. height: math.unit(10 + 6/12, "feet"),
  57961. weight: math.unit(727.5, "lb"),
  57962. name: "Back",
  57963. image: {
  57964. source: "./media/characters/robin-phox/reshiram-back.svg",
  57965. extra: 1024/904,
  57966. bottom: 85/1109
  57967. },
  57968. form: "reshiram",
  57969. },
  57970. samurott_front: {
  57971. height: math.unit(8, "feet"),
  57972. weight: math.unit(208.6, "lb"),
  57973. name: "Front",
  57974. image: {
  57975. source: "./media/characters/robin-phox/samurott-front.svg",
  57976. extra: 1048/984,
  57977. bottom: 100/1148
  57978. },
  57979. form: "samurott",
  57980. },
  57981. samurott_frontNsfw: {
  57982. height: math.unit(8, "feet"),
  57983. weight: math.unit(208.6, "lb"),
  57984. name: "Front-nsfw",
  57985. image: {
  57986. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  57987. extra: 1048/984,
  57988. bottom: 100/1148
  57989. },
  57990. form: "samurott",
  57991. },
  57992. samurott_back: {
  57993. height: math.unit(8, "feet"),
  57994. weight: math.unit(208.6, "lb"),
  57995. name: "Back",
  57996. image: {
  57997. source: "./media/characters/robin-phox/samurott-back.svg",
  57998. extra: 1110/1042,
  57999. bottom: 12/1122
  58000. },
  58001. form: "samurott",
  58002. },
  58003. samurott_feral: {
  58004. height: math.unit(4 + 11/12, "feet"),
  58005. weight: math.unit(208.6, "lb"),
  58006. name: "Feral",
  58007. image: {
  58008. source: "./media/characters/robin-phox/samurott-feral.svg",
  58009. extra: 766/681,
  58010. bottom: 108/874
  58011. },
  58012. form: "samurott",
  58013. },
  58014. },
  58015. [
  58016. {
  58017. name: "Normal",
  58018. height: math.unit(2, "feet"),
  58019. default: true,
  58020. form: "snivy"
  58021. },
  58022. {
  58023. name: "Normal",
  58024. height: math.unit(6, "feet"),
  58025. default: true,
  58026. form: "yoshi"
  58027. },
  58028. {
  58029. name: "Normal",
  58030. height: math.unit(4 + 11/12, "feet"),
  58031. default: true,
  58032. form: "delphox"
  58033. },
  58034. {
  58035. name: "Normal",
  58036. height: math.unit(4 + 7/12, "feet"),
  58037. default: true,
  58038. form: "mienshao"
  58039. },
  58040. {
  58041. name: "Normal",
  58042. height: math.unit(6 + 3/12, "feet"),
  58043. default: true,
  58044. form: "inteleon"
  58045. },
  58046. {
  58047. name: "Normal",
  58048. height: math.unit(10 + 6/12, "feet"),
  58049. default: true,
  58050. form: "reshiram"
  58051. },
  58052. {
  58053. name: "Normal",
  58054. height: math.unit(8, "feet"),
  58055. default: true,
  58056. form: "samurott"
  58057. },
  58058. {
  58059. name: "Macro",
  58060. height: math.unit(500, "feet"),
  58061. allForms: true
  58062. },
  58063. {
  58064. name: "Mega Macro",
  58065. height: math.unit(10, "earths"),
  58066. allForms: true
  58067. },
  58068. {
  58069. name: "Giga Macro",
  58070. height: math.unit(1, "galaxy"),
  58071. allForms: true
  58072. },
  58073. {
  58074. name: "Godly Macro",
  58075. height: math.unit(1e10, "multiverses"),
  58076. allForms: true
  58077. },
  58078. ],
  58079. {
  58080. "snivy": {
  58081. name: "Snivy",
  58082. default: true
  58083. },
  58084. "yoshi": {
  58085. name: "Yoshi",
  58086. },
  58087. "delphox": {
  58088. name: "Delphox",
  58089. },
  58090. "mienshao": {
  58091. name: "Mienshao",
  58092. },
  58093. "inteleon": {
  58094. name: "Inteleon",
  58095. },
  58096. "reshiram": {
  58097. name: "Reshiram",
  58098. },
  58099. "samurott": {
  58100. name: "Samurott",
  58101. },
  58102. }
  58103. ))
  58104. characterMakers.push(() => makeCharacter(
  58105. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  58106. {
  58107. front: {
  58108. height: math.unit(4, "feet"),
  58109. name: "Front",
  58110. image: {
  58111. source: "./media/characters/ash-leung/front.svg",
  58112. extra: 1916/1792,
  58113. bottom: 50/1966
  58114. }
  58115. },
  58116. },
  58117. [
  58118. {
  58119. name: "Atomic",
  58120. height: math.unit(1, "angstrom")
  58121. },
  58122. {
  58123. name: "Microscopic",
  58124. height: math.unit(4000, "angstroms")
  58125. },
  58126. {
  58127. name: "Speck",
  58128. height: math.unit(1, "mm")
  58129. },
  58130. {
  58131. name: "Small",
  58132. height: math.unit(1, "inch")
  58133. },
  58134. {
  58135. name: "Normal",
  58136. height: math.unit(4, "feet"),
  58137. default: true
  58138. },
  58139. ]
  58140. ))
  58141. characterMakers.push(() => makeCharacter(
  58142. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  58143. {
  58144. frontDressed: {
  58145. height: math.unit(2.08, "meters"),
  58146. weight: math.unit(175, "lb"),
  58147. name: "Front (Dressed)",
  58148. image: {
  58149. source: "./media/characters/carie/front-dressed.svg",
  58150. extra: 456/417,
  58151. bottom: 7/463
  58152. }
  58153. },
  58154. backDressed: {
  58155. height: math.unit(2.08, "meters"),
  58156. weight: math.unit(175, "lb"),
  58157. name: "Back (Dressed)",
  58158. image: {
  58159. source: "./media/characters/carie/back-dressed.svg",
  58160. extra: 455/414,
  58161. bottom: 11/466
  58162. }
  58163. },
  58164. front: {
  58165. height: math.unit(2, "meters"),
  58166. weight: math.unit(175, "lb"),
  58167. name: "Front",
  58168. image: {
  58169. source: "./media/characters/carie/front.svg",
  58170. extra: 438/399,
  58171. bottom: 12/450
  58172. }
  58173. },
  58174. back: {
  58175. height: math.unit(2, "meters"),
  58176. weight: math.unit(175, "lb"),
  58177. name: "Back",
  58178. image: {
  58179. source: "./media/characters/carie/back.svg",
  58180. extra: 438/397,
  58181. bottom: 7/445
  58182. }
  58183. },
  58184. },
  58185. [
  58186. {
  58187. name: "Normal",
  58188. height: math.unit(2.08, "meters"),
  58189. default: true
  58190. },
  58191. {
  58192. name: "Macro",
  58193. height: math.unit(2.08e3, "meters")
  58194. },
  58195. {
  58196. name: "Mega Macro",
  58197. height: math.unit(2.08e6, "meters")
  58198. },
  58199. {
  58200. name: "Giga Macro",
  58201. height: math.unit(2.08e9, "meters")
  58202. },
  58203. {
  58204. name: "Tera Macro",
  58205. height: math.unit(2.08e12, "meters")
  58206. },
  58207. {
  58208. name: "Peta Macro",
  58209. height: math.unit(2.08e15, "meters")
  58210. },
  58211. {
  58212. name: "Exa Macro",
  58213. height: math.unit(2.08e18, "meters")
  58214. },
  58215. {
  58216. name: "Zetta Macro",
  58217. height: math.unit(2.08e21, "meters")
  58218. },
  58219. {
  58220. name: "Yotta Macro",
  58221. height: math.unit(2.08e24, "meters")
  58222. },
  58223. ]
  58224. ))
  58225. characterMakers.push(() => makeCharacter(
  58226. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  58227. {
  58228. front: {
  58229. height: math.unit(5 + 2/12, "feet"),
  58230. weight: math.unit(120, "lb"),
  58231. name: "Front",
  58232. image: {
  58233. source: "./media/characters/sai-bree/front.svg",
  58234. extra: 1843/1702,
  58235. bottom: 91/1934
  58236. }
  58237. },
  58238. back: {
  58239. height: math.unit(5 + 2/12, "feet"),
  58240. weight: math.unit(120, "lb"),
  58241. name: "Back",
  58242. image: {
  58243. source: "./media/characters/sai-bree/back.svg",
  58244. extra: 1809/1637,
  58245. bottom: 56/1865
  58246. }
  58247. },
  58248. },
  58249. [
  58250. {
  58251. name: "Normal",
  58252. height: math.unit(5 + 2/12, "feet"),
  58253. default: true
  58254. },
  58255. {
  58256. name: "Macro",
  58257. height: math.unit(500, "feet")
  58258. },
  58259. ]
  58260. ))
  58261. characterMakers.push(() => makeCharacter(
  58262. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  58263. {
  58264. side: {
  58265. height: math.unit(0.77, "meters"),
  58266. weight: math.unit(120, "lb"),
  58267. name: "Side",
  58268. image: {
  58269. source: "./media/characters/davwyn/side.svg",
  58270. extra: 1557/1225,
  58271. bottom: 131/1688
  58272. }
  58273. },
  58274. front: {
  58275. height: math.unit(0.835410, "meters"),
  58276. weight: math.unit(120, "lb"),
  58277. name: "Front",
  58278. image: {
  58279. source: "./media/characters/davwyn/front.svg",
  58280. extra: 870/843,
  58281. bottom: 175/1045
  58282. }
  58283. },
  58284. },
  58285. [
  58286. {
  58287. name: "Minidrake",
  58288. height: math.unit(0.77/4, "meters")
  58289. },
  58290. {
  58291. name: "Normal",
  58292. height: math.unit(0.77, "meters"),
  58293. default: true
  58294. },
  58295. ]
  58296. ))
  58297. characterMakers.push(() => makeCharacter(
  58298. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  58299. {
  58300. front: {
  58301. height: math.unit(10 + 3/12, "feet"),
  58302. weight: math.unit(2857, "lb"),
  58303. name: "Front",
  58304. image: {
  58305. source: "./media/characters/balans/front.svg",
  58306. extra: 427/402,
  58307. bottom: 26/453
  58308. }
  58309. },
  58310. side: {
  58311. height: math.unit(10 + 3/12, "feet"),
  58312. weight: math.unit(2857, "lb"),
  58313. name: "Side",
  58314. image: {
  58315. source: "./media/characters/balans/side.svg",
  58316. extra: 397/371,
  58317. bottom: 17/414
  58318. }
  58319. },
  58320. back: {
  58321. height: math.unit(10 + 3/12, "feet"),
  58322. weight: math.unit(2857, "lb"),
  58323. name: "Back",
  58324. image: {
  58325. source: "./media/characters/balans/back.svg",
  58326. extra: 408/381,
  58327. bottom: 14/422
  58328. }
  58329. },
  58330. hand: {
  58331. height: math.unit(1.15, "feet"),
  58332. name: "Hand",
  58333. image: {
  58334. source: "./media/characters/balans/hand.svg"
  58335. }
  58336. },
  58337. footRest: {
  58338. height: math.unit(3.1, "feet"),
  58339. name: "Foot (Rest)",
  58340. image: {
  58341. source: "./media/characters/balans/foot-rest.svg"
  58342. }
  58343. },
  58344. footActive: {
  58345. height: math.unit(3.5, "feet"),
  58346. name: "Foot (Active)",
  58347. image: {
  58348. source: "./media/characters/balans/foot-active.svg"
  58349. }
  58350. },
  58351. },
  58352. [
  58353. {
  58354. name: "Normal",
  58355. height: math.unit(10 + 3/12, "feet"),
  58356. default: true
  58357. },
  58358. ]
  58359. ))
  58360. characterMakers.push(() => makeCharacter(
  58361. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  58362. {
  58363. side: {
  58364. height: math.unit(9, "meters"),
  58365. weight: math.unit(114, "tonnes"),
  58366. name: "Side",
  58367. image: {
  58368. source: "./media/characters/eldkveikir/side.svg",
  58369. extra: 1927/338,
  58370. bottom: 42/1969
  58371. }
  58372. },
  58373. sitting: {
  58374. height: math.unit(13.4, "meters"),
  58375. weight: math.unit(114, "tonnes"),
  58376. name: "Sitting",
  58377. image: {
  58378. source: "./media/characters/eldkveikir/sitting.svg",
  58379. extra: 1108/963,
  58380. bottom: 610/1718
  58381. }
  58382. },
  58383. maw: {
  58384. height: math.unit(8.36, "meters"),
  58385. name: "Maw",
  58386. image: {
  58387. source: "./media/characters/eldkveikir/maw.svg"
  58388. }
  58389. },
  58390. hand: {
  58391. height: math.unit(4.84, "meters"),
  58392. name: "Hand",
  58393. image: {
  58394. source: "./media/characters/eldkveikir/hand.svg"
  58395. }
  58396. },
  58397. foot: {
  58398. height: math.unit(6.9, "meters"),
  58399. name: "Foot",
  58400. image: {
  58401. source: "./media/characters/eldkveikir/foot.svg"
  58402. }
  58403. },
  58404. genitals: {
  58405. height: math.unit(9.6, "meters"),
  58406. name: "Genitals",
  58407. image: {
  58408. source: "./media/characters/eldkveikir/genitals.svg"
  58409. }
  58410. },
  58411. },
  58412. [
  58413. {
  58414. name: "Normal",
  58415. height: math.unit(9, "meters"),
  58416. default: true
  58417. },
  58418. ]
  58419. ))
  58420. characterMakers.push(() => makeCharacter(
  58421. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  58422. {
  58423. front: {
  58424. height: math.unit(14, "feet"),
  58425. weight: math.unit(4100, "lb"),
  58426. name: "Front",
  58427. image: {
  58428. source: "./media/characters/arrow/front.svg",
  58429. extra: 330/318,
  58430. bottom: 56/386
  58431. }
  58432. },
  58433. },
  58434. [
  58435. {
  58436. name: "Normal",
  58437. height: math.unit(14, "feet"),
  58438. default: true
  58439. },
  58440. {
  58441. name: "Minimacro",
  58442. height: math.unit(63, "feet")
  58443. },
  58444. {
  58445. name: "Macro",
  58446. height: math.unit(630, "feet")
  58447. },
  58448. {
  58449. name: "Megamacro",
  58450. height: math.unit(12600, "feet")
  58451. },
  58452. {
  58453. name: "Gigamacro",
  58454. height: math.unit(18000, "miles")
  58455. },
  58456. ]
  58457. ))
  58458. characterMakers.push(() => makeCharacter(
  58459. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  58460. {
  58461. front: {
  58462. height: math.unit(10, "feet"),
  58463. weight: math.unit(2.4, "tons"),
  58464. name: "Front",
  58465. image: {
  58466. source: "./media/characters/3yk-k0-unit/front.svg",
  58467. extra: 573/561,
  58468. bottom: 33/606
  58469. }
  58470. },
  58471. back: {
  58472. height: math.unit(10, "feet"),
  58473. weight: math.unit(2.4, "tons"),
  58474. name: "Back",
  58475. image: {
  58476. source: "./media/characters/3yk-k0-unit/back.svg",
  58477. extra: 614/573,
  58478. bottom: 32/646
  58479. }
  58480. },
  58481. maw: {
  58482. height: math.unit(2.15, "feet"),
  58483. name: "Maw",
  58484. image: {
  58485. source: "./media/characters/3yk-k0-unit/maw.svg"
  58486. }
  58487. },
  58488. },
  58489. [
  58490. {
  58491. name: "Normal",
  58492. height: math.unit(10, "feet"),
  58493. default: true
  58494. },
  58495. ]
  58496. ))
  58497. characterMakers.push(() => makeCharacter(
  58498. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  58499. {
  58500. front: {
  58501. height: math.unit(8 + 8/12, "feet"),
  58502. name: "Front",
  58503. image: {
  58504. source: "./media/characters/nemo/front.svg",
  58505. extra: 1308/1217,
  58506. bottom: 57/1365
  58507. }
  58508. },
  58509. },
  58510. [
  58511. {
  58512. name: "Normal",
  58513. height: math.unit(8 + 8/12, "feet"),
  58514. default: true
  58515. },
  58516. ]
  58517. ))
  58518. characterMakers.push(() => makeCharacter(
  58519. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  58520. {
  58521. front: {
  58522. height: math.unit(8, "feet"),
  58523. weight: math.unit(760, "lb"),
  58524. name: "Front",
  58525. image: {
  58526. source: "./media/characters/rexx/front.svg",
  58527. extra: 786/750,
  58528. bottom: 17/803
  58529. },
  58530. extraAttributes: {
  58531. "pawLength": {
  58532. name: "Paw Length",
  58533. power: 1,
  58534. type: "length",
  58535. base: math.unit(27, "inches")
  58536. },
  58537. }
  58538. },
  58539. },
  58540. [
  58541. {
  58542. name: "Micro",
  58543. height: math.unit(2, "inches")
  58544. },
  58545. {
  58546. name: "Normal",
  58547. height: math.unit(8, "feet"),
  58548. default: true
  58549. },
  58550. {
  58551. name: "Macro",
  58552. height: math.unit(150, "feet")
  58553. },
  58554. ]
  58555. ))
  58556. characterMakers.push(() => makeCharacter(
  58557. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  58558. {
  58559. front: {
  58560. height: math.unit(18, "feet"),
  58561. weight: math.unit(1975, "lb"),
  58562. name: "Front",
  58563. image: {
  58564. source: "./media/characters/draco/front.svg",
  58565. extra: 1325/1241,
  58566. bottom: 83/1408
  58567. }
  58568. },
  58569. back: {
  58570. height: math.unit(18, "feet"),
  58571. weight: math.unit(1975, "lb"),
  58572. name: "Back",
  58573. image: {
  58574. source: "./media/characters/draco/back.svg",
  58575. extra: 1332/1250,
  58576. bottom: 43/1375
  58577. }
  58578. },
  58579. dick: {
  58580. height: math.unit(7.5, "feet"),
  58581. name: "Dick",
  58582. image: {
  58583. source: "./media/characters/draco/dick.svg"
  58584. }
  58585. },
  58586. },
  58587. [
  58588. {
  58589. name: "Normal",
  58590. height: math.unit(18, "feet"),
  58591. default: true
  58592. },
  58593. ]
  58594. ))
  58595. characterMakers.push(() => makeCharacter(
  58596. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  58597. {
  58598. front: {
  58599. height: math.unit(3.2, "meters"),
  58600. name: "Front",
  58601. image: {
  58602. source: "./media/characters/harriett/front.svg",
  58603. extra: 1966/1915,
  58604. bottom: 9/1975
  58605. }
  58606. },
  58607. },
  58608. [
  58609. {
  58610. name: "Normal",
  58611. height: math.unit(3.2, "meters"),
  58612. default: true
  58613. },
  58614. ]
  58615. ))
  58616. characterMakers.push(() => makeCharacter(
  58617. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  58618. {
  58619. standing: {
  58620. height: math.unit(180, "cm"),
  58621. weight: math.unit(185, "lb"),
  58622. name: "Standing",
  58623. image: {
  58624. source: "./media/characters/serpentus/standing.svg",
  58625. extra: 882/878,
  58626. bottom: 16/898
  58627. }
  58628. },
  58629. sitting: {
  58630. height: math.unit(0.8, "meter"),
  58631. weight: math.unit(155, "lb"),
  58632. name: "Sitting",
  58633. image: {
  58634. source: "./media/characters/serpentus/sitting.svg",
  58635. extra: 293/290,
  58636. bottom: 140/433
  58637. }
  58638. },
  58639. },
  58640. [
  58641. {
  58642. name: "Normal",
  58643. height: math.unit(1.8, "meter"),
  58644. default: true
  58645. },
  58646. ]
  58647. ))
  58648. characterMakers.push(() => makeCharacter(
  58649. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  58650. {
  58651. front: {
  58652. height: math.unit(5.7174385736, "feet"),
  58653. name: "Front",
  58654. image: {
  58655. source: "./media/characters/nova-polecat/front.svg",
  58656. extra: 1317/1216,
  58657. bottom: 92/1409
  58658. }
  58659. },
  58660. },
  58661. [
  58662. {
  58663. name: "Normal",
  58664. height: math.unit(5.7174385736, "feet"),
  58665. default: true
  58666. },
  58667. ]
  58668. ))
  58669. characterMakers.push(() => makeCharacter(
  58670. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  58671. {
  58672. front: {
  58673. height: math.unit(5 + 4/12, "feet"),
  58674. weight: math.unit(250, "lb"),
  58675. name: "Front",
  58676. image: {
  58677. source: "./media/characters/mook/front.svg",
  58678. extra: 1088/1037,
  58679. bottom: 132/1220
  58680. }
  58681. },
  58682. back: {
  58683. height: math.unit(5 + 1/12, "feet"),
  58684. weight: math.unit(250, "lb"),
  58685. name: "Back",
  58686. image: {
  58687. source: "./media/characters/mook/back.svg",
  58688. extra: 1184/905,
  58689. bottom: 96/1280
  58690. }
  58691. },
  58692. head: {
  58693. height: math.unit(1.85, "feet"),
  58694. name: "Head",
  58695. image: {
  58696. source: "./media/characters/mook/head.svg"
  58697. }
  58698. },
  58699. hand: {
  58700. height: math.unit(1.9, "feet"),
  58701. name: "Hand",
  58702. image: {
  58703. source: "./media/characters/mook/hand.svg"
  58704. }
  58705. },
  58706. palm: {
  58707. height: math.unit(1.84, "feet"),
  58708. name: "Palm",
  58709. image: {
  58710. source: "./media/characters/mook/palm.svg"
  58711. }
  58712. },
  58713. foot: {
  58714. height: math.unit(1.44, "feet"),
  58715. name: "Foot",
  58716. image: {
  58717. source: "./media/characters/mook/foot.svg"
  58718. }
  58719. },
  58720. sole: {
  58721. height: math.unit(1.44, "feet"),
  58722. name: "Sole",
  58723. image: {
  58724. source: "./media/characters/mook/sole.svg"
  58725. }
  58726. },
  58727. },
  58728. [
  58729. {
  58730. name: "Normal",
  58731. height: math.unit(5 + 4/12, "feet"),
  58732. default: true
  58733. },
  58734. {
  58735. name: "Big",
  58736. height: math.unit(12, "feet")
  58737. },
  58738. ]
  58739. ))
  58740. characterMakers.push(() => makeCharacter(
  58741. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  58742. {
  58743. front: {
  58744. height: math.unit(6 + 10/12, "feet"),
  58745. weight: math.unit(233, "lb"),
  58746. name: "Front",
  58747. image: {
  58748. source: "./media/characters/kayla/front.svg",
  58749. extra: 1850/1775,
  58750. bottom: 65/1915
  58751. }
  58752. },
  58753. },
  58754. [
  58755. {
  58756. name: "Normal",
  58757. height: math.unit(6 + 10/12, "feet"),
  58758. default: true
  58759. },
  58760. {
  58761. name: "Amazonian",
  58762. height: math.unit(12 + 5/12, "feet")
  58763. },
  58764. {
  58765. name: "Mini Giantess",
  58766. height: math.unit(26, "feet")
  58767. },
  58768. {
  58769. name: "Giantess",
  58770. height: math.unit(200, "feet")
  58771. },
  58772. {
  58773. name: "Mega Giantess",
  58774. height: math.unit(2500, "feet")
  58775. },
  58776. {
  58777. name: "City Sized",
  58778. height: math.unit(50, "miles")
  58779. },
  58780. {
  58781. name: "Country Sized",
  58782. height: math.unit(500, "miles")
  58783. },
  58784. {
  58785. name: "Continent Sized",
  58786. height: math.unit(2500, "miles")
  58787. },
  58788. {
  58789. name: "Planet Sized",
  58790. height: math.unit(10000, "miles")
  58791. },
  58792. {
  58793. name: "Star Sized",
  58794. height: math.unit(5e6, "miles")
  58795. },
  58796. {
  58797. name: "Solar System Sized",
  58798. height: math.unit(125, "AU")
  58799. },
  58800. {
  58801. name: "Galaxy Sized",
  58802. height: math.unit(300e3, "lightyears")
  58803. },
  58804. {
  58805. name: "Universe Sized",
  58806. height: math.unit(200e9, "lightyears")
  58807. },
  58808. {
  58809. name: "Multiverse Sized",
  58810. height: math.unit(20, "exauniverses")
  58811. },
  58812. {
  58813. name: "Mother of Existence",
  58814. height: math.unit(1e6, "yottauniverses")
  58815. },
  58816. ]
  58817. ))
  58818. characterMakers.push(() => makeCharacter(
  58819. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  58820. {
  58821. side: {
  58822. height: math.unit(9.5, "meters"),
  58823. name: "Side",
  58824. image: {
  58825. source: "./media/characters/kulve-ragnarok/side.svg",
  58826. extra: 364/326,
  58827. bottom: 50/414
  58828. }
  58829. },
  58830. },
  58831. [
  58832. {
  58833. name: "Normal",
  58834. height: math.unit(9.5, "meters"),
  58835. default: true
  58836. },
  58837. ]
  58838. ))
  58839. characterMakers.push(() => makeCharacter(
  58840. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  58841. {
  58842. front: {
  58843. height: math.unit(8 + 9/12, "feet"),
  58844. name: "Front",
  58845. image: {
  58846. source: "./media/characters/atlas-goat/front.svg",
  58847. extra: 1462/1323,
  58848. bottom: 12/1474
  58849. }
  58850. },
  58851. },
  58852. [
  58853. {
  58854. name: "Normal",
  58855. height: math.unit(8 + 9/12, "feet"),
  58856. default: true
  58857. },
  58858. {
  58859. name: "Skyline",
  58860. height: math.unit(845, "feet")
  58861. },
  58862. {
  58863. name: "Orbital",
  58864. height: math.unit(93000, "miles")
  58865. },
  58866. {
  58867. name: "Constellation",
  58868. height: math.unit(27000, "lightyears")
  58869. },
  58870. ]
  58871. ))
  58872. characterMakers.push(() => makeCharacter(
  58873. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  58874. {
  58875. side: {
  58876. height: math.unit(1.8, "meters"),
  58877. weight: math.unit(120, "kg"),
  58878. name: "Side",
  58879. image: {
  58880. source: "./media/characters/xie-ling/side.svg",
  58881. extra: 646/574,
  58882. bottom: 44/690
  58883. }
  58884. },
  58885. },
  58886. [
  58887. {
  58888. name: "Tiny",
  58889. height: math.unit(1.80, "meters")
  58890. },
  58891. {
  58892. name: "Small",
  58893. height: math.unit(6, "meters")
  58894. },
  58895. {
  58896. name: "Medium",
  58897. height: math.unit(15, "meters")
  58898. },
  58899. {
  58900. name: "Normal",
  58901. height: math.unit(30, "meters"),
  58902. default: true
  58903. },
  58904. {
  58905. name: "Above Normal",
  58906. height: math.unit(60, "meters")
  58907. },
  58908. {
  58909. name: "Big",
  58910. height: math.unit(220, "meters")
  58911. },
  58912. {
  58913. name: "Giant",
  58914. height: math.unit(2.2, "km")
  58915. },
  58916. {
  58917. name: "Macro",
  58918. height: math.unit(25, "km")
  58919. },
  58920. {
  58921. name: "Mega Macro",
  58922. height: math.unit(350, "km")
  58923. },
  58924. {
  58925. name: "Mega Macro+",
  58926. height: math.unit(5000, "km")
  58927. },
  58928. {
  58929. name: "Goddess",
  58930. height: math.unit(3, "multiverses")
  58931. },
  58932. ]
  58933. ))
  58934. characterMakers.push(() => makeCharacter(
  58935. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  58936. {
  58937. frontSfw: {
  58938. height: math.unit(5 + 11/12, "feet"),
  58939. weight: math.unit(210, "lb"),
  58940. name: "Front",
  58941. image: {
  58942. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  58943. extra: 1928/1821,
  58944. bottom: 45/1973
  58945. }
  58946. },
  58947. backSfw: {
  58948. height: math.unit(5 + 11/12, "feet"),
  58949. weight: math.unit(210, "lb"),
  58950. name: "Back",
  58951. image: {
  58952. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  58953. extra: 1920/1813,
  58954. bottom: 34/1954
  58955. }
  58956. },
  58957. frontNsfw: {
  58958. height: math.unit(5 + 11/12, "feet"),
  58959. weight: math.unit(210, "lb"),
  58960. name: "Front (NSFW)",
  58961. image: {
  58962. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  58963. extra: 1928/1821,
  58964. bottom: 45/1973
  58965. }
  58966. },
  58967. backNsfw: {
  58968. height: math.unit(5 + 11/12, "feet"),
  58969. weight: math.unit(210, "lb"),
  58970. name: "Back (NSFW)",
  58971. image: {
  58972. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  58973. extra: 1920/1813,
  58974. bottom: 34/1954
  58975. }
  58976. },
  58977. },
  58978. [
  58979. {
  58980. name: "Normal",
  58981. height: math.unit(5 + 11/12, "feet"),
  58982. default: true
  58983. },
  58984. {
  58985. name: "Goddess",
  58986. height: math.unit(20 + 3/12, "feet")
  58987. },
  58988. {
  58989. name: "Breaker of Man",
  58990. height: math.unit(329 + 9/12, "feet")
  58991. },
  58992. {
  58993. name: "Solar Justice",
  58994. height: math.unit(0.6, "solarradii")
  58995. },
  58996. {
  58997. name: "She Who Judges",
  58998. height: math.unit(1, "universe")
  58999. },
  59000. ]
  59001. ))
  59002. characterMakers.push(() => makeCharacter(
  59003. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  59004. {
  59005. casual_front: {
  59006. height: math.unit(6 + 1/12, "feet"),
  59007. weight: math.unit(190, "lb"),
  59008. preyCapacity: math.unit(1, "people"),
  59009. name: "Front",
  59010. image: {
  59011. source: "./media/characters/managarmr/casual-front.svg",
  59012. extra: 411/381,
  59013. bottom: 15/426
  59014. },
  59015. extraAttributes: {
  59016. "pawSize": {
  59017. name: "Paw Size",
  59018. power: 1,
  59019. type: "length",
  59020. base: math.unit(0.2, "meters")
  59021. },
  59022. },
  59023. form: "casual",
  59024. },
  59025. casual_back: {
  59026. height: math.unit(6 + 1/12, "feet"),
  59027. weight: math.unit(190, "lb"),
  59028. preyCapacity: math.unit(1, "people"),
  59029. name: "Back",
  59030. image: {
  59031. source: "./media/characters/managarmr/casual-back.svg",
  59032. extra: 413/383,
  59033. bottom: 13/426
  59034. },
  59035. extraAttributes: {
  59036. "pawSize": {
  59037. name: "Paw Size",
  59038. power: 1,
  59039. type: "length",
  59040. base: math.unit(0.2, "meters")
  59041. },
  59042. },
  59043. form: "casual",
  59044. },
  59045. base_front: {
  59046. height: math.unit(7, "feet"),
  59047. weight: math.unit(210, "lb"),
  59048. preyCapacity: math.unit(2, "people"),
  59049. name: "Front",
  59050. image: {
  59051. source: "./media/characters/managarmr/base-front.svg",
  59052. extra: 580/485,
  59053. bottom: 32/612
  59054. },
  59055. extraAttributes: {
  59056. "wingspan": {
  59057. name: "Wingspan",
  59058. power: 1,
  59059. type: "length",
  59060. base: math.unit(4, "meters")
  59061. },
  59062. "pawSize": {
  59063. name: "Paw Size",
  59064. power: 1,
  59065. type: "length",
  59066. base: math.unit(0.2, "meters")
  59067. },
  59068. },
  59069. form: "base",
  59070. },
  59071. "true-divine_front": {
  59072. height: math.unit(40, "feet"),
  59073. weight: math.unit(39000, "lb"),
  59074. preyCapacity: math.unit(375, "people"),
  59075. name: "Front",
  59076. image: {
  59077. source: "./media/characters/managarmr/true-divine-front.svg",
  59078. extra: 725/573,
  59079. bottom: 120/845
  59080. },
  59081. extraAttributes: {
  59082. "wingspan": {
  59083. name: "Wingspan",
  59084. power: 1,
  59085. type: "length",
  59086. base: math.unit(20, "meters")
  59087. },
  59088. "pawSize": {
  59089. name: "Paw Size",
  59090. power: 1,
  59091. type: "length",
  59092. base: math.unit(1.5, "meters")
  59093. },
  59094. },
  59095. form: "true-divine",
  59096. },
  59097. },
  59098. [
  59099. {
  59100. name: "Normal",
  59101. height: math.unit(6 + 1/12, "feet"),
  59102. form: "casual",
  59103. default: true
  59104. },
  59105. {
  59106. name: "Normal",
  59107. height: math.unit(7, "feet"),
  59108. form: "base",
  59109. default: true
  59110. },
  59111. ],
  59112. {
  59113. "casual": {
  59114. name: "Casual",
  59115. default: true
  59116. },
  59117. "base": {
  59118. name: "Base",
  59119. },
  59120. "true-divine": {
  59121. name: "True Divine",
  59122. },
  59123. }
  59124. ))
  59125. characterMakers.push(() => makeCharacter(
  59126. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  59127. {
  59128. front: {
  59129. height: math.unit(1.8, "meters"),
  59130. weight: math.unit(110, "kg"),
  59131. name: "Front",
  59132. image: {
  59133. source: "./media/characters/mystra/front.svg",
  59134. extra: 529/442,
  59135. bottom: 31/560
  59136. }
  59137. },
  59138. frontLewd: {
  59139. height: math.unit(1.8, "meters"),
  59140. weight: math.unit(110, "kg"),
  59141. name: "Front (Lewd)",
  59142. image: {
  59143. source: "./media/characters/mystra/front-lewd.svg",
  59144. extra: 529/442,
  59145. bottom: 31/560
  59146. }
  59147. },
  59148. head: {
  59149. height: math.unit(1.63, "feet"),
  59150. name: "Head",
  59151. image: {
  59152. source: "./media/characters/mystra/head.svg"
  59153. }
  59154. },
  59155. paw: {
  59156. height: math.unit(1.9, "feet"),
  59157. name: "Paw",
  59158. image: {
  59159. source: "./media/characters/mystra/paw.svg"
  59160. }
  59161. },
  59162. },
  59163. [
  59164. {
  59165. name: "Incognito",
  59166. height: math.unit(2.3, "meters")
  59167. },
  59168. {
  59169. name: "Small Macro",
  59170. height: math.unit(300, "meters")
  59171. },
  59172. {
  59173. name: "Small Mega",
  59174. height: math.unit(2, "km")
  59175. },
  59176. {
  59177. name: "Mega",
  59178. height: math.unit(30, "km")
  59179. },
  59180. {
  59181. name: "Small Giga",
  59182. height: math.unit(100, "km")
  59183. },
  59184. {
  59185. name: "Giga",
  59186. height: math.unit(1000, "km"),
  59187. default: true
  59188. },
  59189. {
  59190. name: "Continental",
  59191. height: math.unit(5000, "km")
  59192. },
  59193. {
  59194. name: "Terra",
  59195. height: math.unit(20000, "km")
  59196. },
  59197. {
  59198. name: "Solar",
  59199. height: math.unit(2e6, "km")
  59200. },
  59201. {
  59202. name: "Galactic",
  59203. height: math.unit(528502, "lightyears")
  59204. },
  59205. {
  59206. name: "Universal",
  59207. height: math.unit(20, "universes")
  59208. },
  59209. ]
  59210. ))
  59211. characterMakers.push(() => makeCharacter(
  59212. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  59213. {
  59214. front: {
  59215. height: math.unit(2, "meters"),
  59216. weight: math.unit(140, "kg"),
  59217. name: "Front",
  59218. image: {
  59219. source: "./media/characters/caleb/front.svg",
  59220. extra: 873/817,
  59221. bottom: 47/920
  59222. }
  59223. },
  59224. back: {
  59225. height: math.unit(2, "meters"),
  59226. weight: math.unit(140, "kg"),
  59227. name: "Back",
  59228. image: {
  59229. source: "./media/characters/caleb/back.svg",
  59230. extra: 877/828,
  59231. bottom: 24/901
  59232. }
  59233. },
  59234. snakeTail: {
  59235. height: math.unit(1.44, "feet"),
  59236. name: "Snake Tail",
  59237. image: {
  59238. source: "./media/characters/caleb/snake-tail.svg"
  59239. }
  59240. },
  59241. dick: {
  59242. height: math.unit(2.6, "feet"),
  59243. name: "Dick",
  59244. image: {
  59245. source: "./media/characters/caleb/dick.svg"
  59246. }
  59247. },
  59248. },
  59249. [
  59250. {
  59251. name: "Incognito",
  59252. height: math.unit(3, "meters")
  59253. },
  59254. {
  59255. name: "Home Size",
  59256. height: math.unit(200, "meters"),
  59257. default: true
  59258. },
  59259. {
  59260. name: "Macro",
  59261. height: math.unit(500, "meters")
  59262. },
  59263. {
  59264. name: "Big Macro",
  59265. height: math.unit(5, "km")
  59266. },
  59267. {
  59268. name: "Giga",
  59269. height: math.unit(250, "km")
  59270. },
  59271. {
  59272. name: "Giga+",
  59273. height: math.unit(5000, "km")
  59274. },
  59275. {
  59276. name: "Small Terra",
  59277. height: math.unit(35e3, "km")
  59278. },
  59279. {
  59280. name: "Terra",
  59281. height: math.unit(2e6, "km")
  59282. },
  59283. {
  59284. name: "Terra+",
  59285. height: math.unit(1.5e6, "km")
  59286. },
  59287. ]
  59288. ))
  59289. characterMakers.push(() => makeCharacter(
  59290. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  59291. {
  59292. front: {
  59293. height: math.unit(2, "meters"),
  59294. weight: math.unit(120, "kg"),
  59295. name: "Front",
  59296. image: {
  59297. source: "./media/characters/gilirian/front.svg",
  59298. extra: 805/737,
  59299. bottom: 13/818
  59300. }
  59301. },
  59302. side: {
  59303. height: math.unit(2, "meters"),
  59304. weight: math.unit(120, "kg"),
  59305. name: "Side",
  59306. image: {
  59307. source: "./media/characters/gilirian/side.svg",
  59308. extra: 810/746,
  59309. bottom: 6/816
  59310. }
  59311. },
  59312. back: {
  59313. height: math.unit(2, "meters"),
  59314. weight: math.unit(120, "kg"),
  59315. name: "Back",
  59316. image: {
  59317. source: "./media/characters/gilirian/back.svg",
  59318. extra: 815/745,
  59319. bottom: 15/830
  59320. }
  59321. },
  59322. frontNsfw: {
  59323. height: math.unit(2, "meters"),
  59324. weight: math.unit(120, "kg"),
  59325. name: "Front (NSFW)",
  59326. image: {
  59327. source: "./media/characters/gilirian/front-nsfw.svg",
  59328. extra: 805/737,
  59329. bottom: 13/818
  59330. }
  59331. },
  59332. sideNsfw: {
  59333. height: math.unit(2, "meters"),
  59334. weight: math.unit(120, "kg"),
  59335. name: "Side (NSFW)",
  59336. image: {
  59337. source: "./media/characters/gilirian/side-nsfw.svg",
  59338. extra: 810/746,
  59339. bottom: 6/816
  59340. }
  59341. },
  59342. },
  59343. [
  59344. {
  59345. name: "Incognito",
  59346. height: math.unit(2, "meters"),
  59347. default: true
  59348. },
  59349. {
  59350. name: "Macro",
  59351. height: math.unit(250, "meters")
  59352. },
  59353. {
  59354. name: "Big Macro",
  59355. height: math.unit(1500, "meters")
  59356. },
  59357. {
  59358. name: "Mega",
  59359. height: math.unit(40, "km")
  59360. },
  59361. {
  59362. name: "Giga",
  59363. height: math.unit(300, "km")
  59364. },
  59365. {
  59366. name: "Extra Giga",
  59367. height: math.unit(5000, "km")
  59368. },
  59369. {
  59370. name: "Small Terra",
  59371. height: math.unit(10e3, "km")
  59372. },
  59373. {
  59374. name: "Terra",
  59375. height: math.unit(3e5, "km")
  59376. },
  59377. {
  59378. name: "Galactic",
  59379. height: math.unit(369950, "lightyears")
  59380. },
  59381. ]
  59382. ))
  59383. characterMakers.push(() => makeCharacter(
  59384. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  59385. {
  59386. front: {
  59387. height: math.unit(2.5, "meters"),
  59388. weight: math.unit(230, "lb"),
  59389. name: "Front",
  59390. image: {
  59391. source: "./media/characters/tarken/front.svg",
  59392. extra: 764/720,
  59393. bottom: 49/813
  59394. }
  59395. },
  59396. back: {
  59397. height: math.unit(2.5, "meters"),
  59398. weight: math.unit(230, "lb"),
  59399. name: "Back",
  59400. image: {
  59401. source: "./media/characters/tarken/back.svg",
  59402. extra: 756/720,
  59403. bottom: 35/791
  59404. }
  59405. },
  59406. frontNsfw: {
  59407. height: math.unit(2.5, "meters"),
  59408. weight: math.unit(230, "lb"),
  59409. name: "Front (NSFW)",
  59410. image: {
  59411. source: "./media/characters/tarken/front-nsfw.svg",
  59412. extra: 764/720,
  59413. bottom: 49/813
  59414. }
  59415. },
  59416. backNsfw: {
  59417. height: math.unit(2.5, "meters"),
  59418. weight: math.unit(230, "lb"),
  59419. name: "Back (NSFW)",
  59420. image: {
  59421. source: "./media/characters/tarken/back-nsfw.svg",
  59422. extra: 756/720,
  59423. bottom: 35/791
  59424. }
  59425. },
  59426. head: {
  59427. height: math.unit(2.22, "feet"),
  59428. name: "Head",
  59429. image: {
  59430. source: "./media/characters/tarken/head.svg"
  59431. }
  59432. },
  59433. tail: {
  59434. height: math.unit(5.25, "feet"),
  59435. name: "Tail",
  59436. image: {
  59437. source: "./media/characters/tarken/tail.svg"
  59438. }
  59439. },
  59440. dick: {
  59441. height: math.unit(1.95, "feet"),
  59442. name: "Dick",
  59443. image: {
  59444. source: "./media/characters/tarken/dick.svg"
  59445. }
  59446. },
  59447. hand: {
  59448. height: math.unit(1.78, "feet"),
  59449. name: "Hand",
  59450. image: {
  59451. source: "./media/characters/tarken/hand.svg"
  59452. }
  59453. },
  59454. beam: {
  59455. height: math.unit(1.5, "feet"),
  59456. name: "Beam",
  59457. image: {
  59458. source: "./media/characters/tarken/beam.svg"
  59459. }
  59460. },
  59461. },
  59462. [
  59463. {
  59464. name: "Original Size",
  59465. height: math.unit(2.5, "meters")
  59466. },
  59467. {
  59468. name: "Macro",
  59469. height: math.unit(150, "meters"),
  59470. default: true
  59471. },
  59472. {
  59473. name: "Macro+",
  59474. height: math.unit(300, "meters")
  59475. },
  59476. {
  59477. name: "Mega",
  59478. height: math.unit(2, "km")
  59479. },
  59480. {
  59481. name: "Mega+",
  59482. height: math.unit(35, "km")
  59483. },
  59484.  {
  59485. name: "Mega++",
  59486. height: math.unit(60, "km")
  59487. },
  59488. {
  59489. name: "Giga",
  59490. height: math.unit(200, "km")
  59491. },
  59492. {
  59493. name: "Giga+",
  59494. height: math.unit(2500, "km")
  59495. },
  59496. {
  59497. name: "Giga++",
  59498. height: math.unit(6600, "km")
  59499. },
  59500. {
  59501. name: "Terra",
  59502. height: math.unit(20000, "km")
  59503. },
  59504. {
  59505. name: "Terra+",
  59506. height: math.unit(300000, "km")
  59507. },
  59508. ]
  59509. ))
  59510. characterMakers.push(() => makeCharacter(
  59511. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  59512. {
  59513. magpie_dressed: {
  59514. height: math.unit(1.7, "meters"),
  59515. weight: math.unit(70, "kg"),
  59516. name: "Dressed",
  59517. image: {
  59518. source: "./media/characters/otreus/magpie-dressed.svg",
  59519. extra: 691/672,
  59520. bottom: 116/807
  59521. },
  59522. form: "magpie",
  59523. default: true
  59524. },
  59525. magpie_nude: {
  59526. height: math.unit(1.7, "meters"),
  59527. weight: math.unit(70, "kg"),
  59528. name: "Nude",
  59529. image: {
  59530. source: "./media/characters/otreus/magpie-nude.svg",
  59531. extra: 691/672,
  59532. bottom: 116/807
  59533. },
  59534. form: "magpie",
  59535. },
  59536. magpie_dressedLewd: {
  59537. height: math.unit(1.7, "meters"),
  59538. weight: math.unit(70, "kg"),
  59539. name: "Dressed (Lewd)",
  59540. image: {
  59541. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  59542. extra: 691/672,
  59543. bottom: 116/807
  59544. },
  59545. form: "magpie",
  59546. },
  59547. magpie_nudeLewd: {
  59548. height: math.unit(1.7, "meters"),
  59549. weight: math.unit(70, "kg"),
  59550. name: "Nude (Lewd)",
  59551. image: {
  59552. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  59553. extra: 691/672,
  59554. bottom: 116/807
  59555. },
  59556. form: "magpie",
  59557. },
  59558. magpie_leftFoot: {
  59559. height: math.unit(1.58, "feet"),
  59560. name: "Left Foot",
  59561. image: {
  59562. source: "./media/characters/otreus/magpie-left-foot.svg"
  59563. },
  59564. form: "magpie",
  59565. },
  59566. magpie_rightFoot: {
  59567. height: math.unit(1.58, "feet"),
  59568. name: "Right Foot",
  59569. image: {
  59570. source: "./media/characters/otreus/magpie-right-foot.svg"
  59571. },
  59572. form: "magpie",
  59573. },
  59574. magpie_wingspan: {
  59575. height: math.unit(2, "meters"),
  59576. weight: math.unit(70, "kg"),
  59577. name: "Wingspan",
  59578. image: {
  59579. source: "./media/characters/otreus/magpie-wingspan.svg"
  59580. },
  59581. extraAttributes: {
  59582. "wingspan": {
  59583. name: "Wingspan",
  59584. power: 1,
  59585. type: "length",
  59586. base: math.unit(3.35, "meters")
  59587. },
  59588. },
  59589. form: "magpie",
  59590. },
  59591. hippogriff_dressed: {
  59592. height: math.unit(1.7, "meters"),
  59593. weight: math.unit(70, "kg"),
  59594. name: "Dressed",
  59595. image: {
  59596. source: "./media/characters/otreus/hippogriff-dressed.svg",
  59597. extra: 710/689,
  59598. bottom: 67/777
  59599. },
  59600. form: "hippogriff",
  59601. default: true
  59602. },
  59603. hippogriff_nude: {
  59604. height: math.unit(1.7, "meters"),
  59605. weight: math.unit(70, "kg"),
  59606. name: "Nude",
  59607. image: {
  59608. source: "./media/characters/otreus/hippogriff-nude.svg",
  59609. extra: 710/689,
  59610. bottom: 67/777
  59611. },
  59612. form: "hippogriff",
  59613. },
  59614. hippogriff_dressedLewd: {
  59615. height: math.unit(1.7, "meters"),
  59616. weight: math.unit(70, "kg"),
  59617. name: "Dressed (Lewd)",
  59618. image: {
  59619. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  59620. extra: 710/689,
  59621. bottom: 67/777
  59622. },
  59623. form: "hippogriff",
  59624. },
  59625. hippogriff_nudeLewd: {
  59626. height: math.unit(1.7, "meters"),
  59627. weight: math.unit(70, "kg"),
  59628. name: "Nude (Lewd)",
  59629. image: {
  59630. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  59631. extra: 710/689,
  59632. bottom: 67/777
  59633. },
  59634. form: "hippogriff",
  59635. },
  59636. },
  59637. [
  59638. {
  59639. name: "Original Size",
  59640. height: math.unit(1.7, "meters"),
  59641. allForms: true
  59642. },
  59643. {
  59644. name: "Incognito Size",
  59645. height: math.unit(2, "meters"),
  59646. allForms: true
  59647. },
  59648. {
  59649. name: "Mega",
  59650. height: math.unit(2, "km"),
  59651. allForms: true
  59652. },
  59653. {
  59654. name: "Mega+",
  59655. height: math.unit(40, "km"),
  59656. allForms: true
  59657. },
  59658. {
  59659. name: "Giga",
  59660. height: math.unit(250, "km"),
  59661. allForms: true
  59662. },
  59663. {
  59664. name: "Giga+",
  59665. height: math.unit(3000, "km"),
  59666. allForms: true
  59667. },
  59668. {
  59669. name: "Terra",
  59670. height: math.unit(20000, "km"),
  59671. allForms: true
  59672. },
  59673. {
  59674. name: "Solar (Home Size)",
  59675. height: math.unit(3e6, "km"),
  59676. allForms: true,
  59677. default: true
  59678. },
  59679. ],
  59680. {
  59681. "magpie": {
  59682. name: "Magpie",
  59683. default: true
  59684. },
  59685. "hippogriff": {
  59686. name: "Hippogriff",
  59687. },
  59688. }
  59689. ))
  59690. characterMakers.push(() => makeCharacter(
  59691. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  59692. {
  59693. frontDressed: {
  59694. height: math.unit(1.8, "meters"),
  59695. weight: math.unit(90, "kg"),
  59696. name: "Front (Dressed)",
  59697. image: {
  59698. source: "./media/characters/thalia/front-dressed.svg",
  59699. extra: 478/402,
  59700. bottom: 55/533
  59701. }
  59702. },
  59703. backDressed: {
  59704. height: math.unit(1.8, "meters"),
  59705. weight: math.unit(90, "kg"),
  59706. name: "Back (Dressed)",
  59707. image: {
  59708. source: "./media/characters/thalia/back-dressed.svg",
  59709. extra: 500/424,
  59710. bottom: 15/515
  59711. }
  59712. },
  59713. frontNude: {
  59714. height: math.unit(1.8, "meters"),
  59715. weight: math.unit(90, "kg"),
  59716. name: "Front (Nude)",
  59717. image: {
  59718. source: "./media/characters/thalia/front-nude.svg",
  59719. extra: 478/402,
  59720. bottom: 55/533
  59721. }
  59722. },
  59723. backNude: {
  59724. height: math.unit(1.8, "meters"),
  59725. weight: math.unit(90, "kg"),
  59726. name: "Back (Nude)",
  59727. image: {
  59728. source: "./media/characters/thalia/back-nude.svg",
  59729. extra: 500/424,
  59730. bottom: 15/515
  59731. }
  59732. },
  59733. },
  59734. [
  59735. {
  59736. name: "Incognito",
  59737. height: math.unit(3, "meters")
  59738. },
  59739. {
  59740. name: "Macro",
  59741. height: math.unit(500, "meters")
  59742. },
  59743. {
  59744. name: "Mega",
  59745. height: math.unit(5, "km")
  59746. },
  59747. {
  59748. name: "Mega+",
  59749. height: math.unit(30, "km")
  59750. },
  59751. {
  59752. name: "Giga",
  59753. height: math.unit(350, "km")
  59754. },
  59755. {
  59756. name: "Giga+",
  59757. height: math.unit(4000, "km")
  59758. },
  59759. {
  59760. name: "Terra",
  59761. height: math.unit(35000, "km")
  59762. },
  59763. {
  59764. name: "Original Size",
  59765. height: math.unit(130000, "km")
  59766. },
  59767. {
  59768. name: "Solar (Home Size)",
  59769. height: math.unit(4e6, "km"),
  59770. default: true
  59771. },
  59772. ]
  59773. ))
  59774. characterMakers.push(() => makeCharacter(
  59775. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  59776. {
  59777. front: {
  59778. height: math.unit(1.8, "meters"),
  59779. weight: math.unit(95, "kg"),
  59780. name: "Front",
  59781. image: {
  59782. source: "./media/characters/shango/front.svg",
  59783. extra: 1925/1774,
  59784. bottom: 67/1992
  59785. }
  59786. },
  59787. back: {
  59788. height: math.unit(1.8, "meters"),
  59789. weight: math.unit(95, "kg"),
  59790. name: "Back",
  59791. image: {
  59792. source: "./media/characters/shango/back.svg",
  59793. extra: 1915/1766,
  59794. bottom: 52/1967
  59795. }
  59796. },
  59797. frontLewd: {
  59798. height: math.unit(1.8, "meters"),
  59799. weight: math.unit(95, "kg"),
  59800. name: "Front (Lewd)",
  59801. image: {
  59802. source: "./media/characters/shango/front-lewd.svg",
  59803. extra: 1925/1774,
  59804. bottom: 67/1992
  59805. }
  59806. },
  59807. backLewd: {
  59808. height: math.unit(1.8, "meters"),
  59809. weight: math.unit(95, "kg"),
  59810. name: "Back (Lewd)",
  59811. image: {
  59812. source: "./media/characters/shango/back-lewd.svg",
  59813. extra: 1915/1766,
  59814. bottom: 52/1967
  59815. }
  59816. },
  59817. maw: {
  59818. height: math.unit(1.64, "feet"),
  59819. name: "Maw",
  59820. image: {
  59821. source: "./media/characters/shango/maw.svg"
  59822. }
  59823. },
  59824. dick: {
  59825. height: math.unit(2.14, "feet"),
  59826. name: "Dick",
  59827. image: {
  59828. source: "./media/characters/shango/dick.svg"
  59829. }
  59830. },
  59831. },
  59832. [
  59833. {
  59834. name: "Incognito",
  59835. height: math.unit(1.8, "meters")
  59836. },
  59837. {
  59838. name: "Home Size",
  59839. height: math.unit(60, "meters"),
  59840. default: true
  59841. },
  59842. {
  59843. name: "Macro",
  59844. height: math.unit(450, "meters")
  59845. },
  59846. {
  59847. name: "Mega",
  59848. height: math.unit(6, "km")
  59849. },
  59850. {
  59851. name: "Mega+",
  59852. height: math.unit(35, "km")
  59853. },
  59854. {
  59855. name: "Giga",
  59856. height: math.unit(500, "km")
  59857. },
  59858. {
  59859. name: "Giga+",
  59860. height: math.unit(5000, "km")
  59861. },
  59862. {
  59863. name: "Terra",
  59864. height: math.unit(60000, "km")
  59865. },
  59866. {
  59867. name: "Terra+",
  59868. height: math.unit(400000, "km")
  59869. },
  59870. ]
  59871. ))
  59872. characterMakers.push(() => makeCharacter(
  59873. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  59874. {
  59875. front: {
  59876. height: math.unit(2, "meters"),
  59877. weight: math.unit(95, "kg"),
  59878. name: "Front",
  59879. image: {
  59880. source: "./media/characters/osiris-gryphon/front.svg",
  59881. extra: 1508/1313,
  59882. bottom: 87/1595
  59883. }
  59884. },
  59885. back: {
  59886. height: math.unit(2, "meters"),
  59887. weight: math.unit(95, "kg"),
  59888. name: "Back",
  59889. image: {
  59890. source: "./media/characters/osiris-gryphon/back.svg",
  59891. extra: 1436/1309,
  59892. bottom: 64/1500
  59893. }
  59894. },
  59895. frontLewd: {
  59896. height: math.unit(2, "meters"),
  59897. weight: math.unit(95, "kg"),
  59898. name: "Front-lewd",
  59899. image: {
  59900. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  59901. extra: 1508/1313,
  59902. bottom: 87/1595
  59903. }
  59904. },
  59905. wing: {
  59906. height: math.unit(6.3333, "feet"),
  59907. name: "Wing",
  59908. image: {
  59909. source: "./media/characters/osiris-gryphon/wing.svg"
  59910. }
  59911. },
  59912. },
  59913. [
  59914. {
  59915. name: "Incognito",
  59916. height: math.unit(2, "meters")
  59917. },
  59918. {
  59919. name: "Home Size",
  59920. height: math.unit(30, "meters"),
  59921. default: true
  59922. },
  59923. {
  59924. name: "Macro",
  59925. height: math.unit(100, "meters")
  59926. },
  59927. {
  59928. name: "Macro+",
  59929. height: math.unit(350, "meters")
  59930. },
  59931. {
  59932. name: "Mega",
  59933. height: math.unit(40, "km")
  59934. },
  59935. {
  59936. name: "Giga",
  59937. height: math.unit(300, "km")
  59938. },
  59939. {
  59940. name: "Giga+",
  59941. height: math.unit(2000, "km")
  59942. },
  59943. {
  59944. name: "Terra",
  59945. height: math.unit(30000, "km")
  59946. },
  59947. ]
  59948. ))
  59949. characterMakers.push(() => makeCharacter(
  59950. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  59951. {
  59952. front: {
  59953. height: math.unit(2.5, "meters"),
  59954. weight: math.unit(200, "kg"),
  59955. name: "Front",
  59956. image: {
  59957. source: "./media/characters/atlas-dragon/front.svg",
  59958. extra: 745/462,
  59959. bottom: 36/781
  59960. }
  59961. },
  59962. back: {
  59963. height: math.unit(2.5, "meters"),
  59964. weight: math.unit(200, "kg"),
  59965. name: "Back",
  59966. image: {
  59967. source: "./media/characters/atlas-dragon/back.svg",
  59968. extra: 848/822,
  59969. bottom: 57/905
  59970. }
  59971. },
  59972. frontLewd: {
  59973. height: math.unit(2.5, "meters"),
  59974. weight: math.unit(200, "kg"),
  59975. name: "Front (Lewd)",
  59976. image: {
  59977. source: "./media/characters/atlas-dragon/front-lewd.svg",
  59978. extra: 745/462,
  59979. bottom: 36/781
  59980. }
  59981. },
  59982. backLewd: {
  59983. height: math.unit(2.5, "meters"),
  59984. weight: math.unit(200, "kg"),
  59985. name: "Back (Lewd)",
  59986. image: {
  59987. source: "./media/characters/atlas-dragon/back-lewd.svg",
  59988. extra: 848/822,
  59989. bottom: 57/905
  59990. }
  59991. },
  59992. },
  59993. [
  59994. {
  59995. name: "Incognito",
  59996. height: math.unit(2.5, "meters")
  59997. },
  59998. {
  59999. name: "Small Macro",
  60000. height: math.unit(50, "meters")
  60001. },
  60002. {
  60003. name: "Macro",
  60004. height: math.unit(350, "meters")
  60005. },
  60006. {
  60007. name: "Mega",
  60008. height: math.unit(5.5, "kilometers")
  60009. },
  60010. {
  60011. name: "Mega+",
  60012. height: math.unit(50, "km")
  60013. },
  60014. {
  60015. name: "Giga",
  60016. height: math.unit(350, "km")
  60017. },
  60018. {
  60019. name: "Giga+",
  60020. height: math.unit(2000, "km")
  60021. },
  60022. {
  60023. name: "Giga++",
  60024. height: math.unit(6500, "km")
  60025. },
  60026. {
  60027. name: "Terra",
  60028. height: math.unit(30000, "km")
  60029. },
  60030. {
  60031. name: "Terra+",
  60032. height: math.unit(250000, "km")
  60033. },
  60034. {
  60035. name: "True Size",
  60036. height: math.unit(100, "multiverses"),
  60037. default: true
  60038. },
  60039. ]
  60040. ))
  60041. characterMakers.push(() => makeCharacter(
  60042. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  60043. {
  60044. front: {
  60045. height: math.unit(1.8, "m"),
  60046. weight: math.unit(120, "kg"),
  60047. name: "Front",
  60048. image: {
  60049. source: "./media/characters/chey/front.svg",
  60050. extra: 1359/1270,
  60051. bottom: 18/1377
  60052. }
  60053. },
  60054. arm: {
  60055. height: math.unit(2.05, "feet"),
  60056. name: "Arm",
  60057. image: {
  60058. source: "./media/characters/chey/arm.svg"
  60059. }
  60060. },
  60061. head: {
  60062. height: math.unit(1.89, "feet"),
  60063. name: "Head",
  60064. image: {
  60065. source: "./media/characters/chey/head.svg"
  60066. }
  60067. },
  60068. },
  60069. [
  60070. {
  60071. name: "Original Size",
  60072. height: math.unit(5, "cm")
  60073. },
  60074. {
  60075. name: "Incognito Size",
  60076. height: math.unit(2.4, "m")
  60077. },
  60078. {
  60079. name: "Home Size",
  60080. height: math.unit(200, "meters"),
  60081. default: true
  60082. },
  60083. {
  60084. name: "Mega",
  60085. height: math.unit(2, "km")
  60086. },
  60087. {
  60088. name: "Giga (Preferred Size)",
  60089. height: math.unit(2000, "km")
  60090. },
  60091. {
  60092. name: "Giga+",
  60093. height: math.unit(6000, "km")
  60094. },
  60095. {
  60096. name: "Terra",
  60097. height: math.unit(17000, "km")
  60098. },
  60099. {
  60100. name: "Terra+",
  60101. height: math.unit(75000, "km")
  60102. },
  60103. {
  60104. name: "Terra++",
  60105. height: math.unit(225000, "km")
  60106. },
  60107. ]
  60108. ))
  60109. characterMakers.push(() => makeCharacter(
  60110. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  60111. {
  60112. side: {
  60113. height: math.unit(7.8, "meters"),
  60114. name: "Side",
  60115. image: {
  60116. source: "./media/characters/ragnarok/side.svg",
  60117. extra: 725/621,
  60118. bottom: 72/797
  60119. }
  60120. },
  60121. },
  60122. [
  60123. {
  60124. name: "Normal",
  60125. height: math.unit(7.8, "meters"),
  60126. default: true
  60127. },
  60128. ]
  60129. ))
  60130. characterMakers.push(() => makeCharacter(
  60131. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  60132. {
  60133. hyena_front: {
  60134. height: math.unit(2.1, "meters"),
  60135. weight: math.unit(110, "kg"),
  60136. name: "Front",
  60137. image: {
  60138. source: "./media/characters/nima/hyena-front.svg",
  60139. extra: 1904/1796,
  60140. bottom: 67/1971
  60141. },
  60142. form: "hyena",
  60143. },
  60144. hyena_back: {
  60145. height: math.unit(2.1, "meters"),
  60146. weight: math.unit(110, "kg"),
  60147. name: "Back",
  60148. image: {
  60149. source: "./media/characters/nima/hyena-back.svg",
  60150. extra: 1964/1884,
  60151. bottom: 35/1999
  60152. },
  60153. form: "hyena",
  60154. },
  60155. shark_front: {
  60156. height: math.unit(1.95, "meters"),
  60157. weight: math.unit(110, "kg"),
  60158. name: "Front",
  60159. image: {
  60160. source: "./media/characters/nima/shark-front.svg",
  60161. extra: 2238/2013,
  60162. bottom: 0/223
  60163. },
  60164. form: "shark",
  60165. },
  60166. paw: {
  60167. height: math.unit(1, "feet"),
  60168. name: "Paw",
  60169. image: {
  60170. source: "./media/characters/nima/paw.svg"
  60171. }
  60172. },
  60173. circlet: {
  60174. height: math.unit(0.3, "feet"),
  60175. name: "Circlet",
  60176. image: {
  60177. source: "./media/characters/nima/circlet.svg"
  60178. }
  60179. },
  60180. necklace: {
  60181. height: math.unit(1.2, "feet"),
  60182. name: "Necklace",
  60183. image: {
  60184. source: "./media/characters/nima/necklace.svg"
  60185. }
  60186. },
  60187. bracelet: {
  60188. height: math.unit(0.51, "feet"),
  60189. name: "Bracelet",
  60190. image: {
  60191. source: "./media/characters/nima/bracelet.svg"
  60192. }
  60193. },
  60194. armband: {
  60195. height: math.unit(1.3, "feet"),
  60196. name: "Armband",
  60197. image: {
  60198. source: "./media/characters/nima/armband.svg"
  60199. }
  60200. },
  60201. },
  60202. [
  60203. {
  60204. name: "Incognito",
  60205. height: math.unit(2.1, "meters"),
  60206. allForms: true
  60207. },
  60208. {
  60209. name: "Small Macro",
  60210. height: math.unit(50, "meters"),
  60211. allForms: true
  60212. },
  60213. {
  60214. name: "Macro",
  60215. height: math.unit(200, "meters"),
  60216. allForms: true
  60217. },
  60218. {
  60219. name: "Mega",
  60220. height: math.unit(2.5, "km"),
  60221. allForms: true
  60222. },
  60223. {
  60224. name: "Mega+",
  60225. height: math.unit(30, "km"),
  60226. allForms: true
  60227. },
  60228. {
  60229. name: "Giga (Home Size)",
  60230. height: math.unit(400, "km"),
  60231. allForms: true,
  60232. default: true
  60233. },
  60234. {
  60235. name: "Giga+",
  60236. height: math.unit(2500, "km"),
  60237. allForms: true
  60238. },
  60239. {
  60240. name: "Giga++",
  60241. height: math.unit(8000, "km"),
  60242. allForms: true
  60243. },
  60244. {
  60245. name: "Terra",
  60246. height: math.unit(20000, "km"),
  60247. allForms: true
  60248. },
  60249. {
  60250. name: "Terra+",
  60251. height: math.unit(70000, "km"),
  60252. allForms: true
  60253. },
  60254. {
  60255. name: "Terra++",
  60256. height: math.unit(600000, "km"),
  60257. allForms: true
  60258. },
  60259. {
  60260. name: "Galactic",
  60261. height: math.unit(40, "galaxies"),
  60262. allForms: true
  60263. },
  60264. {
  60265. name: "Universal",
  60266. height: math.unit(40, "universes"),
  60267. allForms: true
  60268. },
  60269. ],
  60270. {
  60271. "hyena": {
  60272. name: "Hyena",
  60273. default: true
  60274. },
  60275. "shark": {
  60276. name: "Shark",
  60277. },
  60278. }
  60279. ))
  60280. characterMakers.push(() => makeCharacter(
  60281. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  60282. {
  60283. anthro_front: {
  60284. height: math.unit(1.5, "meters"),
  60285. name: "Front",
  60286. image: {
  60287. source: "./media/characters/adelaide/anthro-front.svg",
  60288. extra: 860/783,
  60289. bottom: 60/920
  60290. },
  60291. form: "anthro",
  60292. default: true
  60293. },
  60294. hand: {
  60295. height: math.unit(0.65, "feet"),
  60296. name: "Hand",
  60297. image: {
  60298. source: "./media/characters/adelaide/hand.svg"
  60299. },
  60300. form: "anthro"
  60301. },
  60302. foot: {
  60303. height: math.unit(1.38 * 259 / 314, "feet"),
  60304. name: "Foot",
  60305. image: {
  60306. source: "./media/characters/adelaide/foot.svg",
  60307. extra: 259/259,
  60308. bottom: 55/314
  60309. },
  60310. form: "anthro"
  60311. },
  60312. feather: {
  60313. height: math.unit(0.85, "feet"),
  60314. name: "Feather",
  60315. image: {
  60316. source: "./media/characters/adelaide/feather.svg"
  60317. },
  60318. form: "anthro"
  60319. },
  60320. feral_side: {
  60321. height: math.unit(1, "meters"),
  60322. name: "Side",
  60323. image: {
  60324. source: "./media/characters/adelaide/feral-side.svg",
  60325. extra: 550/467,
  60326. bottom: 37/587
  60327. },
  60328. form: "feral",
  60329. default: true
  60330. },
  60331. feral_hand: {
  60332. height: math.unit(0.58, "feet"),
  60333. name: "Hand",
  60334. image: {
  60335. source: "./media/characters/adelaide/hand.svg"
  60336. },
  60337. form: "feral"
  60338. },
  60339. feral_foot: {
  60340. height: math.unit(1.2 * 259 / 314, "feet"),
  60341. name: "Foot",
  60342. image: {
  60343. source: "./media/characters/adelaide/foot.svg",
  60344. extra: 259/259,
  60345. bottom: 55/314
  60346. },
  60347. form: "feral"
  60348. },
  60349. feral_feather: {
  60350. height: math.unit(0.63, "feet"),
  60351. name: "Feather",
  60352. image: {
  60353. source: "./media/characters/adelaide/feather.svg"
  60354. },
  60355. form: "feral"
  60356. },
  60357. },
  60358. [
  60359. {
  60360. name: "Normal",
  60361. height: math.unit(1.5, "meters"),
  60362. form: "anthro",
  60363. default: true
  60364. },
  60365. {
  60366. name: "Normal",
  60367. height: math.unit(1, "meters"),
  60368. form: "feral",
  60369. default: true
  60370. },
  60371. ],
  60372. {
  60373. "anthro": {
  60374. name: "Anthro",
  60375. default: true
  60376. },
  60377. "feral": {
  60378. name: "Feral",
  60379. },
  60380. }
  60381. ))
  60382. characterMakers.push(() => makeCharacter(
  60383. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  60384. {
  60385. front: {
  60386. height: math.unit(2.5, "meters"),
  60387. name: "Front",
  60388. image: {
  60389. source: "./media/characters/goa/front.svg",
  60390. extra: 1109/1013,
  60391. bottom: 150/1259
  60392. }
  60393. },
  60394. },
  60395. [
  60396. {
  60397. name: "Normal",
  60398. height: math.unit(2.5, "meters"),
  60399. default: true
  60400. },
  60401. ]
  60402. ))
  60403. characterMakers.push(() => makeCharacter(
  60404. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  60405. {
  60406. front: {
  60407. height: math.unit(2, "meters"),
  60408. weight: math.unit(100, "kg"),
  60409. name: "Front",
  60410. image: {
  60411. source: "./media/characters/kiki-weavile/front.svg",
  60412. extra: 357/332,
  60413. bottom: 60/417
  60414. }
  60415. },
  60416. },
  60417. [
  60418. {
  60419. name: "Normal",
  60420. height: math.unit(2, "meters"),
  60421. default: true
  60422. },
  60423. ]
  60424. ))
  60425. characterMakers.push(() => makeCharacter(
  60426. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  60427. {
  60428. side: {
  60429. height: math.unit(1.6, "meters"),
  60430. name: "Side",
  60431. image: {
  60432. source: "./media/characters/liza/side.svg",
  60433. extra: 943/915,
  60434. bottom: 72/1015
  60435. }
  60436. },
  60437. },
  60438. [
  60439. {
  60440. name: "Normal",
  60441. height: math.unit(1.6, "meters"),
  60442. default: true
  60443. },
  60444. ]
  60445. ))
  60446. characterMakers.push(() => makeCharacter(
  60447. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  60448. {
  60449. side: {
  60450. height: math.unit(2.5, "meters"),
  60451. preyCapacity: math.unit(1, "people"),
  60452. name: "Side",
  60453. image: {
  60454. source: "./media/characters/persephone-sweetbreath/side.svg",
  60455. extra: 796/700,
  60456. bottom: 44/840
  60457. }
  60458. },
  60459. sideVore: {
  60460. height: math.unit(2.5, "meters"),
  60461. preyCapacity: math.unit(1, "people"),
  60462. name: "Side (Full)",
  60463. image: {
  60464. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  60465. extra: 796/700,
  60466. bottom: 44/840
  60467. }
  60468. },
  60469. },
  60470. [
  60471. {
  60472. name: "Normal",
  60473. height: math.unit(2.5, "meters"),
  60474. default: true
  60475. },
  60476. ]
  60477. ))
  60478. characterMakers.push(() => makeCharacter(
  60479. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  60480. {
  60481. front: {
  60482. height: math.unit(32, "meters"),
  60483. name: "Front",
  60484. image: {
  60485. source: "./media/characters/pierce/front.svg",
  60486. extra: 1695/1475,
  60487. bottom: 185/1880
  60488. }
  60489. },
  60490. side: {
  60491. height: math.unit(32, "meters"),
  60492. name: "Side",
  60493. image: {
  60494. source: "./media/characters/pierce/side.svg",
  60495. extra: 974/859,
  60496. bottom: 43/1017
  60497. }
  60498. },
  60499. frontWingless: {
  60500. height: math.unit(32, "meters"),
  60501. name: "Front (Wingless)",
  60502. image: {
  60503. source: "./media/characters/pierce/front-wingless.svg",
  60504. extra: 1695/1475,
  60505. bottom: 185/1880
  60506. }
  60507. },
  60508. sideWingless: {
  60509. height: math.unit(32, "meters"),
  60510. name: "Side (Wingless)",
  60511. image: {
  60512. source: "./media/characters/pierce/side-wingless.svg",
  60513. extra: 974/859,
  60514. bottom: 43/1017
  60515. }
  60516. },
  60517. maw: {
  60518. height: math.unit(19.3, "meters"),
  60519. name: "Maw",
  60520. image: {
  60521. source: "./media/characters/pierce/maw.svg"
  60522. }
  60523. },
  60524. },
  60525. [
  60526. {
  60527. name: "Small",
  60528. height: math.unit(8.5, "meters")
  60529. },
  60530. {
  60531. name: "Normal",
  60532. height: math.unit(32, "meters"),
  60533. default: true
  60534. },
  60535. ]
  60536. ))
  60537. characterMakers.push(() => makeCharacter(
  60538. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  60539. {
  60540. front: {
  60541. height: math.unit(2.3, "meters"),
  60542. weight: math.unit(165, "kg"),
  60543. name: "Front",
  60544. image: {
  60545. source: "./media/characters/shira/front.svg",
  60546. extra: 924/919,
  60547. bottom: 17/941
  60548. },
  60549. form: "cobra",
  60550. default: true
  60551. },
  60552. back: {
  60553. height: math.unit(2.3, "meters"),
  60554. weight: math.unit(165, "kg"),
  60555. name: "Back",
  60556. image: {
  60557. source: "./media/characters/shira/back.svg",
  60558. extra: 928/922,
  60559. bottom: 18/946
  60560. },
  60561. form: "cobra"
  60562. },
  60563. frontLewd: {
  60564. height: math.unit(2.3, "meters"),
  60565. weight: math.unit(165, "kg"),
  60566. name: "Front (Lewd)",
  60567. image: {
  60568. source: "./media/characters/shira/front-lewd.svg",
  60569. extra: 924/919,
  60570. bottom: 17/941
  60571. },
  60572. form: "cobra"
  60573. },
  60574. backLewd: {
  60575. height: math.unit(2.3, "meters"),
  60576. weight: math.unit(165, "kg"),
  60577. name: "Back (Lewd)",
  60578. image: {
  60579. source: "./media/characters/shira/back-lewd.svg",
  60580. extra: 928/922,
  60581. bottom: 18/946
  60582. },
  60583. form: "cobra"
  60584. },
  60585. maw: {
  60586. height: math.unit(1.14, "feet"),
  60587. name: "Maw",
  60588. image: {
  60589. source: "./media/characters/shira/maw.svg"
  60590. },
  60591. form: "cobra"
  60592. },
  60593. magma_front: {
  60594. height: math.unit(2.3, "meters"),
  60595. weight: math.unit(165, "kg"),
  60596. name: "Front",
  60597. image: {
  60598. source: "./media/characters/shira/magma-front.svg",
  60599. extra: 1870/1693,
  60600. bottom: 24/1894
  60601. },
  60602. form: "magma",
  60603. },
  60604. magma_back: {
  60605. height: math.unit(2.3, "meters"),
  60606. weight: math.unit(165, "kg"),
  60607. name: "Back",
  60608. image: {
  60609. source: "./media/characters/shira/magma-back.svg",
  60610. extra: 1918/1756,
  60611. bottom: 46/1964
  60612. },
  60613. form: "magma",
  60614. },
  60615. },
  60616. [
  60617. {
  60618. name: "Incognito",
  60619. height: math.unit(2.3, "meters"),
  60620. allForms: true
  60621. },
  60622. {
  60623. name: "Home Size",
  60624. height: math.unit(150, "meters"),
  60625. default: true,
  60626. allForms: true
  60627. },
  60628. {
  60629. name: "Macro",
  60630. height: math.unit(2, "km"),
  60631. allForms: true
  60632. },
  60633. {
  60634. name: "Mega",
  60635. height: math.unit(30, "km"),
  60636. allForms: true
  60637. },
  60638. {
  60639. name: "Giga",
  60640. height: math.unit(450, "km"),
  60641. allForms: true
  60642. },
  60643. {
  60644. name: "Giga+",
  60645. height: math.unit(3000, "km"),
  60646. allForms: true
  60647. },
  60648. {
  60649. name: "Giga++",
  60650. height: math.unit(6000, "km"),
  60651. allForms: true
  60652. },
  60653. {
  60654. name: "Terra",
  60655. height: math.unit(80000, "km"),
  60656. allForms: true
  60657. },
  60658. {
  60659. name: "Terra+",
  60660. height: math.unit(350000, "km"),
  60661. allForms: true
  60662. },
  60663. {
  60664. name: "Solar",
  60665. height: math.unit(1e6, "km"),
  60666. allForms: true
  60667. },
  60668. ],
  60669. {
  60670. "cobra": {
  60671. name: "Cobra",
  60672. default: true
  60673. },
  60674. "magma": {
  60675. name: "Magma Dragon",
  60676. },
  60677. }
  60678. ))
  60679. characterMakers.push(() => makeCharacter(
  60680. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  60681. {
  60682. front: {
  60683. height: math.unit(2, "meters"),
  60684. weight: math.unit(160, "kg"),
  60685. name: "Front",
  60686. image: {
  60687. source: "./media/characters/daxerios/front.svg",
  60688. extra: 1334/1277,
  60689. bottom: 45/1379
  60690. }
  60691. },
  60692. frontLewd: {
  60693. height: math.unit(2, "meters"),
  60694. weight: math.unit(160, "kg"),
  60695. name: "Front (Lewd)",
  60696. image: {
  60697. source: "./media/characters/daxerios/front-lewd.svg",
  60698. extra: 1334/1277,
  60699. bottom: 45/1379
  60700. }
  60701. },
  60702. dick: {
  60703. height: math.unit(2.35, "feet"),
  60704. name: "Dick",
  60705. image: {
  60706. source: "./media/characters/daxerios/dick.svg"
  60707. }
  60708. },
  60709. },
  60710. [
  60711. {
  60712. name: "\"Small\"",
  60713. height: math.unit(5, "meters")
  60714. },
  60715. {
  60716. name: "Original Size",
  60717. height: math.unit(500, "meters"),
  60718. default: true
  60719. },
  60720. {
  60721. name: "Mega",
  60722. height: math.unit(2, "km")
  60723. },
  60724. {
  60725. name: "Mega+",
  60726. height: math.unit(35, "km")
  60727. },
  60728. {
  60729. name: "Giga",
  60730. height: math.unit(250, "km")
  60731. },
  60732. {
  60733. name: "Giga+",
  60734. height: math.unit(3000, "km")
  60735. },
  60736. {
  60737. name: "Terra",
  60738. height: math.unit(25000, "km")
  60739. },
  60740. {
  60741. name: "Terra+",
  60742. height: math.unit(300000, "km")
  60743. },
  60744. {
  60745. name: "Solar",
  60746. height: math.unit(1e6, "km")
  60747. },
  60748. ]
  60749. ))
  60750. characterMakers.push(() => makeCharacter(
  60751. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  60752. {
  60753. front: {
  60754. height: math.unit(8 + 4/12, "feet"),
  60755. weight: math.unit(464, "lb"),
  60756. name: "Front",
  60757. image: {
  60758. source: "./media/characters/caveat/front.svg",
  60759. extra: 1861/1678,
  60760. bottom: 40/1901
  60761. }
  60762. },
  60763. },
  60764. [
  60765. {
  60766. name: "Normal",
  60767. height: math.unit(8 + 4/12, "feet"),
  60768. default: true
  60769. },
  60770. ]
  60771. ))
  60772. characterMakers.push(() => makeCharacter(
  60773. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  60774. {
  60775. front: {
  60776. height: math.unit(12, "feet"),
  60777. weight: math.unit(1800, "lb"),
  60778. name: "Front",
  60779. image: {
  60780. source: "./media/characters/centbair/front.svg",
  60781. extra: 781/663,
  60782. bottom: 25/806
  60783. }
  60784. },
  60785. frontNsfw: {
  60786. height: math.unit(12, "feet"),
  60787. weight: math.unit(1800, "lb"),
  60788. name: "Front (NSFW)",
  60789. image: {
  60790. source: "./media/characters/centbair/front-nsfw.svg",
  60791. extra: 781/663,
  60792. bottom: 25/806
  60793. }
  60794. },
  60795. back: {
  60796. height: math.unit(12, "feet"),
  60797. weight: math.unit(1800, "lb"),
  60798. name: "Back",
  60799. image: {
  60800. source: "./media/characters/centbair/back.svg",
  60801. extra: 808/761,
  60802. bottom: 19/827
  60803. }
  60804. },
  60805. dick: {
  60806. height: math.unit(6.5, "feet"),
  60807. name: "Dick",
  60808. image: {
  60809. source: "./media/characters/centbair/dick.svg"
  60810. }
  60811. },
  60812. slit: {
  60813. height: math.unit(3.25, "feet"),
  60814. name: "Slit",
  60815. image: {
  60816. source: "./media/characters/centbair/slit.svg"
  60817. }
  60818. },
  60819. },
  60820. [
  60821. {
  60822. name: "Normal",
  60823. height: math.unit(12, "feet"),
  60824. default: true
  60825. },
  60826. ]
  60827. ))
  60828. characterMakers.push(() => makeCharacter(
  60829. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  60830. {
  60831. front: {
  60832. height: math.unit(5 + 7/12, "feet"),
  60833. name: "Front",
  60834. image: {
  60835. source: "./media/characters/andy/front.svg",
  60836. extra: 634/588,
  60837. bottom: 36/670
  60838. },
  60839. extraAttributes: {
  60840. "pawLength": {
  60841. name: "Paw Length",
  60842. power: 1,
  60843. type: "length",
  60844. base: math.unit(1, "feet")
  60845. },
  60846. }
  60847. },
  60848. side: {
  60849. height: math.unit(5 + 7/12, "feet"),
  60850. name: "Side",
  60851. image: {
  60852. source: "./media/characters/andy/side.svg",
  60853. extra: 641/596,
  60854. bottom: 34/675
  60855. },
  60856. extraAttributes: {
  60857. "pawLength": {
  60858. name: "Paw Length",
  60859. power: 1,
  60860. type: "length",
  60861. base: math.unit(1, "feet")
  60862. },
  60863. }
  60864. },
  60865. back: {
  60866. height: math.unit(5 + 7/12, "feet"),
  60867. name: "Back",
  60868. image: {
  60869. source: "./media/characters/andy/back.svg",
  60870. extra: 618/583,
  60871. bottom: 39/657
  60872. },
  60873. extraAttributes: {
  60874. "pawLength": {
  60875. name: "Paw Length",
  60876. power: 1,
  60877. type: "length",
  60878. base: math.unit(1, "feet")
  60879. },
  60880. }
  60881. },
  60882. paw: {
  60883. height: math.unit(1.13, "feet"),
  60884. name: "Paw",
  60885. image: {
  60886. source: "./media/characters/andy/paw.svg"
  60887. }
  60888. },
  60889. },
  60890. [
  60891. {
  60892. name: "Micro",
  60893. height: math.unit(4, "inches")
  60894. },
  60895. {
  60896. name: "Normal",
  60897. height: math.unit(5 + 7/12, "feet"),
  60898. default: true
  60899. },
  60900. {
  60901. name: "Macro",
  60902. height: math.unit(390.42, "feet")
  60903. },
  60904. ]
  60905. ))
  60906. characterMakers.push(() => makeCharacter(
  60907. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  60908. {
  60909. front: {
  60910. height: math.unit(7, "feet"),
  60911. weight: math.unit(250, "lb"),
  60912. name: "Front",
  60913. image: {
  60914. source: "./media/characters/vix-titan/front.svg",
  60915. extra: 460/428,
  60916. bottom: 15/475
  60917. },
  60918. extraAttributes: {
  60919. "pawWidth": {
  60920. name: "Paw Width",
  60921. power: 1,
  60922. type: "length",
  60923. base: math.unit(0.75, "feet")
  60924. },
  60925. }
  60926. },
  60927. },
  60928. [
  60929. {
  60930. name: "Normal",
  60931. height: math.unit(7, "feet"),
  60932. default: true
  60933. },
  60934. {
  60935. name: "Giant",
  60936. height: math.unit(1500, "feet")
  60937. },
  60938. {
  60939. name: "Mega",
  60940. height: math.unit(10, "miles")
  60941. },
  60942. {
  60943. name: "Giga",
  60944. height: math.unit(150, "miles")
  60945. },
  60946. {
  60947. name: "Tera",
  60948. height: math.unit(144000, "miles")
  60949. },
  60950. ]
  60951. ))
  60952. characterMakers.push(() => makeCharacter(
  60953. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  60954. {
  60955. front: {
  60956. height: math.unit(6 + 2/12, "feet"),
  60957. name: "Front",
  60958. image: {
  60959. source: "./media/characters/reiku/front.svg",
  60960. extra: 1910/1757,
  60961. bottom: 103/2013
  60962. },
  60963. extraAttributes: {
  60964. "thighThickness": {
  60965. name: "Thigh Thickness",
  60966. power: 1,
  60967. type: "length",
  60968. base: math.unit(1.12, "feet")
  60969. },
  60970. "assThickness": {
  60971. name: "Ass Thickness",
  60972. power: 1,
  60973. type: "length",
  60974. base: math.unit(1.12*2, "feet")
  60975. },
  60976. }
  60977. },
  60978. side: {
  60979. height: math.unit(6 + 2/12, "feet"),
  60980. name: "Side",
  60981. image: {
  60982. source: "./media/characters/reiku/side.svg",
  60983. extra: 1846/1748,
  60984. bottom: 99/1945
  60985. },
  60986. extraAttributes: {
  60987. "thighThickness": {
  60988. name: "Thigh Thickness",
  60989. power: 1,
  60990. type: "length",
  60991. base: math.unit(1.12, "feet")
  60992. },
  60993. "assThickness": {
  60994. name: "Ass Thickness",
  60995. power: 1,
  60996. type: "length",
  60997. base: math.unit(1.12*2, "feet")
  60998. },
  60999. }
  61000. },
  61001. back: {
  61002. height: math.unit(6 + 2/12, "feet"),
  61003. name: "Back",
  61004. image: {
  61005. source: "./media/characters/reiku/back.svg",
  61006. extra: 1941/1786,
  61007. bottom: 34/1975
  61008. },
  61009. extraAttributes: {
  61010. "thighThickness": {
  61011. name: "Thigh Thickness",
  61012. power: 1,
  61013. type: "length",
  61014. base: math.unit(1.12, "feet")
  61015. },
  61016. "assThickness": {
  61017. name: "Ass Thickness",
  61018. power: 1,
  61019. type: "length",
  61020. base: math.unit(1.12*2, "feet")
  61021. },
  61022. }
  61023. },
  61024. head: {
  61025. height: math.unit(1.8, "feet"),
  61026. name: "Head",
  61027. image: {
  61028. source: "./media/characters/reiku/head.svg"
  61029. }
  61030. },
  61031. tailTop: {
  61032. height: math.unit(8.4, "feet"),
  61033. name: "Tail (Top)",
  61034. image: {
  61035. source: "./media/characters/reiku/tail-top.svg"
  61036. }
  61037. },
  61038. tailBottom: {
  61039. height: math.unit(8.4, "feet"),
  61040. name: "Tail (Bottom)",
  61041. image: {
  61042. source: "./media/characters/reiku/tail-bottom.svg"
  61043. }
  61044. },
  61045. foot: {
  61046. height: math.unit(2.6, "feet"),
  61047. name: "Foot",
  61048. image: {
  61049. source: "./media/characters/reiku/foot.svg"
  61050. }
  61051. },
  61052. footCurled: {
  61053. height: math.unit(2.3, "feet"),
  61054. name: "Foot (Curled)",
  61055. image: {
  61056. source: "./media/characters/reiku/foot-curled.svg"
  61057. }
  61058. },
  61059. footSide: {
  61060. height: math.unit(1.26, "feet"),
  61061. name: "Foot (Side)",
  61062. image: {
  61063. source: "./media/characters/reiku/foot-side.svg"
  61064. }
  61065. },
  61066. },
  61067. [
  61068. {
  61069. name: "Normal",
  61070. height: math.unit(6 + 2/12, "feet"),
  61071. default: true
  61072. },
  61073. ]
  61074. ))
  61075. characterMakers.push(() => makeCharacter(
  61076. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  61077. {
  61078. front: {
  61079. height: math.unit(7, "feet"),
  61080. weight: math.unit(500, "kg"),
  61081. name: "Front",
  61082. image: {
  61083. source: "./media/characters/cialda/front.svg",
  61084. extra: 912/745,
  61085. bottom: 55/967
  61086. }
  61087. },
  61088. },
  61089. [
  61090. {
  61091. name: "Normal",
  61092. height: math.unit(7, "feet"),
  61093. default: true
  61094. },
  61095. ]
  61096. ))
  61097. characterMakers.push(() => makeCharacter(
  61098. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  61099. {
  61100. side: {
  61101. height: math.unit(6, "feet"),
  61102. weight: math.unit(600, "lb"),
  61103. preyCapacity: math.unit(25, "liters"),
  61104. name: "Side",
  61105. image: {
  61106. source: "./media/characters/darkkin/side.svg",
  61107. extra: 1597/1447,
  61108. bottom: 101/1698
  61109. }
  61110. },
  61111. },
  61112. [
  61113. {
  61114. name: "Canon Height",
  61115. height: math.unit(568, "feet"),
  61116. default: true
  61117. },
  61118. ]
  61119. ))
  61120. characterMakers.push(() => makeCharacter(
  61121. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  61122. {
  61123. front: {
  61124. height: math.unit(6, "feet"),
  61125. weight: math.unit(1500, "lb"),
  61126. preyCapacity: math.unit(3, "people"),
  61127. name: "Front",
  61128. image: {
  61129. source: "./media/characters/livnia/front.svg",
  61130. extra: 934/932,
  61131. bottom: 83/1017
  61132. }
  61133. },
  61134. back: {
  61135. height: math.unit(6, "feet"),
  61136. weight: math.unit(1500, "lb"),
  61137. preyCapacity: math.unit(3, "people"),
  61138. name: "Back",
  61139. image: {
  61140. source: "./media/characters/livnia/back.svg",
  61141. extra: 916/915,
  61142. bottom: 58/974
  61143. }
  61144. },
  61145. head: {
  61146. height: math.unit(1.53, "feet"),
  61147. name: "Head",
  61148. image: {
  61149. source: "./media/characters/livnia/head.svg"
  61150. }
  61151. },
  61152. maw: {
  61153. height: math.unit(0.78, "feet"),
  61154. name: "Maw",
  61155. image: {
  61156. source: "./media/characters/livnia/maw.svg"
  61157. }
  61158. },
  61159. genitals: {
  61160. height: math.unit(0.35, "feet"),
  61161. name: "Genitals",
  61162. image: {
  61163. source: "./media/characters/livnia/genitals.svg"
  61164. }
  61165. },
  61166. },
  61167. [
  61168. {
  61169. name: "Normal",
  61170. height: math.unit(1000, "feet"),
  61171. default: true
  61172. },
  61173. ]
  61174. ))
  61175. characterMakers.push(() => makeCharacter(
  61176. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  61177. {
  61178. front: {
  61179. height: math.unit(4, "feet"),
  61180. weight: math.unit(73, "lb"),
  61181. name: "Front",
  61182. image: {
  61183. source: "./media/characters/hayaku/front.svg",
  61184. extra: 1011/888,
  61185. bottom: 33/1044
  61186. }
  61187. },
  61188. back: {
  61189. height: math.unit(4, "feet"),
  61190. weight: math.unit(73, "lb"),
  61191. name: "Back",
  61192. image: {
  61193. source: "./media/characters/hayaku/back.svg",
  61194. extra: 1040/930,
  61195. bottom: 20/1060
  61196. }
  61197. },
  61198. },
  61199. [
  61200. {
  61201. name: "Normal",
  61202. height: math.unit(4, "feet"),
  61203. default: true
  61204. },
  61205. ]
  61206. ))
  61207. characterMakers.push(() => makeCharacter(
  61208. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  61209. {
  61210. front: {
  61211. height: math.unit(6 + 7/12, "feet"),
  61212. weight: math.unit(300, "lb"),
  61213. name: "Front",
  61214. image: {
  61215. source: "./media/characters/athena-bryzant/front.svg",
  61216. extra: 870/835,
  61217. bottom: 33/903
  61218. }
  61219. },
  61220. back: {
  61221. height: math.unit(6 + 7/12, "feet"),
  61222. weight: math.unit(300, "lb"),
  61223. name: "Back",
  61224. image: {
  61225. source: "./media/characters/athena-bryzant/back.svg",
  61226. extra: 858/823,
  61227. bottom: 30/888
  61228. }
  61229. },
  61230. head: {
  61231. height: math.unit(2.38, "feet"),
  61232. name: "Head",
  61233. image: {
  61234. source: "./media/characters/athena-bryzant/head.svg"
  61235. }
  61236. },
  61237. wings: {
  61238. height: math.unit(2.85, "feet"),
  61239. name: "Wings",
  61240. image: {
  61241. source: "./media/characters/athena-bryzant/wings.svg"
  61242. }
  61243. },
  61244. },
  61245. [
  61246. {
  61247. name: "Normal",
  61248. height: math.unit(6 + 7/12, "feet"),
  61249. default: true
  61250. },
  61251. {
  61252. name: "Big",
  61253. height: math.unit(8, "feet")
  61254. },
  61255. {
  61256. name: "Very Big",
  61257. height: math.unit(11, "feet")
  61258. },
  61259. ]
  61260. ))
  61261. characterMakers.push(() => makeCharacter(
  61262. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  61263. {
  61264. side: {
  61265. height: math.unit(3, "meters"),
  61266. weight: math.unit(7500, "kg"),
  61267. preyCapacity: math.unit(1e12, "people"),
  61268. name: "Side",
  61269. image: {
  61270. source: "./media/characters/zel-kesh/side.svg",
  61271. extra: 910/407,
  61272. bottom: 147/1057
  61273. }
  61274. },
  61275. },
  61276. [
  61277. {
  61278. name: "Normal",
  61279. height: math.unit(3, "meters"),
  61280. default: true
  61281. },
  61282. ]
  61283. ))
  61284. characterMakers.push(() => makeCharacter(
  61285. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  61286. {
  61287. front: {
  61288. height: math.unit(2, "meters"),
  61289. weight: math.unit(95, "kg"),
  61290. name: "Front",
  61291. image: {
  61292. source: "./media/characters/kane-fox/front.svg",
  61293. extra: 945/888,
  61294. bottom: 27/972
  61295. }
  61296. },
  61297. back: {
  61298. height: math.unit(2, "meters"),
  61299. weight: math.unit(95, "kg"),
  61300. name: "Back",
  61301. image: {
  61302. source: "./media/characters/kane-fox/back.svg",
  61303. extra: 959/914,
  61304. bottom: 15/974
  61305. }
  61306. },
  61307. frontLewd: {
  61308. height: math.unit(2, "meters"),
  61309. weight: math.unit(95, "kg"),
  61310. name: "Front (Lewd)",
  61311. image: {
  61312. source: "./media/characters/kane-fox/front-lewd.svg",
  61313. extra: 945/888,
  61314. bottom: 27/972
  61315. }
  61316. },
  61317. },
  61318. [
  61319. {
  61320. name: "Home Size",
  61321. height: math.unit(2, "meters"),
  61322. default: true
  61323. },
  61324. {
  61325. name: "Macro",
  61326. height: math.unit(200, "meters")
  61327. },
  61328. {
  61329. name: "Small Mega",
  61330. height: math.unit(3, "km")
  61331. },
  61332. {
  61333. name: "Mega",
  61334. height: math.unit(50, "km")
  61335. },
  61336. {
  61337. name: "Giga",
  61338. height: math.unit(200, "km")
  61339. },
  61340. {
  61341. name: "Giga+",
  61342. height: math.unit(2500, "km")
  61343. },
  61344. {
  61345. name: "Terra",
  61346. height: math.unit(70000, "km")
  61347. },
  61348. {
  61349. name: "Terra+",
  61350. height: math.unit(150000, "km")
  61351. },
  61352. {
  61353. name: "Terra++",
  61354. height: math.unit(400000, "km")
  61355. },
  61356. ]
  61357. ))
  61358. characterMakers.push(() => makeCharacter(
  61359. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  61360. {
  61361. otter_front: {
  61362. height: math.unit(1.8, "meters"),
  61363. weight: math.unit(90, "kg"),
  61364. name: "Front",
  61365. image: {
  61366. source: "./media/characters/ayranus/otter-front.svg",
  61367. extra: 468/452,
  61368. bottom: 43/511
  61369. },
  61370. form: "otter",
  61371. },
  61372. otter_frontLewd: {
  61373. height: math.unit(1.8, "meters"),
  61374. weight: math.unit(90, "kg"),
  61375. name: "Front (Lewd)",
  61376. image: {
  61377. source: "./media/characters/ayranus/otter-front-lewd.svg",
  61378. extra: 468/452,
  61379. bottom: 43/511
  61380. },
  61381. form: "otter",
  61382. },
  61383. lionbat_front: {
  61384. height: math.unit(1.8, "meters"),
  61385. weight: math.unit(90, "kg"),
  61386. name: "Front (Lewd)",
  61387. image: {
  61388. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  61389. extra: 797/740,
  61390. bottom: 78/875
  61391. },
  61392. form: "lionbat",
  61393. },
  61394. paw: {
  61395. height: math.unit(1.5, "feet"),
  61396. name: "Paw",
  61397. image: {
  61398. source: "./media/characters/ayranus/paw.svg"
  61399. },
  61400. },
  61401. },
  61402. [
  61403. {
  61404. name: "Incognito",
  61405. height: math.unit(1.8, "meters"),
  61406. allForms: true
  61407. },
  61408. {
  61409. name: "Macro",
  61410. height: math.unit(60, "meters"),
  61411. allForms: true
  61412. },
  61413. {
  61414. name: "Macro+",
  61415. height: math.unit(200, "meters"),
  61416. allForms: true
  61417. },
  61418. {
  61419. name: "Mega",
  61420. height: math.unit(35, "km"),
  61421. allForms: true
  61422. },
  61423. {
  61424. name: "Giga",
  61425. height: math.unit(220, "km"),
  61426. allForms: true
  61427. },
  61428. {
  61429. name: "Giga+",
  61430. height: math.unit(1500, "km"),
  61431. allForms: true
  61432. },
  61433. {
  61434. name: "Terra",
  61435. height: math.unit(13000, "km"),
  61436. allForms: true
  61437. },
  61438. {
  61439. name: "Terra+",
  61440. height: math.unit(500000, "km"),
  61441. allForms: true
  61442. },
  61443. {
  61444. name: "Galactic",
  61445. height: math.unit(486080, "parsecs"),
  61446. default: true,
  61447. allForms: true
  61448. },
  61449. ],
  61450. {
  61451. "otter": {
  61452. name: "Otter",
  61453. default: true
  61454. },
  61455. "lionbat": {
  61456. name: "Lionbat",
  61457. },
  61458. }
  61459. ))
  61460. characterMakers.push(() => makeCharacter(
  61461. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  61462. {
  61463. front: {
  61464. height: math.unit(7 + 4/12, "feet"),
  61465. weight: math.unit(400, "lb"),
  61466. name: "Front",
  61467. image: {
  61468. source: "./media/characters/proxy/front.svg",
  61469. extra: 1605/1542,
  61470. bottom: 55/1660
  61471. }
  61472. },
  61473. side: {
  61474. height: math.unit(7 + 4/12, "feet"),
  61475. weight: math.unit(400, "lb"),
  61476. name: "Side",
  61477. image: {
  61478. source: "./media/characters/proxy/side.svg",
  61479. extra: 794/759,
  61480. bottom: 6/800
  61481. }
  61482. },
  61483. hand: {
  61484. height: math.unit(1.54, "feet"),
  61485. name: "Hand",
  61486. image: {
  61487. source: "./media/characters/proxy/hand.svg"
  61488. }
  61489. },
  61490. paw: {
  61491. height: math.unit(1.53, "feet"),
  61492. name: "Paw",
  61493. image: {
  61494. source: "./media/characters/proxy/paw.svg"
  61495. }
  61496. },
  61497. maw: {
  61498. height: math.unit(1.9, "feet"),
  61499. name: "Maw",
  61500. image: {
  61501. source: "./media/characters/proxy/maw.svg"
  61502. }
  61503. },
  61504. },
  61505. [
  61506. {
  61507. name: "Normal",
  61508. height: math.unit(7 + 4/12, "feet"),
  61509. default: true
  61510. },
  61511. ]
  61512. ))
  61513. characterMakers.push(() => makeCharacter(
  61514. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  61515. {
  61516. front: {
  61517. height: math.unit(4, "meters"),
  61518. name: "Front",
  61519. image: {
  61520. source: "./media/characters/crocozilla/front.svg",
  61521. extra: 1790/1742,
  61522. bottom: 78/1868
  61523. }
  61524. },
  61525. },
  61526. [
  61527. {
  61528. name: "Normal",
  61529. height: math.unit(4, "meters"),
  61530. default: true
  61531. },
  61532. ]
  61533. ))
  61534. characterMakers.push(() => makeCharacter(
  61535. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  61536. {
  61537. front: {
  61538. height: math.unit(1.8, "meters"),
  61539. weight: math.unit(120, "kg"),
  61540. name: "Front",
  61541. image: {
  61542. source: "./media/characters/kurz/front.svg",
  61543. extra: 1960/1824,
  61544. bottom: 41/2001
  61545. }
  61546. },
  61547. back: {
  61548. height: math.unit(1.8, "meters"),
  61549. weight: math.unit(120, "kg"),
  61550. name: "Back",
  61551. image: {
  61552. source: "./media/characters/kurz/back.svg",
  61553. extra: 1906/1787,
  61554. bottom: 60/1966
  61555. }
  61556. },
  61557. frontLewd: {
  61558. height: math.unit(1.8, "meters"),
  61559. weight: math.unit(120, "kg"),
  61560. name: "Front (Lewd)",
  61561. image: {
  61562. source: "./media/characters/kurz/front-lewd.svg",
  61563. extra: 1960/1824,
  61564. bottom: 41/2001
  61565. }
  61566. },
  61567. maw: {
  61568. height: math.unit(0.69, "meters"),
  61569. name: "Maw",
  61570. image: {
  61571. source: "./media/characters/kurz/maw.svg"
  61572. }
  61573. },
  61574. },
  61575. [
  61576. {
  61577. name: "Original Size",
  61578. height: math.unit(1.8, "meters")
  61579. },
  61580. {
  61581. name: "Incognito Size",
  61582. height: math.unit(2.4, "meters"),
  61583. default: true
  61584. },
  61585. {
  61586. name: "Macro",
  61587. height: math.unit(30, "meters")
  61588. },
  61589. {
  61590. name: "Macro+",
  61591. height: math.unit(250, "meters")
  61592. },
  61593. {
  61594. name: "Mega",
  61595. height: math.unit(2, "km")
  61596. },
  61597. {
  61598. name: "Mega+",
  61599. height: math.unit(35, "km")
  61600. },
  61601. {
  61602. name: "Mega++",
  61603. height: math.unit(75, "km")
  61604. },
  61605. {
  61606. name: "Giga",
  61607. height: math.unit(250, "km")
  61608. },
  61609. {
  61610. name: "Terra",
  61611. height: math.unit(15000, "km")
  61612. },
  61613. {
  61614. name: "Terra+",
  61615. height: math.unit(2250000, "km")
  61616. },
  61617. ]
  61618. ))
  61619. characterMakers.push(() => makeCharacter(
  61620. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  61621. {
  61622. front: {
  61623. height: math.unit(16 + 3/12, "feet"),
  61624. weight: math.unit(3575, "lb"),
  61625. name: "Front",
  61626. image: {
  61627. source: "./media/characters/nikita/front.svg",
  61628. extra: 1064/955,
  61629. bottom: 47/1111
  61630. }
  61631. },
  61632. },
  61633. [
  61634. {
  61635. name: "Normal",
  61636. height: math.unit(16 + 3/12, "feet"),
  61637. default: true
  61638. },
  61639. {
  61640. name: "Big",
  61641. height: math.unit(21, "feet")
  61642. },
  61643. {
  61644. name: "Biggest",
  61645. height: math.unit(50, "feet")
  61646. },
  61647. ]
  61648. ))
  61649. characterMakers.push(() => makeCharacter(
  61650. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  61651. {
  61652. front: {
  61653. height: math.unit(1.92, "m"),
  61654. weight: math.unit(76, "kg"),
  61655. name: "Front",
  61656. image: {
  61657. source: "./media/characters/kyara/front.svg",
  61658. extra: 1550/1438,
  61659. bottom: 139/1689
  61660. }
  61661. },
  61662. back: {
  61663. height: math.unit(1.92, "m"),
  61664. weight: math.unit(76, "kg"),
  61665. name: "Back",
  61666. image: {
  61667. source: "./media/characters/kyara/back.svg",
  61668. extra: 1523/1427,
  61669. bottom: 83/1606
  61670. }
  61671. },
  61672. head: {
  61673. height: math.unit(1.22, "feet"),
  61674. name: "Head",
  61675. image: {
  61676. source: "./media/characters/kyara/head.svg"
  61677. }
  61678. },
  61679. maw: {
  61680. height: math.unit(0.73, "feet"),
  61681. name: "Maw",
  61682. image: {
  61683. source: "./media/characters/kyara/maw.svg"
  61684. }
  61685. },
  61686. paws: {
  61687. height: math.unit(0.95, "feet"),
  61688. name: "Paws",
  61689. image: {
  61690. source: "./media/characters/kyara/paws.svg"
  61691. }
  61692. },
  61693. },
  61694. [
  61695. {
  61696. name: "Normal",
  61697. height: math.unit(1.92, "meters"),
  61698. default: true
  61699. },
  61700. {
  61701. name: "Mini Macro",
  61702. height: math.unit(192, "meters")
  61703. },
  61704. {
  61705. name: "Macro",
  61706. height: math.unit(480, "meters")
  61707. },
  61708. {
  61709. name: "Mega Macro",
  61710. height: math.unit(1440, "meters")
  61711. },
  61712. ]
  61713. ))
  61714. characterMakers.push(() => makeCharacter(
  61715. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  61716. {
  61717. front: {
  61718. height: math.unit(6, "feet"),
  61719. weight: math.unit(160, "lbs"),
  61720. preyCapacity: math.unit(0.05, "people"),
  61721. name: "Front",
  61722. image: {
  61723. source: "./media/characters/layla-amari/front.svg",
  61724. extra: 1922/1723,
  61725. bottom: 90/2012
  61726. }
  61727. },
  61728. back: {
  61729. height: math.unit(6, "feet"),
  61730. weight: math.unit(160, "lbs"),
  61731. preyCapacity: math.unit(0.05, "people"),
  61732. name: "Back",
  61733. image: {
  61734. source: "./media/characters/layla-amari/back.svg",
  61735. extra: 1917/1718,
  61736. bottom: 50/1967
  61737. }
  61738. },
  61739. frontDressed: {
  61740. height: math.unit(6, "feet"),
  61741. weight: math.unit(160, "lbs"),
  61742. preyCapacity: math.unit(0.05, "people"),
  61743. name: "Front (Dressed)",
  61744. image: {
  61745. source: "./media/characters/layla-amari/front-dressed.svg",
  61746. extra: 1922/1723,
  61747. bottom: 90/2012
  61748. }
  61749. },
  61750. face: {
  61751. height: math.unit(0.93, "feet"),
  61752. name: "Face",
  61753. image: {
  61754. source: "./media/characters/layla-amari/face.svg"
  61755. }
  61756. },
  61757. hand: {
  61758. height: math.unit(0.66 , "feet"),
  61759. name: "Hand",
  61760. image: {
  61761. source: "./media/characters/layla-amari/hand.svg"
  61762. }
  61763. },
  61764. foot: {
  61765. height: math.unit(1, "feet"),
  61766. name: "Foot",
  61767. image: {
  61768. source: "./media/characters/layla-amari/foot.svg"
  61769. }
  61770. },
  61771. necklace: {
  61772. height: math.unit(0.32, "feet"),
  61773. name: "Necklace",
  61774. image: {
  61775. source: "./media/characters/layla-amari/necklace.svg"
  61776. }
  61777. },
  61778. nipple: {
  61779. height: math.unit(0.2, "feet"),
  61780. name: "Nipple",
  61781. image: {
  61782. source: "./media/characters/layla-amari/nipple.svg"
  61783. }
  61784. },
  61785. slit: {
  61786. height: math.unit(0.26, "feet"),
  61787. name: "Slit",
  61788. image: {
  61789. source: "./media/characters/layla-amari/slit.svg"
  61790. }
  61791. },
  61792. },
  61793. [
  61794. {
  61795. name: "Natural",
  61796. height: math.unit(825, "feet"),
  61797. default: true
  61798. },
  61799. {
  61800. name: "Enhanced",
  61801. height: math.unit(8250, "feet")
  61802. },
  61803. {
  61804. name: "Apparent Size",
  61805. height: math.unit(9.04363e+8, "meters")
  61806. },
  61807. ]
  61808. ))
  61809. characterMakers.push(() => makeCharacter(
  61810. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  61811. {
  61812. front: {
  61813. height: math.unit(1.3, "meters"),
  61814. name: "Front",
  61815. image: {
  61816. source: "./media/characters/percy/front.svg",
  61817. extra: 1444/1289,
  61818. bottom: 54/1498
  61819. }
  61820. },
  61821. },
  61822. [
  61823. {
  61824. name: "Normal",
  61825. height: math.unit(1.3, "meters"),
  61826. default: true
  61827. },
  61828. ]
  61829. ))
  61830. characterMakers.push(() => makeCharacter(
  61831. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  61832. {
  61833. side: {
  61834. height: math.unit(10, "meters"),
  61835. name: "Side",
  61836. image: {
  61837. source: "./media/characters/grev/side.svg",
  61838. extra: 653/266,
  61839. bottom: 77/730
  61840. }
  61841. },
  61842. head: {
  61843. height: math.unit(16.2, "m"),
  61844. name: "Head",
  61845. image: {
  61846. source: "./media/characters/grev/head.svg"
  61847. }
  61848. },
  61849. dick: {
  61850. height: math.unit(2.8135932034, "m"),
  61851. name: "Dick",
  61852. image: {
  61853. source: "./media/characters/grev/dick.svg"
  61854. }
  61855. },
  61856. },
  61857. [
  61858. {
  61859. name: "Friend-Sized",
  61860. height: math.unit(80, "cm")
  61861. },
  61862. {
  61863. name: "Normal",
  61864. height: math.unit(10, "meters"),
  61865. default: true
  61866. },
  61867. {
  61868. name: "Macro",
  61869. height: math.unit(200, "meters")
  61870. },
  61871. ]
  61872. ))
  61873. characterMakers.push(() => makeCharacter(
  61874. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  61875. {
  61876. front: {
  61877. height: math.unit(19.75, "feet"),
  61878. weight: math.unit(20000, "lb"),
  61879. name: "Front",
  61880. image: {
  61881. source: "./media/characters/azuuca/front.svg",
  61882. extra: 1593/1511,
  61883. bottom: 55/1648
  61884. }
  61885. },
  61886. },
  61887. [
  61888. {
  61889. name: "Normal",
  61890. height: math.unit(19.75, "feet"),
  61891. default: true
  61892. },
  61893. ]
  61894. ))
  61895. characterMakers.push(() => makeCharacter(
  61896. { name: "Valuria", species: ["vesempress"], tags: ["anthro"] },
  61897. {
  61898. front: {
  61899. height: math.unit(15, "feet"),
  61900. weight: math.unit(1500, "lb"),
  61901. name: "Front",
  61902. image: {
  61903. source: "./media/characters/valuria/front.svg",
  61904. extra: 1588/1486,
  61905. bottom: 31/1619
  61906. }
  61907. },
  61908. },
  61909. [
  61910. {
  61911. name: "Normal",
  61912. height: math.unit(15, "feet"),
  61913. default: true
  61914. },
  61915. {
  61916. name: "Small",
  61917. height: math.unit(500, "feet")
  61918. },
  61919. {
  61920. name: "Macro",
  61921. height: math.unit(4000, "feet")
  61922. },
  61923. {
  61924. name: "Mega Macro",
  61925. height: math.unit(2000, "miles")
  61926. },
  61927. {
  61928. name: "Giga Macro",
  61929. height: math.unit(3e6, "miles")
  61930. },
  61931. ]
  61932. ))
  61933. characterMakers.push(() => makeCharacter(
  61934. { name: "Terigaia", species: ["gaelterranian"], tags: ["anthro"] },
  61935. {
  61936. front: {
  61937. height: math.unit(3500, "solarradii"),
  61938. name: "Front",
  61939. image: {
  61940. source: "./media/characters/terigaia/front.svg",
  61941. extra: 1531/1451,
  61942. bottom: 98/1629
  61943. }
  61944. },
  61945. },
  61946. [
  61947. {
  61948. name: "Normal",
  61949. height: math.unit(3500, "solarradii"),
  61950. default: true
  61951. },
  61952. ]
  61953. ))
  61954. characterMakers.push(() => makeCharacter(
  61955. { name: "Blair (Blaziken)", species: ["blaziken"], tags: ["anthro"] },
  61956. {
  61957. front: {
  61958. height: math.unit(9.34, "feet"),
  61959. weight: math.unit(600, "lb"),
  61960. name: "Front",
  61961. image: {
  61962. source: "./media/characters/blair-blaziken/front.svg",
  61963. extra: 1557/1462,
  61964. bottom: 55/1612
  61965. }
  61966. },
  61967. },
  61968. [
  61969. {
  61970. name: "Normal",
  61971. height: math.unit(9.34, "feet"),
  61972. default: true
  61973. },
  61974. ]
  61975. ))
  61976. characterMakers.push(() => makeCharacter(
  61977. { name: "Braxia", species: ["pistrogre", "human"], tags: ["anthro"] },
  61978. {
  61979. pistrogre_front: {
  61980. height: math.unit(10, "feet"),
  61981. weight: math.unit(10, "tons"),
  61982. name: "Front",
  61983. image: {
  61984. source: "./media/characters/braxia/pistrogre-front.svg",
  61985. extra: 1531/1334,
  61986. bottom: 114/1645
  61987. },
  61988. form: "pistrogre",
  61989. default: true
  61990. },
  61991. human_front: {
  61992. height: math.unit(10, "feet"),
  61993. weight: math.unit(10, "tons"),
  61994. name: "Front",
  61995. image: {
  61996. source: "./media/characters/braxia/human-front.svg",
  61997. extra: 1574/1501,
  61998. bottom: 37/1611
  61999. },
  62000. form: "human",
  62001. default: true
  62002. },
  62003. },
  62004. [
  62005. {
  62006. name: "Normal",
  62007. height: math.unit(10, "feet"),
  62008. default: true,
  62009. allForms: true
  62010. },
  62011. {
  62012. name: "Macro",
  62013. height: math.unit(1000, "feet"),
  62014. allForms: true
  62015. },
  62016. {
  62017. name: "Mega Macro",
  62018. height: math.unit(100, "miles"),
  62019. allForms: true
  62020. },
  62021. {
  62022. name: "Cosmic",
  62023. height: math.unit(1000000, "lightyears"),
  62024. allForms: true
  62025. },
  62026. {
  62027. name: "ϐѮԆԬӁꭍϞԢ",
  62028. height: math.unit(1000, "multiverses"),
  62029. allForms: true
  62030. },
  62031. ],
  62032. {
  62033. "pistrogre": {
  62034. name: "Pistrogre",
  62035. default: true
  62036. },
  62037. "human": {
  62038. name: "Human",
  62039. },
  62040. }
  62041. ))
  62042. characterMakers.push(() => makeCharacter(
  62043. { name: "Kiriga Yato", species: ["zorgoia"], tags: ["anthro"] },
  62044. {
  62045. front: {
  62046. height: math.unit(6 + 1/12, "feet"),
  62047. weight: math.unit(280, "lb"),
  62048. name: "Front",
  62049. image: {
  62050. source: "./media/characters/kiriga-yato/front.svg",
  62051. extra: 445/394,
  62052. bottom: 11/456
  62053. }
  62054. },
  62055. },
  62056. [
  62057. {
  62058. name: "Descended",
  62059. height: math.unit(3, "feet")
  62060. },
  62061. {
  62062. name: "Average",
  62063. height: math.unit(6 + 1/12, "feet"),
  62064. default: true
  62065. },
  62066. {
  62067. name: "Ascended",
  62068. height: math.unit(9 + 2/12, "feet")
  62069. },
  62070. ]
  62071. ))
  62072. characterMakers.push(() => makeCharacter(
  62073. { name: "Kylie", species: ["giraffe"], tags: ["anthro"] },
  62074. {
  62075. front: {
  62076. height: math.unit(6, "feet"),
  62077. weight: math.unit(150, "lb"),
  62078. name: "Front",
  62079. image: {
  62080. source: "./media/characters/kylie/front.svg",
  62081. extra: 1114/1046,
  62082. bottom: 65/1179
  62083. },
  62084. extraAttributes: {
  62085. "hoofSize": {
  62086. name: "Hoof Size",
  62087. power: 2,
  62088. type: "area",
  62089. base: math.unit(0.034, "m^2")
  62090. },
  62091. "footSize": {
  62092. name: "Foot Size",
  62093. power: 2,
  62094. type: "area",
  62095. base: math.unit(0.75, "m^2")
  62096. },
  62097. }
  62098. },
  62099. side: {
  62100. height: math.unit(6, "feet"),
  62101. weight: math.unit(150, "lb"),
  62102. name: "Side",
  62103. image: {
  62104. source: "./media/characters/kylie/side.svg",
  62105. extra: 1178/1110,
  62106. bottom: 21/1199
  62107. },
  62108. extraAttributes: {
  62109. "hoofSize": {
  62110. name: "Hoof Size",
  62111. power: 2,
  62112. type: "area",
  62113. base: math.unit(0.034, "m^2")
  62114. },
  62115. "footSize": {
  62116. name: "Foot Size",
  62117. power: 2,
  62118. type: "area",
  62119. base: math.unit(0.75, "m^2")
  62120. },
  62121. }
  62122. },
  62123. back: {
  62124. height: math.unit(6, "feet"),
  62125. weight: math.unit(150, "lb"),
  62126. name: "Back",
  62127. image: {
  62128. source: "./media/characters/kylie/back.svg",
  62129. extra: 1115/1047,
  62130. bottom: 66/1181
  62131. },
  62132. extraAttributes: {
  62133. "hoofSize": {
  62134. name: "Hoof Size",
  62135. power: 2,
  62136. type: "area",
  62137. base: math.unit(0.034, "m^2")
  62138. },
  62139. "footSize": {
  62140. name: "Foot Size",
  62141. power: 2,
  62142. type: "area",
  62143. base: math.unit(0.75, "m^2")
  62144. },
  62145. }
  62146. },
  62147. head: {
  62148. height: math.unit(1.85, "feet"),
  62149. name: "Head",
  62150. image: {
  62151. source: "./media/characters/kylie/head.svg"
  62152. }
  62153. },
  62154. },
  62155. [
  62156. {
  62157. name: "Normal",
  62158. height: math.unit(90, "meters"),
  62159. default: true
  62160. },
  62161. ]
  62162. ))
  62163. characterMakers.push(() => makeCharacter(
  62164. { name: "Sabado", species: ["suicune"], tags: ["anthro"] },
  62165. {
  62166. front: {
  62167. height: math.unit(245, "feet"),
  62168. weight: math.unit(400000, "lb"),
  62169. name: "Front",
  62170. image: {
  62171. source: "./media/characters/sabado/front.svg",
  62172. extra: 1309/1164,
  62173. bottom: 29/1338
  62174. }
  62175. },
  62176. },
  62177. [
  62178. {
  62179. name: "Normal",
  62180. height: math.unit(245, "feet"),
  62181. default: true
  62182. },
  62183. ]
  62184. ))
  62185. characterMakers.push(() => makeCharacter(
  62186. { name: "Zechal", species: ["shark", "dragon", "deity"], tags: ["anthro"] },
  62187. {
  62188. shark_front: {
  62189. height: math.unit(2, "meters"),
  62190. weight: math.unit(200, "kg"),
  62191. name: "Front",
  62192. image: {
  62193. source: "./media/characters/zechal/shark-front.svg",
  62194. extra: 969/925,
  62195. bottom: 74/1043
  62196. },
  62197. form: "shark",
  62198. },
  62199. shark_back: {
  62200. height: math.unit(2, "meters"),
  62201. weight: math.unit(200, "kg"),
  62202. name: "Back",
  62203. image: {
  62204. source: "./media/characters/zechal/shark-back.svg",
  62205. extra: 994/949,
  62206. bottom: 176/1170
  62207. },
  62208. form: "shark",
  62209. },
  62210. shark_frontLewd: {
  62211. height: math.unit(2, "meters"),
  62212. weight: math.unit(200, "kg"),
  62213. name: "Front (Lewd)",
  62214. image: {
  62215. source: "./media/characters/zechal/shark-front-lewd.svg",
  62216. extra: 969/925,
  62217. bottom: 74/1043
  62218. },
  62219. form: "shark",
  62220. },
  62221. shark_side: {
  62222. height: math.unit(1.56, "meters"),
  62223. weight: math.unit(200, "kg"),
  62224. name: "Side",
  62225. image: {
  62226. source: "./media/characters/zechal/shark-side.svg"
  62227. },
  62228. form: "shark",
  62229. },
  62230. dragon_front: {
  62231. height: math.unit(2, "meters"),
  62232. weight: math.unit(200, "kg"),
  62233. name: "Front",
  62234. image: {
  62235. source: "./media/characters/zechal/dragon-front.svg",
  62236. extra: 1041/925,
  62237. bottom: 74/1115
  62238. },
  62239. form: "dragon",
  62240. },
  62241. dragon_back: {
  62242. height: math.unit(2, "meters"),
  62243. weight: math.unit(200, "kg"),
  62244. name: "Back",
  62245. image: {
  62246. source: "./media/characters/zechal/dragon-back.svg",
  62247. extra: 1061/949,
  62248. bottom: 176/1237
  62249. },
  62250. form: "dragon",
  62251. },
  62252. dragon_frontLewd: {
  62253. height: math.unit(2, "meters"),
  62254. weight: math.unit(200, "kg"),
  62255. name: "Front (Lewd)",
  62256. image: {
  62257. source: "./media/characters/zechal/dragon-front-lewd.svg",
  62258. extra: 1041/925,
  62259. bottom: 74/1115
  62260. },
  62261. form: "dragon",
  62262. },
  62263. dragon_side: {
  62264. height: math.unit(1.56, "meters"),
  62265. weight: math.unit(200, "kg"),
  62266. name: "Side",
  62267. image: {
  62268. source: "./media/characters/zechal/dragon-side.svg"
  62269. },
  62270. form: "dragon",
  62271. },
  62272. foot: {
  62273. height: math.unit(0.5, "meters"),
  62274. name: "Foot",
  62275. image: {
  62276. source: "./media/characters/zechal/foot.svg"
  62277. }
  62278. },
  62279. sheathFront: {
  62280. height: math.unit(0.45, "meters"),
  62281. name: "Sheath (Front)",
  62282. image: {
  62283. source: "./media/characters/zechal/sheath-front.svg"
  62284. }
  62285. },
  62286. sheathSide: {
  62287. height: math.unit(0.45, "meters"),
  62288. name: "Sheath (Side)",
  62289. image: {
  62290. source: "./media/characters/zechal/sheath-side.svg"
  62291. }
  62292. },
  62293. },
  62294. [
  62295. {
  62296. name: "Incognito",
  62297. height: math.unit(2, "meters"),
  62298. allForms: true
  62299. },
  62300. {
  62301. name: "Small Rampage",
  62302. height: math.unit(25, "meters"),
  62303. allForms: true
  62304. },
  62305. {
  62306. name: "Home Size",
  62307. height: math.unit(250, "meters"),
  62308. allForms: true,
  62309. default: true
  62310. },
  62311. {
  62312. name: "Macro+",
  62313. height: math.unit(700, "meters"),
  62314. allForms: true
  62315. },
  62316. {
  62317. name: "Small Mega",
  62318. height: math.unit(3, "km"),
  62319. allForms: true
  62320. },
  62321. {
  62322. name: "Mega",
  62323. height: math.unit(15, "km"),
  62324. allForms: true
  62325. },
  62326. {
  62327. name: "Giga",
  62328. height: math.unit(300, "km"),
  62329. allForms: true
  62330. },
  62331. {
  62332. name: "Giga+",
  62333. height: math.unit(1750, "km"),
  62334. allForms: true
  62335. },
  62336. {
  62337. name: "Continental",
  62338. height: math.unit(5000, "km"),
  62339. allForms: true
  62340. },
  62341. {
  62342. name: "Terra",
  62343. height: math.unit(20000, "km"),
  62344. allForms: true
  62345. },
  62346. {
  62347. name: "Terra+",
  62348. height: math.unit(300000, "km"),
  62349. allForms: true
  62350. },
  62351. {
  62352. name: "Solar",
  62353. height: math.unit(40000000, "km"),
  62354. allForms: true
  62355. },
  62356. {
  62357. name: "Galactic",
  62358. height: math.unit(810133, "parsecs"),
  62359. allForms: true
  62360. },
  62361. {
  62362. name: "Universal",
  62363. height: math.unit(25, "universes"),
  62364. allForms: true
  62365. },
  62366. ],
  62367. {
  62368. "shark": {
  62369. name: "Shark",
  62370. default: true
  62371. },
  62372. "dragon": {
  62373. name: "Dragon",
  62374. },
  62375. }
  62376. ))
  62377. characterMakers.push(() => makeCharacter(
  62378. { name: "Sergis", species: ["komodo-dragon", "deity"], tags: ["anthro"] },
  62379. {
  62380. front: {
  62381. height: math.unit(2.2, "meters"),
  62382. weight: math.unit(150, "kg"),
  62383. name: "Front",
  62384. image: {
  62385. source: "./media/characters/sergis/front.svg",
  62386. extra: 1314/1312,
  62387. bottom: 112/1426
  62388. }
  62389. },
  62390. back: {
  62391. height: math.unit(2.2, "meters"),
  62392. weight: math.unit(150, "kg"),
  62393. name: "Back",
  62394. image: {
  62395. source: "./media/characters/sergis/back.svg",
  62396. extra: 1335/1333,
  62397. bottom: 19/1354
  62398. }
  62399. },
  62400. frontLewd: {
  62401. height: math.unit(2.2, "meters"),
  62402. weight: math.unit(150, "kg"),
  62403. name: "Front (Lewd)",
  62404. image: {
  62405. source: "./media/characters/sergis/front-lewd.svg",
  62406. extra: 1314/1312,
  62407. bottom: 112/1426
  62408. }
  62409. },
  62410. frontDressed: {
  62411. height: math.unit(2.2, "meters"),
  62412. weight: math.unit(150, "kg"),
  62413. name: "Front (Dressed)",
  62414. image: {
  62415. source: "./media/characters/sergis/front-dressed.svg",
  62416. extra: 1330/1328,
  62417. bottom: 95/1425
  62418. }
  62419. },
  62420. frontDressedLewd: {
  62421. height: math.unit(2.2, "meters"),
  62422. weight: math.unit(150, "kg"),
  62423. name: "Front (Dressed, Lewd)",
  62424. image: {
  62425. source: "./media/characters/sergis/front-dressed-lewd.svg",
  62426. extra: 1330/1328,
  62427. bottom: 95/1425
  62428. }
  62429. },
  62430. maw: {
  62431. height: math.unit(0.48, "meters"),
  62432. name: "Maw",
  62433. image: {
  62434. source: "./media/characters/sergis/maw.svg"
  62435. }
  62436. },
  62437. sheath: {
  62438. height: math.unit(0.38, "meters"),
  62439. name: "Sheath",
  62440. image: {
  62441. source: "./media/characters/sergis/sheath.svg"
  62442. }
  62443. },
  62444. },
  62445. [
  62446. {
  62447. name: "Incognito Size",
  62448. height: math.unit(2.2, "meters")
  62449. },
  62450. {
  62451. name: "Small Macro",
  62452. height: math.unit(40, "meters")
  62453. },
  62454. {
  62455. name: "Macro",
  62456. height: math.unit(150, "meters")
  62457. },
  62458. {
  62459. name: "Macro+",
  62460. height: math.unit(300, "meters")
  62461. },
  62462. {
  62463. name: "Mega",
  62464. height: math.unit(2.5, "km")
  62465. },
  62466. {
  62467. name: "Mega+",
  62468. height: math.unit(30, "km")
  62469. },
  62470. {
  62471. name: "Home Size",
  62472. height: math.unit(300, "km"),
  62473. default: true
  62474. },
  62475. {
  62476. name: "Giga+",
  62477. height: math.unit(1000, "km")
  62478. },
  62479. {
  62480. name: "Giga++",
  62481. height: math.unit(6000, "km")
  62482. },
  62483. {
  62484. name: "Terra",
  62485. height: math.unit(70000, "km")
  62486. },
  62487. {
  62488. name: "Terra+",
  62489. height: math.unit(200000, "km")
  62490. },
  62491. {
  62492. name: "Galactic",
  62493. height: math.unit(634200, "lightyears")
  62494. },
  62495. ]
  62496. ))
  62497. characterMakers.push(() => makeCharacter(
  62498. { name: "Spade", species: ["demon", "mouse"], tags: ["anthro"] },
  62499. {
  62500. standard: {
  62501. height: math.unit(1 + 5/12, "feet"),
  62502. name: "Standard",
  62503. image: {
  62504. source: "./media/characters/spade/standard.svg",
  62505. extra: 1794/1703,
  62506. bottom: 115/1909
  62507. }
  62508. },
  62509. disguised: {
  62510. height: math.unit(1 + 5/12, "feet"),
  62511. name: "Disguised",
  62512. image: {
  62513. source: "./media/characters/spade/disguised.svg",
  62514. extra: 1794/1700,
  62515. bottom: 98/1892
  62516. }
  62517. },
  62518. },
  62519. [
  62520. {
  62521. name: "Normal",
  62522. height: math.unit(1 + 5/12, "feet"),
  62523. default: true
  62524. },
  62525. ]
  62526. ))
  62527. characterMakers.push(() => makeCharacter(
  62528. { name: "Zeanlain", species: ["harpy-eagle"], tags: ["anthro"] },
  62529. {
  62530. frontNsfw: {
  62531. height: math.unit(5, "meters"),
  62532. weight: math.unit(2000, "kg"),
  62533. preyCapacity: math.unit(5, "people"),
  62534. name: "Front (NSFW)",
  62535. image: {
  62536. source: "./media/characters/zeanlain/front-nsfw.svg",
  62537. extra: 1087/938,
  62538. bottom: 93/1180
  62539. },
  62540. extraAttributes: {
  62541. "wingspan": {
  62542. name: "Wingspan",
  62543. power: 1,
  62544. type: "length",
  62545. base: math.unit(10, "meters")
  62546. },
  62547. "footSize": {
  62548. name: "Foot Size",
  62549. power: 1,
  62550. type: "length",
  62551. base: math.unit(0.68, "meters")
  62552. },
  62553. "cockLength": {
  62554. name: "Cock Length",
  62555. power: 1,
  62556. type: "length",
  62557. base: math.unit(1.69, "meters")
  62558. },
  62559. "ballVolume": {
  62560. name: "Ball Volume",
  62561. power: 3,
  62562. type: "volume",
  62563. base: math.unit(0.028, "m^3")
  62564. },
  62565. }
  62566. },
  62567. front: {
  62568. height: math.unit(5, "meters"),
  62569. weight: math.unit(2000, "kg"),
  62570. preyCapacity: math.unit(3, "people"),
  62571. name: "Front",
  62572. image: {
  62573. source: "./media/characters/zeanlain/front.svg",
  62574. extra: 1087/938,
  62575. bottom: 93/1180
  62576. },
  62577. extraAttributes: {
  62578. "wingspan": {
  62579. name: "Wingspan",
  62580. power: 1,
  62581. type: "length",
  62582. base: math.unit(10, "meters")
  62583. },
  62584. "footSize": {
  62585. name: "Foot Size",
  62586. power: 1,
  62587. type: "length",
  62588. base: math.unit(0.68, "meters")
  62589. },
  62590. }
  62591. },
  62592. },
  62593. [
  62594. {
  62595. name: "Normal",
  62596. height: math.unit(5, "meters"),
  62597. default: true
  62598. },
  62599. ]
  62600. ))
  62601. characterMakers.push(() => makeCharacter(
  62602. { name: "Airamis", species: ["aeromorph", "dragon"], tags: ["anthro"] },
  62603. {
  62604. front: {
  62605. height: math.unit(10, "meters"),
  62606. weight: math.unit(250000, "kg"),
  62607. name: "Front",
  62608. image: {
  62609. source: "./media/characters/airamis/front.svg",
  62610. extra: 865/835,
  62611. bottom: 13/878
  62612. }
  62613. },
  62614. },
  62615. [
  62616. {
  62617. name: "Normal",
  62618. height: math.unit(10, "meters"),
  62619. default: true
  62620. },
  62621. ]
  62622. ))
  62623. characterMakers.push(() => makeCharacter(
  62624. { name: "Corra Tourmaline", species: ["vaporeon"], tags: ["anthro"] },
  62625. {
  62626. front: {
  62627. height: math.unit(3 + 3/12, "feet"),
  62628. weight: math.unit(75, "lb"),
  62629. name: "Front",
  62630. image: {
  62631. source: "./media/characters/corra-tourmaline/front.svg",
  62632. extra: 1037/864,
  62633. bottom: 39/1076
  62634. }
  62635. },
  62636. back: {
  62637. height: math.unit(3 + 3/12, "feet"),
  62638. weight: math.unit(75, "lb"),
  62639. name: "Back",
  62640. image: {
  62641. source: "./media/characters/corra-tourmaline/back.svg",
  62642. extra: 1022/849,
  62643. bottom: 26/1048
  62644. }
  62645. },
  62646. dressed: {
  62647. height: math.unit(3 + 3/12, "feet"),
  62648. weight: math.unit(75, "lb"),
  62649. name: "Dressed",
  62650. image: {
  62651. source: "./media/characters/corra-tourmaline/dressed.svg",
  62652. extra: 1037/864,
  62653. bottom: 39/1076
  62654. }
  62655. },
  62656. beans: {
  62657. height: math.unit(0.37, "feet"),
  62658. name: "Beans",
  62659. image: {
  62660. source: "./media/characters/corra-tourmaline/beans.svg"
  62661. }
  62662. },
  62663. },
  62664. [
  62665. {
  62666. name: "Normal",
  62667. height: math.unit(3 + 3/12, "feet"),
  62668. default: true
  62669. },
  62670. {
  62671. name: "Macro",
  62672. height: math.unit(32, "feet")
  62673. },
  62674. ]
  62675. ))
  62676. characterMakers.push(() => makeCharacter(
  62677. { name: "Maki Kawa", species: ["sabertooth-tiger", "serval"], tags: ["anthro"] },
  62678. {
  62679. front: {
  62680. height: math.unit(6 + 2/12, "feet"),
  62681. weight: math.unit(203, "lb"),
  62682. name: "Front",
  62683. image: {
  62684. source: "./media/characters/maki-kawa/front.svg",
  62685. extra: 950/890,
  62686. bottom: 62/1012
  62687. }
  62688. },
  62689. back: {
  62690. height: math.unit(6 + 2/12, "feet"),
  62691. weight: math.unit(203, "lb"),
  62692. name: "Back",
  62693. image: {
  62694. source: "./media/characters/maki-kawa/back.svg",
  62695. extra: 953/878,
  62696. bottom: 49/1002
  62697. }
  62698. },
  62699. frontBarista: {
  62700. height: math.unit(6 + 2/12, "feet"),
  62701. weight: math.unit(203, "lb"),
  62702. name: "Front (Barista)",
  62703. image: {
  62704. source: "./media/characters/maki-kawa/front-barista.svg",
  62705. extra: 943/883,
  62706. bottom: 69/1012
  62707. }
  62708. },
  62709. backBarista: {
  62710. height: math.unit(6 + 2/12, "feet"),
  62711. weight: math.unit(203, "lb"),
  62712. name: "Back (Barista)",
  62713. image: {
  62714. source: "./media/characters/maki-kawa/back-barista.svg",
  62715. extra: 953/878,
  62716. bottom: 49/1002
  62717. }
  62718. },
  62719. frontWrestler: {
  62720. height: math.unit(6 + 2/12, "feet"),
  62721. weight: math.unit(203, "lb"),
  62722. name: "Front (Wrestler)",
  62723. image: {
  62724. source: "./media/characters/maki-kawa/front-wrestler.svg",
  62725. extra: 950/890,
  62726. bottom: 62/1012
  62727. }
  62728. },
  62729. backWrestler: {
  62730. height: math.unit(6 + 2/12, "feet"),
  62731. weight: math.unit(203, "lb"),
  62732. name: "Back (Wrestler)",
  62733. image: {
  62734. source: "./media/characters/maki-kawa/back-wrestler.svg",
  62735. extra: 953/878,
  62736. bottom: 49/1002
  62737. }
  62738. },
  62739. headFront: {
  62740. height: math.unit(1.64, "feet"),
  62741. name: "Head (Front)",
  62742. image: {
  62743. source: "./media/characters/maki-kawa/head-front.svg"
  62744. }
  62745. },
  62746. headSide: {
  62747. height: math.unit(1.59, "feet"),
  62748. name: "Head (Side)",
  62749. image: {
  62750. source: "./media/characters/maki-kawa/head-side.svg"
  62751. }
  62752. },
  62753. paw: {
  62754. height: math.unit(0.9, "feet"),
  62755. name: "Paw",
  62756. image: {
  62757. source: "./media/characters/maki-kawa/paw.svg"
  62758. }
  62759. },
  62760. },
  62761. [
  62762. {
  62763. name: "Normal",
  62764. height: math.unit(6 + 2/12, "feet"),
  62765. default: true
  62766. },
  62767. {
  62768. name: "Macro",
  62769. height: math.unit(617, "feet")
  62770. },
  62771. ]
  62772. ))
  62773. characterMakers.push(() => makeCharacter(
  62774. { name: "Lennox", species: ["wolf"], tags: ["anthro"] },
  62775. {
  62776. front: {
  62777. height: math.unit(10, "feet"),
  62778. weight: math.unit(1500, "lb"),
  62779. name: "Front",
  62780. image: {
  62781. source: "./media/characters/lennox/front.svg",
  62782. extra: 1623/1496,
  62783. bottom: 18/1641
  62784. }
  62785. },
  62786. back: {
  62787. height: math.unit(10, "feet"),
  62788. weight: math.unit(1500, "lb"),
  62789. name: "Back",
  62790. image: {
  62791. source: "./media/characters/lennox/back.svg",
  62792. extra: 1641/1481,
  62793. bottom: 13/1654
  62794. }
  62795. },
  62796. maw: {
  62797. height: math.unit(2.94, "feet"),
  62798. name: "Maw",
  62799. image: {
  62800. source: "./media/characters/lennox/maw.svg"
  62801. }
  62802. },
  62803. },
  62804. [
  62805. {
  62806. name: "Micro",
  62807. height: math.unit(1, "inch")
  62808. },
  62809. {
  62810. name: "Normal",
  62811. height: math.unit(10, "feet"),
  62812. default: true
  62813. },
  62814. {
  62815. name: "Macro",
  62816. height: math.unit(200, "feet")
  62817. },
  62818. ]
  62819. ))
  62820. characterMakers.push(() => makeCharacter(
  62821. { name: "Vyse Iron-Thunder", species: ["luxray", "shiny"], tags: ["anthro"] },
  62822. {
  62823. frontDressed: {
  62824. height: math.unit(15 + 7/12, "feet"),
  62825. weight: math.unit(5000, "lb"),
  62826. name: "Front (Dressed)",
  62827. image: {
  62828. source: "./media/characters/vyse-iron-thunder/front-dressed.svg",
  62829. extra: 1136/1023,
  62830. bottom: 51/1187
  62831. }
  62832. },
  62833. backDressed: {
  62834. height: math.unit(15 + 7/12, "feet"),
  62835. weight: math.unit(5000, "lb"),
  62836. name: "Back (Dressed)",
  62837. image: {
  62838. source: "./media/characters/vyse-iron-thunder/back-dressed.svg",
  62839. extra: 2359/2143,
  62840. bottom: 103/2462
  62841. }
  62842. },
  62843. front: {
  62844. height: math.unit(15 + 7/12, "feet"),
  62845. weight: math.unit(5000, "lb"),
  62846. name: "Front",
  62847. image: {
  62848. source: "./media/characters/vyse-iron-thunder/front.svg",
  62849. extra: 1136/1023,
  62850. bottom: 51/1187
  62851. }
  62852. },
  62853. hand: {
  62854. height: math.unit(2.36, "feet"),
  62855. name: "Hand",
  62856. image: {
  62857. source: "./media/characters/vyse-iron-thunder/hand.svg"
  62858. }
  62859. },
  62860. foot: {
  62861. height: math.unit(1.72, "feet"),
  62862. name: "Foot",
  62863. image: {
  62864. source: "./media/characters/vyse-iron-thunder/foot.svg"
  62865. }
  62866. },
  62867. mouth: {
  62868. height: math.unit(2, "feet"),
  62869. name: "Mouth",
  62870. image: {
  62871. source: "./media/characters/vyse-iron-thunder/mouth.svg"
  62872. }
  62873. },
  62874. eye: {
  62875. height: math.unit(0.58, "feet"),
  62876. name: "Eye",
  62877. image: {
  62878. source: "./media/characters/vyse-iron-thunder/eye.svg"
  62879. }
  62880. },
  62881. },
  62882. [
  62883. {
  62884. name: "Normal",
  62885. height: math.unit(15 + 7/12, "feet"),
  62886. default: true
  62887. },
  62888. {
  62889. name: "Macro",
  62890. height: math.unit(157, "feet")
  62891. },
  62892. {
  62893. name: "Macro+",
  62894. height: math.unit(1570, "feet")
  62895. },
  62896. {
  62897. name: "Macro++",
  62898. height: math.unit(15700, "feet")
  62899. },
  62900. {
  62901. name: "Macro+++",
  62902. height: math.unit(157000, "feet")
  62903. },
  62904. {
  62905. name: "Macro++++",
  62906. height: math.unit(1570000, "feet")
  62907. },
  62908. ]
  62909. ))
  62910. characterMakers.push(() => makeCharacter(
  62911. { name: "Moonbeam", species: ["latex", "wolf"], tags: ["feral"] },
  62912. {
  62913. side: {
  62914. height: math.unit(6, "feet"),
  62915. weight: math.unit(115, "lb"),
  62916. name: "Side",
  62917. image: {
  62918. source: "./media/characters/moonbeam/side.svg",
  62919. extra: 839/485,
  62920. bottom: 60/899
  62921. }
  62922. },
  62923. },
  62924. [
  62925. {
  62926. name: "Normal",
  62927. height: math.unit(6, "feet"),
  62928. default: true
  62929. },
  62930. ]
  62931. ))
  62932. characterMakers.push(() => makeCharacter(
  62933. { name: "Baltica", species: ["orca"], tags: ["anthro"] },
  62934. {
  62935. front: {
  62936. height: math.unit(3500, "miles"),
  62937. weight: math.unit(1659, "petatonnes"),
  62938. name: "Front",
  62939. image: {
  62940. source: "./media/characters/baltica/front.svg",
  62941. extra: 429/428,
  62942. bottom: 41/470
  62943. }
  62944. },
  62945. back: {
  62946. height: math.unit(3500, "miles"),
  62947. weight: math.unit(1659, "petatonnes"),
  62948. name: "Back",
  62949. image: {
  62950. source: "./media/characters/baltica/back.svg",
  62951. extra: 452/451,
  62952. bottom: 8/460
  62953. }
  62954. },
  62955. },
  62956. [
  62957. {
  62958. name: "Gigamacro",
  62959. height: math.unit(3500, "miles"),
  62960. default: true
  62961. },
  62962. ]
  62963. ))
  62964. characterMakers.push(() => makeCharacter(
  62965. { name: "Shadow (Wolf)", species: ["wolf", "demi"], tags: ["anthro"] },
  62966. {
  62967. front: {
  62968. height: math.unit(6 + 10/12, "feet"),
  62969. weight: math.unit(200, "lb"),
  62970. name: "Front",
  62971. image: {
  62972. source: "./media/characters/shadow-wolf/front.svg",
  62973. extra: 1931/1760,
  62974. bottom: 88/2019
  62975. }
  62976. },
  62977. },
  62978. [
  62979. {
  62980. name: "Normal",
  62981. height: math.unit(6 + 10/12, "feet"),
  62982. default: true
  62983. },
  62984. ]
  62985. ))
  62986. characterMakers.push(() => makeCharacter(
  62987. { name: "Quincy (Praying Mantis)", species: ["praying-mantis"], tags: ["anthro"] },
  62988. {
  62989. front: {
  62990. height: math.unit(5 + 10/12, "feet"),
  62991. name: "Front",
  62992. image: {
  62993. source: "./media/characters/quincy-praying-mantis/front.svg",
  62994. extra: 1055/891,
  62995. bottom: 92/1147
  62996. }
  62997. },
  62998. soles: {
  62999. height: math.unit(0.85, "feet"),
  63000. name: "Soles",
  63001. image: {
  63002. source: "./media/characters/quincy-praying-mantis/soles.svg",
  63003. extra: 429/324,
  63004. bottom: 89/518
  63005. },
  63006. extraAttributes: {
  63007. "shoeSize": {
  63008. name: "Shoe Size",
  63009. power: 1,
  63010. type: "length",
  63011. base: math.unit(23, "ShoeSizeMensUS"),
  63012. defaultUnit: "ShoeSizeMensUS"
  63013. },
  63014. }
  63015. },
  63016. foot: {
  63017. height: math.unit(0.72, "feet"),
  63018. name: "Foot",
  63019. image: {
  63020. source: "./media/characters/quincy-praying-mantis/foot.svg",
  63021. extra: 349/349,
  63022. bottom: 76/425
  63023. }
  63024. },
  63025. },
  63026. [
  63027. {
  63028. name: "Normal",
  63029. height: math.unit(5 + 10/12, "feet"),
  63030. default: true
  63031. },
  63032. ]
  63033. ))
  63034. characterMakers.push(() => makeCharacter(
  63035. { name: "Christopher Redwood", species: ["gray-wolf"], tags: ["anthro"] },
  63036. {
  63037. front: {
  63038. height: math.unit(6, "feet"),
  63039. name: "Front",
  63040. image: {
  63041. source: "./media/characters/christopher-redwood/front.svg",
  63042. extra: 1402/1341,
  63043. bottom: 23/1425
  63044. }
  63045. },
  63046. back: {
  63047. height: math.unit(6, "feet"),
  63048. name: "Back",
  63049. image: {
  63050. source: "./media/characters/christopher-redwood/back.svg",
  63051. extra: 1406/1345,
  63052. bottom: 36/1442
  63053. }
  63054. },
  63055. head: {
  63056. height: math.unit(1.685, "feet"),
  63057. name: "Head",
  63058. image: {
  63059. source: "./media/characters/christopher-redwood/head.svg"
  63060. }
  63061. },
  63062. },
  63063. [
  63064. {
  63065. name: "Normal",
  63066. height: math.unit(6, "feet"),
  63067. default: true
  63068. },
  63069. ]
  63070. ))
  63071. characterMakers.push(() => makeCharacter(
  63072. { name: "Kara (Fox)", species: ["fox"], tags: ["anthro"] },
  63073. {
  63074. front: {
  63075. height: math.unit(1.9, "meters"),
  63076. weight: math.unit(140, "lb"),
  63077. name: "Front",
  63078. image: {
  63079. source: "./media/characters/kara-fox/front.svg",
  63080. extra: 766/711,
  63081. bottom: 41/807
  63082. }
  63083. },
  63084. back: {
  63085. height: math.unit(1.9, "meters"),
  63086. weight: math.unit(140, "lb"),
  63087. name: "Back",
  63088. image: {
  63089. source: "./media/characters/kara-fox/back.svg",
  63090. extra: 766/596,
  63091. bottom: 29/795
  63092. }
  63093. },
  63094. maw: {
  63095. height: math.unit(0.78, "feet"),
  63096. name: "Maw",
  63097. image: {
  63098. source: "./media/characters/kara-fox/maw.svg"
  63099. }
  63100. },
  63101. pawpads: {
  63102. height: math.unit(0.96, "feet"),
  63103. name: "Pawpads",
  63104. image: {
  63105. source: "./media/characters/kara-fox/pawpads.svg"
  63106. }
  63107. },
  63108. },
  63109. [
  63110. {
  63111. name: "Normal",
  63112. height: math.unit(1.9, "meters"),
  63113. default: true
  63114. },
  63115. {
  63116. name: "Giantess",
  63117. height: math.unit(80, "meters")
  63118. },
  63119. ]
  63120. ))
  63121. characterMakers.push(() => makeCharacter(
  63122. { name: "Naomi (Espeon)", species: ["espeon"], tags: ["anthro"] },
  63123. {
  63124. front: {
  63125. height: math.unit(12, "feet"),
  63126. name: "Front",
  63127. image: {
  63128. source: "./media/characters/naomi-espeon/front.svg",
  63129. extra: 892/797,
  63130. bottom: 5/897
  63131. }
  63132. },
  63133. back: {
  63134. height: math.unit(12, "feet"),
  63135. name: "Back",
  63136. image: {
  63137. source: "./media/characters/naomi-espeon/back.svg",
  63138. extra: 890/785,
  63139. bottom: 12/902
  63140. }
  63141. },
  63142. },
  63143. [
  63144. {
  63145. name: "Normal",
  63146. height: math.unit(12, "feet"),
  63147. default: true
  63148. },
  63149. ]
  63150. ))
  63151. characterMakers.push(() => makeCharacter(
  63152. { name: "Asher Heulfyrn", species: ["skullwolf"], tags: ["anthro", "taur"] },
  63153. {
  63154. anthro_front: {
  63155. height: math.unit(8, "feet"),
  63156. weight: math.unit(625, "lb"),
  63157. name: "Front",
  63158. image: {
  63159. source: "./media/characters/asher-heulfyrn/anthro-front.svg",
  63160. extra: 638/574,
  63161. bottom: 73/711
  63162. },
  63163. form: "anthro",
  63164. default: true
  63165. },
  63166. anthro_back: {
  63167. height: math.unit(8, "feet"),
  63168. weight: math.unit(625, "lb"),
  63169. name: "Back",
  63170. image: {
  63171. source: "./media/characters/asher-heulfyrn/anthro-back.svg",
  63172. extra: 674/614,
  63173. bottom: 7/681
  63174. },
  63175. form: "anthro",
  63176. },
  63177. taur_side: {
  63178. height: math.unit(16, "feet"),
  63179. weight: math.unit(4.5, "tons"),
  63180. name: "Side",
  63181. image: {
  63182. source: "./media/characters/asher-heulfyrn/taur-side.svg",
  63183. extra: 704/646,
  63184. bottom: 132/836
  63185. },
  63186. form: "taur",
  63187. default: true
  63188. },
  63189. },
  63190. [
  63191. {
  63192. name: "Normal",
  63193. height: math.unit(8, "feet"),
  63194. default: true,
  63195. form: "anthro"
  63196. },
  63197. {
  63198. name: "Normal",
  63199. height: math.unit(16, "feet"),
  63200. default: true,
  63201. form: "taur"
  63202. },
  63203. ],
  63204. {
  63205. "anthro": {
  63206. name: "Anthro",
  63207. default: true
  63208. },
  63209. "taur": {
  63210. name: "Taur",
  63211. },
  63212. }
  63213. ))
  63214. characterMakers.push(() => makeCharacter(
  63215. { name: "Amelie", species: ["ferrin"], tags: ["anthro"] },
  63216. {
  63217. front: {
  63218. height: math.unit(190, "cm"),
  63219. weight: math.unit(110, "kg"),
  63220. name: "Front",
  63221. image: {
  63222. source: "./media/characters/amelie/front.svg",
  63223. extra: 530/442,
  63224. bottom: 35/565
  63225. }
  63226. },
  63227. },
  63228. [
  63229. {
  63230. name: "Normal",
  63231. height: math.unit(190, "cm"),
  63232. default: true
  63233. },
  63234. ]
  63235. ))
  63236. characterMakers.push(() => makeCharacter(
  63237. { name: "Valence", species: ["skulldragon"], tags: ["anthro"] },
  63238. {
  63239. front: {
  63240. height: math.unit(21, "feet"),
  63241. weight: math.unit(30000, "lb"),
  63242. name: "Front",
  63243. image: {
  63244. source: "./media/characters/valence/front.svg",
  63245. extra: 1430/1306,
  63246. bottom: 51/1481
  63247. }
  63248. },
  63249. },
  63250. [
  63251. {
  63252. name: "Normal",
  63253. height: math.unit(21, "feet"),
  63254. default: true
  63255. },
  63256. ]
  63257. ))
  63258. characterMakers.push(() => makeCharacter(
  63259. { name: "Aurora Adkins", species: ["rusty-spotted-cat"], tags: ["anthro"] },
  63260. {
  63261. front: {
  63262. height: math.unit(5 + 9/12, "feet"),
  63263. weight: math.unit(170, "lb"),
  63264. name: "Front",
  63265. image: {
  63266. source: "./media/characters/aurora-adkins/front.svg",
  63267. extra: 1141/1089,
  63268. bottom: 41/1182
  63269. }
  63270. },
  63271. },
  63272. [
  63273. {
  63274. name: "Tiny",
  63275. height: math.unit(7, "mm")
  63276. },
  63277. {
  63278. name: "Small",
  63279. height: math.unit(3.4, "inches")
  63280. },
  63281. {
  63282. name: "Normal",
  63283. height: math.unit(5 + 9/12, "feet"),
  63284. default: true
  63285. },
  63286. {
  63287. name: "Big",
  63288. height: math.unit(31, "feet")
  63289. },
  63290. {
  63291. name: "Giant",
  63292. height: math.unit(300, "feet")
  63293. },
  63294. ]
  63295. ))
  63296. characterMakers.push(() => makeCharacter(
  63297. { name: "Cyber", species: ["maned-wolf", "lynx", "deity"], tags: ["anthro"] },
  63298. {
  63299. front: {
  63300. height: math.unit(5 + 6/12, "feet"),
  63301. weight: math.unit(210, "lb"),
  63302. name: "Front",
  63303. image: {
  63304. source: "./media/characters/cyber/front.svg",
  63305. extra: 1968/1798,
  63306. bottom: 10/1978
  63307. },
  63308. extraAttributes: {
  63309. "shoeSize": {
  63310. name: "Shoe Size",
  63311. power: 1,
  63312. type: "length",
  63313. base: math.unit(30, "ShoeSizeMensUS")
  63314. },
  63315. }
  63316. },
  63317. },
  63318. [
  63319. {
  63320. name: "Normal",
  63321. height: math.unit(5 + 6/12, "feet"),
  63322. default: true
  63323. },
  63324. ]
  63325. ))
  63326. characterMakers.push(() => makeCharacter(
  63327. { name: "Sapphire Wairimea", species: ["elf"], tags: ["anthro"] },
  63328. {
  63329. front: {
  63330. height: math.unit(6 + 6/12, "feet"),
  63331. weight: math.unit(140, "lb"),
  63332. name: "Front",
  63333. image: {
  63334. source: "./media/characters/sapphire-wairimea/front.svg",
  63335. extra: 475/458,
  63336. bottom: 14/489
  63337. }
  63338. },
  63339. },
  63340. [
  63341. {
  63342. name: "Normal",
  63343. height: math.unit(6 + 6/12, "feet")
  63344. },
  63345. {
  63346. name: "Macro",
  63347. height: math.unit(132, "feet"),
  63348. default: true
  63349. },
  63350. ]
  63351. ))
  63352. characterMakers.push(() => makeCharacter(
  63353. { name: "Cirkazi", species: ["elf"], tags: ["anthro"] },
  63354. {
  63355. front: {
  63356. height: math.unit(1.6, "meters"),
  63357. weight: math.unit(100, "lb"),
  63358. name: "Front",
  63359. image: {
  63360. source: "./media/characters/cirkazi/front.svg",
  63361. extra: 489/477,
  63362. bottom: 0/489
  63363. }
  63364. },
  63365. },
  63366. [
  63367. {
  63368. name: "Normal",
  63369. height: math.unit(1.6, "meters")
  63370. },
  63371. {
  63372. name: "Macro",
  63373. height: math.unit(800, "feet"),
  63374. default: true
  63375. },
  63376. ]
  63377. ))
  63378. characterMakers.push(() => makeCharacter(
  63379. { name: "Corrin Cavelli", species: ["human"], tags: ["anthro"] },
  63380. {
  63381. front: {
  63382. height: math.unit(5 + 10/12, "feet"),
  63383. weight: math.unit(145, "lb"),
  63384. name: "Front",
  63385. image: {
  63386. source: "./media/characters/corrin-cavelli/front.svg",
  63387. extra: 483/464,
  63388. bottom: 6/489
  63389. }
  63390. },
  63391. },
  63392. [
  63393. {
  63394. name: "Human",
  63395. height: math.unit(5 + 10/12, "feet")
  63396. },
  63397. {
  63398. name: "Giant",
  63399. height: math.unit(210, "feet"),
  63400. default: true
  63401. },
  63402. ]
  63403. ))
  63404. characterMakers.push(() => makeCharacter(
  63405. { name: "Lori Lopez", species: ["human"], tags: ["anthro"] },
  63406. {
  63407. back: {
  63408. height: math.unit(5 + 6/12, "feet"),
  63409. weight: math.unit(115, "lb"),
  63410. name: "Back",
  63411. image: {
  63412. source: "./media/characters/lori-lopez/back.svg",
  63413. extra: 483/474,
  63414. bottom: 6/489
  63415. }
  63416. },
  63417. },
  63418. [
  63419. {
  63420. name: "Human",
  63421. height: math.unit(5 + 6/12, "feet")
  63422. },
  63423. {
  63424. name: "Macro",
  63425. height: math.unit(198, "feet"),
  63426. default: true
  63427. },
  63428. ]
  63429. ))
  63430. characterMakers.push(() => makeCharacter(
  63431. { name: "Sylvia Beauregard", species: ["human"], tags: ["anthro"] },
  63432. {
  63433. front: {
  63434. height: math.unit(6, "feet"),
  63435. weight: math.unit(220, "lb"),
  63436. name: "Front",
  63437. image: {
  63438. source: "./media/characters/sylvia-beauregard/front.svg",
  63439. extra: 483/479,
  63440. bottom: 6/489
  63441. }
  63442. },
  63443. },
  63444. [
  63445. {
  63446. name: "Macro",
  63447. height: math.unit(2071, "feet"),
  63448. default: true
  63449. },
  63450. ]
  63451. ))
  63452. characterMakers.push(() => makeCharacter(
  63453. { name: "Akiko Takahashi", species: ["human"], tags: ["anthro"] },
  63454. {
  63455. back: {
  63456. height: math.unit(5 + 6/12, "feet"),
  63457. weight: math.unit(160, "lb"),
  63458. name: "Back",
  63459. image: {
  63460. source: "./media/characters/akiko-takahashi/back.svg",
  63461. extra: 459/454,
  63462. bottom: 27/486
  63463. }
  63464. },
  63465. },
  63466. [
  63467. {
  63468. name: "Human",
  63469. height: math.unit(5 + 6/12, "feet")
  63470. },
  63471. {
  63472. name: "Macro",
  63473. height: math.unit(198, "feet"),
  63474. default: true
  63475. },
  63476. {
  63477. name: "Megamacro",
  63478. height: math.unit(7128, "feet")
  63479. },
  63480. ]
  63481. ))
  63482. characterMakers.push(() => makeCharacter(
  63483. { name: "Velvet Garza", species: ["human"], tags: ["anthro"] },
  63484. {
  63485. front: {
  63486. height: math.unit(6, "feet"),
  63487. weight: math.unit(140, "lb"),
  63488. name: "Front",
  63489. image: {
  63490. source: "./media/characters/velvet-garza/front.svg",
  63491. extra: 480/462,
  63492. bottom: 7/487
  63493. }
  63494. },
  63495. },
  63496. [
  63497. {
  63498. name: "Macro",
  63499. height: math.unit(37, "feet"),
  63500. default: true
  63501. },
  63502. ]
  63503. ))
  63504. characterMakers.push(() => makeCharacter(
  63505. { name: "Gaia", species: ["deity", "human"], tags: ["anthro"] },
  63506. {
  63507. front: {
  63508. height: math.unit(7 + 6/12, "feet"),
  63509. weight: math.unit(400, "lb"),
  63510. name: "Front",
  63511. image: {
  63512. source: "./media/characters/gaia/front.svg",
  63513. extra: 474/463,
  63514. bottom: 13/487
  63515. }
  63516. },
  63517. },
  63518. [
  63519. {
  63520. name: "MiniMacro",
  63521. height: math.unit(7 + 6/12, "feet")
  63522. },
  63523. {
  63524. name: "GigaMacro",
  63525. height: math.unit(14500, "feet"),
  63526. default: true
  63527. },
  63528. ]
  63529. ))
  63530. characterMakers.push(() => makeCharacter(
  63531. { name: "Tim", species: ["rabbit"], tags: ["anthro"] },
  63532. {
  63533. front: {
  63534. height: math.unit(6, "feet"),
  63535. weight: math.unit(150, "lb"),
  63536. name: "Front",
  63537. image: {
  63538. source: "./media/characters/tim/front.svg",
  63539. extra: 1878/1743,
  63540. bottom: 9/1887
  63541. }
  63542. },
  63543. frontDressed: {
  63544. height: math.unit(6, "feet"),
  63545. weight: math.unit(150, "lb"),
  63546. name: "Front (Dressed)",
  63547. image: {
  63548. source: "./media/characters/tim/front-dressed.svg",
  63549. extra: 1765/1485,
  63550. bottom: 48/1813
  63551. }
  63552. },
  63553. backDressed: {
  63554. height: math.unit(6, "feet"),
  63555. weight: math.unit(150, "lb"),
  63556. name: "Back (Dressed)",
  63557. image: {
  63558. source: "./media/characters/tim/back-dressed.svg",
  63559. extra: 1750/1465,
  63560. bottom: 25/1775
  63561. }
  63562. },
  63563. dick: {
  63564. height: math.unit(1.5, "feet"),
  63565. weight: math.unit(6, "lb"),
  63566. name: "Dick",
  63567. image: {
  63568. source: "./media/characters/tim/dick.svg"
  63569. }
  63570. },
  63571. hand: {
  63572. height: math.unit(0.522, "feet"),
  63573. name: "Hand",
  63574. image: {
  63575. source: "./media/characters/tim/hand.svg"
  63576. }
  63577. },
  63578. palm: {
  63579. height: math.unit(0.48, "feet"),
  63580. name: "Palm",
  63581. image: {
  63582. source: "./media/characters/tim/palm.svg"
  63583. }
  63584. },
  63585. paw: {
  63586. height: math.unit(0.9, "feet"),
  63587. name: "Paw",
  63588. image: {
  63589. source: "./media/characters/tim/paw.svg"
  63590. }
  63591. },
  63592. sole: {
  63593. height: math.unit(0.88, "feet"),
  63594. name: "Sole",
  63595. image: {
  63596. source: "./media/characters/tim/sole.svg"
  63597. }
  63598. },
  63599. },
  63600. [
  63601. {
  63602. name: "Macro",
  63603. height: math.unit(1000, "feet")
  63604. },
  63605. {
  63606. name: "Megamacro",
  63607. height: math.unit(10000, "feet"),
  63608. default: true
  63609. },
  63610. {
  63611. name: "Megamacro+",
  63612. height: math.unit(50000, "feet")
  63613. },
  63614. {
  63615. name: "Gigamacro",
  63616. height: math.unit(150000, "km")
  63617. },
  63618. ]
  63619. ))
  63620. characterMakers.push(() => makeCharacter(
  63621. { name: "Abel Delreoux", species: ["maine-coon"], tags: ["anthro"] },
  63622. {
  63623. front: {
  63624. height: math.unit(5 + 8/12, "feet"),
  63625. weight: math.unit(170, "lb"),
  63626. name: "Front",
  63627. image: {
  63628. source: "./media/characters/abel-delreoux/front.svg",
  63629. extra: 1615/1500,
  63630. bottom: 82/1697
  63631. }
  63632. },
  63633. back: {
  63634. height: math.unit(5 + 8/12, "feet"),
  63635. weight: math.unit(170, "lb"),
  63636. name: "Back",
  63637. image: {
  63638. source: "./media/characters/abel-delreoux/back.svg",
  63639. extra: 1644/1534,
  63640. bottom: 24/1668
  63641. }
  63642. },
  63643. casual: {
  63644. height: math.unit(5 + 8/12, "feet"),
  63645. weight: math.unit(170, "lb"),
  63646. name: "Casual",
  63647. image: {
  63648. source: "./media/characters/abel-delreoux/casual.svg",
  63649. extra: 1716/1598,
  63650. bottom: 29/1745
  63651. }
  63652. },
  63653. sleepy: {
  63654. height: math.unit(5 + 8/12, "feet"),
  63655. weight: math.unit(170, "lb"),
  63656. name: "Sleepy",
  63657. image: {
  63658. source: "./media/characters/abel-delreoux/sleepy.svg",
  63659. extra: 1649/1573,
  63660. bottom: 22/1671
  63661. }
  63662. },
  63663. fem: {
  63664. height: math.unit(5 + 8/12, "feet"),
  63665. weight: math.unit(170, "lb"),
  63666. name: "Fem",
  63667. image: {
  63668. source: "./media/characters/abel-delreoux/fem.svg",
  63669. extra: 1680/1564,
  63670. bottom: 17/1697
  63671. }
  63672. },
  63673. hand: {
  63674. height: math.unit(0.78, "feet"),
  63675. name: "Hand",
  63676. image: {
  63677. source: "./media/characters/abel-delreoux/hand.svg"
  63678. }
  63679. },
  63680. paw: {
  63681. height: math.unit(0.78, "feet"),
  63682. name: "Paw",
  63683. image: {
  63684. source: "./media/characters/abel-delreoux/paw.svg"
  63685. }
  63686. },
  63687. },
  63688. [
  63689. {
  63690. name: "Normal",
  63691. height: math.unit(5 + 8/12, "feet"),
  63692. default: true
  63693. },
  63694. ]
  63695. ))
  63696. characterMakers.push(() => makeCharacter(
  63697. { name: "Meus", species: ["phoenix"], tags: ["anthro"] },
  63698. {
  63699. front: {
  63700. height: math.unit(6, "feet"),
  63701. weight: math.unit(159, "lb"),
  63702. name: "Front",
  63703. image: {
  63704. source: "./media/characters/meus/front.svg",
  63705. extra: 938/843,
  63706. bottom: 37/975
  63707. }
  63708. },
  63709. back: {
  63710. height: math.unit(6, "feet"),
  63711. weight: math.unit(159, "lb"),
  63712. name: "Back",
  63713. image: {
  63714. source: "./media/characters/meus/back.svg",
  63715. extra: 967/873,
  63716. bottom: 12/979
  63717. }
  63718. },
  63719. },
  63720. [
  63721. {
  63722. name: "Micro",
  63723. height: math.unit(2, "inches")
  63724. },
  63725. {
  63726. name: "Mini",
  63727. height: math.unit(6, "inches")
  63728. },
  63729. {
  63730. name: "Normal",
  63731. height: math.unit(6, "feet"),
  63732. default: true
  63733. },
  63734. {
  63735. name: "Macro",
  63736. height: math.unit(84, "feet")
  63737. },
  63738. ]
  63739. ))
  63740. characterMakers.push(() => makeCharacter(
  63741. { name: "Yamato", species: ["kobold"], tags: ["anthro"] },
  63742. {
  63743. front: {
  63744. height: math.unit(60, "cm"),
  63745. weight: math.unit(18, "kg"),
  63746. name: "Front",
  63747. image: {
  63748. source: "./media/characters/yamato/front.svg",
  63749. extra: 733/688,
  63750. bottom: 29/762
  63751. }
  63752. },
  63753. },
  63754. [
  63755. {
  63756. name: "Micro",
  63757. height: math.unit(6, "cm")
  63758. },
  63759. {
  63760. name: "Normal",
  63761. height: math.unit(60, "cm"),
  63762. default: true
  63763. },
  63764. ]
  63765. ))
  63766. characterMakers.push(() => makeCharacter(
  63767. { name: "Barus", species: ["deity"], tags: ["anthro"] },
  63768. {
  63769. front: {
  63770. height: math.unit(9, "feet"),
  63771. weight: math.unit(518, "lb"),
  63772. name: "Front",
  63773. image: {
  63774. source: "./media/characters/barus/front.svg",
  63775. extra: 1877/1795,
  63776. bottom: 55/1932
  63777. }
  63778. },
  63779. },
  63780. [
  63781. {
  63782. name: "Base Height",
  63783. height: math.unit(9, "feet"),
  63784. default: true
  63785. },
  63786. {
  63787. name: "Large",
  63788. height: math.unit(18, "feet")
  63789. },
  63790. {
  63791. name: "Giant",
  63792. height: math.unit(100, "feet")
  63793. },
  63794. {
  63795. name: "Huge",
  63796. height: math.unit(500, "feet")
  63797. },
  63798. {
  63799. name: "Enormous",
  63800. height: math.unit(300, "meters")
  63801. },
  63802. {
  63803. name: "Deity Among Man",
  63804. height: math.unit(3000, "meters")
  63805. },
  63806. ]
  63807. ))
  63808. characterMakers.push(() => makeCharacter(
  63809. { name: "Yari", species: ["sergal"], tags: ["anthro"] },
  63810. {
  63811. front: {
  63812. height: math.unit(1.7, "meters"),
  63813. name: "Front",
  63814. image: {
  63815. source: "./media/characters/yari/front.svg",
  63816. extra: 1210/1125,
  63817. bottom: 283/1493
  63818. }
  63819. },
  63820. back: {
  63821. height: math.unit(1.7, "meters"),
  63822. name: "Back",
  63823. image: {
  63824. source: "./media/characters/yari/back.svg",
  63825. extra: 1240/1195,
  63826. bottom: 180/1420
  63827. }
  63828. },
  63829. head: {
  63830. height: math.unit(1.26, "feet"),
  63831. name: "Head",
  63832. image: {
  63833. source: "./media/characters/yari/head.svg"
  63834. }
  63835. },
  63836. },
  63837. [
  63838. {
  63839. name: "Nano",
  63840. height: math.unit(0.5, "mm")
  63841. },
  63842. {
  63843. name: "Micro",
  63844. height: math.unit(3, "inches")
  63845. },
  63846. {
  63847. name: "Short",
  63848. height: math.unit(1.5, "meters")
  63849. },
  63850. {
  63851. name: "Norm",
  63852. height: math.unit(1.7, "meters"),
  63853. default: true
  63854. },
  63855. ]
  63856. ))
  63857. characterMakers.push(() => makeCharacter(
  63858. { name: "Salem", species: ["mouse"], tags: ["anthro"] },
  63859. {
  63860. front: {
  63861. height: math.unit(5 + 2/12, "feet"),
  63862. weight: math.unit(110, "lb"),
  63863. name: "Front",
  63864. image: {
  63865. source: "./media/characters/salem/front.svg",
  63866. extra: 1895/1800,
  63867. bottom: 23/1918
  63868. }
  63869. },
  63870. back: {
  63871. height: math.unit(5 + 2/12, "feet"),
  63872. weight: math.unit(110, "lb"),
  63873. name: "Back",
  63874. image: {
  63875. source: "./media/characters/salem/back.svg",
  63876. extra: 1875/1802,
  63877. bottom: 20/1895
  63878. }
  63879. },
  63880. head: {
  63881. height: math.unit(1, "feet"),
  63882. name: "Head",
  63883. image: {
  63884. source: "./media/characters/salem/head.svg"
  63885. }
  63886. },
  63887. paw: {
  63888. height: math.unit(0.59, "feet"),
  63889. name: "Paw",
  63890. image: {
  63891. source: "./media/characters/salem/paw.svg"
  63892. }
  63893. },
  63894. beans: {
  63895. height: math.unit(0.66, "feet"),
  63896. name: "Beans",
  63897. image: {
  63898. source: "./media/characters/salem/beans.svg"
  63899. }
  63900. },
  63901. eye: {
  63902. height: math.unit(0.224, "feet"),
  63903. name: "Eye",
  63904. image: {
  63905. source: "./media/characters/salem/eye.svg"
  63906. }
  63907. },
  63908. semiferal: {
  63909. height: math.unit(2.3, "feet"),
  63910. name: "Semiferal",
  63911. image: {
  63912. source: "./media/characters/salem/semiferal.svg",
  63913. extra: 914/839,
  63914. bottom: 32/946
  63915. }
  63916. },
  63917. },
  63918. [
  63919. {
  63920. name: "Micro",
  63921. height: math.unit(4, "inches")
  63922. },
  63923. {
  63924. name: "Normal",
  63925. height: math.unit(5 + 2/12, "feet"),
  63926. default: true
  63927. },
  63928. {
  63929. name: "Macro",
  63930. height: math.unit(108, "feet")
  63931. },
  63932. {
  63933. name: "Macro+",
  63934. height: math.unit(1500, "feet")
  63935. },
  63936. ]
  63937. ))
  63938. characterMakers.push(() => makeCharacter(
  63939. { name: "Kii", species: ["dragon", "dog"], tags: ["anthro"] },
  63940. {
  63941. front: {
  63942. height: math.unit(7 + 6/12, "feet"),
  63943. weight: math.unit(600, "kg"),
  63944. preyCapacity: math.unit(10, "people"),
  63945. name: "Front",
  63946. image: {
  63947. source: "./media/characters/kii/front.svg",
  63948. extra: 3296/3087,
  63949. bottom: 130/3426
  63950. }
  63951. },
  63952. },
  63953. [
  63954. {
  63955. name: "Normal",
  63956. height: math.unit(7 + 6/12, "feet"),
  63957. default: true
  63958. },
  63959. ]
  63960. ))
  63961. characterMakers.push(() => makeCharacter(
  63962. { name: "Taffy", species: ["saltwater-crocodile"], tags: ["anthro"] },
  63963. {
  63964. front: {
  63965. height: math.unit(2, "meters"),
  63966. weight: math.unit(200, "lb"),
  63967. name: "Front",
  63968. image: {
  63969. source: "./media/characters/taffy/front.svg",
  63970. extra: 1666/1618,
  63971. bottom: 157/1823
  63972. }
  63973. },
  63974. back: {
  63975. height: math.unit(2, "meters"),
  63976. weight: math.unit(200, "lb"),
  63977. name: "Back",
  63978. image: {
  63979. source: "./media/characters/taffy/back.svg",
  63980. extra: 1635/1583,
  63981. bottom: 153/1788
  63982. }
  63983. },
  63984. },
  63985. [
  63986. {
  63987. name: "Normal",
  63988. height: math.unit(2, "meters"),
  63989. default: true
  63990. },
  63991. ]
  63992. ))
  63993. characterMakers.push(() => makeCharacter(
  63994. { name: "Barley", species: ["eastern-grey-kangaroo"], tags: ["anthro"] },
  63995. {
  63996. front: {
  63997. height: math.unit(1.55, "meters"),
  63998. weight: math.unit(60, "kg"),
  63999. name: "Front",
  64000. image: {
  64001. source: "./media/characters/barley/front.svg",
  64002. extra: 1520/1340,
  64003. bottom: 47/1567
  64004. }
  64005. },
  64006. back: {
  64007. height: math.unit(1.55, "meters"),
  64008. weight: math.unit(60, "kg"),
  64009. name: "Back",
  64010. image: {
  64011. source: "./media/characters/barley/back.svg",
  64012. extra: 1543/1341,
  64013. bottom: 12/1555
  64014. }
  64015. },
  64016. feet: {
  64017. height: math.unit(2.18, "feet"),
  64018. name: "Feet",
  64019. image: {
  64020. source: "./media/characters/barley/feet.svg"
  64021. }
  64022. },
  64023. },
  64024. [
  64025. {
  64026. name: "Normal",
  64027. height: math.unit(1.55, "meters"),
  64028. default: true
  64029. },
  64030. ]
  64031. ))
  64032. characterMakers.push(() => makeCharacter(
  64033. { name: "Lydia Lopez", species: ["shark"], tags: ["anthro"] },
  64034. {
  64035. dressed: {
  64036. height: math.unit(6, "feet"),
  64037. name: "Dressed",
  64038. image: {
  64039. source: "./media/characters/lydia-lopez/dressed.svg",
  64040. extra: 1319/1277,
  64041. bottom: 90/1409
  64042. }
  64043. },
  64044. nude: {
  64045. height: math.unit(6, "feet"),
  64046. name: "Nude",
  64047. image: {
  64048. source: "./media/characters/lydia-lopez/nude.svg",
  64049. extra: 1319/1277,
  64050. bottom: 90/1409
  64051. }
  64052. },
  64053. },
  64054. [
  64055. {
  64056. name: "Normal",
  64057. height: math.unit(6, "feet"),
  64058. default: true
  64059. },
  64060. {
  64061. name: "Maximum",
  64062. height: math.unit(2101, "feet")
  64063. },
  64064. ]
  64065. ))
  64066. characterMakers.push(() => makeCharacter(
  64067. { name: "Kira (Slime)", species: ["slime"], tags: ["goo"] },
  64068. {
  64069. front: {
  64070. height: math.unit(5 + 4/12, "feet"),
  64071. weight: math.unit(250, "lb"),
  64072. volume: math.unit(20, "gallons"),
  64073. name: "Front",
  64074. image: {
  64075. source: "./media/characters/kira-slime/front.svg",
  64076. extra: 442/403,
  64077. bottom: 18/460
  64078. }
  64079. },
  64080. frontNsfw: {
  64081. height: math.unit(5 + 4/12, "feet"),
  64082. weight: math.unit(250, "lb"),
  64083. volume: math.unit(20, "gallons"),
  64084. name: "Front (NSFW)",
  64085. image: {
  64086. source: "./media/characters/kira-slime/front-nsfw.svg",
  64087. extra: 442/403,
  64088. bottom: 18/460
  64089. }
  64090. },
  64091. },
  64092. [
  64093. {
  64094. name: "Droplet",
  64095. height: math.unit(0.0464452, "feet")
  64096. },
  64097. {
  64098. name: "Pint",
  64099. height: math.unit(0.9824, "feet")
  64100. },
  64101. {
  64102. name: "Bucket",
  64103. height: math.unit(2.83, "feet")
  64104. },
  64105. {
  64106. name: "Normal",
  64107. height: math.unit(5 + 4/12, "feet"),
  64108. default: true
  64109. },
  64110. {
  64111. name: "Tub",
  64112. height: math.unit(8.46614, "feet")
  64113. },
  64114. {
  64115. name: "Pool",
  64116. height: math.unit(31.1895, "feet")
  64117. },
  64118. {
  64119. name: "Pond",
  64120. height: math.unit(170.349, "feet")
  64121. },
  64122. {
  64123. name: "Lake",
  64124. height: math.unit(289334, "feet")
  64125. },
  64126. {
  64127. name: "Ocean",
  64128. height: math.unit(1.11940e+7, "feet")
  64129. },
  64130. ]
  64131. ))
  64132. characterMakers.push(() => makeCharacter(
  64133. { name: "Holiday", species: ["fennec-fox", "deer"], tags: ["anthro"] },
  64134. {
  64135. front: {
  64136. height: math.unit(5 + 6/12, "feet"),
  64137. weight: math.unit(120, "lb"),
  64138. name: "Front",
  64139. image: {
  64140. source: "./media/characters/holiday/front.svg",
  64141. extra: 456/403,
  64142. bottom: 4/460
  64143. }
  64144. },
  64145. back: {
  64146. height: math.unit(5 + 6/12, "feet"),
  64147. weight: math.unit(120, "lb"),
  64148. name: "Back",
  64149. image: {
  64150. source: "./media/characters/holiday/back.svg",
  64151. extra: 450/404,
  64152. bottom: 12/462
  64153. }
  64154. },
  64155. head: {
  64156. height: math.unit(2.3, "feet"),
  64157. name: "Head",
  64158. image: {
  64159. source: "./media/characters/holiday/head.svg"
  64160. }
  64161. },
  64162. },
  64163. [
  64164. {
  64165. name: "Normal",
  64166. height: math.unit(5 + 6/12, "feet"),
  64167. default: true
  64168. },
  64169. {
  64170. name: "Macro",
  64171. height: math.unit(6574.25, "feet")
  64172. },
  64173. ]
  64174. ))
  64175. characterMakers.push(() => makeCharacter(
  64176. { name: "Camina", species: ["latenivenatrix"], tags: ["anthro"] },
  64177. {
  64178. front: {
  64179. height: math.unit(6 + 2/12, "feet"),
  64180. weight: math.unit(200, "lb"),
  64181. name: "Front",
  64182. image: {
  64183. source: "./media/characters/camina/front.svg",
  64184. extra: 1048/985,
  64185. bottom: 30/1078
  64186. }
  64187. },
  64188. },
  64189. [
  64190. {
  64191. name: "Normal",
  64192. height: math.unit(6 + 2/12, "feet"),
  64193. default: true
  64194. },
  64195. ]
  64196. ))
  64197. characterMakers.push(() => makeCharacter(
  64198. { name: "Smuck", species: ["duck"], tags: ["feral"] },
  64199. {
  64200. front: {
  64201. height: math.unit(30, "cm"),
  64202. weight: math.unit(420, "grams"),
  64203. name: "Front",
  64204. image: {
  64205. source: "./media/characters/smuck/front.svg",
  64206. extra: 379/345,
  64207. bottom: 36/415
  64208. }
  64209. },
  64210. },
  64211. [
  64212. {
  64213. name: "Smuck-Sized",
  64214. height: math.unit(30, "cm"),
  64215. default: true
  64216. },
  64217. ]
  64218. ))
  64219. characterMakers.push(() => makeCharacter(
  64220. { name: "Bylur", species: ["monster"], tags: ["anthro"] },
  64221. {
  64222. frontSfw: {
  64223. height: math.unit(10, "feet"),
  64224. weight: math.unit(1000, "kg"),
  64225. preyCapacity: math.unit(2, "people"),
  64226. name: "Front (SFW)",
  64227. image: {
  64228. source: "./media/characters/bylur/front-sfw.svg",
  64229. extra: 419/343,
  64230. bottom: 3/422
  64231. },
  64232. default: true
  64233. },
  64234. frontSheath: {
  64235. height: math.unit(10, "feet"),
  64236. weight: math.unit(1000, "kg"),
  64237. preyCapacity: math.unit(2, "people"),
  64238. name: "Front (Sheath)",
  64239. image: {
  64240. source: "./media/characters/bylur/front-sheath.svg",
  64241. extra: 419/343,
  64242. bottom: 3/422
  64243. }
  64244. },
  64245. frontErect: {
  64246. height: math.unit(10, "feet"),
  64247. weight: math.unit(1000, "kg"),
  64248. preyCapacity: math.unit(2, "people"),
  64249. name: "Front (Erect)",
  64250. image: {
  64251. source: "./media/characters/bylur/front-erect.svg",
  64252. extra: 419/343,
  64253. bottom: 3/422
  64254. }
  64255. },
  64256. back: {
  64257. height: math.unit(10, "feet"),
  64258. weight: math.unit(1000, "kg"),
  64259. preyCapacity: math.unit(2, "people"),
  64260. name: "Back",
  64261. image: {
  64262. source: "./media/characters/bylur/back.svg",
  64263. extra: 392/315,
  64264. bottom: 3/395
  64265. }
  64266. },
  64267. maw: {
  64268. height: math.unit(3.65, "feet"),
  64269. name: "Maw",
  64270. image: {
  64271. source: "./media/characters/bylur/maw.svg"
  64272. }
  64273. },
  64274. },
  64275. [
  64276. {
  64277. name: "Slightly Human Sized",
  64278. height: math.unit(10, "feet")
  64279. },
  64280. {
  64281. name: "Normal",
  64282. height: math.unit(35, "feet"),
  64283. default: true
  64284. },
  64285. {
  64286. name: "Macro",
  64287. height: math.unit(130, "feet")
  64288. },
  64289. ]
  64290. ))
  64291. characterMakers.push(() => makeCharacter(
  64292. { name: "Oarven", species: ["earless-monitor-lizard"], tags: ["anthro"] },
  64293. {
  64294. frontNsfw: {
  64295. height: math.unit(6, "feet"),
  64296. weight: math.unit(250, "lb"),
  64297. preyCapacity: math.unit(0.05, "people"),
  64298. name: "Front (NSFW)",
  64299. image: {
  64300. source: "./media/characters/oarven/front-nsfw.svg",
  64301. extra: 1795/1783,
  64302. bottom: 142/1937
  64303. }
  64304. },
  64305. frontSfw: {
  64306. height: math.unit(6, "feet"),
  64307. weight: math.unit(250, "lb"),
  64308. preyCapacity: math.unit(0.05, "people"),
  64309. name: "Front (SFW)",
  64310. image: {
  64311. source: "./media/characters/oarven/front-sfw.svg",
  64312. extra: 1795/1783,
  64313. bottom: 142/1937
  64314. }
  64315. },
  64316. },
  64317. [
  64318. {
  64319. name: "Megamacro",
  64320. height: math.unit(5, "miles"),
  64321. default: true
  64322. },
  64323. {
  64324. name: "Maximum Height",
  64325. height: math.unit(5, "AUs")
  64326. },
  64327. ]
  64328. ))
  64329. characterMakers.push(() => makeCharacter(
  64330. { name: "Solidarity", species: ["aerosynth"], tags: ["feral"] },
  64331. {
  64332. side: {
  64333. height: math.unit(1065, "meters"),
  64334. weight: math.unit(1e12, "kg"),
  64335. volume: math.unit(3265000000, "m^3"),
  64336. name: "Side",
  64337. image: {
  64338. source: "./media/characters/solidarity/side.svg"
  64339. }
  64340. },
  64341. front: {
  64342. height: math.unit(1065, "meters"),
  64343. weight: math.unit(3265000000000, "kg"),
  64344. volume: math.unit(3265000000, "m^3"),
  64345. name: "Front",
  64346. image: {
  64347. source: "./media/characters/solidarity/front.svg"
  64348. }
  64349. },
  64350. top: {
  64351. height: math.unit(5823, "meters"),
  64352. weight: math.unit(3265000000000, "kg"),
  64353. volume: math.unit(3265000000, "m^3"),
  64354. name: "Top",
  64355. image: {
  64356. source: "./media/characters/solidarity/top.svg"
  64357. }
  64358. },
  64359. },
  64360. [
  64361. {
  64362. name: "Normal",
  64363. height: math.unit(1065, "meters"),
  64364. default: true
  64365. },
  64366. ]
  64367. ))
  64368. characterMakers.push(() => makeCharacter(
  64369. { name: "Ani'szi", species: ["phenx"], tags: ["taur"] },
  64370. {
  64371. side: {
  64372. height: math.unit(18 + 4/12, "feet"),
  64373. weight: math.unit(13000, "kg"),
  64374. name: "Side",
  64375. image: {
  64376. source: "./media/characters/ani'szi/side.svg",
  64377. extra: 468/459,
  64378. bottom: 60/528
  64379. }
  64380. },
  64381. head: {
  64382. height: math.unit(4.8, "feet"),
  64383. name: "Head",
  64384. image: {
  64385. source: "./media/characters/ani'szi/head.svg"
  64386. }
  64387. },
  64388. jaws: {
  64389. height: math.unit(2.25, "feet"),
  64390. name: "Jaws",
  64391. image: {
  64392. source: "./media/characters/ani'szi/jaws.svg"
  64393. }
  64394. },
  64395. bust: {
  64396. height: math.unit(8.9, "feet"),
  64397. name: "Bust",
  64398. image: {
  64399. source: "./media/characters/ani'szi/bust.svg"
  64400. }
  64401. },
  64402. back: {
  64403. height: math.unit(13.53, "feet"),
  64404. name: "Back",
  64405. image: {
  64406. source: "./media/characters/ani'szi/back.svg"
  64407. }
  64408. },
  64409. eye: {
  64410. height: math.unit(0.44, "feet"),
  64411. name: "Eye",
  64412. image: {
  64413. source: "./media/characters/ani'szi/eye.svg"
  64414. }
  64415. },
  64416. },
  64417. [
  64418. {
  64419. name: "Normal",
  64420. height: math.unit(18 + 4/12, "feet"),
  64421. default: true
  64422. },
  64423. ]
  64424. ))
  64425. characterMakers.push(() => makeCharacter(
  64426. { name: "Rain", species: ["driger"], tags: ["anthro"] },
  64427. {
  64428. front: {
  64429. height: math.unit(7 + 6/12, "feet"),
  64430. weight: math.unit(300, "lb"),
  64431. name: "Front",
  64432. image: {
  64433. source: "./media/characters/rain/front.svg",
  64434. extra: 2955/2698,
  64435. bottom: 235/3190
  64436. }
  64437. },
  64438. dressed: {
  64439. height: math.unit(7 + 6/12, "feet"),
  64440. weight: math.unit(300, "lb"),
  64441. name: "Dressed",
  64442. image: {
  64443. source: "./media/characters/rain/dressed.svg",
  64444. extra: 2783/2572,
  64445. bottom: 430/3213
  64446. }
  64447. },
  64448. },
  64449. [
  64450. {
  64451. name: "Normal",
  64452. height: math.unit(7 + 6/12, "feet"),
  64453. default: true
  64454. },
  64455. {
  64456. name: "Macro",
  64457. height: math.unit(200, "feet")
  64458. },
  64459. {
  64460. name: "Macro+",
  64461. height: math.unit(500, "feet")
  64462. },
  64463. {
  64464. name: "Megamacro",
  64465. height: math.unit(5, "miles")
  64466. },
  64467. ]
  64468. ))
  64469. characterMakers.push(() => makeCharacter(
  64470. { name: "Anise", species: ["gryphon"], tags: ["feral", "taur"] },
  64471. {
  64472. taur_side: {
  64473. height: math.unit(3, "meters"),
  64474. name: "Side",
  64475. image: {
  64476. source: "./media/characters/anise/taur-side.svg",
  64477. extra: 1833/926,
  64478. bottom: 134/1967
  64479. },
  64480. form: "taur",
  64481. default: true
  64482. },
  64483. feral_side: {
  64484. height: math.unit(3, "meters"),
  64485. name: "Side",
  64486. image: {
  64487. source: "./media/characters/anise/feral-side.svg",
  64488. extra: 681/349,
  64489. bottom: 26/707
  64490. },
  64491. form: "feral"
  64492. },
  64493. },
  64494. [
  64495. {
  64496. name: "Normal",
  64497. height: math.unit(3, "meters"),
  64498. default: true,
  64499. allForms: true
  64500. },
  64501. ],
  64502. {
  64503. "taur": {
  64504. name: "Taur",
  64505. default: true
  64506. },
  64507. "feral": {
  64508. name: "Feral",
  64509. },
  64510. }
  64511. ))
  64512. characterMakers.push(() => makeCharacter(
  64513. { name: "Sarina", species: ["red-panda"], tags: ["anthro"] },
  64514. {
  64515. front: {
  64516. height: math.unit(1.9, "meters"),
  64517. weight: math.unit(75, "kg"),
  64518. name: "Front",
  64519. image: {
  64520. source: "./media/characters/sarina/front.svg",
  64521. extra: 1275/1200,
  64522. bottom: 49/1324
  64523. }
  64524. },
  64525. back: {
  64526. height: math.unit(1.9, "meters"),
  64527. weight: math.unit(75, "kg"),
  64528. name: "Back",
  64529. image: {
  64530. source: "./media/characters/sarina/back.svg",
  64531. extra: 1279/1209,
  64532. bottom: 14/1293
  64533. }
  64534. },
  64535. dressed: {
  64536. height: math.unit(1.9, "meters"),
  64537. weight: math.unit(75, "kg"),
  64538. name: "Dressed",
  64539. image: {
  64540. source: "./media/characters/sarina/dressed.svg",
  64541. extra: 1256/1187,
  64542. bottom: 56/1312
  64543. }
  64544. },
  64545. paw: {
  64546. height: math.unit(0.57, "feet"),
  64547. name: "Paw",
  64548. image: {
  64549. source: "./media/characters/sarina/paw.svg"
  64550. }
  64551. },
  64552. toering: {
  64553. height: math.unit(0.27, "feet"),
  64554. name: "Toering",
  64555. image: {
  64556. source: "./media/characters/sarina/toering.svg"
  64557. }
  64558. },
  64559. },
  64560. [
  64561. {
  64562. name: "Incognito",
  64563. height: math.unit(1.9, "meters")
  64564. },
  64565. {
  64566. name: "Home Size",
  64567. height: math.unit(160, "meters"),
  64568. default: true
  64569. },
  64570. {
  64571. name: "Mega",
  64572. height: math.unit(50, "km")
  64573. },
  64574. {
  64575. name: "Small Giga",
  64576. height: math.unit(250, "km")
  64577. },
  64578. {
  64579. name: "Giga (Preferred Size)",
  64580. height: math.unit(3000, "km")
  64581. },
  64582. {
  64583. name: "Terra",
  64584. height: math.unit(40000, "km")
  64585. },
  64586. {
  64587. name: "Terra+",
  64588. height: math.unit(400000, "km")
  64589. },
  64590. {
  64591. name: "Solar",
  64592. height: math.unit(35e6, "km")
  64593. },
  64594. {
  64595. name: "Galactic",
  64596. height: math.unit(648106, "parsecs")
  64597. },
  64598. {
  64599. name: "Universal",
  64600. height: math.unit(7, "universes")
  64601. },
  64602. {
  64603. name: "Universal+",
  64604. height: math.unit(30, "universes")
  64605. },
  64606. ]
  64607. ))
  64608. characterMakers.push(() => makeCharacter(
  64609. { name: "Sifray", species: ["homestuck-troll"], tags: ["anthro"] },
  64610. {
  64611. front: {
  64612. height: math.unit(5 + 6/12, "feet"),
  64613. name: "Front",
  64614. image: {
  64615. source: "./media/characters/sifray/front.svg",
  64616. extra: 722/691,
  64617. bottom: 64/786
  64618. }
  64619. },
  64620. },
  64621. [
  64622. {
  64623. name: "Normal",
  64624. height: math.unit(5 + 6/12, "feet"),
  64625. default: true
  64626. },
  64627. ]
  64628. ))
  64629. characterMakers.push(() => makeCharacter(
  64630. { name: "Spots", species: ["dog"], tags: ["feral"] },
  64631. {
  64632. side: {
  64633. height: math.unit(2.64, "feet"),
  64634. weight: math.unit(100, "lb"),
  64635. preyCapacity: math.unit(3, "people"),
  64636. name: "Side",
  64637. image: {
  64638. source: "./media/characters/spots/side.svg",
  64639. extra: 1859/977,
  64640. bottom: 19/1878
  64641. },
  64642. extraAttributes: {
  64643. "preyPerMinute": {
  64644. name: "Prey Per Minute",
  64645. power: 3,
  64646. type: "volume",
  64647. base: math.unit(6, "people"),
  64648. defaultUnit: "people"
  64649. },
  64650. "preyPerDay": {
  64651. name: "Prey Per Day",
  64652. power: 3,
  64653. type: "volume",
  64654. base: math.unit(6 * 60 * 24, "people"),
  64655. defaultUnit: "people"
  64656. },
  64657. }
  64658. },
  64659. },
  64660. [
  64661. {
  64662. name: "Normal",
  64663. height: math.unit(2.64, "feet"),
  64664. default: true
  64665. },
  64666. ]
  64667. ))
  64668. characterMakers.push(() => makeCharacter(
  64669. { name: "Mona", species: ["caudin"], tags: ["anthro"] },
  64670. {
  64671. front: {
  64672. height: math.unit(29 + 11/12, "feet"),
  64673. weight: math.unit(40, "tons"),
  64674. name: "Front",
  64675. image: {
  64676. source: "./media/characters/mona/front.svg",
  64677. extra: 1257/1116,
  64678. bottom: 34/1291
  64679. }
  64680. },
  64681. },
  64682. [
  64683. {
  64684. name: "Normal",
  64685. height: math.unit(29 + 11/12, "feet"),
  64686. default: true
  64687. },
  64688. ]
  64689. ))
  64690. characterMakers.push(() => makeCharacter(
  64691. { name: "FrostFire", species: ["dragon"], tags: ["anthro"] },
  64692. {
  64693. front: {
  64694. height: math.unit(15, "feet"),
  64695. weight: math.unit(3000, "kg"),
  64696. preyCapacity: math.unit(5, "people"),
  64697. name: "Front",
  64698. image: {
  64699. source: "./media/characters/frostfire/front.svg",
  64700. extra: 675/558,
  64701. bottom: 73/748
  64702. }
  64703. },
  64704. side: {
  64705. height: math.unit(15, "feet"),
  64706. weight: math.unit(3000, "kg"),
  64707. preyCapacity: math.unit(5, "people"),
  64708. name: "Side",
  64709. image: {
  64710. source: "./media/characters/frostfire/side.svg",
  64711. extra: 687/585,
  64712. bottom: 50/737
  64713. }
  64714. },
  64715. back: {
  64716. height: math.unit(15, "feet"),
  64717. weight: math.unit(3000, "kg"),
  64718. preyCapacity: math.unit(5, "people"),
  64719. name: "Back",
  64720. image: {
  64721. source: "./media/characters/frostfire/back.svg",
  64722. extra: 707/607,
  64723. bottom: 16/723
  64724. }
  64725. },
  64726. head: {
  64727. height: math.unit(9.35, "feet"),
  64728. name: "Head",
  64729. image: {
  64730. source: "./media/characters/frostfire/head.svg"
  64731. }
  64732. },
  64733. maw: {
  64734. height: math.unit(3.32, "feet"),
  64735. name: "Maw",
  64736. image: {
  64737. source: "./media/characters/frostfire/maw.svg"
  64738. }
  64739. },
  64740. hand: {
  64741. height: math.unit(3.7, "feet"),
  64742. name: "Hand",
  64743. image: {
  64744. source: "./media/characters/frostfire/hand.svg"
  64745. }
  64746. },
  64747. paw: {
  64748. height: math.unit(5.8, "feet"),
  64749. name: "Paw",
  64750. image: {
  64751. source: "./media/characters/frostfire/paw.svg"
  64752. }
  64753. },
  64754. },
  64755. [
  64756. {
  64757. name: "Normal",
  64758. height: math.unit(15, "feet"),
  64759. default: true
  64760. },
  64761. ]
  64762. ))
  64763. characterMakers.push(() => makeCharacter(
  64764. { name: "Valeroo", species: ["kangaroo"], tags: ["anthro"] },
  64765. {
  64766. front: {
  64767. height: math.unit(5 + 2/12, "feet"),
  64768. weight: math.unit(122, "lb"),
  64769. name: "Front",
  64770. image: {
  64771. source: "./media/characters/valeroo/front.svg",
  64772. extra: 1789/1534,
  64773. bottom: 66/1855
  64774. }
  64775. },
  64776. back: {
  64777. height: math.unit(5 + 2/12, "feet"),
  64778. weight: math.unit(122, "lb"),
  64779. name: "Back",
  64780. image: {
  64781. source: "./media/characters/valeroo/back.svg",
  64782. extra: 1848/1588,
  64783. bottom: 68/1916
  64784. }
  64785. },
  64786. head: {
  64787. height: math.unit(1.87, "feet"),
  64788. name: "Head",
  64789. image: {
  64790. source: "./media/characters/valeroo/head.svg"
  64791. }
  64792. },
  64793. hand: {
  64794. height: math.unit(0.82, "feet"),
  64795. name: "Hand",
  64796. image: {
  64797. source: "./media/characters/valeroo/hand.svg"
  64798. }
  64799. },
  64800. foot: {
  64801. height: math.unit(2.42, "feet"),
  64802. name: "Foot",
  64803. image: {
  64804. source: "./media/characters/valeroo/foot.svg"
  64805. }
  64806. },
  64807. },
  64808. [
  64809. {
  64810. name: "Normal",
  64811. height: math.unit(5 + 2/12, "feet"),
  64812. default: true
  64813. },
  64814. ]
  64815. ))
  64816. characterMakers.push(() => makeCharacter(
  64817. { name: "Corrin", species: ["secretary-bird"], tags: ["anthro"] },
  64818. {
  64819. front: {
  64820. height: math.unit(11 + 3/12, "feet"),
  64821. name: "Front",
  64822. image: {
  64823. source: "./media/characters/corrin/front.svg",
  64824. extra: 665/597,
  64825. bottom: 74/739
  64826. }
  64827. },
  64828. },
  64829. [
  64830. {
  64831. name: "Standard",
  64832. height: math.unit(11 + 3/12, "feet"),
  64833. default: true
  64834. },
  64835. {
  64836. name: "The Boss",
  64837. height: math.unit(110, "feet")
  64838. },
  64839. {
  64840. name: "Shipbreaker",
  64841. height: math.unit(38, "km")
  64842. },
  64843. ]
  64844. ))
  64845. characterMakers.push(() => makeCharacter(
  64846. { name: "Kiba Ulrich", species: ["dire-wolf"], tags: ["anthro"] },
  64847. {
  64848. front: {
  64849. height: math.unit(10, "feet"),
  64850. weight: math.unit(1750, "lb"),
  64851. name: "Front",
  64852. image: {
  64853. source: "./media/characters/kiba-ulrich/front.svg",
  64854. extra: 1037/973,
  64855. bottom: 36/1073
  64856. }
  64857. },
  64858. },
  64859. [
  64860. {
  64861. name: "Normal",
  64862. height: math.unit(10, "feet"),
  64863. default: true
  64864. },
  64865. {
  64866. name: "Minimacro",
  64867. height: math.unit(20, "feet")
  64868. },
  64869. {
  64870. name: "Macro",
  64871. height: math.unit(200, "feet")
  64872. },
  64873. {
  64874. name: "Megamacro",
  64875. height: math.unit(22500, "feet")
  64876. },
  64877. {
  64878. name: "Gigamacro",
  64879. height: math.unit(2700, "miles")
  64880. },
  64881. {
  64882. name: "Teramacro",
  64883. height: math.unit(10000, "miles")
  64884. },
  64885. ]
  64886. ))
  64887. characterMakers.push(() => makeCharacter(
  64888. { name: "Ceanoth", species: ["gryphon"], tags: ["anthro"] },
  64889. {
  64890. gryphon_front: {
  64891. height: math.unit(220, "cm"),
  64892. weight: math.unit(160, "kg"),
  64893. name: "Front",
  64894. image: {
  64895. source: "./media/characters/ceanoth/gryphon-front.svg",
  64896. extra: 616/552,
  64897. bottom: 33/649
  64898. },
  64899. form: "gryphon",
  64900. default: true
  64901. },
  64902. },
  64903. [
  64904. {
  64905. name: "Normal",
  64906. height: math.unit(220, "cm"),
  64907. form: "gryphon",
  64908. default: true
  64909. },
  64910. ],
  64911. {
  64912. "gryphon": {
  64913. name: "Grpyhon",
  64914. default: true
  64915. },
  64916. }
  64917. ))
  64918. characterMakers.push(() => makeCharacter(
  64919. { name: "Vanadiya Athelya", species: ["dragon"], tags: ["taur"] },
  64920. {
  64921. dressed: {
  64922. height: math.unit(2.2 * 0.79, "meters"),
  64923. weight: math.unit(0.5, "tonnes"),
  64924. name: "Dressed",
  64925. image: {
  64926. source: "./media/characters/vanadiya-athelya/dressed.svg",
  64927. extra: 665/315,
  64928. bottom: 106/771
  64929. },
  64930. extraAttributes: {
  64931. "bodyLength": {
  64932. name: "Body Length",
  64933. power: 1,
  64934. type: "length",
  64935. base: math.unit(2.5, "meters")
  64936. },
  64937. "tailLength": {
  64938. name: "Tail Length",
  64939. power: 1,
  64940. type: "length",
  64941. base: math.unit(4.5, "meters")
  64942. },
  64943. "wingspan": {
  64944. name: "Wingspan",
  64945. power: 1,
  64946. type: "length",
  64947. base: math.unit(6, "meters")
  64948. },
  64949. "taurStomachCapacity": {
  64950. name: "Taur Stomach Capacity",
  64951. power: 3,
  64952. type: "volume",
  64953. base: math.unit(4, "people"),
  64954. defaultUnit: "people"
  64955. },
  64956. "anthroStomachCapacity": {
  64957. name: "Anthro Stomach Capacity",
  64958. power: 3,
  64959. type: "volume",
  64960. base: math.unit(1, "people"),
  64961. defaultUnit: "people"
  64962. },
  64963. }
  64964. },
  64965. nude: {
  64966. height: math.unit(2.2 * 0.79, "meters"),
  64967. weight: math.unit(0.5, "tonnes"),
  64968. name: "Nude",
  64969. image: {
  64970. source: "./media/characters/vanadiya-athelya/nude.svg",
  64971. extra: 665/315,
  64972. bottom: 106/771
  64973. },
  64974. extraAttributes: {
  64975. "bodyLength": {
  64976. name: "Body Length",
  64977. power: 1,
  64978. type: "length",
  64979. base: math.unit(2.5, "meters")
  64980. },
  64981. "tailLength": {
  64982. name: "Tail Length",
  64983. power: 1,
  64984. type: "length",
  64985. base: math.unit(4.5, "meters")
  64986. },
  64987. "wingspan": {
  64988. name: "Wingspan",
  64989. power: 1,
  64990. type: "length",
  64991. base: math.unit(6, "meters")
  64992. },
  64993. "taurStomachCapacity": {
  64994. name: "Taur Stomach Capacity",
  64995. power: 3,
  64996. type: "volume",
  64997. base: math.unit(4, "people"),
  64998. defaultUnit: "people"
  64999. },
  65000. "anthroStomachCapacity": {
  65001. name: "Anthro Stomach Capacity",
  65002. power: 3,
  65003. type: "volume",
  65004. base: math.unit(1, "people"),
  65005. defaultUnit: "people"
  65006. },
  65007. }
  65008. },
  65009. },
  65010. [
  65011. {
  65012. name: "Handheld",
  65013. height: math.unit(0.79 * 0.06, "meters")
  65014. },
  65015. {
  65016. name: "Mini",
  65017. height: math.unit(0.79 * 0.7, "meters")
  65018. },
  65019. {
  65020. name: "Short",
  65021. height: math.unit(0.79 * 1.4, "meters")
  65022. },
  65023. {
  65024. name: "Imposing",
  65025. height: math.unit(0.79 * 2.2, "meters"),
  65026. default: true
  65027. },
  65028. {
  65029. name: "Big",
  65030. height: math.unit(0.79 * 3.8, "meters")
  65031. },
  65032. {
  65033. name: "Giant",
  65034. height: math.unit(0.79 * 6.7, "meters")
  65035. },
  65036. {
  65037. name: "Airliner",
  65038. height: math.unit(0.79 * 64, "meters")
  65039. },
  65040. {
  65041. name: "Skyscraper",
  65042. height: math.unit(0.79 * 220, "meters")
  65043. },
  65044. {
  65045. name: "Mountain",
  65046. height: math.unit(0.79 * 3.6, "km")
  65047. },
  65048. {
  65049. name: "Spacescraper",
  65050. height: math.unit(0.79 * 70, "km")
  65051. },
  65052. {
  65053. name: "Continental",
  65054. height: math.unit(0.79 * 1290, "km")
  65055. },
  65056. {
  65057. name: "Moon",
  65058. height: math.unit(0.79 * 32200, "km")
  65059. },
  65060. {
  65061. name: "Planetary",
  65062. height: math.unit(0.79 * 145000, "km")
  65063. },
  65064. {
  65065. name: "Stellar",
  65066. height: math.unit(0.79 * 19e6, "km")
  65067. },
  65068. {
  65069. name: "Solar",
  65070. height: math.unit(0.79 * 40, "AU")
  65071. },
  65072. {
  65073. name: "Intersteller",
  65074. height: math.unit(0.79 * 3, "lightyears")
  65075. },
  65076. {
  65077. name: "Star Cluster",
  65078. height: math.unit(0.79 * 80, "lightyears")
  65079. },
  65080. {
  65081. name: "Ecumenical",
  65082. height: math.unit(0.79 * 2e3, "lightyears")
  65083. },
  65084. {
  65085. name: "Galactic",
  65086. height: math.unit(0.79 * 175000, "lightyears")
  65087. },
  65088. {
  65089. name: "Galaxy Cluster",
  65090. height: math.unit(0.79 * 25e6, "lightyears")
  65091. },
  65092. ]
  65093. ))
  65094. characterMakers.push(() => makeCharacter(
  65095. { name: "Yana Amelin", species: ["russian-blue"], tags: ["anthro"] },
  65096. {
  65097. front: {
  65098. height: math.unit(6 + 2/12, "feet"),
  65099. weight: math.unit(160, "lb"),
  65100. name: "Front",
  65101. image: {
  65102. source: "./media/characters/yana-amelin/front.svg",
  65103. extra: 1413/1295,
  65104. bottom: 42/1455
  65105. }
  65106. },
  65107. back: {
  65108. height: math.unit(6 + 2/12, "feet"),
  65109. weight: math.unit(160, "lb"),
  65110. name: "Back",
  65111. image: {
  65112. source: "./media/characters/yana-amelin/back.svg",
  65113. extra: 1424/1310,
  65114. bottom: 24/1448
  65115. }
  65116. },
  65117. paws: {
  65118. height: math.unit(1.48, "feet"),
  65119. name: "Paws",
  65120. image: {
  65121. source: "./media/characters/yana-amelin/paws.svg",
  65122. extra: 304/304,
  65123. bottom: 49/353
  65124. }
  65125. },
  65126. },
  65127. [
  65128. {
  65129. name: "Micro",
  65130. height: math.unit(4, "inches")
  65131. },
  65132. {
  65133. name: "Normal",
  65134. height: math.unit(6 + 2/12, "feet"),
  65135. default: true
  65136. },
  65137. {
  65138. name: "Minimacro",
  65139. height: math.unit(20, "feet")
  65140. },
  65141. {
  65142. name: "Macro",
  65143. height: math.unit(70, "feet")
  65144. },
  65145. ]
  65146. ))
  65147. characterMakers.push(() => makeCharacter(
  65148. { name: "Titania", species: ["horse"], tags: ["anthro"] },
  65149. {
  65150. frontNsfw: {
  65151. height: math.unit(2.48, "meters"),
  65152. weight: math.unit(112, "kg"),
  65153. name: "Front (NSFW)",
  65154. image: {
  65155. source: "./media/characters/titania/front-nsfw.svg",
  65156. extra: 1302/1232,
  65157. bottom: 90/1392
  65158. }
  65159. },
  65160. backNsfw: {
  65161. height: math.unit(2.48, "meters"),
  65162. weight: math.unit(112, "kg"),
  65163. name: "Back (NSFW)",
  65164. image: {
  65165. source: "./media/characters/titania/back-nsfw.svg",
  65166. extra: 1355/1288,
  65167. bottom: 18/1373
  65168. }
  65169. },
  65170. frontSfw: {
  65171. height: math.unit(2.48, "meters"),
  65172. weight: math.unit(112, "kg"),
  65173. name: "Front (SFW)",
  65174. image: {
  65175. source: "./media/characters/titania/front-sfw.svg",
  65176. extra: 1302/1232,
  65177. bottom: 90/1392
  65178. }
  65179. },
  65180. backSfw: {
  65181. height: math.unit(2.48, "meters"),
  65182. weight: math.unit(112, "kg"),
  65183. name: "Back (SFW)",
  65184. image: {
  65185. source: "./media/characters/titania/back-sfw.svg",
  65186. extra: 1355/1288,
  65187. bottom: 18/1373
  65188. }
  65189. },
  65190. head: {
  65191. height: math.unit(2.06, "feet"),
  65192. name: "Head",
  65193. image: {
  65194. source: "./media/characters/titania/head.svg"
  65195. }
  65196. },
  65197. maw: {
  65198. height: math.unit(0.8, "feet"),
  65199. name: "Maw",
  65200. image: {
  65201. source: "./media/characters/titania/maw.svg"
  65202. }
  65203. },
  65204. foot: {
  65205. height: math.unit(1.65, "feet"),
  65206. name: "Foot",
  65207. image: {
  65208. source: "./media/characters/titania/foot.svg"
  65209. }
  65210. },
  65211. nethers: {
  65212. height: math.unit(1.7, "feet"),
  65213. name: "Nethers",
  65214. image: {
  65215. source: "./media/characters/titania/nethers.svg"
  65216. }
  65217. },
  65218. },
  65219. [
  65220. {
  65221. name: "Normal",
  65222. height: math.unit(2.48, "meters"),
  65223. default: true
  65224. },
  65225. {
  65226. name: "Mini Macro",
  65227. height: math.unit(248, "meters")
  65228. },
  65229. {
  65230. name: "Macro",
  65231. height: math.unit(620, "meters")
  65232. },
  65233. {
  65234. name: "Mega Macro",
  65235. height: math.unit(1860, "meters")
  65236. },
  65237. ]
  65238. ))
  65239. characterMakers.push(() => makeCharacter(
  65240. { name: "Tony Gray", species: ["wholphin"], tags: ["anthro"] },
  65241. {
  65242. front: {
  65243. height: math.unit(5 + 9/12, "feet"),
  65244. weight: math.unit(1500, "lb"),
  65245. name: "Front",
  65246. image: {
  65247. source: "./media/characters/tony-gray/front.svg",
  65248. extra: 700/575,
  65249. bottom: 71/771
  65250. }
  65251. },
  65252. },
  65253. [
  65254. {
  65255. name: "Normal",
  65256. height: math.unit(5 + 9/12, "feet"),
  65257. default: true
  65258. },
  65259. ]
  65260. ))
  65261. characterMakers.push(() => makeCharacter(
  65262. { name: "Kelby", species: ["sea-dragon"], tags: ["feral"] },
  65263. {
  65264. side: {
  65265. height: math.unit(8 + 2/12, "feet"),
  65266. name: "Side",
  65267. image: {
  65268. source: "./media/characters/kelby/side.svg",
  65269. extra: 804/578,
  65270. bottom: 70/874
  65271. },
  65272. form: "regular",
  65273. default: true
  65274. },
  65275. lounging: {
  65276. height: math.unit(12.41, "feet"),
  65277. name: "Lounging",
  65278. image: {
  65279. source: "./media/characters/kelby/lounging.svg"
  65280. },
  65281. form: "regular"
  65282. },
  65283. maw: {
  65284. height: math.unit(5, "feet"),
  65285. name: "Maw",
  65286. image: {
  65287. source: "./media/characters/kelby/maw.svg"
  65288. },
  65289. form: "regular"
  65290. },
  65291. dick: {
  65292. height: math.unit(2.4, "feet"),
  65293. name: "Dick",
  65294. image: {
  65295. source: "./media/characters/kelby/dick.svg"
  65296. },
  65297. form: "regular"
  65298. },
  65299. slit: {
  65300. height: math.unit(1.2, "feet"),
  65301. name: "Slit",
  65302. image: {
  65303. source: "./media/characters/kelby/slit.svg"
  65304. },
  65305. form: "regular"
  65306. },
  65307. chibi: {
  65308. height: math.unit(5, "feet"),
  65309. name: "Chibi",
  65310. image: {
  65311. source: "./media/characters/kelby/chibi.svg",
  65312. extra: 245/200,
  65313. bottom: 43/288
  65314. },
  65315. form: "chibi",
  65316. default: true
  65317. },
  65318. },
  65319. [
  65320. {
  65321. name: "Normal",
  65322. height: math.unit(8 + 2/12, "feet"),
  65323. default: true,
  65324. form: "regular"
  65325. },
  65326. {
  65327. name: "Normal",
  65328. height: math.unit(5, "feet"),
  65329. default: true,
  65330. form: "chibi"
  65331. },
  65332. ],
  65333. {
  65334. "regular": {
  65335. name: "Regular",
  65336. default: true
  65337. },
  65338. "chibi": {
  65339. name: "Chibi",
  65340. },
  65341. }
  65342. ))
  65343. characterMakers.push(() => makeCharacter(
  65344. { name: "Elisa Mitchell", species: ["brown-bear", "kaiju"], tags: ["anthro"] },
  65345. {
  65346. front: {
  65347. height: math.unit(7 + 10/12, "feet"),
  65348. weight: math.unit(300, "lb"),
  65349. name: "Front",
  65350. image: {
  65351. source: "./media/characters/elisa-mitchell/front.svg",
  65352. extra: 2562/2355,
  65353. bottom: 62/2624
  65354. }
  65355. },
  65356. maw: {
  65357. height: math.unit(2.37, "feet"),
  65358. name: "Maw",
  65359. image: {
  65360. source: "./media/characters/elisa-mitchell/maw.svg"
  65361. }
  65362. },
  65363. },
  65364. [
  65365. {
  65366. name: "Normal",
  65367. height: math.unit(7 + 10/12, "feet"),
  65368. default: true
  65369. },
  65370. {
  65371. name: "Macro",
  65372. height: math.unit(1490, "feet"),
  65373. default: true
  65374. },
  65375. ]
  65376. ))
  65377. characterMakers.push(() => makeCharacter(
  65378. { name: "Camia \"Vertigo\" Zott", species: ["vampire-bat", "kaiju"], tags: ["anthro"] },
  65379. {
  65380. front: {
  65381. height: math.unit(122, "cm"),
  65382. weight: math.unit(40, "lb"),
  65383. name: "Front",
  65384. image: {
  65385. source: "./media/characters/camia-vertigo-zott/front.svg",
  65386. extra: 2112/1902,
  65387. bottom: 21/2133
  65388. }
  65389. },
  65390. },
  65391. [
  65392. {
  65393. name: "Base Height",
  65394. height: math.unit(122, "cm")
  65395. },
  65396. {
  65397. name: "Macro Height",
  65398. height: math.unit(345, "meters"),
  65399. default: true
  65400. },
  65401. ]
  65402. ))
  65403. characterMakers.push(() => makeCharacter(
  65404. { name: "Dianne Elizabeth Heathers", species: ["saint-bernard"], tags: ["anthro"] },
  65405. {
  65406. front: {
  65407. height: math.unit(6 + 3/12, "feet"),
  65408. weight: math.unit(180, "lb"),
  65409. name: "Front",
  65410. image: {
  65411. source: "./media/characters/dianne-elizabeth-heathers/front.svg",
  65412. extra: 2580/2457,
  65413. bottom: 131/2711
  65414. }
  65415. },
  65416. },
  65417. [
  65418. {
  65419. name: "Normal",
  65420. height: math.unit(6 + 3/12, "feet"),
  65421. default: true
  65422. },
  65423. ]
  65424. ))
  65425. characterMakers.push(() => makeCharacter(
  65426. { name: "Sleeka", species: ["rat"], tags: ["anthro"] },
  65427. {
  65428. front: {
  65429. height: math.unit(165, "cm"),
  65430. weight: math.unit(130, "lb"),
  65431. name: "Front",
  65432. image: {
  65433. source: "./media/characters/sleeka/front.svg",
  65434. extra: 1252/1200,
  65435. bottom: 46/1298
  65436. }
  65437. },
  65438. },
  65439. [
  65440. {
  65441. name: "Normal",
  65442. height: math.unit(165, "cm")
  65443. },
  65444. {
  65445. name: "Galactic",
  65446. height: math.unit(5.8e22, "meters"),
  65447. default: true
  65448. },
  65449. {
  65450. name: "Universal",
  65451. height: math.unit(1.02e29, "meters")
  65452. },
  65453. ]
  65454. ))
  65455. characterMakers.push(() => makeCharacter(
  65456. { name: "Emily Whitetail", species: ["deer"], tags: ["anthro"] },
  65457. {
  65458. front: {
  65459. height: math.unit(5 + 11/12, "feet"),
  65460. weight: math.unit(145, "lb"),
  65461. name: "Front",
  65462. image: {
  65463. source: "./media/characters/emily-whitetail/front.svg",
  65464. extra: 2510/2280,
  65465. bottom: 128/2638
  65466. }
  65467. },
  65468. },
  65469. [
  65470. {
  65471. name: "Normal",
  65472. height: math.unit(5 + 11/12, "feet")
  65473. },
  65474. {
  65475. name: "Galactic",
  65476. height: math.unit(6.3e22, "meters"),
  65477. default: true
  65478. },
  65479. {
  65480. name: "Universal",
  65481. height: math.unit(1.12e29, "meters")
  65482. },
  65483. ]
  65484. ))
  65485. characterMakers.push(() => makeCharacter(
  65486. { name: "Buck Whitetail", species: ["deer"], tags: ["anthro"] },
  65487. {
  65488. front: {
  65489. height: math.unit(5 + 4/12, "feet"),
  65490. weight: math.unit(110, "lb"),
  65491. name: "Front",
  65492. image: {
  65493. source: "./media/characters/buck-whitetail/front.svg",
  65494. extra: 2430/2186,
  65495. bottom: 125/2555
  65496. }
  65497. },
  65498. },
  65499. [
  65500. {
  65501. name: "Normal",
  65502. height: math.unit(5 + 4/12, "feet")
  65503. },
  65504. {
  65505. name: "Galactic",
  65506. height: math.unit(5.4e22, "meters"),
  65507. default: true
  65508. },
  65509. {
  65510. name: "Universal",
  65511. height: math.unit(9.6e28, "meters")
  65512. },
  65513. ]
  65514. ))
  65515. characterMakers.push(() => makeCharacter(
  65516. { name: "Zoey Frisk", species: ["fox"], tags: ["anthro"] },
  65517. {
  65518. front: {
  65519. height: math.unit(5 + 3/12, "feet"),
  65520. name: "Front",
  65521. image: {
  65522. source: "./media/characters/zoey-frisk/front.svg",
  65523. extra: 2825/2646,
  65524. bottom: 57/2882
  65525. }
  65526. },
  65527. },
  65528. [
  65529. {
  65530. name: "Normal",
  65531. height: math.unit(5 + 3/12, "feet"),
  65532. default: true
  65533. },
  65534. {
  65535. name: "Macro",
  65536. height: math.unit(800, "feet")
  65537. },
  65538. ]
  65539. ))
  65540. characterMakers.push(() => makeCharacter(
  65541. { name: "Dhaeleena M'iar", species: ["siamese-cat"], tags: ["anthro"] },
  65542. {
  65543. front: {
  65544. height: math.unit(210, "cm"),
  65545. weight: math.unit(102, "kg"),
  65546. name: "Front",
  65547. image: {
  65548. source: "./media/characters/dhaeleena-m'iar/front.svg",
  65549. extra: 831/790,
  65550. bottom: 19/850
  65551. }
  65552. },
  65553. },
  65554. [
  65555. {
  65556. name: "Normal",
  65557. height: math.unit(210, "cm"),
  65558. default: true
  65559. },
  65560. ]
  65561. ))
  65562. //characters
  65563. function makeCharacters() {
  65564. const results = [];
  65565. characterMakers.forEach(character => {
  65566. results.push(character());
  65567. });
  65568. return results;
  65569. }