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.
 
 
 

64949 line
1.6 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity,
  51. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. parents: [
  143. "video-games"
  144. ]
  145. },
  146. tiger: {
  147. name: "Tiger",
  148. parents: [
  149. "cat"
  150. ]
  151. },
  152. cat: {
  153. name: "Cat",
  154. parents: [
  155. "feliform"
  156. ]
  157. },
  158. "blue-jay": {
  159. name: "Blue Jay",
  160. parents: [
  161. "corvid"
  162. ]
  163. },
  164. wolf: {
  165. name: "Wolf",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. coyote: {
  171. name: "Coyote",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. raccoon: {
  177. name: "Raccoon",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. weasel: {
  183. name: "Weasel",
  184. parents: [
  185. "mustelid"
  186. ]
  187. },
  188. "red-panda": {
  189. name: "Red Panda",
  190. parents: [
  191. "mammal"
  192. ]
  193. },
  194. dolphin: {
  195. name: "Dolphin",
  196. parents: [
  197. "mammal"
  198. ]
  199. },
  200. "african-wild-dog": {
  201. name: "African Wild Dog",
  202. parents: [
  203. "canine"
  204. ]
  205. },
  206. "hyena": {
  207. name: "Hyena",
  208. parents: [
  209. "feliform"
  210. ]
  211. },
  212. "carbuncle": {
  213. name: "Carbuncle",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. bat: {
  219. name: "Bat",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "leaf-nosed-bat": {
  225. name: "Leaf-Nosed Bat",
  226. parents: [
  227. "bat"
  228. ]
  229. },
  230. "fish": {
  231. name: "Fish",
  232. parents: [
  233. "animal",
  234. "aquatic"
  235. ]
  236. },
  237. "ram": {
  238. name: "Ram",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "demon": {
  244. name: "Demon",
  245. parents: [
  246. "supernatural"
  247. ]
  248. },
  249. "cougar": {
  250. name: "Cougar",
  251. parents: [
  252. "cat"
  253. ]
  254. },
  255. "goat": {
  256. name: "Goat",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "lion": {
  262. name: "Lion",
  263. parents: [
  264. "cat"
  265. ]
  266. },
  267. "harpy-eager": {
  268. name: "Harpy Eagle",
  269. parents: [
  270. "avian"
  271. ]
  272. },
  273. "deer": {
  274. name: "Deer",
  275. parents: [
  276. "mammal"
  277. ]
  278. },
  279. "phoenix": {
  280. name: "Phoenix",
  281. parents: [
  282. "avian"
  283. ]
  284. },
  285. "aeromorph": {
  286. name: "Aeromorph",
  287. parents: [
  288. "machine"
  289. ]
  290. },
  291. "machine": {
  292. name: "Machine",
  293. },
  294. "android": {
  295. name: "Android",
  296. parents: [
  297. "machine"
  298. ]
  299. },
  300. "jackal": {
  301. name: "Jackal",
  302. parents: [
  303. "canine"
  304. ]
  305. },
  306. "corvid": {
  307. name: "Corvid",
  308. parents: [
  309. "passerine"
  310. ]
  311. },
  312. "pharaoh-hound": {
  313. name: "Pharaoh Hound",
  314. parents: [
  315. "dog"
  316. ]
  317. },
  318. "skunk": {
  319. name: "Skunk",
  320. parents: [
  321. "mammal"
  322. ]
  323. },
  324. "shark": {
  325. name: "Shark",
  326. parents: [
  327. "fish"
  328. ]
  329. },
  330. "black-panther": {
  331. name: "Black Panther",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "umbra": {
  337. name: "Umbra",
  338. parents: [
  339. "animal"
  340. ]
  341. },
  342. "raven": {
  343. name: "Raven",
  344. parents: [
  345. "corvid"
  346. ]
  347. },
  348. "snow-leopard": {
  349. name: "Snow Leopard",
  350. parents: [
  351. "cat"
  352. ]
  353. },
  354. "barbary-lion": {
  355. name: "Barbary Lion",
  356. parents: [
  357. "lion"
  358. ]
  359. },
  360. "dra'gal": {
  361. name: "Dra'Gal",
  362. parents: [
  363. "mammal"
  364. ]
  365. },
  366. "german-shepherd": {
  367. name: "German Shepherd",
  368. parents: [
  369. "dog"
  370. ]
  371. },
  372. "bayleef": {
  373. name: "Bayleef",
  374. parents: [
  375. "pokemon",
  376. "plant",
  377. "animal"
  378. ]
  379. },
  380. "mouse": {
  381. name: "Mouse",
  382. parents: [
  383. "rodent"
  384. ]
  385. },
  386. "rat": {
  387. name: "Rat",
  388. parents: [
  389. "mammal"
  390. ]
  391. },
  392. "hoshiko-beast": {
  393. name: "Hoshiko Beast",
  394. parents: ["animal"]
  395. },
  396. "snow-jugani": {
  397. name: "Snow Jugani",
  398. parents: ["cat"]
  399. },
  400. "patamon": {
  401. name: "Patamon",
  402. parents: ["digimon", "guinea-pig"]
  403. },
  404. "digimon": {
  405. name: "Digimon",
  406. parents: [
  407. "video-games"
  408. ]
  409. },
  410. "jugani": {
  411. name: "Jugani",
  412. parents: ["cat"]
  413. },
  414. "luxray": {
  415. name: "Luxray",
  416. parents: ["pokemon", "lion"]
  417. },
  418. "mech": {
  419. name: "Mech",
  420. parents: ["machine"]
  421. },
  422. "zoid": {
  423. name: "Zoid",
  424. parents: ["mech"]
  425. },
  426. "monster": {
  427. name: "Monster",
  428. parents: ["animal"]
  429. },
  430. "foo-dog": {
  431. name: "Foo Dog",
  432. parents: ["mammal"]
  433. },
  434. "elephant": {
  435. name: "Elephant",
  436. parents: ["mammal"]
  437. },
  438. "eagle": {
  439. name: "Eagle",
  440. parents: ["bird-of-prey"]
  441. },
  442. "cow": {
  443. name: "Cow",
  444. parents: ["mammal"]
  445. },
  446. "crocodile": {
  447. name: "Crocodile",
  448. parents: ["reptile"]
  449. },
  450. "borzoi": {
  451. name: "Borzoi",
  452. parents: ["dog"]
  453. },
  454. "snake": {
  455. name: "Snake",
  456. parents: ["reptile"]
  457. },
  458. "horned-bush-viper": {
  459. name: "Horned Bush Viper",
  460. parents: ["viper"]
  461. },
  462. "cobra": {
  463. name: "Cobra",
  464. parents: ["snake"]
  465. },
  466. "harpy-eagle": {
  467. name: "Harpy Eagle",
  468. parents: ["eagle"]
  469. },
  470. "raptor": {
  471. name: "Raptor",
  472. parents: ["dinosaur"]
  473. },
  474. "dinosaur": {
  475. name: "Dinosaur",
  476. parents: ["saurian"]
  477. },
  478. "saurian": {
  479. name: "Saurian",
  480. parents: ["lizard"]
  481. },
  482. "veilhound": {
  483. name: "Veilhound",
  484. parents: ["hellhound"]
  485. },
  486. "hellhound": {
  487. name: "Hellhound",
  488. parents: ["canine", "demon"]
  489. },
  490. "insect": {
  491. name: "Insect",
  492. parents: ["animal"]
  493. },
  494. "beetle": {
  495. name: "Beetle",
  496. parents: ["insect"]
  497. },
  498. "moth": {
  499. name: "Moth",
  500. parents: ["insect"]
  501. },
  502. "eastern-dragon": {
  503. name: "Eastern Dragon",
  504. parents: ["dragon"]
  505. },
  506. "jaguar": {
  507. name: "Jaguar",
  508. parents: ["cat"]
  509. },
  510. "horse": {
  511. name: "Horse",
  512. parents: ["mammal"]
  513. },
  514. "sergal": {
  515. name: "Sergal",
  516. parents: ["mammal", "avian", "vilous"]
  517. },
  518. "gryphon": {
  519. name: "Gryphon",
  520. parents: ["lion", "eagle"]
  521. },
  522. "robot": {
  523. name: "Robot",
  524. parents: ["machine"]
  525. },
  526. "medihound": {
  527. name: "Medihound",
  528. parents: ["robot", "dog"]
  529. },
  530. "sylveon": {
  531. name: "Sylveon",
  532. parents: ["pokemon"]
  533. },
  534. "catgirl": {
  535. name: "Catgirl",
  536. parents: ["mammal"]
  537. },
  538. "cowgirl": {
  539. name: "Cowgirl",
  540. parents: ["mammal"]
  541. },
  542. "pony": {
  543. name: "Pony",
  544. parents: ["horse"]
  545. },
  546. "rabbit": {
  547. name: "Rabbit",
  548. parents: ["leporidae"]
  549. },
  550. "fennec-fox": {
  551. name: "Fennec Fox",
  552. parents: ["fox"]
  553. },
  554. "azodian": {
  555. name: "Azodian",
  556. parents: ["mouse"]
  557. },
  558. "shiba-inu": {
  559. name: "Shiba Inu",
  560. parents: ["dog"]
  561. },
  562. "changeling": {
  563. name: "Changeling",
  564. parents: ["insect"]
  565. },
  566. "cheetah": {
  567. name: "Cheetah",
  568. parents: ["cat"]
  569. },
  570. "golden-jackal": {
  571. name: "Golden Jackal",
  572. parents: ["jackal"]
  573. },
  574. "manectric": {
  575. name: "Manectric",
  576. parents: ["pokemon", "wolf"]
  577. },
  578. "rat": {
  579. name: "Rat",
  580. parents: ["rodent"]
  581. },
  582. "rodent": {
  583. name: "Rodent",
  584. parents: ["mammal"]
  585. },
  586. "octocoon": {
  587. name: "Octocoon",
  588. parents: ["raccoon", "octopus"]
  589. },
  590. "octopus": {
  591. name: "Octopus",
  592. parents: ["fish"]
  593. },
  594. "werewolf": {
  595. name: "Werewolf",
  596. parents: ["wolf", "werebeast"]
  597. },
  598. "werebeast": {
  599. name: "Werebeast",
  600. parents: ["monster"]
  601. },
  602. "meerkat": {
  603. name: "Meerkat",
  604. parents: ["mammal"]
  605. },
  606. "human": {
  607. name: "Human",
  608. parents: ["mammal", "humanoid"]
  609. },
  610. "geth": {
  611. name: "Geth",
  612. parents: ["android"]
  613. },
  614. "husky": {
  615. name: "Husky",
  616. parents: ["dog"]
  617. },
  618. "long-eared-bat": {
  619. name: "Long Eared Bat",
  620. parents: ["bat"]
  621. },
  622. "lizard": {
  623. name: "Lizard",
  624. parents: ["reptile"]
  625. },
  626. "salamander": {
  627. name: "Salamander",
  628. parents: ["lizard"]
  629. },
  630. "chameleon": {
  631. name: "Chameleon",
  632. parents: ["lizard"]
  633. },
  634. "gecko": {
  635. name: "Gecko",
  636. parents: ["lizard"]
  637. },
  638. "kobold": {
  639. name: "Kobold",
  640. parents: ["reptile"]
  641. },
  642. "charizard": {
  643. name: "Charizard",
  644. parents: ["pokemon", "dragon"]
  645. },
  646. "lugia": {
  647. name: "Lugia",
  648. parents: ["pokemon", "avian"]
  649. },
  650. "cerberus": {
  651. name: "Cerberus",
  652. parents: ["dog"]
  653. },
  654. "tyrantrum": {
  655. name: "Tyrantrum",
  656. parents: ["pokemon"]
  657. },
  658. "lemur": {
  659. name: "Lemur",
  660. parents: ["mammal"]
  661. },
  662. "kelpie": {
  663. name: "Kelpie",
  664. parents: ["horse", "monster"]
  665. },
  666. "labrador": {
  667. name: "Labrador",
  668. parents: ["dog"]
  669. },
  670. "sylveon": {
  671. name: "Sylveon",
  672. parents: ["eeveelution"]
  673. },
  674. "eeveelution": {
  675. name: "Eeveelution",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "polar-bear": {
  679. name: "Polar Bear",
  680. parents: ["bear"]
  681. },
  682. "bear": {
  683. name: "Bear",
  684. parents: ["mammal"]
  685. },
  686. "absol": {
  687. name: "Absol",
  688. parents: ["pokemon", "cat"]
  689. },
  690. "wolver": {
  691. name: "Wolver",
  692. parents: ["mammal"]
  693. },
  694. "rottweiler": {
  695. name: "Rottweiler",
  696. parents: ["dog"]
  697. },
  698. "zebra": {
  699. name: "Zebra",
  700. parents: ["horse"]
  701. },
  702. "yoshi": {
  703. name: "Yoshi",
  704. parents: ["dinosaur"]
  705. },
  706. "lynx": {
  707. name: "Lynx",
  708. parents: ["cat"]
  709. },
  710. "unknown": {
  711. name: "Unknown",
  712. parents: []
  713. },
  714. "thylacine": {
  715. name: "Thylacine",
  716. parents: ["mammal"]
  717. },
  718. "gabumon": {
  719. name: "Gabumon",
  720. parents: ["digimon"]
  721. },
  722. "border-collie": {
  723. name: "Border Collie",
  724. parents: ["dog"]
  725. },
  726. "imp": {
  727. name: "Imp",
  728. parents: ["demon"]
  729. },
  730. "kangaroo": {
  731. name: "Kangaroo",
  732. parents: ["marsupial"]
  733. },
  734. "renamon": {
  735. name: "Renamon",
  736. parents: ["digimon", "fox"]
  737. },
  738. "candy-orca-dragon": {
  739. name: "Candy Orca Dragon",
  740. parents: ["fish", "dragon", "candy"]
  741. },
  742. "sabertooth-tiger": {
  743. name: "Sabertooth Tiger",
  744. parents: ["cat"]
  745. },
  746. "espurr": {
  747. name: "Espurr",
  748. parents: ["pokemon", "cat"]
  749. },
  750. "otter": {
  751. name: "Otter",
  752. parents: ["mustelid"]
  753. },
  754. "elemental": {
  755. name: "Elemental",
  756. parents: ["mammal"]
  757. },
  758. "mew": {
  759. name: "Mew",
  760. parents: ["pokemon"]
  761. },
  762. "goodra": {
  763. name: "Goodra",
  764. parents: ["pokemon"]
  765. },
  766. "fairy": {
  767. name: "Fairy",
  768. parents: ["magical"]
  769. },
  770. "typhlosion": {
  771. name: "Typhlosion",
  772. parents: ["pokemon"]
  773. },
  774. "magical": {
  775. name: "Magical",
  776. parents: []
  777. },
  778. "xenomorph": {
  779. name: "Xenomorph",
  780. parents: ["monster", "alien"]
  781. },
  782. "charr": {
  783. name: "Charr",
  784. parents: ["cat"]
  785. },
  786. "siberian-husky": {
  787. name: "Siberian Husky",
  788. parents: ["husky"]
  789. },
  790. "alligator": {
  791. name: "Alligator",
  792. parents: ["reptile"]
  793. },
  794. "bernese-mountain-dog": {
  795. name: "Bernese Mountain Dog",
  796. parents: ["dog"]
  797. },
  798. "reshiram": {
  799. name: "Reshiram",
  800. parents: ["pokemon", "dragon"]
  801. },
  802. "grizzly-bear": {
  803. name: "Grizzly Bear",
  804. parents: ["bear"]
  805. },
  806. "water-monitor": {
  807. name: "Water Monitor",
  808. parents: ["lizard"]
  809. },
  810. "banchofossa": {
  811. name: "Banchofossa",
  812. parents: ["mammal"]
  813. },
  814. "kirin": {
  815. name: "Kirin",
  816. parents: ["monster"]
  817. },
  818. "quilava": {
  819. name: "Quilava",
  820. parents: ["pokemon"]
  821. },
  822. "seviper": {
  823. name: "Seviper",
  824. parents: ["pokemon", "viper"]
  825. },
  826. "flying-fox": {
  827. name: "Flying Fox",
  828. parents: ["bat"]
  829. },
  830. "keynain": {
  831. name: "Keynain",
  832. parents: ["avian"]
  833. },
  834. "lucario": {
  835. name: "Lucario",
  836. parents: ["pokemon", "jackal"]
  837. },
  838. "siamese-cat": {
  839. name: "Siamese Cat",
  840. parents: ["cat"]
  841. },
  842. "spider": {
  843. name: "Spider",
  844. parents: ["insect"]
  845. },
  846. "samurott": {
  847. name: "Samurott",
  848. parents: ["pokemon", "otter"]
  849. },
  850. "megalodon": {
  851. name: "Megalodon",
  852. parents: ["shark"]
  853. },
  854. "unicorn": {
  855. name: "Unicorn",
  856. parents: ["horse"]
  857. },
  858. "greninja": {
  859. name: "Greninja",
  860. parents: ["pokemon", "frog"]
  861. },
  862. "water-dragon": {
  863. name: "Water Dragon",
  864. parents: ["dragon"]
  865. },
  866. "cross-fox": {
  867. name: "Cross Fox",
  868. parents: ["fox"]
  869. },
  870. "synth": {
  871. name: "Synth",
  872. parents: ["machine"]
  873. },
  874. "construct": {
  875. name: "Construct",
  876. parents: []
  877. },
  878. "mexican-wolf": {
  879. name: "Mexican Wolf",
  880. parents: ["wolf"]
  881. },
  882. "leopard": {
  883. name: "Leopard",
  884. parents: ["cat"]
  885. },
  886. "pig": {
  887. name: "Pig",
  888. parents: ["mammal"]
  889. },
  890. "ampharos": {
  891. name: "Ampharos",
  892. parents: ["pokemon", "sheep"]
  893. },
  894. "orca": {
  895. name: "Orca",
  896. parents: ["fish"]
  897. },
  898. "lycanroc": {
  899. name: "Lycanroc",
  900. parents: ["pokemon", "wolf"]
  901. },
  902. "surkanu": {
  903. name: "Surkanu",
  904. parents: ["monster"]
  905. },
  906. "seal": {
  907. name: "Seal",
  908. parents: ["mammal"]
  909. },
  910. "keldeo": {
  911. name: "Keldeo",
  912. parents: ["pokemon"]
  913. },
  914. "great-dane": {
  915. name: "Great Dane",
  916. parents: ["dog"]
  917. },
  918. "black-backed-jackal": {
  919. name: "Black Backed Jackal",
  920. parents: ["jackal"]
  921. },
  922. "sheep": {
  923. name: "Sheep",
  924. parents: ["mammal"]
  925. },
  926. "leopard-seal": {
  927. name: "Leopard Seal",
  928. parents: ["seal"]
  929. },
  930. "zoroark": {
  931. name: "Zoroark",
  932. parents: ["pokemon", "fox"]
  933. },
  934. "maned-wolf": {
  935. name: "Maned Wolf",
  936. parents: ["canine"]
  937. },
  938. "dracha": {
  939. name: "Dracha",
  940. parents: ["dragon"]
  941. },
  942. "wolxi": {
  943. name: "Wolxi",
  944. parents: ["mammal", "alien"]
  945. },
  946. "dratini": {
  947. name: "Dratini",
  948. parents: ["pokemon", "dragon"]
  949. },
  950. "skaven": {
  951. name: "Skaven",
  952. parents: ["rat"]
  953. },
  954. "mongoose": {
  955. name: "Mongoose",
  956. parents: ["mammal"]
  957. },
  958. "lopunny": {
  959. name: "Lopunny",
  960. parents: ["pokemon", "rabbit"]
  961. },
  962. "feraligatr": {
  963. name: "Feraligatr",
  964. parents: ["pokemon", "alligator"]
  965. },
  966. "houndoom": {
  967. name: "Houndoom",
  968. parents: ["pokemon", "dog"]
  969. },
  970. "protogen": {
  971. name: "Protogen",
  972. parents: ["machine"]
  973. },
  974. "saint-bernard": {
  975. name: "Saint Bernard",
  976. parents: ["dog"]
  977. },
  978. "crow": {
  979. name: "Crow",
  980. parents: ["corvid"]
  981. },
  982. "delphox": {
  983. name: "Delphox",
  984. parents: ["pokemon", "fox"]
  985. },
  986. "moose": {
  987. name: "Moose",
  988. parents: ["mammal"]
  989. },
  990. "joraxian": {
  991. name: "Joraxian",
  992. parents: ["monster", "canine", "demon"]
  993. },
  994. "nimbat": {
  995. name: "Nimbat",
  996. parents: ["mammal"]
  997. },
  998. "aardwolf": {
  999. name: "Aardwolf",
  1000. parents: ["canine"]
  1001. },
  1002. "fluudrani": {
  1003. name: "Fluudrani",
  1004. parents: ["animal"]
  1005. },
  1006. "arcanine": {
  1007. name: "Arcanine",
  1008. parents: ["pokemon", "dog"]
  1009. },
  1010. "inteleon": {
  1011. name: "Inteleon",
  1012. parents: ["pokemon", "fish"]
  1013. },
  1014. "ninetales": {
  1015. name: "Ninetales",
  1016. parents: ["pokemon", "kitsune"]
  1017. },
  1018. "tigrex": {
  1019. name: "Tigrex",
  1020. parents: ["wyvern", "monster-hunter"]
  1021. },
  1022. "zorua": {
  1023. name: "Zorua",
  1024. parents: ["pokemon", "fox"]
  1025. },
  1026. "vulpix": {
  1027. name: "Vulpix",
  1028. parents: ["pokemon", "fox"]
  1029. },
  1030. "barghest": {
  1031. name: "Barghest",
  1032. parents: ["monster"]
  1033. },
  1034. "gray-wolf": {
  1035. name: "Gray Wolf",
  1036. parents: ["wolf"]
  1037. },
  1038. "ruppells-fox": {
  1039. name: "Rüppell's Fox",
  1040. parents: ["fox"]
  1041. },
  1042. "bull-terrier": {
  1043. name: "Bull Terrier",
  1044. parents: ["dog"]
  1045. },
  1046. "european-honey-buzzard": {
  1047. name: "European Honey Buzzard",
  1048. parents: ["avian"]
  1049. },
  1050. "t-rex": {
  1051. name: "Tyrannosaurus Rex",
  1052. parents: ["theropod"]
  1053. },
  1054. "mactarian": {
  1055. name: "Mactarian",
  1056. parents: ["shark", "monster"]
  1057. },
  1058. "mewtwo-y": {
  1059. name: "Mewtwo Y",
  1060. parents: ["mewtwo"]
  1061. },
  1062. "mewtwo": {
  1063. name: "Mewtwo",
  1064. parents: ["pokemon"]
  1065. },
  1066. "eevee": {
  1067. name: "Eevee",
  1068. parents: ["eeveelution"]
  1069. },
  1070. "mienshao": {
  1071. name: "Mienshao",
  1072. parents: ["pokemon"]
  1073. },
  1074. "sugar-glider": {
  1075. name: "Sugar Glider",
  1076. parents: ["opossum"]
  1077. },
  1078. "spectral-bat": {
  1079. name: "Spectral Bat",
  1080. parents: ["bat"]
  1081. },
  1082. "scolipede": {
  1083. name: "Scolipede",
  1084. parents: ["pokemon", "insect"]
  1085. },
  1086. "jackalope": {
  1087. name: "Jackalope",
  1088. parents: ["rabbit", "antelope"]
  1089. },
  1090. "caracal": {
  1091. name: "Caracal",
  1092. parents: ["cat"]
  1093. },
  1094. "stoat": {
  1095. name: "Stoat",
  1096. parents: ["mammal"]
  1097. },
  1098. "african-golden-cat": {
  1099. name: "African Golden Cat",
  1100. parents: ["cat"]
  1101. },
  1102. "gigantosaurus": {
  1103. name: "Gigantosaurus",
  1104. parents: ["dinosaur"]
  1105. },
  1106. "zorgoia": {
  1107. name: "Zorgoia",
  1108. parents: ["mammal"]
  1109. },
  1110. "monitor-lizard": {
  1111. name: "Monitor Lizard",
  1112. parents: ["lizard"]
  1113. },
  1114. "ziralkia": {
  1115. name: "Ziralkia",
  1116. parents: ["mammal"]
  1117. },
  1118. "kiiasi": {
  1119. name: "Kiiasi",
  1120. parents: ["animal"]
  1121. },
  1122. "synx": {
  1123. name: "Synx",
  1124. parents: ["monster"]
  1125. },
  1126. "panther": {
  1127. name: "Panther",
  1128. parents: ["cat"]
  1129. },
  1130. "azumarill": {
  1131. name: "Azumarill",
  1132. parents: ["pokemon"]
  1133. },
  1134. "river-snaptail": {
  1135. name: "River Snaptail",
  1136. parents: ["otter", "crocodile"]
  1137. },
  1138. "great-blue-heron": {
  1139. name: "Great Blue Heron",
  1140. parents: ["avian"]
  1141. },
  1142. "smeargle": {
  1143. name: "Smeargle",
  1144. parents: ["pokemon"]
  1145. },
  1146. "vendeilen": {
  1147. name: "Vendeilen",
  1148. parents: ["monster"]
  1149. },
  1150. "ventura": {
  1151. name: "Ventura",
  1152. parents: ["canine"]
  1153. },
  1154. "clouded-leopard": {
  1155. name: "Clouded Leopard",
  1156. parents: ["leopard"]
  1157. },
  1158. "argonian": {
  1159. name: "Argonian",
  1160. parents: ["lizard"]
  1161. },
  1162. "salazzle": {
  1163. name: "Salazzle",
  1164. parents: ["pokemon", "lizard"]
  1165. },
  1166. "je-stoff-drachen": {
  1167. name: "Je-Stoff Drachen",
  1168. parents: ["dragon"]
  1169. },
  1170. "finnish-spitz-dog": {
  1171. name: "Finnish Spitz Dog",
  1172. parents: ["dog"]
  1173. },
  1174. "gray-fox": {
  1175. name: "Gray Fox",
  1176. parents: ["fox"]
  1177. },
  1178. "opossum": {
  1179. name: "Opossum",
  1180. parents: ["mammal"]
  1181. },
  1182. "antelope": {
  1183. name: "Antelope",
  1184. parents: ["mammal"]
  1185. },
  1186. "weavile": {
  1187. name: "Weavile",
  1188. parents: ["pokemon"]
  1189. },
  1190. "pikachu": {
  1191. name: "Pikachu",
  1192. parents: ["pokemon", "mouse"]
  1193. },
  1194. "grovyle": {
  1195. name: "Grovyle",
  1196. parents: ["pokemon", "plant"]
  1197. },
  1198. "sthara": {
  1199. name: "Sthara",
  1200. parents: ["snow-leopard", "reptile"]
  1201. },
  1202. "star-warrior": {
  1203. name: "Star Warrior",
  1204. parents: ["magical"]
  1205. },
  1206. "dragonoid": {
  1207. name: "Dragonoid",
  1208. parents: ["dragon"]
  1209. },
  1210. "suicune": {
  1211. name: "Suicune",
  1212. parents: ["pokemon"]
  1213. },
  1214. "vole": {
  1215. name: "Vole",
  1216. parents: ["mammal"]
  1217. },
  1218. "blaziken": {
  1219. name: "Blaziken",
  1220. parents: ["pokemon", "avian"]
  1221. },
  1222. "buizel": {
  1223. name: "Buizel",
  1224. parents: ["pokemon", "fish"]
  1225. },
  1226. "floatzel": {
  1227. name: "Floatzel",
  1228. parents: ["pokemon", "fish"]
  1229. },
  1230. "umok": {
  1231. name: "Umok",
  1232. parents: ["avian"]
  1233. },
  1234. "sea-monster": {
  1235. name: "Sea Monster",
  1236. parents: ["monster", "fish"]
  1237. },
  1238. "egyptian-vulture": {
  1239. name: "Egyptian Vulture",
  1240. parents: ["avian"]
  1241. },
  1242. "doberman": {
  1243. name: "Doberman",
  1244. parents: ["dog"]
  1245. },
  1246. "zangoose": {
  1247. name: "Zangoose",
  1248. parents: ["pokemon", "mongoose"]
  1249. },
  1250. "mongoose": {
  1251. name: "Mongoose",
  1252. parents: ["mammal"]
  1253. },
  1254. "wickerbeast": {
  1255. name: "Wickerbeast",
  1256. parents: ["monster"]
  1257. },
  1258. "zenari": {
  1259. name: "Zenari",
  1260. parents: ["lizard"]
  1261. },
  1262. "plant": {
  1263. name: "Plant",
  1264. parents: []
  1265. },
  1266. "raskatox": {
  1267. name: "Raskatox",
  1268. parents: ["raccoon", "skunk", "cat", "fox"]
  1269. },
  1270. "mikromare": {
  1271. name: "mikromare",
  1272. parents: ["alien"]
  1273. },
  1274. "alien": {
  1275. name: "Alien",
  1276. parents: ["animal"]
  1277. },
  1278. "deity": {
  1279. name: "Deity",
  1280. parents: []
  1281. },
  1282. "skarlan": {
  1283. name: "Skarlan",
  1284. parents: ["slug", "dragon"]
  1285. },
  1286. "slug": {
  1287. name: "Slug",
  1288. parents: ["mollusk"]
  1289. },
  1290. "mollusk": {
  1291. name: "Mollusk",
  1292. parents: ["animal"]
  1293. },
  1294. "chimera": {
  1295. name: "Chimera",
  1296. parents: ["monster"]
  1297. },
  1298. "gestalt": {
  1299. name: "Gestalt",
  1300. parents: ["construct"]
  1301. },
  1302. "mimic": {
  1303. name: "Mimic",
  1304. parents: ["monster"]
  1305. },
  1306. "calico-rat": {
  1307. name: "Calico Rat",
  1308. parents: ["rat"]
  1309. },
  1310. "panda": {
  1311. name: "Panda",
  1312. parents: ["mammal"]
  1313. },
  1314. "oni": {
  1315. name: "Oni",
  1316. parents: ["monster"]
  1317. },
  1318. "pegasus": {
  1319. name: "Pegasus",
  1320. parents: ["horse"]
  1321. },
  1322. "vulpera": {
  1323. name: "Vulpera",
  1324. parents: ["fennec-fox"]
  1325. },
  1326. "ceratosaurus": {
  1327. name: "Ceratosaurus",
  1328. parents: ["dinosaur"]
  1329. },
  1330. "nykur": {
  1331. name: "Nykur",
  1332. parents: ["horse", "monster"]
  1333. },
  1334. "giraffe": {
  1335. name: "Giraffe",
  1336. parents: ["mammal"]
  1337. },
  1338. "tauren": {
  1339. name: "Tauren",
  1340. parents: ["cow"]
  1341. },
  1342. "draconi": {
  1343. name: "Draconi",
  1344. parents: ["alien", "cat", "cyborg"]
  1345. },
  1346. "dire-wolf": {
  1347. name: "Dire Wolf",
  1348. parents: ["wolf"]
  1349. },
  1350. "ferromorph": {
  1351. name: "Ferromorph",
  1352. parents: ["construct"]
  1353. },
  1354. "meowth": {
  1355. name: "Meowth",
  1356. parents: ["cat", "pokemon"]
  1357. },
  1358. "pavodragon": {
  1359. name: "Pavodragon",
  1360. parents: ["dragon"]
  1361. },
  1362. "aaltranae": {
  1363. name: "Aaltranae",
  1364. parents: ["dragon"]
  1365. },
  1366. "cyborg": {
  1367. name: "Cyborg",
  1368. parents: ["machine"]
  1369. },
  1370. "draptor": {
  1371. name: "Draptor",
  1372. parents: ["dragon"]
  1373. },
  1374. "candy": {
  1375. name: "Candy",
  1376. parents: []
  1377. },
  1378. "drenath": {
  1379. name: "Drenath",
  1380. parents: ["dragon", "snake", "rabbit"]
  1381. },
  1382. "coyju": {
  1383. name: "Coyju",
  1384. parents: ["coyote", "kaiju"]
  1385. },
  1386. "kaiju": {
  1387. name: "Kaiju",
  1388. parents: ["monster"]
  1389. },
  1390. "nickit": {
  1391. name: "Nickit",
  1392. parents: ["pokemon", "cat"]
  1393. },
  1394. "lopunny": {
  1395. name: "Lopunny",
  1396. parents: ["pokemon", "rabbit"]
  1397. },
  1398. "korean-jindo-dog": {
  1399. name: "Korean Jindo Dog",
  1400. parents: ["dog"]
  1401. },
  1402. "naga": {
  1403. name: "Naga",
  1404. parents: ["snake", "monster"]
  1405. },
  1406. "undead": {
  1407. name: "Undead",
  1408. parents: ["monster"]
  1409. },
  1410. "whale": {
  1411. name: "Whale",
  1412. parents: ["fish"]
  1413. },
  1414. "gelato-bee": {
  1415. name: "Gelato Bee",
  1416. parents: ["bee"]
  1417. },
  1418. "bee": {
  1419. name: "Bee",
  1420. parents: ["insect"]
  1421. },
  1422. "gardevoir": {
  1423. name: "Gardevoir",
  1424. parents: ["pokemon"]
  1425. },
  1426. "ant": {
  1427. name: "Ant",
  1428. parents: ["insect"]
  1429. },
  1430. "frog": {
  1431. name: "Frog",
  1432. parents: ["amphibian"]
  1433. },
  1434. "amphibian": {
  1435. name: "Amphibian",
  1436. parents: ["animal", "aquatic"]
  1437. },
  1438. "pangolin": {
  1439. name: "Pangolin",
  1440. parents: ["mammal"]
  1441. },
  1442. "uragi'viidorn": {
  1443. name: "Uragi'viidorn",
  1444. parents: ["avian", "bear"]
  1445. },
  1446. "gryphdelphais": {
  1447. name: "Gryphdelphais",
  1448. parents: ["dolphin", "gryphon"]
  1449. },
  1450. "plush": {
  1451. name: "Plush",
  1452. parents: ["construct"]
  1453. },
  1454. "draiger": {
  1455. name: "Draiger",
  1456. parents: ["dragon","tiger"]
  1457. },
  1458. "foxsky": {
  1459. name: "Foxsky",
  1460. parents: ["fox", "husky"]
  1461. },
  1462. "umbreon": {
  1463. name: "Umbreon",
  1464. parents: ["eeveelution"]
  1465. },
  1466. "slime-dragon": {
  1467. name: "Slime Dragon",
  1468. parents: ["dragon", "goo"]
  1469. },
  1470. "enderman": {
  1471. name: "Enderman",
  1472. parents: ["monster"]
  1473. },
  1474. "gremlin": {
  1475. name: "Gremlin",
  1476. parents: ["monster"]
  1477. },
  1478. "dragonsune": {
  1479. name: "Dragonsune",
  1480. parents: ["dragon", "kitsune"]
  1481. },
  1482. "ghost": {
  1483. name: "Ghost",
  1484. parents: ["supernatural"]
  1485. },
  1486. "false-vampire-bat": {
  1487. name: "False Vampire Bat",
  1488. parents: ["bat"]
  1489. },
  1490. "succubus": {
  1491. name: "Succubus",
  1492. parents: ["demon"]
  1493. },
  1494. "mia": {
  1495. name: "Mia",
  1496. parents: ["canine"]
  1497. },
  1498. "rainbow": {
  1499. name: "Rainbow",
  1500. parents: ["monster"]
  1501. },
  1502. "solgaleo": {
  1503. name: "Solgaleo",
  1504. parents: ["pokemon"]
  1505. },
  1506. "lucent-nargacuga": {
  1507. name: "Lucent Nargacuga",
  1508. parents: ["nargacuga"]
  1509. },
  1510. "monster-hunter": {
  1511. name: "Monster Hunter",
  1512. parents: ["monster", "video-games"]
  1513. },
  1514. "leviathan": {
  1515. "name": "Leviathan",
  1516. "url": "sea-monster"
  1517. },
  1518. "bull": {
  1519. name: "Bull",
  1520. parents: ["mammal"]
  1521. },
  1522. "tanuki": {
  1523. name: "Tanuki",
  1524. parents: ["monster"]
  1525. },
  1526. "chakat": {
  1527. name: "Chakat",
  1528. parents: ["cat"]
  1529. },
  1530. "hydra": {
  1531. name: "Hydra",
  1532. parents: ["monster"]
  1533. },
  1534. "zigzagoon": {
  1535. name: "Zigzagoon",
  1536. parents: ["raccoon", "pokemon"]
  1537. },
  1538. "vulture": {
  1539. name: "Vulture",
  1540. parents: ["avian"]
  1541. },
  1542. "eastern-dragon": {
  1543. name: "Eastern Dragon",
  1544. parents: ["dragon"]
  1545. },
  1546. "gryffon": {
  1547. name: "Gryffon",
  1548. parents: ["phoenix", "red-panda"]
  1549. },
  1550. "amtsvane": {
  1551. name: "Amtsvane",
  1552. parents: ["reptile"]
  1553. },
  1554. "kigavi": {
  1555. name: "Kigavi",
  1556. parents: ["avian"]
  1557. },
  1558. "turian": {
  1559. name: "Turian",
  1560. parents: ["avian"]
  1561. },
  1562. "zeraora": {
  1563. name: "Zeraora",
  1564. parents: ["pokemon", "cat"]
  1565. },
  1566. "sandshrew": {
  1567. name: "Sandshrew",
  1568. parents: ["pokemon", "pangolin"]
  1569. },
  1570. "valais-blacknose-sheep": {
  1571. name: "Valais Blacknose Sheep",
  1572. parents: ["sheep"]
  1573. },
  1574. "novaleit": {
  1575. name: "Novaleit",
  1576. parents: ["mammal"]
  1577. },
  1578. "dunnoh": {
  1579. name: "Dunnoh",
  1580. parents: ["mammal"]
  1581. },
  1582. "lunaral-dragon": {
  1583. name: "Lunaral Dragon",
  1584. parents: ["dragon"]
  1585. },
  1586. "arctic-wolf": {
  1587. name: "Arctic Wolf",
  1588. parents: ["wolf"]
  1589. },
  1590. "donkey": {
  1591. name: "Donkey",
  1592. parents: ["horse"]
  1593. },
  1594. "chinchilla": {
  1595. name: "Chinchilla",
  1596. parents: ["rodent"]
  1597. },
  1598. "felkin": {
  1599. name: "Felkin",
  1600. parents: ["dragon"]
  1601. },
  1602. "tykeriel": {
  1603. name: "Tykeriel",
  1604. parents: ["avian"]
  1605. },
  1606. "folf": {
  1607. name: "Folf",
  1608. parents: ["fox", "wolf"]
  1609. },
  1610. "pooltoy": {
  1611. name: "Pooltoy",
  1612. parents: ["construct"]
  1613. },
  1614. "demi": {
  1615. name: "Demi",
  1616. parents: ["human"]
  1617. },
  1618. "stegosaurus": {
  1619. name: "Stegosaurus",
  1620. parents: ["dinosaur"]
  1621. },
  1622. "computer-virus": {
  1623. name: "Computer Virus",
  1624. parents: ["program"]
  1625. },
  1626. "program": {
  1627. name: "Program",
  1628. parents: ["construct"]
  1629. },
  1630. "space-springhare": {
  1631. name: "Space Springhare",
  1632. parents: ["hare"]
  1633. },
  1634. "river-drake": {
  1635. name: "River Drake",
  1636. parents: ["dragon"]
  1637. },
  1638. "djinn": {
  1639. "name": "Djinn",
  1640. "url": "supernatural"
  1641. },
  1642. "supernatural": {
  1643. name: "Supernatural",
  1644. parents: ["monster"]
  1645. },
  1646. "grasshopper-mouse": {
  1647. name: "Grasshopper Mouse",
  1648. parents: ["mouse"]
  1649. },
  1650. "somali-cat": {
  1651. name: "Somali Cat",
  1652. parents: ["cat"]
  1653. },
  1654. "minccino": {
  1655. name: "Minccino",
  1656. parents: ["pokemon", "chinchilla"]
  1657. },
  1658. "pine-marten": {
  1659. name: "Pine Marten",
  1660. parents: ["marten"]
  1661. },
  1662. "marten": {
  1663. name: "Marten",
  1664. parents: ["mustelid"]
  1665. },
  1666. "mustelid": {
  1667. name: "Mustelid",
  1668. parents: ["mammal"]
  1669. },
  1670. "caribou": {
  1671. name: "Caribou",
  1672. parents: ["deer"]
  1673. },
  1674. "gnoll": {
  1675. name: "Gnoll",
  1676. parents: ["hyena", "monster"]
  1677. },
  1678. "peacekeeper": {
  1679. name: "Peacekeeper",
  1680. parents: ["human"]
  1681. },
  1682. "river-otter": {
  1683. name: "River Otter",
  1684. parents: ["otter"]
  1685. },
  1686. "dhole": {
  1687. name: "Dhole",
  1688. parents: ["canine"]
  1689. },
  1690. "springbok": {
  1691. name: "Springbok",
  1692. parents: ["antelope"]
  1693. },
  1694. "marsupial": {
  1695. name: "Marsupial",
  1696. parents: ["mammal"]
  1697. },
  1698. "townsend-big-eared-bat": {
  1699. name: "Townsend Big-eared Bat",
  1700. parents: ["bat"]
  1701. },
  1702. "squirrel": {
  1703. name: "Squirrel",
  1704. parents: ["rodent"]
  1705. },
  1706. "magpie": {
  1707. name: "Magpie",
  1708. parents: ["corvid"]
  1709. },
  1710. "civet": {
  1711. name: "Civet",
  1712. parents: ["feliform"]
  1713. },
  1714. "feliform": {
  1715. name: "Feliform",
  1716. parents: ["mammal"]
  1717. },
  1718. "tiefling": {
  1719. name: "Tiefling",
  1720. parents: ["devil"]
  1721. },
  1722. "devil": {
  1723. name: "Devil",
  1724. parents: ["supernatural"]
  1725. },
  1726. "sika-deer": {
  1727. name: "Sika Deer",
  1728. parents: ["deer"]
  1729. },
  1730. "vaporeon": {
  1731. name: "Vaporeon",
  1732. parents: ["eeveelution"]
  1733. },
  1734. "leafeon": {
  1735. name: "Leafeon",
  1736. parents: ["eeveelution"]
  1737. },
  1738. "jolteon": {
  1739. name: "Jolteon",
  1740. parents: ["eeveelution"]
  1741. },
  1742. "spireborn": {
  1743. name: "Spireborn",
  1744. parents: ["zorgoia"]
  1745. },
  1746. "vampire": {
  1747. name: "Vampire",
  1748. parents: ["monster"]
  1749. },
  1750. "extraplanar": {
  1751. name: "Extraplanar",
  1752. parents: []
  1753. },
  1754. "goo": {
  1755. name: "Goo",
  1756. parents: []
  1757. },
  1758. "skink": {
  1759. name: "Skink",
  1760. parents: ["lizard"]
  1761. },
  1762. "bat-eared-fox": {
  1763. name: "Bat-eared Fox",
  1764. parents: ["fox"]
  1765. },
  1766. "belted-kingfisher": {
  1767. name: "Belted Kingfisher",
  1768. parents: ["avian"]
  1769. },
  1770. "omnifalcon": {
  1771. name: "Omnifalcon",
  1772. parents: ["gryphon", "falcon", "harpy-eagle"]
  1773. },
  1774. "falcon": {
  1775. name: "Falcon",
  1776. parents: ["bird-of-prey"]
  1777. },
  1778. "avali": {
  1779. name: "Avali",
  1780. parents: ["avian", "alien"]
  1781. },
  1782. "arctic-fox": {
  1783. name: "Arctic Fox",
  1784. parents: ["fox"]
  1785. },
  1786. "snow-tiger": {
  1787. name: "Snow Tiger",
  1788. parents: ["tiger"]
  1789. },
  1790. "marble-fox": {
  1791. name: "Marble Fox",
  1792. parents: ["fox"]
  1793. },
  1794. "king-wickerbeast": {
  1795. name: "King Wickerbeast",
  1796. parents: ["wickerbeast"]
  1797. },
  1798. "wickerbeast": {
  1799. name: "Wickerbeast",
  1800. parents: ["mammal"]
  1801. },
  1802. "european-polecat": {
  1803. name: "European Polecat",
  1804. parents: ["polecat"]
  1805. },
  1806. "polecat": {
  1807. name: "Polecat",
  1808. parents: ["mustelid"]
  1809. },
  1810. "teshari": {
  1811. name: "Teshari",
  1812. parents: ["avian", "raptor"]
  1813. },
  1814. "alicorn": {
  1815. name: "Alicorn",
  1816. parents: ["horse"]
  1817. },
  1818. "atlas-moth": {
  1819. name: "Atlas Moth",
  1820. parents: ["moth"]
  1821. },
  1822. "owlbear": {
  1823. name: "Owlbear",
  1824. parents: ["owl", "bear", "monster"]
  1825. },
  1826. "owl": {
  1827. name: "Owl",
  1828. parents: ["avian"]
  1829. },
  1830. "silvertongue": {
  1831. name: "Silvertongue",
  1832. parents: ["reptile"]
  1833. },
  1834. "ahuizotl": {
  1835. name: "Ahuizotl",
  1836. parents: ["monster"]
  1837. },
  1838. "ender-dragon": {
  1839. name: "Ender Dragon",
  1840. parents: ["dragon"]
  1841. },
  1842. "bruhathkayosaurus": {
  1843. name: "Bruhathkayosaurus",
  1844. parents: ["sauropod"]
  1845. },
  1846. "sauropod": {
  1847. name: "Sauropod",
  1848. parents: ["dinosaur"]
  1849. },
  1850. "black-sable-antelope": {
  1851. name: "Black Sable Antelope",
  1852. parents: ["antelope"]
  1853. },
  1854. "slime": {
  1855. name: "Slime",
  1856. parents: ["goo"]
  1857. },
  1858. "utahraptor": {
  1859. name: "Utahraptor",
  1860. parents: ["raptor"]
  1861. },
  1862. "indian-giant-squirrel": {
  1863. name: "Indian Giant Squirrel",
  1864. parents: ["squirrel"]
  1865. },
  1866. "golden-retriever": {
  1867. name: "Golden Retriever",
  1868. parents: ["dog"]
  1869. },
  1870. "triceratops": {
  1871. name: "Triceratops",
  1872. parents: ["dinosaur"]
  1873. },
  1874. "drake": {
  1875. name: "Drake",
  1876. parents: ["dragon"]
  1877. },
  1878. "okapi": {
  1879. name: "Okapi",
  1880. parents: ["giraffe"]
  1881. },
  1882. "arctic-hare": {
  1883. name: "Arctic Hare",
  1884. parents: ["hare"]
  1885. },
  1886. "hare": {
  1887. name: "Hare",
  1888. parents: ["leporidae"]
  1889. },
  1890. "leporidae": {
  1891. name: "Leporidae",
  1892. parents: ["mammal"]
  1893. },
  1894. "leopard-gecko": {
  1895. name: "Leopard Gecko",
  1896. parents: ["gecko"]
  1897. },
  1898. "dreamspawn": {
  1899. name: "Dreamspawn",
  1900. parents: ["illusion"]
  1901. },
  1902. "illusion": {
  1903. name: "Illusion",
  1904. parents: []
  1905. },
  1906. "purrloin": {
  1907. name: "Purrloin",
  1908. parents: ["cat", "pokemon"]
  1909. },
  1910. "noivern": {
  1911. name: "Noivern",
  1912. parents: ["bat", "dragon", "pokemon"]
  1913. },
  1914. "hedgehog": {
  1915. name: "Hedgehog",
  1916. parents: ["mammal"]
  1917. },
  1918. "liger": {
  1919. name: "Liger",
  1920. parents: ["lion", "tiger", "hybrid"]
  1921. },
  1922. "hybrid": {
  1923. name: "Hybrid",
  1924. parents: []
  1925. },
  1926. "drider": {
  1927. name: "Drider",
  1928. parents: ["spider"]
  1929. },
  1930. "sabresune": {
  1931. name: "Sabresune",
  1932. parents: ["kitsune", "sabertooth-tiger"]
  1933. },
  1934. "ditto": {
  1935. name: "Ditto",
  1936. parents: ["pokemon", "goo"]
  1937. },
  1938. "amogus": {
  1939. name: "Amogus",
  1940. parents: ["deity"]
  1941. },
  1942. "ferret": {
  1943. name: "Ferret",
  1944. parents: ["mustelid"]
  1945. },
  1946. "guinea-pig": {
  1947. name: "Guinea Pig",
  1948. parents: ["rodent"]
  1949. },
  1950. "viper": {
  1951. name: "Viper",
  1952. parents: ["snake"]
  1953. },
  1954. "cinderace": {
  1955. name: "Cinderace",
  1956. parents: ["pokemon", "rabbit"]
  1957. },
  1958. "caudin": {
  1959. name: "Caudin",
  1960. parents: ["dragon"]
  1961. },
  1962. "red-winged-blackbird": {
  1963. name: "Red-Winged Blackbird",
  1964. parents: ["avian"]
  1965. },
  1966. "hooded-wheater": {
  1967. name: "Hooded Wheater",
  1968. parents: ["passerine"]
  1969. },
  1970. "passerine": {
  1971. name: "Passerine",
  1972. parents: ["avian"]
  1973. },
  1974. "gieeg": {
  1975. name: "Gieeg",
  1976. parents: ["alien"]
  1977. },
  1978. "ringtail": {
  1979. name: "Ringtail",
  1980. parents: ["raccoon"]
  1981. },
  1982. "hisuian-zoroark": {
  1983. name: "Hisuian Zoroark",
  1984. parents: ["zoroark", "hisuian"]
  1985. },
  1986. "hisuian": {
  1987. name: "Hisuian",
  1988. parents: ["regional-pokemon"]
  1989. },
  1990. "regional-pokemon": {
  1991. name: "Regional Pokemon",
  1992. parents: ["pokemon"]
  1993. },
  1994. "cybeast": {
  1995. name: "Cybeast",
  1996. parents: ["computer-virus"]
  1997. },
  1998. "javira-dragon": {
  1999. name: "Javira Dragon",
  2000. parents: ["dragon"]
  2001. },
  2002. "koopew": {
  2003. name: "Koopew",
  2004. parents: ["dragon", "alien"]
  2005. },
  2006. "nevrean": {
  2007. name: "Nevrean",
  2008. parents: ["avian", "vilous"]
  2009. },
  2010. "vilous": {
  2011. name: "Vilous Species",
  2012. parents: []
  2013. },
  2014. "titanoboa": {
  2015. name: "Titanoboa",
  2016. parents: ["snake"]
  2017. },
  2018. "raichu": {
  2019. name: "Raichu",
  2020. parents: ["pikachu"]
  2021. },
  2022. "taur": {
  2023. name: "Taur",
  2024. parents: []
  2025. },
  2026. "continental-giant-rabbit": {
  2027. name: "Continental Giant Rabbit",
  2028. parents: ["rabbit"]
  2029. },
  2030. "demigryph": {
  2031. name: "Demigryph",
  2032. parents: ["lion", "eagle"]
  2033. },
  2034. "bald-eagle": {
  2035. name: "Bald Eagle",
  2036. parents: ["eagle"]
  2037. },
  2038. "kestrel": {
  2039. name: "Kestrel",
  2040. parents: ["falcon"]
  2041. },
  2042. "mockingbird": {
  2043. name: "Mockingbird",
  2044. parents: ["songbird"]
  2045. },
  2046. "songbird": {
  2047. name: "Songbird",
  2048. parents: ["avian"]
  2049. },
  2050. "bird-of-prey": {
  2051. name: "Bird of Prey",
  2052. parents: ["avian"]
  2053. },
  2054. "marowak": {
  2055. name: "Marowak",
  2056. parents: ["pokemon", "reptile"]
  2057. },
  2058. "joltik": {
  2059. name: "Joltik",
  2060. parents: ["pokemon", "insect"]
  2061. },
  2062. "mink": {
  2063. name: "Mink",
  2064. parents: ["mustelid"]
  2065. },
  2066. "sandcat": {
  2067. name: "Sandcat",
  2068. parents: ["cat"]
  2069. },
  2070. "hrothgar": {
  2071. name: "Hrothgar",
  2072. parents: ["cat"]
  2073. },
  2074. "garchomp": {
  2075. name: "Garchomp",
  2076. parents: ["dragon", "pokemon"]
  2077. },
  2078. "nargacuga": {
  2079. name: "Nargacuga",
  2080. parents: ["monster-hunter"]
  2081. },
  2082. "sable": {
  2083. name: "Sable",
  2084. parents: ["marten"]
  2085. },
  2086. "deino": {
  2087. name: "Deino",
  2088. parents: ["pokemon", "dinosaur"]
  2089. },
  2090. "housecat": {
  2091. name: "Housecat",
  2092. parents: ["cat"]
  2093. },
  2094. "bombay-cat": {
  2095. name: "Bombay Cat",
  2096. parents: ["housecat"]
  2097. },
  2098. "maine-coon": {
  2099. name: "Maine Coon",
  2100. parents: ["housecat"]
  2101. },
  2102. "coelacanth": {
  2103. name: "Coelacanth",
  2104. parents: ["fish"]
  2105. },
  2106. "silvally": {
  2107. name: "Silvally",
  2108. parents: ["legendary-pokemon"]
  2109. },
  2110. "legendary-pokemon": {
  2111. name: "Legendary Pokemon",
  2112. parents: ["pokemon"]
  2113. },
  2114. "great-maccao": {
  2115. name: "Great Maccao",
  2116. parents: ["monster-hunter", "raptor"]
  2117. },
  2118. "shapeshifter": {
  2119. name: "shapeshifter",
  2120. parents: []
  2121. },
  2122. "obstagoon": {
  2123. name: "Obstagoon",
  2124. parents: ["zigzagoon"]
  2125. },
  2126. "thomsons-gazelle": {
  2127. name: "Thomsons Gazelle",
  2128. parents: ["gazelle"]
  2129. },
  2130. "gazelle": {
  2131. name: "Gazelle",
  2132. parents: ["antelope"]
  2133. },
  2134. "monkey": {
  2135. name: "Monkey",
  2136. parents: ["primate"]
  2137. },
  2138. "serval": {
  2139. name: "Serval",
  2140. parents: ["cat"]
  2141. },
  2142. "swampert": {
  2143. name: "Swampert",
  2144. parents: ["pokemon"]
  2145. },
  2146. "red-fox": {
  2147. name: "Red Fox",
  2148. parents: ["fox"]
  2149. },
  2150. "sliver": {
  2151. name: "Sliver",
  2152. parents: ["alien"]
  2153. },
  2154. "sergix": {
  2155. name: "Sergix",
  2156. parents: ["demon", "sergal", "phoenix"]
  2157. },
  2158. "behemoth": {
  2159. name: "Behemoth",
  2160. parents: ["monster", "dragon", "final-fantasy"]
  2161. },
  2162. "final-fantasy": {
  2163. name: "Final Fantasy",
  2164. parents: ["video-games"]
  2165. },
  2166. "video-games": {
  2167. name: "Video Games",
  2168. parents: []
  2169. },
  2170. "eastern-cottontail-rabbit": {
  2171. name: "Eastern Cottontail Rabbit",
  2172. parents: ["rabbit"]
  2173. },
  2174. "thresher-shark": {
  2175. name: "Thresher Shark",
  2176. parents: ["shark"]
  2177. },
  2178. "ai": {
  2179. name: "AI",
  2180. parents: []
  2181. },
  2182. "black-tip-reef-shark": {
  2183. name: "Black Tip Reef Shark",
  2184. parents: ["shark"]
  2185. },
  2186. "quetzalcoatlus-northropi": {
  2187. name: "Quetzalcoatlus Northropi",
  2188. parents: ["dinosaur"]
  2189. },
  2190. "snivy": {
  2191. name: "Snivy",
  2192. parents: ["pokemon", "snake"]
  2193. },
  2194. "nedynvor": {
  2195. name: "Nedynvor",
  2196. parents: ["avian"]
  2197. },
  2198. "marbled-polecat": {
  2199. name: "Marbled Polecat",
  2200. parents: ["polecat"]
  2201. },
  2202. "ape": {
  2203. name: "Ape",
  2204. parents: ["primate"]
  2205. },
  2206. "primate": {
  2207. name: "Primate",
  2208. parents: ["mammal"]
  2209. },
  2210. "kulve-taroth": {
  2211. name: "Kulve Taroth",
  2212. parents: ["monster-hunter", "dragon"]
  2213. },
  2214. "irthos": {
  2215. name: "Irthos",
  2216. parents: ["dragon"]
  2217. },
  2218. "furred-dragon": {
  2219. name: "Furred Dragon",
  2220. parents: ["dragon"]
  2221. },
  2222. "hippogriff": {
  2223. name: "Hippogriff",
  2224. parents: ["gryphon", "horse"]
  2225. },
  2226. "peregrine-falcon": {
  2227. name: "Peregrine Falcon",
  2228. parents: ["falcon"]
  2229. },
  2230. "deinonychus": {
  2231. name: "Deinonychus",
  2232. parents: ["theropod"]
  2233. },
  2234. "theropod": {
  2235. name: "Theropod",
  2236. parents: ["dinosaur"]
  2237. },
  2238. "chocobo": {
  2239. name: "Chocobo",
  2240. parents: ["avian"]
  2241. },
  2242. "stilio": {
  2243. name: "Stilio",
  2244. parents: ["snake"]
  2245. },
  2246. "kardox": {
  2247. name: "Kardox",
  2248. parents: ["wolf", "dragon", "horse"]
  2249. },
  2250. "food": {
  2251. name: "Food",
  2252. parents: ["object"]
  2253. },
  2254. "object": {
  2255. name: "Object",
  2256. parents: []
  2257. },
  2258. "honey-badger": {
  2259. name: "honey-badger",
  2260. parents: ["badger"]
  2261. },
  2262. "badger": {
  2263. name: "Badger",
  2264. parents: ["mustelid"]
  2265. },
  2266. "rattlesnake": {
  2267. name: "Rattlesnake",
  2268. parents: ["snake"]
  2269. },
  2270. "diamondback": {
  2271. name: "Diamondback",
  2272. parents: ["snake"]
  2273. },
  2274. "spidox": {
  2275. name: "Spidox",
  2276. parents: ["spider", "fox"]
  2277. },
  2278. "kodiak-bear": {
  2279. name: "Kodiak Bear",
  2280. parents: ["bear"]
  2281. },
  2282. "alurean": {
  2283. name: "Alurean",
  2284. parents: ["saurian", "aquatic", "alien"]
  2285. },
  2286. "aquatic": {
  2287. name: "Aquatic",
  2288. parents: []
  2289. },
  2290. "wyvern": {
  2291. name: "Wyvern",
  2292. parents: ["dragon"]
  2293. },
  2294. "catfish": {
  2295. name: "Catfish",
  2296. parents: ["fish"]
  2297. },
  2298. "vesempress": {
  2299. name: "Vesempress",
  2300. parents: ["vespiquen"]
  2301. },
  2302. "vespiquen": {
  2303. name: "Vespiquen",
  2304. parents: ["pokemon", "bee"]
  2305. },
  2306. "gaelterranian": {
  2307. name: "Gaelterranian",
  2308. parents: ["alien"]
  2309. },
  2310. "pistrogre": {
  2311. name: "Pistrogre",
  2312. parents: ["alien", "deity", "insect", "reptile"]
  2313. },
  2314. "komodo-dragon": {
  2315. name: "Komodo Dragon",
  2316. parents: ["lizard"]
  2317. },
  2318. "shiny": {
  2319. name: "Shiny",
  2320. parents: ["pokemon"]
  2321. },
  2322. "latex": {
  2323. name: "Latex",
  2324. parents: []
  2325. },
  2326. "praying-mantis": {
  2327. name: "Praying Mantis",
  2328. parents: ["insect"]
  2329. },
  2330. "espeon": {
  2331. name: "Espeon",
  2332. parents: ["eeveelution"]
  2333. },
  2334. "skullwolf": {
  2335. name: "Skullwolf",
  2336. parents: ["wolf", "skullmonster"]
  2337. },
  2338. "skulldragon": {
  2339. name: "Skulldragon",
  2340. parents: ["dragon", "skullmonster"]
  2341. },
  2342. "skullmonster": {
  2343. name: "Skullmonster",
  2344. parents: ["monster"]
  2345. },
  2346. "ferrin": {
  2347. name: "Ferrin",
  2348. parents: ["dragon"]
  2349. },
  2350. "rusty-spotted-cat": {
  2351. name: "Rusty-Spotted Cat",
  2352. parents: ["cat"]
  2353. },
  2354. "elf": {
  2355. name: "Elf",
  2356. parents: ["humanoid"]
  2357. },
  2358. "humanoid": {
  2359. name: "Humanoid",
  2360. parents: []
  2361. },
  2362. "allusus": {
  2363. name: "Allusus",
  2364. parents: ["humanoid"]
  2365. },
  2366. "saltwater-crocodile": {
  2367. name: "Saltwater Crocodile",
  2368. parents: ["crocodile"]
  2369. },
  2370. "eastern-grey-kangaroo": {
  2371. name: "Eastern Grey Kangaroo",
  2372. parents: ["kangaroo"]
  2373. },
  2374. }
  2375. //species
  2376. function getSpeciesInfo(speciesList) {
  2377. let result = new Set();
  2378. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2379. result.add(entry)
  2380. });
  2381. return Array.from(result);
  2382. };
  2383. function getSpeciesInfoHelper(species) {
  2384. if (!speciesData[species]) {
  2385. console.warn(species + " doesn't exist");
  2386. return [];
  2387. }
  2388. if (speciesData[species].parents) {
  2389. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2390. } else {
  2391. return [species];
  2392. }
  2393. }
  2394. characterMakers.push(() => makeCharacter(
  2395. {
  2396. name: "Fen",
  2397. species: ["crux"],
  2398. description: {
  2399. title: "Bio",
  2400. text: "Very furry. Sheds on everything."
  2401. },
  2402. tags: [
  2403. "anthro",
  2404. "goo"
  2405. ]
  2406. },
  2407. {
  2408. front: {
  2409. height: math.unit(12, "feet"),
  2410. weight: math.unit(2400, "lb"),
  2411. preyCapacity: math.unit(1, "people"),
  2412. name: "Front",
  2413. image: {
  2414. source: "./media/characters/fen/front.svg",
  2415. extra: 1804/1562,
  2416. bottom: 205/2009
  2417. },
  2418. extraAttributes: {
  2419. pawSize: {
  2420. name: "Paw Size",
  2421. power: 2,
  2422. type: "area",
  2423. base: math.unit(0.35, "m^2")
  2424. }
  2425. }
  2426. },
  2427. diving: {
  2428. height: math.unit(4.9, "meters"),
  2429. weight: math.unit(2400, "lb"),
  2430. name: "Diving",
  2431. image: {
  2432. source: "./media/characters/fen/diving.svg"
  2433. }
  2434. },
  2435. sleeby: {
  2436. height: math.unit(3.45, "meters"),
  2437. weight: math.unit(2400, "lb"),
  2438. name: "Sleeby",
  2439. image: {
  2440. source: "./media/characters/fen/sleeby.svg"
  2441. }
  2442. },
  2443. goo: {
  2444. height: math.unit(12, "feet"),
  2445. weight: math.unit(3600, "lb"),
  2446. volume: math.unit(1000, "liters"),
  2447. preyCapacity: math.unit(6, "people"),
  2448. name: "Goo",
  2449. image: {
  2450. source: "./media/characters/fen/goo.svg",
  2451. extra: 1307/1071,
  2452. bottom: 134/1441
  2453. }
  2454. },
  2455. horror: {
  2456. height: math.unit(13.6, "feet"),
  2457. weight: math.unit(2400, "lb"),
  2458. preyCapacity: math.unit(1, "people"),
  2459. name: "Horror",
  2460. image: {
  2461. source: "./media/characters/fen/horror.svg",
  2462. extra: 893/797,
  2463. bottom: 0/893
  2464. }
  2465. },
  2466. gooNsfw: {
  2467. height: math.unit(12, "feet"),
  2468. weight: math.unit(3750, "lb"),
  2469. volume: math.unit(1000, "liters"),
  2470. preyCapacity: math.unit(6, "people"),
  2471. name: "Goo (NSFW)",
  2472. image: {
  2473. source: "./media/characters/fen/goo-nsfw.svg",
  2474. extra: 1875/1734,
  2475. bottom: 122/1997
  2476. }
  2477. },
  2478. maw: {
  2479. height: math.unit(5.03, "feet"),
  2480. name: "Maw",
  2481. image: {
  2482. source: "./media/characters/fen/maw.svg"
  2483. }
  2484. },
  2485. gooCeiling: {
  2486. height: math.unit(6.6, "feet"),
  2487. weight: math.unit(3000, "lb"),
  2488. volume: math.unit(1000, "liters"),
  2489. preyCapacity: math.unit(6, "people"),
  2490. name: "Maw (Goo)",
  2491. image: {
  2492. source: "./media/characters/fen/goo-maw.svg"
  2493. }
  2494. },
  2495. paw: {
  2496. height: math.unit(3.77, "feet"),
  2497. name: "Paw",
  2498. image: {
  2499. source: "./media/characters/fen/paw.svg"
  2500. },
  2501. extraAttributes: {
  2502. "toeSize": {
  2503. name: "Toe Size",
  2504. power: 2,
  2505. type: "area",
  2506. base: math.unit(0.02875, "m^2")
  2507. },
  2508. "pawSize": {
  2509. name: "Paw Size",
  2510. power: 2,
  2511. type: "area",
  2512. base: math.unit(0.378, "m^2")
  2513. },
  2514. }
  2515. },
  2516. tail: {
  2517. height: math.unit(12.1, "feet"),
  2518. name: "Tail",
  2519. image: {
  2520. source: "./media/characters/fen/tail.svg"
  2521. }
  2522. },
  2523. tailFull: {
  2524. height: math.unit(12.1, "feet"),
  2525. name: "Full Tail",
  2526. image: {
  2527. source: "./media/characters/fen/tail-full.svg"
  2528. }
  2529. },
  2530. back: {
  2531. height: math.unit(12, "feet"),
  2532. weight: math.unit(2400, "lb"),
  2533. name: "Back",
  2534. image: {
  2535. source: "./media/characters/fen/back.svg",
  2536. },
  2537. info: {
  2538. description: {
  2539. mode: "append",
  2540. text: "\n\nHe is not currently looking at you."
  2541. }
  2542. }
  2543. },
  2544. full: {
  2545. height: math.unit(1.85, "meter"),
  2546. weight: math.unit(3200, "lb"),
  2547. preyCapacity: math.unit(3, "people"),
  2548. name: "Full",
  2549. image: {
  2550. source: "./media/characters/fen/full.svg",
  2551. extra: 1133/859,
  2552. bottom: 145/1278
  2553. },
  2554. info: {
  2555. description: {
  2556. mode: "append",
  2557. text: "\n\nMunch."
  2558. }
  2559. }
  2560. },
  2561. gooLounging: {
  2562. height: math.unit(4.53, "feet"),
  2563. weight: math.unit(3000, "lb"),
  2564. preyCapacity: math.unit(6, "people"),
  2565. name: "Goo (Lounging)",
  2566. image: {
  2567. source: "./media/characters/fen/goo-lounging.svg",
  2568. bottom: 116 / 613
  2569. }
  2570. },
  2571. lounging: {
  2572. height: math.unit(10.52, "feet"),
  2573. weight: math.unit(2400, "lb"),
  2574. name: "Lounging",
  2575. image: {
  2576. source: "./media/characters/fen/lounging.svg"
  2577. }
  2578. },
  2579. },
  2580. [
  2581. {
  2582. name: "Small",
  2583. height: math.unit(2.2428, "meter")
  2584. },
  2585. {
  2586. name: "Normal",
  2587. height: math.unit(12, "feet"),
  2588. default: true,
  2589. },
  2590. {
  2591. name: "Big",
  2592. height: math.unit(20, "feet")
  2593. },
  2594. {
  2595. name: "Minimacro",
  2596. height: math.unit(40, "feet"),
  2597. info: {
  2598. description: {
  2599. mode: "append",
  2600. text: "\n\nTOO DAMN BIG"
  2601. }
  2602. }
  2603. },
  2604. {
  2605. name: "Macro",
  2606. height: math.unit(100, "feet"),
  2607. info: {
  2608. description: {
  2609. mode: "append",
  2610. text: "\n\nTOO DAMN BIG"
  2611. }
  2612. }
  2613. },
  2614. {
  2615. name: "Megamacro",
  2616. height: math.unit(2, "miles")
  2617. },
  2618. {
  2619. name: "Gigamacro",
  2620. height: math.unit(10, "earths")
  2621. },
  2622. ]
  2623. ))
  2624. characterMakers.push(() => makeCharacter(
  2625. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2626. {
  2627. front: {
  2628. height: math.unit(183, "cm"),
  2629. weight: math.unit(80, "kg"),
  2630. name: "Front",
  2631. image: {
  2632. source: "./media/characters/sofia-fluttertail/front.svg",
  2633. bottom: 0.01,
  2634. extra: 2154 / 2081
  2635. }
  2636. },
  2637. frontAlt: {
  2638. height: math.unit(183, "cm"),
  2639. weight: math.unit(80, "kg"),
  2640. name: "Front (alt)",
  2641. image: {
  2642. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2643. }
  2644. },
  2645. back: {
  2646. height: math.unit(183, "cm"),
  2647. weight: math.unit(80, "kg"),
  2648. name: "Back",
  2649. image: {
  2650. source: "./media/characters/sofia-fluttertail/back.svg"
  2651. }
  2652. },
  2653. kneeling: {
  2654. height: math.unit(125, "cm"),
  2655. weight: math.unit(80, "kg"),
  2656. name: "Kneeling",
  2657. image: {
  2658. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2659. extra: 1033 / 977,
  2660. bottom: 23.7 / 1057
  2661. }
  2662. },
  2663. maw: {
  2664. height: math.unit(183 / 5, "cm"),
  2665. name: "Maw",
  2666. image: {
  2667. source: "./media/characters/sofia-fluttertail/maw.svg"
  2668. }
  2669. },
  2670. mawcloseup: {
  2671. height: math.unit(183 / 5 * 0.41, "cm"),
  2672. name: "Maw (Closeup)",
  2673. image: {
  2674. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2675. }
  2676. },
  2677. paws: {
  2678. height: math.unit(1.17, "feet"),
  2679. name: "Paws",
  2680. image: {
  2681. source: "./media/characters/sofia-fluttertail/paws.svg",
  2682. extra: 851 / 851,
  2683. bottom: 17 / 868
  2684. }
  2685. },
  2686. },
  2687. [
  2688. {
  2689. name: "Normal",
  2690. height: math.unit(1.83, "meter")
  2691. },
  2692. {
  2693. name: "Size Thief",
  2694. height: math.unit(18, "feet")
  2695. },
  2696. {
  2697. name: "50 Foot Collie",
  2698. height: math.unit(50, "feet")
  2699. },
  2700. {
  2701. name: "Macro",
  2702. height: math.unit(96, "feet"),
  2703. default: true
  2704. },
  2705. {
  2706. name: "Megamerger",
  2707. height: math.unit(650, "feet")
  2708. },
  2709. ]
  2710. ))
  2711. characterMakers.push(() => makeCharacter(
  2712. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2713. {
  2714. front: {
  2715. height: math.unit(7, "feet"),
  2716. weight: math.unit(100, "kg"),
  2717. name: "Front",
  2718. image: {
  2719. source: "./media/characters/march/front.svg",
  2720. extra: 1992/1851,
  2721. bottom: 39/2031
  2722. }
  2723. },
  2724. foot: {
  2725. height: math.unit(0.9, "feet"),
  2726. name: "Foot",
  2727. image: {
  2728. source: "./media/characters/march/foot.svg"
  2729. }
  2730. },
  2731. },
  2732. [
  2733. {
  2734. name: "Normal",
  2735. height: math.unit(7.9, "feet")
  2736. },
  2737. {
  2738. name: "Macro",
  2739. height: math.unit(220, "meters")
  2740. },
  2741. {
  2742. name: "Megamacro",
  2743. height: math.unit(2.98, "km"),
  2744. default: true
  2745. },
  2746. {
  2747. name: "Gigamacro",
  2748. height: math.unit(15963, "km")
  2749. },
  2750. {
  2751. name: "Teramacro",
  2752. height: math.unit(2980000000, "km")
  2753. },
  2754. {
  2755. name: "Examacro",
  2756. height: math.unit(250, "parsecs")
  2757. },
  2758. ]
  2759. ))
  2760. characterMakers.push(() => makeCharacter(
  2761. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2762. {
  2763. front: {
  2764. height: math.unit(6, "feet"),
  2765. weight: math.unit(60, "kg"),
  2766. name: "Front",
  2767. image: {
  2768. source: "./media/characters/noir/front.svg",
  2769. extra: 1,
  2770. bottom: 0.032
  2771. }
  2772. },
  2773. },
  2774. [
  2775. {
  2776. name: "Normal",
  2777. height: math.unit(6.6, "feet")
  2778. },
  2779. {
  2780. name: "Macro",
  2781. height: math.unit(500, "feet")
  2782. },
  2783. {
  2784. name: "Megamacro",
  2785. height: math.unit(2.5, "km"),
  2786. default: true
  2787. },
  2788. {
  2789. name: "Gigamacro",
  2790. height: math.unit(22500, "km")
  2791. },
  2792. {
  2793. name: "Teramacro",
  2794. height: math.unit(2500000000, "km")
  2795. },
  2796. {
  2797. name: "Examacro",
  2798. height: math.unit(200, "parsecs")
  2799. },
  2800. ]
  2801. ))
  2802. characterMakers.push(() => makeCharacter(
  2803. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2804. {
  2805. front: {
  2806. height: math.unit(7, "feet"),
  2807. weight: math.unit(100, "kg"),
  2808. name: "Front",
  2809. image: {
  2810. source: "./media/characters/okuri/front.svg",
  2811. extra: 739/665,
  2812. bottom: 39/778
  2813. }
  2814. },
  2815. back: {
  2816. height: math.unit(7, "feet"),
  2817. weight: math.unit(100, "kg"),
  2818. name: "Back",
  2819. image: {
  2820. source: "./media/characters/okuri/back.svg",
  2821. extra: 734/653,
  2822. bottom: 13/747
  2823. }
  2824. },
  2825. sitting: {
  2826. height: math.unit(2.95, "feet"),
  2827. weight: math.unit(100, "kg"),
  2828. name: "Sitting",
  2829. image: {
  2830. source: "./media/characters/okuri/sitting.svg",
  2831. extra: 370/318,
  2832. bottom: 99/469
  2833. }
  2834. },
  2835. },
  2836. [
  2837. {
  2838. name: "Smallest",
  2839. height: math.unit(5 + 2/12, "feet")
  2840. },
  2841. {
  2842. name: "Smaller",
  2843. height: math.unit(300, "feet")
  2844. },
  2845. {
  2846. name: "Small",
  2847. height: math.unit(1000, "feet")
  2848. },
  2849. {
  2850. name: "Macro",
  2851. height: math.unit(1, "mile")
  2852. },
  2853. {
  2854. name: "Mega Macro (Small)",
  2855. height: math.unit(20, "km")
  2856. },
  2857. {
  2858. name: "Mega Macro (Large)",
  2859. height: math.unit(600, "km")
  2860. },
  2861. {
  2862. name: "Giga Macro",
  2863. height: math.unit(10000, "km")
  2864. },
  2865. {
  2866. name: "Normal",
  2867. height: math.unit(577560, "km"),
  2868. default: true
  2869. },
  2870. {
  2871. name: "Large",
  2872. height: math.unit(4, "galaxies")
  2873. },
  2874. {
  2875. name: "Largest",
  2876. height: math.unit(15, "multiverses")
  2877. },
  2878. ]
  2879. ))
  2880. characterMakers.push(() => makeCharacter(
  2881. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2882. {
  2883. front: {
  2884. height: math.unit(7, "feet"),
  2885. weight: math.unit(100, "kg"),
  2886. name: "Front",
  2887. image: {
  2888. source: "./media/characters/manny/front.svg",
  2889. extra: 1,
  2890. bottom: 0.06
  2891. }
  2892. },
  2893. back: {
  2894. height: math.unit(7, "feet"),
  2895. weight: math.unit(100, "kg"),
  2896. name: "Back",
  2897. image: {
  2898. source: "./media/characters/manny/back.svg",
  2899. extra: 1,
  2900. bottom: 0.014
  2901. }
  2902. },
  2903. },
  2904. [
  2905. {
  2906. name: "Normal",
  2907. height: math.unit(7, "feet"),
  2908. },
  2909. {
  2910. name: "Macro",
  2911. height: math.unit(78, "feet"),
  2912. default: true
  2913. },
  2914. {
  2915. name: "Macro+",
  2916. height: math.unit(300, "meters")
  2917. },
  2918. {
  2919. name: "Macro++",
  2920. height: math.unit(2400, "meters")
  2921. },
  2922. {
  2923. name: "Megamacro",
  2924. height: math.unit(5167, "meters")
  2925. },
  2926. {
  2927. name: "Gigamacro",
  2928. height: math.unit(41769, "miles")
  2929. },
  2930. ]
  2931. ))
  2932. characterMakers.push(() => makeCharacter(
  2933. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2934. {
  2935. front: {
  2936. height: math.unit(7, "feet"),
  2937. weight: math.unit(100, "kg"),
  2938. name: "Front",
  2939. image: {
  2940. source: "./media/characters/adake/front-1.svg"
  2941. }
  2942. },
  2943. frontAlt: {
  2944. height: math.unit(7, "feet"),
  2945. weight: math.unit(100, "kg"),
  2946. name: "Front (Alt)",
  2947. image: {
  2948. source: "./media/characters/adake/front-2.svg",
  2949. extra: 1,
  2950. bottom: 0.01
  2951. }
  2952. },
  2953. back: {
  2954. height: math.unit(7, "feet"),
  2955. weight: math.unit(100, "kg"),
  2956. name: "Back",
  2957. image: {
  2958. source: "./media/characters/adake/back.svg",
  2959. }
  2960. },
  2961. kneel: {
  2962. height: math.unit(5.385, "feet"),
  2963. weight: math.unit(100, "kg"),
  2964. name: "Kneeling",
  2965. image: {
  2966. source: "./media/characters/adake/kneel.svg",
  2967. bottom: 0.052
  2968. }
  2969. },
  2970. },
  2971. [
  2972. {
  2973. name: "Normal",
  2974. height: math.unit(7, "feet"),
  2975. },
  2976. {
  2977. name: "Macro",
  2978. height: math.unit(78, "feet"),
  2979. default: true
  2980. },
  2981. {
  2982. name: "Macro+",
  2983. height: math.unit(300, "meters")
  2984. },
  2985. {
  2986. name: "Macro++",
  2987. height: math.unit(2400, "meters")
  2988. },
  2989. {
  2990. name: "Megamacro",
  2991. height: math.unit(5167, "meters")
  2992. },
  2993. {
  2994. name: "Gigamacro",
  2995. height: math.unit(41769, "miles")
  2996. },
  2997. ]
  2998. ))
  2999. characterMakers.push(() => makeCharacter(
  3000. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  3001. {
  3002. front: {
  3003. height: math.unit(1.65, "meters"),
  3004. weight: math.unit(50, "kg"),
  3005. name: "Front",
  3006. image: {
  3007. source: "./media/characters/elijah/front.svg",
  3008. extra: 858 / 830,
  3009. bottom: 95.5 / 953.8559
  3010. }
  3011. },
  3012. back: {
  3013. height: math.unit(1.65, "meters"),
  3014. weight: math.unit(50, "kg"),
  3015. name: "Back",
  3016. image: {
  3017. source: "./media/characters/elijah/back.svg",
  3018. extra: 895 / 850,
  3019. bottom: 5.3 / 897.956
  3020. }
  3021. },
  3022. frontNsfw: {
  3023. height: math.unit(1.65, "meters"),
  3024. weight: math.unit(50, "kg"),
  3025. name: "Front (NSFW)",
  3026. image: {
  3027. source: "./media/characters/elijah/front-nsfw.svg",
  3028. extra: 858 / 830,
  3029. bottom: 95.5 / 953.8559
  3030. }
  3031. },
  3032. backNsfw: {
  3033. height: math.unit(1.65, "meters"),
  3034. weight: math.unit(50, "kg"),
  3035. name: "Back (NSFW)",
  3036. image: {
  3037. source: "./media/characters/elijah/back-nsfw.svg",
  3038. extra: 895 / 850,
  3039. bottom: 5.3 / 897.956
  3040. }
  3041. },
  3042. dick: {
  3043. height: math.unit(1, "feet"),
  3044. name: "Dick",
  3045. image: {
  3046. source: "./media/characters/elijah/dick.svg"
  3047. }
  3048. },
  3049. beakOpen: {
  3050. height: math.unit(1.25, "feet"),
  3051. name: "Beak (Open)",
  3052. image: {
  3053. source: "./media/characters/elijah/beak-open.svg"
  3054. }
  3055. },
  3056. beakShut: {
  3057. height: math.unit(1.25, "feet"),
  3058. name: "Beak (Shut)",
  3059. image: {
  3060. source: "./media/characters/elijah/beak-shut.svg"
  3061. }
  3062. },
  3063. footFlexing: {
  3064. height: math.unit(1.61, "feet"),
  3065. name: "Foot (Flexing)",
  3066. image: {
  3067. source: "./media/characters/elijah/foot-flexing.svg"
  3068. }
  3069. },
  3070. footStepping: {
  3071. height: math.unit(1.44, "feet"),
  3072. name: "Foot (Stepping)",
  3073. image: {
  3074. source: "./media/characters/elijah/foot-stepping.svg"
  3075. }
  3076. },
  3077. plantigradeLeg: {
  3078. height: math.unit(2.34, "feet"),
  3079. name: "Plantigrade Leg",
  3080. image: {
  3081. source: "./media/characters/elijah/plantigrade-leg.svg"
  3082. }
  3083. },
  3084. plantigradeFootLeft: {
  3085. height: math.unit(0.9, "feet"),
  3086. name: "Plantigrade Foot (Left)",
  3087. image: {
  3088. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3089. }
  3090. },
  3091. plantigradeFootRight: {
  3092. height: math.unit(0.9, "feet"),
  3093. name: "Plantigrade Foot (Right)",
  3094. image: {
  3095. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3096. }
  3097. },
  3098. },
  3099. [
  3100. {
  3101. name: "Normal",
  3102. height: math.unit(1.65, "meters")
  3103. },
  3104. {
  3105. name: "Macro",
  3106. height: math.unit(55, "meters"),
  3107. default: true
  3108. },
  3109. {
  3110. name: "Macro+",
  3111. height: math.unit(105, "meters")
  3112. },
  3113. ]
  3114. ))
  3115. characterMakers.push(() => makeCharacter(
  3116. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3117. {
  3118. front: {
  3119. height: math.unit(7 + 2/12, "feet"),
  3120. weight: math.unit(320, "kg"),
  3121. preyCapacity: math.unit(0.276549935, "people"),
  3122. name: "Front",
  3123. image: {
  3124. source: "./media/characters/rai/front.svg",
  3125. extra: 1802/1696,
  3126. bottom: 68/1870
  3127. },
  3128. form: "anthro",
  3129. default: true
  3130. },
  3131. frontDressed: {
  3132. height: math.unit(7 + 2/12, "feet"),
  3133. weight: math.unit(320, "kg"),
  3134. preyCapacity: math.unit(0.276549935, "people"),
  3135. name: "Front (Dressed)",
  3136. image: {
  3137. source: "./media/characters/rai/front-dressed.svg",
  3138. extra: 1802/1696,
  3139. bottom: 68/1870
  3140. },
  3141. form: "anthro"
  3142. },
  3143. side: {
  3144. height: math.unit(7 + 2/12, "feet"),
  3145. weight: math.unit(320, "kg"),
  3146. preyCapacity: math.unit(0.276549935, "people"),
  3147. name: "Side",
  3148. image: {
  3149. source: "./media/characters/rai/side.svg",
  3150. extra: 1789/1710,
  3151. bottom: 115/1904
  3152. },
  3153. form: "anthro"
  3154. },
  3155. back: {
  3156. height: math.unit(7 + 2/12, "feet"),
  3157. weight: math.unit(320, "kg"),
  3158. preyCapacity: math.unit(0.276549935, "people"),
  3159. name: "Back",
  3160. image: {
  3161. source: "./media/characters/rai/back.svg",
  3162. extra: 1770/1707,
  3163. bottom: 28/1798
  3164. },
  3165. form: "anthro"
  3166. },
  3167. feral: {
  3168. height: math.unit(9.5, "feet"),
  3169. weight: math.unit(640, "kg"),
  3170. preyCapacity: math.unit(4, "people"),
  3171. name: "Feral",
  3172. image: {
  3173. source: "./media/characters/rai/feral.svg",
  3174. extra: 945/553,
  3175. bottom: 176/1121
  3176. },
  3177. form: "feral",
  3178. default: true
  3179. },
  3180. dragon: {
  3181. height: math.unit(23, "feet"),
  3182. weight: math.unit(50000, "lb"),
  3183. name: "Dragon",
  3184. image: {
  3185. source: "./media/characters/rai/dragon.svg",
  3186. extra: 2498 / 2030,
  3187. bottom: 85.2 / 2584
  3188. },
  3189. form: "dragon",
  3190. default: true
  3191. },
  3192. maw: {
  3193. height: math.unit(1.69, "feet"),
  3194. name: "Maw",
  3195. image: {
  3196. source: "./media/characters/rai/maw.svg"
  3197. },
  3198. form: "anthro"
  3199. },
  3200. },
  3201. [
  3202. {
  3203. name: "Normal",
  3204. height: math.unit(7 + 2/12, "feet"),
  3205. form: "anthro"
  3206. },
  3207. {
  3208. name: "Big",
  3209. height: math.unit(11, "feet"),
  3210. form: "anthro"
  3211. },
  3212. {
  3213. name: "Minimacro",
  3214. height: math.unit(77, "feet"),
  3215. form: "anthro"
  3216. },
  3217. {
  3218. name: "Macro",
  3219. height: math.unit(302, "feet"),
  3220. default: true,
  3221. form: "anthro"
  3222. },
  3223. {
  3224. name: "Normal",
  3225. height: math.unit(9.5, "feet"),
  3226. form: "feral",
  3227. default: true
  3228. },
  3229. {
  3230. name: "Normal",
  3231. height: math.unit(23, "feet"),
  3232. form: "dragon",
  3233. default: true
  3234. }
  3235. ],
  3236. {
  3237. "anthro": {
  3238. name: "Anthro",
  3239. default: true
  3240. },
  3241. "feral": {
  3242. name: "Feral",
  3243. },
  3244. "dragon": {
  3245. name: "Dragon",
  3246. },
  3247. }
  3248. ))
  3249. characterMakers.push(() => makeCharacter(
  3250. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3251. {
  3252. frontDressed: {
  3253. height: math.unit(216, "feet"),
  3254. weight: math.unit(7000000, "lb"),
  3255. preyCapacity: math.unit(1321, "people"),
  3256. name: "Front (Dressed)",
  3257. image: {
  3258. source: "./media/characters/jazzy/front-dressed.svg",
  3259. extra: 2738 / 2651,
  3260. bottom: 41.8 / 2786
  3261. }
  3262. },
  3263. backDressed: {
  3264. height: math.unit(216, "feet"),
  3265. weight: math.unit(7000000, "lb"),
  3266. preyCapacity: math.unit(1321, "people"),
  3267. name: "Back (Dressed)",
  3268. image: {
  3269. source: "./media/characters/jazzy/back-dressed.svg",
  3270. extra: 2775 / 2673,
  3271. bottom: 36.8 / 2817
  3272. }
  3273. },
  3274. front: {
  3275. height: math.unit(216, "feet"),
  3276. weight: math.unit(7000000, "lb"),
  3277. preyCapacity: math.unit(1321, "people"),
  3278. name: "Front",
  3279. image: {
  3280. source: "./media/characters/jazzy/front.svg",
  3281. extra: 2738 / 2651,
  3282. bottom: 41.8 / 2786
  3283. }
  3284. },
  3285. back: {
  3286. height: math.unit(216, "feet"),
  3287. weight: math.unit(7000000, "lb"),
  3288. preyCapacity: math.unit(1321, "people"),
  3289. name: "Back",
  3290. image: {
  3291. source: "./media/characters/jazzy/back.svg",
  3292. extra: 2775 / 2673,
  3293. bottom: 36.8 / 2817
  3294. }
  3295. },
  3296. maw: {
  3297. height: math.unit(20, "feet"),
  3298. name: "Maw",
  3299. image: {
  3300. source: "./media/characters/jazzy/maw.svg"
  3301. }
  3302. },
  3303. paws: {
  3304. height: math.unit(27.5, "feet"),
  3305. name: "Paws",
  3306. image: {
  3307. source: "./media/characters/jazzy/paws.svg"
  3308. }
  3309. },
  3310. eye: {
  3311. height: math.unit(4.4, "feet"),
  3312. name: "Eye",
  3313. image: {
  3314. source: "./media/characters/jazzy/eye.svg"
  3315. }
  3316. },
  3317. droneOffense: {
  3318. height: math.unit(9.5, "inches"),
  3319. name: "Drone (Offense)",
  3320. image: {
  3321. source: "./media/characters/jazzy/drone-offense.svg"
  3322. }
  3323. },
  3324. droneRecon: {
  3325. height: math.unit(9.5, "inches"),
  3326. name: "Drone (Recon)",
  3327. image: {
  3328. source: "./media/characters/jazzy/drone-recon.svg"
  3329. }
  3330. },
  3331. droneDefense: {
  3332. height: math.unit(9.5, "inches"),
  3333. name: "Drone (Defense)",
  3334. image: {
  3335. source: "./media/characters/jazzy/drone-defense.svg"
  3336. }
  3337. },
  3338. },
  3339. [
  3340. {
  3341. name: "Macro",
  3342. height: math.unit(216, "feet"),
  3343. default: true
  3344. },
  3345. ]
  3346. ))
  3347. characterMakers.push(() => makeCharacter(
  3348. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3349. {
  3350. front: {
  3351. height: math.unit(9 + 6/12, "feet"),
  3352. weight: math.unit(700, "lb"),
  3353. name: "Front",
  3354. image: {
  3355. source: "./media/characters/flamm/front.svg",
  3356. extra: 1736/1596,
  3357. bottom: 93/1829
  3358. }
  3359. },
  3360. buff: {
  3361. height: math.unit(9 + 6/12, "feet"),
  3362. weight: math.unit(950, "lb"),
  3363. name: "Buff",
  3364. image: {
  3365. source: "./media/characters/flamm/buff.svg",
  3366. extra: 3018/2874,
  3367. bottom: 221/3239
  3368. }
  3369. },
  3370. },
  3371. [
  3372. {
  3373. name: "Normal",
  3374. height: math.unit(9.5, "feet")
  3375. },
  3376. {
  3377. name: "Macro",
  3378. height: math.unit(200, "feet"),
  3379. default: true
  3380. },
  3381. ]
  3382. ))
  3383. characterMakers.push(() => makeCharacter(
  3384. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3385. {
  3386. front: {
  3387. height: math.unit(5 + 3/12, "feet"),
  3388. weight: math.unit(60, "kg"),
  3389. name: "Front",
  3390. image: {
  3391. source: "./media/characters/zephiro/front.svg",
  3392. extra: 1873/1761,
  3393. bottom: 147/2020
  3394. }
  3395. },
  3396. side: {
  3397. height: math.unit(5 + 3/12, "feet"),
  3398. weight: math.unit(60, "kg"),
  3399. name: "Side",
  3400. image: {
  3401. source: "./media/characters/zephiro/side.svg",
  3402. extra: 1929/1827,
  3403. bottom: 65/1994
  3404. }
  3405. },
  3406. back: {
  3407. height: math.unit(5 + 3/12, "feet"),
  3408. weight: math.unit(60, "kg"),
  3409. name: "Back",
  3410. image: {
  3411. source: "./media/characters/zephiro/back.svg",
  3412. extra: 1926/1816,
  3413. bottom: 41/1967
  3414. }
  3415. },
  3416. hand: {
  3417. height: math.unit(0.68, "feet"),
  3418. name: "Hand",
  3419. image: {
  3420. source: "./media/characters/zephiro/hand.svg"
  3421. }
  3422. },
  3423. paw: {
  3424. height: math.unit(1, "feet"),
  3425. name: "Paw",
  3426. image: {
  3427. source: "./media/characters/zephiro/paw.svg"
  3428. }
  3429. },
  3430. beans: {
  3431. height: math.unit(0.93, "feet"),
  3432. name: "Beans",
  3433. image: {
  3434. source: "./media/characters/zephiro/beans.svg"
  3435. }
  3436. },
  3437. },
  3438. [
  3439. {
  3440. name: "Micro",
  3441. height: math.unit(3, "inches")
  3442. },
  3443. {
  3444. name: "Normal",
  3445. height: math.unit(5 + 3 / 12, "feet"),
  3446. default: true
  3447. },
  3448. {
  3449. name: "Macro",
  3450. height: math.unit(118, "feet")
  3451. },
  3452. ]
  3453. ))
  3454. characterMakers.push(() => makeCharacter(
  3455. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3456. {
  3457. front: {
  3458. height: math.unit(5, "feet"),
  3459. weight: math.unit(90, "kg"),
  3460. preyCapacity: math.unit(14, "people"),
  3461. name: "Front",
  3462. image: {
  3463. source: "./media/characters/fory/front.svg",
  3464. extra: 2862 / 2674,
  3465. bottom: 180 / 3043.8
  3466. },
  3467. form: "weaselbun",
  3468. default: true,
  3469. extraAttributes: {
  3470. "pawSize": {
  3471. name: "Paw Size",
  3472. power: 2,
  3473. type: "area",
  3474. base: math.unit(0.1596, "m^2")
  3475. },
  3476. "pawLength": {
  3477. name: "Paw Length",
  3478. power: 1,
  3479. type: "length",
  3480. base: math.unit(0.7, "m")
  3481. }
  3482. }
  3483. },
  3484. back: {
  3485. height: math.unit(5, "feet"),
  3486. weight: math.unit(90, "kg"),
  3487. preyCapacity: math.unit(14, "people"),
  3488. name: "Back",
  3489. image: {
  3490. source: "./media/characters/fory/back.svg",
  3491. extra: 1790/1672,
  3492. bottom: 84/1874
  3493. },
  3494. form: "weaselbun",
  3495. extraAttributes: {
  3496. "pawSize": {
  3497. name: "Paw Size",
  3498. power: 2,
  3499. type: "area",
  3500. base: math.unit(0.1596, "m^2")
  3501. },
  3502. "pawLength": {
  3503. name: "Paw Length",
  3504. power: 1,
  3505. type: "length",
  3506. base: math.unit(0.7, "m")
  3507. }
  3508. }
  3509. },
  3510. paw: {
  3511. height: math.unit(2.14, "feet"),
  3512. name: "Paw",
  3513. image: {
  3514. source: "./media/characters/fory/paw.svg"
  3515. },
  3516. form: "weaselbun",
  3517. extraAttributes: {
  3518. "pawSize": {
  3519. name: "Paw Size",
  3520. power: 2,
  3521. type: "area",
  3522. base: math.unit(0.1596, "m^2")
  3523. },
  3524. "pawLength": {
  3525. name: "Paw Length",
  3526. power: 1,
  3527. type: "length",
  3528. base: math.unit(0.48, "m")
  3529. }
  3530. }
  3531. },
  3532. bunBack: {
  3533. height: math.unit(3, "feet"),
  3534. weight: math.unit(20, "kg"),
  3535. preyCapacity: math.unit(3, "people"),
  3536. name: "Back",
  3537. image: {
  3538. source: "./media/characters/fory/bun-back.svg",
  3539. extra: 1749/1564,
  3540. bottom: 246/1995
  3541. },
  3542. form: "bun",
  3543. default: true,
  3544. extraAttributes: {
  3545. "pawSize": {
  3546. name: "Paw Size",
  3547. power: 2,
  3548. type: "area",
  3549. base: math.unit(0.072, "m^2")
  3550. },
  3551. "pawLength": {
  3552. name: "Paw Length",
  3553. power: 1,
  3554. type: "length",
  3555. base: math.unit(0.45, "m")
  3556. }
  3557. }
  3558. },
  3559. },
  3560. [
  3561. {
  3562. name: "Normal",
  3563. height: math.unit(5, "feet"),
  3564. form: "weaselbun"
  3565. },
  3566. {
  3567. name: "Macro",
  3568. height: math.unit(50, "feet"),
  3569. default: true,
  3570. form: "weaselbun"
  3571. },
  3572. {
  3573. name: "Megamacro",
  3574. height: math.unit(10, "miles"),
  3575. form: "weaselbun"
  3576. },
  3577. {
  3578. name: "Gigamacro",
  3579. height: math.unit(5, "earths"),
  3580. form: "weaselbun"
  3581. },
  3582. {
  3583. name: "Normal",
  3584. height: math.unit(3, "feet"),
  3585. default: true,
  3586. form: "bun"
  3587. },
  3588. {
  3589. name: "Fun-Size",
  3590. height: math.unit(12, "feet"),
  3591. form: "bun"
  3592. },
  3593. {
  3594. name: "Macro",
  3595. height: math.unit(100, "feet"),
  3596. form: "bun"
  3597. },
  3598. {
  3599. name: "Planetary",
  3600. height: math.unit(3, "earths"),
  3601. form: "bun"
  3602. },
  3603. ],
  3604. {
  3605. "weaselbun": {
  3606. name: "Weaselbun",
  3607. default: true
  3608. },
  3609. "bun": {
  3610. name: "Bun",
  3611. },
  3612. }
  3613. ))
  3614. characterMakers.push(() => makeCharacter(
  3615. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3616. {
  3617. front: {
  3618. height: math.unit(7, "feet"),
  3619. weight: math.unit(90, "kg"),
  3620. name: "Front",
  3621. image: {
  3622. source: "./media/characters/kurrikage/front.svg",
  3623. extra: 1845/1733,
  3624. bottom: 119/1964
  3625. }
  3626. },
  3627. back: {
  3628. height: math.unit(7, "feet"),
  3629. weight: math.unit(90, "kg"),
  3630. name: "Back",
  3631. image: {
  3632. source: "./media/characters/kurrikage/back.svg",
  3633. extra: 1790/1677,
  3634. bottom: 61/1851
  3635. }
  3636. },
  3637. dressed: {
  3638. height: math.unit(7, "feet"),
  3639. weight: math.unit(90, "kg"),
  3640. name: "Dressed",
  3641. image: {
  3642. source: "./media/characters/kurrikage/dressed.svg",
  3643. extra: 1845/1733,
  3644. bottom: 119/1964
  3645. }
  3646. },
  3647. foot: {
  3648. height: math.unit(1.5, "feet"),
  3649. name: "Foot",
  3650. image: {
  3651. source: "./media/characters/kurrikage/foot.svg"
  3652. }
  3653. },
  3654. staff: {
  3655. height: math.unit(6.7, "feet"),
  3656. name: "Staff",
  3657. image: {
  3658. source: "./media/characters/kurrikage/staff.svg"
  3659. }
  3660. },
  3661. peek: {
  3662. height: math.unit(1.05, "feet"),
  3663. name: "Peeking",
  3664. image: {
  3665. source: "./media/characters/kurrikage/peek.svg",
  3666. bottom: 0.08
  3667. }
  3668. },
  3669. },
  3670. [
  3671. {
  3672. name: "Normal",
  3673. height: math.unit(12, "feet"),
  3674. default: true
  3675. },
  3676. {
  3677. name: "Big",
  3678. height: math.unit(20, "feet")
  3679. },
  3680. {
  3681. name: "Macro",
  3682. height: math.unit(500, "feet")
  3683. },
  3684. {
  3685. name: "Megamacro",
  3686. height: math.unit(20, "miles")
  3687. },
  3688. ]
  3689. ))
  3690. characterMakers.push(() => makeCharacter(
  3691. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3692. {
  3693. front: {
  3694. height: math.unit(6, "feet"),
  3695. weight: math.unit(75, "kg"),
  3696. name: "Front",
  3697. image: {
  3698. source: "./media/characters/shingo/front.svg",
  3699. extra: 1900/1825,
  3700. bottom: 82/1982
  3701. }
  3702. },
  3703. side: {
  3704. height: math.unit(6, "feet"),
  3705. weight: math.unit(75, "kg"),
  3706. name: "Side",
  3707. image: {
  3708. source: "./media/characters/shingo/side.svg",
  3709. extra: 1930/1865,
  3710. bottom: 16/1946
  3711. }
  3712. },
  3713. back: {
  3714. height: math.unit(6, "feet"),
  3715. weight: math.unit(75, "kg"),
  3716. name: "Back",
  3717. image: {
  3718. source: "./media/characters/shingo/back.svg",
  3719. extra: 1922/1852,
  3720. bottom: 16/1938
  3721. }
  3722. },
  3723. frontDressed: {
  3724. height: math.unit(6, "feet"),
  3725. weight: math.unit(150, "lb"),
  3726. name: "Front-dressed",
  3727. image: {
  3728. source: "./media/characters/shingo/front-dressed.svg",
  3729. extra: 1900/1825,
  3730. bottom: 82/1982
  3731. }
  3732. },
  3733. paw: {
  3734. height: math.unit(1.29, "feet"),
  3735. name: "Paw",
  3736. image: {
  3737. source: "./media/characters/shingo/paw.svg"
  3738. }
  3739. },
  3740. hand: {
  3741. height: math.unit(1.07, "feet"),
  3742. name: "Hand",
  3743. image: {
  3744. source: "./media/characters/shingo/hand.svg"
  3745. }
  3746. },
  3747. frontAlt: {
  3748. height: math.unit(6, "feet"),
  3749. weight: math.unit(75, "kg"),
  3750. name: "Front (Alt)",
  3751. image: {
  3752. source: "./media/characters/shingo/front-alt.svg",
  3753. extra: 3511 / 3338,
  3754. bottom: 0.005
  3755. }
  3756. },
  3757. frontAlt2: {
  3758. height: math.unit(6, "feet"),
  3759. weight: math.unit(75, "kg"),
  3760. name: "Front (Alt 2)",
  3761. image: {
  3762. source: "./media/characters/shingo/front-alt-2.svg",
  3763. extra: 706/681,
  3764. bottom: 11/717
  3765. }
  3766. },
  3767. pawAlt: {
  3768. height: math.unit(1, "feet"),
  3769. name: "Paw (Alt)",
  3770. image: {
  3771. source: "./media/characters/shingo/paw-alt.svg"
  3772. }
  3773. },
  3774. },
  3775. [
  3776. {
  3777. name: "Micro",
  3778. height: math.unit(4, "inches")
  3779. },
  3780. {
  3781. name: "Normal",
  3782. height: math.unit(6, "feet"),
  3783. default: true
  3784. },
  3785. {
  3786. name: "Macro",
  3787. height: math.unit(108, "feet")
  3788. },
  3789. {
  3790. name: "Macro+",
  3791. height: math.unit(1500, "feet")
  3792. },
  3793. ]
  3794. ))
  3795. characterMakers.push(() => makeCharacter(
  3796. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3797. {
  3798. side: {
  3799. height: math.unit(6, "feet"),
  3800. weight: math.unit(75, "kg"),
  3801. name: "Side",
  3802. image: {
  3803. source: "./media/characters/aigey/side.svg"
  3804. }
  3805. },
  3806. },
  3807. [
  3808. {
  3809. name: "Macro",
  3810. height: math.unit(200, "feet"),
  3811. default: true
  3812. },
  3813. {
  3814. name: "Megamacro",
  3815. height: math.unit(100, "miles")
  3816. },
  3817. ]
  3818. )
  3819. )
  3820. characterMakers.push(() => makeCharacter(
  3821. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3822. {
  3823. front: {
  3824. height: math.unit(5 + 5 / 12, "feet"),
  3825. weight: math.unit(75, "kg"),
  3826. name: "Front",
  3827. image: {
  3828. source: "./media/characters/natasha/front.svg",
  3829. extra: 859 / 824,
  3830. bottom: 23 / 879.6
  3831. }
  3832. },
  3833. frontNsfw: {
  3834. height: math.unit(5 + 5 / 12, "feet"),
  3835. weight: math.unit(75, "kg"),
  3836. name: "Front (NSFW)",
  3837. image: {
  3838. source: "./media/characters/natasha/front-nsfw.svg",
  3839. extra: 859 / 824,
  3840. bottom: 23 / 879.6
  3841. }
  3842. },
  3843. frontErect: {
  3844. height: math.unit(5 + 5 / 12, "feet"),
  3845. weight: math.unit(75, "kg"),
  3846. name: "Front (Erect)",
  3847. image: {
  3848. source: "./media/characters/natasha/front-erect.svg",
  3849. extra: 859 / 824,
  3850. bottom: 23 / 879.6
  3851. }
  3852. },
  3853. back: {
  3854. height: math.unit(5 + 5 / 12, "feet"),
  3855. weight: math.unit(75, "kg"),
  3856. name: "Back",
  3857. image: {
  3858. source: "./media/characters/natasha/back.svg",
  3859. extra: 887.9 / 852.6,
  3860. bottom: 9.7 / 896.4
  3861. }
  3862. },
  3863. backAlt: {
  3864. height: math.unit(5 + 5 / 12, "feet"),
  3865. weight: math.unit(75, "kg"),
  3866. name: "Back (Alt)",
  3867. image: {
  3868. source: "./media/characters/natasha/back-alt.svg",
  3869. extra: 1236.7 / 1192,
  3870. bottom: 22.3 / 1258.2
  3871. }
  3872. },
  3873. dick: {
  3874. height: math.unit(1.772, "feet"),
  3875. name: "Dick",
  3876. image: {
  3877. source: "./media/characters/natasha/dick.svg"
  3878. }
  3879. },
  3880. paw: {
  3881. height: math.unit(0.250, "meters"),
  3882. name: "Paw",
  3883. image: {
  3884. source: "./media/characters/natasha/paw.svg"
  3885. },
  3886. extraAttributes: {
  3887. "toeSize": {
  3888. name: "Toe Size",
  3889. power: 2,
  3890. type: "area",
  3891. base: math.unit(0.0024, "m^2")
  3892. },
  3893. "padSize": {
  3894. name: "Pad Size",
  3895. power: 2,
  3896. type: "area",
  3897. base: math.unit(0.00889, "m^2")
  3898. },
  3899. "pawSize": {
  3900. name: "Paw Size",
  3901. power: 2,
  3902. type: "area",
  3903. base: math.unit(0.023667, "m^2")
  3904. },
  3905. }
  3906. },
  3907. },
  3908. [
  3909. {
  3910. name: "Shortstack",
  3911. height: math.unit(3, "feet"),
  3912. default: true
  3913. },
  3914. {
  3915. name: "Normal",
  3916. height: math.unit(5 + 5 / 12, "feet")
  3917. },
  3918. {
  3919. name: "Large",
  3920. height: math.unit(12, "feet")
  3921. },
  3922. {
  3923. name: "Macro",
  3924. height: math.unit(100, "feet")
  3925. },
  3926. {
  3927. name: "Macro+",
  3928. height: math.unit(260, "feet")
  3929. },
  3930. {
  3931. name: "Macro++",
  3932. height: math.unit(1, "mile")
  3933. },
  3934. ]
  3935. ))
  3936. characterMakers.push(() => makeCharacter(
  3937. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3938. {
  3939. front: {
  3940. height: math.unit(6, "feet"),
  3941. weight: math.unit(75, "kg"),
  3942. name: "Front",
  3943. image: {
  3944. source: "./media/characters/malik/front.svg",
  3945. extra: 1750/1561,
  3946. bottom: 80/1830
  3947. },
  3948. extraAttributes: {
  3949. "toeSize": {
  3950. name: "Toe Size",
  3951. power: 2,
  3952. type: "area",
  3953. base: math.unit(0.0159, "m^2")
  3954. },
  3955. "pawSize": {
  3956. name: "Paw Size",
  3957. power: 2,
  3958. type: "area",
  3959. base: math.unit(0.09834, "m^2")
  3960. },
  3961. }
  3962. },
  3963. side: {
  3964. height: math.unit(6, "feet"),
  3965. weight: math.unit(75, "kg"),
  3966. name: "Side",
  3967. image: {
  3968. source: "./media/characters/malik/side.svg",
  3969. extra: 1802/1685,
  3970. bottom: 42/1844
  3971. },
  3972. extraAttributes: {
  3973. "toeSize": {
  3974. name: "Toe Size",
  3975. power: 2,
  3976. type: "area",
  3977. base: math.unit(0.0159, "m^2")
  3978. },
  3979. "pawSize": {
  3980. name: "Paw Size",
  3981. power: 2,
  3982. type: "area",
  3983. base: math.unit(0.09834, "m^2")
  3984. },
  3985. }
  3986. },
  3987. back: {
  3988. height: math.unit(6, "feet"),
  3989. weight: math.unit(75, "kg"),
  3990. name: "Back",
  3991. image: {
  3992. source: "./media/characters/malik/back.svg",
  3993. extra: 1803/1607,
  3994. bottom: 33/1836
  3995. },
  3996. extraAttributes: {
  3997. "toeSize": {
  3998. name: "Toe Size",
  3999. power: 2,
  4000. type: "area",
  4001. base: math.unit(0.0159, "m^2")
  4002. },
  4003. "pawSize": {
  4004. name: "Paw Size",
  4005. power: 2,
  4006. type: "area",
  4007. base: math.unit(0.09834, "m^2")
  4008. },
  4009. }
  4010. },
  4011. },
  4012. [
  4013. {
  4014. name: "Macro",
  4015. height: math.unit(156, "feet"),
  4016. default: true
  4017. },
  4018. {
  4019. name: "Macro+",
  4020. height: math.unit(1188, "feet")
  4021. },
  4022. ]
  4023. ))
  4024. characterMakers.push(() => makeCharacter(
  4025. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  4026. {
  4027. front: {
  4028. height: math.unit(6, "feet"),
  4029. weight: math.unit(75, "kg"),
  4030. name: "Front",
  4031. image: {
  4032. source: "./media/characters/sefer/front.svg",
  4033. extra: 848 / 659,
  4034. bottom: 28.3 / 876.442
  4035. }
  4036. },
  4037. back: {
  4038. height: math.unit(6, "feet"),
  4039. weight: math.unit(75, "kg"),
  4040. name: "Back",
  4041. image: {
  4042. source: "./media/characters/sefer/back.svg",
  4043. extra: 864 / 695,
  4044. bottom: 10 / 871
  4045. }
  4046. },
  4047. frontDressed: {
  4048. height: math.unit(6, "feet"),
  4049. weight: math.unit(75, "kg"),
  4050. name: "Dressed",
  4051. image: {
  4052. source: "./media/characters/sefer/dressed.svg",
  4053. extra: 839 / 653,
  4054. bottom: 37.6 / 878
  4055. }
  4056. },
  4057. },
  4058. [
  4059. {
  4060. name: "Normal",
  4061. height: math.unit(6, "feet"),
  4062. default: true
  4063. },
  4064. {
  4065. name: "Big",
  4066. height: math.unit(8, "meters")
  4067. },
  4068. ]
  4069. ))
  4070. characterMakers.push(() => makeCharacter(
  4071. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  4072. {
  4073. body: {
  4074. height: math.unit(2.2428, "meter"),
  4075. weight: math.unit(124.738, "kg"),
  4076. name: "Body",
  4077. image: {
  4078. extra: 1225 / 1050,
  4079. source: "./media/characters/north/front.svg"
  4080. }
  4081. }
  4082. },
  4083. [
  4084. {
  4085. name: "Micro",
  4086. height: math.unit(4, "inches")
  4087. },
  4088. {
  4089. name: "Macro",
  4090. height: math.unit(63, "meters")
  4091. },
  4092. {
  4093. name: "Megamacro",
  4094. height: math.unit(101, "miles"),
  4095. default: true
  4096. }
  4097. ]
  4098. ))
  4099. characterMakers.push(() => makeCharacter(
  4100. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4101. {
  4102. angled: {
  4103. height: math.unit(4, "meter"),
  4104. weight: math.unit(150, "kg"),
  4105. name: "Angled",
  4106. image: {
  4107. source: "./media/characters/talan/angled-sfw.svg",
  4108. bottom: 29 / 3734
  4109. }
  4110. },
  4111. angledNsfw: {
  4112. height: math.unit(4, "meter"),
  4113. weight: math.unit(150, "kg"),
  4114. name: "Angled (NSFW)",
  4115. image: {
  4116. source: "./media/characters/talan/angled-nsfw.svg",
  4117. bottom: 29 / 3734
  4118. }
  4119. },
  4120. frontNsfw: {
  4121. height: math.unit(4, "meter"),
  4122. weight: math.unit(150, "kg"),
  4123. name: "Front (NSFW)",
  4124. image: {
  4125. source: "./media/characters/talan/front-nsfw.svg",
  4126. bottom: 29 / 3734
  4127. }
  4128. },
  4129. sideNsfw: {
  4130. height: math.unit(4, "meter"),
  4131. weight: math.unit(150, "kg"),
  4132. name: "Side (NSFW)",
  4133. image: {
  4134. source: "./media/characters/talan/side-nsfw.svg",
  4135. bottom: 29 / 3734
  4136. }
  4137. },
  4138. back: {
  4139. height: math.unit(4, "meter"),
  4140. weight: math.unit(150, "kg"),
  4141. name: "Back",
  4142. image: {
  4143. source: "./media/characters/talan/back.svg"
  4144. }
  4145. },
  4146. dickBottom: {
  4147. height: math.unit(0.621, "meter"),
  4148. name: "Dick (Bottom)",
  4149. image: {
  4150. source: "./media/characters/talan/dick-bottom.svg"
  4151. }
  4152. },
  4153. dickTop: {
  4154. height: math.unit(0.621, "meter"),
  4155. name: "Dick (Top)",
  4156. image: {
  4157. source: "./media/characters/talan/dick-top.svg"
  4158. }
  4159. },
  4160. dickSide: {
  4161. height: math.unit(0.305, "meter"),
  4162. name: "Dick (Side)",
  4163. image: {
  4164. source: "./media/characters/talan/dick-side.svg"
  4165. }
  4166. },
  4167. dickFront: {
  4168. height: math.unit(0.305, "meter"),
  4169. name: "Dick (Front)",
  4170. image: {
  4171. source: "./media/characters/talan/dick-front.svg"
  4172. }
  4173. },
  4174. },
  4175. [
  4176. {
  4177. name: "Normal",
  4178. height: math.unit(4, "meters")
  4179. },
  4180. {
  4181. name: "Macro",
  4182. height: math.unit(100, "meters")
  4183. },
  4184. {
  4185. name: "Megamacro",
  4186. height: math.unit(2, "miles"),
  4187. default: true
  4188. },
  4189. {
  4190. name: "Gigamacro",
  4191. height: math.unit(5000, "miles")
  4192. },
  4193. {
  4194. name: "Teramacro",
  4195. height: math.unit(100, "parsecs")
  4196. }
  4197. ]
  4198. ))
  4199. characterMakers.push(() => makeCharacter(
  4200. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4201. {
  4202. front: {
  4203. height: math.unit(2, "meter"),
  4204. weight: math.unit(90, "kg"),
  4205. name: "Front",
  4206. image: {
  4207. source: "./media/characters/gael'rathus/front.svg"
  4208. }
  4209. },
  4210. frontAlt: {
  4211. height: math.unit(2, "meter"),
  4212. weight: math.unit(90, "kg"),
  4213. name: "Front (alt)",
  4214. image: {
  4215. source: "./media/characters/gael'rathus/front-alt.svg"
  4216. }
  4217. },
  4218. frontAlt2: {
  4219. height: math.unit(2, "meter"),
  4220. weight: math.unit(90, "kg"),
  4221. name: "Front (alt 2)",
  4222. image: {
  4223. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4224. }
  4225. }
  4226. },
  4227. [
  4228. {
  4229. name: "Normal",
  4230. height: math.unit(9, "feet"),
  4231. default: true
  4232. },
  4233. {
  4234. name: "Large",
  4235. height: math.unit(25, "feet")
  4236. },
  4237. {
  4238. name: "Macro",
  4239. height: math.unit(0.25, "miles")
  4240. },
  4241. {
  4242. name: "Megamacro",
  4243. height: math.unit(10, "miles")
  4244. }
  4245. ]
  4246. ))
  4247. characterMakers.push(() => makeCharacter(
  4248. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4249. {
  4250. side: {
  4251. height: math.unit(2, "meter"),
  4252. weight: math.unit(140, "kg"),
  4253. name: "Side",
  4254. image: {
  4255. source: "./media/characters/sosha/side.svg",
  4256. extra: 1170/1006,
  4257. bottom: 94/1264
  4258. }
  4259. },
  4260. maw: {
  4261. height: math.unit(2.87, "feet"),
  4262. name: "Maw",
  4263. image: {
  4264. source: "./media/characters/sosha/maw.svg",
  4265. extra: 966/865,
  4266. bottom: 0/966
  4267. }
  4268. },
  4269. cooch: {
  4270. height: math.unit(5.6, "feet"),
  4271. name: "Cooch",
  4272. image: {
  4273. source: "./media/characters/sosha/cooch.svg"
  4274. }
  4275. },
  4276. },
  4277. [
  4278. {
  4279. name: "Normal",
  4280. height: math.unit(12, "feet"),
  4281. default: true
  4282. }
  4283. ]
  4284. ))
  4285. characterMakers.push(() => makeCharacter(
  4286. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4287. {
  4288. side: {
  4289. height: math.unit(5 + 5 / 12, "feet"),
  4290. weight: math.unit(170, "kg"),
  4291. name: "Side",
  4292. image: {
  4293. source: "./media/characters/runnola/side.svg",
  4294. extra: 741 / 448,
  4295. bottom: 0.05
  4296. }
  4297. },
  4298. },
  4299. [
  4300. {
  4301. name: "Small",
  4302. height: math.unit(3, "feet")
  4303. },
  4304. {
  4305. name: "Normal",
  4306. height: math.unit(5 + 5 / 12, "feet"),
  4307. default: true
  4308. },
  4309. {
  4310. name: "Big",
  4311. height: math.unit(10, "feet")
  4312. },
  4313. ]
  4314. ))
  4315. characterMakers.push(() => makeCharacter(
  4316. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4317. {
  4318. front: {
  4319. height: math.unit(2, "meter"),
  4320. weight: math.unit(50, "kg"),
  4321. name: "Front",
  4322. image: {
  4323. source: "./media/characters/kurribird/front.svg",
  4324. bottom: 0.015
  4325. }
  4326. },
  4327. frontAlt: {
  4328. height: math.unit(1.5, "meter"),
  4329. weight: math.unit(50, "kg"),
  4330. name: "Front (Alt)",
  4331. image: {
  4332. source: "./media/characters/kurribird/front-alt.svg",
  4333. extra: 1.45
  4334. }
  4335. },
  4336. },
  4337. [
  4338. {
  4339. name: "Normal",
  4340. height: math.unit(7, "feet")
  4341. },
  4342. {
  4343. name: "Big",
  4344. height: math.unit(12, "feet"),
  4345. default: true
  4346. },
  4347. {
  4348. name: "Macro",
  4349. height: math.unit(1500, "feet")
  4350. },
  4351. {
  4352. name: "Megamacro",
  4353. height: math.unit(2, "miles")
  4354. }
  4355. ]
  4356. ))
  4357. characterMakers.push(() => makeCharacter(
  4358. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4359. {
  4360. front: {
  4361. height: math.unit(2, "meter"),
  4362. weight: math.unit(80, "kg"),
  4363. name: "Front",
  4364. image: {
  4365. source: "./media/characters/elbial/front.svg",
  4366. extra: 1643 / 1556,
  4367. bottom: 60.2 / 1696
  4368. }
  4369. },
  4370. side: {
  4371. height: math.unit(2, "meter"),
  4372. weight: math.unit(80, "kg"),
  4373. name: "Side",
  4374. image: {
  4375. source: "./media/characters/elbial/side.svg",
  4376. extra: 1601/1528,
  4377. bottom: 97/1698
  4378. }
  4379. },
  4380. back: {
  4381. height: math.unit(2, "meter"),
  4382. weight: math.unit(80, "kg"),
  4383. name: "Back",
  4384. image: {
  4385. source: "./media/characters/elbial/back.svg",
  4386. extra: 1653/1569,
  4387. bottom: 20/1673
  4388. }
  4389. },
  4390. frontDressed: {
  4391. height: math.unit(2, "meter"),
  4392. weight: math.unit(80, "kg"),
  4393. name: "Front (Dressed)",
  4394. image: {
  4395. source: "./media/characters/elbial/front-dressed.svg",
  4396. extra: 1638/1569,
  4397. bottom: 70/1708
  4398. }
  4399. },
  4400. genitals: {
  4401. height: math.unit(2 / 3.367, "meter"),
  4402. name: "Genitals",
  4403. image: {
  4404. source: "./media/characters/elbial/genitals.svg"
  4405. }
  4406. },
  4407. },
  4408. [
  4409. {
  4410. name: "Large",
  4411. height: math.unit(100, "feet")
  4412. },
  4413. {
  4414. name: "Macro",
  4415. height: math.unit(500, "feet"),
  4416. default: true
  4417. },
  4418. {
  4419. name: "Megamacro",
  4420. height: math.unit(10, "miles")
  4421. },
  4422. {
  4423. name: "Gigamacro",
  4424. height: math.unit(25000, "miles")
  4425. },
  4426. {
  4427. name: "Full-Size",
  4428. height: math.unit(8000000, "gigaparsecs")
  4429. }
  4430. ]
  4431. ))
  4432. characterMakers.push(() => makeCharacter(
  4433. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4434. {
  4435. front: {
  4436. height: math.unit(2, "meter"),
  4437. weight: math.unit(60, "kg"),
  4438. name: "Front",
  4439. image: {
  4440. source: "./media/characters/noah/front.svg",
  4441. extra: 1383/1313,
  4442. bottom: 104/1487
  4443. }
  4444. },
  4445. hand: {
  4446. height: math.unit(0.6, "feet"),
  4447. name: "Hand",
  4448. image: {
  4449. source: "./media/characters/noah/hand.svg"
  4450. }
  4451. },
  4452. talons: {
  4453. height: math.unit(1.385, "feet"),
  4454. name: "Talons",
  4455. image: {
  4456. source: "./media/characters/noah/talons.svg"
  4457. }
  4458. },
  4459. beak: {
  4460. height: math.unit(0.43, "feet"),
  4461. name: "Beak",
  4462. image: {
  4463. source: "./media/characters/noah/beak.svg"
  4464. }
  4465. },
  4466. collar: {
  4467. height: math.unit(0.88, "feet"),
  4468. name: "Collar",
  4469. image: {
  4470. source: "./media/characters/noah/collar.svg"
  4471. }
  4472. },
  4473. eyeNarrow: {
  4474. height: math.unit(0.18, "feet"),
  4475. name: "Eye (Narrow)",
  4476. image: {
  4477. source: "./media/characters/noah/eye-narrow.svg"
  4478. }
  4479. },
  4480. eyeNormal: {
  4481. height: math.unit(0.18, "feet"),
  4482. name: "Eye (Normal)",
  4483. image: {
  4484. source: "./media/characters/noah/eye-normal.svg"
  4485. }
  4486. },
  4487. eyeWide: {
  4488. height: math.unit(0.18, "feet"),
  4489. name: "Eye (Wide)",
  4490. image: {
  4491. source: "./media/characters/noah/eye-wide.svg"
  4492. }
  4493. },
  4494. ear: {
  4495. height: math.unit(0.64, "feet"),
  4496. name: "Ear",
  4497. image: {
  4498. source: "./media/characters/noah/ear.svg"
  4499. }
  4500. },
  4501. },
  4502. [
  4503. {
  4504. name: "Large",
  4505. height: math.unit(50, "feet")
  4506. },
  4507. {
  4508. name: "Macro",
  4509. height: math.unit(750, "feet"),
  4510. default: true
  4511. },
  4512. {
  4513. name: "Megamacro",
  4514. height: math.unit(50, "miles")
  4515. },
  4516. {
  4517. name: "Gigamacro",
  4518. height: math.unit(100000, "miles")
  4519. },
  4520. {
  4521. name: "Full-Size",
  4522. height: math.unit(3000000000, "miles")
  4523. }
  4524. ]
  4525. ))
  4526. characterMakers.push(() => makeCharacter(
  4527. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4528. {
  4529. front: {
  4530. height: math.unit(2, "meter"),
  4531. weight: math.unit(80, "kg"),
  4532. name: "Front",
  4533. image: {
  4534. source: "./media/characters/natalya/front.svg"
  4535. }
  4536. },
  4537. back: {
  4538. height: math.unit(2, "meter"),
  4539. weight: math.unit(80, "kg"),
  4540. name: "Back",
  4541. image: {
  4542. source: "./media/characters/natalya/back.svg"
  4543. }
  4544. }
  4545. },
  4546. [
  4547. {
  4548. name: "Normal",
  4549. height: math.unit(150, "feet"),
  4550. default: true
  4551. },
  4552. {
  4553. name: "Megamacro",
  4554. height: math.unit(5, "miles")
  4555. },
  4556. {
  4557. name: "Full-Size",
  4558. height: math.unit(600, "kiloparsecs")
  4559. }
  4560. ]
  4561. ))
  4562. characterMakers.push(() => makeCharacter(
  4563. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4564. {
  4565. front: {
  4566. height: math.unit(2, "meter"),
  4567. weight: math.unit(50, "kg"),
  4568. name: "Front",
  4569. image: {
  4570. source: "./media/characters/erestrebah/front.svg",
  4571. extra: 1262/1162,
  4572. bottom: 96/1358
  4573. }
  4574. },
  4575. back: {
  4576. height: math.unit(2, "meter"),
  4577. weight: math.unit(50, "kg"),
  4578. name: "Back",
  4579. image: {
  4580. source: "./media/characters/erestrebah/back.svg",
  4581. extra: 1257/1139,
  4582. bottom: 13/1270
  4583. }
  4584. },
  4585. wing: {
  4586. height: math.unit(2, "meter"),
  4587. weight: math.unit(50, "kg"),
  4588. name: "Wing",
  4589. image: {
  4590. source: "./media/characters/erestrebah/wing.svg",
  4591. extra: 1262/1162,
  4592. bottom: 96/1358
  4593. }
  4594. },
  4595. mouth: {
  4596. height: math.unit(0.39, "feet"),
  4597. name: "Mouth",
  4598. image: {
  4599. source: "./media/characters/erestrebah/mouth.svg"
  4600. }
  4601. }
  4602. },
  4603. [
  4604. {
  4605. name: "Normal",
  4606. height: math.unit(10, "feet")
  4607. },
  4608. {
  4609. name: "Large",
  4610. height: math.unit(50, "feet"),
  4611. default: true
  4612. },
  4613. {
  4614. name: "Macro",
  4615. height: math.unit(300, "feet")
  4616. },
  4617. {
  4618. name: "Macro+",
  4619. height: math.unit(750, "feet")
  4620. },
  4621. {
  4622. name: "Megamacro",
  4623. height: math.unit(3, "miles")
  4624. }
  4625. ]
  4626. ))
  4627. characterMakers.push(() => makeCharacter(
  4628. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4629. {
  4630. front: {
  4631. height: math.unit(2, "meter"),
  4632. weight: math.unit(80, "kg"),
  4633. name: "Front",
  4634. image: {
  4635. source: "./media/characters/jennifer/front.svg",
  4636. bottom: 0.11,
  4637. extra: 1.16
  4638. }
  4639. },
  4640. frontAlt: {
  4641. height: math.unit(2, "meter"),
  4642. weight: math.unit(80, "kg"),
  4643. name: "Front (Alt)",
  4644. image: {
  4645. source: "./media/characters/jennifer/front-alt.svg"
  4646. }
  4647. }
  4648. },
  4649. [
  4650. {
  4651. name: "Canon Height",
  4652. height: math.unit(120, "feet"),
  4653. default: true
  4654. },
  4655. {
  4656. name: "Macro+",
  4657. height: math.unit(300, "feet")
  4658. },
  4659. {
  4660. name: "Megamacro",
  4661. height: math.unit(20000, "feet")
  4662. }
  4663. ]
  4664. ))
  4665. characterMakers.push(() => makeCharacter(
  4666. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4667. {
  4668. front: {
  4669. height: math.unit(2, "meter"),
  4670. weight: math.unit(50, "kg"),
  4671. name: "Front",
  4672. image: {
  4673. source: "./media/characters/kalista/front.svg",
  4674. extra: 1314/1145,
  4675. bottom: 101/1415
  4676. }
  4677. },
  4678. back: {
  4679. height: math.unit(2, "meter"),
  4680. weight: math.unit(50, "kg"),
  4681. name: "Back",
  4682. image: {
  4683. source: "./media/characters/kalista/back.svg",
  4684. extra: 1366 / 1156,
  4685. bottom: 33.9 / 1362.78
  4686. }
  4687. }
  4688. },
  4689. [
  4690. {
  4691. name: "Uncomfortably Small",
  4692. height: math.unit(10, "feet")
  4693. },
  4694. {
  4695. name: "Small",
  4696. height: math.unit(30, "feet")
  4697. },
  4698. {
  4699. name: "Macro",
  4700. height: math.unit(100, "feet"),
  4701. default: true
  4702. },
  4703. {
  4704. name: "Macro+",
  4705. height: math.unit(2000, "feet")
  4706. },
  4707. {
  4708. name: "True Form",
  4709. height: math.unit(8924, "miles")
  4710. }
  4711. ]
  4712. ))
  4713. characterMakers.push(() => makeCharacter(
  4714. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4715. {
  4716. front: {
  4717. height: math.unit(2, "meter"),
  4718. weight: math.unit(120, "kg"),
  4719. name: "Front",
  4720. image: {
  4721. source: "./media/characters/ggv/front.svg"
  4722. }
  4723. },
  4724. side: {
  4725. height: math.unit(2, "meter"),
  4726. weight: math.unit(120, "kg"),
  4727. name: "Side",
  4728. image: {
  4729. source: "./media/characters/ggv/side.svg"
  4730. }
  4731. }
  4732. },
  4733. [
  4734. {
  4735. name: "Extremely Puny",
  4736. height: math.unit(9 + 5 / 12, "feet")
  4737. },
  4738. {
  4739. name: "Horribly Small",
  4740. height: math.unit(47.7, "miles"),
  4741. default: true
  4742. },
  4743. {
  4744. name: "Reasonably Sized",
  4745. height: math.unit(25000, "parsecs")
  4746. },
  4747. {
  4748. name: "Slightly Uncompressed",
  4749. height: math.unit(7.77e31, "parsecs")
  4750. },
  4751. {
  4752. name: "Omniversal",
  4753. height: math.unit(1e300, "meters")
  4754. },
  4755. ]
  4756. ))
  4757. characterMakers.push(() => makeCharacter(
  4758. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4759. {
  4760. front: {
  4761. height: math.unit(2, "meter"),
  4762. weight: math.unit(75, "lb"),
  4763. name: "Front",
  4764. image: {
  4765. source: "./media/characters/napalm/front.svg"
  4766. }
  4767. },
  4768. back: {
  4769. height: math.unit(2, "meter"),
  4770. weight: math.unit(75, "lb"),
  4771. name: "Back",
  4772. image: {
  4773. source: "./media/characters/napalm/back.svg"
  4774. }
  4775. }
  4776. },
  4777. [
  4778. {
  4779. name: "Standard",
  4780. height: math.unit(55, "feet"),
  4781. default: true
  4782. }
  4783. ]
  4784. ))
  4785. characterMakers.push(() => makeCharacter(
  4786. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4787. {
  4788. front: {
  4789. height: math.unit(7 + 5 / 6, "feet"),
  4790. weight: math.unit(325, "lb"),
  4791. name: "Front",
  4792. image: {
  4793. source: "./media/characters/asana/front.svg",
  4794. extra: 1133 / 1060,
  4795. bottom: 15.2 / 1148.6
  4796. }
  4797. },
  4798. back: {
  4799. height: math.unit(7 + 5 / 6, "feet"),
  4800. weight: math.unit(325, "lb"),
  4801. name: "Back",
  4802. image: {
  4803. source: "./media/characters/asana/back.svg",
  4804. extra: 1114 / 1043,
  4805. bottom: 5 / 1120
  4806. }
  4807. },
  4808. dressedDark: {
  4809. height: math.unit(7 + 5 / 6, "feet"),
  4810. weight: math.unit(325, "lb"),
  4811. name: "Dressed (Dark)",
  4812. image: {
  4813. source: "./media/characters/asana/dressed-dark.svg",
  4814. extra: 1133 / 1060,
  4815. bottom: 15.2 / 1148.6
  4816. }
  4817. },
  4818. dressedLight: {
  4819. height: math.unit(7 + 5 / 6, "feet"),
  4820. weight: math.unit(325, "lb"),
  4821. name: "Dressed (Light)",
  4822. image: {
  4823. source: "./media/characters/asana/dressed-light.svg",
  4824. extra: 1133 / 1060,
  4825. bottom: 15.2 / 1148.6
  4826. }
  4827. },
  4828. },
  4829. [
  4830. {
  4831. name: "Standard",
  4832. height: math.unit(7 + 5 / 6, "feet"),
  4833. default: true
  4834. },
  4835. {
  4836. name: "Large",
  4837. height: math.unit(10, "meters")
  4838. },
  4839. {
  4840. name: "Macro",
  4841. height: math.unit(2500, "meters")
  4842. },
  4843. {
  4844. name: "Megamacro",
  4845. height: math.unit(5e6, "meters")
  4846. },
  4847. {
  4848. name: "Examacro",
  4849. height: math.unit(5e12, "lightyears")
  4850. },
  4851. {
  4852. name: "Max Size",
  4853. height: math.unit(1e31, "lightyears")
  4854. }
  4855. ]
  4856. ))
  4857. characterMakers.push(() => makeCharacter(
  4858. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4859. {
  4860. front: {
  4861. height: math.unit(2, "meter"),
  4862. weight: math.unit(60, "kg"),
  4863. name: "Front",
  4864. image: {
  4865. source: "./media/characters/ebony/front.svg",
  4866. bottom: 0.03,
  4867. extra: 1045 / 810 + 0.03
  4868. }
  4869. },
  4870. side: {
  4871. height: math.unit(2, "meter"),
  4872. weight: math.unit(60, "kg"),
  4873. name: "Side",
  4874. image: {
  4875. source: "./media/characters/ebony/side.svg",
  4876. bottom: 0.03,
  4877. extra: 1045 / 810 + 0.03
  4878. }
  4879. },
  4880. back: {
  4881. height: math.unit(2, "meter"),
  4882. weight: math.unit(60, "kg"),
  4883. name: "Back",
  4884. image: {
  4885. source: "./media/characters/ebony/back.svg",
  4886. bottom: 0.01,
  4887. extra: 1045 / 810 + 0.01
  4888. }
  4889. },
  4890. },
  4891. [
  4892. // TODO check why I did this lol
  4893. {
  4894. name: "Standard",
  4895. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4896. default: true
  4897. },
  4898. {
  4899. name: "Macro",
  4900. height: math.unit(200, "feet")
  4901. },
  4902. {
  4903. name: "Gigamacro",
  4904. height: math.unit(13000, "km")
  4905. }
  4906. ]
  4907. ))
  4908. characterMakers.push(() => makeCharacter(
  4909. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4910. {
  4911. front: {
  4912. height: math.unit(6, "feet"),
  4913. weight: math.unit(175, "lb"),
  4914. name: "Front",
  4915. image: {
  4916. source: "./media/characters/mountain/front.svg",
  4917. extra: 972 / 955,
  4918. bottom: 64 / 1036.6
  4919. }
  4920. },
  4921. back: {
  4922. height: math.unit(6, "feet"),
  4923. weight: math.unit(175, "lb"),
  4924. name: "Back",
  4925. image: {
  4926. source: "./media/characters/mountain/back.svg",
  4927. extra: 970 / 950,
  4928. bottom: 28.25 / 999
  4929. }
  4930. },
  4931. },
  4932. [
  4933. {
  4934. name: "Large",
  4935. height: math.unit(20, "meters")
  4936. },
  4937. {
  4938. name: "Macro",
  4939. height: math.unit(300, "meters")
  4940. },
  4941. {
  4942. name: "Gigamacro",
  4943. height: math.unit(10000, "km"),
  4944. default: true
  4945. },
  4946. {
  4947. name: "Examacro",
  4948. height: math.unit(10e9, "lightyears")
  4949. }
  4950. ]
  4951. ))
  4952. characterMakers.push(() => makeCharacter(
  4953. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4954. {
  4955. front: {
  4956. height: math.unit(8, "feet"),
  4957. weight: math.unit(500, "lb"),
  4958. name: "Front",
  4959. image: {
  4960. source: "./media/characters/rick/front.svg"
  4961. }
  4962. }
  4963. },
  4964. [
  4965. {
  4966. name: "Normal",
  4967. height: math.unit(8, "feet"),
  4968. default: true
  4969. },
  4970. {
  4971. name: "Macro",
  4972. height: math.unit(5, "km")
  4973. }
  4974. ]
  4975. ))
  4976. characterMakers.push(() => makeCharacter(
  4977. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4978. {
  4979. front: {
  4980. height: math.unit(8, "feet"),
  4981. weight: math.unit(120, "lb"),
  4982. name: "Front",
  4983. image: {
  4984. source: "./media/characters/ona/front.svg"
  4985. }
  4986. },
  4987. frontAlt: {
  4988. height: math.unit(8, "feet"),
  4989. weight: math.unit(120, "lb"),
  4990. name: "Front (Alt)",
  4991. image: {
  4992. source: "./media/characters/ona/front-alt.svg"
  4993. }
  4994. },
  4995. back: {
  4996. height: math.unit(8, "feet"),
  4997. weight: math.unit(120, "lb"),
  4998. name: "Back",
  4999. image: {
  5000. source: "./media/characters/ona/back.svg"
  5001. }
  5002. },
  5003. foot: {
  5004. height: math.unit(1.1, "feet"),
  5005. name: "Foot",
  5006. image: {
  5007. source: "./media/characters/ona/foot.svg"
  5008. }
  5009. }
  5010. },
  5011. [
  5012. {
  5013. name: "Megamacro",
  5014. height: math.unit(70, "km"),
  5015. default: true
  5016. },
  5017. {
  5018. name: "Gigamacro",
  5019. height: math.unit(681818, "miles")
  5020. },
  5021. {
  5022. name: "Examacro",
  5023. height: math.unit(3800000, "lightyears")
  5024. },
  5025. ]
  5026. ))
  5027. characterMakers.push(() => makeCharacter(
  5028. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  5029. {
  5030. front: {
  5031. height: math.unit(12, "feet"),
  5032. weight: math.unit(3000, "lb"),
  5033. name: "Front",
  5034. image: {
  5035. source: "./media/characters/mech/front.svg",
  5036. extra: 2900 / 2770,
  5037. bottom: 110 / 3010
  5038. }
  5039. },
  5040. back: {
  5041. height: math.unit(12, "feet"),
  5042. weight: math.unit(3000, "lb"),
  5043. name: "Back",
  5044. image: {
  5045. source: "./media/characters/mech/back.svg",
  5046. extra: 3011 / 2890,
  5047. bottom: 94 / 3105
  5048. }
  5049. },
  5050. maw: {
  5051. height: math.unit(3.07, "feet"),
  5052. name: "Maw",
  5053. image: {
  5054. source: "./media/characters/mech/maw.svg"
  5055. }
  5056. },
  5057. head: {
  5058. height: math.unit(3.07, "feet"),
  5059. name: "Head",
  5060. image: {
  5061. source: "./media/characters/mech/head.svg"
  5062. }
  5063. },
  5064. dick: {
  5065. height: math.unit(1.43, "feet"),
  5066. name: "Dick",
  5067. image: {
  5068. source: "./media/characters/mech/dick.svg"
  5069. }
  5070. },
  5071. },
  5072. [
  5073. {
  5074. name: "Normal",
  5075. height: math.unit(12, "feet")
  5076. },
  5077. {
  5078. name: "Macro",
  5079. height: math.unit(300, "feet"),
  5080. default: true
  5081. },
  5082. {
  5083. name: "Macro+",
  5084. height: math.unit(1500, "feet")
  5085. },
  5086. ]
  5087. ))
  5088. characterMakers.push(() => makeCharacter(
  5089. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5090. {
  5091. front: {
  5092. height: math.unit(1.3, "meter"),
  5093. weight: math.unit(30, "kg"),
  5094. name: "Front",
  5095. image: {
  5096. source: "./media/characters/gregory/front.svg",
  5097. }
  5098. }
  5099. },
  5100. [
  5101. {
  5102. name: "Normal",
  5103. height: math.unit(1.3, "meter"),
  5104. default: true
  5105. },
  5106. {
  5107. name: "Macro",
  5108. height: math.unit(20, "meter")
  5109. }
  5110. ]
  5111. ))
  5112. characterMakers.push(() => makeCharacter(
  5113. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5114. {
  5115. front: {
  5116. height: math.unit(2.8, "meter"),
  5117. weight: math.unit(200, "kg"),
  5118. name: "Front",
  5119. image: {
  5120. source: "./media/characters/elory/front.svg",
  5121. }
  5122. }
  5123. },
  5124. [
  5125. {
  5126. name: "Normal",
  5127. height: math.unit(2.8, "meter"),
  5128. default: true
  5129. },
  5130. {
  5131. name: "Macro",
  5132. height: math.unit(38, "meter")
  5133. }
  5134. ]
  5135. ))
  5136. characterMakers.push(() => makeCharacter(
  5137. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5138. {
  5139. front: {
  5140. height: math.unit(470, "feet"),
  5141. weight: math.unit(924, "tons"),
  5142. name: "Front",
  5143. image: {
  5144. source: "./media/characters/angelpatamon/front.svg",
  5145. }
  5146. }
  5147. },
  5148. [
  5149. {
  5150. name: "Normal",
  5151. height: math.unit(470, "feet"),
  5152. default: true
  5153. },
  5154. {
  5155. name: "Deity Size I",
  5156. height: math.unit(28651.2, "km")
  5157. },
  5158. {
  5159. name: "Deity Size II",
  5160. height: math.unit(171907.2, "km")
  5161. }
  5162. ]
  5163. ))
  5164. characterMakers.push(() => makeCharacter(
  5165. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5166. {
  5167. side: {
  5168. height: math.unit(7.2, "meter"),
  5169. weight: math.unit(8.2, "tons"),
  5170. name: "Side",
  5171. image: {
  5172. source: "./media/characters/cryae/side.svg",
  5173. extra: 3500 / 1500
  5174. }
  5175. }
  5176. },
  5177. [
  5178. {
  5179. name: "Normal",
  5180. height: math.unit(7.2, "meter"),
  5181. default: true
  5182. }
  5183. ]
  5184. ))
  5185. characterMakers.push(() => makeCharacter(
  5186. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5187. {
  5188. front: {
  5189. height: math.unit(6, "feet"),
  5190. weight: math.unit(175, "lb"),
  5191. name: "Front",
  5192. image: {
  5193. source: "./media/characters/xera/front.svg",
  5194. extra: 2377 / 1972,
  5195. bottom: 75.5 / 2452
  5196. }
  5197. },
  5198. side: {
  5199. height: math.unit(6, "feet"),
  5200. weight: math.unit(175, "lb"),
  5201. name: "Side",
  5202. image: {
  5203. source: "./media/characters/xera/side.svg",
  5204. extra: 2345 / 2019,
  5205. bottom: 39.7 / 2384
  5206. }
  5207. },
  5208. back: {
  5209. height: math.unit(6, "feet"),
  5210. weight: math.unit(175, "lb"),
  5211. name: "Back",
  5212. image: {
  5213. source: "./media/characters/xera/back.svg",
  5214. extra: 2095 / 1984,
  5215. bottom: 67 / 2166
  5216. }
  5217. },
  5218. },
  5219. [
  5220. {
  5221. name: "Small",
  5222. height: math.unit(10, "feet")
  5223. },
  5224. {
  5225. name: "Macro",
  5226. height: math.unit(500, "meters"),
  5227. default: true
  5228. },
  5229. {
  5230. name: "Macro+",
  5231. height: math.unit(10, "km")
  5232. },
  5233. {
  5234. name: "Gigamacro",
  5235. height: math.unit(25000, "km")
  5236. },
  5237. {
  5238. name: "Teramacro",
  5239. height: math.unit(3e6, "km")
  5240. }
  5241. ]
  5242. ))
  5243. characterMakers.push(() => makeCharacter(
  5244. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5245. {
  5246. front: {
  5247. height: math.unit(6, "feet"),
  5248. weight: math.unit(175, "lb"),
  5249. name: "Front",
  5250. image: {
  5251. source: "./media/characters/nebula/front.svg",
  5252. extra: 2566 / 2362,
  5253. bottom: 81 / 2644
  5254. }
  5255. }
  5256. },
  5257. [
  5258. {
  5259. name: "Small",
  5260. height: math.unit(4.5, "meters")
  5261. },
  5262. {
  5263. name: "Macro",
  5264. height: math.unit(1500, "meters"),
  5265. default: true
  5266. },
  5267. {
  5268. name: "Megamacro",
  5269. height: math.unit(150, "km")
  5270. },
  5271. {
  5272. name: "Gigamacro",
  5273. height: math.unit(27000, "km")
  5274. }
  5275. ]
  5276. ))
  5277. characterMakers.push(() => makeCharacter(
  5278. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5279. {
  5280. front: {
  5281. height: math.unit(6, "feet"),
  5282. weight: math.unit(225, "lb"),
  5283. name: "Front",
  5284. image: {
  5285. source: "./media/characters/abysgar/front.svg",
  5286. extra: 1739/1614,
  5287. bottom: 71/1810
  5288. }
  5289. },
  5290. frontNsfw: {
  5291. height: math.unit(6, "feet"),
  5292. weight: math.unit(225, "lb"),
  5293. name: "Front (NSFW)",
  5294. image: {
  5295. source: "./media/characters/abysgar/front-nsfw.svg",
  5296. extra: 1739/1614,
  5297. bottom: 71/1810
  5298. }
  5299. },
  5300. back: {
  5301. height: math.unit(4.6, "feet"),
  5302. weight: math.unit(225, "lb"),
  5303. name: "Back",
  5304. image: {
  5305. source: "./media/characters/abysgar/back.svg",
  5306. extra: 1384/1327,
  5307. bottom: 0/1384
  5308. }
  5309. },
  5310. head: {
  5311. height: math.unit(1.25, "feet"),
  5312. name: "Head",
  5313. image: {
  5314. source: "./media/characters/abysgar/head.svg",
  5315. extra: 669/569,
  5316. bottom: 0/669
  5317. }
  5318. },
  5319. },
  5320. [
  5321. {
  5322. name: "Small",
  5323. height: math.unit(4.5, "meters")
  5324. },
  5325. {
  5326. name: "Macro",
  5327. height: math.unit(1250, "meters"),
  5328. default: true
  5329. },
  5330. {
  5331. name: "Megamacro",
  5332. height: math.unit(125, "km")
  5333. },
  5334. {
  5335. name: "Gigamacro",
  5336. height: math.unit(26000, "km")
  5337. }
  5338. ]
  5339. ))
  5340. characterMakers.push(() => makeCharacter(
  5341. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5342. {
  5343. front: {
  5344. height: math.unit(6, "feet"),
  5345. weight: math.unit(180, "lb"),
  5346. name: "Front",
  5347. image: {
  5348. source: "./media/characters/yakuz/front.svg"
  5349. }
  5350. }
  5351. },
  5352. [
  5353. {
  5354. name: "Small",
  5355. height: math.unit(5, "meters")
  5356. },
  5357. {
  5358. name: "Macro",
  5359. height: math.unit(1500, "meters"),
  5360. default: true
  5361. },
  5362. {
  5363. name: "Megamacro",
  5364. height: math.unit(200, "km")
  5365. },
  5366. {
  5367. name: "Gigamacro",
  5368. height: math.unit(100000, "km")
  5369. }
  5370. ]
  5371. ))
  5372. characterMakers.push(() => makeCharacter(
  5373. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5374. {
  5375. front: {
  5376. height: math.unit(6, "feet"),
  5377. weight: math.unit(175, "lb"),
  5378. name: "Front",
  5379. image: {
  5380. source: "./media/characters/mirova/front.svg",
  5381. extra: 3334 / 3071,
  5382. bottom: 42 / 3375.6
  5383. }
  5384. }
  5385. },
  5386. [
  5387. {
  5388. name: "Small",
  5389. height: math.unit(5, "meters")
  5390. },
  5391. {
  5392. name: "Macro",
  5393. height: math.unit(900, "meters"),
  5394. default: true
  5395. },
  5396. {
  5397. name: "Megamacro",
  5398. height: math.unit(135, "km")
  5399. },
  5400. {
  5401. name: "Gigamacro",
  5402. height: math.unit(20000, "km")
  5403. }
  5404. ]
  5405. ))
  5406. characterMakers.push(() => makeCharacter(
  5407. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5408. {
  5409. side: {
  5410. height: math.unit(28.35, "feet"),
  5411. weight: math.unit(99.75, "tons"),
  5412. name: "Side",
  5413. image: {
  5414. source: "./media/characters/asana-mech/side.svg",
  5415. extra: 923 / 699,
  5416. bottom: 50 / 975
  5417. }
  5418. },
  5419. chaingun: {
  5420. height: math.unit(7, "feet"),
  5421. weight: math.unit(2400, "lb"),
  5422. name: "Chaingun",
  5423. image: {
  5424. source: "./media/characters/asana-mech/chaingun.svg"
  5425. }
  5426. },
  5427. laser: {
  5428. height: math.unit(7.12, "feet"),
  5429. weight: math.unit(2000, "lb"),
  5430. name: "Laser",
  5431. image: {
  5432. source: "./media/characters/asana-mech/laser.svg"
  5433. }
  5434. },
  5435. },
  5436. [
  5437. {
  5438. name: "Normal",
  5439. height: math.unit(28.35, "feet"),
  5440. default: true
  5441. },
  5442. {
  5443. name: "Macro",
  5444. height: math.unit(2500, "feet")
  5445. },
  5446. {
  5447. name: "Megamacro",
  5448. height: math.unit(25, "miles")
  5449. },
  5450. {
  5451. name: "Examacro",
  5452. height: math.unit(6e8, "lightyears")
  5453. },
  5454. ]
  5455. ))
  5456. characterMakers.push(() => makeCharacter(
  5457. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5458. {
  5459. front: {
  5460. height: math.unit(5, "meters"),
  5461. weight: math.unit(1000, "kg"),
  5462. name: "Front",
  5463. image: {
  5464. source: "./media/characters/asche/front.svg",
  5465. extra: 1258 / 1190,
  5466. bottom: 47 / 1305
  5467. }
  5468. },
  5469. frontUnderwear: {
  5470. height: math.unit(5, "meters"),
  5471. weight: math.unit(1000, "kg"),
  5472. name: "Front (Underwear)",
  5473. image: {
  5474. source: "./media/characters/asche/front-underwear.svg",
  5475. extra: 1258 / 1190,
  5476. bottom: 47 / 1305
  5477. }
  5478. },
  5479. frontDressed: {
  5480. height: math.unit(5, "meters"),
  5481. weight: math.unit(1000, "kg"),
  5482. name: "Front (Dressed)",
  5483. image: {
  5484. source: "./media/characters/asche/front-dressed.svg",
  5485. extra: 1258 / 1190,
  5486. bottom: 47 / 1305
  5487. }
  5488. },
  5489. frontArmor: {
  5490. height: math.unit(5, "meters"),
  5491. weight: math.unit(1000, "kg"),
  5492. name: "Front (Armored)",
  5493. image: {
  5494. source: "./media/characters/asche/front-armored.svg",
  5495. extra: 1374 / 1308,
  5496. bottom: 23 / 1397
  5497. }
  5498. },
  5499. mp724: {
  5500. height: math.unit(0.96, "meters"),
  5501. weight: math.unit(38, "kg"),
  5502. name: "H&K MP724",
  5503. image: {
  5504. source: "./media/characters/asche/h&k-mp724.svg"
  5505. }
  5506. },
  5507. side: {
  5508. height: math.unit(5, "meters"),
  5509. weight: math.unit(1000, "kg"),
  5510. name: "Side",
  5511. image: {
  5512. source: "./media/characters/asche/side.svg",
  5513. extra: 1717 / 1609,
  5514. bottom: 0.005
  5515. }
  5516. },
  5517. back: {
  5518. height: math.unit(5, "meters"),
  5519. weight: math.unit(1000, "kg"),
  5520. name: "Back",
  5521. image: {
  5522. source: "./media/characters/asche/back.svg",
  5523. extra: 1570 / 1501
  5524. }
  5525. },
  5526. },
  5527. [
  5528. {
  5529. name: "DEFCON 5",
  5530. height: math.unit(5, "meters")
  5531. },
  5532. {
  5533. name: "DEFCON 4",
  5534. height: math.unit(500, "meters"),
  5535. default: true
  5536. },
  5537. {
  5538. name: "DEFCON 3",
  5539. height: math.unit(5, "km")
  5540. },
  5541. {
  5542. name: "DEFCON 2",
  5543. height: math.unit(500, "km")
  5544. },
  5545. {
  5546. name: "DEFCON 1",
  5547. height: math.unit(500000, "km")
  5548. },
  5549. {
  5550. name: "DEFCON 0",
  5551. height: math.unit(3, "gigaparsecs")
  5552. },
  5553. ]
  5554. ))
  5555. characterMakers.push(() => makeCharacter(
  5556. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5557. {
  5558. front: {
  5559. height: math.unit(7, "feet"),
  5560. weight: math.unit(92.7, "kg"),
  5561. name: "Front",
  5562. image: {
  5563. source: "./media/characters/gale/front.svg",
  5564. extra: 977/919,
  5565. bottom: 105/1082
  5566. }
  5567. },
  5568. side: {
  5569. height: math.unit(6.7, "feet"),
  5570. weight: math.unit(92.7, "kg"),
  5571. name: "Side",
  5572. image: {
  5573. source: "./media/characters/gale/side.svg",
  5574. extra: 978/922,
  5575. bottom: 140/1118
  5576. }
  5577. },
  5578. back: {
  5579. height: math.unit(7, "feet"),
  5580. weight: math.unit(92.7, "kg"),
  5581. name: "Back",
  5582. image: {
  5583. source: "./media/characters/gale/back.svg",
  5584. extra: 966/920,
  5585. bottom: 61/1027
  5586. }
  5587. },
  5588. maw: {
  5589. height: math.unit(2.23, "feet"),
  5590. name: "Maw",
  5591. image: {
  5592. source: "./media/characters/gale/maw.svg"
  5593. }
  5594. },
  5595. foot: {
  5596. height: math.unit(2.1, "feet"),
  5597. name: "Foot",
  5598. image: {
  5599. source: "./media/characters/gale/foot.svg"
  5600. }
  5601. },
  5602. },
  5603. [
  5604. {
  5605. name: "Normal",
  5606. height: math.unit(7, "feet")
  5607. },
  5608. {
  5609. name: "Macro",
  5610. height: math.unit(150, "feet"),
  5611. default: true
  5612. },
  5613. {
  5614. name: "Macro+",
  5615. height: math.unit(300, "feet")
  5616. },
  5617. ]
  5618. ))
  5619. characterMakers.push(() => makeCharacter(
  5620. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5621. {
  5622. front: {
  5623. height: math.unit(5 + 10/12, "feet"),
  5624. weight: math.unit(67, "kg"),
  5625. name: "Front",
  5626. image: {
  5627. source: "./media/characters/draylen/front.svg",
  5628. extra: 832/777,
  5629. bottom: 85/917
  5630. }
  5631. }
  5632. },
  5633. [
  5634. {
  5635. name: "Normal",
  5636. height: math.unit(5 + 10/12, "feet")
  5637. },
  5638. {
  5639. name: "Macro",
  5640. height: math.unit(150, "feet"),
  5641. default: true
  5642. }
  5643. ]
  5644. ))
  5645. characterMakers.push(() => makeCharacter(
  5646. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5647. {
  5648. front: {
  5649. height: math.unit(7 + 9 / 12, "feet"),
  5650. weight: math.unit(379, "lbs"),
  5651. name: "Front",
  5652. image: {
  5653. source: "./media/characters/chez/front.svg"
  5654. }
  5655. },
  5656. side: {
  5657. height: math.unit(7 + 9 / 12, "feet"),
  5658. weight: math.unit(379, "lbs"),
  5659. name: "Side",
  5660. image: {
  5661. source: "./media/characters/chez/side.svg"
  5662. }
  5663. }
  5664. },
  5665. [
  5666. {
  5667. name: "Normal",
  5668. height: math.unit(7 + 9 / 12, "feet"),
  5669. default: true
  5670. },
  5671. {
  5672. name: "God King",
  5673. height: math.unit(9750000, "meters")
  5674. }
  5675. ]
  5676. ))
  5677. characterMakers.push(() => makeCharacter(
  5678. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5679. {
  5680. front: {
  5681. height: math.unit(6, "feet"),
  5682. weight: math.unit(275, "lbs"),
  5683. name: "Front",
  5684. image: {
  5685. source: "./media/characters/kaylum/front.svg",
  5686. bottom: 0.01,
  5687. extra: 1166 / 1031
  5688. }
  5689. },
  5690. frontWingless: {
  5691. height: math.unit(6, "feet"),
  5692. weight: math.unit(275, "lbs"),
  5693. name: "Front (Wingless)",
  5694. image: {
  5695. source: "./media/characters/kaylum/front-wingless.svg",
  5696. bottom: 0.01,
  5697. extra: 1117 / 1031
  5698. }
  5699. }
  5700. },
  5701. [
  5702. {
  5703. name: "Normal",
  5704. height: math.unit(3.05, "meters")
  5705. },
  5706. {
  5707. name: "Master",
  5708. height: math.unit(5.5, "meters")
  5709. },
  5710. {
  5711. name: "Rampage",
  5712. height: math.unit(19, "meters")
  5713. },
  5714. {
  5715. name: "Macro Lite",
  5716. height: math.unit(37, "meters")
  5717. },
  5718. {
  5719. name: "Hyper Predator",
  5720. height: math.unit(61, "meters")
  5721. },
  5722. {
  5723. name: "Macro",
  5724. height: math.unit(138, "meters"),
  5725. default: true
  5726. }
  5727. ]
  5728. ))
  5729. characterMakers.push(() => makeCharacter(
  5730. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5731. {
  5732. front: {
  5733. height: math.unit(5 + 5 / 12, "feet"),
  5734. weight: math.unit(120, "lbs"),
  5735. name: "Front",
  5736. image: {
  5737. source: "./media/characters/geta/front.svg",
  5738. extra: 1003/933,
  5739. bottom: 21/1024
  5740. }
  5741. },
  5742. paw: {
  5743. height: math.unit(0.35, "feet"),
  5744. name: "Paw",
  5745. image: {
  5746. source: "./media/characters/geta/paw.svg"
  5747. }
  5748. },
  5749. },
  5750. [
  5751. {
  5752. name: "Micro",
  5753. height: math.unit(3, "inches"),
  5754. default: true
  5755. },
  5756. {
  5757. name: "Normal",
  5758. height: math.unit(5 + 5 / 12, "feet")
  5759. }
  5760. ]
  5761. ))
  5762. characterMakers.push(() => makeCharacter(
  5763. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5764. {
  5765. front: {
  5766. height: math.unit(6, "feet"),
  5767. weight: math.unit(300, "lbs"),
  5768. name: "Front",
  5769. image: {
  5770. source: "./media/characters/tyrnn/front.svg"
  5771. }
  5772. }
  5773. },
  5774. [
  5775. {
  5776. name: "Main Height",
  5777. height: math.unit(355, "feet"),
  5778. default: true
  5779. },
  5780. {
  5781. name: "Fave. Height",
  5782. height: math.unit(2400, "feet")
  5783. }
  5784. ]
  5785. ))
  5786. characterMakers.push(() => makeCharacter(
  5787. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5788. {
  5789. front: {
  5790. height: math.unit(6, "feet"),
  5791. weight: math.unit(300, "lbs"),
  5792. name: "Front",
  5793. image: {
  5794. source: "./media/characters/appledectomy/front.svg"
  5795. }
  5796. }
  5797. },
  5798. [
  5799. {
  5800. name: "Macro",
  5801. height: math.unit(2500, "feet")
  5802. },
  5803. {
  5804. name: "Megamacro",
  5805. height: math.unit(50, "miles"),
  5806. default: true
  5807. },
  5808. {
  5809. name: "Gigamacro",
  5810. height: math.unit(5000, "miles")
  5811. },
  5812. {
  5813. name: "Teramacro",
  5814. height: math.unit(250000, "miles")
  5815. },
  5816. ]
  5817. ))
  5818. characterMakers.push(() => makeCharacter(
  5819. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5820. {
  5821. front: {
  5822. height: math.unit(6, "feet"),
  5823. weight: math.unit(200, "lbs"),
  5824. name: "Front",
  5825. image: {
  5826. source: "./media/characters/vulpes/front.svg",
  5827. extra: 573 / 543,
  5828. bottom: 0.033
  5829. }
  5830. },
  5831. side: {
  5832. height: math.unit(6, "feet"),
  5833. weight: math.unit(200, "lbs"),
  5834. name: "Side",
  5835. image: {
  5836. source: "./media/characters/vulpes/side.svg",
  5837. extra: 577 / 549,
  5838. bottom: 11 / 588
  5839. }
  5840. },
  5841. back: {
  5842. height: math.unit(6, "feet"),
  5843. weight: math.unit(200, "lbs"),
  5844. name: "Back",
  5845. image: {
  5846. source: "./media/characters/vulpes/back.svg",
  5847. extra: 573 / 549,
  5848. bottom: 20 / 593
  5849. }
  5850. },
  5851. feet: {
  5852. height: math.unit(1.276, "feet"),
  5853. name: "Feet",
  5854. image: {
  5855. source: "./media/characters/vulpes/feet.svg"
  5856. }
  5857. },
  5858. maw: {
  5859. height: math.unit(1.18, "feet"),
  5860. name: "Maw",
  5861. image: {
  5862. source: "./media/characters/vulpes/maw.svg"
  5863. }
  5864. },
  5865. },
  5866. [
  5867. {
  5868. name: "Micro",
  5869. height: math.unit(2, "inches")
  5870. },
  5871. {
  5872. name: "Normal",
  5873. height: math.unit(6.3, "feet")
  5874. },
  5875. {
  5876. name: "Macro",
  5877. height: math.unit(850, "feet")
  5878. },
  5879. {
  5880. name: "Megamacro",
  5881. height: math.unit(7500, "feet"),
  5882. default: true
  5883. },
  5884. {
  5885. name: "Gigamacro",
  5886. height: math.unit(570000, "miles")
  5887. }
  5888. ]
  5889. ))
  5890. characterMakers.push(() => makeCharacter(
  5891. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5892. {
  5893. front: {
  5894. height: math.unit(6, "feet"),
  5895. weight: math.unit(210, "lbs"),
  5896. name: "Front",
  5897. image: {
  5898. source: "./media/characters/rain-fallen/front.svg"
  5899. }
  5900. },
  5901. side: {
  5902. height: math.unit(6, "feet"),
  5903. weight: math.unit(210, "lbs"),
  5904. name: "Side",
  5905. image: {
  5906. source: "./media/characters/rain-fallen/side.svg"
  5907. }
  5908. },
  5909. back: {
  5910. height: math.unit(6, "feet"),
  5911. weight: math.unit(210, "lbs"),
  5912. name: "Back",
  5913. image: {
  5914. source: "./media/characters/rain-fallen/back.svg"
  5915. }
  5916. },
  5917. feral: {
  5918. height: math.unit(9, "feet"),
  5919. weight: math.unit(700, "lbs"),
  5920. name: "Feral",
  5921. image: {
  5922. source: "./media/characters/rain-fallen/feral.svg"
  5923. }
  5924. },
  5925. },
  5926. [
  5927. {
  5928. name: "Meddling with Mortals",
  5929. height: math.unit(8 + 8/12, "feet")
  5930. },
  5931. {
  5932. name: "Normal",
  5933. height: math.unit(5, "meter")
  5934. },
  5935. {
  5936. name: "Macro",
  5937. height: math.unit(150, "meter"),
  5938. default: true
  5939. },
  5940. {
  5941. name: "Megamacro",
  5942. height: math.unit(278e6, "meter")
  5943. },
  5944. {
  5945. name: "Gigamacro",
  5946. height: math.unit(2e9, "meter")
  5947. },
  5948. {
  5949. name: "Teramacro",
  5950. height: math.unit(8e12, "meter")
  5951. },
  5952. {
  5953. name: "Devourer",
  5954. height: math.unit(14, "zettameters")
  5955. },
  5956. {
  5957. name: "Scarlet King",
  5958. height: math.unit(18, "yottameters")
  5959. },
  5960. {
  5961. name: "Void",
  5962. height: math.unit(1e88, "yottameters")
  5963. }
  5964. ]
  5965. ))
  5966. characterMakers.push(() => makeCharacter(
  5967. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5968. {
  5969. standing: {
  5970. height: math.unit(6, "feet"),
  5971. weight: math.unit(180, "lbs"),
  5972. name: "Standing",
  5973. image: {
  5974. source: "./media/characters/zaakira/standing.svg",
  5975. extra: 1599/1504,
  5976. bottom: 39/1638
  5977. }
  5978. },
  5979. laying: {
  5980. height: math.unit(3.3, "feet"),
  5981. weight: math.unit(180, "lbs"),
  5982. name: "Laying",
  5983. image: {
  5984. source: "./media/characters/zaakira/laying.svg"
  5985. }
  5986. },
  5987. },
  5988. [
  5989. {
  5990. name: "Normal",
  5991. height: math.unit(12, "feet")
  5992. },
  5993. {
  5994. name: "Macro",
  5995. height: math.unit(279, "feet"),
  5996. default: true
  5997. }
  5998. ]
  5999. ))
  6000. characterMakers.push(() => makeCharacter(
  6001. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  6002. {
  6003. femSfw: {
  6004. height: math.unit(8, "feet"),
  6005. weight: math.unit(350, "lb"),
  6006. name: "Fem",
  6007. image: {
  6008. source: "./media/characters/sigvald/fem-sfw.svg",
  6009. extra: 182 / 164,
  6010. bottom: 8.7 / 190.5
  6011. }
  6012. },
  6013. femNsfw: {
  6014. height: math.unit(8, "feet"),
  6015. weight: math.unit(350, "lb"),
  6016. name: "Fem (NSFW)",
  6017. image: {
  6018. source: "./media/characters/sigvald/fem-nsfw.svg",
  6019. extra: 182 / 164,
  6020. bottom: 8.7 / 190.5
  6021. }
  6022. },
  6023. maleNsfw: {
  6024. height: math.unit(8, "feet"),
  6025. weight: math.unit(350, "lb"),
  6026. name: "Male (NSFW)",
  6027. image: {
  6028. source: "./media/characters/sigvald/male-nsfw.svg",
  6029. extra: 182 / 164,
  6030. bottom: 8.7 / 190.5
  6031. }
  6032. },
  6033. hermNsfw: {
  6034. height: math.unit(8, "feet"),
  6035. weight: math.unit(350, "lb"),
  6036. name: "Herm (NSFW)",
  6037. image: {
  6038. source: "./media/characters/sigvald/herm-nsfw.svg",
  6039. extra: 182 / 164,
  6040. bottom: 8.7 / 190.5
  6041. }
  6042. },
  6043. dick: {
  6044. height: math.unit(2.36, "feet"),
  6045. name: "Dick",
  6046. image: {
  6047. source: "./media/characters/sigvald/dick.svg"
  6048. }
  6049. },
  6050. eye: {
  6051. height: math.unit(0.31, "feet"),
  6052. name: "Eye",
  6053. image: {
  6054. source: "./media/characters/sigvald/eye.svg"
  6055. }
  6056. },
  6057. mouth: {
  6058. height: math.unit(0.92, "feet"),
  6059. name: "Mouth",
  6060. image: {
  6061. source: "./media/characters/sigvald/mouth.svg"
  6062. }
  6063. },
  6064. paws: {
  6065. height: math.unit(2.2, "feet"),
  6066. name: "Paws",
  6067. image: {
  6068. source: "./media/characters/sigvald/paws.svg"
  6069. }
  6070. }
  6071. },
  6072. [
  6073. {
  6074. name: "Normal",
  6075. height: math.unit(8, "feet")
  6076. },
  6077. {
  6078. name: "Large",
  6079. height: math.unit(12, "feet")
  6080. },
  6081. {
  6082. name: "Larger",
  6083. height: math.unit(20, "feet")
  6084. },
  6085. {
  6086. name: "Macro",
  6087. height: math.unit(150, "feet")
  6088. },
  6089. {
  6090. name: "Macro+",
  6091. height: math.unit(200, "feet"),
  6092. default: true
  6093. },
  6094. ]
  6095. ))
  6096. characterMakers.push(() => makeCharacter(
  6097. { name: "Scott", species: ["fox"], tags: ["taur"] },
  6098. {
  6099. side: {
  6100. height: math.unit(12, "feet"),
  6101. weight: math.unit(2000, "kg"),
  6102. name: "Side",
  6103. image: {
  6104. source: "./media/characters/scott/side.svg",
  6105. extra: 754 / 724,
  6106. bottom: 0.069
  6107. }
  6108. },
  6109. upright: {
  6110. height: math.unit(12, "feet"),
  6111. weight: math.unit(2000, "kg"),
  6112. name: "Upright",
  6113. image: {
  6114. source: "./media/characters/scott/upright.svg",
  6115. extra: 3881 / 3722,
  6116. bottom: 0.05
  6117. }
  6118. },
  6119. },
  6120. [
  6121. {
  6122. name: "Normal",
  6123. height: math.unit(12, "feet"),
  6124. default: true
  6125. },
  6126. ]
  6127. ))
  6128. characterMakers.push(() => makeCharacter(
  6129. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6130. {
  6131. side: {
  6132. height: math.unit(8, "meters"),
  6133. weight: math.unit(84755, "lbs"),
  6134. name: "Side",
  6135. image: {
  6136. source: "./media/characters/tobias/side.svg",
  6137. extra: 1474 / 1096,
  6138. bottom: 38.9 / 1513.1235
  6139. }
  6140. },
  6141. maw: {
  6142. height: math.unit(2.3, "meters"),
  6143. name: "Maw",
  6144. image: {
  6145. source: "./media/characters/tobias/maw.svg"
  6146. }
  6147. },
  6148. burp: {
  6149. height: math.unit(2.85, "meters"),
  6150. name: "Burp",
  6151. image: {
  6152. source: "./media/characters/tobias/burp.svg"
  6153. }
  6154. },
  6155. },
  6156. [
  6157. {
  6158. name: "Normal",
  6159. height: math.unit(8, "meters"),
  6160. default: true
  6161. },
  6162. ]
  6163. ))
  6164. characterMakers.push(() => makeCharacter(
  6165. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6166. {
  6167. front: {
  6168. height: math.unit(5.5, "feet"),
  6169. weight: math.unit(400, "lbs"),
  6170. name: "Front",
  6171. image: {
  6172. source: "./media/characters/kieran/front.svg",
  6173. extra: 2694 / 2364,
  6174. bottom: 217 / 2908
  6175. }
  6176. },
  6177. side: {
  6178. height: math.unit(5.5, "feet"),
  6179. weight: math.unit(400, "lbs"),
  6180. name: "Side",
  6181. image: {
  6182. source: "./media/characters/kieran/side.svg",
  6183. extra: 875 / 777,
  6184. bottom: 84.6 / 959
  6185. }
  6186. },
  6187. },
  6188. [
  6189. {
  6190. name: "Normal",
  6191. height: math.unit(5.5, "feet"),
  6192. default: true
  6193. },
  6194. ]
  6195. ))
  6196. characterMakers.push(() => makeCharacter(
  6197. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6198. {
  6199. side: {
  6200. height: math.unit(2, "meters"),
  6201. weight: math.unit(70, "kg"),
  6202. name: "Side",
  6203. image: {
  6204. source: "./media/characters/sanya/side.svg",
  6205. bottom: 0.02,
  6206. extra: 1.02
  6207. }
  6208. },
  6209. },
  6210. [
  6211. {
  6212. name: "Small",
  6213. height: math.unit(2, "meters")
  6214. },
  6215. {
  6216. name: "Normal",
  6217. height: math.unit(3, "meters")
  6218. },
  6219. {
  6220. name: "Macro",
  6221. height: math.unit(16, "meters"),
  6222. default: true
  6223. },
  6224. ]
  6225. ))
  6226. characterMakers.push(() => makeCharacter(
  6227. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6228. {
  6229. front: {
  6230. height: math.unit(2, "meters"),
  6231. weight: math.unit(120, "kg"),
  6232. name: "Front",
  6233. image: {
  6234. source: "./media/characters/miranda/front.svg",
  6235. extra: 195 / 185,
  6236. bottom: 10.9 / 206.5
  6237. }
  6238. },
  6239. back: {
  6240. height: math.unit(2, "meters"),
  6241. weight: math.unit(120, "kg"),
  6242. name: "Back",
  6243. image: {
  6244. source: "./media/characters/miranda/back.svg",
  6245. extra: 201 / 193,
  6246. bottom: 2.3 / 203.7
  6247. }
  6248. },
  6249. },
  6250. [
  6251. {
  6252. name: "Normal",
  6253. height: math.unit(10, "feet"),
  6254. default: true
  6255. }
  6256. ]
  6257. ))
  6258. characterMakers.push(() => makeCharacter(
  6259. { name: "James", species: ["deer"], tags: ["anthro"] },
  6260. {
  6261. side: {
  6262. height: math.unit(2, "meters"),
  6263. weight: math.unit(100, "kg"),
  6264. name: "Front",
  6265. image: {
  6266. source: "./media/characters/james/front.svg",
  6267. extra: 10 / 8.5
  6268. }
  6269. },
  6270. },
  6271. [
  6272. {
  6273. name: "Normal",
  6274. height: math.unit(8.5, "feet"),
  6275. default: true
  6276. }
  6277. ]
  6278. ))
  6279. characterMakers.push(() => makeCharacter(
  6280. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6281. {
  6282. side: {
  6283. height: math.unit(9.5, "feet"),
  6284. weight: math.unit(2500, "lbs"),
  6285. name: "Side",
  6286. image: {
  6287. source: "./media/characters/heather/side.svg"
  6288. }
  6289. },
  6290. },
  6291. [
  6292. {
  6293. name: "Normal",
  6294. height: math.unit(9.5, "feet"),
  6295. default: true
  6296. }
  6297. ]
  6298. ))
  6299. characterMakers.push(() => makeCharacter(
  6300. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6301. {
  6302. side: {
  6303. height: math.unit(6.5, "feet"),
  6304. weight: math.unit(400, "lbs"),
  6305. name: "Side",
  6306. image: {
  6307. source: "./media/characters/lukas/side.svg",
  6308. extra: 7.25 / 6.5
  6309. }
  6310. },
  6311. },
  6312. [
  6313. {
  6314. name: "Normal",
  6315. height: math.unit(6.5, "feet"),
  6316. default: true
  6317. }
  6318. ]
  6319. ))
  6320. characterMakers.push(() => makeCharacter(
  6321. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6322. {
  6323. side: {
  6324. height: math.unit(5, "feet"),
  6325. weight: math.unit(3000, "lbs"),
  6326. name: "Side",
  6327. image: {
  6328. source: "./media/characters/louise/side.svg"
  6329. }
  6330. },
  6331. },
  6332. [
  6333. {
  6334. name: "Normal",
  6335. height: math.unit(5, "feet"),
  6336. default: true
  6337. }
  6338. ]
  6339. ))
  6340. characterMakers.push(() => makeCharacter(
  6341. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6342. {
  6343. side: {
  6344. height: math.unit(6, "feet"),
  6345. weight: math.unit(150, "lbs"),
  6346. name: "Side",
  6347. image: {
  6348. source: "./media/characters/ramona/side.svg",
  6349. extra: 871/854,
  6350. bottom: 41/912
  6351. }
  6352. },
  6353. },
  6354. [
  6355. {
  6356. name: "Normal",
  6357. height: math.unit(6 + 4/12, "feet")
  6358. },
  6359. {
  6360. name: "Minimacro",
  6361. height: math.unit(5.3, "meters"),
  6362. default: true
  6363. },
  6364. {
  6365. name: "Macro",
  6366. height: math.unit(20, "stories")
  6367. },
  6368. {
  6369. name: "Macro+",
  6370. height: math.unit(50, "stories")
  6371. },
  6372. ]
  6373. ))
  6374. characterMakers.push(() => makeCharacter(
  6375. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6376. {
  6377. standing: {
  6378. height: math.unit(5.75, "feet"),
  6379. weight: math.unit(160, "lbs"),
  6380. name: "Standing",
  6381. image: {
  6382. source: "./media/characters/deerpuff/standing.svg",
  6383. extra: 682 / 624
  6384. }
  6385. },
  6386. sitting: {
  6387. height: math.unit(5.75 / 1.79, "feet"),
  6388. weight: math.unit(160, "lbs"),
  6389. name: "Sitting",
  6390. image: {
  6391. source: "./media/characters/deerpuff/sitting.svg",
  6392. bottom: 44 / 400,
  6393. extra: 1
  6394. }
  6395. },
  6396. taurLaying: {
  6397. height: math.unit(6, "feet"),
  6398. weight: math.unit(400, "lbs"),
  6399. name: "Taur (Laying)",
  6400. image: {
  6401. source: "./media/characters/deerpuff/taur-laying.svg"
  6402. }
  6403. },
  6404. },
  6405. [
  6406. {
  6407. name: "Puffball",
  6408. height: math.unit(6, "inches")
  6409. },
  6410. {
  6411. name: "Normalpuff",
  6412. height: math.unit(5.75, "feet")
  6413. },
  6414. {
  6415. name: "Macropuff",
  6416. height: math.unit(1500, "feet"),
  6417. default: true
  6418. },
  6419. {
  6420. name: "Megapuff",
  6421. height: math.unit(500, "miles")
  6422. },
  6423. {
  6424. name: "Gigapuff",
  6425. height: math.unit(250000, "miles")
  6426. },
  6427. {
  6428. name: "Omegapuff",
  6429. height: math.unit(1000, "lightyears")
  6430. },
  6431. ]
  6432. ))
  6433. characterMakers.push(() => makeCharacter(
  6434. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6435. {
  6436. stomping: {
  6437. height: math.unit(6, "feet"),
  6438. weight: math.unit(170, "lbs"),
  6439. name: "Stomping",
  6440. image: {
  6441. source: "./media/characters/vivian/stomping.svg"
  6442. }
  6443. },
  6444. sitting: {
  6445. height: math.unit(6 / 1.75, "feet"),
  6446. weight: math.unit(170, "lbs"),
  6447. name: "Sitting",
  6448. image: {
  6449. source: "./media/characters/vivian/sitting.svg",
  6450. bottom: 1 / 6.4,
  6451. extra: 1,
  6452. }
  6453. },
  6454. },
  6455. [
  6456. {
  6457. name: "Normal",
  6458. height: math.unit(7, "feet"),
  6459. default: true
  6460. },
  6461. {
  6462. name: "Macro",
  6463. height: math.unit(10, "stories")
  6464. },
  6465. {
  6466. name: "Macro+",
  6467. height: math.unit(30, "stories")
  6468. },
  6469. {
  6470. name: "Megamacro",
  6471. height: math.unit(10, "miles")
  6472. },
  6473. {
  6474. name: "Megamacro+",
  6475. height: math.unit(2750000, "meters")
  6476. },
  6477. ]
  6478. ))
  6479. characterMakers.push(() => makeCharacter(
  6480. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6481. {
  6482. front: {
  6483. height: math.unit(6, "feet"),
  6484. weight: math.unit(160, "lbs"),
  6485. name: "Front",
  6486. image: {
  6487. source: "./media/characters/prince/front.svg",
  6488. extra: 1938/1682,
  6489. bottom: 45/1983
  6490. }
  6491. },
  6492. back: {
  6493. height: math.unit(6, "feet"),
  6494. weight: math.unit(160, "lbs"),
  6495. name: "Back",
  6496. image: {
  6497. source: "./media/characters/prince/back.svg",
  6498. extra: 1955/1726,
  6499. bottom: 6/1961
  6500. }
  6501. },
  6502. },
  6503. [
  6504. {
  6505. name: "Normal",
  6506. height: math.unit(7.75, "feet"),
  6507. default: true
  6508. },
  6509. {
  6510. name: "Not cute",
  6511. height: math.unit(17, "feet")
  6512. },
  6513. {
  6514. name: "I said NOT",
  6515. height: math.unit(91, "feet")
  6516. },
  6517. {
  6518. name: "Please stop",
  6519. height: math.unit(560, "feet")
  6520. },
  6521. {
  6522. name: "What have you done",
  6523. height: math.unit(2200, "feet")
  6524. },
  6525. {
  6526. name: "Deer God",
  6527. height: math.unit(3.6, "miles")
  6528. },
  6529. ]
  6530. ))
  6531. characterMakers.push(() => makeCharacter(
  6532. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6533. {
  6534. standing: {
  6535. height: math.unit(6, "feet"),
  6536. weight: math.unit(300, "lbs"),
  6537. name: "Standing",
  6538. image: {
  6539. source: "./media/characters/psymon/standing.svg",
  6540. extra: 1888 / 1810,
  6541. bottom: 0.05
  6542. }
  6543. },
  6544. slithering: {
  6545. height: math.unit(6, "feet"),
  6546. weight: math.unit(300, "lbs"),
  6547. name: "Slithering",
  6548. image: {
  6549. source: "./media/characters/psymon/slithering.svg",
  6550. extra: 1330 / 1224
  6551. }
  6552. },
  6553. slitheringAlt: {
  6554. height: math.unit(6, "feet"),
  6555. weight: math.unit(300, "lbs"),
  6556. name: "Slithering (Alt)",
  6557. image: {
  6558. source: "./media/characters/psymon/slithering-alt.svg",
  6559. extra: 1330 / 1224
  6560. }
  6561. },
  6562. },
  6563. [
  6564. {
  6565. name: "Normal",
  6566. height: math.unit(11.25, "feet"),
  6567. default: true
  6568. },
  6569. {
  6570. name: "Large",
  6571. height: math.unit(27, "feet")
  6572. },
  6573. {
  6574. name: "Giant",
  6575. height: math.unit(87, "feet")
  6576. },
  6577. {
  6578. name: "Macro",
  6579. height: math.unit(365, "feet")
  6580. },
  6581. {
  6582. name: "Megamacro",
  6583. height: math.unit(3, "miles")
  6584. },
  6585. {
  6586. name: "World Serpent",
  6587. height: math.unit(8000, "miles")
  6588. },
  6589. ]
  6590. ))
  6591. characterMakers.push(() => makeCharacter(
  6592. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6593. {
  6594. front: {
  6595. height: math.unit(6, "feet"),
  6596. weight: math.unit(180, "lbs"),
  6597. name: "Front",
  6598. image: {
  6599. source: "./media/characters/daimos/front.svg",
  6600. extra: 4160 / 3897,
  6601. bottom: 0.021
  6602. }
  6603. }
  6604. },
  6605. [
  6606. {
  6607. name: "Normal",
  6608. height: math.unit(8, "feet"),
  6609. default: true
  6610. },
  6611. {
  6612. name: "Big Dog",
  6613. height: math.unit(22, "feet")
  6614. },
  6615. {
  6616. name: "Macro",
  6617. height: math.unit(127, "feet")
  6618. },
  6619. {
  6620. name: "Megamacro",
  6621. height: math.unit(3600, "feet")
  6622. },
  6623. ]
  6624. ))
  6625. characterMakers.push(() => makeCharacter(
  6626. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6627. {
  6628. side: {
  6629. height: math.unit(6, "feet"),
  6630. weight: math.unit(180, "lbs"),
  6631. name: "Side",
  6632. image: {
  6633. source: "./media/characters/blake/side.svg",
  6634. extra: 1212 / 1120,
  6635. bottom: 0.05
  6636. }
  6637. },
  6638. crouched: {
  6639. height: math.unit(6 * 0.57, "feet"),
  6640. weight: math.unit(180, "lbs"),
  6641. name: "Crouched",
  6642. image: {
  6643. source: "./media/characters/blake/crouched.svg",
  6644. extra: 840 / 587,
  6645. bottom: 0.04
  6646. }
  6647. },
  6648. bent: {
  6649. height: math.unit(6 * 0.75, "feet"),
  6650. weight: math.unit(180, "lbs"),
  6651. name: "Bent",
  6652. image: {
  6653. source: "./media/characters/blake/bent.svg",
  6654. extra: 592 / 544,
  6655. bottom: 0.035
  6656. }
  6657. },
  6658. },
  6659. [
  6660. {
  6661. name: "Normal",
  6662. height: math.unit(8 + 1 / 6, "feet"),
  6663. default: true
  6664. },
  6665. {
  6666. name: "Big Backside",
  6667. height: math.unit(37, "feet")
  6668. },
  6669. {
  6670. name: "Subway Shredder",
  6671. height: math.unit(72, "feet")
  6672. },
  6673. {
  6674. name: "City Carver",
  6675. height: math.unit(1675, "feet")
  6676. },
  6677. {
  6678. name: "Tectonic Tweaker",
  6679. height: math.unit(2300, "miles")
  6680. },
  6681. ]
  6682. ))
  6683. characterMakers.push(() => makeCharacter(
  6684. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6685. {
  6686. front: {
  6687. height: math.unit(6, "feet"),
  6688. weight: math.unit(180, "lbs"),
  6689. name: "Front",
  6690. image: {
  6691. source: "./media/characters/guisetto/front.svg",
  6692. extra: 856 / 817,
  6693. bottom: 0.06
  6694. }
  6695. },
  6696. airborne: {
  6697. height: math.unit(6, "feet"),
  6698. weight: math.unit(180, "lbs"),
  6699. name: "Airborne",
  6700. image: {
  6701. source: "./media/characters/guisetto/airborne.svg",
  6702. extra: 584 / 525
  6703. }
  6704. },
  6705. },
  6706. [
  6707. {
  6708. name: "Normal",
  6709. height: math.unit(10 + 11 / 12, "feet"),
  6710. default: true
  6711. },
  6712. {
  6713. name: "Large",
  6714. height: math.unit(35, "feet")
  6715. },
  6716. {
  6717. name: "Macro",
  6718. height: math.unit(475, "feet")
  6719. },
  6720. ]
  6721. ))
  6722. characterMakers.push(() => makeCharacter(
  6723. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6724. {
  6725. front: {
  6726. height: math.unit(6, "feet"),
  6727. weight: math.unit(180, "lbs"),
  6728. name: "Front",
  6729. image: {
  6730. source: "./media/characters/luxor/front.svg",
  6731. extra: 2940 / 2152
  6732. }
  6733. },
  6734. back: {
  6735. height: math.unit(6, "feet"),
  6736. weight: math.unit(180, "lbs"),
  6737. name: "Back",
  6738. image: {
  6739. source: "./media/characters/luxor/back.svg",
  6740. extra: 1083 / 960
  6741. }
  6742. },
  6743. },
  6744. [
  6745. {
  6746. name: "Normal",
  6747. height: math.unit(5 + 5 / 6, "feet"),
  6748. default: true
  6749. },
  6750. {
  6751. name: "Lamp",
  6752. height: math.unit(50, "feet")
  6753. },
  6754. {
  6755. name: "Lämp",
  6756. height: math.unit(300, "feet")
  6757. },
  6758. {
  6759. name: "The sun is a lamp",
  6760. height: math.unit(250000, "miles")
  6761. },
  6762. ]
  6763. ))
  6764. characterMakers.push(() => makeCharacter(
  6765. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6766. {
  6767. front: {
  6768. height: math.unit(6, "feet"),
  6769. weight: math.unit(50, "lbs"),
  6770. name: "Front",
  6771. image: {
  6772. source: "./media/characters/huoyan/front.svg"
  6773. }
  6774. },
  6775. side: {
  6776. height: math.unit(6, "feet"),
  6777. weight: math.unit(180, "lbs"),
  6778. name: "Side",
  6779. image: {
  6780. source: "./media/characters/huoyan/side.svg"
  6781. }
  6782. },
  6783. },
  6784. [
  6785. {
  6786. name: "Chef",
  6787. height: math.unit(9, "feet")
  6788. },
  6789. {
  6790. name: "Normal",
  6791. height: math.unit(65, "feet"),
  6792. default: true
  6793. },
  6794. {
  6795. name: "Macro",
  6796. height: math.unit(780, "feet")
  6797. },
  6798. {
  6799. name: "Flaming Mountain",
  6800. height: math.unit(4.8, "miles")
  6801. },
  6802. {
  6803. name: "Celestial",
  6804. height: math.unit(765000, "miles")
  6805. },
  6806. ]
  6807. ))
  6808. characterMakers.push(() => makeCharacter(
  6809. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6810. {
  6811. front: {
  6812. height: math.unit(5 + 3 / 4, "feet"),
  6813. weight: math.unit(120, "lbs"),
  6814. name: "Front",
  6815. image: {
  6816. source: "./media/characters/tails/front.svg"
  6817. }
  6818. }
  6819. },
  6820. [
  6821. {
  6822. name: "Normal",
  6823. height: math.unit(5 + 3 / 4, "feet"),
  6824. default: true
  6825. }
  6826. ]
  6827. ))
  6828. characterMakers.push(() => makeCharacter(
  6829. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6830. {
  6831. front: {
  6832. height: math.unit(4, "feet"),
  6833. weight: math.unit(50, "lbs"),
  6834. name: "Front",
  6835. image: {
  6836. source: "./media/characters/rainy/front.svg"
  6837. }
  6838. }
  6839. },
  6840. [
  6841. {
  6842. name: "Macro",
  6843. height: math.unit(800, "feet"),
  6844. default: true
  6845. }
  6846. ]
  6847. ))
  6848. characterMakers.push(() => makeCharacter(
  6849. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6850. {
  6851. front: {
  6852. height: math.unit(6, "feet"),
  6853. weight: math.unit(150, "lbs"),
  6854. name: "Front",
  6855. image: {
  6856. source: "./media/characters/rainier/front.svg"
  6857. }
  6858. }
  6859. },
  6860. [
  6861. {
  6862. name: "Micro",
  6863. height: math.unit(2, "mm"),
  6864. default: true
  6865. }
  6866. ]
  6867. ))
  6868. characterMakers.push(() => makeCharacter(
  6869. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6870. {
  6871. front: {
  6872. height: math.unit(8 + 4/12, "feet"),
  6873. weight: math.unit(450, "kilograms"),
  6874. name: "Front",
  6875. image: {
  6876. source: "./media/characters/andy-renard/front.svg",
  6877. extra: 862/809,
  6878. bottom: 85/947
  6879. },
  6880. extraAttributes: {
  6881. "pawSize": {
  6882. name: "Paw Size",
  6883. power: 2,
  6884. type: "area",
  6885. base: math.unit(0.45*0.3, "meters^2")
  6886. },
  6887. "handSize": {
  6888. name: "Hand Size",
  6889. power: 2,
  6890. type: "area",
  6891. base: math.unit(0.4 * 0.3, "meters^2")
  6892. },
  6893. "cockSize": {
  6894. name: "Cock Length",
  6895. power: 1,
  6896. type: "length",
  6897. base: math.unit(0.75, "meters")
  6898. },
  6899. "ballDiameter": {
  6900. name: "Ball Diameter",
  6901. power: 1,
  6902. type: "length",
  6903. base: math.unit(0.3, "meters")
  6904. },
  6905. "ballVolume": {
  6906. name: "Ball Volume",
  6907. power: 3,
  6908. type: "volume",
  6909. base: math.unit(0.01413716694, "meters^3")
  6910. },
  6911. }
  6912. },
  6913. back: {
  6914. height: math.unit(8 + 4/12, "feet"),
  6915. weight: math.unit(450, "kilograms"),
  6916. name: "Back",
  6917. image: {
  6918. source: "./media/characters/andy-renard/back.svg",
  6919. extra: 1112/1033,
  6920. bottom: 64/1176
  6921. },
  6922. extraAttributes: {
  6923. "pawSize": {
  6924. name: "Paw Size",
  6925. power: 2,
  6926. type: "area",
  6927. base: math.unit(0.45*0.3, "meters^2")
  6928. },
  6929. "handSize": {
  6930. name: "Hand Size",
  6931. power: 2,
  6932. type: "area",
  6933. base: math.unit(0.4 * 0.3, "meters^2")
  6934. },
  6935. "cockSize": {
  6936. name: "Cock Length",
  6937. power: 1,
  6938. type: "length",
  6939. base: math.unit(0.75, "meters")
  6940. },
  6941. "ballDiameter": {
  6942. name: "Ball Diameter",
  6943. power: 1,
  6944. type: "length",
  6945. base: math.unit(0.3, "meters")
  6946. },
  6947. "ballVolume": {
  6948. name: "Ball Volume",
  6949. power: 3,
  6950. type: "volume",
  6951. base: math.unit(0.01413716694, "meters^3")
  6952. },
  6953. }
  6954. },
  6955. },
  6956. [
  6957. {
  6958. name: "Tall",
  6959. height: math.unit(6 + 8/12, "feet")
  6960. },
  6961. {
  6962. name: "Very Tall",
  6963. height: math.unit(8 + 4/12, "feet")
  6964. },
  6965. {
  6966. name: "Mini Macro",
  6967. height: math.unit(15, "feet"),
  6968. default: true
  6969. },
  6970. {
  6971. name: "Giant",
  6972. height: math.unit(50, "feet")
  6973. },
  6974. {
  6975. name: "Nice",
  6976. height: math.unit(69, "feet")
  6977. },
  6978. {
  6979. name: "Macro",
  6980. height: math.unit(100, "feet")
  6981. },
  6982. {
  6983. name: "Enormous",
  6984. height: math.unit(500, "feet")
  6985. },
  6986. {
  6987. name: "Gargantuan",
  6988. height: math.unit(1000, "feet")
  6989. },
  6990. {
  6991. name: "Mega",
  6992. height: math.unit(1, "mile")
  6993. },
  6994. {
  6995. name: "Giga",
  6996. height: math.unit(50, "miles")
  6997. },
  6998. {
  6999. name: "Tera",
  7000. height: math.unit(1000, "miles")
  7001. },
  7002. {
  7003. name: "Cosmic",
  7004. height: math.unit(1.5, "galaxies")
  7005. },
  7006. {
  7007. name: "God",
  7008. height: math.unit(1.5, "universes")
  7009. },
  7010. {
  7011. name: "Chief Execute God",
  7012. height: math.unit(1.5, "multiverses")
  7013. },
  7014. ]
  7015. ))
  7016. characterMakers.push(() => makeCharacter(
  7017. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  7018. {
  7019. front: {
  7020. height: math.unit(6, "feet"),
  7021. weight: math.unit(210, "lbs"),
  7022. name: "Front",
  7023. image: {
  7024. source: "./media/characters/cimmaron/front-sfw.svg",
  7025. extra: 701 / 676,
  7026. bottom: 0.046
  7027. }
  7028. },
  7029. back: {
  7030. height: math.unit(6, "feet"),
  7031. weight: math.unit(210, "lbs"),
  7032. name: "Back",
  7033. image: {
  7034. source: "./media/characters/cimmaron/back-sfw.svg",
  7035. extra: 701 / 676,
  7036. bottom: 0.046
  7037. }
  7038. },
  7039. frontNsfw: {
  7040. height: math.unit(6, "feet"),
  7041. weight: math.unit(210, "lbs"),
  7042. name: "Front (NSFW)",
  7043. image: {
  7044. source: "./media/characters/cimmaron/front-nsfw.svg",
  7045. extra: 701 / 676,
  7046. bottom: 0.046
  7047. }
  7048. },
  7049. backNsfw: {
  7050. height: math.unit(6, "feet"),
  7051. weight: math.unit(210, "lbs"),
  7052. name: "Back (NSFW)",
  7053. image: {
  7054. source: "./media/characters/cimmaron/back-nsfw.svg",
  7055. extra: 701 / 676,
  7056. bottom: 0.046
  7057. }
  7058. },
  7059. dick: {
  7060. height: math.unit(1.714, "feet"),
  7061. name: "Dick",
  7062. image: {
  7063. source: "./media/characters/cimmaron/dick.svg"
  7064. }
  7065. },
  7066. },
  7067. [
  7068. {
  7069. name: "Normal",
  7070. height: math.unit(6, "feet"),
  7071. default: true
  7072. },
  7073. {
  7074. name: "Macro Mayor",
  7075. height: math.unit(350, "meters")
  7076. },
  7077. ]
  7078. ))
  7079. characterMakers.push(() => makeCharacter(
  7080. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  7081. {
  7082. front: {
  7083. height: math.unit(6, "feet"),
  7084. weight: math.unit(200, "lbs"),
  7085. name: "Front",
  7086. image: {
  7087. source: "./media/characters/akari/front.svg",
  7088. extra: 962 / 901,
  7089. bottom: 0.04
  7090. }
  7091. }
  7092. },
  7093. [
  7094. {
  7095. name: "Micro",
  7096. height: math.unit(5, "inches"),
  7097. default: true
  7098. },
  7099. {
  7100. name: "Normal",
  7101. height: math.unit(7, "feet")
  7102. },
  7103. ]
  7104. ))
  7105. characterMakers.push(() => makeCharacter(
  7106. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  7107. {
  7108. front: {
  7109. height: math.unit(6, "feet"),
  7110. weight: math.unit(140, "lbs"),
  7111. name: "Front",
  7112. image: {
  7113. source: "./media/characters/cynosura/front.svg",
  7114. extra: 437/410,
  7115. bottom: 9/446
  7116. }
  7117. },
  7118. back: {
  7119. height: math.unit(6, "feet"),
  7120. weight: math.unit(140, "lbs"),
  7121. name: "Back",
  7122. image: {
  7123. source: "./media/characters/cynosura/back.svg",
  7124. extra: 1304/1160,
  7125. bottom: 71/1375
  7126. }
  7127. },
  7128. },
  7129. [
  7130. {
  7131. name: "Micro",
  7132. height: math.unit(4, "inches")
  7133. },
  7134. {
  7135. name: "Normal",
  7136. height: math.unit(5.75, "feet"),
  7137. default: true
  7138. },
  7139. {
  7140. name: "Tall",
  7141. height: math.unit(10, "feet")
  7142. },
  7143. {
  7144. name: "Big",
  7145. height: math.unit(20, "feet")
  7146. },
  7147. {
  7148. name: "Macro",
  7149. height: math.unit(50, "feet")
  7150. },
  7151. ]
  7152. ))
  7153. characterMakers.push(() => makeCharacter(
  7154. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  7155. {
  7156. front: {
  7157. height: math.unit(13 + 2/12, "feet"),
  7158. weight: math.unit(800, "kg"),
  7159. name: "Front",
  7160. image: {
  7161. source: "./media/characters/gin/front.svg",
  7162. extra: 1312/1191,
  7163. bottom: 45/1357
  7164. }
  7165. },
  7166. mouth: {
  7167. height: math.unit(2.39 * 1.8, "feet"),
  7168. name: "Mouth",
  7169. image: {
  7170. source: "./media/characters/gin/mouth.svg"
  7171. }
  7172. },
  7173. hand: {
  7174. height: math.unit(1.57 * 2.19, "feet"),
  7175. name: "Hand",
  7176. image: {
  7177. source: "./media/characters/gin/hand.svg"
  7178. }
  7179. },
  7180. foot: {
  7181. height: math.unit(6 / 4.25 * 2.19, "feet"),
  7182. name: "Foot",
  7183. image: {
  7184. source: "./media/characters/gin/foot.svg"
  7185. }
  7186. },
  7187. sole: {
  7188. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7189. name: "Sole",
  7190. image: {
  7191. source: "./media/characters/gin/sole.svg"
  7192. }
  7193. },
  7194. },
  7195. [
  7196. {
  7197. name: "Very Small",
  7198. height: math.unit(13 + 2 / 12, "feet")
  7199. },
  7200. {
  7201. name: "Micro",
  7202. height: math.unit(600, "miles")
  7203. },
  7204. {
  7205. name: "Regular",
  7206. height: math.unit(20, "earths"),
  7207. default: true
  7208. },
  7209. {
  7210. name: "Macro",
  7211. height: math.unit(2.2, "solarradii")
  7212. },
  7213. {
  7214. name: "Teramacro",
  7215. height: math.unit(1.2, "galaxies")
  7216. },
  7217. {
  7218. name: "Omegamacro",
  7219. height: math.unit(200, "universes")
  7220. },
  7221. ]
  7222. ))
  7223. characterMakers.push(() => makeCharacter(
  7224. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7225. {
  7226. front: {
  7227. height: math.unit(6 + 1 / 6, "feet"),
  7228. weight: math.unit(178, "lbs"),
  7229. name: "Front",
  7230. image: {
  7231. source: "./media/characters/guy/front.svg"
  7232. }
  7233. }
  7234. },
  7235. [
  7236. {
  7237. name: "Normal",
  7238. height: math.unit(6 + 1 / 6, "feet"),
  7239. default: true
  7240. },
  7241. {
  7242. name: "Large",
  7243. height: math.unit(25 + 7 / 12, "feet")
  7244. },
  7245. {
  7246. name: "Macro",
  7247. height: math.unit(60 + 9 / 12, "feet")
  7248. },
  7249. {
  7250. name: "Macro+",
  7251. height: math.unit(246, "feet")
  7252. },
  7253. {
  7254. name: "Macro++",
  7255. height: math.unit(878, "feet")
  7256. }
  7257. ]
  7258. ))
  7259. characterMakers.push(() => makeCharacter(
  7260. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7261. {
  7262. front: {
  7263. height: math.unit(9, "feet"),
  7264. weight: math.unit(800, "lbs"),
  7265. name: "Front",
  7266. image: {
  7267. source: "./media/characters/tiberius/front.svg",
  7268. extra: 2295 / 2071
  7269. }
  7270. },
  7271. back: {
  7272. height: math.unit(9, "feet"),
  7273. weight: math.unit(800, "lbs"),
  7274. name: "Back",
  7275. image: {
  7276. source: "./media/characters/tiberius/back.svg",
  7277. extra: 2373 / 2160
  7278. }
  7279. },
  7280. },
  7281. [
  7282. {
  7283. name: "Normal",
  7284. height: math.unit(9, "feet"),
  7285. default: true
  7286. }
  7287. ]
  7288. ))
  7289. characterMakers.push(() => makeCharacter(
  7290. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7291. {
  7292. front: {
  7293. height: math.unit(6, "feet"),
  7294. weight: math.unit(600, "lbs"),
  7295. name: "Front",
  7296. image: {
  7297. source: "./media/characters/surgo/front.svg",
  7298. extra: 3591 / 2227
  7299. }
  7300. },
  7301. back: {
  7302. height: math.unit(6, "feet"),
  7303. weight: math.unit(600, "lbs"),
  7304. name: "Back",
  7305. image: {
  7306. source: "./media/characters/surgo/back.svg",
  7307. extra: 3557 / 2228
  7308. }
  7309. },
  7310. laying: {
  7311. height: math.unit(6 * 0.85, "feet"),
  7312. weight: math.unit(600, "lbs"),
  7313. name: "Laying",
  7314. image: {
  7315. source: "./media/characters/surgo/laying.svg"
  7316. }
  7317. },
  7318. },
  7319. [
  7320. {
  7321. name: "Normal",
  7322. height: math.unit(6, "feet"),
  7323. default: true
  7324. }
  7325. ]
  7326. ))
  7327. characterMakers.push(() => makeCharacter(
  7328. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7329. {
  7330. side: {
  7331. height: math.unit(6, "feet"),
  7332. weight: math.unit(150, "lbs"),
  7333. name: "Side",
  7334. image: {
  7335. source: "./media/characters/cibus/side.svg",
  7336. extra: 800 / 400
  7337. }
  7338. },
  7339. },
  7340. [
  7341. {
  7342. name: "Normal",
  7343. height: math.unit(6, "feet"),
  7344. default: true
  7345. }
  7346. ]
  7347. ))
  7348. characterMakers.push(() => makeCharacter(
  7349. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7350. {
  7351. front: {
  7352. height: math.unit(6, "feet"),
  7353. weight: math.unit(240, "lbs"),
  7354. name: "Front",
  7355. image: {
  7356. source: "./media/characters/nibbles/front.svg"
  7357. }
  7358. },
  7359. side: {
  7360. height: math.unit(6, "feet"),
  7361. weight: math.unit(240, "lbs"),
  7362. name: "Side",
  7363. image: {
  7364. source: "./media/characters/nibbles/side.svg"
  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: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7378. {
  7379. side: {
  7380. height: math.unit(5 + 1 / 6, "feet"),
  7381. weight: math.unit(130, "lbs"),
  7382. name: "Side",
  7383. image: {
  7384. source: "./media/characters/rikky/side.svg",
  7385. extra: 851 / 801
  7386. }
  7387. },
  7388. },
  7389. [
  7390. {
  7391. name: "Normal",
  7392. height: math.unit(5 + 1 / 6, "feet")
  7393. },
  7394. {
  7395. name: "Macro",
  7396. height: math.unit(152, "feet"),
  7397. default: true
  7398. },
  7399. {
  7400. name: "Megamacro",
  7401. height: math.unit(7, "miles")
  7402. }
  7403. ]
  7404. ))
  7405. characterMakers.push(() => makeCharacter(
  7406. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7407. {
  7408. side: {
  7409. height: math.unit(370, "cm"),
  7410. weight: math.unit(350, "lbs"),
  7411. name: "Side",
  7412. image: {
  7413. source: "./media/characters/malfressa/side.svg"
  7414. }
  7415. },
  7416. walking: {
  7417. height: math.unit(370, "cm"),
  7418. weight: math.unit(350, "lbs"),
  7419. name: "Walking",
  7420. image: {
  7421. source: "./media/characters/malfressa/walking.svg"
  7422. }
  7423. },
  7424. feral: {
  7425. height: math.unit(2500, "cm"),
  7426. weight: math.unit(100000, "lbs"),
  7427. name: "Feral",
  7428. image: {
  7429. source: "./media/characters/malfressa/feral.svg",
  7430. extra: 2108 / 837,
  7431. bottom: 0.02
  7432. }
  7433. },
  7434. },
  7435. [
  7436. {
  7437. name: "Normal",
  7438. height: math.unit(370, "cm")
  7439. },
  7440. {
  7441. name: "Macro",
  7442. height: math.unit(300, "meters"),
  7443. default: true
  7444. }
  7445. ]
  7446. ))
  7447. characterMakers.push(() => makeCharacter(
  7448. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7449. {
  7450. front: {
  7451. height: math.unit(6, "feet"),
  7452. weight: math.unit(60, "kg"),
  7453. name: "Front",
  7454. image: {
  7455. source: "./media/characters/jaro/front.svg",
  7456. extra: 845/817,
  7457. bottom: 45/890
  7458. }
  7459. },
  7460. back: {
  7461. height: math.unit(6, "feet"),
  7462. weight: math.unit(60, "kg"),
  7463. name: "Back",
  7464. image: {
  7465. source: "./media/characters/jaro/back.svg",
  7466. extra: 847/817,
  7467. bottom: 34/881
  7468. }
  7469. },
  7470. },
  7471. [
  7472. {
  7473. name: "Micro",
  7474. height: math.unit(7, "inches")
  7475. },
  7476. {
  7477. name: "Normal",
  7478. height: math.unit(5.5, "feet"),
  7479. default: true
  7480. },
  7481. {
  7482. name: "Minimacro",
  7483. height: math.unit(20, "feet")
  7484. },
  7485. {
  7486. name: "Macro",
  7487. height: math.unit(200, "meters")
  7488. }
  7489. ]
  7490. ))
  7491. characterMakers.push(() => makeCharacter(
  7492. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7493. {
  7494. front: {
  7495. height: math.unit(6, "feet"),
  7496. weight: math.unit(195, "lb"),
  7497. name: "Front",
  7498. image: {
  7499. source: "./media/characters/rogue/front.svg"
  7500. }
  7501. },
  7502. },
  7503. [
  7504. {
  7505. name: "Macro",
  7506. height: math.unit(90, "feet"),
  7507. default: true
  7508. },
  7509. ]
  7510. ))
  7511. characterMakers.push(() => makeCharacter(
  7512. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7513. {
  7514. standing: {
  7515. height: math.unit(5 + 8 / 12, "feet"),
  7516. weight: math.unit(140, "lb"),
  7517. name: "Standing",
  7518. image: {
  7519. source: "./media/characters/piper/standing.svg",
  7520. extra: 1440/1284,
  7521. bottom: 66/1506
  7522. }
  7523. },
  7524. running: {
  7525. height: math.unit(5 + 8 / 12, "feet"),
  7526. weight: math.unit(140, "lb"),
  7527. name: "Running",
  7528. image: {
  7529. source: "./media/characters/piper/running.svg",
  7530. extra: 3948/3655,
  7531. bottom: 0/3948
  7532. }
  7533. },
  7534. sole: {
  7535. height: math.unit(0.81, "feet"),
  7536. weight: math.unit(2, "kg"),
  7537. name: "Sole",
  7538. image: {
  7539. source: "./media/characters/piper/sole.svg"
  7540. }
  7541. },
  7542. nipple: {
  7543. height: math.unit(0.25, "feet"),
  7544. weight: math.unit(1.5, "lb"),
  7545. name: "Nipple",
  7546. image: {
  7547. source: "./media/characters/piper/nipple.svg"
  7548. }
  7549. },
  7550. head: {
  7551. height: math.unit(1.1, "feet"),
  7552. name: "Head",
  7553. image: {
  7554. source: "./media/characters/piper/head.svg"
  7555. }
  7556. },
  7557. },
  7558. [
  7559. {
  7560. name: "Micro",
  7561. height: math.unit(2, "inches")
  7562. },
  7563. {
  7564. name: "Normal",
  7565. height: math.unit(5 + 8 / 12, "feet")
  7566. },
  7567. {
  7568. name: "Macro",
  7569. height: math.unit(250, "feet"),
  7570. default: true
  7571. },
  7572. {
  7573. name: "Megamacro",
  7574. height: math.unit(7, "miles")
  7575. },
  7576. ]
  7577. ))
  7578. characterMakers.push(() => makeCharacter(
  7579. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7580. {
  7581. front: {
  7582. height: math.unit(6, "feet"),
  7583. weight: math.unit(220, "lb"),
  7584. name: "Front",
  7585. image: {
  7586. source: "./media/characters/gemini/front.svg"
  7587. }
  7588. },
  7589. back: {
  7590. height: math.unit(6, "feet"),
  7591. weight: math.unit(220, "lb"),
  7592. name: "Back",
  7593. image: {
  7594. source: "./media/characters/gemini/back.svg"
  7595. }
  7596. },
  7597. kneeling: {
  7598. height: math.unit(6 / 1.5, "feet"),
  7599. weight: math.unit(220, "lb"),
  7600. name: "Kneeling",
  7601. image: {
  7602. source: "./media/characters/gemini/kneeling.svg",
  7603. bottom: 0.02
  7604. }
  7605. },
  7606. },
  7607. [
  7608. {
  7609. name: "Macro",
  7610. height: math.unit(300, "meters"),
  7611. default: true
  7612. },
  7613. {
  7614. name: "Megamacro",
  7615. height: math.unit(6900, "meters")
  7616. },
  7617. ]
  7618. ))
  7619. characterMakers.push(() => makeCharacter(
  7620. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7621. {
  7622. anthro: {
  7623. height: math.unit(2.35, "meters"),
  7624. weight: math.unit(73, "kg"),
  7625. name: "Anthro",
  7626. image: {
  7627. source: "./media/characters/alicia/anthro.svg",
  7628. extra: 2571 / 2385,
  7629. bottom: 75 / 2648
  7630. }
  7631. },
  7632. paw: {
  7633. height: math.unit(1.32, "feet"),
  7634. name: "Paw",
  7635. image: {
  7636. source: "./media/characters/alicia/paw.svg"
  7637. }
  7638. },
  7639. feral: {
  7640. height: math.unit(1.69, "meters"),
  7641. weight: math.unit(73, "kg"),
  7642. name: "Feral",
  7643. image: {
  7644. source: "./media/characters/alicia/feral.svg",
  7645. extra: 2123 / 1715,
  7646. bottom: 222 / 2349
  7647. }
  7648. },
  7649. },
  7650. [
  7651. {
  7652. name: "Normal",
  7653. height: math.unit(2.35, "meters")
  7654. },
  7655. {
  7656. name: "Macro",
  7657. height: math.unit(60, "meters"),
  7658. default: true
  7659. },
  7660. {
  7661. name: "Megamacro",
  7662. height: math.unit(10000, "kilometers")
  7663. },
  7664. ]
  7665. ))
  7666. characterMakers.push(() => makeCharacter(
  7667. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7668. {
  7669. front: {
  7670. height: math.unit(7, "feet"),
  7671. weight: math.unit(250, "lbs"),
  7672. name: "Front",
  7673. image: {
  7674. source: "./media/characters/archy/front.svg"
  7675. }
  7676. }
  7677. },
  7678. [
  7679. {
  7680. name: "Micro",
  7681. height: math.unit(1, "inch")
  7682. },
  7683. {
  7684. name: "Shorty",
  7685. height: math.unit(5, "feet")
  7686. },
  7687. {
  7688. name: "Normal",
  7689. height: math.unit(7, "feet")
  7690. },
  7691. {
  7692. name: "Macro",
  7693. height: math.unit(600, "meters"),
  7694. default: true
  7695. },
  7696. {
  7697. name: "Megamacro",
  7698. height: math.unit(1, "mile")
  7699. },
  7700. ]
  7701. ))
  7702. characterMakers.push(() => makeCharacter(
  7703. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7704. {
  7705. front: {
  7706. height: math.unit(1.65, "meters"),
  7707. weight: math.unit(74, "kg"),
  7708. name: "Front",
  7709. image: {
  7710. source: "./media/characters/berri/front.svg",
  7711. extra: 857 / 837,
  7712. bottom: 18 / 877
  7713. }
  7714. },
  7715. bum: {
  7716. height: math.unit(1.46, "feet"),
  7717. name: "Bum",
  7718. image: {
  7719. source: "./media/characters/berri/bum.svg"
  7720. }
  7721. },
  7722. mouth: {
  7723. height: math.unit(0.44, "feet"),
  7724. name: "Mouth",
  7725. image: {
  7726. source: "./media/characters/berri/mouth.svg"
  7727. }
  7728. },
  7729. paw: {
  7730. height: math.unit(0.826, "feet"),
  7731. name: "Paw",
  7732. image: {
  7733. source: "./media/characters/berri/paw.svg"
  7734. }
  7735. },
  7736. },
  7737. [
  7738. {
  7739. name: "Normal",
  7740. height: math.unit(1.65, "meters")
  7741. },
  7742. {
  7743. name: "Macro",
  7744. height: math.unit(60, "m"),
  7745. default: true
  7746. },
  7747. {
  7748. name: "Megamacro",
  7749. height: math.unit(9.213, "km")
  7750. },
  7751. {
  7752. name: "Planet Eater",
  7753. height: math.unit(489, "megameters")
  7754. },
  7755. {
  7756. name: "Teramacro",
  7757. height: math.unit(2471635000000, "meters")
  7758. },
  7759. {
  7760. name: "Examacro",
  7761. height: math.unit(8.0624e+26, "meters")
  7762. }
  7763. ]
  7764. ))
  7765. characterMakers.push(() => makeCharacter(
  7766. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7767. {
  7768. front: {
  7769. height: math.unit(1.72, "meters"),
  7770. weight: math.unit(68, "kg"),
  7771. name: "Front",
  7772. image: {
  7773. source: "./media/characters/lexi/front.svg"
  7774. }
  7775. }
  7776. },
  7777. [
  7778. {
  7779. name: "Very Smol",
  7780. height: math.unit(10, "mm")
  7781. },
  7782. {
  7783. name: "Micro",
  7784. height: math.unit(6.8, "cm"),
  7785. default: true
  7786. },
  7787. {
  7788. name: "Normal",
  7789. height: math.unit(1.72, "m")
  7790. }
  7791. ]
  7792. ))
  7793. characterMakers.push(() => makeCharacter(
  7794. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7795. {
  7796. front: {
  7797. height: math.unit(1.69, "meters"),
  7798. weight: math.unit(68, "kg"),
  7799. name: "Front",
  7800. image: {
  7801. source: "./media/characters/martin/front.svg",
  7802. extra: 596 / 581
  7803. }
  7804. }
  7805. },
  7806. [
  7807. {
  7808. name: "Micro",
  7809. height: math.unit(6.85, "cm"),
  7810. default: true
  7811. },
  7812. {
  7813. name: "Normal",
  7814. height: math.unit(1.69, "m")
  7815. }
  7816. ]
  7817. ))
  7818. characterMakers.push(() => makeCharacter(
  7819. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7820. {
  7821. front: {
  7822. height: math.unit(1.69, "meters"),
  7823. weight: math.unit(68, "kg"),
  7824. name: "Front",
  7825. image: {
  7826. source: "./media/characters/juno/front.svg"
  7827. }
  7828. }
  7829. },
  7830. [
  7831. {
  7832. name: "Micro",
  7833. height: math.unit(7, "cm")
  7834. },
  7835. {
  7836. name: "Normal",
  7837. height: math.unit(1.89, "m")
  7838. },
  7839. {
  7840. name: "Macro",
  7841. height: math.unit(353, "meters"),
  7842. default: true
  7843. }
  7844. ]
  7845. ))
  7846. characterMakers.push(() => makeCharacter(
  7847. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7848. {
  7849. front: {
  7850. height: math.unit(1.93, "meters"),
  7851. weight: math.unit(83, "kg"),
  7852. name: "Front",
  7853. image: {
  7854. source: "./media/characters/samantha/front.svg"
  7855. }
  7856. },
  7857. frontClothed: {
  7858. height: math.unit(1.93, "meters"),
  7859. weight: math.unit(83, "kg"),
  7860. name: "Front (Clothed)",
  7861. image: {
  7862. source: "./media/characters/samantha/front-clothed.svg"
  7863. }
  7864. },
  7865. back: {
  7866. height: math.unit(1.93, "meters"),
  7867. weight: math.unit(83, "kg"),
  7868. name: "Back",
  7869. image: {
  7870. source: "./media/characters/samantha/back.svg"
  7871. }
  7872. },
  7873. },
  7874. [
  7875. {
  7876. name: "Normal",
  7877. height: math.unit(1.93, "m")
  7878. },
  7879. {
  7880. name: "Macro",
  7881. height: math.unit(74, "meters"),
  7882. default: true
  7883. },
  7884. {
  7885. name: "Macro+",
  7886. height: math.unit(223, "meters"),
  7887. },
  7888. {
  7889. name: "Megamacro",
  7890. height: math.unit(8381, "meters"),
  7891. },
  7892. {
  7893. name: "Megamacro+",
  7894. height: math.unit(12000, "kilometers")
  7895. },
  7896. ]
  7897. ))
  7898. characterMakers.push(() => makeCharacter(
  7899. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7900. {
  7901. front: {
  7902. height: math.unit(1.92, "meters"),
  7903. weight: math.unit(80, "kg"),
  7904. name: "Front",
  7905. image: {
  7906. source: "./media/characters/dr-clay/front.svg"
  7907. }
  7908. },
  7909. frontClothed: {
  7910. height: math.unit(1.92, "meters"),
  7911. weight: math.unit(80, "kg"),
  7912. name: "Front (Clothed)",
  7913. image: {
  7914. source: "./media/characters/dr-clay/front-clothed.svg"
  7915. }
  7916. }
  7917. },
  7918. [
  7919. {
  7920. name: "Normal",
  7921. height: math.unit(1.92, "m")
  7922. },
  7923. {
  7924. name: "Macro",
  7925. height: math.unit(214, "meters"),
  7926. default: true
  7927. },
  7928. {
  7929. name: "Macro+",
  7930. height: math.unit(12.237, "meters"),
  7931. },
  7932. {
  7933. name: "Megamacro",
  7934. height: math.unit(557, "megameters"),
  7935. },
  7936. {
  7937. name: "Unimaginable",
  7938. height: math.unit(120e9, "lightyears")
  7939. },
  7940. ]
  7941. ))
  7942. characterMakers.push(() => makeCharacter(
  7943. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7944. {
  7945. front: {
  7946. height: math.unit(2, "meters"),
  7947. weight: math.unit(80, "kg"),
  7948. name: "Front",
  7949. image: {
  7950. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7951. }
  7952. }
  7953. },
  7954. [
  7955. {
  7956. name: "Teramacro",
  7957. height: math.unit(500000, "lightyears"),
  7958. default: true
  7959. },
  7960. ]
  7961. ))
  7962. characterMakers.push(() => makeCharacter(
  7963. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7964. {
  7965. crux: {
  7966. height: math.unit(2, "meters"),
  7967. weight: math.unit(150, "kg"),
  7968. name: "Crux",
  7969. image: {
  7970. source: "./media/characters/vemus/crux.svg",
  7971. extra: 1074/936,
  7972. bottom: 23/1097
  7973. }
  7974. },
  7975. skunkTanuki: {
  7976. height: math.unit(2, "meters"),
  7977. weight: math.unit(150, "kg"),
  7978. name: "Skunk-Tanuki",
  7979. image: {
  7980. source: "./media/characters/vemus/skunk-tanuki.svg",
  7981. extra: 926/893,
  7982. bottom: 20/946
  7983. }
  7984. },
  7985. },
  7986. [
  7987. {
  7988. name: "Normal",
  7989. height: math.unit(4, "meters"),
  7990. default: true
  7991. },
  7992. {
  7993. name: "Big",
  7994. height: math.unit(8, "meters")
  7995. },
  7996. {
  7997. name: "Macro",
  7998. height: math.unit(100, "meters")
  7999. },
  8000. {
  8001. name: "Macro+",
  8002. height: math.unit(1500, "meters")
  8003. },
  8004. {
  8005. name: "Stellar",
  8006. height: math.unit(14e8, "meters")
  8007. },
  8008. ]
  8009. ))
  8010. characterMakers.push(() => makeCharacter(
  8011. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  8012. {
  8013. front: {
  8014. height: math.unit(2, "meters"),
  8015. weight: math.unit(70, "kg"),
  8016. name: "Front",
  8017. image: {
  8018. source: "./media/characters/beherit/front.svg",
  8019. extra: 1234/1109,
  8020. bottom: 55/1289
  8021. }
  8022. }
  8023. },
  8024. [
  8025. {
  8026. name: "Normal",
  8027. height: math.unit(6, "feet")
  8028. },
  8029. {
  8030. name: "Lorg",
  8031. height: math.unit(25, "feet"),
  8032. default: true
  8033. },
  8034. {
  8035. name: "Lorger",
  8036. height: math.unit(75, "feet")
  8037. },
  8038. {
  8039. name: "Macro",
  8040. height: math.unit(200, "meters")
  8041. },
  8042. ]
  8043. ))
  8044. characterMakers.push(() => makeCharacter(
  8045. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  8046. {
  8047. front: {
  8048. height: math.unit(2, "meters"),
  8049. weight: math.unit(150, "kg"),
  8050. name: "Front",
  8051. image: {
  8052. source: "./media/characters/everett/front.svg",
  8053. extra: 1017/866,
  8054. bottom: 86/1103
  8055. }
  8056. },
  8057. paw: {
  8058. height: math.unit(2 / 3.6, "meters"),
  8059. name: "Paw",
  8060. image: {
  8061. source: "./media/characters/everett/paw.svg"
  8062. }
  8063. },
  8064. },
  8065. [
  8066. {
  8067. name: "Normal",
  8068. height: math.unit(15, "feet"),
  8069. default: true
  8070. },
  8071. {
  8072. name: "Lorg",
  8073. height: math.unit(70, "feet"),
  8074. default: true
  8075. },
  8076. {
  8077. name: "Lorger",
  8078. height: math.unit(250, "feet")
  8079. },
  8080. {
  8081. name: "Macro",
  8082. height: math.unit(500, "meters")
  8083. },
  8084. ]
  8085. ))
  8086. characterMakers.push(() => makeCharacter(
  8087. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  8088. {
  8089. front: {
  8090. height: math.unit(2, "meters"),
  8091. weight: math.unit(86, "kg"),
  8092. name: "Front",
  8093. image: {
  8094. source: "./media/characters/rose/front.svg",
  8095. extra: 1785/1636,
  8096. bottom: 30/1815
  8097. },
  8098. form: "liom",
  8099. default: true
  8100. },
  8101. frontSporty: {
  8102. height: math.unit(2, "meters"),
  8103. weight: math.unit(86, "kg"),
  8104. name: "Front (Sporty)",
  8105. image: {
  8106. source: "./media/characters/rose/front-sporty.svg",
  8107. extra: 350/335,
  8108. bottom: 10/360
  8109. },
  8110. form: "liom"
  8111. },
  8112. frontAlt: {
  8113. height: math.unit(1.6, "meters"),
  8114. weight: math.unit(86, "kg"),
  8115. name: "Front (Alt)",
  8116. image: {
  8117. source: "./media/characters/rose/front-alt.svg",
  8118. extra: 299/283,
  8119. bottom: 3/302
  8120. },
  8121. form: "liom"
  8122. },
  8123. plush: {
  8124. height: math.unit(2, "meters"),
  8125. weight: math.unit(86/3, "kg"),
  8126. name: "Plush",
  8127. image: {
  8128. source: "./media/characters/rose/plush.svg",
  8129. extra: 361/337,
  8130. bottom: 11/372
  8131. },
  8132. form: "plush",
  8133. default: true
  8134. },
  8135. faeStanding: {
  8136. height: math.unit(10, "cm"),
  8137. weight: math.unit(10, "grams"),
  8138. name: "Standing",
  8139. image: {
  8140. source: "./media/characters/rose/fae-standing.svg",
  8141. extra: 1189/1060,
  8142. bottom: 27/1216
  8143. },
  8144. form: "fae",
  8145. default: true
  8146. },
  8147. faeSitting: {
  8148. height: math.unit(5, "cm"),
  8149. weight: math.unit(10, "grams"),
  8150. name: "Sitting",
  8151. image: {
  8152. source: "./media/characters/rose/fae-sitting.svg",
  8153. extra: 737/577,
  8154. bottom: 356/1093
  8155. },
  8156. form: "fae"
  8157. },
  8158. faePaw: {
  8159. height: math.unit(1.35, "cm"),
  8160. name: "Paw",
  8161. image: {
  8162. source: "./media/characters/rose/fae-paw.svg"
  8163. },
  8164. form: "fae"
  8165. },
  8166. },
  8167. [
  8168. {
  8169. name: "True Micro",
  8170. height: math.unit(9, "cm"),
  8171. form: "liom"
  8172. },
  8173. {
  8174. name: "Micro",
  8175. height: math.unit(16, "cm"),
  8176. form: "liom"
  8177. },
  8178. {
  8179. name: "Normal",
  8180. height: math.unit(1.85, "meters"),
  8181. default: true,
  8182. form: "liom"
  8183. },
  8184. {
  8185. name: "Mini-Macro",
  8186. height: math.unit(5, "meters"),
  8187. form: "liom"
  8188. },
  8189. {
  8190. name: "Macro",
  8191. height: math.unit(15, "meters"),
  8192. form: "liom"
  8193. },
  8194. {
  8195. name: "True Macro",
  8196. height: math.unit(40, "meters"),
  8197. form: "liom"
  8198. },
  8199. {
  8200. name: "City Scale",
  8201. height: math.unit(1, "km"),
  8202. form: "liom"
  8203. },
  8204. {
  8205. name: "Plushie",
  8206. height: math.unit(9, "cm"),
  8207. form: "plush",
  8208. default: true
  8209. },
  8210. {
  8211. name: "Fae",
  8212. height: math.unit(10, "cm"),
  8213. form: "fae",
  8214. default: true
  8215. },
  8216. ],
  8217. {
  8218. "liom": {
  8219. name: "Liom"
  8220. },
  8221. "plush": {
  8222. name: "Plush"
  8223. },
  8224. "fae": {
  8225. name: "Fae Fox",
  8226. default: true
  8227. }
  8228. }
  8229. ))
  8230. characterMakers.push(() => makeCharacter(
  8231. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8232. {
  8233. front: {
  8234. height: math.unit(2, "meters"),
  8235. weight: math.unit(350, "lbs"),
  8236. name: "Front",
  8237. image: {
  8238. source: "./media/characters/regal/front.svg"
  8239. }
  8240. },
  8241. back: {
  8242. height: math.unit(2, "meters"),
  8243. weight: math.unit(350, "lbs"),
  8244. name: "Back",
  8245. image: {
  8246. source: "./media/characters/regal/back.svg"
  8247. }
  8248. },
  8249. },
  8250. [
  8251. {
  8252. name: "Macro",
  8253. height: math.unit(350, "feet"),
  8254. default: true
  8255. }
  8256. ]
  8257. ))
  8258. characterMakers.push(() => makeCharacter(
  8259. { name: "Opal", species: ["rabbit", "deity"], tags: ["anthro"] },
  8260. {
  8261. standing: {
  8262. height: math.unit(4 + 11/12, "feet"),
  8263. weight: math.unit(100, "lb"),
  8264. name: "Standing",
  8265. image: {
  8266. source: "./media/characters/opal/standing.svg",
  8267. extra: 1588/1513,
  8268. bottom: 23/1611
  8269. }
  8270. },
  8271. sitting: {
  8272. height: math.unit(2.3, "feet"),
  8273. weight: math.unit(100, "lb"),
  8274. name: "Sitting",
  8275. image: {
  8276. source: "./media/characters/opal/sitting.svg",
  8277. extra: 1031/892,
  8278. bottom: 142/1173
  8279. }
  8280. },
  8281. hand: {
  8282. height: math.unit(0.59, "feet"),
  8283. name: "Hand",
  8284. image: {
  8285. source: "./media/characters/opal/hand.svg"
  8286. }
  8287. },
  8288. foot: {
  8289. height: math.unit(0.61, "feet"),
  8290. name: "Foot",
  8291. image: {
  8292. source: "./media/characters/opal/foot.svg"
  8293. }
  8294. },
  8295. },
  8296. [
  8297. {
  8298. name: "Small",
  8299. height: math.unit(4 + 11 / 12, "feet")
  8300. },
  8301. {
  8302. name: "Normal",
  8303. height: math.unit(20, "feet"),
  8304. default: true
  8305. },
  8306. {
  8307. name: "Macro",
  8308. height: math.unit(120, "feet")
  8309. },
  8310. {
  8311. name: "Megamacro",
  8312. height: math.unit(80, "miles")
  8313. },
  8314. {
  8315. name: "True Size",
  8316. height: math.unit(100000, "lightyears")
  8317. },
  8318. ]
  8319. ))
  8320. characterMakers.push(() => makeCharacter(
  8321. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8322. {
  8323. front: {
  8324. height: math.unit(6, "feet"),
  8325. weight: math.unit(200, "lbs"),
  8326. name: "Front",
  8327. image: {
  8328. source: "./media/characters/vector-wuff/front.svg"
  8329. }
  8330. }
  8331. },
  8332. [
  8333. {
  8334. name: "Normal",
  8335. height: math.unit(2.8, "meters")
  8336. },
  8337. {
  8338. name: "Macro",
  8339. height: math.unit(450, "meters"),
  8340. default: true
  8341. },
  8342. {
  8343. name: "Megamacro",
  8344. height: math.unit(15, "kilometers")
  8345. }
  8346. ]
  8347. ))
  8348. characterMakers.push(() => makeCharacter(
  8349. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8350. {
  8351. front: {
  8352. height: math.unit(6, "feet"),
  8353. weight: math.unit(256, "lbs"),
  8354. name: "Front",
  8355. image: {
  8356. source: "./media/characters/dannik/front.svg"
  8357. }
  8358. }
  8359. },
  8360. [
  8361. {
  8362. name: "Macro",
  8363. height: math.unit(69.57, "meters"),
  8364. default: true
  8365. },
  8366. ]
  8367. ))
  8368. characterMakers.push(() => makeCharacter(
  8369. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8370. {
  8371. front: {
  8372. height: math.unit(6, "feet"),
  8373. weight: math.unit(120, "lbs"),
  8374. name: "Front",
  8375. image: {
  8376. source: "./media/characters/azura-saharah/front.svg"
  8377. }
  8378. },
  8379. back: {
  8380. height: math.unit(6, "feet"),
  8381. weight: math.unit(120, "lbs"),
  8382. name: "Back",
  8383. image: {
  8384. source: "./media/characters/azura-saharah/back.svg"
  8385. }
  8386. },
  8387. },
  8388. [
  8389. {
  8390. name: "Macro",
  8391. height: math.unit(100, "feet"),
  8392. default: true
  8393. },
  8394. ]
  8395. ))
  8396. characterMakers.push(() => makeCharacter(
  8397. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8398. {
  8399. side: {
  8400. height: math.unit(5 + 4 / 12, "feet"),
  8401. weight: math.unit(163, "lbs"),
  8402. name: "Side",
  8403. image: {
  8404. source: "./media/characters/kennedy/side.svg"
  8405. }
  8406. }
  8407. },
  8408. [
  8409. {
  8410. name: "Standard Doggo",
  8411. height: math.unit(5 + 4 / 12, "feet")
  8412. },
  8413. {
  8414. name: "Big Doggo",
  8415. height: math.unit(25 + 3 / 12, "feet"),
  8416. default: true
  8417. },
  8418. ]
  8419. ))
  8420. characterMakers.push(() => makeCharacter(
  8421. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8422. {
  8423. front: {
  8424. height: math.unit(5 + 5/12, "feet"),
  8425. weight: math.unit(100, "lbs"),
  8426. name: "Front",
  8427. image: {
  8428. source: "./media/characters/odios-de-lunar/front.svg",
  8429. extra: 1468/1323,
  8430. bottom: 22/1490
  8431. }
  8432. }
  8433. },
  8434. [
  8435. {
  8436. name: "Micro",
  8437. height: math.unit(3, "inches")
  8438. },
  8439. {
  8440. name: "Normal",
  8441. height: math.unit(5.5, "feet"),
  8442. default: true
  8443. },
  8444. {
  8445. name: "Macro",
  8446. height: math.unit(100, "feet")
  8447. },
  8448. ]
  8449. ))
  8450. characterMakers.push(() => makeCharacter(
  8451. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8452. {
  8453. back: {
  8454. height: math.unit(6, "feet"),
  8455. weight: math.unit(220, "lbs"),
  8456. name: "Back",
  8457. image: {
  8458. source: "./media/characters/mandake/back.svg"
  8459. }
  8460. }
  8461. },
  8462. [
  8463. {
  8464. name: "Normal",
  8465. height: math.unit(7, "feet"),
  8466. default: true
  8467. },
  8468. {
  8469. name: "Macro",
  8470. height: math.unit(78, "feet")
  8471. },
  8472. {
  8473. name: "Macro+",
  8474. height: math.unit(300, "meters")
  8475. },
  8476. {
  8477. name: "Macro++",
  8478. height: math.unit(2400, "feet")
  8479. },
  8480. {
  8481. name: "Megamacro",
  8482. height: math.unit(5167, "meters")
  8483. },
  8484. {
  8485. name: "Gigamacro",
  8486. height: math.unit(41769, "miles")
  8487. },
  8488. ]
  8489. ))
  8490. characterMakers.push(() => makeCharacter(
  8491. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8492. {
  8493. front: {
  8494. height: math.unit(6, "feet"),
  8495. weight: math.unit(120, "lbs"),
  8496. name: "Front",
  8497. image: {
  8498. source: "./media/characters/yozey/front.svg"
  8499. }
  8500. },
  8501. frontAlt: {
  8502. height: math.unit(6, "feet"),
  8503. weight: math.unit(120, "lbs"),
  8504. name: "Front (Alt)",
  8505. image: {
  8506. source: "./media/characters/yozey/front-alt.svg"
  8507. }
  8508. },
  8509. side: {
  8510. height: math.unit(6, "feet"),
  8511. weight: math.unit(120, "lbs"),
  8512. name: "Side",
  8513. image: {
  8514. source: "./media/characters/yozey/side.svg"
  8515. }
  8516. },
  8517. },
  8518. [
  8519. {
  8520. name: "Micro",
  8521. height: math.unit(3, "inches"),
  8522. default: true
  8523. },
  8524. {
  8525. name: "Normal",
  8526. height: math.unit(6, "feet")
  8527. }
  8528. ]
  8529. ))
  8530. characterMakers.push(() => makeCharacter(
  8531. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8532. {
  8533. front: {
  8534. height: math.unit(6, "feet"),
  8535. weight: math.unit(103, "lbs"),
  8536. name: "Front",
  8537. image: {
  8538. source: "./media/characters/valeska-voss/front.svg"
  8539. }
  8540. }
  8541. },
  8542. [
  8543. {
  8544. name: "Mini-Sized Sub",
  8545. height: math.unit(3.1, "inches")
  8546. },
  8547. {
  8548. name: "Mid-Sized Sub",
  8549. height: math.unit(6.2, "inches")
  8550. },
  8551. {
  8552. name: "Full-Sized Sub",
  8553. height: math.unit(9.3, "inches")
  8554. },
  8555. {
  8556. name: "Normal",
  8557. height: math.unit(5 + 2 / 12, "foot"),
  8558. default: true
  8559. },
  8560. ]
  8561. ))
  8562. characterMakers.push(() => makeCharacter(
  8563. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8564. {
  8565. front: {
  8566. height: math.unit(6, "feet"),
  8567. weight: math.unit(160, "lbs"),
  8568. name: "Front",
  8569. image: {
  8570. source: "./media/characters/gene-zeta/front.svg",
  8571. extra: 3006 / 2826,
  8572. bottom: 182 / 3188
  8573. }
  8574. }
  8575. },
  8576. [
  8577. {
  8578. name: "Micro",
  8579. height: math.unit(6, "inches")
  8580. },
  8581. {
  8582. name: "Normal",
  8583. height: math.unit(5 + 11 / 12, "foot"),
  8584. default: true
  8585. },
  8586. {
  8587. name: "Macro",
  8588. height: math.unit(140, "feet")
  8589. },
  8590. {
  8591. name: "Supercharged",
  8592. height: math.unit(2500, "feet")
  8593. },
  8594. ]
  8595. ))
  8596. characterMakers.push(() => makeCharacter(
  8597. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8598. {
  8599. front: {
  8600. height: math.unit(6, "feet"),
  8601. weight: math.unit(350, "lbs"),
  8602. name: "Front",
  8603. image: {
  8604. source: "./media/characters/razinox/front.svg",
  8605. extra: 1686 / 1548,
  8606. bottom: 28.2 / 1868
  8607. }
  8608. },
  8609. back: {
  8610. height: math.unit(6, "feet"),
  8611. weight: math.unit(350, "lbs"),
  8612. name: "Back",
  8613. image: {
  8614. source: "./media/characters/razinox/back.svg",
  8615. extra: 1660 / 1590,
  8616. bottom: 15 / 1665
  8617. }
  8618. },
  8619. },
  8620. [
  8621. {
  8622. name: "Normal",
  8623. height: math.unit(10 + 8 / 12, "foot")
  8624. },
  8625. {
  8626. name: "Minimacro",
  8627. height: math.unit(15, "foot")
  8628. },
  8629. {
  8630. name: "Macro",
  8631. height: math.unit(60, "foot"),
  8632. default: true
  8633. },
  8634. {
  8635. name: "Megamacro",
  8636. height: math.unit(5, "miles")
  8637. },
  8638. {
  8639. name: "Gigamacro",
  8640. height: math.unit(6000, "miles")
  8641. },
  8642. ]
  8643. ))
  8644. characterMakers.push(() => makeCharacter(
  8645. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8646. {
  8647. front: {
  8648. height: math.unit(6, "feet"),
  8649. weight: math.unit(150, "lbs"),
  8650. name: "Front",
  8651. image: {
  8652. source: "./media/characters/cobalt/front.svg"
  8653. }
  8654. }
  8655. },
  8656. [
  8657. {
  8658. name: "Normal",
  8659. height: math.unit(8 + 1 / 12, "foot")
  8660. },
  8661. {
  8662. name: "Macro",
  8663. height: math.unit(111, "foot"),
  8664. default: true
  8665. },
  8666. {
  8667. name: "Supracosmic",
  8668. height: math.unit(1e42, "feet")
  8669. },
  8670. ]
  8671. ))
  8672. characterMakers.push(() => makeCharacter(
  8673. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8674. {
  8675. front: {
  8676. height: math.unit(5, "inches"),
  8677. name: "Front",
  8678. image: {
  8679. source: "./media/characters/amanda/front.svg",
  8680. extra: 926/791,
  8681. bottom: 38/964
  8682. }
  8683. },
  8684. back: {
  8685. height: math.unit(5, "inches"),
  8686. name: "Back",
  8687. image: {
  8688. source: "./media/characters/amanda/back.svg",
  8689. extra: 909/805,
  8690. bottom: 43/952
  8691. }
  8692. },
  8693. },
  8694. [
  8695. {
  8696. name: "Micro",
  8697. height: math.unit(5, "inches"),
  8698. default: true
  8699. },
  8700. ]
  8701. ))
  8702. characterMakers.push(() => makeCharacter(
  8703. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8704. {
  8705. front: {
  8706. height: math.unit(2.75, "meters"),
  8707. weight: math.unit(1200, "lb"),
  8708. name: "Front",
  8709. image: {
  8710. source: "./media/characters/teal/front.svg",
  8711. extra: 2463 / 2320,
  8712. bottom: 166 / 2629
  8713. }
  8714. },
  8715. back: {
  8716. height: math.unit(2.75, "meters"),
  8717. weight: math.unit(1200, "lb"),
  8718. name: "Back",
  8719. image: {
  8720. source: "./media/characters/teal/back.svg",
  8721. extra: 2580 / 2489,
  8722. bottom: 151 / 2731
  8723. }
  8724. },
  8725. sitting: {
  8726. height: math.unit(1.9, "meters"),
  8727. weight: math.unit(1200, "lb"),
  8728. name: "Sitting",
  8729. image: {
  8730. source: "./media/characters/teal/sitting.svg",
  8731. extra: 623 / 590,
  8732. bottom: 121 / 744
  8733. }
  8734. },
  8735. standing: {
  8736. height: math.unit(2.75, "meters"),
  8737. weight: math.unit(1200, "lb"),
  8738. name: "Standing",
  8739. image: {
  8740. source: "./media/characters/teal/standing.svg",
  8741. extra: 923 / 893,
  8742. bottom: 60 / 983
  8743. }
  8744. },
  8745. stretching: {
  8746. height: math.unit(3.65, "meters"),
  8747. weight: math.unit(1200, "lb"),
  8748. name: "Stretching",
  8749. image: {
  8750. source: "./media/characters/teal/stretching.svg",
  8751. extra: 1276 / 1244,
  8752. bottom: 0 / 1276
  8753. }
  8754. },
  8755. legged: {
  8756. height: math.unit(1.3, "meters"),
  8757. weight: math.unit(100, "lb"),
  8758. name: "Legged",
  8759. image: {
  8760. source: "./media/characters/teal/legged.svg",
  8761. extra: 462 / 437,
  8762. bottom: 24 / 486
  8763. }
  8764. },
  8765. naga: {
  8766. height: math.unit(5.4, "meters"),
  8767. weight: math.unit(4000, "lb"),
  8768. name: "Naga",
  8769. image: {
  8770. source: "./media/characters/teal/naga.svg",
  8771. extra: 1902 / 1858,
  8772. bottom: 0 / 1902
  8773. }
  8774. },
  8775. hand: {
  8776. height: math.unit(0.52, "meters"),
  8777. name: "Hand",
  8778. image: {
  8779. source: "./media/characters/teal/hand.svg"
  8780. }
  8781. },
  8782. maw: {
  8783. height: math.unit(0.43, "meters"),
  8784. name: "Maw",
  8785. image: {
  8786. source: "./media/characters/teal/maw.svg"
  8787. }
  8788. },
  8789. slit: {
  8790. height: math.unit(0.25, "meters"),
  8791. name: "Slit",
  8792. image: {
  8793. source: "./media/characters/teal/slit.svg"
  8794. }
  8795. },
  8796. },
  8797. [
  8798. {
  8799. name: "Normal",
  8800. height: math.unit(2.75, "meters"),
  8801. default: true
  8802. },
  8803. {
  8804. name: "Macro",
  8805. height: math.unit(300, "feet")
  8806. },
  8807. {
  8808. name: "Macro+",
  8809. height: math.unit(2000, "feet")
  8810. },
  8811. ]
  8812. ))
  8813. characterMakers.push(() => makeCharacter(
  8814. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8815. {
  8816. frontCat: {
  8817. height: math.unit(6, "feet"),
  8818. weight: math.unit(180, "lbs"),
  8819. name: "Front (Cat)",
  8820. image: {
  8821. source: "./media/characters/ravin-amulet/front-cat.svg"
  8822. }
  8823. },
  8824. frontCatAlt: {
  8825. height: math.unit(6, "feet"),
  8826. weight: math.unit(180, "lbs"),
  8827. name: "Front (Alt, Cat)",
  8828. image: {
  8829. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8830. }
  8831. },
  8832. frontWerewolf: {
  8833. height: math.unit(6 * 1.2, "feet"),
  8834. weight: math.unit(225, "lbs"),
  8835. name: "Front (Werewolf)",
  8836. image: {
  8837. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8838. }
  8839. },
  8840. backWerewolf: {
  8841. height: math.unit(6 * 1.2, "feet"),
  8842. weight: math.unit(225, "lbs"),
  8843. name: "Back (Werewolf)",
  8844. image: {
  8845. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8846. }
  8847. },
  8848. },
  8849. [
  8850. {
  8851. name: "Nano",
  8852. height: math.unit(1, "micrometer")
  8853. },
  8854. {
  8855. name: "Micro",
  8856. height: math.unit(1, "inch")
  8857. },
  8858. {
  8859. name: "Normal",
  8860. height: math.unit(6, "feet"),
  8861. default: true
  8862. },
  8863. {
  8864. name: "Macro",
  8865. height: math.unit(60, "feet")
  8866. }
  8867. ]
  8868. ))
  8869. characterMakers.push(() => makeCharacter(
  8870. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8871. {
  8872. front: {
  8873. height: math.unit(6, "feet"),
  8874. weight: math.unit(165, "lbs"),
  8875. name: "Front",
  8876. image: {
  8877. source: "./media/characters/fluoresce/front.svg"
  8878. }
  8879. }
  8880. },
  8881. [
  8882. {
  8883. name: "Micro",
  8884. height: math.unit(6, "cm")
  8885. },
  8886. {
  8887. name: "Normal",
  8888. height: math.unit(5 + 7 / 12, "feet"),
  8889. default: true
  8890. },
  8891. {
  8892. name: "Macro",
  8893. height: math.unit(56, "feet")
  8894. },
  8895. {
  8896. name: "Megamacro",
  8897. height: math.unit(1.9, "miles")
  8898. },
  8899. ]
  8900. ))
  8901. characterMakers.push(() => makeCharacter(
  8902. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8903. {
  8904. front: {
  8905. height: math.unit(9 + 6 / 12, "feet"),
  8906. weight: math.unit(523, "lbs"),
  8907. name: "Side",
  8908. image: {
  8909. source: "./media/characters/aurora/side.svg",
  8910. extra: 474/393,
  8911. bottom: 5/479
  8912. }
  8913. }
  8914. },
  8915. [
  8916. {
  8917. name: "Normal",
  8918. height: math.unit(9 + 6 / 12, "feet")
  8919. },
  8920. {
  8921. name: "Macro",
  8922. height: math.unit(96, "feet"),
  8923. default: true
  8924. },
  8925. {
  8926. name: "Macro+",
  8927. height: math.unit(243, "feet")
  8928. },
  8929. ]
  8930. ))
  8931. characterMakers.push(() => makeCharacter(
  8932. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8933. {
  8934. front: {
  8935. height: math.unit(194, "cm"),
  8936. weight: math.unit(90, "kg"),
  8937. name: "Front",
  8938. image: {
  8939. source: "./media/characters/ranek/front.svg",
  8940. extra: 1862/1791,
  8941. bottom: 80/1942
  8942. }
  8943. },
  8944. back: {
  8945. height: math.unit(194, "cm"),
  8946. weight: math.unit(90, "kg"),
  8947. name: "Back",
  8948. image: {
  8949. source: "./media/characters/ranek/back.svg",
  8950. extra: 1853/1787,
  8951. bottom: 74/1927
  8952. }
  8953. },
  8954. feral: {
  8955. height: math.unit(30, "cm"),
  8956. weight: math.unit(1.6, "lbs"),
  8957. name: "Feral",
  8958. image: {
  8959. source: "./media/characters/ranek/feral.svg",
  8960. extra: 990/631,
  8961. bottom: 29/1019
  8962. }
  8963. },
  8964. },
  8965. [
  8966. {
  8967. name: "Normal",
  8968. height: math.unit(194, "cm"),
  8969. default: true
  8970. },
  8971. {
  8972. name: "Macro",
  8973. height: math.unit(100, "meters")
  8974. },
  8975. ]
  8976. ))
  8977. characterMakers.push(() => makeCharacter(
  8978. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8979. {
  8980. front: {
  8981. height: math.unit(5 + 6 / 12, "feet"),
  8982. weight: math.unit(153, "lbs"),
  8983. name: "Front",
  8984. image: {
  8985. source: "./media/characters/andrew-cooper/front.svg"
  8986. }
  8987. },
  8988. },
  8989. [
  8990. {
  8991. name: "Nano",
  8992. height: math.unit(1, "mm")
  8993. },
  8994. {
  8995. name: "Micro",
  8996. height: math.unit(2, "inches")
  8997. },
  8998. {
  8999. name: "Normal",
  9000. height: math.unit(5 + 6 / 12, "feet"),
  9001. default: true
  9002. }
  9003. ]
  9004. ))
  9005. characterMakers.push(() => makeCharacter(
  9006. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  9007. {
  9008. front: {
  9009. height: math.unit(6, "feet"),
  9010. weight: math.unit(180, "lbs"),
  9011. name: "Front",
  9012. image: {
  9013. source: "./media/characters/akane-sato/front.svg",
  9014. extra: 1219 / 1140
  9015. }
  9016. },
  9017. back: {
  9018. height: math.unit(6, "feet"),
  9019. weight: math.unit(180, "lbs"),
  9020. name: "Back",
  9021. image: {
  9022. source: "./media/characters/akane-sato/back.svg",
  9023. extra: 1219 / 1170
  9024. }
  9025. },
  9026. },
  9027. [
  9028. {
  9029. name: "Normal",
  9030. height: math.unit(2.5, "meters")
  9031. },
  9032. {
  9033. name: "Macro",
  9034. height: math.unit(250, "meters"),
  9035. default: true
  9036. },
  9037. {
  9038. name: "Megamacro",
  9039. height: math.unit(25, "km")
  9040. },
  9041. ]
  9042. ))
  9043. characterMakers.push(() => makeCharacter(
  9044. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  9045. {
  9046. front: {
  9047. height: math.unit(6, "feet"),
  9048. weight: math.unit(65, "kg"),
  9049. name: "Front",
  9050. image: {
  9051. source: "./media/characters/rook/front.svg",
  9052. extra: 960 / 950
  9053. }
  9054. }
  9055. },
  9056. [
  9057. {
  9058. name: "Normal",
  9059. height: math.unit(8.8, "feet")
  9060. },
  9061. {
  9062. name: "Macro",
  9063. height: math.unit(88, "feet"),
  9064. default: true
  9065. },
  9066. {
  9067. name: "Megamacro",
  9068. height: math.unit(8, "miles")
  9069. },
  9070. ]
  9071. ))
  9072. characterMakers.push(() => makeCharacter(
  9073. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  9074. {
  9075. front: {
  9076. height: math.unit(12 + 2 / 12, "feet"),
  9077. weight: math.unit(808, "lbs"),
  9078. name: "Front",
  9079. image: {
  9080. source: "./media/characters/prodigy/front.svg"
  9081. }
  9082. }
  9083. },
  9084. [
  9085. {
  9086. name: "Normal",
  9087. height: math.unit(12 + 2 / 12, "feet"),
  9088. default: true
  9089. },
  9090. {
  9091. name: "Macro",
  9092. height: math.unit(143, "feet")
  9093. },
  9094. {
  9095. name: "Macro+",
  9096. height: math.unit(400, "feet")
  9097. },
  9098. ]
  9099. ))
  9100. characterMakers.push(() => makeCharacter(
  9101. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  9102. {
  9103. front: {
  9104. height: math.unit(6, "feet"),
  9105. weight: math.unit(225, "lbs"),
  9106. name: "Front",
  9107. image: {
  9108. source: "./media/characters/daniel/front.svg"
  9109. }
  9110. },
  9111. leaning: {
  9112. height: math.unit(6, "feet"),
  9113. weight: math.unit(225, "lbs"),
  9114. name: "Leaning",
  9115. image: {
  9116. source: "./media/characters/daniel/leaning.svg"
  9117. }
  9118. },
  9119. },
  9120. [
  9121. {
  9122. name: "Macro",
  9123. height: math.unit(1000, "feet"),
  9124. default: true
  9125. },
  9126. ]
  9127. ))
  9128. characterMakers.push(() => makeCharacter(
  9129. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  9130. {
  9131. front: {
  9132. height: math.unit(6, "feet"),
  9133. weight: math.unit(88, "lbs"),
  9134. name: "Front",
  9135. image: {
  9136. source: "./media/characters/chiros/front.svg",
  9137. extra: 306 / 226
  9138. }
  9139. },
  9140. side: {
  9141. height: math.unit(6, "feet"),
  9142. weight: math.unit(88, "lbs"),
  9143. name: "Side",
  9144. image: {
  9145. source: "./media/characters/chiros/side.svg",
  9146. extra: 306 / 226
  9147. }
  9148. },
  9149. },
  9150. [
  9151. {
  9152. name: "Normal",
  9153. height: math.unit(6, "cm"),
  9154. default: true
  9155. },
  9156. ]
  9157. ))
  9158. characterMakers.push(() => makeCharacter(
  9159. { name: "Selka", species: ["snake"], tags: ["naga"] },
  9160. {
  9161. front: {
  9162. height: math.unit(6, "feet"),
  9163. weight: math.unit(100, "lbs"),
  9164. name: "Front",
  9165. image: {
  9166. source: "./media/characters/selka/front.svg",
  9167. extra: 947 / 887
  9168. }
  9169. }
  9170. },
  9171. [
  9172. {
  9173. name: "Normal",
  9174. height: math.unit(5, "cm"),
  9175. default: true
  9176. },
  9177. ]
  9178. ))
  9179. characterMakers.push(() => makeCharacter(
  9180. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  9181. {
  9182. front: {
  9183. height: math.unit(8 + 3 / 12, "feet"),
  9184. weight: math.unit(424, "lbs"),
  9185. name: "Front",
  9186. image: {
  9187. source: "./media/characters/verin/front.svg",
  9188. extra: 1845 / 1550
  9189. }
  9190. },
  9191. frontArmored: {
  9192. height: math.unit(8 + 3 / 12, "feet"),
  9193. weight: math.unit(424, "lbs"),
  9194. name: "Front (Armored)",
  9195. image: {
  9196. source: "./media/characters/verin/front-armor.svg",
  9197. extra: 1845 / 1550,
  9198. bottom: 0.01
  9199. }
  9200. },
  9201. back: {
  9202. height: math.unit(8 + 3 / 12, "feet"),
  9203. weight: math.unit(424, "lbs"),
  9204. name: "Back",
  9205. image: {
  9206. source: "./media/characters/verin/back.svg",
  9207. bottom: 0.1,
  9208. extra: 1
  9209. }
  9210. },
  9211. foot: {
  9212. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9213. name: "Foot",
  9214. image: {
  9215. source: "./media/characters/verin/foot.svg"
  9216. }
  9217. },
  9218. },
  9219. [
  9220. {
  9221. name: "Normal",
  9222. height: math.unit(8 + 3 / 12, "feet")
  9223. },
  9224. {
  9225. name: "Minimacro",
  9226. height: math.unit(21, "feet"),
  9227. default: true
  9228. },
  9229. {
  9230. name: "Macro",
  9231. height: math.unit(626, "feet")
  9232. },
  9233. ]
  9234. ))
  9235. characterMakers.push(() => makeCharacter(
  9236. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9237. {
  9238. front: {
  9239. height: math.unit(2.718, "meters"),
  9240. weight: math.unit(150, "lbs"),
  9241. name: "Front",
  9242. image: {
  9243. source: "./media/characters/sovrim-terraquian/front.svg",
  9244. extra: 1752/1689,
  9245. bottom: 36/1788
  9246. }
  9247. },
  9248. back: {
  9249. height: math.unit(2.718, "meters"),
  9250. weight: math.unit(150, "lbs"),
  9251. name: "Back",
  9252. image: {
  9253. source: "./media/characters/sovrim-terraquian/back.svg",
  9254. extra: 1698/1657,
  9255. bottom: 58/1756
  9256. }
  9257. },
  9258. tongue: {
  9259. height: math.unit(2.865, "feet"),
  9260. name: "Tongue",
  9261. image: {
  9262. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9263. }
  9264. },
  9265. hand: {
  9266. height: math.unit(1.61, "feet"),
  9267. name: "Hand",
  9268. image: {
  9269. source: "./media/characters/sovrim-terraquian/hand.svg"
  9270. }
  9271. },
  9272. foot: {
  9273. height: math.unit(1.05, "feet"),
  9274. name: "Foot",
  9275. image: {
  9276. source: "./media/characters/sovrim-terraquian/foot.svg"
  9277. }
  9278. },
  9279. footAlt: {
  9280. height: math.unit(0.88, "feet"),
  9281. name: "Foot (Alt)",
  9282. image: {
  9283. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9284. }
  9285. },
  9286. },
  9287. [
  9288. {
  9289. name: "Micro",
  9290. height: math.unit(2, "inches")
  9291. },
  9292. {
  9293. name: "Small",
  9294. height: math.unit(1, "meter")
  9295. },
  9296. {
  9297. name: "Normal",
  9298. height: math.unit(Math.E, "meters"),
  9299. default: true
  9300. },
  9301. {
  9302. name: "Macro",
  9303. height: math.unit(20, "meters")
  9304. },
  9305. {
  9306. name: "Macro+",
  9307. height: math.unit(400, "meters")
  9308. },
  9309. ]
  9310. ))
  9311. characterMakers.push(() => makeCharacter(
  9312. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9313. {
  9314. front: {
  9315. height: math.unit(7, "feet"),
  9316. weight: math.unit(489, "lbs"),
  9317. name: "Front",
  9318. image: {
  9319. source: "./media/characters/reece-silvermane/front.svg",
  9320. bottom: 0.02,
  9321. extra: 1
  9322. }
  9323. },
  9324. },
  9325. [
  9326. {
  9327. name: "Macro",
  9328. height: math.unit(1.5, "miles"),
  9329. default: true
  9330. },
  9331. ]
  9332. ))
  9333. characterMakers.push(() => makeCharacter(
  9334. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9335. {
  9336. front: {
  9337. height: math.unit(6, "feet"),
  9338. weight: math.unit(78, "kg"),
  9339. name: "Front",
  9340. image: {
  9341. source: "./media/characters/kane/front.svg",
  9342. extra: 978 / 899
  9343. }
  9344. },
  9345. back: {
  9346. height: math.unit(6, "feet"),
  9347. weight: math.unit(78, "kg"),
  9348. name: "Back",
  9349. image: {
  9350. source: "./media/characters/kane/back.svg",
  9351. extra: 1966/1800,
  9352. bottom: 0/1966
  9353. }
  9354. },
  9355. head: {
  9356. height: math.unit(1.4, "feet"),
  9357. name: "Head",
  9358. image: {
  9359. source: "./media/characters/kane/head.svg"
  9360. }
  9361. },
  9362. },
  9363. [
  9364. {
  9365. name: "Normal",
  9366. height: math.unit(2.1, "m"),
  9367. },
  9368. {
  9369. name: "Macro",
  9370. height: math.unit(1, "km"),
  9371. default: true
  9372. },
  9373. ]
  9374. ))
  9375. characterMakers.push(() => makeCharacter(
  9376. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9377. {
  9378. front: {
  9379. height: math.unit(6, "feet"),
  9380. weight: math.unit(200, "kg"),
  9381. name: "Front",
  9382. image: {
  9383. source: "./media/characters/tegon/front.svg",
  9384. bottom: 0.01,
  9385. extra: 1
  9386. }
  9387. },
  9388. },
  9389. [
  9390. {
  9391. name: "Micro",
  9392. height: math.unit(1, "inch")
  9393. },
  9394. {
  9395. name: "Normal",
  9396. height: math.unit(6 + 3 / 12, "feet"),
  9397. default: true
  9398. },
  9399. {
  9400. name: "Macro",
  9401. height: math.unit(300, "feet")
  9402. },
  9403. {
  9404. name: "Megamacro",
  9405. height: math.unit(69, "miles")
  9406. },
  9407. ]
  9408. ))
  9409. characterMakers.push(() => makeCharacter(
  9410. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9411. {
  9412. side: {
  9413. height: math.unit(6, "feet"),
  9414. weight: math.unit(2304, "lbs"),
  9415. name: "Side",
  9416. image: {
  9417. source: "./media/characters/arcturax/side.svg",
  9418. extra: 790 / 376,
  9419. bottom: 0.01
  9420. }
  9421. },
  9422. },
  9423. [
  9424. {
  9425. name: "Micro",
  9426. height: math.unit(2, "inch")
  9427. },
  9428. {
  9429. name: "Normal",
  9430. height: math.unit(6, "feet")
  9431. },
  9432. {
  9433. name: "Macro",
  9434. height: math.unit(39, "feet"),
  9435. default: true
  9436. },
  9437. {
  9438. name: "Megamacro",
  9439. height: math.unit(7, "miles")
  9440. },
  9441. ]
  9442. ))
  9443. characterMakers.push(() => makeCharacter(
  9444. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9445. {
  9446. front: {
  9447. height: math.unit(6, "feet"),
  9448. weight: math.unit(50, "lbs"),
  9449. name: "Front",
  9450. image: {
  9451. source: "./media/characters/sentri/front.svg",
  9452. extra: 1750 / 1570,
  9453. bottom: 0.025
  9454. }
  9455. },
  9456. frontAlt: {
  9457. height: math.unit(6, "feet"),
  9458. weight: math.unit(50, "lbs"),
  9459. name: "Front (Alt)",
  9460. image: {
  9461. source: "./media/characters/sentri/front-alt.svg",
  9462. extra: 1750 / 1570,
  9463. bottom: 0.025
  9464. }
  9465. },
  9466. },
  9467. [
  9468. {
  9469. name: "Normal",
  9470. height: math.unit(15, "feet"),
  9471. default: true
  9472. },
  9473. {
  9474. name: "Macro",
  9475. height: math.unit(2500, "feet")
  9476. }
  9477. ]
  9478. ))
  9479. characterMakers.push(() => makeCharacter(
  9480. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9481. {
  9482. front: {
  9483. height: math.unit(5 + 8 / 12, "feet"),
  9484. weight: math.unit(130, "lbs"),
  9485. name: "Front",
  9486. image: {
  9487. source: "./media/characters/corvin/front.svg",
  9488. extra: 1803 / 1629
  9489. }
  9490. },
  9491. frontShirt: {
  9492. height: math.unit(5 + 8 / 12, "feet"),
  9493. weight: math.unit(130, "lbs"),
  9494. name: "Front (Shirt)",
  9495. image: {
  9496. source: "./media/characters/corvin/front-shirt.svg",
  9497. extra: 1803 / 1629
  9498. }
  9499. },
  9500. frontPoncho: {
  9501. height: math.unit(5 + 8 / 12, "feet"),
  9502. weight: math.unit(130, "lbs"),
  9503. name: "Front (Poncho)",
  9504. image: {
  9505. source: "./media/characters/corvin/front-poncho.svg",
  9506. extra: 1803 / 1629
  9507. }
  9508. },
  9509. side: {
  9510. height: math.unit(5 + 8 / 12, "feet"),
  9511. weight: math.unit(130, "lbs"),
  9512. name: "Side",
  9513. image: {
  9514. source: "./media/characters/corvin/side.svg",
  9515. extra: 1012 / 945
  9516. }
  9517. },
  9518. back: {
  9519. height: math.unit(5 + 8 / 12, "feet"),
  9520. weight: math.unit(130, "lbs"),
  9521. name: "Back",
  9522. image: {
  9523. source: "./media/characters/corvin/back.svg",
  9524. extra: 1803 / 1629
  9525. }
  9526. },
  9527. },
  9528. [
  9529. {
  9530. name: "Micro",
  9531. height: math.unit(3, "inches")
  9532. },
  9533. {
  9534. name: "Normal",
  9535. height: math.unit(5 + 8 / 12, "feet")
  9536. },
  9537. {
  9538. name: "Macro",
  9539. height: math.unit(300, "feet"),
  9540. default: true
  9541. },
  9542. {
  9543. name: "Megamacro",
  9544. height: math.unit(500, "miles")
  9545. }
  9546. ]
  9547. ))
  9548. characterMakers.push(() => makeCharacter(
  9549. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9550. {
  9551. front: {
  9552. height: math.unit(6, "feet"),
  9553. weight: math.unit(135, "lbs"),
  9554. name: "Front",
  9555. image: {
  9556. source: "./media/characters/q/front.svg",
  9557. extra: 854 / 752,
  9558. bottom: 0.005
  9559. }
  9560. },
  9561. back: {
  9562. height: math.unit(6, "feet"),
  9563. weight: math.unit(130, "lbs"),
  9564. name: "Back",
  9565. image: {
  9566. source: "./media/characters/q/back.svg",
  9567. extra: 854 / 752
  9568. }
  9569. },
  9570. },
  9571. [
  9572. {
  9573. name: "Macro",
  9574. height: math.unit(90, "feet"),
  9575. default: true
  9576. },
  9577. {
  9578. name: "Extra Macro",
  9579. height: math.unit(300, "feet"),
  9580. },
  9581. {
  9582. name: "BIG WALF",
  9583. height: math.unit(750, "feet"),
  9584. },
  9585. ]
  9586. ))
  9587. characterMakers.push(() => makeCharacter(
  9588. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9589. {
  9590. front: {
  9591. height: math.unit(3, "feet"),
  9592. weight: math.unit(28, "lbs"),
  9593. name: "Front",
  9594. image: {
  9595. source: "./media/characters/citrine/front.svg"
  9596. }
  9597. }
  9598. },
  9599. [
  9600. {
  9601. name: "Normal",
  9602. height: math.unit(3, "feet"),
  9603. default: true
  9604. }
  9605. ]
  9606. ))
  9607. characterMakers.push(() => makeCharacter(
  9608. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9609. {
  9610. front: {
  9611. height: math.unit(14, "feet"),
  9612. weight: math.unit(1450, "kg"),
  9613. preyCapacity: math.unit(15, "people"),
  9614. name: "Front",
  9615. image: {
  9616. source: "./media/characters/aura-starwind/front.svg",
  9617. extra: 1440/1327,
  9618. bottom: 11/1451
  9619. }
  9620. },
  9621. side: {
  9622. height: math.unit(14, "feet"),
  9623. weight: math.unit(1450, "kg"),
  9624. preyCapacity: math.unit(15, "people"),
  9625. name: "Side",
  9626. image: {
  9627. source: "./media/characters/aura-starwind/side.svg",
  9628. extra: 1654 / 1497
  9629. }
  9630. },
  9631. taur: {
  9632. height: math.unit(18, "feet"),
  9633. weight: math.unit(5500, "kg"),
  9634. preyCapacity: math.unit(50, "people"),
  9635. name: "Taur",
  9636. image: {
  9637. source: "./media/characters/aura-starwind/taur.svg",
  9638. extra: 1760 / 1650
  9639. }
  9640. },
  9641. feral: {
  9642. height: math.unit(46, "feet"),
  9643. weight: math.unit(25000, "kg"),
  9644. preyCapacity: math.unit(120, "people"),
  9645. name: "Feral",
  9646. image: {
  9647. source: "./media/characters/aura-starwind/feral.svg"
  9648. }
  9649. },
  9650. },
  9651. [
  9652. {
  9653. name: "Normal",
  9654. height: math.unit(14, "feet"),
  9655. default: true
  9656. },
  9657. {
  9658. name: "Macro",
  9659. height: math.unit(50, "meters")
  9660. },
  9661. {
  9662. name: "Megamacro",
  9663. height: math.unit(5000, "meters")
  9664. },
  9665. {
  9666. name: "Gigamacro",
  9667. height: math.unit(100000, "kilometers")
  9668. },
  9669. ]
  9670. ))
  9671. characterMakers.push(() => makeCharacter(
  9672. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9673. {
  9674. front: {
  9675. height: math.unit(2 + 7 / 12, "feet"),
  9676. weight: math.unit(32, "lbs"),
  9677. name: "Front",
  9678. image: {
  9679. source: "./media/characters/rivet/front.svg",
  9680. extra: 1716 / 1658,
  9681. bottom: 0.03
  9682. }
  9683. },
  9684. foot: {
  9685. height: math.unit(0.551, "feet"),
  9686. name: "Rivet's Foot",
  9687. image: {
  9688. source: "./media/characters/rivet/foot.svg"
  9689. },
  9690. rename: true
  9691. }
  9692. },
  9693. [
  9694. {
  9695. name: "Micro",
  9696. height: math.unit(1.5, "inches"),
  9697. },
  9698. {
  9699. name: "Normal",
  9700. height: math.unit(2 + 7 / 12, "feet"),
  9701. default: true
  9702. },
  9703. {
  9704. name: "Macro",
  9705. height: math.unit(85, "feet")
  9706. },
  9707. {
  9708. name: "Megamacro",
  9709. height: math.unit(2.2, "km")
  9710. }
  9711. ]
  9712. ))
  9713. characterMakers.push(() => makeCharacter(
  9714. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9715. {
  9716. front: {
  9717. height: math.unit(5 + 9 / 12, "feet"),
  9718. weight: math.unit(150, "lbs"),
  9719. name: "Front",
  9720. image: {
  9721. source: "./media/characters/coffee/front.svg",
  9722. extra: 946/880,
  9723. bottom: 66/1012
  9724. }
  9725. },
  9726. foot: {
  9727. height: math.unit(1.29, "feet"),
  9728. name: "Foot",
  9729. image: {
  9730. source: "./media/characters/coffee/foot.svg"
  9731. }
  9732. },
  9733. },
  9734. [
  9735. {
  9736. name: "Micro",
  9737. height: math.unit(2, "inches"),
  9738. },
  9739. {
  9740. name: "Normal",
  9741. height: math.unit(5 + 9 / 12, "feet"),
  9742. default: true
  9743. },
  9744. {
  9745. name: "Macro",
  9746. height: math.unit(800, "feet")
  9747. },
  9748. {
  9749. name: "Megamacro",
  9750. height: math.unit(25, "miles")
  9751. }
  9752. ]
  9753. ))
  9754. characterMakers.push(() => makeCharacter(
  9755. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9756. {
  9757. front: {
  9758. height: math.unit(6, "feet"),
  9759. weight: math.unit(200, "lbs"),
  9760. name: "Front",
  9761. image: {
  9762. source: "./media/characters/chari-gal/front.svg",
  9763. extra: 735/649,
  9764. bottom: 55/790
  9765. },
  9766. form: "normal",
  9767. default: true
  9768. },
  9769. back: {
  9770. height: math.unit(6, "feet"),
  9771. weight: math.unit(200, "lb"),
  9772. name: "Back",
  9773. image: {
  9774. source: "./media/characters/chari-gal/back.svg",
  9775. extra: 762/666,
  9776. bottom: 31/793
  9777. },
  9778. form: "normal"
  9779. },
  9780. mouth: {
  9781. height: math.unit(1.35, "feet"),
  9782. name: "Mouth",
  9783. image: {
  9784. source: "./media/characters/chari-gal/mouth.svg"
  9785. },
  9786. form: "normal"
  9787. },
  9788. gigantamax: {
  9789. height: math.unit(6 * 16, "feet"),
  9790. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9791. name: "Gigantamax",
  9792. image: {
  9793. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9794. extra: 1507/1149,
  9795. bottom: 254/1761
  9796. },
  9797. form: "gigantamax",
  9798. default: true
  9799. },
  9800. },
  9801. [
  9802. {
  9803. name: "Normal",
  9804. height: math.unit(5 + 7 / 12, "feet"),
  9805. form: "normal",
  9806. },
  9807. {
  9808. name: "Macro",
  9809. height: math.unit(200, "feet"),
  9810. default: true,
  9811. form: "normal"
  9812. },
  9813. {
  9814. name: "Normal",
  9815. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9816. form: "gigantamax",
  9817. },
  9818. {
  9819. name: "Macro",
  9820. height: math.unit(16 * 200, "feet"),
  9821. default: true,
  9822. form: "gigantamax"
  9823. },
  9824. ],
  9825. {
  9826. "normal": {
  9827. name: "Normal",
  9828. default: true
  9829. },
  9830. "gigantamax": {
  9831. name: "Gigantamax",
  9832. },
  9833. }
  9834. ))
  9835. characterMakers.push(() => makeCharacter(
  9836. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9837. {
  9838. front: {
  9839. height: math.unit(6, "feet"),
  9840. weight: math.unit(150, "lbs"),
  9841. name: "Front",
  9842. image: {
  9843. source: "./media/characters/nova/front.svg",
  9844. extra: 5000 / 4722,
  9845. bottom: 0.02
  9846. }
  9847. }
  9848. },
  9849. [
  9850. {
  9851. name: "Micro-",
  9852. height: math.unit(0.8, "inches")
  9853. },
  9854. {
  9855. name: "Micro",
  9856. height: math.unit(2, "inches"),
  9857. default: true
  9858. },
  9859. ]
  9860. ))
  9861. characterMakers.push(() => makeCharacter(
  9862. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9863. {
  9864. koboldFront: {
  9865. height: math.unit(3 + 1 / 12, "feet"),
  9866. weight: math.unit(21.7, "lbs"),
  9867. name: "Front",
  9868. image: {
  9869. source: "./media/characters/argent/kobold-front.svg",
  9870. extra: 1471 / 1331,
  9871. bottom: 100.8 / 1575.5
  9872. },
  9873. form: "kobold",
  9874. default: true
  9875. },
  9876. dragonFront: {
  9877. height: math.unit(75, "inches"),
  9878. name: "Front",
  9879. image: {
  9880. source: "./media/characters/argent/dragon-front.svg",
  9881. extra: 1389/1248,
  9882. bottom: 54/1443
  9883. },
  9884. form: "dragon",
  9885. },
  9886. dragonBack: {
  9887. height: math.unit(75, "inches"),
  9888. name: "Back",
  9889. image: {
  9890. source: "./media/characters/argent/dragon-back.svg",
  9891. extra: 1399/1271,
  9892. bottom: 23/1422
  9893. },
  9894. form: "dragon",
  9895. },
  9896. dragonDressed: {
  9897. height: math.unit(75, "inches"),
  9898. name: "Dressed",
  9899. image: {
  9900. source: "./media/characters/argent/dragon-dressed.svg",
  9901. extra: 1350/1215,
  9902. bottom: 26/1376
  9903. },
  9904. form: "dragon"
  9905. },
  9906. dragonHead: {
  9907. height: math.unit(23.5, "inches"),
  9908. name: "Head",
  9909. image: {
  9910. source: "./media/characters/argent/dragon-head.svg"
  9911. },
  9912. form: "dragon",
  9913. },
  9914. },
  9915. [
  9916. {
  9917. name: "Micro",
  9918. height: math.unit(2, "inches"),
  9919. form: "kobold",
  9920. },
  9921. {
  9922. name: "Normal",
  9923. height: math.unit(3 + 1 / 12, "feet"),
  9924. form: "kobold",
  9925. default: true
  9926. },
  9927. {
  9928. name: "Macro",
  9929. height: math.unit(120, "feet"),
  9930. form: "kobold",
  9931. },
  9932. {
  9933. name: "Speck",
  9934. height: math.unit(1, "mm"),
  9935. form: "dragon",
  9936. },
  9937. {
  9938. name: "Tiny",
  9939. height: math.unit(1, "cm"),
  9940. form: "dragon",
  9941. },
  9942. {
  9943. name: "Micro",
  9944. height: math.unit(5, "cm"),
  9945. form: "dragon",
  9946. },
  9947. {
  9948. name: "Normal",
  9949. height: math.unit(75, "inches"),
  9950. form: "dragon",
  9951. default: true
  9952. },
  9953. {
  9954. name: "Extra Tall",
  9955. height: math.unit(9, "feet"),
  9956. form: "dragon",
  9957. },
  9958. {
  9959. name: "Inconvenient",
  9960. height: math.unit(5, "meters"),
  9961. form: "dragon",
  9962. },
  9963. {
  9964. name: "Macro",
  9965. height: math.unit(70, "meters"),
  9966. form: "dragon",
  9967. },
  9968. {
  9969. name: "Macro+",
  9970. height: math.unit(250, "meters"),
  9971. form: "dragon",
  9972. },
  9973. {
  9974. name: "Megamacro",
  9975. height: math.unit(20, "km"),
  9976. form: "dragon",
  9977. },
  9978. {
  9979. name: "Mountainous",
  9980. height: math.unit(100, "km"),
  9981. form: "dragon",
  9982. },
  9983. {
  9984. name: "Continental",
  9985. height: math.unit(2, "megameters"),
  9986. form: "dragon",
  9987. },
  9988. {
  9989. name: "Too Big",
  9990. height: math.unit(900, "megameters"),
  9991. form: "dragon",
  9992. },
  9993. ],
  9994. {
  9995. "kobold": {
  9996. name: "Kobold",
  9997. default: true
  9998. },
  9999. "dragon": {
  10000. name: "Dragon",
  10001. },
  10002. }
  10003. ))
  10004. characterMakers.push(() => makeCharacter(
  10005. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  10006. {
  10007. lamp: {
  10008. height: math.unit(7 * 1559 / 989, "feet"),
  10009. name: "Magic Lamp",
  10010. image: {
  10011. source: "./media/characters/mira-al-cul/lamp.svg",
  10012. extra: 1617 / 1559
  10013. }
  10014. },
  10015. front: {
  10016. height: math.unit(7, "feet"),
  10017. name: "Front",
  10018. image: {
  10019. source: "./media/characters/mira-al-cul/front.svg",
  10020. extra: 1044 / 990
  10021. }
  10022. },
  10023. },
  10024. [
  10025. {
  10026. name: "Heavily Restricted",
  10027. height: math.unit(7 * 1559 / 989, "feet")
  10028. },
  10029. {
  10030. name: "Freshly Freed",
  10031. height: math.unit(50 * 1559 / 989, "feet")
  10032. },
  10033. {
  10034. name: "World Encompassing",
  10035. height: math.unit(10000 * 1559 / 989, "miles")
  10036. },
  10037. {
  10038. name: "Galactic",
  10039. height: math.unit(1.433 * 1559 / 989, "zettameters")
  10040. },
  10041. {
  10042. name: "Palmed Universe",
  10043. height: math.unit(6000 * 1559 / 989, "yottameters"),
  10044. default: true
  10045. },
  10046. {
  10047. name: "Multiversal Matriarch",
  10048. height: math.unit(8.87e10, "yottameters")
  10049. },
  10050. {
  10051. name: "Void Mother",
  10052. height: math.unit(3.14e110, "yottaparsecs")
  10053. },
  10054. {
  10055. name: "Toying with Transcendence",
  10056. height: math.unit(1e307, "meters")
  10057. },
  10058. ]
  10059. ))
  10060. characterMakers.push(() => makeCharacter(
  10061. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  10062. {
  10063. front: {
  10064. height: math.unit(17 + 1 / 12, "feet"),
  10065. weight: math.unit(476.2 * 5, "lbs"),
  10066. name: "Front",
  10067. image: {
  10068. source: "./media/characters/kuro-shi-uchū/front.svg",
  10069. extra: 2329 / 1835,
  10070. bottom: 0.02
  10071. }
  10072. },
  10073. },
  10074. [
  10075. {
  10076. name: "Micro",
  10077. height: math.unit(2, "inches")
  10078. },
  10079. {
  10080. name: "Normal",
  10081. height: math.unit(12, "meters")
  10082. },
  10083. {
  10084. name: "Planetary",
  10085. height: math.unit(0.00929, "AU"),
  10086. default: true
  10087. },
  10088. {
  10089. name: "Universal",
  10090. height: math.unit(20, "gigaparsecs")
  10091. },
  10092. ]
  10093. ))
  10094. characterMakers.push(() => makeCharacter(
  10095. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  10096. {
  10097. front: {
  10098. height: math.unit(5 + 2 / 12, "feet"),
  10099. weight: math.unit(120, "lbs"),
  10100. name: "Front",
  10101. image: {
  10102. source: "./media/characters/katherine/front.svg",
  10103. extra: 2075 / 1969
  10104. }
  10105. },
  10106. dress: {
  10107. height: math.unit(5 + 2 / 12, "feet"),
  10108. weight: math.unit(120, "lbs"),
  10109. name: "Dress",
  10110. image: {
  10111. source: "./media/characters/katherine/dress.svg",
  10112. extra: 2258 / 2064
  10113. }
  10114. },
  10115. },
  10116. [
  10117. {
  10118. name: "Micro",
  10119. height: math.unit(1, "inches"),
  10120. default: true
  10121. },
  10122. {
  10123. name: "Normal",
  10124. height: math.unit(5 + 2 / 12, "feet")
  10125. },
  10126. {
  10127. name: "Macro",
  10128. height: math.unit(100, "meters")
  10129. },
  10130. {
  10131. name: "Megamacro",
  10132. height: math.unit(80, "miles")
  10133. },
  10134. ]
  10135. ))
  10136. characterMakers.push(() => makeCharacter(
  10137. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  10138. {
  10139. front: {
  10140. height: math.unit(7 + 8 / 12, "feet"),
  10141. weight: math.unit(250, "lbs"),
  10142. name: "Front",
  10143. image: {
  10144. source: "./media/characters/yevis/front.svg",
  10145. extra: 1938 / 1755
  10146. }
  10147. }
  10148. },
  10149. [
  10150. {
  10151. name: "Mortal",
  10152. height: math.unit(7 + 8 / 12, "feet")
  10153. },
  10154. {
  10155. name: "Battle",
  10156. height: math.unit(25 + 11 / 12, "feet")
  10157. },
  10158. {
  10159. name: "Wrath",
  10160. height: math.unit(1654 + 11 / 12, "feet")
  10161. },
  10162. {
  10163. name: "Planet Destroyer",
  10164. height: math.unit(12000, "miles")
  10165. },
  10166. {
  10167. name: "Galaxy Conqueror",
  10168. height: math.unit(1.45, "zettameters"),
  10169. default: true
  10170. },
  10171. {
  10172. name: "Universal War",
  10173. height: math.unit(184, "gigaparsecs")
  10174. },
  10175. {
  10176. name: "Eternity War",
  10177. height: math.unit(1.98e55, "yottaparsecs")
  10178. },
  10179. ]
  10180. ))
  10181. characterMakers.push(() => makeCharacter(
  10182. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  10183. {
  10184. front: {
  10185. height: math.unit(5 + 8 / 12, "feet"),
  10186. weight: math.unit(63, "kg"),
  10187. name: "Front",
  10188. image: {
  10189. source: "./media/characters/xavier/front.svg",
  10190. extra: 944 / 883
  10191. }
  10192. },
  10193. frontStretch: {
  10194. height: math.unit(5 + 8 / 12, "feet"),
  10195. weight: math.unit(63, "kg"),
  10196. name: "Stretching",
  10197. image: {
  10198. source: "./media/characters/xavier/front-stretch.svg",
  10199. extra: 962 / 820
  10200. }
  10201. },
  10202. },
  10203. [
  10204. {
  10205. name: "Normal",
  10206. height: math.unit(5 + 8 / 12, "feet")
  10207. },
  10208. {
  10209. name: "Macro",
  10210. height: math.unit(100, "meters"),
  10211. default: true
  10212. },
  10213. {
  10214. name: "McLargeHuge",
  10215. height: math.unit(10, "miles")
  10216. },
  10217. ]
  10218. ))
  10219. characterMakers.push(() => makeCharacter(
  10220. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10221. {
  10222. front: {
  10223. height: math.unit(5 + 5 / 12, "feet"),
  10224. weight: math.unit(150, "lb"),
  10225. name: "Front",
  10226. image: {
  10227. source: "./media/characters/joshii/front.svg",
  10228. extra: 765 / 653,
  10229. bottom: 51 / 816
  10230. }
  10231. },
  10232. foot: {
  10233. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10234. name: "Foot",
  10235. image: {
  10236. source: "./media/characters/joshii/foot.svg"
  10237. }
  10238. },
  10239. },
  10240. [
  10241. {
  10242. name: "Micro",
  10243. height: math.unit(2, "inches")
  10244. },
  10245. {
  10246. name: "Normal",
  10247. height: math.unit(5 + 5 / 12, "feet")
  10248. },
  10249. {
  10250. name: "Macro",
  10251. height: math.unit(785, "feet"),
  10252. default: true
  10253. },
  10254. {
  10255. name: "Megamacro",
  10256. height: math.unit(24.5, "miles")
  10257. },
  10258. ]
  10259. ))
  10260. characterMakers.push(() => makeCharacter(
  10261. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10262. {
  10263. front: {
  10264. height: math.unit(6, "feet"),
  10265. weight: math.unit(150, "lb"),
  10266. name: "Front",
  10267. image: {
  10268. source: "./media/characters/goddess-elizabeth/front.svg",
  10269. extra: 1800 / 1525,
  10270. bottom: 0.005
  10271. }
  10272. },
  10273. foot: {
  10274. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10275. name: "Foot",
  10276. image: {
  10277. source: "./media/characters/goddess-elizabeth/foot.svg"
  10278. }
  10279. },
  10280. mouth: {
  10281. height: math.unit(6, "feet"),
  10282. name: "Mouth",
  10283. image: {
  10284. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10285. }
  10286. },
  10287. },
  10288. [
  10289. {
  10290. name: "Micro",
  10291. height: math.unit(12, "feet")
  10292. },
  10293. {
  10294. name: "Normal",
  10295. height: math.unit(80, "miles"),
  10296. default: true
  10297. },
  10298. {
  10299. name: "Macro",
  10300. height: math.unit(15000, "parsecs")
  10301. },
  10302. ]
  10303. ))
  10304. characterMakers.push(() => makeCharacter(
  10305. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10306. {
  10307. front: {
  10308. height: math.unit(5 + 9 / 12, "feet"),
  10309. weight: math.unit(144, "lb"),
  10310. name: "Front",
  10311. image: {
  10312. source: "./media/characters/kara/front.svg"
  10313. }
  10314. },
  10315. feet: {
  10316. height: math.unit(6 / 6.765, "feet"),
  10317. name: "Kara's Feet",
  10318. rename: true,
  10319. image: {
  10320. source: "./media/characters/kara/feet.svg"
  10321. }
  10322. },
  10323. },
  10324. [
  10325. {
  10326. name: "Normal",
  10327. height: math.unit(5 + 9 / 12, "feet")
  10328. },
  10329. {
  10330. name: "Macro",
  10331. height: math.unit(174, "feet"),
  10332. default: true
  10333. },
  10334. ]
  10335. ))
  10336. characterMakers.push(() => makeCharacter(
  10337. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10338. {
  10339. front: {
  10340. height: math.unit(18, "feet"),
  10341. weight: math.unit(4050, "lb"),
  10342. name: "Front",
  10343. image: {
  10344. source: "./media/characters/tyrone/front.svg",
  10345. extra: 2405 / 2270,
  10346. bottom: 182 / 2587
  10347. }
  10348. },
  10349. },
  10350. [
  10351. {
  10352. name: "Normal",
  10353. height: math.unit(18, "feet"),
  10354. default: true
  10355. },
  10356. {
  10357. name: "Macro",
  10358. height: math.unit(300, "feet")
  10359. },
  10360. {
  10361. name: "Megamacro",
  10362. height: math.unit(15, "km")
  10363. },
  10364. {
  10365. name: "Gigamacro",
  10366. height: math.unit(500, "km")
  10367. },
  10368. {
  10369. name: "Teramacro",
  10370. height: math.unit(0.5, "gigameters")
  10371. },
  10372. {
  10373. name: "Omnimacro",
  10374. height: math.unit(1e252, "yottauniverse")
  10375. },
  10376. ]
  10377. ))
  10378. characterMakers.push(() => makeCharacter(
  10379. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10380. {
  10381. front: {
  10382. height: math.unit(7 + 8 / 12, "feet"),
  10383. weight: math.unit(120, "lb"),
  10384. name: "Front",
  10385. image: {
  10386. source: "./media/characters/danny/front.svg",
  10387. extra: 1490 / 1350
  10388. }
  10389. },
  10390. back: {
  10391. height: math.unit(7 + 8 / 12, "feet"),
  10392. weight: math.unit(120, "lb"),
  10393. name: "Back",
  10394. image: {
  10395. source: "./media/characters/danny/back.svg",
  10396. extra: 1490 / 1350
  10397. }
  10398. },
  10399. },
  10400. [
  10401. {
  10402. name: "Normal",
  10403. height: math.unit(7 + 8 / 12, "feet"),
  10404. default: true
  10405. },
  10406. ]
  10407. ))
  10408. characterMakers.push(() => makeCharacter(
  10409. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10410. {
  10411. front: {
  10412. height: math.unit(3.5, "inches"),
  10413. weight: math.unit(19, "grams"),
  10414. name: "Front",
  10415. image: {
  10416. source: "./media/characters/mallow/front.svg",
  10417. extra: 471 / 431
  10418. }
  10419. },
  10420. back: {
  10421. height: math.unit(3.5, "inches"),
  10422. weight: math.unit(19, "grams"),
  10423. name: "Back",
  10424. image: {
  10425. source: "./media/characters/mallow/back.svg",
  10426. extra: 471 / 431
  10427. }
  10428. },
  10429. },
  10430. [
  10431. {
  10432. name: "Normal",
  10433. height: math.unit(3.5, "inches"),
  10434. default: true
  10435. },
  10436. ]
  10437. ))
  10438. characterMakers.push(() => makeCharacter(
  10439. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10440. {
  10441. front: {
  10442. height: math.unit(9, "feet"),
  10443. weight: math.unit(230, "kg"),
  10444. name: "Front",
  10445. image: {
  10446. source: "./media/characters/starry-aqua/front.svg"
  10447. }
  10448. },
  10449. back: {
  10450. height: math.unit(9, "feet"),
  10451. weight: math.unit(230, "kg"),
  10452. name: "Back",
  10453. image: {
  10454. source: "./media/characters/starry-aqua/back.svg"
  10455. }
  10456. },
  10457. hand: {
  10458. height: math.unit(9 * 0.1168, "feet"),
  10459. name: "Hand",
  10460. image: {
  10461. source: "./media/characters/starry-aqua/hand.svg"
  10462. }
  10463. },
  10464. foot: {
  10465. height: math.unit(9 * 0.18, "feet"),
  10466. name: "Foot",
  10467. image: {
  10468. source: "./media/characters/starry-aqua/foot.svg"
  10469. }
  10470. }
  10471. },
  10472. [
  10473. {
  10474. name: "Micro",
  10475. height: math.unit(3, "inches")
  10476. },
  10477. {
  10478. name: "Normal",
  10479. height: math.unit(9, "feet")
  10480. },
  10481. {
  10482. name: "Macro",
  10483. height: math.unit(300, "feet"),
  10484. default: true
  10485. },
  10486. {
  10487. name: "Megamacro",
  10488. height: math.unit(3200, "feet")
  10489. }
  10490. ]
  10491. ))
  10492. characterMakers.push(() => makeCharacter(
  10493. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10494. {
  10495. front: {
  10496. height: math.unit(15, "feet"),
  10497. weight: math.unit(5026, "lb"),
  10498. name: "Front",
  10499. image: {
  10500. source: "./media/characters/luka-towers/front.svg",
  10501. extra: 1269/1133,
  10502. bottom: 51/1320
  10503. }
  10504. },
  10505. },
  10506. [
  10507. {
  10508. name: "Normal",
  10509. height: math.unit(15, "feet"),
  10510. default: true
  10511. },
  10512. {
  10513. name: "Minimacro",
  10514. height: math.unit(25, "feet")
  10515. },
  10516. {
  10517. name: "Macro",
  10518. height: math.unit(320, "feet")
  10519. },
  10520. {
  10521. name: "Megamacro",
  10522. height: math.unit(35000, "feet")
  10523. },
  10524. {
  10525. name: "Gigamacro",
  10526. height: math.unit(4000, "miles")
  10527. },
  10528. {
  10529. name: "Teramacro",
  10530. height: math.unit(15000, "miles")
  10531. },
  10532. ]
  10533. ))
  10534. characterMakers.push(() => makeCharacter(
  10535. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10536. {
  10537. front: {
  10538. height: math.unit(6, "feet"),
  10539. weight: math.unit(150, "lb"),
  10540. name: "Front",
  10541. image: {
  10542. source: "./media/characters/natalie-nightring/front.svg",
  10543. extra: 1,
  10544. bottom: 0.06
  10545. }
  10546. },
  10547. },
  10548. [
  10549. {
  10550. name: "Uh Oh",
  10551. height: math.unit(0.1, "mm")
  10552. },
  10553. {
  10554. name: "Small",
  10555. height: math.unit(3, "inches")
  10556. },
  10557. {
  10558. name: "Human Scale",
  10559. height: math.unit(6, "feet")
  10560. },
  10561. {
  10562. name: "Librarian",
  10563. height: math.unit(50, "feet"),
  10564. default: true
  10565. },
  10566. {
  10567. name: "Immense",
  10568. height: math.unit(200, "miles")
  10569. },
  10570. ]
  10571. ))
  10572. characterMakers.push(() => makeCharacter(
  10573. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10574. {
  10575. front: {
  10576. height: math.unit(6, "feet"),
  10577. weight: math.unit(180, "lbs"),
  10578. name: "Front",
  10579. image: {
  10580. source: "./media/characters/danni-rosie/front.svg",
  10581. extra: 1260 / 1128,
  10582. bottom: 0.022
  10583. }
  10584. },
  10585. },
  10586. [
  10587. {
  10588. name: "Micro",
  10589. height: math.unit(2, "inches"),
  10590. default: true
  10591. },
  10592. ]
  10593. ))
  10594. characterMakers.push(() => makeCharacter(
  10595. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10596. {
  10597. front: {
  10598. height: math.unit(5 + 9 / 12, "feet"),
  10599. weight: math.unit(220, "lb"),
  10600. name: "Front",
  10601. image: {
  10602. source: "./media/characters/samantha-kruse/front.svg",
  10603. extra: (985 / 935),
  10604. bottom: 0.03
  10605. }
  10606. },
  10607. frontUndressed: {
  10608. height: math.unit(5 + 9 / 12, "feet"),
  10609. weight: math.unit(220, "lb"),
  10610. name: "Front (Undressed)",
  10611. image: {
  10612. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10613. extra: (973 / 923),
  10614. bottom: 0.025
  10615. }
  10616. },
  10617. fat: {
  10618. height: math.unit(5 + 9 / 12, "feet"),
  10619. weight: math.unit(900, "lb"),
  10620. name: "Front (Fat)",
  10621. image: {
  10622. source: "./media/characters/samantha-kruse/fat.svg",
  10623. extra: 2688 / 2561
  10624. }
  10625. },
  10626. },
  10627. [
  10628. {
  10629. name: "Normal",
  10630. height: math.unit(5 + 9 / 12, "feet"),
  10631. default: true
  10632. }
  10633. ]
  10634. ))
  10635. characterMakers.push(() => makeCharacter(
  10636. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10637. {
  10638. back: {
  10639. height: math.unit(5 + 4 / 12, "feet"),
  10640. weight: math.unit(4963, "lb"),
  10641. name: "Back",
  10642. image: {
  10643. source: "./media/characters/amelia-rosie/back.svg",
  10644. extra: 1113 / 963,
  10645. bottom: 0.01
  10646. }
  10647. },
  10648. },
  10649. [
  10650. {
  10651. name: "Level 0",
  10652. height: math.unit(5 + 4 / 12, "feet")
  10653. },
  10654. {
  10655. name: "Level 1",
  10656. height: math.unit(164597, "feet"),
  10657. default: true
  10658. },
  10659. {
  10660. name: "Level 2",
  10661. height: math.unit(956243, "miles")
  10662. },
  10663. {
  10664. name: "Level 3",
  10665. height: math.unit(29421709423, "miles")
  10666. },
  10667. {
  10668. name: "Level 4",
  10669. height: math.unit(154, "lightyears")
  10670. },
  10671. {
  10672. name: "Level 5",
  10673. height: math.unit(4738272, "lightyears")
  10674. },
  10675. {
  10676. name: "Level 6",
  10677. height: math.unit(145787152896, "lightyears")
  10678. },
  10679. ]
  10680. ))
  10681. characterMakers.push(() => makeCharacter(
  10682. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10683. {
  10684. front: {
  10685. height: math.unit(5 + 11 / 12, "feet"),
  10686. weight: math.unit(65, "kg"),
  10687. name: "Front",
  10688. image: {
  10689. source: "./media/characters/rook-kitara/front.svg",
  10690. extra: 1347 / 1274,
  10691. bottom: 0.005
  10692. }
  10693. },
  10694. },
  10695. [
  10696. {
  10697. name: "Totally Unfair",
  10698. height: math.unit(1.8, "mm")
  10699. },
  10700. {
  10701. name: "Lap Rookie",
  10702. height: math.unit(1.4, "feet")
  10703. },
  10704. {
  10705. name: "Normal",
  10706. height: math.unit(5 + 11 / 12, "feet"),
  10707. default: true
  10708. },
  10709. {
  10710. name: "How Did This Happen",
  10711. height: math.unit(80, "miles")
  10712. }
  10713. ]
  10714. ))
  10715. characterMakers.push(() => makeCharacter(
  10716. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10717. {
  10718. front: {
  10719. height: math.unit(7, "feet"),
  10720. weight: math.unit(300, "lb"),
  10721. name: "Front",
  10722. image: {
  10723. source: "./media/characters/pisces/front.svg",
  10724. extra: 2255 / 2115,
  10725. bottom: 0.03
  10726. }
  10727. },
  10728. back: {
  10729. height: math.unit(7, "feet"),
  10730. weight: math.unit(300, "lb"),
  10731. name: "Back",
  10732. image: {
  10733. source: "./media/characters/pisces/back.svg",
  10734. extra: 2146 / 2055,
  10735. bottom: 0.04
  10736. }
  10737. },
  10738. },
  10739. [
  10740. {
  10741. name: "Normal",
  10742. height: math.unit(7, "feet"),
  10743. default: true
  10744. },
  10745. {
  10746. name: "Swimming Pool",
  10747. height: math.unit(12.2, "meters")
  10748. },
  10749. {
  10750. name: "Olympic Swimming Pool",
  10751. height: math.unit(56.3, "meters")
  10752. },
  10753. {
  10754. name: "Lake Superior",
  10755. height: math.unit(93900, "meters")
  10756. },
  10757. {
  10758. name: "Mediterranean Sea",
  10759. height: math.unit(644457, "meters")
  10760. },
  10761. {
  10762. name: "World's Oceans",
  10763. height: math.unit(4567491, "meters")
  10764. },
  10765. ]
  10766. ))
  10767. characterMakers.push(() => makeCharacter(
  10768. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10769. {
  10770. front: {
  10771. height: math.unit(2.3, "meters"),
  10772. weight: math.unit(120, "kg"),
  10773. name: "Front",
  10774. image: {
  10775. source: "./media/characters/zelas/front.svg"
  10776. }
  10777. },
  10778. side: {
  10779. height: math.unit(2.3, "meters"),
  10780. weight: math.unit(120, "kg"),
  10781. name: "Side",
  10782. image: {
  10783. source: "./media/characters/zelas/side.svg"
  10784. }
  10785. },
  10786. back: {
  10787. height: math.unit(2.3, "meters"),
  10788. weight: math.unit(120, "kg"),
  10789. name: "Back",
  10790. image: {
  10791. source: "./media/characters/zelas/back.svg"
  10792. }
  10793. },
  10794. foot: {
  10795. height: math.unit(1.116, "feet"),
  10796. name: "Foot",
  10797. image: {
  10798. source: "./media/characters/zelas/foot.svg"
  10799. }
  10800. },
  10801. },
  10802. [
  10803. {
  10804. name: "Normal",
  10805. height: math.unit(2.3, "meters")
  10806. },
  10807. {
  10808. name: "Macro",
  10809. height: math.unit(30, "meters"),
  10810. default: true
  10811. },
  10812. ]
  10813. ))
  10814. characterMakers.push(() => makeCharacter(
  10815. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10816. {
  10817. front: {
  10818. height: math.unit(1, "inch"),
  10819. weight: math.unit(0.21, "grams"),
  10820. name: "Front",
  10821. image: {
  10822. source: "./media/characters/talbot/front.svg",
  10823. extra: 594 / 544
  10824. }
  10825. },
  10826. },
  10827. [
  10828. {
  10829. name: "Micro",
  10830. height: math.unit(1, "inch"),
  10831. default: true
  10832. },
  10833. ]
  10834. ))
  10835. characterMakers.push(() => makeCharacter(
  10836. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10837. {
  10838. front: {
  10839. height: math.unit(3 + 3 / 12, "feet"),
  10840. weight: math.unit(51.8, "lb"),
  10841. name: "Front",
  10842. image: {
  10843. source: "./media/characters/fliss/front.svg",
  10844. extra: 840 / 640
  10845. }
  10846. },
  10847. },
  10848. [
  10849. {
  10850. name: "Teeny Tiny",
  10851. height: math.unit(1, "mm")
  10852. },
  10853. {
  10854. name: "Small",
  10855. height: math.unit(1, "inch"),
  10856. default: true
  10857. },
  10858. {
  10859. name: "Standard Sylveon",
  10860. height: math.unit(3 + 3 / 12, "feet")
  10861. },
  10862. {
  10863. name: "Large Nuisance",
  10864. height: math.unit(33, "feet")
  10865. },
  10866. {
  10867. name: "City Filler",
  10868. height: math.unit(3000, "feet")
  10869. },
  10870. {
  10871. name: "New Horizon",
  10872. height: math.unit(6000, "miles")
  10873. },
  10874. ]
  10875. ))
  10876. characterMakers.push(() => makeCharacter(
  10877. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10878. {
  10879. front: {
  10880. height: math.unit(5, "cm"),
  10881. weight: math.unit(1.94, "g"),
  10882. name: "Front",
  10883. image: {
  10884. source: "./media/characters/fleta/front.svg",
  10885. extra: 835 / 803
  10886. }
  10887. },
  10888. back: {
  10889. height: math.unit(5, "cm"),
  10890. weight: math.unit(1.94, "g"),
  10891. name: "Back",
  10892. image: {
  10893. source: "./media/characters/fleta/back.svg",
  10894. extra: 835 / 803
  10895. }
  10896. },
  10897. },
  10898. [
  10899. {
  10900. name: "Micro",
  10901. height: math.unit(5, "cm"),
  10902. default: true
  10903. },
  10904. ]
  10905. ))
  10906. characterMakers.push(() => makeCharacter(
  10907. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10908. {
  10909. front: {
  10910. height: math.unit(6, "feet"),
  10911. weight: math.unit(225, "lb"),
  10912. name: "Front",
  10913. image: {
  10914. source: "./media/characters/dominic/front.svg",
  10915. extra: 1770 / 1620,
  10916. bottom: 0.025
  10917. }
  10918. },
  10919. back: {
  10920. height: math.unit(6, "feet"),
  10921. weight: math.unit(225, "lb"),
  10922. name: "Back",
  10923. image: {
  10924. source: "./media/characters/dominic/back.svg",
  10925. extra: 1745 / 1620,
  10926. bottom: 0.065
  10927. }
  10928. },
  10929. },
  10930. [
  10931. {
  10932. name: "Nano",
  10933. height: math.unit(0.1, "mm")
  10934. },
  10935. {
  10936. name: "Micro-",
  10937. height: math.unit(1, "mm")
  10938. },
  10939. {
  10940. name: "Micro",
  10941. height: math.unit(4, "inches")
  10942. },
  10943. {
  10944. name: "Normal",
  10945. height: math.unit(6 + 4 / 12, "feet"),
  10946. default: true
  10947. },
  10948. {
  10949. name: "Macro",
  10950. height: math.unit(115, "feet")
  10951. },
  10952. {
  10953. name: "Macro+",
  10954. height: math.unit(955, "feet")
  10955. },
  10956. {
  10957. name: "Megamacro",
  10958. height: math.unit(8990, "feet")
  10959. },
  10960. {
  10961. name: "Gigmacro",
  10962. height: math.unit(9310, "miles")
  10963. },
  10964. {
  10965. name: "Teramacro",
  10966. height: math.unit(1567005010, "miles")
  10967. },
  10968. {
  10969. name: "Examacro",
  10970. height: math.unit(1425, "parsecs")
  10971. },
  10972. ]
  10973. ))
  10974. characterMakers.push(() => makeCharacter(
  10975. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10976. {
  10977. front: {
  10978. height: math.unit(400, "feet"),
  10979. weight: math.unit(44444444, "lb"),
  10980. name: "Front",
  10981. image: {
  10982. source: "./media/characters/major-colonel/front.svg"
  10983. }
  10984. },
  10985. back: {
  10986. height: math.unit(400, "feet"),
  10987. weight: math.unit(44444444, "lb"),
  10988. name: "Back",
  10989. image: {
  10990. source: "./media/characters/major-colonel/back.svg"
  10991. }
  10992. },
  10993. },
  10994. [
  10995. {
  10996. name: "Macro",
  10997. height: math.unit(400, "feet"),
  10998. default: true
  10999. },
  11000. ]
  11001. ))
  11002. characterMakers.push(() => makeCharacter(
  11003. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  11004. {
  11005. catFront: {
  11006. height: math.unit(6, "feet"),
  11007. weight: math.unit(120, "lb"),
  11008. name: "Front (Cat Side)",
  11009. image: {
  11010. source: "./media/characters/axel-lycan/cat-front.svg",
  11011. extra: 430 / 402,
  11012. bottom: 43 / 472.35
  11013. }
  11014. },
  11015. catBack: {
  11016. height: math.unit(6, "feet"),
  11017. weight: math.unit(120, "lb"),
  11018. name: "Back (Cat Side)",
  11019. image: {
  11020. source: "./media/characters/axel-lycan/cat-back.svg",
  11021. extra: 447 / 419,
  11022. bottom: 23.3 / 469
  11023. }
  11024. },
  11025. wolfFront: {
  11026. height: math.unit(6, "feet"),
  11027. weight: math.unit(120, "lb"),
  11028. name: "Front (Wolf Side)",
  11029. image: {
  11030. source: "./media/characters/axel-lycan/wolf-front.svg",
  11031. extra: 485 / 456,
  11032. bottom: 19 / 504
  11033. }
  11034. },
  11035. wolfBack: {
  11036. height: math.unit(6, "feet"),
  11037. weight: math.unit(120, "lb"),
  11038. name: "Back (Wolf Side)",
  11039. image: {
  11040. source: "./media/characters/axel-lycan/wolf-back.svg",
  11041. extra: 475 / 438,
  11042. bottom: 39.2 / 514
  11043. }
  11044. },
  11045. },
  11046. [
  11047. {
  11048. name: "Macro",
  11049. height: math.unit(1, "km"),
  11050. default: true
  11051. },
  11052. ]
  11053. ))
  11054. characterMakers.push(() => makeCharacter(
  11055. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  11056. {
  11057. front: {
  11058. height: math.unit(5 + 9 / 12, "feet"),
  11059. weight: math.unit(175, "lb"),
  11060. name: "Front",
  11061. image: {
  11062. source: "./media/characters/vanrel-hyena/front.svg",
  11063. extra: 1086 / 1010,
  11064. bottom: 0.04
  11065. }
  11066. },
  11067. },
  11068. [
  11069. {
  11070. name: "Normal",
  11071. height: math.unit(5 + 9 / 12, "feet"),
  11072. default: true
  11073. },
  11074. ]
  11075. ))
  11076. characterMakers.push(() => makeCharacter(
  11077. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  11078. {
  11079. front: {
  11080. height: math.unit(6, "feet"),
  11081. weight: math.unit(103, "lb"),
  11082. name: "Front",
  11083. image: {
  11084. source: "./media/characters/abbott-absol/front.svg",
  11085. extra: 765/694,
  11086. bottom: 47/812
  11087. }
  11088. },
  11089. },
  11090. [
  11091. {
  11092. name: "Megamicro",
  11093. height: math.unit(0.1, "mm")
  11094. },
  11095. {
  11096. name: "Micro",
  11097. height: math.unit(1, "inch")
  11098. },
  11099. {
  11100. name: "Normal",
  11101. height: math.unit(6, "feet"),
  11102. default: true
  11103. },
  11104. ]
  11105. ))
  11106. characterMakers.push(() => makeCharacter(
  11107. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  11108. {
  11109. front: {
  11110. height: math.unit(6, "feet"),
  11111. weight: math.unit(264, "lb"),
  11112. name: "Front",
  11113. image: {
  11114. source: "./media/characters/hector/front.svg",
  11115. extra: 2280 / 2130,
  11116. bottom: 0.07
  11117. }
  11118. },
  11119. },
  11120. [
  11121. {
  11122. name: "Normal",
  11123. height: math.unit(12.25, "foot"),
  11124. default: true
  11125. },
  11126. {
  11127. name: "Macro",
  11128. height: math.unit(160, "feet")
  11129. },
  11130. ]
  11131. ))
  11132. characterMakers.push(() => makeCharacter(
  11133. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  11134. {
  11135. front: {
  11136. height: math.unit(6, "feet"),
  11137. weight: math.unit(150, "lb"),
  11138. name: "Front",
  11139. image: {
  11140. source: "./media/characters/sal/front.svg",
  11141. extra: 1846 / 1699,
  11142. bottom: 0.04
  11143. }
  11144. },
  11145. },
  11146. [
  11147. {
  11148. name: "Megamacro",
  11149. height: math.unit(10, "miles"),
  11150. default: true
  11151. },
  11152. ]
  11153. ))
  11154. characterMakers.push(() => makeCharacter(
  11155. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  11156. {
  11157. front: {
  11158. height: math.unit(3, "meters"),
  11159. weight: math.unit(450, "kg"),
  11160. name: "front",
  11161. image: {
  11162. source: "./media/characters/ranger/front.svg",
  11163. extra: 2401 / 2243,
  11164. bottom: 0.05
  11165. }
  11166. },
  11167. },
  11168. [
  11169. {
  11170. name: "Normal",
  11171. height: math.unit(3, "meters"),
  11172. default: true
  11173. },
  11174. ]
  11175. ))
  11176. characterMakers.push(() => makeCharacter(
  11177. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  11178. {
  11179. front: {
  11180. height: math.unit(14, "feet"),
  11181. weight: math.unit(800, "kg"),
  11182. name: "Front",
  11183. image: {
  11184. source: "./media/characters/theresa/front.svg",
  11185. extra: 3575 / 3346,
  11186. bottom: 0.03
  11187. }
  11188. },
  11189. },
  11190. [
  11191. {
  11192. name: "Normal",
  11193. height: math.unit(14, "feet"),
  11194. default: true
  11195. },
  11196. ]
  11197. ))
  11198. characterMakers.push(() => makeCharacter(
  11199. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  11200. {
  11201. front: {
  11202. height: math.unit(6, "feet"),
  11203. weight: math.unit(3, "kg"),
  11204. name: "Front",
  11205. image: {
  11206. source: "./media/characters/ine/front.svg",
  11207. extra: 678 / 539,
  11208. bottom: 0.023
  11209. }
  11210. },
  11211. },
  11212. [
  11213. {
  11214. name: "Normal",
  11215. height: math.unit(2.265, "feet"),
  11216. default: true
  11217. },
  11218. ]
  11219. ))
  11220. characterMakers.push(() => makeCharacter(
  11221. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11222. {
  11223. front: {
  11224. height: math.unit(5, "feet"),
  11225. weight: math.unit(30, "kg"),
  11226. name: "Front",
  11227. image: {
  11228. source: "./media/characters/vial/front.svg",
  11229. extra: 1365 / 1277,
  11230. bottom: 0.04
  11231. }
  11232. },
  11233. },
  11234. [
  11235. {
  11236. name: "Normal",
  11237. height: math.unit(5, "feet"),
  11238. default: true
  11239. },
  11240. ]
  11241. ))
  11242. characterMakers.push(() => makeCharacter(
  11243. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11244. {
  11245. side: {
  11246. height: math.unit(3.4, "meters"),
  11247. weight: math.unit(1000, "lb"),
  11248. name: "Side",
  11249. image: {
  11250. source: "./media/characters/rovoska/side.svg",
  11251. extra: 4403 / 1515
  11252. }
  11253. },
  11254. },
  11255. [
  11256. {
  11257. name: "Normal",
  11258. height: math.unit(3.4, "meters"),
  11259. default: true
  11260. },
  11261. ]
  11262. ))
  11263. characterMakers.push(() => makeCharacter(
  11264. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11265. {
  11266. front: {
  11267. height: math.unit(8, "feet"),
  11268. weight: math.unit(315, "lb"),
  11269. name: "Front",
  11270. image: {
  11271. source: "./media/characters/gunner-rotthbauer/front.svg"
  11272. }
  11273. },
  11274. back: {
  11275. height: math.unit(8, "feet"),
  11276. weight: math.unit(315, "lb"),
  11277. name: "Back",
  11278. image: {
  11279. source: "./media/characters/gunner-rotthbauer/back.svg"
  11280. }
  11281. },
  11282. },
  11283. [
  11284. {
  11285. name: "Micro",
  11286. height: math.unit(3.5, "inches")
  11287. },
  11288. {
  11289. name: "Normal",
  11290. height: math.unit(8, "feet"),
  11291. default: true
  11292. },
  11293. {
  11294. name: "Macro",
  11295. height: math.unit(250, "feet")
  11296. },
  11297. {
  11298. name: "Megamacro",
  11299. height: math.unit(1, "AU")
  11300. },
  11301. ]
  11302. ))
  11303. characterMakers.push(() => makeCharacter(
  11304. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11305. {
  11306. front: {
  11307. height: math.unit(5 + 5 / 12, "feet"),
  11308. weight: math.unit(140, "lb"),
  11309. name: "Front",
  11310. image: {
  11311. source: "./media/characters/allatia/front.svg",
  11312. extra: 1227 / 1180,
  11313. bottom: 0.027
  11314. }
  11315. },
  11316. },
  11317. [
  11318. {
  11319. name: "Normal",
  11320. height: math.unit(5 + 5 / 12, "feet")
  11321. },
  11322. {
  11323. name: "Macro",
  11324. height: math.unit(250, "feet"),
  11325. default: true
  11326. },
  11327. {
  11328. name: "Megamacro",
  11329. height: math.unit(8, "miles")
  11330. }
  11331. ]
  11332. ))
  11333. characterMakers.push(() => makeCharacter(
  11334. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11335. {
  11336. front: {
  11337. height: math.unit(6, "feet"),
  11338. weight: math.unit(120, "lb"),
  11339. name: "Front",
  11340. image: {
  11341. source: "./media/characters/tene/front.svg",
  11342. extra: 814/750,
  11343. bottom: 36/850
  11344. }
  11345. },
  11346. stomping: {
  11347. height: math.unit(2.025, "meters"),
  11348. weight: math.unit(120, "lb"),
  11349. name: "Stomping",
  11350. image: {
  11351. source: "./media/characters/tene/stomping.svg",
  11352. extra: 885/821,
  11353. bottom: 15/900
  11354. }
  11355. },
  11356. sitting: {
  11357. height: math.unit(1, "meter"),
  11358. weight: math.unit(120, "lb"),
  11359. name: "Sitting",
  11360. image: {
  11361. source: "./media/characters/tene/sitting.svg",
  11362. extra: 396/366,
  11363. bottom: 79/475
  11364. }
  11365. },
  11366. smiling: {
  11367. height: math.unit(1.2, "feet"),
  11368. name: "Smiling",
  11369. image: {
  11370. source: "./media/characters/tene/smiling.svg",
  11371. extra: 1364/1071,
  11372. bottom: 0/1364
  11373. }
  11374. },
  11375. smug: {
  11376. height: math.unit(1.3, "feet"),
  11377. name: "Smug",
  11378. image: {
  11379. source: "./media/characters/tene/smug.svg",
  11380. extra: 1323/1082,
  11381. bottom: 0/1323
  11382. }
  11383. },
  11384. feral: {
  11385. height: math.unit(3.9, "feet"),
  11386. weight: math.unit(250, "lb"),
  11387. name: "Feral",
  11388. image: {
  11389. source: "./media/characters/tene/feral.svg",
  11390. extra: 717 / 458,
  11391. bottom: 0.179
  11392. }
  11393. },
  11394. },
  11395. [
  11396. {
  11397. name: "Normal",
  11398. height: math.unit(6, "feet")
  11399. },
  11400. {
  11401. name: "Macro",
  11402. height: math.unit(300, "feet"),
  11403. default: true
  11404. },
  11405. {
  11406. name: "Megamacro",
  11407. height: math.unit(5, "miles")
  11408. },
  11409. ]
  11410. ))
  11411. characterMakers.push(() => makeCharacter(
  11412. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11413. {
  11414. side: {
  11415. height: math.unit(6, "feet"),
  11416. name: "Side",
  11417. image: {
  11418. source: "./media/characters/evander/side.svg",
  11419. extra: 877 / 477
  11420. }
  11421. },
  11422. },
  11423. [
  11424. {
  11425. name: "Normal",
  11426. height: math.unit(0.83, "meters"),
  11427. default: true
  11428. },
  11429. ]
  11430. ))
  11431. characterMakers.push(() => makeCharacter(
  11432. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11433. {
  11434. front: {
  11435. height: math.unit(12, "feet"),
  11436. weight: math.unit(1000, "lb"),
  11437. name: "Front",
  11438. image: {
  11439. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11440. extra: 1762 / 1611
  11441. }
  11442. },
  11443. back: {
  11444. height: math.unit(12, "feet"),
  11445. weight: math.unit(1000, "lb"),
  11446. name: "Back",
  11447. image: {
  11448. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11449. extra: 1762 / 1611
  11450. }
  11451. },
  11452. },
  11453. [
  11454. {
  11455. name: "Normal",
  11456. height: math.unit(12, "feet"),
  11457. default: true
  11458. },
  11459. {
  11460. name: "Kaiju",
  11461. height: math.unit(150, "feet")
  11462. },
  11463. ]
  11464. ))
  11465. characterMakers.push(() => makeCharacter(
  11466. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11467. {
  11468. front: {
  11469. height: math.unit(6, "feet"),
  11470. weight: math.unit(150, "lb"),
  11471. name: "Front",
  11472. image: {
  11473. source: "./media/characters/zero-alurus/front.svg"
  11474. }
  11475. },
  11476. back: {
  11477. height: math.unit(6, "feet"),
  11478. weight: math.unit(150, "lb"),
  11479. name: "Back",
  11480. image: {
  11481. source: "./media/characters/zero-alurus/back.svg"
  11482. }
  11483. },
  11484. },
  11485. [
  11486. {
  11487. name: "Normal",
  11488. height: math.unit(5 + 10 / 12, "feet")
  11489. },
  11490. {
  11491. name: "Macro",
  11492. height: math.unit(60, "feet"),
  11493. default: true
  11494. },
  11495. {
  11496. name: "Macro+",
  11497. height: math.unit(450, "feet")
  11498. },
  11499. ]
  11500. ))
  11501. characterMakers.push(() => makeCharacter(
  11502. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11503. {
  11504. front: {
  11505. height: math.unit(6, "feet"),
  11506. weight: math.unit(200, "lb"),
  11507. name: "Front",
  11508. image: {
  11509. source: "./media/characters/mega-shi/front.svg",
  11510. extra: 1279 / 1250,
  11511. bottom: 0.02
  11512. }
  11513. },
  11514. back: {
  11515. height: math.unit(6, "feet"),
  11516. weight: math.unit(200, "lb"),
  11517. name: "Back",
  11518. image: {
  11519. source: "./media/characters/mega-shi/back.svg",
  11520. extra: 1279 / 1250,
  11521. bottom: 0.02
  11522. }
  11523. },
  11524. },
  11525. [
  11526. {
  11527. name: "Micro",
  11528. height: math.unit(16 + 6 / 12, "feet")
  11529. },
  11530. {
  11531. name: "Third Dimension",
  11532. height: math.unit(40, "meters")
  11533. },
  11534. {
  11535. name: "Normal",
  11536. height: math.unit(660, "feet"),
  11537. default: true
  11538. },
  11539. {
  11540. name: "Megamacro",
  11541. height: math.unit(10, "miles")
  11542. },
  11543. {
  11544. name: "Planetary Launch",
  11545. height: math.unit(500, "miles")
  11546. },
  11547. {
  11548. name: "Interstellar",
  11549. height: math.unit(1e9, "miles")
  11550. },
  11551. {
  11552. name: "Leaving the Universe",
  11553. height: math.unit(1, "gigaparsec")
  11554. },
  11555. {
  11556. name: "Travelling Universes",
  11557. height: math.unit(30e15, "parsecs")
  11558. },
  11559. ]
  11560. ))
  11561. characterMakers.push(() => makeCharacter(
  11562. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11563. {
  11564. front: {
  11565. height: math.unit(5 + 4/12, "feet"),
  11566. weight: math.unit(120, "lb"),
  11567. name: "Front",
  11568. image: {
  11569. source: "./media/characters/odyssey/front.svg",
  11570. extra: 1747/1571,
  11571. bottom: 47/1794
  11572. }
  11573. },
  11574. side: {
  11575. height: math.unit(5.1, "feet"),
  11576. weight: math.unit(120, "lb"),
  11577. name: "Side",
  11578. image: {
  11579. source: "./media/characters/odyssey/side.svg",
  11580. extra: 1847/1619,
  11581. bottom: 47/1894
  11582. }
  11583. },
  11584. lounging: {
  11585. height: math.unit(1.464, "feet"),
  11586. weight: math.unit(120, "lb"),
  11587. name: "Lounging",
  11588. image: {
  11589. source: "./media/characters/odyssey/lounging.svg",
  11590. extra: 1235/837,
  11591. bottom: 551/1786
  11592. }
  11593. },
  11594. },
  11595. [
  11596. {
  11597. name: "Normal",
  11598. height: math.unit(5 + 4 / 12, "feet")
  11599. },
  11600. {
  11601. name: "Macro",
  11602. height: math.unit(1, "km")
  11603. },
  11604. {
  11605. name: "Megamacro",
  11606. height: math.unit(3000, "km")
  11607. },
  11608. {
  11609. name: "Gigamacro",
  11610. height: math.unit(1, "AU"),
  11611. default: true
  11612. },
  11613. {
  11614. name: "Omniversal",
  11615. height: math.unit(100e14, "lightyears")
  11616. },
  11617. ]
  11618. ))
  11619. characterMakers.push(() => makeCharacter(
  11620. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11621. {
  11622. front: {
  11623. height: math.unit(5 + 10/12, "feet"),
  11624. name: "Front",
  11625. image: {
  11626. source: "./media/characters/mekuto/front.svg",
  11627. extra: 875/835,
  11628. bottom: 46/921
  11629. }
  11630. },
  11631. },
  11632. [
  11633. {
  11634. name: "Minimicro",
  11635. height: math.unit(0.2, "inches")
  11636. },
  11637. {
  11638. name: "Micro",
  11639. height: math.unit(1.5, "inches")
  11640. },
  11641. {
  11642. name: "Normal",
  11643. height: math.unit(5 + 10 / 12, "feet"),
  11644. default: true
  11645. },
  11646. {
  11647. name: "Minimacro",
  11648. height: math.unit(17 + 9 / 12, "feet")
  11649. },
  11650. {
  11651. name: "Macro",
  11652. height: math.unit(177.5, "feet")
  11653. },
  11654. {
  11655. name: "Megamacro",
  11656. height: math.unit(152, "miles")
  11657. },
  11658. ]
  11659. ))
  11660. characterMakers.push(() => makeCharacter(
  11661. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11662. {
  11663. front: {
  11664. height: math.unit(6.5, "inches"),
  11665. weight: math.unit(13, "oz"),
  11666. name: "Front",
  11667. image: {
  11668. source: "./media/characters/dafydd-tomos/front.svg",
  11669. extra: 2990 / 2603,
  11670. bottom: 0.03
  11671. }
  11672. },
  11673. },
  11674. [
  11675. {
  11676. name: "Micro",
  11677. height: math.unit(6.5, "inches"),
  11678. default: true
  11679. },
  11680. ]
  11681. ))
  11682. characterMakers.push(() => makeCharacter(
  11683. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11684. {
  11685. front: {
  11686. height: math.unit(6, "feet"),
  11687. weight: math.unit(150, "lb"),
  11688. name: "Front",
  11689. image: {
  11690. source: "./media/characters/splinter/front.svg",
  11691. extra: 2990 / 2882,
  11692. bottom: 0.04
  11693. }
  11694. },
  11695. back: {
  11696. height: math.unit(6, "feet"),
  11697. weight: math.unit(150, "lb"),
  11698. name: "Back",
  11699. image: {
  11700. source: "./media/characters/splinter/back.svg",
  11701. extra: 2990 / 2882,
  11702. bottom: 0.04
  11703. }
  11704. },
  11705. },
  11706. [
  11707. {
  11708. name: "Normal",
  11709. height: math.unit(6, "feet")
  11710. },
  11711. {
  11712. name: "Macro",
  11713. height: math.unit(230, "meters"),
  11714. default: true
  11715. },
  11716. ]
  11717. ))
  11718. characterMakers.push(() => makeCharacter(
  11719. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11720. {
  11721. front: {
  11722. height: math.unit(4 + 10 / 12, "feet"),
  11723. weight: math.unit(480, "lb"),
  11724. name: "Front",
  11725. image: {
  11726. source: "./media/characters/snow-gabumon/front.svg",
  11727. extra: 1140 / 963,
  11728. bottom: 0.058
  11729. }
  11730. },
  11731. back: {
  11732. height: math.unit(4 + 10 / 12, "feet"),
  11733. weight: math.unit(480, "lb"),
  11734. name: "Back",
  11735. image: {
  11736. source: "./media/characters/snow-gabumon/back.svg",
  11737. extra: 1115 / 962,
  11738. bottom: 0.041
  11739. }
  11740. },
  11741. frontUndresed: {
  11742. height: math.unit(4 + 10 / 12, "feet"),
  11743. weight: math.unit(480, "lb"),
  11744. name: "Front (Undressed)",
  11745. image: {
  11746. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11747. extra: 1061 / 960,
  11748. bottom: 0.045
  11749. }
  11750. },
  11751. },
  11752. [
  11753. {
  11754. name: "Micro",
  11755. height: math.unit(1, "inch")
  11756. },
  11757. {
  11758. name: "Normal",
  11759. height: math.unit(4 + 10 / 12, "feet"),
  11760. default: true
  11761. },
  11762. {
  11763. name: "Macro",
  11764. height: math.unit(200, "feet")
  11765. },
  11766. {
  11767. name: "Megamacro",
  11768. height: math.unit(120, "miles")
  11769. },
  11770. {
  11771. name: "Gigamacro",
  11772. height: math.unit(9800, "miles")
  11773. },
  11774. ]
  11775. ))
  11776. characterMakers.push(() => makeCharacter(
  11777. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11778. {
  11779. front: {
  11780. height: math.unit(1.7, "meters"),
  11781. weight: math.unit(140, "lb"),
  11782. name: "Front",
  11783. image: {
  11784. source: "./media/characters/moody/front.svg",
  11785. extra: 3226 / 3007,
  11786. bottom: 0.087
  11787. }
  11788. },
  11789. },
  11790. [
  11791. {
  11792. name: "Micro",
  11793. height: math.unit(1, "mm")
  11794. },
  11795. {
  11796. name: "Normal",
  11797. height: math.unit(1.7, "meters"),
  11798. default: true
  11799. },
  11800. {
  11801. name: "Macro",
  11802. height: math.unit(80, "meters")
  11803. },
  11804. {
  11805. name: "Macro+",
  11806. height: math.unit(500, "meters")
  11807. },
  11808. ]
  11809. ))
  11810. characterMakers.push(() => makeCharacter(
  11811. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11812. {
  11813. front: {
  11814. height: math.unit(6, "feet"),
  11815. weight: math.unit(150, "lb"),
  11816. name: "Front",
  11817. image: {
  11818. source: "./media/characters/zyas/front.svg",
  11819. extra: 1180 / 1120,
  11820. bottom: 0.045
  11821. }
  11822. },
  11823. },
  11824. [
  11825. {
  11826. name: "Normal",
  11827. height: math.unit(10, "feet"),
  11828. default: true
  11829. },
  11830. {
  11831. name: "Macro",
  11832. height: math.unit(500, "feet")
  11833. },
  11834. {
  11835. name: "Megamacro",
  11836. height: math.unit(5, "miles")
  11837. },
  11838. {
  11839. name: "Teramacro",
  11840. height: math.unit(150000, "miles")
  11841. },
  11842. ]
  11843. ))
  11844. characterMakers.push(() => makeCharacter(
  11845. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11846. {
  11847. front: {
  11848. height: math.unit(6, "feet"),
  11849. weight: math.unit(150, "lb"),
  11850. name: "Front",
  11851. image: {
  11852. source: "./media/characters/cuon/front.svg",
  11853. extra: 1390 / 1320,
  11854. bottom: 0.008
  11855. }
  11856. },
  11857. },
  11858. [
  11859. {
  11860. name: "Micro",
  11861. height: math.unit(3, "inches")
  11862. },
  11863. {
  11864. name: "Normal",
  11865. height: math.unit(18 + 9 / 12, "feet"),
  11866. default: true
  11867. },
  11868. {
  11869. name: "Macro",
  11870. height: math.unit(360, "feet")
  11871. },
  11872. {
  11873. name: "Megamacro",
  11874. height: math.unit(360, "miles")
  11875. },
  11876. ]
  11877. ))
  11878. characterMakers.push(() => makeCharacter(
  11879. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11880. {
  11881. front: {
  11882. height: math.unit(2.4, "meters"),
  11883. weight: math.unit(70, "kg"),
  11884. name: "Front",
  11885. image: {
  11886. source: "./media/characters/nyanuxk/front.svg",
  11887. extra: 1172 / 1084,
  11888. bottom: 0.065
  11889. }
  11890. },
  11891. side: {
  11892. height: math.unit(2.4, "meters"),
  11893. weight: math.unit(70, "kg"),
  11894. name: "Side",
  11895. image: {
  11896. source: "./media/characters/nyanuxk/side.svg",
  11897. extra: 1190 / 1132,
  11898. bottom: 0.007
  11899. }
  11900. },
  11901. back: {
  11902. height: math.unit(2.4, "meters"),
  11903. weight: math.unit(70, "kg"),
  11904. name: "Back",
  11905. image: {
  11906. source: "./media/characters/nyanuxk/back.svg",
  11907. extra: 1200 / 1141,
  11908. bottom: 0.015
  11909. }
  11910. },
  11911. foot: {
  11912. height: math.unit(0.52, "meters"),
  11913. name: "Foot",
  11914. image: {
  11915. source: "./media/characters/nyanuxk/foot.svg"
  11916. }
  11917. },
  11918. },
  11919. [
  11920. {
  11921. name: "Micro",
  11922. height: math.unit(2, "cm")
  11923. },
  11924. {
  11925. name: "Normal",
  11926. height: math.unit(2.4, "meters"),
  11927. default: true
  11928. },
  11929. {
  11930. name: "Smaller Macro",
  11931. height: math.unit(120, "meters")
  11932. },
  11933. {
  11934. name: "Bigger Macro",
  11935. height: math.unit(1.2, "km")
  11936. },
  11937. {
  11938. name: "Megamacro",
  11939. height: math.unit(15, "kilometers")
  11940. },
  11941. {
  11942. name: "Gigamacro",
  11943. height: math.unit(2000, "km")
  11944. },
  11945. {
  11946. name: "Teramacro",
  11947. height: math.unit(500000, "km")
  11948. },
  11949. ]
  11950. ))
  11951. characterMakers.push(() => makeCharacter(
  11952. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11953. {
  11954. side: {
  11955. height: math.unit(6, "feet"),
  11956. name: "Side",
  11957. image: {
  11958. source: "./media/characters/ailbhe/side.svg",
  11959. extra: 757 / 464,
  11960. bottom: 0.041
  11961. }
  11962. },
  11963. },
  11964. [
  11965. {
  11966. name: "Normal",
  11967. height: math.unit(1.07, "meters"),
  11968. default: true
  11969. },
  11970. ]
  11971. ))
  11972. characterMakers.push(() => makeCharacter(
  11973. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11974. {
  11975. front: {
  11976. height: math.unit(6, "feet"),
  11977. weight: math.unit(120, "kg"),
  11978. name: "Front",
  11979. image: {
  11980. source: "./media/characters/zevulfius/front.svg",
  11981. extra: 965 / 903
  11982. }
  11983. },
  11984. side: {
  11985. height: math.unit(6, "feet"),
  11986. weight: math.unit(120, "kg"),
  11987. name: "Side",
  11988. image: {
  11989. source: "./media/characters/zevulfius/side.svg",
  11990. extra: 939 / 900
  11991. }
  11992. },
  11993. back: {
  11994. height: math.unit(6, "feet"),
  11995. weight: math.unit(120, "kg"),
  11996. name: "Back",
  11997. image: {
  11998. source: "./media/characters/zevulfius/back.svg",
  11999. extra: 918 / 854,
  12000. bottom: 0.005
  12001. }
  12002. },
  12003. foot: {
  12004. height: math.unit(6 / 3.72, "feet"),
  12005. name: "Foot",
  12006. image: {
  12007. source: "./media/characters/zevulfius/foot.svg"
  12008. }
  12009. },
  12010. },
  12011. [
  12012. {
  12013. name: "Macro",
  12014. height: math.unit(750, "meters")
  12015. },
  12016. {
  12017. name: "Megamacro",
  12018. height: math.unit(20, "km"),
  12019. default: true
  12020. },
  12021. {
  12022. name: "Gigamacro",
  12023. height: math.unit(2000, "km")
  12024. },
  12025. {
  12026. name: "Teramacro",
  12027. height: math.unit(250000, "km")
  12028. },
  12029. ]
  12030. ))
  12031. characterMakers.push(() => makeCharacter(
  12032. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  12033. {
  12034. front: {
  12035. height: math.unit(100, "feet"),
  12036. weight: math.unit(350, "kg"),
  12037. name: "Front",
  12038. image: {
  12039. source: "./media/characters/rikes/front.svg",
  12040. extra: 1565 / 1483,
  12041. bottom: 0.017
  12042. }
  12043. },
  12044. },
  12045. [
  12046. {
  12047. name: "Macro",
  12048. height: math.unit(100, "feet"),
  12049. default: true
  12050. },
  12051. ]
  12052. ))
  12053. characterMakers.push(() => makeCharacter(
  12054. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  12055. {
  12056. front: {
  12057. height: math.unit(8, "feet"),
  12058. weight: math.unit(356, "lb"),
  12059. name: "Front",
  12060. image: {
  12061. source: "./media/characters/adam-silver-mane/front.svg",
  12062. extra: 1036/937,
  12063. bottom: 63/1099
  12064. }
  12065. },
  12066. side: {
  12067. height: math.unit(8, "feet"),
  12068. weight: math.unit(356, "lb"),
  12069. name: "Side",
  12070. image: {
  12071. source: "./media/characters/adam-silver-mane/side.svg",
  12072. extra: 997/901,
  12073. bottom: 59/1056
  12074. }
  12075. },
  12076. frontNsfw: {
  12077. height: math.unit(8, "feet"),
  12078. weight: math.unit(356, "lb"),
  12079. name: "Front (NSFW)",
  12080. image: {
  12081. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  12082. extra: 1036/937,
  12083. bottom: 63/1099
  12084. }
  12085. },
  12086. sideNsfw: {
  12087. height: math.unit(8, "feet"),
  12088. weight: math.unit(356, "lb"),
  12089. name: "Side (NSFW)",
  12090. image: {
  12091. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  12092. extra: 997/901,
  12093. bottom: 59/1056
  12094. }
  12095. },
  12096. dick: {
  12097. height: math.unit(2.1, "feet"),
  12098. name: "Dick",
  12099. image: {
  12100. source: "./media/characters/adam-silver-mane/dick.svg"
  12101. }
  12102. },
  12103. taur: {
  12104. height: math.unit(16, "feet"),
  12105. weight: math.unit(1500, "kg"),
  12106. name: "Taur",
  12107. image: {
  12108. source: "./media/characters/adam-silver-mane/taur.svg",
  12109. extra: 1713 / 1571,
  12110. bottom: 0.01
  12111. }
  12112. },
  12113. },
  12114. [
  12115. {
  12116. name: "Normal",
  12117. height: math.unit(8, "feet")
  12118. },
  12119. {
  12120. name: "Minimacro",
  12121. height: math.unit(80, "feet")
  12122. },
  12123. {
  12124. name: "MDA",
  12125. height: math.unit(80, "meters")
  12126. },
  12127. {
  12128. name: "Macro",
  12129. height: math.unit(800, "feet"),
  12130. default: true
  12131. },
  12132. {
  12133. name: "Megamacro",
  12134. height: math.unit(8000, "feet")
  12135. },
  12136. {
  12137. name: "Gigamacro",
  12138. height: math.unit(800, "miles")
  12139. },
  12140. {
  12141. name: "Teramacro",
  12142. height: math.unit(80000, "miles")
  12143. },
  12144. {
  12145. name: "Celestial",
  12146. height: math.unit(8e6, "miles")
  12147. },
  12148. {
  12149. name: "Star Dragon",
  12150. height: math.unit(800000, "parsecs")
  12151. },
  12152. {
  12153. name: "Godly",
  12154. height: math.unit(800, "teraparsecs")
  12155. },
  12156. ]
  12157. ))
  12158. characterMakers.push(() => makeCharacter(
  12159. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  12160. {
  12161. front: {
  12162. height: math.unit(6, "feet"),
  12163. weight: math.unit(150, "lb"),
  12164. name: "Front",
  12165. image: {
  12166. source: "./media/characters/ky'owin/front.svg",
  12167. extra: 3862/3053,
  12168. bottom: 74/3936
  12169. }
  12170. },
  12171. },
  12172. [
  12173. {
  12174. name: "Normal",
  12175. height: math.unit(6 + 8 / 12, "feet")
  12176. },
  12177. {
  12178. name: "Large",
  12179. height: math.unit(68, "feet")
  12180. },
  12181. {
  12182. name: "Macro",
  12183. height: math.unit(132, "feet")
  12184. },
  12185. {
  12186. name: "Macro+",
  12187. height: math.unit(340, "feet")
  12188. },
  12189. {
  12190. name: "Macro++",
  12191. height: math.unit(680, "feet"),
  12192. default: true
  12193. },
  12194. {
  12195. name: "Megamacro",
  12196. height: math.unit(1, "mile")
  12197. },
  12198. {
  12199. name: "Megamacro+",
  12200. height: math.unit(10, "miles")
  12201. },
  12202. ]
  12203. ))
  12204. characterMakers.push(() => makeCharacter(
  12205. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12206. {
  12207. front: {
  12208. height: math.unit(4, "feet"),
  12209. weight: math.unit(50, "lb"),
  12210. name: "Front",
  12211. image: {
  12212. source: "./media/characters/mal/front.svg",
  12213. extra: 785 / 724,
  12214. bottom: 0.07
  12215. }
  12216. },
  12217. },
  12218. [
  12219. {
  12220. name: "Micro",
  12221. height: math.unit(4, "inches")
  12222. },
  12223. {
  12224. name: "Normal",
  12225. height: math.unit(4, "feet"),
  12226. default: true
  12227. },
  12228. {
  12229. name: "Macro",
  12230. height: math.unit(200, "feet")
  12231. },
  12232. ]
  12233. ))
  12234. characterMakers.push(() => makeCharacter(
  12235. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12236. {
  12237. front: {
  12238. height: math.unit(6, "feet"),
  12239. weight: math.unit(150, "lb"),
  12240. name: "Front",
  12241. image: {
  12242. source: "./media/characters/jordan-deware/front.svg",
  12243. extra: 1191 / 1012
  12244. }
  12245. },
  12246. },
  12247. [
  12248. {
  12249. name: "Nano",
  12250. height: math.unit(0.01, "mm")
  12251. },
  12252. {
  12253. name: "Minimicro",
  12254. height: math.unit(1, "mm")
  12255. },
  12256. {
  12257. name: "Micro",
  12258. height: math.unit(0.5, "inches")
  12259. },
  12260. {
  12261. name: "Normal",
  12262. height: math.unit(4, "feet"),
  12263. default: true
  12264. },
  12265. {
  12266. name: "Minimacro",
  12267. height: math.unit(40, "meters")
  12268. },
  12269. {
  12270. name: "Small Macro",
  12271. height: math.unit(400, "meters")
  12272. },
  12273. {
  12274. name: "Macro",
  12275. height: math.unit(4, "miles")
  12276. },
  12277. {
  12278. name: "Megamacro",
  12279. height: math.unit(40, "miles")
  12280. },
  12281. {
  12282. name: "Megamacro+",
  12283. height: math.unit(400, "miles")
  12284. },
  12285. {
  12286. name: "Gigamacro",
  12287. height: math.unit(400000, "miles")
  12288. },
  12289. ]
  12290. ))
  12291. characterMakers.push(() => makeCharacter(
  12292. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12293. {
  12294. side: {
  12295. height: math.unit(6, "feet"),
  12296. weight: math.unit(150, "lb"),
  12297. name: "Side",
  12298. image: {
  12299. source: "./media/characters/kimiko/side.svg",
  12300. extra: 600 / 358
  12301. }
  12302. },
  12303. },
  12304. [
  12305. {
  12306. name: "Normal",
  12307. height: math.unit(15, "feet"),
  12308. default: true
  12309. },
  12310. {
  12311. name: "Macro",
  12312. height: math.unit(220, "feet")
  12313. },
  12314. {
  12315. name: "Macro+",
  12316. height: math.unit(1450, "feet")
  12317. },
  12318. {
  12319. name: "Megamacro",
  12320. height: math.unit(11500, "feet")
  12321. },
  12322. {
  12323. name: "Gigamacro",
  12324. height: math.unit(9500, "miles")
  12325. },
  12326. {
  12327. name: "Teramacro",
  12328. height: math.unit(2208005005, "miles")
  12329. },
  12330. {
  12331. name: "Examacro",
  12332. height: math.unit(2750, "parsecs")
  12333. },
  12334. {
  12335. name: "Zettamacro",
  12336. height: math.unit(101500, "parsecs")
  12337. },
  12338. ]
  12339. ))
  12340. characterMakers.push(() => makeCharacter(
  12341. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12342. {
  12343. front: {
  12344. height: math.unit(6, "feet"),
  12345. weight: math.unit(70, "kg"),
  12346. name: "Front",
  12347. image: {
  12348. source: "./media/characters/andrew-sleepy/front.svg"
  12349. }
  12350. },
  12351. side: {
  12352. height: math.unit(6, "feet"),
  12353. weight: math.unit(70, "kg"),
  12354. name: "Side",
  12355. image: {
  12356. source: "./media/characters/andrew-sleepy/side.svg"
  12357. }
  12358. },
  12359. },
  12360. [
  12361. {
  12362. name: "Micro",
  12363. height: math.unit(1, "mm"),
  12364. default: true
  12365. },
  12366. ]
  12367. ))
  12368. characterMakers.push(() => makeCharacter(
  12369. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12370. {
  12371. front: {
  12372. height: math.unit(6, "feet"),
  12373. weight: math.unit(150, "lb"),
  12374. name: "Front",
  12375. image: {
  12376. source: "./media/characters/judio/front.svg",
  12377. extra: 1258 / 1110
  12378. }
  12379. },
  12380. },
  12381. [
  12382. {
  12383. name: "Normal",
  12384. height: math.unit(5 + 6 / 12, "feet")
  12385. },
  12386. {
  12387. name: "Macro",
  12388. height: math.unit(1000, "feet"),
  12389. default: true
  12390. },
  12391. {
  12392. name: "Megamacro",
  12393. height: math.unit(10, "miles")
  12394. },
  12395. ]
  12396. ))
  12397. characterMakers.push(() => makeCharacter(
  12398. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12399. {
  12400. frontDressed: {
  12401. height: math.unit(6, "feet"),
  12402. weight: math.unit(68, "kg"),
  12403. name: "Front (Dressed)",
  12404. image: {
  12405. source: "./media/characters/nomaxice/front-dressed.svg",
  12406. extra: 1137/824,
  12407. bottom: 74/1211
  12408. }
  12409. },
  12410. frontShorts: {
  12411. height: math.unit(6, "feet"),
  12412. weight: math.unit(68, "kg"),
  12413. name: "Front (Shorts)",
  12414. image: {
  12415. source: "./media/characters/nomaxice/front-shorts.svg",
  12416. extra: 1137/824,
  12417. bottom: 74/1211
  12418. }
  12419. },
  12420. back: {
  12421. height: math.unit(6, "feet"),
  12422. weight: math.unit(68, "kg"),
  12423. name: "Back",
  12424. image: {
  12425. source: "./media/characters/nomaxice/back.svg",
  12426. extra: 822/786,
  12427. bottom: 39/861
  12428. }
  12429. },
  12430. hand: {
  12431. height: math.unit(0.565, "feet"),
  12432. name: "Hand",
  12433. image: {
  12434. source: "./media/characters/nomaxice/hand.svg"
  12435. }
  12436. },
  12437. foot: {
  12438. height: math.unit(1, "feet"),
  12439. name: "Foot",
  12440. image: {
  12441. source: "./media/characters/nomaxice/foot.svg"
  12442. }
  12443. },
  12444. },
  12445. [
  12446. {
  12447. name: "Micro",
  12448. height: math.unit(8, "cm")
  12449. },
  12450. {
  12451. name: "Norm",
  12452. height: math.unit(1.82, "m")
  12453. },
  12454. {
  12455. name: "Norm+",
  12456. height: math.unit(8.8, "feet"),
  12457. default: true
  12458. },
  12459. {
  12460. name: "Big",
  12461. height: math.unit(8, "meters")
  12462. },
  12463. {
  12464. name: "Macro",
  12465. height: math.unit(18, "meters")
  12466. },
  12467. {
  12468. name: "Macro+",
  12469. height: math.unit(88, "meters")
  12470. },
  12471. ]
  12472. ))
  12473. characterMakers.push(() => makeCharacter(
  12474. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12475. {
  12476. front: {
  12477. height: math.unit(12, "feet"),
  12478. weight: math.unit(1.5, "tons"),
  12479. name: "Front",
  12480. image: {
  12481. source: "./media/characters/dydros/front.svg",
  12482. extra: 863 / 800,
  12483. bottom: 0.015
  12484. }
  12485. },
  12486. back: {
  12487. height: math.unit(12, "feet"),
  12488. weight: math.unit(1.5, "tons"),
  12489. name: "Back",
  12490. image: {
  12491. source: "./media/characters/dydros/back.svg",
  12492. extra: 900 / 843,
  12493. bottom: 0.005
  12494. }
  12495. },
  12496. },
  12497. [
  12498. {
  12499. name: "Normal",
  12500. height: math.unit(12, "feet"),
  12501. default: true
  12502. },
  12503. ]
  12504. ))
  12505. characterMakers.push(() => makeCharacter(
  12506. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12507. {
  12508. front: {
  12509. height: math.unit(6, "feet"),
  12510. weight: math.unit(100, "kg"),
  12511. name: "Front",
  12512. image: {
  12513. source: "./media/characters/riggi/front.svg",
  12514. extra: 5787 / 5303
  12515. }
  12516. },
  12517. hyper: {
  12518. height: math.unit(6 * 5 / 3, "feet"),
  12519. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12520. name: "Hyper",
  12521. image: {
  12522. source: "./media/characters/riggi/hyper.svg",
  12523. extra: 3595 / 3485
  12524. }
  12525. },
  12526. },
  12527. [
  12528. {
  12529. name: "Small Macro",
  12530. height: math.unit(50, "feet")
  12531. },
  12532. {
  12533. name: "Default",
  12534. height: math.unit(200, "feet"),
  12535. default: true
  12536. },
  12537. {
  12538. name: "Loom",
  12539. height: math.unit(10000, "feet")
  12540. },
  12541. {
  12542. name: "Cruising Altitude",
  12543. height: math.unit(30000, "feet")
  12544. },
  12545. {
  12546. name: "Megamacro",
  12547. height: math.unit(100, "miles")
  12548. },
  12549. {
  12550. name: "Continent Sized",
  12551. height: math.unit(2800, "miles")
  12552. },
  12553. {
  12554. name: "Earth Sized",
  12555. height: math.unit(8000, "miles")
  12556. },
  12557. ]
  12558. ))
  12559. characterMakers.push(() => makeCharacter(
  12560. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12561. {
  12562. front: {
  12563. height: math.unit(6, "feet"),
  12564. weight: math.unit(250, "lb"),
  12565. name: "Front",
  12566. image: {
  12567. source: "./media/characters/alexi/front.svg",
  12568. extra: 3483 / 3291,
  12569. bottom: 0.04
  12570. }
  12571. },
  12572. back: {
  12573. height: math.unit(6, "feet"),
  12574. weight: math.unit(250, "lb"),
  12575. name: "Back",
  12576. image: {
  12577. source: "./media/characters/alexi/back.svg",
  12578. extra: 3533 / 3356,
  12579. bottom: 0.021
  12580. }
  12581. },
  12582. frontTransforming: {
  12583. height: math.unit(8.58, "feet"),
  12584. weight: math.unit(1300, "lb"),
  12585. name: "Transforming",
  12586. image: {
  12587. source: "./media/characters/alexi/front-transforming.svg",
  12588. extra: 437 / 409,
  12589. bottom: 19 / 458.66
  12590. }
  12591. },
  12592. frontTransformed: {
  12593. height: math.unit(12.5, "feet"),
  12594. weight: math.unit(4000, "lb"),
  12595. name: "Transformed",
  12596. image: {
  12597. source: "./media/characters/alexi/front-transformed.svg",
  12598. extra: 639 / 614,
  12599. bottom: 30.55 / 671
  12600. }
  12601. },
  12602. },
  12603. [
  12604. {
  12605. name: "Normal",
  12606. height: math.unit(14, "feet"),
  12607. default: true
  12608. },
  12609. {
  12610. name: "Minimacro",
  12611. height: math.unit(30, "meters")
  12612. },
  12613. {
  12614. name: "Macro",
  12615. height: math.unit(500, "meters")
  12616. },
  12617. {
  12618. name: "Megamacro",
  12619. height: math.unit(9000, "km")
  12620. },
  12621. {
  12622. name: "Teramacro",
  12623. height: math.unit(384000, "km")
  12624. },
  12625. ]
  12626. ))
  12627. characterMakers.push(() => makeCharacter(
  12628. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12629. {
  12630. front: {
  12631. height: math.unit(6, "feet"),
  12632. weight: math.unit(150, "lb"),
  12633. name: "Front",
  12634. image: {
  12635. source: "./media/characters/kayroo/front.svg",
  12636. extra: 1153 / 1038,
  12637. bottom: 0.06
  12638. }
  12639. },
  12640. foot: {
  12641. height: math.unit(6, "feet"),
  12642. weight: math.unit(150, "lb"),
  12643. name: "Foot",
  12644. image: {
  12645. source: "./media/characters/kayroo/foot.svg"
  12646. }
  12647. },
  12648. },
  12649. [
  12650. {
  12651. name: "Normal",
  12652. height: math.unit(8, "feet"),
  12653. default: true
  12654. },
  12655. {
  12656. name: "Minimacro",
  12657. height: math.unit(250, "feet")
  12658. },
  12659. {
  12660. name: "Macro",
  12661. height: math.unit(2800, "feet")
  12662. },
  12663. {
  12664. name: "Megamacro",
  12665. height: math.unit(5200, "feet")
  12666. },
  12667. {
  12668. name: "Gigamacro",
  12669. height: math.unit(27000, "feet")
  12670. },
  12671. {
  12672. name: "Omega",
  12673. height: math.unit(45000, "feet")
  12674. },
  12675. ]
  12676. ))
  12677. characterMakers.push(() => makeCharacter(
  12678. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12679. {
  12680. front: {
  12681. height: math.unit(18, "feet"),
  12682. weight: math.unit(5800, "lb"),
  12683. name: "Front",
  12684. image: {
  12685. source: "./media/characters/rhys/front.svg",
  12686. extra: 3386 / 3090,
  12687. bottom: 0.07
  12688. }
  12689. },
  12690. },
  12691. [
  12692. {
  12693. name: "Normal",
  12694. height: math.unit(18, "feet"),
  12695. default: true
  12696. },
  12697. {
  12698. name: "Working Size",
  12699. height: math.unit(200, "feet")
  12700. },
  12701. {
  12702. name: "Demolition Size",
  12703. height: math.unit(2000, "feet")
  12704. },
  12705. {
  12706. name: "Maximum Licensed Size",
  12707. height: math.unit(5, "miles")
  12708. },
  12709. {
  12710. name: "Maximum Observed Size",
  12711. height: math.unit(10, "yottameters")
  12712. },
  12713. ]
  12714. ))
  12715. characterMakers.push(() => makeCharacter(
  12716. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12717. {
  12718. front: {
  12719. height: math.unit(6, "feet"),
  12720. weight: math.unit(250, "lb"),
  12721. name: "Front",
  12722. image: {
  12723. source: "./media/characters/toto/front.svg",
  12724. extra: 527 / 479,
  12725. bottom: 0.05
  12726. }
  12727. },
  12728. },
  12729. [
  12730. {
  12731. name: "Micro",
  12732. height: math.unit(3, "feet")
  12733. },
  12734. {
  12735. name: "Normal",
  12736. height: math.unit(10, "feet")
  12737. },
  12738. {
  12739. name: "Macro",
  12740. height: math.unit(150, "feet"),
  12741. default: true
  12742. },
  12743. {
  12744. name: "Megamacro",
  12745. height: math.unit(1200, "feet")
  12746. },
  12747. ]
  12748. ))
  12749. characterMakers.push(() => makeCharacter(
  12750. { name: "King", species: ["lion"], tags: ["anthro"] },
  12751. {
  12752. back: {
  12753. height: math.unit(6, "feet"),
  12754. weight: math.unit(150, "lb"),
  12755. name: "Back",
  12756. image: {
  12757. source: "./media/characters/king/back.svg"
  12758. }
  12759. },
  12760. },
  12761. [
  12762. {
  12763. name: "Micro",
  12764. height: math.unit(2, "inches")
  12765. },
  12766. {
  12767. name: "Normal",
  12768. height: math.unit(8, "feet")
  12769. },
  12770. {
  12771. name: "Macro",
  12772. height: math.unit(200, "feet"),
  12773. default: true
  12774. },
  12775. {
  12776. name: "Megamacro",
  12777. height: math.unit(50, "miles")
  12778. },
  12779. ]
  12780. ))
  12781. characterMakers.push(() => makeCharacter(
  12782. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12783. {
  12784. front: {
  12785. height: math.unit(11, "feet"),
  12786. weight: math.unit(1400, "lb"),
  12787. name: "Front",
  12788. image: {
  12789. source: "./media/characters/cordite/front.svg",
  12790. extra: 1919/1827,
  12791. bottom: 40/1959
  12792. }
  12793. },
  12794. side: {
  12795. height: math.unit(11, "feet"),
  12796. weight: math.unit(1400, "lb"),
  12797. name: "Side",
  12798. image: {
  12799. source: "./media/characters/cordite/side.svg",
  12800. extra: 1908/1793,
  12801. bottom: 38/1946
  12802. }
  12803. },
  12804. back: {
  12805. height: math.unit(11, "feet"),
  12806. weight: math.unit(1400, "lb"),
  12807. name: "Back",
  12808. image: {
  12809. source: "./media/characters/cordite/back.svg",
  12810. extra: 1938/1837,
  12811. bottom: 10/1948
  12812. }
  12813. },
  12814. feral: {
  12815. height: math.unit(2, "feet"),
  12816. weight: math.unit(90, "lb"),
  12817. name: "Feral",
  12818. image: {
  12819. source: "./media/characters/cordite/feral.svg",
  12820. extra: 1260 / 755,
  12821. bottom: 0.05
  12822. }
  12823. },
  12824. },
  12825. [
  12826. {
  12827. name: "Normal",
  12828. height: math.unit(11, "feet"),
  12829. default: true
  12830. },
  12831. ]
  12832. ))
  12833. characterMakers.push(() => makeCharacter(
  12834. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12835. {
  12836. front: {
  12837. height: math.unit(6, "feet"),
  12838. weight: math.unit(150, "lb"),
  12839. name: "Front",
  12840. image: {
  12841. source: "./media/characters/pianostrong/front.svg",
  12842. extra: 6577 / 6254,
  12843. bottom: 0.02
  12844. }
  12845. },
  12846. side: {
  12847. height: math.unit(6, "feet"),
  12848. weight: math.unit(150, "lb"),
  12849. name: "Side",
  12850. image: {
  12851. source: "./media/characters/pianostrong/side.svg",
  12852. extra: 6106 / 5730
  12853. }
  12854. },
  12855. back: {
  12856. height: math.unit(6, "feet"),
  12857. weight: math.unit(150, "lb"),
  12858. name: "Back",
  12859. image: {
  12860. source: "./media/characters/pianostrong/back.svg",
  12861. extra: 6085 / 5733,
  12862. bottom: 0.01
  12863. }
  12864. },
  12865. },
  12866. [
  12867. {
  12868. name: "Macro",
  12869. height: math.unit(100, "feet")
  12870. },
  12871. {
  12872. name: "Macro+",
  12873. height: math.unit(300, "feet"),
  12874. default: true
  12875. },
  12876. {
  12877. name: "Macro++",
  12878. height: math.unit(1000, "feet")
  12879. },
  12880. ]
  12881. ))
  12882. characterMakers.push(() => makeCharacter(
  12883. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12884. {
  12885. front: {
  12886. height: math.unit(6, "feet"),
  12887. weight: math.unit(150, "lb"),
  12888. name: "Front",
  12889. image: {
  12890. source: "./media/characters/kona/front.svg",
  12891. extra: 2960 / 2629,
  12892. bottom: 0.005
  12893. }
  12894. },
  12895. },
  12896. [
  12897. {
  12898. name: "Normal",
  12899. height: math.unit(11 + 8 / 12, "feet")
  12900. },
  12901. {
  12902. name: "Macro",
  12903. height: math.unit(850, "feet"),
  12904. default: true
  12905. },
  12906. {
  12907. name: "Macro+",
  12908. height: math.unit(1.5, "km"),
  12909. default: true
  12910. },
  12911. {
  12912. name: "Megamacro",
  12913. height: math.unit(80, "miles")
  12914. },
  12915. {
  12916. name: "Gigamacro",
  12917. height: math.unit(3500, "miles")
  12918. },
  12919. ]
  12920. ))
  12921. characterMakers.push(() => makeCharacter(
  12922. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12923. {
  12924. side: {
  12925. height: math.unit(1.9, "meters"),
  12926. weight: math.unit(326, "kg"),
  12927. name: "Side",
  12928. image: {
  12929. source: "./media/characters/levi/side.svg",
  12930. extra: 1704 / 1334,
  12931. bottom: 0.02
  12932. }
  12933. },
  12934. },
  12935. [
  12936. {
  12937. name: "Normal",
  12938. height: math.unit(1.9, "meters"),
  12939. default: true
  12940. },
  12941. {
  12942. name: "Macro",
  12943. height: math.unit(20, "meters")
  12944. },
  12945. {
  12946. name: "Macro+",
  12947. height: math.unit(200, "meters")
  12948. },
  12949. {
  12950. name: "Megamacro",
  12951. height: math.unit(2, "km")
  12952. },
  12953. {
  12954. name: "Megamacro+",
  12955. height: math.unit(20, "km")
  12956. },
  12957. {
  12958. name: "Gigamacro",
  12959. height: math.unit(2500, "km")
  12960. },
  12961. {
  12962. name: "Gigamacro+",
  12963. height: math.unit(120000, "km")
  12964. },
  12965. {
  12966. name: "Teramacro",
  12967. height: math.unit(7.77e6, "km")
  12968. },
  12969. ]
  12970. ))
  12971. characterMakers.push(() => makeCharacter(
  12972. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12973. {
  12974. front: {
  12975. height: math.unit(6 + 4/12, "feet"),
  12976. weight: math.unit(190, "lb"),
  12977. name: "Front",
  12978. image: {
  12979. source: "./media/characters/bmc/front.svg",
  12980. extra: 1626/1472,
  12981. bottom: 79/1705
  12982. }
  12983. },
  12984. back: {
  12985. height: math.unit(6 + 4/12, "feet"),
  12986. weight: math.unit(190, "lb"),
  12987. name: "Back",
  12988. image: {
  12989. source: "./media/characters/bmc/back.svg",
  12990. extra: 1640/1479,
  12991. bottom: 45/1685
  12992. }
  12993. },
  12994. frontArmor: {
  12995. height: math.unit(6 + 4/12, "feet"),
  12996. weight: math.unit(190, "lb"),
  12997. name: "Front-armor",
  12998. image: {
  12999. source: "./media/characters/bmc/front-armor.svg",
  13000. extra: 1538/1468,
  13001. bottom: 79/1617
  13002. }
  13003. },
  13004. },
  13005. [
  13006. {
  13007. name: "Human-sized",
  13008. height: math.unit(6 + 4 / 12, "feet")
  13009. },
  13010. {
  13011. name: "Interactive Size",
  13012. height: math.unit(25, "feet")
  13013. },
  13014. {
  13015. name: "Small",
  13016. height: math.unit(250, "feet")
  13017. },
  13018. {
  13019. name: "Normal",
  13020. height: math.unit(1250, "feet"),
  13021. default: true
  13022. },
  13023. {
  13024. name: "Good Day",
  13025. height: math.unit(88, "miles")
  13026. },
  13027. {
  13028. name: "Largest Measured Size",
  13029. height: math.unit(105.960, "galaxies")
  13030. },
  13031. ]
  13032. ))
  13033. characterMakers.push(() => makeCharacter(
  13034. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  13035. {
  13036. front: {
  13037. height: math.unit(20, "feet"),
  13038. weight: math.unit(2016, "kg"),
  13039. name: "Front",
  13040. image: {
  13041. source: "./media/characters/sven-the-kaiju/front.svg",
  13042. extra: 1277/1250,
  13043. bottom: 35/1312
  13044. }
  13045. },
  13046. mouth: {
  13047. height: math.unit(1.85, "feet"),
  13048. name: "Mouth",
  13049. image: {
  13050. source: "./media/characters/sven-the-kaiju/mouth.svg"
  13051. }
  13052. },
  13053. },
  13054. [
  13055. {
  13056. name: "Fairy",
  13057. height: math.unit(6, "inches")
  13058. },
  13059. {
  13060. name: "Normal",
  13061. height: math.unit(20, "feet"),
  13062. default: true
  13063. },
  13064. {
  13065. name: "Rampage",
  13066. height: math.unit(200, "feet")
  13067. },
  13068. {
  13069. name: "Archfey Forest Guardian",
  13070. height: math.unit(1, "mile")
  13071. },
  13072. ]
  13073. ))
  13074. characterMakers.push(() => makeCharacter(
  13075. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  13076. {
  13077. front: {
  13078. height: math.unit(4, "meters"),
  13079. weight: math.unit(2, "tons"),
  13080. name: "Front",
  13081. image: {
  13082. source: "./media/characters/marik/front.svg",
  13083. extra: 1057 / 1003,
  13084. bottom: 0.08
  13085. }
  13086. },
  13087. },
  13088. [
  13089. {
  13090. name: "Normal",
  13091. height: math.unit(4, "meters"),
  13092. default: true
  13093. },
  13094. {
  13095. name: "Macro",
  13096. height: math.unit(20, "meters")
  13097. },
  13098. {
  13099. name: "Megamacro",
  13100. height: math.unit(50, "km")
  13101. },
  13102. {
  13103. name: "Gigamacro",
  13104. height: math.unit(100, "km")
  13105. },
  13106. {
  13107. name: "Alpha Macro",
  13108. height: math.unit(7.88e7, "yottameters")
  13109. },
  13110. ]
  13111. ))
  13112. characterMakers.push(() => makeCharacter(
  13113. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  13114. {
  13115. front: {
  13116. height: math.unit(6, "feet"),
  13117. weight: math.unit(110, "lb"),
  13118. name: "Front",
  13119. image: {
  13120. source: "./media/characters/mel/front.svg",
  13121. extra: 736 / 617,
  13122. bottom: 0.017
  13123. }
  13124. },
  13125. },
  13126. [
  13127. {
  13128. name: "Pico",
  13129. height: math.unit(3, "pm")
  13130. },
  13131. {
  13132. name: "Nano",
  13133. height: math.unit(3, "nm")
  13134. },
  13135. {
  13136. name: "Micro",
  13137. height: math.unit(0.3, "mm"),
  13138. default: true
  13139. },
  13140. {
  13141. name: "Micro+",
  13142. height: math.unit(3, "mm")
  13143. },
  13144. {
  13145. name: "Normal",
  13146. height: math.unit(5 + 10.5 / 12, "feet")
  13147. },
  13148. ]
  13149. ))
  13150. characterMakers.push(() => makeCharacter(
  13151. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  13152. {
  13153. kaiju: {
  13154. height: math.unit(1.75, "meters"),
  13155. weight: math.unit(55, "kg"),
  13156. name: "Kaiju",
  13157. image: {
  13158. source: "./media/characters/lykonous/kaiju.svg",
  13159. extra: 1055 / 946,
  13160. bottom: 0.135
  13161. }
  13162. },
  13163. },
  13164. [
  13165. {
  13166. name: "Normal",
  13167. height: math.unit(2.5, "meters"),
  13168. default: true
  13169. },
  13170. {
  13171. name: "Kaiju Dragon",
  13172. height: math.unit(60, "meters")
  13173. },
  13174. {
  13175. name: "Mega Kaiju",
  13176. height: math.unit(120, "km")
  13177. },
  13178. {
  13179. name: "Giga Kaiju",
  13180. height: math.unit(200, "megameters")
  13181. },
  13182. {
  13183. name: "Terra Kaiju",
  13184. height: math.unit(400, "gigameters")
  13185. },
  13186. {
  13187. name: "Kaiju Dragon God",
  13188. height: math.unit(13000, "exaparsecs")
  13189. },
  13190. ]
  13191. ))
  13192. characterMakers.push(() => makeCharacter(
  13193. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  13194. {
  13195. front: {
  13196. height: math.unit(6, "feet"),
  13197. weight: math.unit(150, "lb"),
  13198. name: "Front",
  13199. image: {
  13200. source: "./media/characters/blü/front.svg",
  13201. extra: 1883 / 1564,
  13202. bottom: 0.031
  13203. }
  13204. },
  13205. },
  13206. [
  13207. {
  13208. name: "Normal",
  13209. height: math.unit(13, "feet"),
  13210. default: true
  13211. },
  13212. {
  13213. name: "Big Boi",
  13214. height: math.unit(150, "meters")
  13215. },
  13216. {
  13217. name: "Mini Stomper",
  13218. height: math.unit(300, "meters")
  13219. },
  13220. {
  13221. name: "Macro",
  13222. height: math.unit(1000, "meters")
  13223. },
  13224. {
  13225. name: "Megamacro",
  13226. height: math.unit(11000, "meters")
  13227. },
  13228. {
  13229. name: "Gigamacro",
  13230. height: math.unit(11000, "km")
  13231. },
  13232. {
  13233. name: "Teramacro",
  13234. height: math.unit(420000, "km")
  13235. },
  13236. {
  13237. name: "Examacro",
  13238. height: math.unit(120, "parsecs")
  13239. },
  13240. {
  13241. name: "God Tho",
  13242. height: math.unit(98000000000, "parsecs")
  13243. },
  13244. ]
  13245. ))
  13246. characterMakers.push(() => makeCharacter(
  13247. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13248. {
  13249. taurFront: {
  13250. height: math.unit(6, "feet"),
  13251. weight: math.unit(200, "lb"),
  13252. name: "Taur (Front)",
  13253. image: {
  13254. source: "./media/characters/scales/taur-front.svg",
  13255. extra: 1,
  13256. bottom: 0.05
  13257. }
  13258. },
  13259. taurBack: {
  13260. height: math.unit(6, "feet"),
  13261. weight: math.unit(200, "lb"),
  13262. name: "Taur (Back)",
  13263. image: {
  13264. source: "./media/characters/scales/taur-back.svg",
  13265. extra: 1,
  13266. bottom: 0.08
  13267. }
  13268. },
  13269. anthro: {
  13270. height: math.unit(6 * 7 / 12, "feet"),
  13271. weight: math.unit(100, "lb"),
  13272. name: "Anthro",
  13273. image: {
  13274. source: "./media/characters/scales/anthro.svg",
  13275. extra: 1,
  13276. bottom: 0.06
  13277. }
  13278. },
  13279. },
  13280. [
  13281. {
  13282. name: "Normal",
  13283. height: math.unit(12, "feet"),
  13284. default: true
  13285. },
  13286. ]
  13287. ))
  13288. characterMakers.push(() => makeCharacter(
  13289. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13290. {
  13291. front: {
  13292. height: math.unit(6, "feet"),
  13293. weight: math.unit(150, "lb"),
  13294. name: "Front",
  13295. image: {
  13296. source: "./media/characters/koragos/front.svg",
  13297. extra: 841 / 794,
  13298. bottom: 0.035
  13299. }
  13300. },
  13301. back: {
  13302. height: math.unit(6, "feet"),
  13303. weight: math.unit(150, "lb"),
  13304. name: "Back",
  13305. image: {
  13306. source: "./media/characters/koragos/back.svg",
  13307. extra: 841 / 810,
  13308. bottom: 0.022
  13309. }
  13310. },
  13311. },
  13312. [
  13313. {
  13314. name: "Normal",
  13315. height: math.unit(6 + 11 / 12, "feet"),
  13316. default: true
  13317. },
  13318. {
  13319. name: "Macro",
  13320. height: math.unit(490, "feet")
  13321. },
  13322. {
  13323. name: "Megamacro",
  13324. height: math.unit(10, "miles")
  13325. },
  13326. {
  13327. name: "Gigamacro",
  13328. height: math.unit(50, "miles")
  13329. },
  13330. ]
  13331. ))
  13332. characterMakers.push(() => makeCharacter(
  13333. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13334. {
  13335. front: {
  13336. height: math.unit(6, "feet"),
  13337. weight: math.unit(250, "lb"),
  13338. name: "Front",
  13339. image: {
  13340. source: "./media/characters/xylrem/front.svg",
  13341. extra: 3323 / 3050,
  13342. bottom: 0.065
  13343. }
  13344. },
  13345. },
  13346. [
  13347. {
  13348. name: "Micro",
  13349. height: math.unit(4, "feet")
  13350. },
  13351. {
  13352. name: "Normal",
  13353. height: math.unit(16, "feet"),
  13354. default: true
  13355. },
  13356. {
  13357. name: "Macro",
  13358. height: math.unit(2720, "feet")
  13359. },
  13360. {
  13361. name: "Megamacro",
  13362. height: math.unit(25000, "miles")
  13363. },
  13364. ]
  13365. ))
  13366. characterMakers.push(() => makeCharacter(
  13367. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13368. {
  13369. front: {
  13370. height: math.unit(8, "feet"),
  13371. weight: math.unit(250, "kg"),
  13372. name: "Front",
  13373. image: {
  13374. source: "./media/characters/ikideru/front.svg",
  13375. extra: 930 / 870,
  13376. bottom: 0.087
  13377. }
  13378. },
  13379. back: {
  13380. height: math.unit(8, "feet"),
  13381. weight: math.unit(250, "kg"),
  13382. name: "Back",
  13383. image: {
  13384. source: "./media/characters/ikideru/back.svg",
  13385. extra: 919 / 852,
  13386. bottom: 0.055
  13387. }
  13388. },
  13389. },
  13390. [
  13391. {
  13392. name: "Rare",
  13393. height: math.unit(8, "feet"),
  13394. default: true
  13395. },
  13396. {
  13397. name: "Playful Loom",
  13398. height: math.unit(80, "feet")
  13399. },
  13400. {
  13401. name: "City Leaner",
  13402. height: math.unit(230, "feet")
  13403. },
  13404. {
  13405. name: "Megamacro",
  13406. height: math.unit(2500, "feet")
  13407. },
  13408. {
  13409. name: "Gigamacro",
  13410. height: math.unit(26400, "feet")
  13411. },
  13412. {
  13413. name: "Tectonic Shifter",
  13414. height: math.unit(1.7, "megameters")
  13415. },
  13416. {
  13417. name: "Planet Carer",
  13418. height: math.unit(21, "megameters")
  13419. },
  13420. {
  13421. name: "God",
  13422. height: math.unit(11157.22, "parsecs")
  13423. },
  13424. ]
  13425. ))
  13426. characterMakers.push(() => makeCharacter(
  13427. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13428. {
  13429. front: {
  13430. height: math.unit(6, "feet"),
  13431. weight: math.unit(120, "lb"),
  13432. name: "Front",
  13433. image: {
  13434. source: "./media/characters/neo/front.svg"
  13435. }
  13436. },
  13437. },
  13438. [
  13439. {
  13440. name: "Micro",
  13441. height: math.unit(2, "inches"),
  13442. default: true
  13443. },
  13444. {
  13445. name: "Human Size",
  13446. height: math.unit(5 + 8 / 12, "feet")
  13447. },
  13448. ]
  13449. ))
  13450. characterMakers.push(() => makeCharacter(
  13451. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13452. {
  13453. front: {
  13454. height: math.unit(13 + 10 / 12, "feet"),
  13455. weight: math.unit(5320, "lb"),
  13456. name: "Front",
  13457. image: {
  13458. source: "./media/characters/chauncey-chantz/front.svg",
  13459. extra: 1587 / 1435,
  13460. bottom: 0.02
  13461. }
  13462. },
  13463. },
  13464. [
  13465. {
  13466. name: "Normal",
  13467. height: math.unit(13 + 10 / 12, "feet"),
  13468. default: true
  13469. },
  13470. {
  13471. name: "Macro",
  13472. height: math.unit(45, "feet")
  13473. },
  13474. {
  13475. name: "Megamacro",
  13476. height: math.unit(250, "miles")
  13477. },
  13478. {
  13479. name: "Planetary",
  13480. height: math.unit(10000, "miles")
  13481. },
  13482. {
  13483. name: "Galactic",
  13484. height: math.unit(40000, "parsecs")
  13485. },
  13486. {
  13487. name: "Universal",
  13488. height: math.unit(1, "yottameter")
  13489. },
  13490. ]
  13491. ))
  13492. characterMakers.push(() => makeCharacter(
  13493. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13494. {
  13495. front: {
  13496. height: math.unit(6, "feet"),
  13497. weight: math.unit(150, "lb"),
  13498. name: "Front",
  13499. image: {
  13500. source: "./media/characters/epifox/front.svg",
  13501. extra: 1,
  13502. bottom: 0.075
  13503. }
  13504. },
  13505. },
  13506. [
  13507. {
  13508. name: "Micro",
  13509. height: math.unit(6, "inches")
  13510. },
  13511. {
  13512. name: "Normal",
  13513. height: math.unit(12, "feet"),
  13514. default: true
  13515. },
  13516. {
  13517. name: "Macro",
  13518. height: math.unit(3810, "feet")
  13519. },
  13520. {
  13521. name: "Megamacro",
  13522. height: math.unit(500, "miles")
  13523. },
  13524. ]
  13525. ))
  13526. characterMakers.push(() => makeCharacter(
  13527. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13528. {
  13529. front: {
  13530. height: math.unit(1.8796, "m"),
  13531. weight: math.unit(230, "lb"),
  13532. name: "Front",
  13533. image: {
  13534. source: "./media/characters/colin-t/front.svg",
  13535. extra: 1272 / 1193,
  13536. bottom: 0.07
  13537. }
  13538. },
  13539. },
  13540. [
  13541. {
  13542. name: "Micro",
  13543. height: math.unit(0.571, "meters")
  13544. },
  13545. {
  13546. name: "Normal",
  13547. height: math.unit(1.8796, "meters"),
  13548. default: true
  13549. },
  13550. {
  13551. name: "Tall",
  13552. height: math.unit(4, "meters")
  13553. },
  13554. {
  13555. name: "Macro",
  13556. height: math.unit(67.241, "meters")
  13557. },
  13558. {
  13559. name: "Megamacro",
  13560. height: math.unit(371.856, "meters")
  13561. },
  13562. {
  13563. name: "Planetary",
  13564. height: math.unit(12631.5689, "km")
  13565. },
  13566. ]
  13567. ))
  13568. characterMakers.push(() => makeCharacter(
  13569. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13570. {
  13571. front: {
  13572. height: math.unit(1.85, "meters"),
  13573. weight: math.unit(80, "kg"),
  13574. name: "Front",
  13575. image: {
  13576. source: "./media/characters/matvei/front.svg",
  13577. extra: 456/447,
  13578. bottom: 8/464
  13579. }
  13580. },
  13581. back: {
  13582. height: math.unit(1.85, "meters"),
  13583. weight: math.unit(80, "kg"),
  13584. name: "Back",
  13585. image: {
  13586. source: "./media/characters/matvei/back.svg",
  13587. extra: 434/427,
  13588. bottom: 11/445
  13589. }
  13590. },
  13591. },
  13592. [
  13593. {
  13594. name: "Normal",
  13595. height: math.unit(1.85, "meters"),
  13596. default: true
  13597. },
  13598. ]
  13599. ))
  13600. characterMakers.push(() => makeCharacter(
  13601. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13602. {
  13603. front: {
  13604. height: math.unit(5 + 9 / 12, "feet"),
  13605. weight: math.unit(70, "lb"),
  13606. name: "Front",
  13607. image: {
  13608. source: "./media/characters/quincy/front.svg",
  13609. extra: 3041 / 2751
  13610. }
  13611. },
  13612. back: {
  13613. height: math.unit(5 + 9 / 12, "feet"),
  13614. weight: math.unit(70, "lb"),
  13615. name: "Back",
  13616. image: {
  13617. source: "./media/characters/quincy/back.svg",
  13618. extra: 3041 / 2751
  13619. }
  13620. },
  13621. flying: {
  13622. height: math.unit(5 + 4 / 12, "feet"),
  13623. weight: math.unit(70, "lb"),
  13624. name: "Flying",
  13625. image: {
  13626. source: "./media/characters/quincy/flying.svg",
  13627. extra: 1044 / 930
  13628. }
  13629. },
  13630. },
  13631. [
  13632. {
  13633. name: "Micro",
  13634. height: math.unit(3, "cm")
  13635. },
  13636. {
  13637. name: "Normal",
  13638. height: math.unit(5 + 9 / 12, "feet")
  13639. },
  13640. {
  13641. name: "Macro",
  13642. height: math.unit(200, "meters"),
  13643. default: true
  13644. },
  13645. {
  13646. name: "Megamacro",
  13647. height: math.unit(1000, "meters")
  13648. },
  13649. ]
  13650. ))
  13651. characterMakers.push(() => makeCharacter(
  13652. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13653. {
  13654. front: {
  13655. height: math.unit(3 + 11/12, "feet"),
  13656. weight: math.unit(50, "lb"),
  13657. name: "Front",
  13658. image: {
  13659. source: "./media/characters/vanrel/front.svg",
  13660. extra: 1104/949,
  13661. bottom: 52/1156
  13662. }
  13663. },
  13664. back: {
  13665. height: math.unit(3 + 11/12, "feet"),
  13666. weight: math.unit(50, "lb"),
  13667. name: "Back",
  13668. image: {
  13669. source: "./media/characters/vanrel/back.svg",
  13670. extra: 1119/976,
  13671. bottom: 37/1156
  13672. }
  13673. },
  13674. tome: {
  13675. height: math.unit(1.35, "feet"),
  13676. weight: math.unit(10, "lb"),
  13677. name: "Vanrel's Tome",
  13678. rename: true,
  13679. image: {
  13680. source: "./media/characters/vanrel/tome.svg"
  13681. }
  13682. },
  13683. beans: {
  13684. height: math.unit(0.89, "feet"),
  13685. name: "Beans",
  13686. image: {
  13687. source: "./media/characters/vanrel/beans.svg"
  13688. }
  13689. },
  13690. },
  13691. [
  13692. {
  13693. name: "Normal",
  13694. height: math.unit(3 + 11/12, "feet"),
  13695. default: true
  13696. },
  13697. ]
  13698. ))
  13699. characterMakers.push(() => makeCharacter(
  13700. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13701. {
  13702. front: {
  13703. height: math.unit(7 + 5 / 12, "feet"),
  13704. name: "Front",
  13705. image: {
  13706. source: "./media/characters/kuiper-vanrel/front.svg",
  13707. extra: 1219/1169,
  13708. bottom: 69/1288
  13709. }
  13710. },
  13711. back: {
  13712. height: math.unit(7 + 5 / 12, "feet"),
  13713. name: "Back",
  13714. image: {
  13715. source: "./media/characters/kuiper-vanrel/back.svg",
  13716. extra: 1236/1193,
  13717. bottom: 27/1263
  13718. }
  13719. },
  13720. foot: {
  13721. height: math.unit(0.55, "meters"),
  13722. name: "Foot",
  13723. image: {
  13724. source: "./media/characters/kuiper-vanrel/foot.svg",
  13725. }
  13726. },
  13727. battle: {
  13728. height: math.unit(6.824, "feet"),
  13729. name: "Battle",
  13730. image: {
  13731. source: "./media/characters/kuiper-vanrel/battle.svg",
  13732. extra: 1466 / 1327,
  13733. bottom: 29 / 1492.5
  13734. }
  13735. },
  13736. meerkui: {
  13737. height: math.unit(18, "inches"),
  13738. name: "Meerkui",
  13739. image: {
  13740. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13741. extra: 1354/1289,
  13742. bottom: 69/1423
  13743. }
  13744. },
  13745. },
  13746. [
  13747. {
  13748. name: "Normal",
  13749. height: math.unit(7 + 5 / 12, "feet"),
  13750. default: true
  13751. },
  13752. ]
  13753. ))
  13754. characterMakers.push(() => makeCharacter(
  13755. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13756. {
  13757. front: {
  13758. height: math.unit(8 + 5 / 12, "feet"),
  13759. name: "Front",
  13760. image: {
  13761. source: "./media/characters/keset-vanrel/front.svg",
  13762. extra: 1231/1148,
  13763. bottom: 82/1313
  13764. }
  13765. },
  13766. back: {
  13767. height: math.unit(8 + 5 / 12, "feet"),
  13768. name: "Back",
  13769. image: {
  13770. source: "./media/characters/keset-vanrel/back.svg",
  13771. extra: 1240/1174,
  13772. bottom: 33/1273
  13773. }
  13774. },
  13775. hand: {
  13776. height: math.unit(0.6, "meters"),
  13777. name: "Hand",
  13778. image: {
  13779. source: "./media/characters/keset-vanrel/hand.svg"
  13780. }
  13781. },
  13782. foot: {
  13783. height: math.unit(0.94978, "meters"),
  13784. name: "Foot",
  13785. image: {
  13786. source: "./media/characters/keset-vanrel/foot.svg"
  13787. }
  13788. },
  13789. battle: {
  13790. height: math.unit(7.408, "feet"),
  13791. name: "Battle",
  13792. image: {
  13793. source: "./media/characters/keset-vanrel/battle.svg",
  13794. extra: 1890 / 1386,
  13795. bottom: 73.28 / 1970
  13796. }
  13797. },
  13798. },
  13799. [
  13800. {
  13801. name: "Normal",
  13802. height: math.unit(8 + 5 / 12, "feet"),
  13803. default: true
  13804. },
  13805. ]
  13806. ))
  13807. characterMakers.push(() => makeCharacter(
  13808. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13809. {
  13810. front: {
  13811. height: math.unit(6, "feet"),
  13812. weight: math.unit(150, "lb"),
  13813. name: "Front",
  13814. image: {
  13815. source: "./media/characters/neos/front.svg",
  13816. extra: 1696 / 992,
  13817. bottom: 0.14
  13818. }
  13819. },
  13820. },
  13821. [
  13822. {
  13823. name: "Normal",
  13824. height: math.unit(54, "cm"),
  13825. default: true
  13826. },
  13827. {
  13828. name: "Macro",
  13829. height: math.unit(100, "m")
  13830. },
  13831. {
  13832. name: "Megamacro",
  13833. height: math.unit(10, "km")
  13834. },
  13835. {
  13836. name: "Megamacro+",
  13837. height: math.unit(100, "km")
  13838. },
  13839. {
  13840. name: "Gigamacro",
  13841. height: math.unit(100, "Mm")
  13842. },
  13843. {
  13844. name: "Teramacro",
  13845. height: math.unit(100, "Gm")
  13846. },
  13847. {
  13848. name: "Examacro",
  13849. height: math.unit(100, "Em")
  13850. },
  13851. {
  13852. name: "Godly",
  13853. height: math.unit(10000, "Ym")
  13854. },
  13855. {
  13856. name: "Beyond Godly",
  13857. height: math.unit(25, "multiverses")
  13858. },
  13859. ]
  13860. ))
  13861. characterMakers.push(() => makeCharacter(
  13862. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13863. {
  13864. feminine: {
  13865. height: math.unit(5, "feet"),
  13866. weight: math.unit(100, "lb"),
  13867. name: "Feminine",
  13868. image: {
  13869. source: "./media/characters/sammy-mouse/feminine.svg",
  13870. extra: 2526 / 2425,
  13871. bottom: 0.123
  13872. }
  13873. },
  13874. masculine: {
  13875. height: math.unit(5, "feet"),
  13876. weight: math.unit(100, "lb"),
  13877. name: "Masculine",
  13878. image: {
  13879. source: "./media/characters/sammy-mouse/masculine.svg",
  13880. extra: 2526 / 2425,
  13881. bottom: 0.123
  13882. }
  13883. },
  13884. },
  13885. [
  13886. {
  13887. name: "Micro",
  13888. height: math.unit(5, "inches")
  13889. },
  13890. {
  13891. name: "Normal",
  13892. height: math.unit(5, "feet"),
  13893. default: true
  13894. },
  13895. {
  13896. name: "Macro",
  13897. height: math.unit(60, "feet")
  13898. },
  13899. ]
  13900. ))
  13901. characterMakers.push(() => makeCharacter(
  13902. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13903. {
  13904. front: {
  13905. height: math.unit(4, "feet"),
  13906. weight: math.unit(50, "lb"),
  13907. name: "Front",
  13908. image: {
  13909. source: "./media/characters/kole/front.svg",
  13910. extra: 1423 / 1303,
  13911. bottom: 0.025
  13912. }
  13913. },
  13914. back: {
  13915. height: math.unit(4, "feet"),
  13916. weight: math.unit(50, "lb"),
  13917. name: "Back",
  13918. image: {
  13919. source: "./media/characters/kole/back.svg",
  13920. extra: 1426 / 1280,
  13921. bottom: 0.02
  13922. }
  13923. },
  13924. },
  13925. [
  13926. {
  13927. name: "Normal",
  13928. height: math.unit(4, "feet"),
  13929. default: true
  13930. },
  13931. ]
  13932. ))
  13933. characterMakers.push(() => makeCharacter(
  13934. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13935. {
  13936. front: {
  13937. height: math.unit(2.5, "feet"),
  13938. weight: math.unit(32, "lb"),
  13939. name: "Front",
  13940. image: {
  13941. source: "./media/characters/rufran/front.svg",
  13942. extra: 1313/885,
  13943. bottom: 94/1407
  13944. }
  13945. },
  13946. side: {
  13947. height: math.unit(2.5, "feet"),
  13948. weight: math.unit(32, "lb"),
  13949. name: "Side",
  13950. image: {
  13951. source: "./media/characters/rufran/side.svg",
  13952. extra: 1109/852,
  13953. bottom: 118/1227
  13954. }
  13955. },
  13956. back: {
  13957. height: math.unit(2.5, "feet"),
  13958. weight: math.unit(32, "lb"),
  13959. name: "Back",
  13960. image: {
  13961. source: "./media/characters/rufran/back.svg",
  13962. extra: 1280/878,
  13963. bottom: 131/1411
  13964. }
  13965. },
  13966. mouth: {
  13967. height: math.unit(1.13, "feet"),
  13968. name: "Mouth",
  13969. image: {
  13970. source: "./media/characters/rufran/mouth.svg"
  13971. }
  13972. },
  13973. foot: {
  13974. height: math.unit(1.33, "feet"),
  13975. name: "Foot",
  13976. image: {
  13977. source: "./media/characters/rufran/foot.svg"
  13978. }
  13979. },
  13980. koboldFront: {
  13981. height: math.unit(2 + 6 / 12, "feet"),
  13982. weight: math.unit(20, "lb"),
  13983. name: "Front (Kobold)",
  13984. image: {
  13985. source: "./media/characters/rufran/kobold-front.svg",
  13986. extra: 2041 / 1839,
  13987. bottom: 0.055
  13988. }
  13989. },
  13990. koboldBack: {
  13991. height: math.unit(2 + 6 / 12, "feet"),
  13992. weight: math.unit(20, "lb"),
  13993. name: "Back (Kobold)",
  13994. image: {
  13995. source: "./media/characters/rufran/kobold-back.svg",
  13996. extra: 2054 / 1839,
  13997. bottom: 0.01
  13998. }
  13999. },
  14000. koboldHand: {
  14001. height: math.unit(0.2166, "meters"),
  14002. name: "Hand (Kobold)",
  14003. image: {
  14004. source: "./media/characters/rufran/kobold-hand.svg"
  14005. }
  14006. },
  14007. koboldFoot: {
  14008. height: math.unit(0.185, "meters"),
  14009. name: "Foot (Kobold)",
  14010. image: {
  14011. source: "./media/characters/rufran/kobold-foot.svg"
  14012. }
  14013. },
  14014. },
  14015. [
  14016. {
  14017. name: "Micro",
  14018. height: math.unit(1, "inch")
  14019. },
  14020. {
  14021. name: "Normal",
  14022. height: math.unit(2 + 6 / 12, "feet"),
  14023. default: true
  14024. },
  14025. {
  14026. name: "Big",
  14027. height: math.unit(60, "feet")
  14028. },
  14029. {
  14030. name: "Macro",
  14031. height: math.unit(325, "feet")
  14032. },
  14033. ]
  14034. ))
  14035. characterMakers.push(() => makeCharacter(
  14036. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  14037. {
  14038. front: {
  14039. height: math.unit(0.3, "meters"),
  14040. weight: math.unit(3.5, "kg"),
  14041. name: "Front",
  14042. image: {
  14043. source: "./media/characters/chip/front.svg",
  14044. extra: 748 / 674
  14045. }
  14046. },
  14047. },
  14048. [
  14049. {
  14050. name: "Micro",
  14051. height: math.unit(1, "inch"),
  14052. default: true
  14053. },
  14054. ]
  14055. ))
  14056. characterMakers.push(() => makeCharacter(
  14057. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  14058. {
  14059. side: {
  14060. height: math.unit(2.3, "meters"),
  14061. weight: math.unit(3500, "lb"),
  14062. name: "Side",
  14063. image: {
  14064. source: "./media/characters/torvid/side.svg",
  14065. extra: 1972 / 722,
  14066. bottom: 0.035
  14067. }
  14068. },
  14069. },
  14070. [
  14071. {
  14072. name: "Normal",
  14073. height: math.unit(2.3, "meters"),
  14074. default: true
  14075. },
  14076. ]
  14077. ))
  14078. characterMakers.push(() => makeCharacter(
  14079. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  14080. {
  14081. front: {
  14082. height: math.unit(2, "meters"),
  14083. weight: math.unit(150.5, "kg"),
  14084. name: "Front",
  14085. image: {
  14086. source: "./media/characters/susan/front.svg",
  14087. extra: 693 / 635,
  14088. bottom: 0.05
  14089. }
  14090. },
  14091. },
  14092. [
  14093. {
  14094. name: "Megamacro",
  14095. height: math.unit(505, "miles"),
  14096. default: true
  14097. },
  14098. ]
  14099. ))
  14100. characterMakers.push(() => makeCharacter(
  14101. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  14102. {
  14103. front: {
  14104. height: math.unit(6, "feet"),
  14105. weight: math.unit(150, "lb"),
  14106. name: "Front",
  14107. image: {
  14108. source: "./media/characters/raindrops/front.svg",
  14109. extra: 2655 / 2461,
  14110. bottom: 49 / 2705
  14111. }
  14112. },
  14113. back: {
  14114. height: math.unit(6, "feet"),
  14115. weight: math.unit(150, "lb"),
  14116. name: "Back",
  14117. image: {
  14118. source: "./media/characters/raindrops/back.svg",
  14119. extra: 2574 / 2400,
  14120. bottom: 65 / 2634
  14121. }
  14122. },
  14123. },
  14124. [
  14125. {
  14126. name: "Micro",
  14127. height: math.unit(6, "inches")
  14128. },
  14129. {
  14130. name: "Normal",
  14131. height: math.unit(6 + 2 / 12, "feet")
  14132. },
  14133. {
  14134. name: "Macro",
  14135. height: math.unit(131, "feet"),
  14136. default: true
  14137. },
  14138. {
  14139. name: "Megamacro",
  14140. height: math.unit(15, "miles")
  14141. },
  14142. {
  14143. name: "Gigamacro",
  14144. height: math.unit(4000, "miles")
  14145. },
  14146. {
  14147. name: "Teramacro",
  14148. height: math.unit(315000, "miles")
  14149. },
  14150. ]
  14151. ))
  14152. characterMakers.push(() => makeCharacter(
  14153. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  14154. {
  14155. front: {
  14156. height: math.unit(2.794, "meters"),
  14157. weight: math.unit(325, "kg"),
  14158. name: "Front",
  14159. image: {
  14160. source: "./media/characters/tezwa/front.svg",
  14161. extra: 2083 / 1906,
  14162. bottom: 0.031
  14163. }
  14164. },
  14165. foot: {
  14166. height: math.unit(0.687, "meters"),
  14167. name: "Foot",
  14168. image: {
  14169. source: "./media/characters/tezwa/foot.svg"
  14170. }
  14171. },
  14172. },
  14173. [
  14174. {
  14175. name: "Normal",
  14176. height: math.unit(9 + 2 / 12, "feet"),
  14177. default: true
  14178. },
  14179. ]
  14180. ))
  14181. characterMakers.push(() => makeCharacter(
  14182. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  14183. {
  14184. front: {
  14185. height: math.unit(58, "feet"),
  14186. weight: math.unit(89000, "lb"),
  14187. name: "Front",
  14188. image: {
  14189. source: "./media/characters/typhus/front.svg",
  14190. extra: 816 / 800,
  14191. bottom: 0.065
  14192. }
  14193. },
  14194. },
  14195. [
  14196. {
  14197. name: "Macro",
  14198. height: math.unit(58, "feet"),
  14199. default: true
  14200. },
  14201. ]
  14202. ))
  14203. characterMakers.push(() => makeCharacter(
  14204. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14205. {
  14206. front: {
  14207. height: math.unit(12, "feet"),
  14208. weight: math.unit(6, "tonnes"),
  14209. name: "Front",
  14210. image: {
  14211. source: "./media/characters/lyra-von-wulf/front.svg",
  14212. extra: 1,
  14213. bottom: 0.10
  14214. }
  14215. },
  14216. frontMecha: {
  14217. height: math.unit(12, "feet"),
  14218. weight: math.unit(12, "tonnes"),
  14219. name: "Front (Mecha)",
  14220. image: {
  14221. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14222. extra: 1,
  14223. bottom: 0.042
  14224. }
  14225. },
  14226. maw: {
  14227. height: math.unit(2.2, "feet"),
  14228. name: "Maw",
  14229. image: {
  14230. source: "./media/characters/lyra-von-wulf/maw.svg"
  14231. }
  14232. },
  14233. },
  14234. [
  14235. {
  14236. name: "Normal",
  14237. height: math.unit(12, "feet"),
  14238. default: true
  14239. },
  14240. {
  14241. name: "Classic",
  14242. height: math.unit(50, "feet")
  14243. },
  14244. {
  14245. name: "Macro",
  14246. height: math.unit(500, "feet")
  14247. },
  14248. {
  14249. name: "Megamacro",
  14250. height: math.unit(1, "mile")
  14251. },
  14252. {
  14253. name: "Gigamacro",
  14254. height: math.unit(400, "miles")
  14255. },
  14256. {
  14257. name: "Teramacro",
  14258. height: math.unit(22000, "miles")
  14259. },
  14260. {
  14261. name: "Solarmacro",
  14262. height: math.unit(8600000, "miles")
  14263. },
  14264. {
  14265. name: "Galactic",
  14266. height: math.unit(1057000, "lightyears")
  14267. },
  14268. ]
  14269. ))
  14270. characterMakers.push(() => makeCharacter(
  14271. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14272. {
  14273. front: {
  14274. height: math.unit(6 + 10 / 12, "feet"),
  14275. weight: math.unit(150, "lb"),
  14276. name: "Front",
  14277. image: {
  14278. source: "./media/characters/dixon/front.svg",
  14279. extra: 3361 / 3209,
  14280. bottom: 0.01
  14281. }
  14282. },
  14283. },
  14284. [
  14285. {
  14286. name: "Normal",
  14287. height: math.unit(6 + 10 / 12, "feet"),
  14288. default: true
  14289. },
  14290. {
  14291. name: "Big",
  14292. height: math.unit(12, "meters")
  14293. },
  14294. {
  14295. name: "Macro",
  14296. height: math.unit(500, "meters")
  14297. },
  14298. {
  14299. name: "Megamacro",
  14300. height: math.unit(2, "km")
  14301. },
  14302. ]
  14303. ))
  14304. characterMakers.push(() => makeCharacter(
  14305. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  14306. {
  14307. front: {
  14308. height: math.unit(185, "cm"),
  14309. weight: math.unit(68, "kg"),
  14310. name: "Front",
  14311. image: {
  14312. source: "./media/characters/kauko/front.svg",
  14313. extra: 1455 / 1421,
  14314. bottom: 0.03
  14315. }
  14316. },
  14317. back: {
  14318. height: math.unit(185, "cm"),
  14319. weight: math.unit(68, "kg"),
  14320. name: "Back",
  14321. image: {
  14322. source: "./media/characters/kauko/back.svg",
  14323. extra: 1455 / 1421,
  14324. bottom: 0.004
  14325. }
  14326. },
  14327. },
  14328. [
  14329. {
  14330. name: "Normal",
  14331. height: math.unit(185, "cm"),
  14332. default: true
  14333. },
  14334. ]
  14335. ))
  14336. characterMakers.push(() => makeCharacter(
  14337. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14338. {
  14339. frontSfw: {
  14340. height: math.unit(5, "meters"),
  14341. weight: math.unit(4250, "lb"),
  14342. name: "Front",
  14343. image: {
  14344. source: "./media/characters/varg/front-sfw.svg",
  14345. extra: 1103/1010,
  14346. bottom: 50/1153
  14347. },
  14348. form: "anthro",
  14349. default: true
  14350. },
  14351. backSfw: {
  14352. height: math.unit(5, "meters"),
  14353. weight: math.unit(4250, "lb"),
  14354. name: "Back",
  14355. image: {
  14356. source: "./media/characters/varg/back-sfw.svg",
  14357. extra: 1038/1022,
  14358. bottom: 36/1074
  14359. },
  14360. form: "anthro"
  14361. },
  14362. frontNsfw: {
  14363. height: math.unit(5, "meters"),
  14364. weight: math.unit(4250, "lb"),
  14365. name: "Front (NSFW)",
  14366. image: {
  14367. source: "./media/characters/varg/front-nsfw.svg",
  14368. extra: 1103/1010,
  14369. bottom: 50/1153
  14370. },
  14371. form: "anthro"
  14372. },
  14373. sheath: {
  14374. height: math.unit(3.8, "feet"),
  14375. weight: math.unit(90, "kilograms"),
  14376. name: "Sheath",
  14377. image: {
  14378. source: "./media/characters/varg/sheath.svg"
  14379. },
  14380. form: "anthro"
  14381. },
  14382. dick: {
  14383. height: math.unit(4.6, "feet"),
  14384. weight: math.unit(451, "kilograms"),
  14385. name: "Dick",
  14386. image: {
  14387. source: "./media/characters/varg/dick.svg"
  14388. },
  14389. form: "anthro"
  14390. },
  14391. feralSfw: {
  14392. height: math.unit(5, "meters"),
  14393. weight: math.unit(100000, "lb"),
  14394. name: "Side",
  14395. image: {
  14396. source: "./media/characters/varg/feral-sfw.svg",
  14397. extra: 1065/511,
  14398. bottom: 211/1276
  14399. },
  14400. form: "feral",
  14401. default: true
  14402. },
  14403. feralNsfw: {
  14404. height: math.unit(5, "meters"),
  14405. weight: math.unit(100000, "lb"),
  14406. name: "Side (NSFW)",
  14407. image: {
  14408. source: "./media/characters/varg/feral-nsfw.svg",
  14409. extra: 1065/511,
  14410. bottom: 211/1276
  14411. },
  14412. form: "feral",
  14413. },
  14414. feralSheath: {
  14415. height: math.unit(9.8, "feet"),
  14416. weight: math.unit(2000, "kilograms"),
  14417. name: "Sheath",
  14418. image: {
  14419. source: "./media/characters/varg/sheath.svg"
  14420. },
  14421. form: "feral"
  14422. },
  14423. feralDick: {
  14424. height: math.unit(13.11, "feet"),
  14425. weight: math.unit(10440, "kilograms"),
  14426. name: "Dick",
  14427. image: {
  14428. source: "./media/characters/varg/dick.svg"
  14429. },
  14430. form: "feral"
  14431. },
  14432. },
  14433. [
  14434. {
  14435. name: "Normal",
  14436. height: math.unit(5, "meters"),
  14437. form: "anthro"
  14438. },
  14439. {
  14440. name: "Macro",
  14441. height: math.unit(200, "meters"),
  14442. form: "anthro"
  14443. },
  14444. {
  14445. name: "Megamacro",
  14446. height: math.unit(20, "kilometers"),
  14447. form: "anthro"
  14448. },
  14449. {
  14450. name: "True Size",
  14451. height: math.unit(211, "km"),
  14452. form: "anthro",
  14453. default: true
  14454. },
  14455. {
  14456. name: "Gigamacro",
  14457. height: math.unit(1000, "km"),
  14458. form: "anthro"
  14459. },
  14460. {
  14461. name: "Gigamacro+",
  14462. height: math.unit(8000, "km"),
  14463. form: "anthro"
  14464. },
  14465. {
  14466. name: "Teramacro",
  14467. height: math.unit(1000000, "km"),
  14468. form: "anthro"
  14469. },
  14470. {
  14471. name: "Normal",
  14472. height: math.unit(5, "meters"),
  14473. form: "feral"
  14474. },
  14475. {
  14476. name: "Macro",
  14477. height: math.unit(200, "meters"),
  14478. form: "feral"
  14479. },
  14480. {
  14481. name: "Megamacro",
  14482. height: math.unit(20, "kilometers"),
  14483. form: "feral"
  14484. },
  14485. {
  14486. name: "True Size",
  14487. height: math.unit(211, "km"),
  14488. form: "feral",
  14489. default: true
  14490. },
  14491. {
  14492. name: "Gigamacro",
  14493. height: math.unit(1000, "km"),
  14494. form: "feral"
  14495. },
  14496. {
  14497. name: "Gigamacro+",
  14498. height: math.unit(8000, "km"),
  14499. form: "feral"
  14500. },
  14501. {
  14502. name: "Teramacro",
  14503. height: math.unit(1000000, "km"),
  14504. form: "feral"
  14505. },
  14506. ],
  14507. {
  14508. "anthro": {
  14509. name: "Anthro",
  14510. default: true
  14511. },
  14512. "feral": {
  14513. name: "Feral",
  14514. },
  14515. }
  14516. ))
  14517. characterMakers.push(() => makeCharacter(
  14518. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14519. {
  14520. front: {
  14521. height: math.unit(7 + 7 / 12, "feet"),
  14522. weight: math.unit(267, "lb"),
  14523. name: "Front",
  14524. image: {
  14525. source: "./media/characters/dayza/front.svg",
  14526. extra: 1262 / 1200,
  14527. bottom: 0.035
  14528. }
  14529. },
  14530. side: {
  14531. height: math.unit(7 + 7 / 12, "feet"),
  14532. weight: math.unit(267, "lb"),
  14533. name: "Side",
  14534. image: {
  14535. source: "./media/characters/dayza/side.svg",
  14536. extra: 1295 / 1245,
  14537. bottom: 0.05
  14538. }
  14539. },
  14540. back: {
  14541. height: math.unit(7 + 7 / 12, "feet"),
  14542. weight: math.unit(267, "lb"),
  14543. name: "Back",
  14544. image: {
  14545. source: "./media/characters/dayza/back.svg",
  14546. extra: 1241 / 1170
  14547. }
  14548. },
  14549. },
  14550. [
  14551. {
  14552. name: "Normal",
  14553. height: math.unit(7 + 7 / 12, "feet"),
  14554. default: true
  14555. },
  14556. {
  14557. name: "Macro",
  14558. height: math.unit(155, "feet")
  14559. },
  14560. ]
  14561. ))
  14562. characterMakers.push(() => makeCharacter(
  14563. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14564. {
  14565. front: {
  14566. height: math.unit(6 + 5 / 12, "feet"),
  14567. weight: math.unit(160, "lb"),
  14568. name: "Front",
  14569. image: {
  14570. source: "./media/characters/xanthos/front.svg",
  14571. extra: 1,
  14572. bottom: 0.04
  14573. }
  14574. },
  14575. back: {
  14576. height: math.unit(6 + 5 / 12, "feet"),
  14577. weight: math.unit(160, "lb"),
  14578. name: "Back",
  14579. image: {
  14580. source: "./media/characters/xanthos/back.svg",
  14581. extra: 1,
  14582. bottom: 0.03
  14583. }
  14584. },
  14585. hand: {
  14586. height: math.unit(0.928, "feet"),
  14587. name: "Hand",
  14588. image: {
  14589. source: "./media/characters/xanthos/hand.svg"
  14590. }
  14591. },
  14592. foot: {
  14593. height: math.unit(1.286, "feet"),
  14594. name: "Foot",
  14595. image: {
  14596. source: "./media/characters/xanthos/foot.svg"
  14597. }
  14598. },
  14599. },
  14600. [
  14601. {
  14602. name: "Normal",
  14603. height: math.unit(6 + 5 / 12, "feet"),
  14604. default: true
  14605. },
  14606. {
  14607. name: "Normal+",
  14608. height: math.unit(6, "meters")
  14609. },
  14610. {
  14611. name: "Macro",
  14612. height: math.unit(40, "feet")
  14613. },
  14614. {
  14615. name: "Macro+",
  14616. height: math.unit(200, "meters")
  14617. },
  14618. {
  14619. name: "Megamacro",
  14620. height: math.unit(20, "km")
  14621. },
  14622. {
  14623. name: "Megamacro+",
  14624. height: math.unit(100, "km")
  14625. },
  14626. {
  14627. name: "Gigamacro",
  14628. height: math.unit(200, "megameters")
  14629. },
  14630. {
  14631. name: "Gigamacro+",
  14632. height: math.unit(1.5, "gigameters")
  14633. },
  14634. ]
  14635. ))
  14636. characterMakers.push(() => makeCharacter(
  14637. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14638. {
  14639. front: {
  14640. height: math.unit(6 + 3 / 12, "feet"),
  14641. weight: math.unit(215, "lb"),
  14642. name: "Front",
  14643. image: {
  14644. source: "./media/characters/grynn/front.svg",
  14645. extra: 4627 / 4209,
  14646. bottom: 0.047
  14647. }
  14648. },
  14649. },
  14650. [
  14651. {
  14652. name: "Micro",
  14653. height: math.unit(6, "inches")
  14654. },
  14655. {
  14656. name: "Normal",
  14657. height: math.unit(6 + 3 / 12, "feet"),
  14658. default: true
  14659. },
  14660. {
  14661. name: "Big",
  14662. height: math.unit(104, "feet")
  14663. },
  14664. {
  14665. name: "Macro",
  14666. height: math.unit(944, "feet")
  14667. },
  14668. {
  14669. name: "Macro+",
  14670. height: math.unit(9480, "feet")
  14671. },
  14672. {
  14673. name: "Megamacro",
  14674. height: math.unit(78752, "feet")
  14675. },
  14676. {
  14677. name: "Megamacro+",
  14678. height: math.unit(630128, "feet")
  14679. },
  14680. {
  14681. name: "Megamacro++",
  14682. height: math.unit(3150695, "feet")
  14683. },
  14684. ]
  14685. ))
  14686. characterMakers.push(() => makeCharacter(
  14687. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14688. {
  14689. front: {
  14690. height: math.unit(7 + 5 / 12, "feet"),
  14691. weight: math.unit(450, "lb"),
  14692. name: "Front",
  14693. image: {
  14694. source: "./media/characters/mocha-aura/front.svg",
  14695. extra: 1907 / 1817,
  14696. bottom: 0.04
  14697. }
  14698. },
  14699. back: {
  14700. height: math.unit(7 + 5 / 12, "feet"),
  14701. weight: math.unit(450, "lb"),
  14702. name: "Back",
  14703. image: {
  14704. source: "./media/characters/mocha-aura/back.svg",
  14705. extra: 1900 / 1825,
  14706. bottom: 0.045
  14707. }
  14708. },
  14709. },
  14710. [
  14711. {
  14712. name: "Nano",
  14713. height: math.unit(1, "nm")
  14714. },
  14715. {
  14716. name: "Megamicro",
  14717. height: math.unit(1, "mm")
  14718. },
  14719. {
  14720. name: "Micro",
  14721. height: math.unit(3, "inches")
  14722. },
  14723. {
  14724. name: "Normal",
  14725. height: math.unit(7 + 5 / 12, "feet"),
  14726. default: true
  14727. },
  14728. {
  14729. name: "Macro",
  14730. height: math.unit(30, "feet")
  14731. },
  14732. {
  14733. name: "Megamacro",
  14734. height: math.unit(3500, "feet")
  14735. },
  14736. {
  14737. name: "Teramacro",
  14738. height: math.unit(500000, "miles")
  14739. },
  14740. {
  14741. name: "Petamacro",
  14742. height: math.unit(50000000000000000, "parsecs")
  14743. },
  14744. ]
  14745. ))
  14746. characterMakers.push(() => makeCharacter(
  14747. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14748. {
  14749. front: {
  14750. height: math.unit(6, "feet"),
  14751. weight: math.unit(150, "lb"),
  14752. name: "Front",
  14753. image: {
  14754. source: "./media/characters/ilisha-devya/front.svg",
  14755. extra: 1053/1049,
  14756. bottom: 270/1323
  14757. }
  14758. },
  14759. back: {
  14760. height: math.unit(6, "feet"),
  14761. weight: math.unit(150, "lb"),
  14762. name: "Back",
  14763. image: {
  14764. source: "./media/characters/ilisha-devya/back.svg",
  14765. extra: 1131/1128,
  14766. bottom: 39/1170
  14767. }
  14768. },
  14769. },
  14770. [
  14771. {
  14772. name: "Macro",
  14773. height: math.unit(500, "feet"),
  14774. default: true
  14775. },
  14776. {
  14777. name: "Megamacro",
  14778. height: math.unit(10, "miles")
  14779. },
  14780. {
  14781. name: "Gigamacro",
  14782. height: math.unit(100000, "miles")
  14783. },
  14784. {
  14785. name: "Examacro",
  14786. height: math.unit(1e9, "lightyears")
  14787. },
  14788. {
  14789. name: "Omniversal",
  14790. height: math.unit(1e33, "lightyears")
  14791. },
  14792. {
  14793. name: "Beyond Infinite",
  14794. height: math.unit(1e100, "lightyears")
  14795. },
  14796. ]
  14797. ))
  14798. characterMakers.push(() => makeCharacter(
  14799. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14800. {
  14801. Side: {
  14802. height: math.unit(6, "feet"),
  14803. weight: math.unit(150, "lb"),
  14804. name: "Side",
  14805. image: {
  14806. source: "./media/characters/mira/side.svg",
  14807. extra: 900 / 799,
  14808. bottom: 0.02
  14809. }
  14810. },
  14811. },
  14812. [
  14813. {
  14814. name: "Human Size",
  14815. height: math.unit(6, "feet")
  14816. },
  14817. {
  14818. name: "Macro",
  14819. height: math.unit(100, "feet"),
  14820. default: true
  14821. },
  14822. {
  14823. name: "Megamacro",
  14824. height: math.unit(10, "miles")
  14825. },
  14826. {
  14827. name: "Gigamacro",
  14828. height: math.unit(25000, "miles")
  14829. },
  14830. {
  14831. name: "Teramacro",
  14832. height: math.unit(300, "AU")
  14833. },
  14834. {
  14835. name: "Full Size",
  14836. height: math.unit(4.5e10, "lightyears")
  14837. },
  14838. ]
  14839. ))
  14840. characterMakers.push(() => makeCharacter(
  14841. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14842. {
  14843. front: {
  14844. height: math.unit(6, "feet"),
  14845. weight: math.unit(150, "lb"),
  14846. name: "Front",
  14847. image: {
  14848. source: "./media/characters/holly/front.svg",
  14849. extra: 639 / 606
  14850. }
  14851. },
  14852. back: {
  14853. height: math.unit(6, "feet"),
  14854. weight: math.unit(150, "lb"),
  14855. name: "Back",
  14856. image: {
  14857. source: "./media/characters/holly/back.svg",
  14858. extra: 623 / 598
  14859. }
  14860. },
  14861. frontWorking: {
  14862. height: math.unit(6, "feet"),
  14863. weight: math.unit(150, "lb"),
  14864. name: "Front (Working)",
  14865. image: {
  14866. source: "./media/characters/holly/front-working.svg",
  14867. extra: 607 / 577,
  14868. bottom: 0.048
  14869. }
  14870. },
  14871. },
  14872. [
  14873. {
  14874. name: "Normal",
  14875. height: math.unit(12 + 3 / 12, "feet"),
  14876. default: true
  14877. },
  14878. ]
  14879. ))
  14880. characterMakers.push(() => makeCharacter(
  14881. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14882. {
  14883. front: {
  14884. height: math.unit(6, "feet"),
  14885. weight: math.unit(150, "lb"),
  14886. name: "Front",
  14887. image: {
  14888. source: "./media/characters/porter/front.svg",
  14889. extra: 1,
  14890. bottom: 0.01
  14891. }
  14892. },
  14893. frontRobes: {
  14894. height: math.unit(6, "feet"),
  14895. weight: math.unit(150, "lb"),
  14896. name: "Front (Robes)",
  14897. image: {
  14898. source: "./media/characters/porter/front-robes.svg",
  14899. extra: 1.01,
  14900. bottom: 0.01
  14901. }
  14902. },
  14903. },
  14904. [
  14905. {
  14906. name: "Normal",
  14907. height: math.unit(11 + 9 / 12, "feet"),
  14908. default: true
  14909. },
  14910. ]
  14911. ))
  14912. characterMakers.push(() => makeCharacter(
  14913. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14914. {
  14915. legendary: {
  14916. height: math.unit(6, "feet"),
  14917. weight: math.unit(150, "lb"),
  14918. name: "Legendary",
  14919. image: {
  14920. source: "./media/characters/lucy/legendary.svg",
  14921. extra: 1355 / 1100,
  14922. bottom: 0.045
  14923. }
  14924. },
  14925. },
  14926. [
  14927. {
  14928. name: "Legendary",
  14929. height: math.unit(86882 * 2, "miles"),
  14930. default: true
  14931. },
  14932. ]
  14933. ))
  14934. characterMakers.push(() => makeCharacter(
  14935. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14936. {
  14937. front: {
  14938. height: math.unit(6, "feet"),
  14939. weight: math.unit(150, "lb"),
  14940. name: "Front",
  14941. image: {
  14942. source: "./media/characters/drusilla/front.svg",
  14943. extra: 678 / 635,
  14944. bottom: 0.03
  14945. }
  14946. },
  14947. back: {
  14948. height: math.unit(6, "feet"),
  14949. weight: math.unit(150, "lb"),
  14950. name: "Back",
  14951. image: {
  14952. source: "./media/characters/drusilla/back.svg",
  14953. extra: 678 / 635,
  14954. bottom: 0.005
  14955. }
  14956. },
  14957. },
  14958. [
  14959. {
  14960. name: "Macro",
  14961. height: math.unit(100, "feet")
  14962. },
  14963. {
  14964. name: "Canon Height",
  14965. height: math.unit(2000, "feet"),
  14966. default: true
  14967. },
  14968. ]
  14969. ))
  14970. characterMakers.push(() => makeCharacter(
  14971. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14972. {
  14973. front: {
  14974. height: math.unit(6, "feet"),
  14975. weight: math.unit(180, "lb"),
  14976. name: "Front",
  14977. image: {
  14978. source: "./media/characters/renard-thatch/front.svg",
  14979. extra: 2411 / 2275,
  14980. bottom: 0.01
  14981. }
  14982. },
  14983. frontPosing: {
  14984. height: math.unit(6, "feet"),
  14985. weight: math.unit(180, "lb"),
  14986. name: "Front (Posing)",
  14987. image: {
  14988. source: "./media/characters/renard-thatch/front-posing.svg",
  14989. extra: 2381 / 2261,
  14990. bottom: 0.01
  14991. }
  14992. },
  14993. back: {
  14994. height: math.unit(6, "feet"),
  14995. weight: math.unit(180, "lb"),
  14996. name: "Back",
  14997. image: {
  14998. source: "./media/characters/renard-thatch/back.svg",
  14999. extra: 2428 / 2288
  15000. }
  15001. },
  15002. },
  15003. [
  15004. {
  15005. name: "Micro",
  15006. height: math.unit(3, "inches")
  15007. },
  15008. {
  15009. name: "Default",
  15010. height: math.unit(6, "feet"),
  15011. default: true
  15012. },
  15013. {
  15014. name: "Macro",
  15015. height: math.unit(75, "feet")
  15016. },
  15017. ]
  15018. ))
  15019. characterMakers.push(() => makeCharacter(
  15020. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  15021. {
  15022. front: {
  15023. height: math.unit(1450, "feet"),
  15024. weight: math.unit(1.21e6, "tons"),
  15025. name: "Front",
  15026. image: {
  15027. source: "./media/characters/sekvra/front.svg",
  15028. extra: 1193/1190,
  15029. bottom: 78/1271
  15030. }
  15031. },
  15032. side: {
  15033. height: math.unit(1450, "feet"),
  15034. weight: math.unit(1.21e6, "tons"),
  15035. name: "Side",
  15036. image: {
  15037. source: "./media/characters/sekvra/side.svg",
  15038. extra: 1193/1190,
  15039. bottom: 52/1245
  15040. }
  15041. },
  15042. back: {
  15043. height: math.unit(1450, "feet"),
  15044. weight: math.unit(1.21e6, "tons"),
  15045. name: "Back",
  15046. image: {
  15047. source: "./media/characters/sekvra/back.svg",
  15048. extra: 1219/1216,
  15049. bottom: 21/1240
  15050. }
  15051. },
  15052. frontClothed: {
  15053. height: math.unit(1450, "feet"),
  15054. weight: math.unit(1.21e6, "tons"),
  15055. name: "Front (Clothed)",
  15056. image: {
  15057. source: "./media/characters/sekvra/front-clothed.svg",
  15058. extra: 1192/1189,
  15059. bottom: 79/1271
  15060. }
  15061. },
  15062. },
  15063. [
  15064. {
  15065. name: "Macro",
  15066. height: math.unit(1450, "feet"),
  15067. default: true
  15068. },
  15069. {
  15070. name: "Megamacro",
  15071. height: math.unit(15000, "feet")
  15072. },
  15073. ]
  15074. ))
  15075. characterMakers.push(() => makeCharacter(
  15076. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  15077. {
  15078. front: {
  15079. height: math.unit(6, "feet"),
  15080. weight: math.unit(150, "lb"),
  15081. name: "Front",
  15082. image: {
  15083. source: "./media/characters/carmine/front.svg",
  15084. extra: 1557/1538,
  15085. bottom: 68/1625
  15086. }
  15087. },
  15088. frontArmor: {
  15089. height: math.unit(6, "feet"),
  15090. weight: math.unit(150, "lb"),
  15091. name: "Front (Armor)",
  15092. image: {
  15093. source: "./media/characters/carmine/front-armor.svg",
  15094. extra: 1549/1530,
  15095. bottom: 82/1631
  15096. }
  15097. },
  15098. mouth: {
  15099. height: math.unit(0.55, "feet"),
  15100. name: "Mouth",
  15101. image: {
  15102. source: "./media/characters/carmine/mouth.svg"
  15103. }
  15104. },
  15105. hand: {
  15106. height: math.unit(1.05, "feet"),
  15107. name: "Hand",
  15108. image: {
  15109. source: "./media/characters/carmine/hand.svg"
  15110. }
  15111. },
  15112. foot: {
  15113. height: math.unit(0.6, "feet"),
  15114. name: "Foot",
  15115. image: {
  15116. source: "./media/characters/carmine/foot.svg"
  15117. }
  15118. },
  15119. },
  15120. [
  15121. {
  15122. name: "Large",
  15123. height: math.unit(1, "mile")
  15124. },
  15125. {
  15126. name: "Huge",
  15127. height: math.unit(40, "miles"),
  15128. default: true
  15129. },
  15130. {
  15131. name: "Colossal",
  15132. height: math.unit(2500, "miles")
  15133. },
  15134. ]
  15135. ))
  15136. characterMakers.push(() => makeCharacter(
  15137. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  15138. {
  15139. front: {
  15140. height: math.unit(6, "feet"),
  15141. weight: math.unit(150, "lb"),
  15142. name: "Front",
  15143. image: {
  15144. source: "./media/characters/elyssia/front.svg",
  15145. extra: 2201 / 2035,
  15146. bottom: 0.05
  15147. }
  15148. },
  15149. frontClothed: {
  15150. height: math.unit(6, "feet"),
  15151. weight: math.unit(150, "lb"),
  15152. name: "Front (Clothed)",
  15153. image: {
  15154. source: "./media/characters/elyssia/front-clothed.svg",
  15155. extra: 2201 / 2035,
  15156. bottom: 0.05
  15157. }
  15158. },
  15159. back: {
  15160. height: math.unit(6, "feet"),
  15161. weight: math.unit(150, "lb"),
  15162. name: "Back",
  15163. image: {
  15164. source: "./media/characters/elyssia/back.svg",
  15165. extra: 2201 / 2035,
  15166. bottom: 0.013
  15167. }
  15168. },
  15169. },
  15170. [
  15171. {
  15172. name: "Smaller",
  15173. height: math.unit(150, "feet")
  15174. },
  15175. {
  15176. name: "Standard",
  15177. height: math.unit(1400, "feet"),
  15178. default: true
  15179. },
  15180. {
  15181. name: "Distracted",
  15182. height: math.unit(15000, "feet")
  15183. },
  15184. ]
  15185. ))
  15186. characterMakers.push(() => makeCharacter(
  15187. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  15188. {
  15189. front: {
  15190. height: math.unit(7 + 4/12, "feet"),
  15191. weight: math.unit(690, "lb"),
  15192. name: "Front",
  15193. image: {
  15194. source: "./media/characters/geno-maxwell/front.svg",
  15195. extra: 984/856,
  15196. bottom: 87/1071
  15197. }
  15198. },
  15199. back: {
  15200. height: math.unit(7 + 4/12, "feet"),
  15201. weight: math.unit(690, "lb"),
  15202. name: "Back",
  15203. image: {
  15204. source: "./media/characters/geno-maxwell/back.svg",
  15205. extra: 981/854,
  15206. bottom: 57/1038
  15207. }
  15208. },
  15209. frontCostume: {
  15210. height: math.unit(7 + 4/12, "feet"),
  15211. weight: math.unit(690, "lb"),
  15212. name: "Front (Costume)",
  15213. image: {
  15214. source: "./media/characters/geno-maxwell/front-costume.svg",
  15215. extra: 984/856,
  15216. bottom: 87/1071
  15217. }
  15218. },
  15219. backcostume: {
  15220. height: math.unit(7 + 4/12, "feet"),
  15221. weight: math.unit(690, "lb"),
  15222. name: "Back (Costume)",
  15223. image: {
  15224. source: "./media/characters/geno-maxwell/back-costume.svg",
  15225. extra: 981/854,
  15226. bottom: 57/1038
  15227. }
  15228. },
  15229. },
  15230. [
  15231. {
  15232. name: "Micro",
  15233. height: math.unit(3, "inches")
  15234. },
  15235. {
  15236. name: "Normal",
  15237. height: math.unit(7 + 4 / 12, "feet"),
  15238. default: true
  15239. },
  15240. {
  15241. name: "Macro",
  15242. height: math.unit(220, "feet")
  15243. },
  15244. {
  15245. name: "Megamacro",
  15246. height: math.unit(11, "miles")
  15247. },
  15248. ]
  15249. ))
  15250. characterMakers.push(() => makeCharacter(
  15251. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15252. {
  15253. front: {
  15254. height: math.unit(7 + 4/12, "feet"),
  15255. weight: math.unit(750, "lb"),
  15256. name: "Front",
  15257. image: {
  15258. source: "./media/characters/regena-maxwell/front.svg",
  15259. extra: 984/856,
  15260. bottom: 87/1071
  15261. }
  15262. },
  15263. back: {
  15264. height: math.unit(7 + 4/12, "feet"),
  15265. weight: math.unit(750, "lb"),
  15266. name: "Back",
  15267. image: {
  15268. source: "./media/characters/regena-maxwell/back.svg",
  15269. extra: 981/854,
  15270. bottom: 57/1038
  15271. }
  15272. },
  15273. frontCostume: {
  15274. height: math.unit(7 + 4/12, "feet"),
  15275. weight: math.unit(750, "lb"),
  15276. name: "Front (Costume)",
  15277. image: {
  15278. source: "./media/characters/regena-maxwell/front-costume.svg",
  15279. extra: 984/856,
  15280. bottom: 87/1071
  15281. }
  15282. },
  15283. backcostume: {
  15284. height: math.unit(7 + 4/12, "feet"),
  15285. weight: math.unit(750, "lb"),
  15286. name: "Back (Costume)",
  15287. image: {
  15288. source: "./media/characters/regena-maxwell/back-costume.svg",
  15289. extra: 981/854,
  15290. bottom: 57/1038
  15291. }
  15292. },
  15293. },
  15294. [
  15295. {
  15296. name: "Normal",
  15297. height: math.unit(7 + 4 / 12, "feet"),
  15298. default: true
  15299. },
  15300. {
  15301. name: "Macro",
  15302. height: math.unit(220, "feet")
  15303. },
  15304. {
  15305. name: "Megamacro",
  15306. height: math.unit(11, "miles")
  15307. },
  15308. ]
  15309. ))
  15310. characterMakers.push(() => makeCharacter(
  15311. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15312. {
  15313. front: {
  15314. height: math.unit(6, "feet"),
  15315. weight: math.unit(150, "lb"),
  15316. name: "Front",
  15317. image: {
  15318. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15319. extra: 860 / 690,
  15320. bottom: 0.03
  15321. }
  15322. },
  15323. },
  15324. [
  15325. {
  15326. name: "Normal",
  15327. height: math.unit(1.7, "meters"),
  15328. default: true
  15329. },
  15330. ]
  15331. ))
  15332. characterMakers.push(() => makeCharacter(
  15333. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15334. {
  15335. front: {
  15336. height: math.unit(6, "feet"),
  15337. weight: math.unit(150, "lb"),
  15338. name: "Front",
  15339. image: {
  15340. source: "./media/characters/quilly/front.svg",
  15341. extra: 890 / 776
  15342. }
  15343. },
  15344. },
  15345. [
  15346. {
  15347. name: "Gigamacro",
  15348. height: math.unit(404090, "miles"),
  15349. default: true
  15350. },
  15351. ]
  15352. ))
  15353. characterMakers.push(() => makeCharacter(
  15354. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15355. {
  15356. front: {
  15357. height: math.unit(7 + 8 / 12, "feet"),
  15358. weight: math.unit(350, "lb"),
  15359. name: "Front",
  15360. image: {
  15361. source: "./media/characters/tempest/front.svg",
  15362. extra: 1175 / 1086,
  15363. bottom: 0.02
  15364. }
  15365. },
  15366. },
  15367. [
  15368. {
  15369. name: "Normal",
  15370. height: math.unit(7 + 8 / 12, "feet"),
  15371. default: true
  15372. },
  15373. ]
  15374. ))
  15375. characterMakers.push(() => makeCharacter(
  15376. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15377. {
  15378. side: {
  15379. height: math.unit(4 + 5 / 12, "feet"),
  15380. weight: math.unit(80, "lb"),
  15381. name: "Side",
  15382. image: {
  15383. source: "./media/characters/rodger/side.svg",
  15384. extra: 1235 / 1118
  15385. }
  15386. },
  15387. },
  15388. [
  15389. {
  15390. name: "Micro",
  15391. height: math.unit(1, "inch")
  15392. },
  15393. {
  15394. name: "Normal",
  15395. height: math.unit(4 + 5 / 12, "feet"),
  15396. default: true
  15397. },
  15398. {
  15399. name: "Macro",
  15400. height: math.unit(120, "feet")
  15401. },
  15402. ]
  15403. ))
  15404. characterMakers.push(() => makeCharacter(
  15405. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15406. {
  15407. front: {
  15408. height: math.unit(6, "feet"),
  15409. weight: math.unit(150, "lb"),
  15410. name: "Front",
  15411. image: {
  15412. source: "./media/characters/danyel/front.svg",
  15413. extra: 1185 / 1123,
  15414. bottom: 0.05
  15415. }
  15416. },
  15417. },
  15418. [
  15419. {
  15420. name: "Shrunken",
  15421. height: math.unit(0.5, "mm")
  15422. },
  15423. {
  15424. name: "Micro",
  15425. height: math.unit(1, "mm"),
  15426. default: true
  15427. },
  15428. {
  15429. name: "Upsized",
  15430. height: math.unit(5 + 5 / 12, "feet")
  15431. },
  15432. ]
  15433. ))
  15434. characterMakers.push(() => makeCharacter(
  15435. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15436. {
  15437. front: {
  15438. height: math.unit(5 + 6 / 12, "feet"),
  15439. weight: math.unit(200, "lb"),
  15440. name: "Front",
  15441. image: {
  15442. source: "./media/characters/vivian-bijoux/front.svg",
  15443. extra: 1217/1209,
  15444. bottom: 76/1293
  15445. }
  15446. },
  15447. back: {
  15448. height: math.unit(5 + 6 / 12, "feet"),
  15449. weight: math.unit(200, "lb"),
  15450. name: "Back",
  15451. image: {
  15452. source: "./media/characters/vivian-bijoux/back.svg",
  15453. extra: 1214/1208,
  15454. bottom: 51/1265
  15455. }
  15456. },
  15457. dressed: {
  15458. height: math.unit(5 + 6 / 12, "feet"),
  15459. weight: math.unit(200, "lb"),
  15460. name: "Dressed",
  15461. image: {
  15462. source: "./media/characters/vivian-bijoux/dressed.svg",
  15463. extra: 1217/1209,
  15464. bottom: 76/1293
  15465. }
  15466. },
  15467. },
  15468. [
  15469. {
  15470. name: "Normal",
  15471. height: math.unit(5 + 6 / 12, "feet"),
  15472. default: true
  15473. },
  15474. {
  15475. name: "Bad Dream",
  15476. height: math.unit(500, "feet")
  15477. },
  15478. {
  15479. name: "Nightmare",
  15480. height: math.unit(500, "miles")
  15481. },
  15482. ]
  15483. ))
  15484. characterMakers.push(() => makeCharacter(
  15485. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15486. {
  15487. front: {
  15488. height: math.unit(6 + 1 / 12, "feet"),
  15489. weight: math.unit(260, "lb"),
  15490. name: "Front",
  15491. image: {
  15492. source: "./media/characters/zeta/front.svg",
  15493. extra: 1968 / 1889,
  15494. bottom: 0.06
  15495. }
  15496. },
  15497. back: {
  15498. height: math.unit(6 + 1 / 12, "feet"),
  15499. weight: math.unit(260, "lb"),
  15500. name: "Back",
  15501. image: {
  15502. source: "./media/characters/zeta/back.svg",
  15503. extra: 1944 / 1858,
  15504. bottom: 0.03
  15505. }
  15506. },
  15507. hand: {
  15508. height: math.unit(1.112, "feet"),
  15509. name: "Hand",
  15510. image: {
  15511. source: "./media/characters/zeta/hand.svg"
  15512. }
  15513. },
  15514. foot: {
  15515. height: math.unit(1.48, "feet"),
  15516. name: "Foot",
  15517. image: {
  15518. source: "./media/characters/zeta/foot.svg"
  15519. }
  15520. },
  15521. },
  15522. [
  15523. {
  15524. name: "Micro",
  15525. height: math.unit(6, "inches")
  15526. },
  15527. {
  15528. name: "Normal",
  15529. height: math.unit(6 + 1 / 12, "feet"),
  15530. default: true
  15531. },
  15532. {
  15533. name: "Macro",
  15534. height: math.unit(20, "feet")
  15535. },
  15536. ]
  15537. ))
  15538. characterMakers.push(() => makeCharacter(
  15539. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15540. {
  15541. front: {
  15542. height: math.unit(6, "feet"),
  15543. weight: math.unit(150, "lb"),
  15544. name: "Front",
  15545. image: {
  15546. source: "./media/characters/jamie-larsen/front.svg",
  15547. extra: 962 / 933,
  15548. bottom: 0.02
  15549. }
  15550. },
  15551. back: {
  15552. height: math.unit(6, "feet"),
  15553. weight: math.unit(150, "lb"),
  15554. name: "Back",
  15555. image: {
  15556. source: "./media/characters/jamie-larsen/back.svg",
  15557. extra: 997 / 946
  15558. }
  15559. },
  15560. },
  15561. [
  15562. {
  15563. name: "Macro",
  15564. height: math.unit(28 + 7 / 12, "feet"),
  15565. default: true
  15566. },
  15567. {
  15568. name: "Macro+",
  15569. height: math.unit(180, "feet")
  15570. },
  15571. {
  15572. name: "Megamacro",
  15573. height: math.unit(10, "miles")
  15574. },
  15575. {
  15576. name: "Gigamacro",
  15577. height: math.unit(200000, "miles")
  15578. },
  15579. ]
  15580. ))
  15581. characterMakers.push(() => makeCharacter(
  15582. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15583. {
  15584. front: {
  15585. height: math.unit(6, "feet"),
  15586. weight: math.unit(120, "lb"),
  15587. name: "Front",
  15588. image: {
  15589. source: "./media/characters/vance/front.svg",
  15590. extra: 1980 / 1890,
  15591. bottom: 0.09
  15592. }
  15593. },
  15594. back: {
  15595. height: math.unit(6, "feet"),
  15596. weight: math.unit(120, "lb"),
  15597. name: "Back",
  15598. image: {
  15599. source: "./media/characters/vance/back.svg",
  15600. extra: 2081 / 1994,
  15601. bottom: 0.014
  15602. }
  15603. },
  15604. hand: {
  15605. height: math.unit(0.88, "feet"),
  15606. name: "Hand",
  15607. image: {
  15608. source: "./media/characters/vance/hand.svg"
  15609. }
  15610. },
  15611. foot: {
  15612. height: math.unit(0.64, "feet"),
  15613. name: "Foot",
  15614. image: {
  15615. source: "./media/characters/vance/foot.svg"
  15616. }
  15617. },
  15618. },
  15619. [
  15620. {
  15621. name: "Small",
  15622. height: math.unit(90, "feet"),
  15623. default: true
  15624. },
  15625. {
  15626. name: "Macro",
  15627. height: math.unit(100, "meters")
  15628. },
  15629. {
  15630. name: "Megamacro",
  15631. height: math.unit(15, "miles")
  15632. },
  15633. ]
  15634. ))
  15635. characterMakers.push(() => makeCharacter(
  15636. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15637. {
  15638. front: {
  15639. height: math.unit(6, "feet"),
  15640. weight: math.unit(180, "lb"),
  15641. name: "Front",
  15642. image: {
  15643. source: "./media/characters/xochitl/front.svg",
  15644. extra: 2297 / 2261,
  15645. bottom: 0.065
  15646. }
  15647. },
  15648. back: {
  15649. height: math.unit(6, "feet"),
  15650. weight: math.unit(180, "lb"),
  15651. name: "Back",
  15652. image: {
  15653. source: "./media/characters/xochitl/back.svg",
  15654. extra: 2386 / 2354,
  15655. bottom: 0.01
  15656. }
  15657. },
  15658. foot: {
  15659. height: math.unit(6 / 5 * 1.15, "feet"),
  15660. weight: math.unit(150, "lb"),
  15661. name: "Foot",
  15662. image: {
  15663. source: "./media/characters/xochitl/foot.svg"
  15664. }
  15665. },
  15666. },
  15667. [
  15668. {
  15669. name: "Macro",
  15670. height: math.unit(80, "feet")
  15671. },
  15672. {
  15673. name: "Macro+",
  15674. height: math.unit(400, "feet"),
  15675. default: true
  15676. },
  15677. {
  15678. name: "Gigamacro",
  15679. height: math.unit(80000, "miles")
  15680. },
  15681. {
  15682. name: "Gigamacro+",
  15683. height: math.unit(400000, "miles")
  15684. },
  15685. {
  15686. name: "Teramacro",
  15687. height: math.unit(300, "AU")
  15688. },
  15689. ]
  15690. ))
  15691. characterMakers.push(() => makeCharacter(
  15692. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15693. {
  15694. front: {
  15695. height: math.unit(6, "feet"),
  15696. weight: math.unit(150, "lb"),
  15697. name: "Front",
  15698. image: {
  15699. source: "./media/characters/vincent/front.svg",
  15700. extra: 1130 / 1080,
  15701. bottom: 0.055
  15702. }
  15703. },
  15704. beak: {
  15705. height: math.unit(6 * 0.1, "feet"),
  15706. name: "Beak",
  15707. image: {
  15708. source: "./media/characters/vincent/beak.svg"
  15709. }
  15710. },
  15711. hand: {
  15712. height: math.unit(6 * 0.85, "feet"),
  15713. weight: math.unit(150, "lb"),
  15714. name: "Hand",
  15715. image: {
  15716. source: "./media/characters/vincent/hand.svg"
  15717. }
  15718. },
  15719. foot: {
  15720. height: math.unit(6 * 0.19, "feet"),
  15721. weight: math.unit(150, "lb"),
  15722. name: "Foot",
  15723. image: {
  15724. source: "./media/characters/vincent/foot.svg"
  15725. }
  15726. },
  15727. },
  15728. [
  15729. {
  15730. name: "Base",
  15731. height: math.unit(6 + 5 / 12, "feet"),
  15732. default: true
  15733. },
  15734. {
  15735. name: "Macro",
  15736. height: math.unit(300, "feet")
  15737. },
  15738. {
  15739. name: "Megamacro",
  15740. height: math.unit(2, "miles")
  15741. },
  15742. {
  15743. name: "Gigamacro",
  15744. height: math.unit(1000, "miles")
  15745. },
  15746. ]
  15747. ))
  15748. characterMakers.push(() => makeCharacter(
  15749. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15750. {
  15751. front: {
  15752. height: math.unit(2, "meters"),
  15753. weight: math.unit(500, "kg"),
  15754. name: "Front",
  15755. image: {
  15756. source: "./media/characters/coatl/front.svg",
  15757. extra: 3948 / 3500,
  15758. bottom: 0.082
  15759. }
  15760. },
  15761. },
  15762. [
  15763. {
  15764. name: "Normal",
  15765. height: math.unit(4, "meters")
  15766. },
  15767. {
  15768. name: "Macro",
  15769. height: math.unit(100, "meters"),
  15770. default: true
  15771. },
  15772. {
  15773. name: "Macro+",
  15774. height: math.unit(300, "meters")
  15775. },
  15776. {
  15777. name: "Megamacro",
  15778. height: math.unit(3, "gigameters")
  15779. },
  15780. {
  15781. name: "Megamacro+",
  15782. height: math.unit(300, "terameters")
  15783. },
  15784. {
  15785. name: "Megamacro++",
  15786. height: math.unit(3, "lightyears")
  15787. },
  15788. ]
  15789. ))
  15790. characterMakers.push(() => makeCharacter(
  15791. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15792. {
  15793. front: {
  15794. height: math.unit(6, "feet"),
  15795. weight: math.unit(50, "kg"),
  15796. name: "front",
  15797. image: {
  15798. source: "./media/characters/shiroryu/front.svg",
  15799. extra: 1990 / 1935
  15800. }
  15801. },
  15802. },
  15803. [
  15804. {
  15805. name: "Mortal Mingling",
  15806. height: math.unit(3, "meters")
  15807. },
  15808. {
  15809. name: "Kaiju-ish",
  15810. height: math.unit(250, "meters")
  15811. },
  15812. {
  15813. name: "Somewhat Godly",
  15814. height: math.unit(400, "km"),
  15815. default: true
  15816. },
  15817. {
  15818. name: "Planetary",
  15819. height: math.unit(300, "megameters")
  15820. },
  15821. {
  15822. name: "Galaxy-dwarfing",
  15823. height: math.unit(450, "kiloparsecs")
  15824. },
  15825. {
  15826. name: "Universe Eater",
  15827. height: math.unit(150, "gigaparsecs")
  15828. },
  15829. {
  15830. name: "Almost Immeasurable",
  15831. height: math.unit(1.3e266, "yottaparsecs")
  15832. },
  15833. ]
  15834. ))
  15835. characterMakers.push(() => makeCharacter(
  15836. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15837. {
  15838. front: {
  15839. height: math.unit(6, "feet"),
  15840. weight: math.unit(150, "lb"),
  15841. name: "Front",
  15842. image: {
  15843. source: "./media/characters/umeko/front.svg",
  15844. extra: 1,
  15845. bottom: 0.019
  15846. }
  15847. },
  15848. frontArmored: {
  15849. height: math.unit(6, "feet"),
  15850. weight: math.unit(150, "lb"),
  15851. name: "Front (Armored)",
  15852. image: {
  15853. source: "./media/characters/umeko/front-armored.svg",
  15854. extra: 1,
  15855. bottom: 0.021
  15856. }
  15857. },
  15858. },
  15859. [
  15860. {
  15861. name: "Macro",
  15862. height: math.unit(220, "feet"),
  15863. default: true
  15864. },
  15865. {
  15866. name: "Guardian Dragon",
  15867. height: math.unit(50, "miles")
  15868. },
  15869. {
  15870. name: "Cosmic",
  15871. height: math.unit(800000, "miles")
  15872. },
  15873. ]
  15874. ))
  15875. characterMakers.push(() => makeCharacter(
  15876. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15877. {
  15878. front: {
  15879. height: math.unit(6, "feet"),
  15880. weight: math.unit(150, "lb"),
  15881. name: "Front",
  15882. image: {
  15883. source: "./media/characters/cassidy/front.svg",
  15884. extra: 810/808,
  15885. bottom: 41/851
  15886. }
  15887. },
  15888. },
  15889. [
  15890. {
  15891. name: "Canon Height",
  15892. height: math.unit(120, "feet"),
  15893. default: true
  15894. },
  15895. {
  15896. name: "Macro+",
  15897. height: math.unit(400, "feet")
  15898. },
  15899. {
  15900. name: "Macro++",
  15901. height: math.unit(4000, "feet")
  15902. },
  15903. {
  15904. name: "Megamacro",
  15905. height: math.unit(3, "miles")
  15906. },
  15907. ]
  15908. ))
  15909. characterMakers.push(() => makeCharacter(
  15910. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15911. {
  15912. front: {
  15913. height: math.unit(6, "feet"),
  15914. weight: math.unit(150, "lb"),
  15915. name: "Front",
  15916. image: {
  15917. source: "./media/characters/isaac/front.svg",
  15918. extra: 896 / 815,
  15919. bottom: 0.11
  15920. }
  15921. },
  15922. },
  15923. [
  15924. {
  15925. name: "Human Size",
  15926. height: math.unit(8, "feet"),
  15927. default: true
  15928. },
  15929. {
  15930. name: "Macro",
  15931. height: math.unit(400, "feet")
  15932. },
  15933. {
  15934. name: "Megamacro",
  15935. height: math.unit(50, "miles")
  15936. },
  15937. {
  15938. name: "Canon Height",
  15939. height: math.unit(200, "AU")
  15940. },
  15941. ]
  15942. ))
  15943. characterMakers.push(() => makeCharacter(
  15944. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15945. {
  15946. front: {
  15947. height: math.unit(6, "feet"),
  15948. weight: math.unit(72, "kg"),
  15949. name: "Front",
  15950. image: {
  15951. source: "./media/characters/sleekit/front.svg",
  15952. extra: 4693 / 4487,
  15953. bottom: 0.012
  15954. }
  15955. },
  15956. },
  15957. [
  15958. {
  15959. name: "Minimum Height",
  15960. height: math.unit(10, "meters")
  15961. },
  15962. {
  15963. name: "Smaller",
  15964. height: math.unit(25, "meters")
  15965. },
  15966. {
  15967. name: "Larger",
  15968. height: math.unit(38, "meters"),
  15969. default: true
  15970. },
  15971. {
  15972. name: "Maximum height",
  15973. height: math.unit(100, "meters")
  15974. },
  15975. ]
  15976. ))
  15977. characterMakers.push(() => makeCharacter(
  15978. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15979. {
  15980. front: {
  15981. height: math.unit(6, "feet"),
  15982. weight: math.unit(150, "lb"),
  15983. name: "Front",
  15984. image: {
  15985. source: "./media/characters/nillia/front.svg",
  15986. extra: 719/665,
  15987. bottom: 6/725
  15988. }
  15989. },
  15990. back: {
  15991. height: math.unit(6, "feet"),
  15992. weight: math.unit(150, "lb"),
  15993. name: "Back",
  15994. image: {
  15995. source: "./media/characters/nillia/back.svg",
  15996. extra: 705/651,
  15997. bottom: 5/710
  15998. }
  15999. },
  16000. },
  16001. [
  16002. {
  16003. name: "Canon Height",
  16004. height: math.unit(489, "feet"),
  16005. default: true
  16006. }
  16007. ]
  16008. ))
  16009. characterMakers.push(() => makeCharacter(
  16010. { name: "Mesmyriza", species: ["shark", "dragon", "robot", "deity"], tags: ["anthro"] },
  16011. {
  16012. front: {
  16013. height: math.unit(6, "feet"),
  16014. weight: math.unit(150, "lb"),
  16015. name: "Front",
  16016. image: {
  16017. source: "./media/characters/mesmyriza/front.svg",
  16018. extra: 1541/1291,
  16019. bottom: 87/1628
  16020. }
  16021. },
  16022. foot: {
  16023. height: math.unit(6 / (250 / 35), "feet"),
  16024. name: "Foot",
  16025. image: {
  16026. source: "./media/characters/mesmyriza/foot.svg"
  16027. }
  16028. },
  16029. },
  16030. [
  16031. {
  16032. name: "Macro",
  16033. height: math.unit(457, "meters"),
  16034. default: true
  16035. },
  16036. {
  16037. name: "Megamacro",
  16038. height: math.unit(8, "megameters")
  16039. },
  16040. ]
  16041. ))
  16042. characterMakers.push(() => makeCharacter(
  16043. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  16044. {
  16045. front: {
  16046. height: math.unit(6, "feet"),
  16047. weight: math.unit(250, "lb"),
  16048. name: "Front",
  16049. image: {
  16050. source: "./media/characters/saudade/front.svg",
  16051. extra: 1172 / 1139,
  16052. bottom: 0.035
  16053. }
  16054. },
  16055. },
  16056. [
  16057. {
  16058. name: "Micro",
  16059. height: math.unit(3, "inches")
  16060. },
  16061. {
  16062. name: "Normal",
  16063. height: math.unit(6, "feet"),
  16064. default: true
  16065. },
  16066. {
  16067. name: "Macro",
  16068. height: math.unit(50, "feet")
  16069. },
  16070. {
  16071. name: "Megamacro",
  16072. height: math.unit(2800, "feet")
  16073. },
  16074. ]
  16075. ))
  16076. characterMakers.push(() => makeCharacter(
  16077. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  16078. {
  16079. front: {
  16080. height: math.unit(5 + 4 / 12, "feet"),
  16081. weight: math.unit(100, "lb"),
  16082. name: "Front",
  16083. image: {
  16084. source: "./media/characters/keireer/front.svg",
  16085. extra: 716 / 666,
  16086. bottom: 0.05
  16087. }
  16088. },
  16089. },
  16090. [
  16091. {
  16092. name: "Normal",
  16093. height: math.unit(5 + 4 / 12, "feet"),
  16094. default: true
  16095. },
  16096. ]
  16097. ))
  16098. characterMakers.push(() => makeCharacter(
  16099. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  16100. {
  16101. front: {
  16102. height: math.unit(5.5, "feet"),
  16103. weight: math.unit(90, "kg"),
  16104. name: "Front",
  16105. image: {
  16106. source: "./media/characters/mirja/front.svg",
  16107. extra: 1452/1262,
  16108. bottom: 67/1519
  16109. }
  16110. },
  16111. frontDressed: {
  16112. height: math.unit(5.5, "feet"),
  16113. weight: math.unit(90, "lb"),
  16114. name: "Front (Dressed)",
  16115. image: {
  16116. source: "./media/characters/mirja/dressed.svg",
  16117. extra: 1452/1262,
  16118. bottom: 67/1519
  16119. }
  16120. },
  16121. back: {
  16122. height: math.unit(6, "feet"),
  16123. weight: math.unit(90, "lb"),
  16124. name: "Back",
  16125. image: {
  16126. source: "./media/characters/mirja/back.svg",
  16127. extra: 1892/1795,
  16128. bottom: 48/1940
  16129. }
  16130. },
  16131. maw: {
  16132. height: math.unit(1.312, "feet"),
  16133. name: "Maw",
  16134. image: {
  16135. source: "./media/characters/mirja/maw.svg"
  16136. }
  16137. },
  16138. paw: {
  16139. height: math.unit(1.15, "feet"),
  16140. name: "Paw",
  16141. image: {
  16142. source: "./media/characters/mirja/paw.svg"
  16143. }
  16144. },
  16145. },
  16146. [
  16147. {
  16148. name: "\"Incognito\"",
  16149. height: math.unit(3, "meters")
  16150. },
  16151. {
  16152. name: "Strolling Size",
  16153. height: math.unit(15, "km")
  16154. },
  16155. {
  16156. name: "Larger Strolling Size",
  16157. height: math.unit(400, "km")
  16158. },
  16159. {
  16160. name: "Preferred Size",
  16161. height: math.unit(5000, "km"),
  16162. default: true
  16163. },
  16164. {
  16165. name: "True Size",
  16166. height: math.unit(30657809462086840000000000000000, "parsecs"),
  16167. },
  16168. ]
  16169. ))
  16170. characterMakers.push(() => makeCharacter(
  16171. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  16172. {
  16173. front: {
  16174. height: math.unit(15, "feet"),
  16175. weight: math.unit(880, "kg"),
  16176. name: "Front",
  16177. image: {
  16178. source: "./media/characters/nightraver/front.svg",
  16179. extra: 2444 / 2160,
  16180. bottom: 0.027
  16181. }
  16182. },
  16183. back: {
  16184. height: math.unit(15, "feet"),
  16185. weight: math.unit(880, "kg"),
  16186. name: "Back",
  16187. image: {
  16188. source: "./media/characters/nightraver/back.svg",
  16189. extra: 2309 / 2180,
  16190. bottom: 0.005
  16191. }
  16192. },
  16193. sole: {
  16194. height: math.unit(2.878, "feet"),
  16195. name: "Sole",
  16196. image: {
  16197. source: "./media/characters/nightraver/sole.svg"
  16198. }
  16199. },
  16200. foot: {
  16201. height: math.unit(2.285, "feet"),
  16202. name: "Foot",
  16203. image: {
  16204. source: "./media/characters/nightraver/foot.svg"
  16205. }
  16206. },
  16207. maw: {
  16208. height: math.unit(2.67, "feet"),
  16209. name: "Maw",
  16210. image: {
  16211. source: "./media/characters/nightraver/maw.svg"
  16212. }
  16213. },
  16214. },
  16215. [
  16216. {
  16217. name: "Micro",
  16218. height: math.unit(1, "cm")
  16219. },
  16220. {
  16221. name: "Normal",
  16222. height: math.unit(15, "feet"),
  16223. default: true
  16224. },
  16225. {
  16226. name: "Macro",
  16227. height: math.unit(300, "feet")
  16228. },
  16229. {
  16230. name: "Megamacro",
  16231. height: math.unit(300, "miles")
  16232. },
  16233. {
  16234. name: "Gigamacro",
  16235. height: math.unit(10000, "miles")
  16236. },
  16237. ]
  16238. ))
  16239. characterMakers.push(() => makeCharacter(
  16240. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16241. {
  16242. side: {
  16243. height: math.unit(2, "inches"),
  16244. weight: math.unit(5, "grams"),
  16245. name: "Side",
  16246. image: {
  16247. source: "./media/characters/arc/side.svg"
  16248. }
  16249. },
  16250. },
  16251. [
  16252. {
  16253. name: "Micro",
  16254. height: math.unit(2, "inches"),
  16255. default: true
  16256. },
  16257. ]
  16258. ))
  16259. characterMakers.push(() => makeCharacter(
  16260. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16261. {
  16262. front: {
  16263. height: math.unit(1.1938, "meters"),
  16264. weight: math.unit(54, "kg"),
  16265. name: "Front",
  16266. image: {
  16267. source: "./media/characters/nebula-shahar/front.svg",
  16268. extra: 1642 / 1436,
  16269. bottom: 0.06
  16270. }
  16271. },
  16272. },
  16273. [
  16274. {
  16275. name: "Megamicro",
  16276. height: math.unit(0.3, "mm")
  16277. },
  16278. {
  16279. name: "Micro",
  16280. height: math.unit(3, "cm")
  16281. },
  16282. {
  16283. name: "Normal",
  16284. height: math.unit(138, "cm"),
  16285. default: true
  16286. },
  16287. {
  16288. name: "Macro",
  16289. height: math.unit(30, "m")
  16290. },
  16291. ]
  16292. ))
  16293. characterMakers.push(() => makeCharacter(
  16294. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16295. {
  16296. front: {
  16297. height: math.unit(5.24, "feet"),
  16298. weight: math.unit(150, "lb"),
  16299. name: "Front",
  16300. image: {
  16301. source: "./media/characters/shayla/front.svg",
  16302. extra: 1512 / 1414,
  16303. bottom: 0.01
  16304. }
  16305. },
  16306. back: {
  16307. height: math.unit(5.24, "feet"),
  16308. weight: math.unit(150, "lb"),
  16309. name: "Back",
  16310. image: {
  16311. source: "./media/characters/shayla/back.svg",
  16312. extra: 1512 / 1414
  16313. }
  16314. },
  16315. hand: {
  16316. height: math.unit(0.7781496062992126, "feet"),
  16317. name: "Hand",
  16318. image: {
  16319. source: "./media/characters/shayla/hand.svg"
  16320. }
  16321. },
  16322. foot: {
  16323. height: math.unit(1.4206036745406823, "feet"),
  16324. name: "Foot",
  16325. image: {
  16326. source: "./media/characters/shayla/foot.svg"
  16327. }
  16328. },
  16329. },
  16330. [
  16331. {
  16332. name: "Micro",
  16333. height: math.unit(0.32, "feet")
  16334. },
  16335. {
  16336. name: "Normal",
  16337. height: math.unit(5.24, "feet"),
  16338. default: true
  16339. },
  16340. {
  16341. name: "Macro",
  16342. height: math.unit(492.12, "feet")
  16343. },
  16344. {
  16345. name: "Megamacro",
  16346. height: math.unit(186.41, "miles")
  16347. },
  16348. ]
  16349. ))
  16350. characterMakers.push(() => makeCharacter(
  16351. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16352. {
  16353. front: {
  16354. height: math.unit(2.2, "m"),
  16355. weight: math.unit(120, "kg"),
  16356. name: "Front",
  16357. image: {
  16358. source: "./media/characters/pia-jr/front.svg",
  16359. extra: 1000 / 970,
  16360. bottom: 0.035
  16361. }
  16362. },
  16363. hand: {
  16364. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16365. name: "Hand",
  16366. image: {
  16367. source: "./media/characters/pia-jr/hand.svg"
  16368. }
  16369. },
  16370. paw: {
  16371. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16372. name: "Paw",
  16373. image: {
  16374. source: "./media/characters/pia-jr/paw.svg"
  16375. }
  16376. },
  16377. },
  16378. [
  16379. {
  16380. name: "Micro",
  16381. height: math.unit(1.2, "cm")
  16382. },
  16383. {
  16384. name: "Normal",
  16385. height: math.unit(2.2, "m"),
  16386. default: true
  16387. },
  16388. {
  16389. name: "Macro",
  16390. height: math.unit(180, "m")
  16391. },
  16392. {
  16393. name: "Megamacro",
  16394. height: math.unit(420, "km")
  16395. },
  16396. ]
  16397. ))
  16398. characterMakers.push(() => makeCharacter(
  16399. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16400. {
  16401. front: {
  16402. height: math.unit(2, "m"),
  16403. weight: math.unit(115, "kg"),
  16404. name: "Front",
  16405. image: {
  16406. source: "./media/characters/pia-sr/front.svg",
  16407. extra: 760 / 730,
  16408. bottom: 0.015
  16409. }
  16410. },
  16411. back: {
  16412. height: math.unit(2, "m"),
  16413. weight: math.unit(115, "kg"),
  16414. name: "Back",
  16415. image: {
  16416. source: "./media/characters/pia-sr/back.svg",
  16417. extra: 760 / 730,
  16418. bottom: 0.01
  16419. }
  16420. },
  16421. hand: {
  16422. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16423. name: "Hand",
  16424. image: {
  16425. source: "./media/characters/pia-sr/hand.svg"
  16426. }
  16427. },
  16428. foot: {
  16429. height: math.unit(1.83, "feet"),
  16430. name: "Foot",
  16431. image: {
  16432. source: "./media/characters/pia-sr/foot.svg"
  16433. }
  16434. },
  16435. },
  16436. [
  16437. {
  16438. name: "Micro",
  16439. height: math.unit(88, "mm")
  16440. },
  16441. {
  16442. name: "Normal",
  16443. height: math.unit(2, "m"),
  16444. default: true
  16445. },
  16446. {
  16447. name: "Macro",
  16448. height: math.unit(200, "m")
  16449. },
  16450. {
  16451. name: "Megamacro",
  16452. height: math.unit(420, "km")
  16453. },
  16454. ]
  16455. ))
  16456. characterMakers.push(() => makeCharacter(
  16457. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16458. {
  16459. front: {
  16460. height: math.unit(8 + 2 / 12, "feet"),
  16461. weight: math.unit(300, "lb"),
  16462. name: "Front",
  16463. image: {
  16464. source: "./media/characters/kibibyte/front.svg",
  16465. extra: 2221 / 2098,
  16466. bottom: 0.04
  16467. }
  16468. },
  16469. },
  16470. [
  16471. {
  16472. name: "Normal",
  16473. height: math.unit(8 + 2 / 12, "feet"),
  16474. default: true
  16475. },
  16476. {
  16477. name: "Socialable Macro",
  16478. height: math.unit(50, "feet")
  16479. },
  16480. {
  16481. name: "Macro",
  16482. height: math.unit(300, "feet")
  16483. },
  16484. {
  16485. name: "Megamacro",
  16486. height: math.unit(500, "miles")
  16487. },
  16488. ]
  16489. ))
  16490. characterMakers.push(() => makeCharacter(
  16491. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16492. {
  16493. front: {
  16494. height: math.unit(6, "feet"),
  16495. weight: math.unit(150, "lb"),
  16496. name: "Front",
  16497. image: {
  16498. source: "./media/characters/felix/front.svg",
  16499. extra: 762 / 722,
  16500. bottom: 0.02
  16501. }
  16502. },
  16503. frontClothed: {
  16504. height: math.unit(6, "feet"),
  16505. weight: math.unit(150, "lb"),
  16506. name: "Front (Clothed)",
  16507. image: {
  16508. source: "./media/characters/felix/front-clothed.svg",
  16509. extra: 762 / 722,
  16510. bottom: 0.02
  16511. }
  16512. },
  16513. },
  16514. [
  16515. {
  16516. name: "Normal",
  16517. height: math.unit(6 + 8 / 12, "feet"),
  16518. default: true
  16519. },
  16520. {
  16521. name: "Macro",
  16522. height: math.unit(2600, "feet")
  16523. },
  16524. {
  16525. name: "Megamacro",
  16526. height: math.unit(450, "miles")
  16527. },
  16528. ]
  16529. ))
  16530. characterMakers.push(() => makeCharacter(
  16531. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16532. {
  16533. front: {
  16534. height: math.unit(6 + 1 / 12, "feet"),
  16535. weight: math.unit(250, "lb"),
  16536. name: "Front",
  16537. image: {
  16538. source: "./media/characters/tobo/front.svg",
  16539. extra: 608 / 586,
  16540. bottom: 0.023
  16541. }
  16542. },
  16543. back: {
  16544. height: math.unit(6 + 1 / 12, "feet"),
  16545. weight: math.unit(250, "lb"),
  16546. name: "Back",
  16547. image: {
  16548. source: "./media/characters/tobo/back.svg",
  16549. extra: 608 / 586
  16550. }
  16551. },
  16552. },
  16553. [
  16554. {
  16555. name: "Nano",
  16556. height: math.unit(2, "nm")
  16557. },
  16558. {
  16559. name: "Megamicro",
  16560. height: math.unit(0.1, "mm")
  16561. },
  16562. {
  16563. name: "Micro",
  16564. height: math.unit(1, "inch"),
  16565. default: true
  16566. },
  16567. {
  16568. name: "Human-sized",
  16569. height: math.unit(6 + 1 / 12, "feet")
  16570. },
  16571. {
  16572. name: "Macro",
  16573. height: math.unit(250, "feet")
  16574. },
  16575. {
  16576. name: "Megamacro",
  16577. height: math.unit(75, "miles")
  16578. },
  16579. {
  16580. name: "Texas-sized",
  16581. height: math.unit(750, "miles")
  16582. },
  16583. {
  16584. name: "Teramacro",
  16585. height: math.unit(50000, "miles")
  16586. },
  16587. ]
  16588. ))
  16589. characterMakers.push(() => makeCharacter(
  16590. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16591. {
  16592. front: {
  16593. height: math.unit(6, "feet"),
  16594. weight: math.unit(269, "lb"),
  16595. name: "Front",
  16596. image: {
  16597. source: "./media/characters/danny-kapowsky/front.svg",
  16598. extra: 766 / 736,
  16599. bottom: 0.044
  16600. }
  16601. },
  16602. back: {
  16603. height: math.unit(6, "feet"),
  16604. weight: math.unit(269, "lb"),
  16605. name: "Back",
  16606. image: {
  16607. source: "./media/characters/danny-kapowsky/back.svg",
  16608. extra: 797 / 760,
  16609. bottom: 0.025
  16610. }
  16611. },
  16612. },
  16613. [
  16614. {
  16615. name: "Macro",
  16616. height: math.unit(150, "feet"),
  16617. default: true
  16618. },
  16619. {
  16620. name: "Macro+",
  16621. height: math.unit(200, "feet")
  16622. },
  16623. {
  16624. name: "Macro++",
  16625. height: math.unit(300, "feet")
  16626. },
  16627. {
  16628. name: "Macro+++",
  16629. height: math.unit(400, "feet")
  16630. },
  16631. ]
  16632. ))
  16633. characterMakers.push(() => makeCharacter(
  16634. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16635. {
  16636. side: {
  16637. height: math.unit(6, "feet"),
  16638. weight: math.unit(170, "lb"),
  16639. name: "Side",
  16640. image: {
  16641. source: "./media/characters/finn/side.svg",
  16642. extra: 1953 / 1807,
  16643. bottom: 0.057
  16644. }
  16645. },
  16646. },
  16647. [
  16648. {
  16649. name: "Megamacro",
  16650. height: math.unit(14445, "feet"),
  16651. default: true
  16652. },
  16653. ]
  16654. ))
  16655. characterMakers.push(() => makeCharacter(
  16656. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16657. {
  16658. front: {
  16659. height: math.unit(5 + 6 / 12, "feet"),
  16660. weight: math.unit(125, "lb"),
  16661. name: "Front",
  16662. image: {
  16663. source: "./media/characters/roy/front.svg",
  16664. extra: 1,
  16665. bottom: 0.11
  16666. }
  16667. },
  16668. },
  16669. [
  16670. {
  16671. name: "Micro",
  16672. height: math.unit(3, "inches"),
  16673. default: true
  16674. },
  16675. {
  16676. name: "Normal",
  16677. height: math.unit(5 + 6 / 12, "feet")
  16678. },
  16679. {
  16680. name: "Lesser Macro",
  16681. height: math.unit(60, "feet")
  16682. },
  16683. {
  16684. name: "Greater Macro",
  16685. height: math.unit(120, "feet")
  16686. },
  16687. ]
  16688. ))
  16689. characterMakers.push(() => makeCharacter(
  16690. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16691. {
  16692. front: {
  16693. height: math.unit(6, "feet"),
  16694. weight: math.unit(100, "lb"),
  16695. name: "Front",
  16696. image: {
  16697. source: "./media/characters/aevsivs/front.svg",
  16698. extra: 1,
  16699. bottom: 0.03
  16700. }
  16701. },
  16702. back: {
  16703. height: math.unit(6, "feet"),
  16704. weight: math.unit(100, "lb"),
  16705. name: "Back",
  16706. image: {
  16707. source: "./media/characters/aevsivs/back.svg"
  16708. }
  16709. },
  16710. },
  16711. [
  16712. {
  16713. name: "Micro",
  16714. height: math.unit(2, "inches"),
  16715. default: true
  16716. },
  16717. {
  16718. name: "Normal",
  16719. height: math.unit(5, "feet")
  16720. },
  16721. ]
  16722. ))
  16723. characterMakers.push(() => makeCharacter(
  16724. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16725. {
  16726. front: {
  16727. height: math.unit(5 + 7 / 12, "feet"),
  16728. weight: math.unit(159, "lb"),
  16729. name: "Front",
  16730. image: {
  16731. source: "./media/characters/hildegard/front.svg",
  16732. extra: 289 / 269,
  16733. bottom: 7.63 / 297.8
  16734. }
  16735. },
  16736. back: {
  16737. height: math.unit(5 + 7 / 12, "feet"),
  16738. weight: math.unit(159, "lb"),
  16739. name: "Back",
  16740. image: {
  16741. source: "./media/characters/hildegard/back.svg",
  16742. extra: 280 / 260,
  16743. bottom: 2.3 / 282
  16744. }
  16745. },
  16746. },
  16747. [
  16748. {
  16749. name: "Normal",
  16750. height: math.unit(5 + 7 / 12, "feet"),
  16751. default: true
  16752. },
  16753. ]
  16754. ))
  16755. characterMakers.push(() => makeCharacter(
  16756. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16757. {
  16758. bernard: {
  16759. height: math.unit(2 + 7 / 12, "feet"),
  16760. weight: math.unit(66, "lb"),
  16761. name: "Bernard",
  16762. rename: true,
  16763. image: {
  16764. source: "./media/characters/bernard-wilder/bernard.svg",
  16765. extra: 192 / 128,
  16766. bottom: 0.05
  16767. }
  16768. },
  16769. wilder: {
  16770. height: math.unit(5 + 8 / 12, "feet"),
  16771. weight: math.unit(143, "lb"),
  16772. name: "Wilder",
  16773. rename: true,
  16774. image: {
  16775. source: "./media/characters/bernard-wilder/wilder.svg",
  16776. extra: 361 / 312,
  16777. bottom: 0.02
  16778. }
  16779. },
  16780. },
  16781. [
  16782. {
  16783. name: "Normal",
  16784. height: math.unit(2 + 7 / 12, "feet"),
  16785. default: true
  16786. },
  16787. ]
  16788. ))
  16789. characterMakers.push(() => makeCharacter(
  16790. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16791. {
  16792. anthro: {
  16793. height: math.unit(6 + 1 / 12, "feet"),
  16794. weight: math.unit(155, "lb"),
  16795. name: "Anthro",
  16796. image: {
  16797. source: "./media/characters/hearth/anthro.svg",
  16798. extra: 1178/1136,
  16799. bottom: 28/1206
  16800. }
  16801. },
  16802. feral: {
  16803. height: math.unit(3.78, "feet"),
  16804. weight: math.unit(35, "kg"),
  16805. name: "Feral",
  16806. image: {
  16807. source: "./media/characters/hearth/feral.svg",
  16808. extra: 153 / 135,
  16809. bottom: 0.03
  16810. }
  16811. },
  16812. },
  16813. [
  16814. {
  16815. name: "Normal",
  16816. height: math.unit(6 + 1 / 12, "feet"),
  16817. default: true
  16818. },
  16819. ]
  16820. ))
  16821. characterMakers.push(() => makeCharacter(
  16822. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16823. {
  16824. front: {
  16825. height: math.unit(6, "feet"),
  16826. weight: math.unit(182, "lb"),
  16827. name: "Front",
  16828. image: {
  16829. source: "./media/characters/ingrid/front.svg",
  16830. extra: 294 / 268,
  16831. bottom: 0.027
  16832. }
  16833. },
  16834. },
  16835. [
  16836. {
  16837. name: "Normal",
  16838. height: math.unit(6, "feet"),
  16839. default: true
  16840. },
  16841. ]
  16842. ))
  16843. characterMakers.push(() => makeCharacter(
  16844. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16845. {
  16846. eevee: {
  16847. height: math.unit(2 + 10 / 12, "feet"),
  16848. weight: math.unit(86, "lb"),
  16849. name: "Malgam",
  16850. image: {
  16851. source: "./media/characters/malgam/eevee.svg",
  16852. extra: 952/784,
  16853. bottom: 38/990
  16854. }
  16855. },
  16856. sylveon: {
  16857. height: math.unit(4, "feet"),
  16858. weight: math.unit(101, "lb"),
  16859. name: "Future Malgam",
  16860. rename: true,
  16861. image: {
  16862. source: "./media/characters/malgam/sylveon.svg",
  16863. extra: 371 / 325,
  16864. bottom: 0.015
  16865. }
  16866. },
  16867. gigantamax: {
  16868. height: math.unit(50, "feet"),
  16869. name: "Gigantamax Malgam",
  16870. rename: true,
  16871. image: {
  16872. source: "./media/characters/malgam/gigantamax.svg"
  16873. }
  16874. },
  16875. },
  16876. [
  16877. {
  16878. name: "Normal",
  16879. height: math.unit(2 + 10 / 12, "feet"),
  16880. default: true
  16881. },
  16882. ]
  16883. ))
  16884. characterMakers.push(() => makeCharacter(
  16885. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16886. {
  16887. front: {
  16888. height: math.unit(5 + 11 / 12, "feet"),
  16889. weight: math.unit(188, "lb"),
  16890. name: "Front",
  16891. image: {
  16892. source: "./media/characters/fleur/front.svg",
  16893. extra: 309 / 283,
  16894. bottom: 0.007
  16895. }
  16896. },
  16897. },
  16898. [
  16899. {
  16900. name: "Normal",
  16901. height: math.unit(5 + 11 / 12, "feet"),
  16902. default: true
  16903. },
  16904. ]
  16905. ))
  16906. characterMakers.push(() => makeCharacter(
  16907. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16908. {
  16909. front: {
  16910. height: math.unit(5 + 4 / 12, "feet"),
  16911. weight: math.unit(122, "lb"),
  16912. name: "Front",
  16913. image: {
  16914. source: "./media/characters/jude/front.svg",
  16915. extra: 288 / 273,
  16916. bottom: 0.03
  16917. }
  16918. },
  16919. },
  16920. [
  16921. {
  16922. name: "Normal",
  16923. height: math.unit(5 + 4 / 12, "feet"),
  16924. default: true
  16925. },
  16926. ]
  16927. ))
  16928. characterMakers.push(() => makeCharacter(
  16929. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16930. {
  16931. front: {
  16932. height: math.unit(5 + 11 / 12, "feet"),
  16933. weight: math.unit(190, "lb"),
  16934. name: "Front",
  16935. image: {
  16936. source: "./media/characters/seara/front.svg",
  16937. extra: 1,
  16938. bottom: 0.05
  16939. }
  16940. },
  16941. },
  16942. [
  16943. {
  16944. name: "Normal",
  16945. height: math.unit(5 + 11 / 12, "feet"),
  16946. default: true
  16947. },
  16948. ]
  16949. ))
  16950. characterMakers.push(() => makeCharacter(
  16951. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16952. {
  16953. front: {
  16954. height: math.unit(16 + 5 / 12, "feet"),
  16955. weight: math.unit(524, "lb"),
  16956. name: "Front",
  16957. image: {
  16958. source: "./media/characters/caspian-lugia/front.svg",
  16959. extra: 1,
  16960. bottom: 0.04
  16961. }
  16962. },
  16963. },
  16964. [
  16965. {
  16966. name: "Normal",
  16967. height: math.unit(16 + 5 / 12, "feet"),
  16968. default: true
  16969. },
  16970. ]
  16971. ))
  16972. characterMakers.push(() => makeCharacter(
  16973. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16974. {
  16975. front: {
  16976. height: math.unit(5 + 7 / 12, "feet"),
  16977. weight: math.unit(170, "lb"),
  16978. name: "Front",
  16979. image: {
  16980. source: "./media/characters/mika/front.svg",
  16981. extra: 1,
  16982. bottom: 0.016
  16983. }
  16984. },
  16985. },
  16986. [
  16987. {
  16988. name: "Normal",
  16989. height: math.unit(5 + 7 / 12, "feet"),
  16990. default: true
  16991. },
  16992. ]
  16993. ))
  16994. characterMakers.push(() => makeCharacter(
  16995. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16996. {
  16997. front: {
  16998. height: math.unit(6 + 2 / 12, "feet"),
  16999. weight: math.unit(268, "lb"),
  17000. name: "Front",
  17001. image: {
  17002. source: "./media/characters/sol/front.svg",
  17003. extra: 247 / 231,
  17004. bottom: 0.05
  17005. }
  17006. },
  17007. },
  17008. [
  17009. {
  17010. name: "Normal",
  17011. height: math.unit(6 + 2 / 12, "feet"),
  17012. default: true
  17013. },
  17014. ]
  17015. ))
  17016. characterMakers.push(() => makeCharacter(
  17017. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  17018. {
  17019. buizel: {
  17020. height: math.unit(2 + 5 / 12, "feet"),
  17021. weight: math.unit(87, "lb"),
  17022. name: "Front",
  17023. image: {
  17024. source: "./media/characters/umiko/buizel.svg",
  17025. extra: 172 / 157,
  17026. bottom: 0.01
  17027. },
  17028. form: "buizel",
  17029. default: true
  17030. },
  17031. floatzel: {
  17032. height: math.unit(5 + 9 / 12, "feet"),
  17033. weight: math.unit(250, "lb"),
  17034. name: "Front",
  17035. image: {
  17036. source: "./media/characters/umiko/floatzel.svg",
  17037. extra: 1076/1006,
  17038. bottom: 15/1091
  17039. },
  17040. form: "floatzel",
  17041. default: true
  17042. },
  17043. },
  17044. [
  17045. {
  17046. name: "Normal",
  17047. height: math.unit(2 + 5 / 12, "feet"),
  17048. form: "buizel",
  17049. default: true
  17050. },
  17051. {
  17052. name: "Normal",
  17053. height: math.unit(5 + 9 / 12, "feet"),
  17054. form: "floatzel",
  17055. default: true
  17056. },
  17057. ],
  17058. {
  17059. "buizel": {
  17060. name: "Buizel"
  17061. },
  17062. "floatzel": {
  17063. name: "Floatzel",
  17064. default: true
  17065. }
  17066. }
  17067. ))
  17068. characterMakers.push(() => makeCharacter(
  17069. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  17070. {
  17071. front: {
  17072. height: math.unit(6 + 2 / 12, "feet"),
  17073. weight: math.unit(146, "lb"),
  17074. name: "Front",
  17075. image: {
  17076. source: "./media/characters/iliac/front.svg",
  17077. extra: 389 / 365,
  17078. bottom: 0.035
  17079. }
  17080. },
  17081. },
  17082. [
  17083. {
  17084. name: "Normal",
  17085. height: math.unit(6 + 2 / 12, "feet"),
  17086. default: true
  17087. },
  17088. ]
  17089. ))
  17090. characterMakers.push(() => makeCharacter(
  17091. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  17092. {
  17093. front: {
  17094. height: math.unit(6, "feet"),
  17095. weight: math.unit(170, "lb"),
  17096. name: "Front",
  17097. image: {
  17098. source: "./media/characters/topaz/front.svg",
  17099. extra: 317 / 303,
  17100. bottom: 0.055
  17101. }
  17102. },
  17103. },
  17104. [
  17105. {
  17106. name: "Normal",
  17107. height: math.unit(6, "feet"),
  17108. default: true
  17109. },
  17110. ]
  17111. ))
  17112. characterMakers.push(() => makeCharacter(
  17113. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  17114. {
  17115. front: {
  17116. height: math.unit(5 + 11 / 12, "feet"),
  17117. weight: math.unit(144, "lb"),
  17118. name: "Front",
  17119. image: {
  17120. source: "./media/characters/gabriel/front.svg",
  17121. extra: 285 / 262,
  17122. bottom: 0.004
  17123. }
  17124. },
  17125. },
  17126. [
  17127. {
  17128. name: "Normal",
  17129. height: math.unit(5 + 11 / 12, "feet"),
  17130. default: true
  17131. },
  17132. ]
  17133. ))
  17134. characterMakers.push(() => makeCharacter(
  17135. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  17136. {
  17137. side: {
  17138. height: math.unit(6 + 5 / 12, "feet"),
  17139. weight: math.unit(300, "lb"),
  17140. name: "Side",
  17141. image: {
  17142. source: "./media/characters/tempest-suicune/side.svg",
  17143. extra: 195 / 154,
  17144. bottom: 0.04
  17145. }
  17146. },
  17147. },
  17148. [
  17149. {
  17150. name: "Normal",
  17151. height: math.unit(6 + 5 / 12, "feet"),
  17152. default: true
  17153. },
  17154. ]
  17155. ))
  17156. characterMakers.push(() => makeCharacter(
  17157. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  17158. {
  17159. front: {
  17160. height: math.unit(7 + 2 / 12, "feet"),
  17161. weight: math.unit(322, "lb"),
  17162. name: "Front",
  17163. image: {
  17164. source: "./media/characters/vulcan/front.svg",
  17165. extra: 154 / 147,
  17166. bottom: 0.04
  17167. }
  17168. },
  17169. },
  17170. [
  17171. {
  17172. name: "Normal",
  17173. height: math.unit(7 + 2 / 12, "feet"),
  17174. default: true
  17175. },
  17176. ]
  17177. ))
  17178. characterMakers.push(() => makeCharacter(
  17179. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  17180. {
  17181. front: {
  17182. height: math.unit(5 + 10 / 12, "feet"),
  17183. weight: math.unit(264, "lb"),
  17184. name: "Front",
  17185. image: {
  17186. source: "./media/characters/gault/front.svg",
  17187. extra: 161 / 140,
  17188. bottom: 0.028
  17189. }
  17190. },
  17191. },
  17192. [
  17193. {
  17194. name: "Normal",
  17195. height: math.unit(5 + 10 / 12, "feet"),
  17196. default: true
  17197. },
  17198. ]
  17199. ))
  17200. characterMakers.push(() => makeCharacter(
  17201. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  17202. {
  17203. front: {
  17204. height: math.unit(6, "feet"),
  17205. weight: math.unit(150, "lb"),
  17206. name: "Front",
  17207. image: {
  17208. source: "./media/characters/shard/front.svg",
  17209. extra: 273 / 238,
  17210. bottom: 0.02
  17211. }
  17212. },
  17213. },
  17214. [
  17215. {
  17216. name: "Normal",
  17217. height: math.unit(3 + 6 / 12, "feet"),
  17218. default: true
  17219. },
  17220. ]
  17221. ))
  17222. characterMakers.push(() => makeCharacter(
  17223. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17224. {
  17225. front: {
  17226. height: math.unit(5 + 11 / 12, "feet"),
  17227. weight: math.unit(146, "lb"),
  17228. name: "Front",
  17229. image: {
  17230. source: "./media/characters/ashe/front.svg",
  17231. extra: 400 / 373,
  17232. bottom: 0.01
  17233. }
  17234. },
  17235. },
  17236. [
  17237. {
  17238. name: "Normal",
  17239. height: math.unit(5 + 11 / 12, "feet"),
  17240. default: true
  17241. },
  17242. ]
  17243. ))
  17244. characterMakers.push(() => makeCharacter(
  17245. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17246. {
  17247. front: {
  17248. height: math.unit(5 + 5 / 12, "feet"),
  17249. weight: math.unit(135, "lb"),
  17250. name: "Front",
  17251. image: {
  17252. source: "./media/characters/beatrix/front.svg",
  17253. extra: 392 / 379,
  17254. bottom: 0.01
  17255. }
  17256. },
  17257. },
  17258. [
  17259. {
  17260. name: "Normal",
  17261. height: math.unit(6, "feet"),
  17262. default: true
  17263. },
  17264. ]
  17265. ))
  17266. characterMakers.push(() => makeCharacter(
  17267. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17268. {
  17269. front: {
  17270. height: math.unit(6 + 2/12, "feet"),
  17271. weight: math.unit(135, "lb"),
  17272. name: "Front",
  17273. image: {
  17274. source: "./media/characters/ignatius/front.svg",
  17275. extra: 1380/1259,
  17276. bottom: 27/1407
  17277. }
  17278. },
  17279. },
  17280. [
  17281. {
  17282. name: "Normal",
  17283. height: math.unit(6 + 2/12, "feet"),
  17284. default: true
  17285. },
  17286. ]
  17287. ))
  17288. characterMakers.push(() => makeCharacter(
  17289. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17290. {
  17291. front: {
  17292. height: math.unit(6 + 2 / 12, "feet"),
  17293. weight: math.unit(138, "lb"),
  17294. name: "Front",
  17295. image: {
  17296. source: "./media/characters/mei-li/front.svg",
  17297. extra: 237 / 229,
  17298. bottom: 0.03
  17299. }
  17300. },
  17301. },
  17302. [
  17303. {
  17304. name: "Normal",
  17305. height: math.unit(6 + 2 / 12, "feet"),
  17306. default: true
  17307. },
  17308. ]
  17309. ))
  17310. characterMakers.push(() => makeCharacter(
  17311. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17312. {
  17313. front: {
  17314. height: math.unit(2 + 4 / 12, "feet"),
  17315. weight: math.unit(62, "lb"),
  17316. name: "Front",
  17317. image: {
  17318. source: "./media/characters/puru/front.svg",
  17319. extra: 206 / 149,
  17320. bottom: 0.06
  17321. }
  17322. },
  17323. },
  17324. [
  17325. {
  17326. name: "Normal",
  17327. height: math.unit(2 + 4 / 12, "feet"),
  17328. default: true
  17329. },
  17330. ]
  17331. ))
  17332. characterMakers.push(() => makeCharacter(
  17333. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17334. {
  17335. anthro: {
  17336. height: math.unit(5 + 8/12, "feet"),
  17337. weight: math.unit(200, "lb"),
  17338. energyNeed: math.unit(2000, "kcal"),
  17339. name: "Anthro",
  17340. image: {
  17341. source: "./media/characters/kee/anthro.svg",
  17342. extra: 3251/3184,
  17343. bottom: 250/3501
  17344. }
  17345. },
  17346. taur: {
  17347. height: math.unit(11, "feet"),
  17348. weight: math.unit(500, "lb"),
  17349. energyNeed: math.unit(5000, "kcal"),
  17350. name: "Taur",
  17351. image: {
  17352. source: "./media/characters/kee/taur.svg",
  17353. extra: 1362/1320,
  17354. bottom: 83/1445
  17355. }
  17356. },
  17357. },
  17358. [
  17359. {
  17360. name: "Normal",
  17361. height: math.unit(5 + 8/12, "feet"),
  17362. default: true
  17363. },
  17364. {
  17365. name: "Macro",
  17366. height: math.unit(35, "feet")
  17367. },
  17368. ]
  17369. ))
  17370. characterMakers.push(() => makeCharacter(
  17371. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17372. {
  17373. anthro: {
  17374. height: math.unit(7, "feet"),
  17375. weight: math.unit(190, "lb"),
  17376. name: "Anthro",
  17377. image: {
  17378. source: "./media/characters/cobalt-dracha/anthro.svg",
  17379. extra: 231 / 225,
  17380. bottom: 0.04
  17381. }
  17382. },
  17383. feral: {
  17384. height: math.unit(9 + 7 / 12, "feet"),
  17385. weight: math.unit(294, "lb"),
  17386. name: "Feral",
  17387. image: {
  17388. source: "./media/characters/cobalt-dracha/feral.svg",
  17389. extra: 692 / 633,
  17390. bottom: 0.05
  17391. }
  17392. },
  17393. },
  17394. [
  17395. {
  17396. name: "Normal",
  17397. height: math.unit(7, "feet"),
  17398. default: true
  17399. },
  17400. ]
  17401. ))
  17402. characterMakers.push(() => makeCharacter(
  17403. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17404. {
  17405. fallen: {
  17406. height: math.unit(11 + 8 / 12, "feet"),
  17407. weight: math.unit(485, "lb"),
  17408. name: "Java (Fallen)",
  17409. rename: true,
  17410. image: {
  17411. source: "./media/characters/java/fallen.svg",
  17412. extra: 226 / 208,
  17413. bottom: 0.005
  17414. }
  17415. },
  17416. godkin: {
  17417. height: math.unit(10 + 6 / 12, "feet"),
  17418. weight: math.unit(328, "lb"),
  17419. name: "Java (Godkin)",
  17420. rename: true,
  17421. image: {
  17422. source: "./media/characters/java/godkin.svg",
  17423. extra: 1104/1068,
  17424. bottom: 36/1140
  17425. }
  17426. },
  17427. },
  17428. [
  17429. {
  17430. name: "Normal",
  17431. height: math.unit(11 + 8 / 12, "feet"),
  17432. default: true
  17433. },
  17434. ]
  17435. ))
  17436. characterMakers.push(() => makeCharacter(
  17437. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17438. {
  17439. front: {
  17440. height: math.unit(5 + 9 / 12, "feet"),
  17441. weight: math.unit(170, "lb"),
  17442. name: "Front",
  17443. image: {
  17444. source: "./media/characters/purna/front.svg",
  17445. extra: 239 / 229,
  17446. bottom: 0.01
  17447. }
  17448. },
  17449. },
  17450. [
  17451. {
  17452. name: "Normal",
  17453. height: math.unit(5 + 9 / 12, "feet"),
  17454. default: true
  17455. },
  17456. ]
  17457. ))
  17458. characterMakers.push(() => makeCharacter(
  17459. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17460. {
  17461. front: {
  17462. height: math.unit(5 + 9 / 12, "feet"),
  17463. weight: math.unit(142, "lb"),
  17464. name: "Front",
  17465. image: {
  17466. source: "./media/characters/kuva/front.svg",
  17467. extra: 281 / 271,
  17468. bottom: 0.006
  17469. }
  17470. },
  17471. },
  17472. [
  17473. {
  17474. name: "Normal",
  17475. height: math.unit(5 + 9 / 12, "feet"),
  17476. default: true
  17477. },
  17478. ]
  17479. ))
  17480. characterMakers.push(() => makeCharacter(
  17481. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17482. {
  17483. anthro: {
  17484. height: math.unit(9 + 2 / 12, "feet"),
  17485. weight: math.unit(270, "lb"),
  17486. name: "Anthro",
  17487. image: {
  17488. source: "./media/characters/embra/anthro.svg",
  17489. extra: 200 / 187,
  17490. bottom: 0.02
  17491. }
  17492. },
  17493. feral: {
  17494. height: math.unit(18 + 8 / 12, "feet"),
  17495. weight: math.unit(576, "lb"),
  17496. name: "Feral",
  17497. image: {
  17498. source: "./media/characters/embra/feral.svg",
  17499. extra: 152 / 137,
  17500. bottom: 0.037
  17501. }
  17502. },
  17503. },
  17504. [
  17505. {
  17506. name: "Normal",
  17507. height: math.unit(9 + 2 / 12, "feet"),
  17508. default: true
  17509. },
  17510. ]
  17511. ))
  17512. characterMakers.push(() => makeCharacter(
  17513. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17514. {
  17515. anthro: {
  17516. height: math.unit(10 + 9 / 12, "feet"),
  17517. weight: math.unit(224, "lb"),
  17518. name: "Anthro",
  17519. image: {
  17520. source: "./media/characters/grottos/anthro.svg",
  17521. extra: 350 / 332,
  17522. bottom: 0.045
  17523. }
  17524. },
  17525. feral: {
  17526. height: math.unit(20 + 7 / 12, "feet"),
  17527. weight: math.unit(629, "lb"),
  17528. name: "Feral",
  17529. image: {
  17530. source: "./media/characters/grottos/feral.svg",
  17531. extra: 207 / 190,
  17532. bottom: 0.05
  17533. }
  17534. },
  17535. },
  17536. [
  17537. {
  17538. name: "Normal",
  17539. height: math.unit(10 + 9 / 12, "feet"),
  17540. default: true
  17541. },
  17542. ]
  17543. ))
  17544. characterMakers.push(() => makeCharacter(
  17545. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17546. {
  17547. anthro: {
  17548. height: math.unit(9 + 6 / 12, "feet"),
  17549. weight: math.unit(298, "lb"),
  17550. name: "Anthro",
  17551. image: {
  17552. source: "./media/characters/frifna/anthro.svg",
  17553. extra: 282 / 269,
  17554. bottom: 0.015
  17555. }
  17556. },
  17557. feral: {
  17558. height: math.unit(16 + 2 / 12, "feet"),
  17559. weight: math.unit(624, "lb"),
  17560. name: "Feral",
  17561. image: {
  17562. source: "./media/characters/frifna/feral.svg"
  17563. }
  17564. },
  17565. },
  17566. [
  17567. {
  17568. name: "Normal",
  17569. height: math.unit(9 + 6 / 12, "feet"),
  17570. default: true
  17571. },
  17572. ]
  17573. ))
  17574. characterMakers.push(() => makeCharacter(
  17575. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17576. {
  17577. front: {
  17578. height: math.unit(6 + 2 / 12, "feet"),
  17579. weight: math.unit(168, "lb"),
  17580. name: "Front",
  17581. image: {
  17582. source: "./media/characters/elise/front.svg",
  17583. extra: 276 / 271
  17584. }
  17585. },
  17586. },
  17587. [
  17588. {
  17589. name: "Normal",
  17590. height: math.unit(6 + 2 / 12, "feet"),
  17591. default: true
  17592. },
  17593. ]
  17594. ))
  17595. characterMakers.push(() => makeCharacter(
  17596. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17597. {
  17598. front: {
  17599. height: math.unit(5 + 10 / 12, "feet"),
  17600. weight: math.unit(210, "lb"),
  17601. name: "Front",
  17602. image: {
  17603. source: "./media/characters/glade/front.svg",
  17604. extra: 258 / 247,
  17605. bottom: 0.008
  17606. }
  17607. },
  17608. },
  17609. [
  17610. {
  17611. name: "Normal",
  17612. height: math.unit(5 + 10 / 12, "feet"),
  17613. default: true
  17614. },
  17615. ]
  17616. ))
  17617. characterMakers.push(() => makeCharacter(
  17618. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17619. {
  17620. front: {
  17621. height: math.unit(5 + 10 / 12, "feet"),
  17622. weight: math.unit(129, "lb"),
  17623. name: "Front",
  17624. image: {
  17625. source: "./media/characters/rina/front.svg",
  17626. extra: 266 / 255,
  17627. bottom: 0.005
  17628. }
  17629. },
  17630. },
  17631. [
  17632. {
  17633. name: "Normal",
  17634. height: math.unit(5 + 10 / 12, "feet"),
  17635. default: true
  17636. },
  17637. ]
  17638. ))
  17639. characterMakers.push(() => makeCharacter(
  17640. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17641. {
  17642. front: {
  17643. height: math.unit(6 + 1 / 12, "feet"),
  17644. weight: math.unit(192, "lb"),
  17645. name: "Front",
  17646. image: {
  17647. source: "./media/characters/veronica/front.svg",
  17648. extra: 319 / 309,
  17649. bottom: 0.005
  17650. }
  17651. },
  17652. },
  17653. [
  17654. {
  17655. name: "Normal",
  17656. height: math.unit(6 + 1 / 12, "feet"),
  17657. default: true
  17658. },
  17659. ]
  17660. ))
  17661. characterMakers.push(() => makeCharacter(
  17662. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17663. {
  17664. front: {
  17665. height: math.unit(9 + 3 / 12, "feet"),
  17666. weight: math.unit(1100, "lb"),
  17667. name: "Front",
  17668. image: {
  17669. source: "./media/characters/braxton/front.svg",
  17670. extra: 1057 / 984,
  17671. bottom: 0.05
  17672. }
  17673. },
  17674. },
  17675. [
  17676. {
  17677. name: "Normal",
  17678. height: math.unit(9 + 3 / 12, "feet")
  17679. },
  17680. {
  17681. name: "Giant",
  17682. height: math.unit(300, "feet"),
  17683. default: true
  17684. },
  17685. {
  17686. name: "Macro",
  17687. height: math.unit(700, "feet")
  17688. },
  17689. {
  17690. name: "Megamacro",
  17691. height: math.unit(6000, "feet")
  17692. },
  17693. ]
  17694. ))
  17695. characterMakers.push(() => makeCharacter(
  17696. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17697. {
  17698. front: {
  17699. height: math.unit(6 + 7 / 12, "feet"),
  17700. weight: math.unit(150, "lb"),
  17701. name: "Front",
  17702. image: {
  17703. source: "./media/characters/blue-feyonics/front.svg",
  17704. extra: 1403 / 1306,
  17705. bottom: 0.047
  17706. }
  17707. },
  17708. },
  17709. [
  17710. {
  17711. name: "Normal",
  17712. height: math.unit(6 + 7 / 12, "feet"),
  17713. default: true
  17714. },
  17715. ]
  17716. ))
  17717. characterMakers.push(() => makeCharacter(
  17718. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17719. {
  17720. front: {
  17721. height: math.unit(1.8, "meters"),
  17722. weight: math.unit(60, "kg"),
  17723. name: "Front",
  17724. image: {
  17725. source: "./media/characters/maxwell/front.svg",
  17726. extra: 2060 / 1873
  17727. }
  17728. },
  17729. },
  17730. [
  17731. {
  17732. name: "Micro",
  17733. height: math.unit(1, "mm")
  17734. },
  17735. {
  17736. name: "Normal",
  17737. height: math.unit(1.8, "meter"),
  17738. default: true
  17739. },
  17740. {
  17741. name: "Macro",
  17742. height: math.unit(30, "meters")
  17743. },
  17744. {
  17745. name: "Megamacro",
  17746. height: math.unit(10, "km")
  17747. },
  17748. ]
  17749. ))
  17750. characterMakers.push(() => makeCharacter(
  17751. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17752. {
  17753. front: {
  17754. height: math.unit(6, "feet"),
  17755. weight: math.unit(150, "lb"),
  17756. name: "Front",
  17757. image: {
  17758. source: "./media/characters/jack/front.svg",
  17759. extra: 1754 / 1640,
  17760. bottom: 0.01
  17761. }
  17762. },
  17763. },
  17764. [
  17765. {
  17766. name: "Normal",
  17767. height: math.unit(80000, "feet"),
  17768. default: true
  17769. },
  17770. {
  17771. name: "Max size",
  17772. height: math.unit(10, "lightyears")
  17773. },
  17774. ]
  17775. ))
  17776. characterMakers.push(() => makeCharacter(
  17777. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17778. {
  17779. urban: {
  17780. height: math.unit(5, "feet"),
  17781. weight: math.unit(240, "lb"),
  17782. name: "Urban",
  17783. image: {
  17784. source: "./media/characters/cafat/urban.svg",
  17785. extra: 1223/1126,
  17786. bottom: 205/1428
  17787. }
  17788. },
  17789. summer: {
  17790. height: math.unit(5, "feet"),
  17791. weight: math.unit(240, "lb"),
  17792. name: "Summer",
  17793. image: {
  17794. source: "./media/characters/cafat/summer.svg",
  17795. extra: 1223/1126,
  17796. bottom: 205/1428
  17797. }
  17798. },
  17799. winter: {
  17800. height: math.unit(5, "feet"),
  17801. weight: math.unit(240, "lb"),
  17802. name: "Winter",
  17803. image: {
  17804. source: "./media/characters/cafat/winter.svg",
  17805. extra: 1223/1126,
  17806. bottom: 205/1428
  17807. }
  17808. },
  17809. lingerie: {
  17810. height: math.unit(5, "feet"),
  17811. weight: math.unit(240, "lb"),
  17812. name: "Lingerie",
  17813. image: {
  17814. source: "./media/characters/cafat/lingerie.svg",
  17815. extra: 1223/1126,
  17816. bottom: 205/1428
  17817. }
  17818. },
  17819. upright: {
  17820. height: math.unit(6.3, "feet"),
  17821. weight: math.unit(240, "lb"),
  17822. name: "Upright",
  17823. image: {
  17824. source: "./media/characters/cafat/upright.svg",
  17825. bottom: 0.01
  17826. }
  17827. },
  17828. uprightFull: {
  17829. height: math.unit(6.3, "feet"),
  17830. weight: math.unit(240, "lb"),
  17831. name: "Upright (Full)",
  17832. image: {
  17833. source: "./media/characters/cafat/upright-full.svg",
  17834. bottom: 0.01
  17835. }
  17836. },
  17837. },
  17838. [
  17839. {
  17840. name: "Small",
  17841. height: math.unit(5, "feet"),
  17842. default: true
  17843. },
  17844. {
  17845. name: "Large",
  17846. height: math.unit(13, "feet")
  17847. },
  17848. ]
  17849. ))
  17850. characterMakers.push(() => makeCharacter(
  17851. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17852. {
  17853. front: {
  17854. height: math.unit(6, "feet"),
  17855. weight: math.unit(150, "lb"),
  17856. name: "Front",
  17857. image: {
  17858. source: "./media/characters/verin-raharra/front.svg",
  17859. extra: 5019 / 4835,
  17860. bottom: 0.023
  17861. }
  17862. },
  17863. },
  17864. [
  17865. {
  17866. name: "Normal",
  17867. height: math.unit(7 + 5 / 12, "feet"),
  17868. default: true
  17869. },
  17870. {
  17871. name: "Upsized",
  17872. height: math.unit(20, "feet")
  17873. },
  17874. ]
  17875. ))
  17876. characterMakers.push(() => makeCharacter(
  17877. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17878. {
  17879. front: {
  17880. height: math.unit(7, "feet"),
  17881. weight: math.unit(230, "lb"),
  17882. name: "Front",
  17883. image: {
  17884. source: "./media/characters/nakata/front.svg",
  17885. extra: 1.005,
  17886. bottom: 0.01
  17887. }
  17888. },
  17889. },
  17890. [
  17891. {
  17892. name: "Normal",
  17893. height: math.unit(7, "feet"),
  17894. default: true
  17895. },
  17896. {
  17897. name: "Big",
  17898. height: math.unit(14, "feet")
  17899. },
  17900. {
  17901. name: "Macro",
  17902. height: math.unit(400, "feet")
  17903. },
  17904. ]
  17905. ))
  17906. characterMakers.push(() => makeCharacter(
  17907. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17908. {
  17909. front: {
  17910. height: math.unit(4.91, "feet"),
  17911. weight: math.unit(100, "lb"),
  17912. name: "Front",
  17913. image: {
  17914. source: "./media/characters/lily/front.svg",
  17915. extra: 1585 / 1415,
  17916. bottom: 0.02
  17917. }
  17918. },
  17919. },
  17920. [
  17921. {
  17922. name: "Normal",
  17923. height: math.unit(4.91, "feet"),
  17924. default: true
  17925. },
  17926. ]
  17927. ))
  17928. characterMakers.push(() => makeCharacter(
  17929. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17930. {
  17931. laying: {
  17932. height: math.unit(4 + 4 / 12, "feet"),
  17933. weight: math.unit(600, "lb"),
  17934. name: "Laying",
  17935. image: {
  17936. source: "./media/characters/sheila/laying.svg",
  17937. extra: 1333 / 1265,
  17938. bottom: 0.16
  17939. }
  17940. },
  17941. },
  17942. [
  17943. {
  17944. name: "Normal",
  17945. height: math.unit(4 + 4 / 12, "feet"),
  17946. default: true
  17947. },
  17948. ]
  17949. ))
  17950. characterMakers.push(() => makeCharacter(
  17951. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17952. {
  17953. front: {
  17954. height: math.unit(6, "feet"),
  17955. weight: math.unit(190, "lb"),
  17956. name: "Front",
  17957. image: {
  17958. source: "./media/characters/sax/front.svg",
  17959. extra: 1187 / 973,
  17960. bottom: 0.042
  17961. }
  17962. },
  17963. },
  17964. [
  17965. {
  17966. name: "Micro",
  17967. height: math.unit(4, "inches"),
  17968. default: true
  17969. },
  17970. ]
  17971. ))
  17972. characterMakers.push(() => makeCharacter(
  17973. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17974. {
  17975. front: {
  17976. height: math.unit(6, "feet"),
  17977. weight: math.unit(150, "lb"),
  17978. name: "Front",
  17979. image: {
  17980. source: "./media/characters/pandora/front.svg",
  17981. extra: 2720 / 2556,
  17982. bottom: 0.015
  17983. }
  17984. },
  17985. back: {
  17986. height: math.unit(6, "feet"),
  17987. weight: math.unit(150, "lb"),
  17988. name: "Back",
  17989. image: {
  17990. source: "./media/characters/pandora/back.svg",
  17991. extra: 2720 / 2556,
  17992. bottom: 0.01
  17993. }
  17994. },
  17995. beans: {
  17996. height: math.unit(6 / 8, "feet"),
  17997. name: "Beans",
  17998. image: {
  17999. source: "./media/characters/pandora/beans.svg"
  18000. }
  18001. },
  18002. collar: {
  18003. height: math.unit(0.31, "feet"),
  18004. name: "Collar",
  18005. image: {
  18006. source: "./media/characters/pandora/collar.svg"
  18007. }
  18008. },
  18009. skirt: {
  18010. height: math.unit(6, "feet"),
  18011. weight: math.unit(150, "lb"),
  18012. name: "Skirt",
  18013. image: {
  18014. source: "./media/characters/pandora/skirt.svg",
  18015. extra: 1622 / 1525,
  18016. bottom: 0.015
  18017. }
  18018. },
  18019. hoodie: {
  18020. height: math.unit(6, "feet"),
  18021. weight: math.unit(150, "lb"),
  18022. name: "Hoodie",
  18023. image: {
  18024. source: "./media/characters/pandora/hoodie.svg",
  18025. extra: 1622 / 1525,
  18026. bottom: 0.015
  18027. }
  18028. },
  18029. casual: {
  18030. height: math.unit(6, "feet"),
  18031. weight: math.unit(150, "lb"),
  18032. name: "Casual",
  18033. image: {
  18034. source: "./media/characters/pandora/casual.svg",
  18035. extra: 1622 / 1525,
  18036. bottom: 0.015
  18037. }
  18038. },
  18039. },
  18040. [
  18041. {
  18042. name: "Normal",
  18043. height: math.unit(6, "feet")
  18044. },
  18045. {
  18046. name: "Big Steppy",
  18047. height: math.unit(1, "km"),
  18048. default: true
  18049. },
  18050. {
  18051. name: "Galactic Steppy",
  18052. height: math.unit(2, "gigameters")
  18053. },
  18054. ]
  18055. ))
  18056. characterMakers.push(() => makeCharacter(
  18057. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  18058. {
  18059. side: {
  18060. height: math.unit(10, "feet"),
  18061. weight: math.unit(800, "kg"),
  18062. name: "Side",
  18063. image: {
  18064. source: "./media/characters/venio-darcony/side.svg",
  18065. extra: 1373 / 1003,
  18066. bottom: 0.037
  18067. }
  18068. },
  18069. front: {
  18070. height: math.unit(19, "feet"),
  18071. weight: math.unit(800, "kg"),
  18072. name: "Front",
  18073. image: {
  18074. source: "./media/characters/venio-darcony/front.svg"
  18075. }
  18076. },
  18077. back: {
  18078. height: math.unit(19, "feet"),
  18079. weight: math.unit(800, "kg"),
  18080. name: "Back",
  18081. image: {
  18082. source: "./media/characters/venio-darcony/back.svg"
  18083. }
  18084. },
  18085. sideNsfw: {
  18086. height: math.unit(10, "feet"),
  18087. weight: math.unit(800, "kg"),
  18088. name: "Side (NSFW)",
  18089. image: {
  18090. source: "./media/characters/venio-darcony/side-nsfw.svg",
  18091. extra: 1373 / 1003,
  18092. bottom: 0.037
  18093. }
  18094. },
  18095. frontNsfw: {
  18096. height: math.unit(19, "feet"),
  18097. weight: math.unit(800, "kg"),
  18098. name: "Front (NSFW)",
  18099. image: {
  18100. source: "./media/characters/venio-darcony/front-nsfw.svg"
  18101. }
  18102. },
  18103. backNsfw: {
  18104. height: math.unit(19, "feet"),
  18105. weight: math.unit(800, "kg"),
  18106. name: "Back (NSFW)",
  18107. image: {
  18108. source: "./media/characters/venio-darcony/back-nsfw.svg"
  18109. }
  18110. },
  18111. sideArmored: {
  18112. height: math.unit(10, "feet"),
  18113. weight: math.unit(800, "kg"),
  18114. name: "Side (Armored)",
  18115. image: {
  18116. source: "./media/characters/venio-darcony/side-armored.svg",
  18117. extra: 1373 / 1003,
  18118. bottom: 0.037
  18119. }
  18120. },
  18121. frontArmored: {
  18122. height: math.unit(19, "feet"),
  18123. weight: math.unit(900, "kg"),
  18124. name: "Front (Armored)",
  18125. image: {
  18126. source: "./media/characters/venio-darcony/front-armored.svg"
  18127. }
  18128. },
  18129. backArmored: {
  18130. height: math.unit(19, "feet"),
  18131. weight: math.unit(900, "kg"),
  18132. name: "Back (Armored)",
  18133. image: {
  18134. source: "./media/characters/venio-darcony/back-armored.svg"
  18135. }
  18136. },
  18137. sword: {
  18138. height: math.unit(10, "feet"),
  18139. weight: math.unit(50, "lb"),
  18140. name: "Sword",
  18141. image: {
  18142. source: "./media/characters/venio-darcony/sword.svg"
  18143. }
  18144. },
  18145. },
  18146. [
  18147. {
  18148. name: "Normal",
  18149. height: math.unit(10, "feet")
  18150. },
  18151. {
  18152. name: "Macro",
  18153. height: math.unit(130, "feet"),
  18154. default: true
  18155. },
  18156. {
  18157. name: "Macro+",
  18158. height: math.unit(240, "feet")
  18159. },
  18160. ]
  18161. ))
  18162. characterMakers.push(() => makeCharacter(
  18163. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  18164. {
  18165. front: {
  18166. height: math.unit(6, "feet"),
  18167. weight: math.unit(150, "lb"),
  18168. name: "Front",
  18169. image: {
  18170. source: "./media/characters/veski/front.svg",
  18171. extra: 1299 / 1225,
  18172. bottom: 0.04
  18173. }
  18174. },
  18175. back: {
  18176. height: math.unit(6, "feet"),
  18177. weight: math.unit(150, "lb"),
  18178. name: "Back",
  18179. image: {
  18180. source: "./media/characters/veski/back.svg",
  18181. extra: 1299 / 1225,
  18182. bottom: 0.008
  18183. }
  18184. },
  18185. maw: {
  18186. height: math.unit(1.5 * 1.21, "feet"),
  18187. name: "Maw",
  18188. image: {
  18189. source: "./media/characters/veski/maw.svg"
  18190. }
  18191. },
  18192. },
  18193. [
  18194. {
  18195. name: "Macro",
  18196. height: math.unit(2, "km"),
  18197. default: true
  18198. },
  18199. ]
  18200. ))
  18201. characterMakers.push(() => makeCharacter(
  18202. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18203. {
  18204. front: {
  18205. height: math.unit(5 + 7 / 12, "feet"),
  18206. name: "Front",
  18207. image: {
  18208. source: "./media/characters/isabelle/front.svg",
  18209. extra: 2130 / 1976,
  18210. bottom: 0.05
  18211. }
  18212. },
  18213. },
  18214. [
  18215. {
  18216. name: "Supermicro",
  18217. height: math.unit(10, "micrometers")
  18218. },
  18219. {
  18220. name: "Micro",
  18221. height: math.unit(1, "inch")
  18222. },
  18223. {
  18224. name: "Tiny",
  18225. height: math.unit(5, "inches")
  18226. },
  18227. {
  18228. name: "Standard",
  18229. height: math.unit(5 + 7 / 12, "inches")
  18230. },
  18231. {
  18232. name: "Macro",
  18233. height: math.unit(80, "meters"),
  18234. default: true
  18235. },
  18236. {
  18237. name: "Megamacro",
  18238. height: math.unit(250, "meters")
  18239. },
  18240. {
  18241. name: "Gigamacro",
  18242. height: math.unit(5, "km")
  18243. },
  18244. {
  18245. name: "Cosmic",
  18246. height: math.unit(2.5e6, "miles")
  18247. },
  18248. ]
  18249. ))
  18250. characterMakers.push(() => makeCharacter(
  18251. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18252. {
  18253. front: {
  18254. height: math.unit(6, "feet"),
  18255. weight: math.unit(150, "lb"),
  18256. name: "Front",
  18257. image: {
  18258. source: "./media/characters/hanzo/front.svg",
  18259. extra: 374 / 344,
  18260. bottom: 0.02
  18261. }
  18262. },
  18263. },
  18264. [
  18265. {
  18266. name: "Normal",
  18267. height: math.unit(8, "feet"),
  18268. default: true
  18269. },
  18270. ]
  18271. ))
  18272. characterMakers.push(() => makeCharacter(
  18273. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18274. {
  18275. front: {
  18276. height: math.unit(7, "feet"),
  18277. weight: math.unit(130, "lb"),
  18278. name: "Front",
  18279. image: {
  18280. source: "./media/characters/anna/front.svg",
  18281. extra: 169 / 145,
  18282. bottom: 0.06
  18283. }
  18284. },
  18285. full: {
  18286. height: math.unit(4.96, "feet"),
  18287. weight: math.unit(220, "lb"),
  18288. name: "Full",
  18289. image: {
  18290. source: "./media/characters/anna/full.svg",
  18291. extra: 138 / 114,
  18292. bottom: 0.15
  18293. }
  18294. },
  18295. tongue: {
  18296. height: math.unit(2.53, "feet"),
  18297. name: "Tongue",
  18298. image: {
  18299. source: "./media/characters/anna/tongue.svg"
  18300. }
  18301. },
  18302. },
  18303. [
  18304. {
  18305. name: "Normal",
  18306. height: math.unit(7, "feet"),
  18307. default: true
  18308. },
  18309. ]
  18310. ))
  18311. characterMakers.push(() => makeCharacter(
  18312. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18313. {
  18314. front: {
  18315. height: math.unit(7, "feet"),
  18316. weight: math.unit(150, "lb"),
  18317. name: "Front",
  18318. image: {
  18319. source: "./media/characters/ian-corvid/front.svg",
  18320. extra: 150 / 142,
  18321. bottom: 0.02
  18322. }
  18323. },
  18324. back: {
  18325. height: math.unit(7, "feet"),
  18326. weight: math.unit(150, "lb"),
  18327. name: "Back",
  18328. image: {
  18329. source: "./media/characters/ian-corvid/back.svg",
  18330. extra: 150 / 143,
  18331. bottom: 0.01
  18332. }
  18333. },
  18334. stomping: {
  18335. height: math.unit(7, "feet"),
  18336. weight: math.unit(150, "lb"),
  18337. name: "Stomping",
  18338. image: {
  18339. source: "./media/characters/ian-corvid/stomping.svg",
  18340. extra: 76 / 72
  18341. }
  18342. },
  18343. sitting: {
  18344. height: math.unit(7 / 1.8, "feet"),
  18345. weight: math.unit(150, "lb"),
  18346. name: "Sitting",
  18347. image: {
  18348. source: "./media/characters/ian-corvid/sitting.svg",
  18349. extra: 1400 / 1269,
  18350. bottom: 0.15
  18351. }
  18352. },
  18353. },
  18354. [
  18355. {
  18356. name: "Tiny Microw",
  18357. height: math.unit(1, "inch")
  18358. },
  18359. {
  18360. name: "Microw",
  18361. height: math.unit(6, "inches")
  18362. },
  18363. {
  18364. name: "Crow",
  18365. height: math.unit(7 + 1 / 12, "feet"),
  18366. default: true
  18367. },
  18368. {
  18369. name: "Macrow",
  18370. height: math.unit(176, "feet")
  18371. },
  18372. ]
  18373. ))
  18374. characterMakers.push(() => makeCharacter(
  18375. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18376. {
  18377. front: {
  18378. height: math.unit(5 + 7 / 12, "feet"),
  18379. weight: math.unit(147, "lb"),
  18380. name: "Front",
  18381. image: {
  18382. source: "./media/characters/natalie-kellon/front.svg",
  18383. extra: 1214 / 1141,
  18384. bottom: 0.02
  18385. }
  18386. },
  18387. },
  18388. [
  18389. {
  18390. name: "Micro",
  18391. height: math.unit(1 / 16, "inch")
  18392. },
  18393. {
  18394. name: "Tiny",
  18395. height: math.unit(4, "inches")
  18396. },
  18397. {
  18398. name: "Normal",
  18399. height: math.unit(5 + 7 / 12, "feet"),
  18400. default: true
  18401. },
  18402. {
  18403. name: "Amazon",
  18404. height: math.unit(12, "feet")
  18405. },
  18406. {
  18407. name: "Giantess",
  18408. height: math.unit(160, "meters")
  18409. },
  18410. {
  18411. name: "Titaness",
  18412. height: math.unit(800, "meters")
  18413. },
  18414. ]
  18415. ))
  18416. characterMakers.push(() => makeCharacter(
  18417. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18418. {
  18419. front: {
  18420. height: math.unit(6, "feet"),
  18421. weight: math.unit(150, "lb"),
  18422. name: "Front",
  18423. image: {
  18424. source: "./media/characters/alluria/front.svg",
  18425. extra: 806 / 738,
  18426. bottom: 0.01
  18427. }
  18428. },
  18429. side: {
  18430. height: math.unit(6, "feet"),
  18431. weight: math.unit(150, "lb"),
  18432. name: "Side",
  18433. image: {
  18434. source: "./media/characters/alluria/side.svg",
  18435. extra: 800 / 750,
  18436. }
  18437. },
  18438. back: {
  18439. height: math.unit(6, "feet"),
  18440. weight: math.unit(150, "lb"),
  18441. name: "Back",
  18442. image: {
  18443. source: "./media/characters/alluria/back.svg",
  18444. extra: 806 / 738,
  18445. }
  18446. },
  18447. frontMaid: {
  18448. height: math.unit(6, "feet"),
  18449. weight: math.unit(150, "lb"),
  18450. name: "Front (Maid)",
  18451. image: {
  18452. source: "./media/characters/alluria/front-maid.svg",
  18453. extra: 806 / 738,
  18454. bottom: 0.01
  18455. }
  18456. },
  18457. sideMaid: {
  18458. height: math.unit(6, "feet"),
  18459. weight: math.unit(150, "lb"),
  18460. name: "Side (Maid)",
  18461. image: {
  18462. source: "./media/characters/alluria/side-maid.svg",
  18463. extra: 800 / 750,
  18464. bottom: 0.005
  18465. }
  18466. },
  18467. backMaid: {
  18468. height: math.unit(6, "feet"),
  18469. weight: math.unit(150, "lb"),
  18470. name: "Back (Maid)",
  18471. image: {
  18472. source: "./media/characters/alluria/back-maid.svg",
  18473. extra: 806 / 738,
  18474. }
  18475. },
  18476. },
  18477. [
  18478. {
  18479. name: "Micro",
  18480. height: math.unit(6, "inches"),
  18481. default: true
  18482. },
  18483. ]
  18484. ))
  18485. characterMakers.push(() => makeCharacter(
  18486. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18487. {
  18488. front: {
  18489. height: math.unit(6, "feet"),
  18490. weight: math.unit(150, "lb"),
  18491. name: "Front",
  18492. image: {
  18493. source: "./media/characters/kyle/front.svg",
  18494. extra: 1069 / 962,
  18495. bottom: 77.228 / 1727.45
  18496. }
  18497. },
  18498. },
  18499. [
  18500. {
  18501. name: "Macro",
  18502. height: math.unit(150, "feet"),
  18503. default: true
  18504. },
  18505. ]
  18506. ))
  18507. characterMakers.push(() => makeCharacter(
  18508. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18509. {
  18510. front: {
  18511. height: math.unit(6, "feet"),
  18512. weight: math.unit(300, "lb"),
  18513. name: "Front",
  18514. image: {
  18515. source: "./media/characters/duncan/front.svg",
  18516. extra: 1650 / 1482,
  18517. bottom: 0.05
  18518. }
  18519. },
  18520. },
  18521. [
  18522. {
  18523. name: "Macro",
  18524. height: math.unit(100, "feet"),
  18525. default: true
  18526. },
  18527. ]
  18528. ))
  18529. characterMakers.push(() => makeCharacter(
  18530. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18531. {
  18532. front: {
  18533. height: math.unit(5 + 4 / 12, "feet"),
  18534. weight: math.unit(220, "lb"),
  18535. name: "Front",
  18536. image: {
  18537. source: "./media/characters/memory/front.svg",
  18538. extra: 3641 / 3545,
  18539. bottom: 0.03
  18540. }
  18541. },
  18542. back: {
  18543. height: math.unit(5 + 4 / 12, "feet"),
  18544. weight: math.unit(220, "lb"),
  18545. name: "Back",
  18546. image: {
  18547. source: "./media/characters/memory/back.svg",
  18548. extra: 3641 / 3545,
  18549. bottom: 0.025
  18550. }
  18551. },
  18552. frontSkirt: {
  18553. height: math.unit(5 + 4 / 12, "feet"),
  18554. weight: math.unit(220, "lb"),
  18555. name: "Front (Skirt)",
  18556. image: {
  18557. source: "./media/characters/memory/front-skirt.svg",
  18558. extra: 3641 / 3545,
  18559. bottom: 0.03
  18560. }
  18561. },
  18562. frontDress: {
  18563. height: math.unit(5 + 4 / 12, "feet"),
  18564. weight: math.unit(220, "lb"),
  18565. name: "Front (Dress)",
  18566. image: {
  18567. source: "./media/characters/memory/front-dress.svg",
  18568. extra: 3641 / 3545,
  18569. bottom: 0.03
  18570. }
  18571. },
  18572. },
  18573. [
  18574. {
  18575. name: "Micro",
  18576. height: math.unit(6, "inches"),
  18577. default: true
  18578. },
  18579. {
  18580. name: "Normal",
  18581. height: math.unit(5 + 4 / 12, "feet")
  18582. },
  18583. ]
  18584. ))
  18585. characterMakers.push(() => makeCharacter(
  18586. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18587. {
  18588. front: {
  18589. height: math.unit(4 + 11 / 12, "feet"),
  18590. weight: math.unit(100, "lb"),
  18591. name: "Front",
  18592. image: {
  18593. source: "./media/characters/luno/front.svg",
  18594. extra: 1535 / 1487,
  18595. bottom: 0.03
  18596. }
  18597. },
  18598. },
  18599. [
  18600. {
  18601. name: "Micro",
  18602. height: math.unit(3, "inches")
  18603. },
  18604. {
  18605. name: "Normal",
  18606. height: math.unit(4 + 11 / 12, "feet"),
  18607. default: true
  18608. },
  18609. {
  18610. name: "Macro",
  18611. height: math.unit(300, "feet")
  18612. },
  18613. {
  18614. name: "Megamacro",
  18615. height: math.unit(700, "miles")
  18616. },
  18617. ]
  18618. ))
  18619. characterMakers.push(() => makeCharacter(
  18620. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18621. {
  18622. front: {
  18623. height: math.unit(6 + 2 / 12, "feet"),
  18624. weight: math.unit(170, "lb"),
  18625. name: "Front",
  18626. image: {
  18627. source: "./media/characters/jamesy/front.svg",
  18628. extra: 440 / 382,
  18629. bottom: 0.005
  18630. }
  18631. },
  18632. },
  18633. [
  18634. {
  18635. name: "Micro",
  18636. height: math.unit(3, "inches")
  18637. },
  18638. {
  18639. name: "Normal",
  18640. height: math.unit(6 + 2 / 12, "feet"),
  18641. default: true
  18642. },
  18643. {
  18644. name: "Macro",
  18645. height: math.unit(300, "feet")
  18646. },
  18647. {
  18648. name: "Megamacro",
  18649. height: math.unit(700, "miles")
  18650. },
  18651. ]
  18652. ))
  18653. characterMakers.push(() => makeCharacter(
  18654. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18655. {
  18656. front: {
  18657. height: math.unit(6, "feet"),
  18658. weight: math.unit(160, "lb"),
  18659. name: "Front",
  18660. image: {
  18661. source: "./media/characters/mark/front.svg",
  18662. extra: 3300 / 3100,
  18663. bottom: 136.42 / 3440.47
  18664. }
  18665. },
  18666. },
  18667. [
  18668. {
  18669. name: "Macro",
  18670. height: math.unit(120, "meters")
  18671. },
  18672. {
  18673. name: "Bigger Macro",
  18674. height: math.unit(350, "meters")
  18675. },
  18676. {
  18677. name: "Megamacro",
  18678. height: math.unit(8, "km"),
  18679. default: true
  18680. },
  18681. {
  18682. name: "Continental",
  18683. height: math.unit(4550, "km")
  18684. },
  18685. {
  18686. name: "Planetary",
  18687. height: math.unit(65000, "km")
  18688. },
  18689. ]
  18690. ))
  18691. characterMakers.push(() => makeCharacter(
  18692. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18693. {
  18694. front: {
  18695. height: math.unit(6, "feet"),
  18696. weight: math.unit(400, "lb"),
  18697. name: "Front",
  18698. image: {
  18699. source: "./media/characters/mac/front.svg",
  18700. extra: 1048 / 987.7,
  18701. bottom: 60 / 1107.6,
  18702. }
  18703. },
  18704. },
  18705. [
  18706. {
  18707. name: "Macro",
  18708. height: math.unit(500, "feet"),
  18709. default: true
  18710. },
  18711. ]
  18712. ))
  18713. characterMakers.push(() => makeCharacter(
  18714. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18715. {
  18716. front: {
  18717. height: math.unit(5 + 2 / 12, "feet"),
  18718. weight: math.unit(190, "lb"),
  18719. name: "Front",
  18720. image: {
  18721. source: "./media/characters/bari/front.svg",
  18722. extra: 3156 / 2880,
  18723. bottom: 0.03
  18724. }
  18725. },
  18726. back: {
  18727. height: math.unit(5 + 2 / 12, "feet"),
  18728. weight: math.unit(190, "lb"),
  18729. name: "Back",
  18730. image: {
  18731. source: "./media/characters/bari/back.svg",
  18732. extra: 3260 / 2834,
  18733. bottom: 0.025
  18734. }
  18735. },
  18736. frontPlush: {
  18737. height: math.unit(5 + 2 / 12, "feet"),
  18738. weight: math.unit(190, "lb"),
  18739. name: "Front (Plush)",
  18740. image: {
  18741. source: "./media/characters/bari/front-plush.svg",
  18742. extra: 1112 / 1061,
  18743. bottom: 0.002
  18744. }
  18745. },
  18746. },
  18747. [
  18748. {
  18749. name: "Micro",
  18750. height: math.unit(3, "inches")
  18751. },
  18752. {
  18753. name: "Normal",
  18754. height: math.unit(5 + 2 / 12, "feet"),
  18755. default: true
  18756. },
  18757. {
  18758. name: "Macro",
  18759. height: math.unit(20, "feet")
  18760. },
  18761. ]
  18762. ))
  18763. characterMakers.push(() => makeCharacter(
  18764. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18765. {
  18766. front: {
  18767. height: math.unit(6 + 1 / 12, "feet"),
  18768. weight: math.unit(275, "lb"),
  18769. name: "Front",
  18770. image: {
  18771. source: "./media/characters/hunter-misha-raven/front.svg"
  18772. }
  18773. },
  18774. },
  18775. [
  18776. {
  18777. name: "Mortal",
  18778. height: math.unit(6 + 1 / 12, "feet")
  18779. },
  18780. {
  18781. name: "Divine",
  18782. height: math.unit(1.12134e34, "parsecs"),
  18783. default: true
  18784. },
  18785. ]
  18786. ))
  18787. characterMakers.push(() => makeCharacter(
  18788. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18789. {
  18790. front: {
  18791. height: math.unit(6 + 3 / 12, "feet"),
  18792. weight: math.unit(220, "lb"),
  18793. name: "Front",
  18794. image: {
  18795. source: "./media/characters/max-calore/front.svg",
  18796. extra: 1700 / 1648,
  18797. bottom: 0.01
  18798. }
  18799. },
  18800. back: {
  18801. height: math.unit(6 + 3 / 12, "feet"),
  18802. weight: math.unit(220, "lb"),
  18803. name: "Back",
  18804. image: {
  18805. source: "./media/characters/max-calore/back.svg",
  18806. extra: 1700 / 1648,
  18807. bottom: 0.01
  18808. }
  18809. },
  18810. },
  18811. [
  18812. {
  18813. name: "Normal",
  18814. height: math.unit(6 + 3 / 12, "feet"),
  18815. default: true
  18816. },
  18817. ]
  18818. ))
  18819. characterMakers.push(() => makeCharacter(
  18820. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18821. {
  18822. side: {
  18823. height: math.unit(2 + 8 / 12, "feet"),
  18824. weight: math.unit(99, "lb"),
  18825. name: "Side",
  18826. image: {
  18827. source: "./media/characters/aspen/side.svg",
  18828. extra: 152 / 138,
  18829. bottom: 0.032
  18830. }
  18831. },
  18832. },
  18833. [
  18834. {
  18835. name: "Normal",
  18836. height: math.unit(2 + 8 / 12, "feet"),
  18837. default: true
  18838. },
  18839. ]
  18840. ))
  18841. characterMakers.push(() => makeCharacter(
  18842. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18843. {
  18844. side: {
  18845. height: math.unit(3 + 2 / 12, "feet"),
  18846. weight: math.unit(224, "lb"),
  18847. name: "Side",
  18848. image: {
  18849. source: "./media/characters/sheila-feral-wolf/side.svg",
  18850. extra: 179 / 166,
  18851. bottom: 0.03
  18852. }
  18853. },
  18854. },
  18855. [
  18856. {
  18857. name: "Normal",
  18858. height: math.unit(3 + 2 / 12, "feet"),
  18859. default: true
  18860. },
  18861. ]
  18862. ))
  18863. characterMakers.push(() => makeCharacter(
  18864. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18865. {
  18866. side: {
  18867. height: math.unit(1 + 9 / 12, "feet"),
  18868. weight: math.unit(38, "lb"),
  18869. name: "Side",
  18870. image: {
  18871. source: "./media/characters/michelle/side.svg",
  18872. extra: 147 / 136.7,
  18873. bottom: 0.03
  18874. }
  18875. },
  18876. },
  18877. [
  18878. {
  18879. name: "Normal",
  18880. height: math.unit(1 + 9 / 12, "feet"),
  18881. default: true
  18882. },
  18883. ]
  18884. ))
  18885. characterMakers.push(() => makeCharacter(
  18886. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18887. {
  18888. front: {
  18889. height: math.unit(1.54, "feet"),
  18890. weight: math.unit(50, "lb"),
  18891. name: "Front",
  18892. image: {
  18893. source: "./media/characters/nino/front.svg"
  18894. }
  18895. },
  18896. },
  18897. [
  18898. {
  18899. name: "Normal",
  18900. height: math.unit(1.54, "feet"),
  18901. default: true
  18902. },
  18903. ]
  18904. ))
  18905. characterMakers.push(() => makeCharacter(
  18906. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18907. {
  18908. front: {
  18909. height: math.unit(1.49, "feet"),
  18910. weight: math.unit(45, "lb"),
  18911. name: "Front",
  18912. image: {
  18913. source: "./media/characters/viola/front.svg"
  18914. }
  18915. },
  18916. },
  18917. [
  18918. {
  18919. name: "Normal",
  18920. height: math.unit(1.49, "feet"),
  18921. default: true
  18922. },
  18923. ]
  18924. ))
  18925. characterMakers.push(() => makeCharacter(
  18926. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18927. {
  18928. front: {
  18929. height: math.unit(6 + 5 / 12, "feet"),
  18930. weight: math.unit(580, "lb"),
  18931. name: "Front",
  18932. image: {
  18933. source: "./media/characters/atlas/front.svg",
  18934. extra: 298.5 / 290,
  18935. bottom: 0.015
  18936. }
  18937. },
  18938. },
  18939. [
  18940. {
  18941. name: "Normal",
  18942. height: math.unit(6 + 5 / 12, "feet"),
  18943. default: true
  18944. },
  18945. ]
  18946. ))
  18947. characterMakers.push(() => makeCharacter(
  18948. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18949. {
  18950. side: {
  18951. height: math.unit(15.6, "inches"),
  18952. weight: math.unit(10, "lb"),
  18953. name: "Side",
  18954. image: {
  18955. source: "./media/characters/davy/side.svg",
  18956. extra: 200 / 170,
  18957. bottom: 0.01
  18958. }
  18959. },
  18960. },
  18961. [
  18962. {
  18963. name: "Normal",
  18964. height: math.unit(15.6, "inches"),
  18965. default: true
  18966. },
  18967. ]
  18968. ))
  18969. characterMakers.push(() => makeCharacter(
  18970. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18971. {
  18972. side: {
  18973. height: math.unit(4 + 8 / 12, "feet"),
  18974. weight: math.unit(166, "lb"),
  18975. name: "Side",
  18976. image: {
  18977. source: "./media/characters/fiona/side.svg",
  18978. extra: 232 / 220,
  18979. bottom: 0.03
  18980. }
  18981. },
  18982. },
  18983. [
  18984. {
  18985. name: "Normal",
  18986. height: math.unit(4 + 8 / 12, "feet"),
  18987. default: true
  18988. },
  18989. ]
  18990. ))
  18991. characterMakers.push(() => makeCharacter(
  18992. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18993. {
  18994. front: {
  18995. height: math.unit(26, "inches"),
  18996. weight: math.unit(35, "lb"),
  18997. name: "Front",
  18998. image: {
  18999. source: "./media/characters/lyla/front.svg",
  19000. bottom: 0.1
  19001. }
  19002. },
  19003. },
  19004. [
  19005. {
  19006. name: "Normal",
  19007. height: math.unit(3, "feet"),
  19008. default: true
  19009. },
  19010. ]
  19011. ))
  19012. characterMakers.push(() => makeCharacter(
  19013. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  19014. {
  19015. side: {
  19016. height: math.unit(1.8, "feet"),
  19017. weight: math.unit(44, "lb"),
  19018. name: "Side",
  19019. image: {
  19020. source: "./media/characters/perseus/side.svg",
  19021. bottom: 0.21
  19022. }
  19023. },
  19024. },
  19025. [
  19026. {
  19027. name: "Normal",
  19028. height: math.unit(1.8, "feet"),
  19029. default: true
  19030. },
  19031. ]
  19032. ))
  19033. characterMakers.push(() => makeCharacter(
  19034. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  19035. {
  19036. side: {
  19037. height: math.unit(4 + 2 / 12, "feet"),
  19038. weight: math.unit(20, "lb"),
  19039. name: "Side",
  19040. image: {
  19041. source: "./media/characters/remus/side.svg"
  19042. }
  19043. },
  19044. },
  19045. [
  19046. {
  19047. name: "Normal",
  19048. height: math.unit(4 + 2 / 12, "feet"),
  19049. default: true
  19050. },
  19051. ]
  19052. ))
  19053. characterMakers.push(() => makeCharacter(
  19054. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  19055. {
  19056. front: {
  19057. height: math.unit(4 + 11 / 12, "feet"),
  19058. weight: math.unit(114, "lb"),
  19059. name: "Front",
  19060. image: {
  19061. source: "./media/characters/raf/front.svg",
  19062. extra: 1504/1339,
  19063. bottom: 26/1530
  19064. }
  19065. },
  19066. side: {
  19067. height: math.unit(4 + 11 / 12, "feet"),
  19068. weight: math.unit(114, "lb"),
  19069. name: "Side",
  19070. image: {
  19071. source: "./media/characters/raf/side.svg",
  19072. extra: 1466/1316,
  19073. bottom: 29/1495
  19074. }
  19075. },
  19076. paw: {
  19077. height: math.unit(1.45, "feet"),
  19078. name: "Paw",
  19079. image: {
  19080. source: "./media/characters/raf/paw.svg"
  19081. },
  19082. extraAttributes: {
  19083. "toeSize": {
  19084. name: "Toe Size",
  19085. power: 2,
  19086. type: "area",
  19087. base: math.unit(0.004, "m^2")
  19088. },
  19089. "padSize": {
  19090. name: "Pad Size",
  19091. power: 2,
  19092. type: "area",
  19093. base: math.unit(0.04, "m^2")
  19094. },
  19095. "footSize": {
  19096. name: "Foot Size",
  19097. power: 2,
  19098. type: "area",
  19099. base: math.unit(0.08, "m^2")
  19100. },
  19101. }
  19102. },
  19103. },
  19104. [
  19105. {
  19106. name: "Micro",
  19107. height: math.unit(2, "inches")
  19108. },
  19109. {
  19110. name: "Normal",
  19111. height: math.unit(4 + 11 / 12, "feet"),
  19112. default: true
  19113. },
  19114. {
  19115. name: "Macro",
  19116. height: math.unit(70, "feet")
  19117. },
  19118. ]
  19119. ))
  19120. characterMakers.push(() => makeCharacter(
  19121. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  19122. {
  19123. front: {
  19124. height: math.unit(1.5, "meters"),
  19125. weight: math.unit(68, "kg"),
  19126. name: "Front",
  19127. image: {
  19128. source: "./media/characters/liam-einarr/front.svg",
  19129. extra: 2822 / 2666
  19130. }
  19131. },
  19132. back: {
  19133. height: math.unit(1.5, "meters"),
  19134. weight: math.unit(68, "kg"),
  19135. name: "Back",
  19136. image: {
  19137. source: "./media/characters/liam-einarr/back.svg",
  19138. extra: 2822 / 2666,
  19139. bottom: 0.015
  19140. }
  19141. },
  19142. },
  19143. [
  19144. {
  19145. name: "Normal",
  19146. height: math.unit(1.5, "meters"),
  19147. default: true
  19148. },
  19149. {
  19150. name: "Macro",
  19151. height: math.unit(150, "meters")
  19152. },
  19153. {
  19154. name: "Megamacro",
  19155. height: math.unit(35, "km")
  19156. },
  19157. ]
  19158. ))
  19159. characterMakers.push(() => makeCharacter(
  19160. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  19161. {
  19162. front: {
  19163. height: math.unit(6, "feet"),
  19164. weight: math.unit(75, "kg"),
  19165. name: "Front",
  19166. image: {
  19167. source: "./media/characters/linda/front.svg",
  19168. extra: 930 / 874,
  19169. bottom: 0.004
  19170. }
  19171. },
  19172. },
  19173. [
  19174. {
  19175. name: "Normal",
  19176. height: math.unit(6, "feet"),
  19177. default: true
  19178. },
  19179. ]
  19180. ))
  19181. characterMakers.push(() => makeCharacter(
  19182. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  19183. {
  19184. front: {
  19185. height: math.unit(6 + 8 / 12, "feet"),
  19186. weight: math.unit(220, "lb"),
  19187. name: "Front",
  19188. image: {
  19189. source: "./media/characters/caylex/front.svg",
  19190. extra: 821 / 772,
  19191. bottom: 0.07
  19192. }
  19193. },
  19194. back: {
  19195. height: math.unit(6 + 8 / 12, "feet"),
  19196. weight: math.unit(220, "lb"),
  19197. name: "Back",
  19198. image: {
  19199. source: "./media/characters/caylex/back.svg",
  19200. extra: 821 / 772,
  19201. bottom: 0.022
  19202. }
  19203. },
  19204. hand: {
  19205. height: math.unit(1.25, "feet"),
  19206. name: "Hand",
  19207. image: {
  19208. source: "./media/characters/caylex/hand.svg"
  19209. }
  19210. },
  19211. foot: {
  19212. height: math.unit(1.6, "feet"),
  19213. name: "Foot",
  19214. image: {
  19215. source: "./media/characters/caylex/foot.svg"
  19216. }
  19217. },
  19218. armored: {
  19219. height: math.unit(6 + 8 / 12, "feet"),
  19220. weight: math.unit(250, "lb"),
  19221. name: "Armored",
  19222. image: {
  19223. source: "./media/characters/caylex/armored.svg",
  19224. extra: 1420 / 1310,
  19225. bottom: 0.045
  19226. }
  19227. },
  19228. },
  19229. [
  19230. {
  19231. name: "Normal",
  19232. height: math.unit(6 + 8 / 12, "feet"),
  19233. default: true
  19234. },
  19235. {
  19236. name: "Normal+",
  19237. height: math.unit(12, "feet")
  19238. },
  19239. ]
  19240. ))
  19241. characterMakers.push(() => makeCharacter(
  19242. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19243. {
  19244. front: {
  19245. height: math.unit(7 + 6 / 12, "feet"),
  19246. weight: math.unit(288, "lb"),
  19247. name: "Front",
  19248. image: {
  19249. source: "./media/characters/alana/front.svg",
  19250. extra: 679 / 653,
  19251. bottom: 22.5 / 701
  19252. }
  19253. },
  19254. },
  19255. [
  19256. {
  19257. name: "Normal",
  19258. height: math.unit(7 + 6 / 12, "feet")
  19259. },
  19260. {
  19261. name: "Large",
  19262. height: math.unit(50, "feet")
  19263. },
  19264. {
  19265. name: "Macro",
  19266. height: math.unit(100, "feet"),
  19267. default: true
  19268. },
  19269. {
  19270. name: "Macro+",
  19271. height: math.unit(200, "feet")
  19272. },
  19273. ]
  19274. ))
  19275. characterMakers.push(() => makeCharacter(
  19276. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19277. {
  19278. front: {
  19279. height: math.unit(6 + 1 / 12, "feet"),
  19280. weight: math.unit(210, "lb"),
  19281. name: "Front",
  19282. image: {
  19283. source: "./media/characters/hasani/front.svg",
  19284. extra: 244 / 232,
  19285. bottom: 0.01
  19286. }
  19287. },
  19288. back: {
  19289. height: math.unit(6 + 1 / 12, "feet"),
  19290. weight: math.unit(210, "lb"),
  19291. name: "Back",
  19292. image: {
  19293. source: "./media/characters/hasani/back.svg",
  19294. extra: 244 / 232,
  19295. bottom: 0.01
  19296. }
  19297. },
  19298. },
  19299. [
  19300. {
  19301. name: "Normal",
  19302. height: math.unit(6 + 1 / 12, "feet")
  19303. },
  19304. {
  19305. name: "Macro",
  19306. height: math.unit(175, "feet"),
  19307. default: true
  19308. },
  19309. ]
  19310. ))
  19311. characterMakers.push(() => makeCharacter(
  19312. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19313. {
  19314. front: {
  19315. height: math.unit(1.82, "meters"),
  19316. weight: math.unit(140, "lb"),
  19317. name: "Front",
  19318. image: {
  19319. source: "./media/characters/nita/front.svg",
  19320. extra: 2473 / 2363,
  19321. bottom: 0.01
  19322. }
  19323. },
  19324. },
  19325. [
  19326. {
  19327. name: "Normal",
  19328. height: math.unit(1.82, "m")
  19329. },
  19330. {
  19331. name: "Macro",
  19332. height: math.unit(300, "m")
  19333. },
  19334. {
  19335. name: "Mistake Canon",
  19336. height: math.unit(0.5, "miles"),
  19337. default: true
  19338. },
  19339. {
  19340. name: "Big Mistake",
  19341. height: math.unit(13, "miles")
  19342. },
  19343. {
  19344. name: "Playing God",
  19345. height: math.unit(2450, "miles")
  19346. },
  19347. ]
  19348. ))
  19349. characterMakers.push(() => makeCharacter(
  19350. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19351. {
  19352. front: {
  19353. height: math.unit(4, "feet"),
  19354. weight: math.unit(120, "lb"),
  19355. name: "Front",
  19356. image: {
  19357. source: "./media/characters/shiriko/front.svg",
  19358. extra: 970/934,
  19359. bottom: 5/975
  19360. }
  19361. },
  19362. },
  19363. [
  19364. {
  19365. name: "Normal",
  19366. height: math.unit(4, "feet"),
  19367. default: true
  19368. },
  19369. ]
  19370. ))
  19371. characterMakers.push(() => makeCharacter(
  19372. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19373. {
  19374. front: {
  19375. height: math.unit(6, "feet"),
  19376. name: "front",
  19377. image: {
  19378. source: "./media/characters/deja/front.svg",
  19379. extra: 926 / 840,
  19380. bottom: 0.07
  19381. }
  19382. },
  19383. },
  19384. [
  19385. {
  19386. name: "Planck Length",
  19387. height: math.unit(1.6e-35, "meters")
  19388. },
  19389. {
  19390. name: "Normal",
  19391. height: math.unit(30.48, "meters"),
  19392. default: true
  19393. },
  19394. {
  19395. name: "Universal",
  19396. height: math.unit(8.8e26, "meters")
  19397. },
  19398. ]
  19399. ))
  19400. characterMakers.push(() => makeCharacter(
  19401. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19402. {
  19403. side: {
  19404. height: math.unit(8, "feet"),
  19405. weight: math.unit(6300, "lb"),
  19406. name: "Side",
  19407. image: {
  19408. source: "./media/characters/anima/side.svg",
  19409. bottom: 0.035
  19410. }
  19411. },
  19412. },
  19413. [
  19414. {
  19415. name: "Normal",
  19416. height: math.unit(8, "feet"),
  19417. default: true
  19418. },
  19419. ]
  19420. ))
  19421. characterMakers.push(() => makeCharacter(
  19422. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19423. {
  19424. front: {
  19425. height: math.unit(8, "feet"),
  19426. weight: math.unit(350, "lb"),
  19427. name: "Front",
  19428. image: {
  19429. source: "./media/characters/bianca/front.svg",
  19430. extra: 234 / 225,
  19431. bottom: 0.03
  19432. }
  19433. },
  19434. },
  19435. [
  19436. {
  19437. name: "Normal",
  19438. height: math.unit(8, "feet"),
  19439. default: true
  19440. },
  19441. ]
  19442. ))
  19443. characterMakers.push(() => makeCharacter(
  19444. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19445. {
  19446. front: {
  19447. height: math.unit(11 + 5/12, "feet"),
  19448. weight: math.unit(1200, "lb"),
  19449. name: "Front",
  19450. image: {
  19451. source: "./media/characters/adinia/front.svg",
  19452. extra: 1767/1641,
  19453. bottom: 44/1811
  19454. },
  19455. extraAttributes: {
  19456. "energyIntake": {
  19457. name: "Energy Intake",
  19458. power: 3,
  19459. type: "energy",
  19460. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19461. },
  19462. }
  19463. },
  19464. back: {
  19465. height: math.unit(11 + 5/12, "feet"),
  19466. weight: math.unit(1200, "lb"),
  19467. name: "Back",
  19468. image: {
  19469. source: "./media/characters/adinia/back.svg",
  19470. extra: 1834/1684,
  19471. bottom: 14/1848
  19472. },
  19473. extraAttributes: {
  19474. "energyIntake": {
  19475. name: "Energy Intake",
  19476. power: 3,
  19477. type: "energy",
  19478. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19479. },
  19480. }
  19481. },
  19482. maw: {
  19483. height: math.unit(3.79, "feet"),
  19484. name: "Maw",
  19485. image: {
  19486. source: "./media/characters/adinia/maw.svg"
  19487. }
  19488. },
  19489. rump: {
  19490. height: math.unit(4.6, "feet"),
  19491. name: "Rump",
  19492. image: {
  19493. source: "./media/characters/adinia/rump.svg"
  19494. }
  19495. },
  19496. },
  19497. [
  19498. {
  19499. name: "Normal",
  19500. height: math.unit(11 + 5 / 12, "feet"),
  19501. default: true
  19502. },
  19503. ]
  19504. ))
  19505. characterMakers.push(() => makeCharacter(
  19506. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19507. {
  19508. front: {
  19509. height: math.unit(3, "meters"),
  19510. weight: math.unit(200, "kg"),
  19511. name: "Front",
  19512. image: {
  19513. source: "./media/characters/lykasa/front.svg",
  19514. extra: 1076 / 976,
  19515. bottom: 0.06
  19516. }
  19517. },
  19518. },
  19519. [
  19520. {
  19521. name: "Normal",
  19522. height: math.unit(3, "meters")
  19523. },
  19524. {
  19525. name: "Kaiju",
  19526. height: math.unit(120, "meters"),
  19527. default: true
  19528. },
  19529. {
  19530. name: "Mega Kaiju",
  19531. height: math.unit(240, "km")
  19532. },
  19533. {
  19534. name: "Giga Kaiju",
  19535. height: math.unit(400, "megameters")
  19536. },
  19537. {
  19538. name: "Tera Kaiju",
  19539. height: math.unit(800, "gigameters")
  19540. },
  19541. {
  19542. name: "Kaiju Dragon Goddess",
  19543. height: math.unit(26, "zettaparsecs")
  19544. },
  19545. ]
  19546. ))
  19547. characterMakers.push(() => makeCharacter(
  19548. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19549. {
  19550. side: {
  19551. height: math.unit(283 / 124 * 6, "feet"),
  19552. weight: math.unit(35000, "lb"),
  19553. name: "Side",
  19554. image: {
  19555. source: "./media/characters/malfaren/side.svg",
  19556. extra: 1310/529,
  19557. bottom: 24/1334
  19558. }
  19559. },
  19560. front: {
  19561. height: math.unit(22.36, "feet"),
  19562. weight: math.unit(35000, "lb"),
  19563. name: "Front",
  19564. image: {
  19565. source: "./media/characters/malfaren/front.svg",
  19566. extra: 1237/1115,
  19567. bottom: 32/1269
  19568. }
  19569. },
  19570. maw: {
  19571. height: math.unit(6.9, "feet"),
  19572. name: "Maw",
  19573. image: {
  19574. source: "./media/characters/malfaren/maw.svg"
  19575. }
  19576. },
  19577. dick: {
  19578. height: math.unit(6.19, "feet"),
  19579. name: "Dick",
  19580. image: {
  19581. source: "./media/characters/malfaren/dick.svg"
  19582. }
  19583. },
  19584. eye: {
  19585. height: math.unit(0.69, "feet"),
  19586. name: "Eye",
  19587. image: {
  19588. source: "./media/characters/malfaren/eye.svg"
  19589. }
  19590. },
  19591. },
  19592. [
  19593. {
  19594. name: "Big",
  19595. height: math.unit(283 / 162 * 6, "feet"),
  19596. },
  19597. {
  19598. name: "Bigger",
  19599. height: math.unit(283 / 124 * 6, "feet")
  19600. },
  19601. {
  19602. name: "Massive",
  19603. height: math.unit(283 / 92 * 6, "feet"),
  19604. default: true
  19605. },
  19606. {
  19607. name: "👀💦",
  19608. height: math.unit(283 / 73 * 6, "feet"),
  19609. },
  19610. ]
  19611. ))
  19612. characterMakers.push(() => makeCharacter(
  19613. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19614. {
  19615. front: {
  19616. height: math.unit(1.7, "m"),
  19617. weight: math.unit(70, "kg"),
  19618. name: "Front",
  19619. image: {
  19620. source: "./media/characters/kernel/front.svg",
  19621. extra: 222 / 210,
  19622. bottom: 0.007
  19623. }
  19624. },
  19625. },
  19626. [
  19627. {
  19628. name: "Nano",
  19629. height: math.unit(17, "micrometers")
  19630. },
  19631. {
  19632. name: "Micro",
  19633. height: math.unit(1.7, "mm")
  19634. },
  19635. {
  19636. name: "Small",
  19637. height: math.unit(1.7, "cm")
  19638. },
  19639. {
  19640. name: "Normal",
  19641. height: math.unit(1.7, "m"),
  19642. default: true
  19643. },
  19644. ]
  19645. ))
  19646. characterMakers.push(() => makeCharacter(
  19647. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19648. {
  19649. front: {
  19650. height: math.unit(1.75, "meters"),
  19651. weight: math.unit(65, "kg"),
  19652. name: "Front",
  19653. image: {
  19654. source: "./media/characters/jayne-folest/front.svg",
  19655. extra: 2115 / 2007,
  19656. bottom: 0.02
  19657. }
  19658. },
  19659. back: {
  19660. height: math.unit(1.75, "meters"),
  19661. weight: math.unit(65, "kg"),
  19662. name: "Back",
  19663. image: {
  19664. source: "./media/characters/jayne-folest/back.svg",
  19665. extra: 2115 / 2007,
  19666. bottom: 0.005
  19667. }
  19668. },
  19669. frontClothed: {
  19670. height: math.unit(1.75, "meters"),
  19671. weight: math.unit(65, "kg"),
  19672. name: "Front (Clothed)",
  19673. image: {
  19674. source: "./media/characters/jayne-folest/front-clothed.svg",
  19675. extra: 2115 / 2007,
  19676. bottom: 0.035
  19677. }
  19678. },
  19679. hand: {
  19680. height: math.unit(1 / 1.260, "feet"),
  19681. name: "Hand",
  19682. image: {
  19683. source: "./media/characters/jayne-folest/hand.svg"
  19684. }
  19685. },
  19686. foot: {
  19687. height: math.unit(1 / 0.918, "feet"),
  19688. name: "Foot",
  19689. image: {
  19690. source: "./media/characters/jayne-folest/foot.svg"
  19691. }
  19692. },
  19693. },
  19694. [
  19695. {
  19696. name: "Micro",
  19697. height: math.unit(4, "cm")
  19698. },
  19699. {
  19700. name: "Normal",
  19701. height: math.unit(1.75, "meters")
  19702. },
  19703. {
  19704. name: "Macro",
  19705. height: math.unit(47.5, "meters"),
  19706. default: true
  19707. },
  19708. ]
  19709. ))
  19710. characterMakers.push(() => makeCharacter(
  19711. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19712. {
  19713. front: {
  19714. height: math.unit(180, "cm"),
  19715. weight: math.unit(70, "kg"),
  19716. name: "Front",
  19717. image: {
  19718. source: "./media/characters/algier/front.svg",
  19719. extra: 596 / 572,
  19720. bottom: 0.04
  19721. }
  19722. },
  19723. back: {
  19724. height: math.unit(180, "cm"),
  19725. weight: math.unit(70, "kg"),
  19726. name: "Back",
  19727. image: {
  19728. source: "./media/characters/algier/back.svg",
  19729. extra: 596 / 572,
  19730. bottom: 0.025
  19731. }
  19732. },
  19733. frontdressed: {
  19734. height: math.unit(180, "cm"),
  19735. weight: math.unit(150, "kg"),
  19736. name: "Front-dressed",
  19737. image: {
  19738. source: "./media/characters/algier/front-dressed.svg",
  19739. extra: 596 / 572,
  19740. bottom: 0.038
  19741. }
  19742. },
  19743. },
  19744. [
  19745. {
  19746. name: "Micro",
  19747. height: math.unit(5, "cm")
  19748. },
  19749. {
  19750. name: "Normal",
  19751. height: math.unit(180, "cm"),
  19752. default: true
  19753. },
  19754. {
  19755. name: "Macro",
  19756. height: math.unit(64, "m")
  19757. },
  19758. ]
  19759. ))
  19760. characterMakers.push(() => makeCharacter(
  19761. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19762. {
  19763. upright: {
  19764. height: math.unit(7, "feet"),
  19765. weight: math.unit(300, "lb"),
  19766. name: "Upright",
  19767. image: {
  19768. source: "./media/characters/pretzel/upright.svg",
  19769. extra: 534 / 522,
  19770. bottom: 0.065
  19771. }
  19772. },
  19773. sprawling: {
  19774. height: math.unit(3.75, "feet"),
  19775. weight: math.unit(300, "lb"),
  19776. name: "Sprawling",
  19777. image: {
  19778. source: "./media/characters/pretzel/sprawling.svg",
  19779. extra: 314 / 281,
  19780. bottom: 0.1
  19781. }
  19782. },
  19783. tongue: {
  19784. height: math.unit(2, "feet"),
  19785. name: "Tongue",
  19786. image: {
  19787. source: "./media/characters/pretzel/tongue.svg"
  19788. }
  19789. },
  19790. },
  19791. [
  19792. {
  19793. name: "Normal",
  19794. height: math.unit(7, "feet"),
  19795. default: true
  19796. },
  19797. {
  19798. name: "Oversized",
  19799. height: math.unit(15, "feet")
  19800. },
  19801. {
  19802. name: "Huge",
  19803. height: math.unit(30, "feet")
  19804. },
  19805. {
  19806. name: "Macro",
  19807. height: math.unit(250, "feet")
  19808. },
  19809. ]
  19810. ))
  19811. characterMakers.push(() => makeCharacter(
  19812. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19813. {
  19814. sideFront: {
  19815. height: math.unit(5 + 2 / 12, "feet"),
  19816. weight: math.unit(120, "lb"),
  19817. name: "Front Side",
  19818. image: {
  19819. source: "./media/characters/roxi/side-front.svg",
  19820. extra: 2924 / 2717,
  19821. bottom: 0.08
  19822. }
  19823. },
  19824. sideBack: {
  19825. height: math.unit(5 + 2 / 12, "feet"),
  19826. weight: math.unit(120, "lb"),
  19827. name: "Back Side",
  19828. image: {
  19829. source: "./media/characters/roxi/side-back.svg",
  19830. extra: 2904 / 2693,
  19831. bottom: 0.06
  19832. }
  19833. },
  19834. front: {
  19835. height: math.unit(5 + 2 / 12, "feet"),
  19836. weight: math.unit(120, "lb"),
  19837. name: "Front",
  19838. image: {
  19839. source: "./media/characters/roxi/front.svg",
  19840. extra: 2028 / 1907,
  19841. bottom: 0.01
  19842. }
  19843. },
  19844. frontAlt: {
  19845. height: math.unit(5 + 2 / 12, "feet"),
  19846. weight: math.unit(120, "lb"),
  19847. name: "Front (Alt)",
  19848. image: {
  19849. source: "./media/characters/roxi/front-alt.svg",
  19850. extra: 1828 / 1798,
  19851. bottom: 0.01
  19852. }
  19853. },
  19854. sitting: {
  19855. height: math.unit(2.8, "feet"),
  19856. weight: math.unit(120, "lb"),
  19857. name: "Sitting",
  19858. image: {
  19859. source: "./media/characters/roxi/sitting.svg",
  19860. extra: 2660 / 2462,
  19861. bottom: 0.1
  19862. }
  19863. },
  19864. },
  19865. [
  19866. {
  19867. name: "Normal",
  19868. height: math.unit(5 + 2 / 12, "feet"),
  19869. default: true
  19870. },
  19871. ]
  19872. ))
  19873. characterMakers.push(() => makeCharacter(
  19874. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19875. {
  19876. side: {
  19877. height: math.unit(55, "feet"),
  19878. weight: math.unit(153, "tons"),
  19879. name: "Side",
  19880. image: {
  19881. source: "./media/characters/shadow/side.svg",
  19882. extra: 701 / 628,
  19883. bottom: 0.02
  19884. }
  19885. },
  19886. flying: {
  19887. height: math.unit(145, "feet"),
  19888. weight: math.unit(153, "tons"),
  19889. name: "Flying",
  19890. image: {
  19891. source: "./media/characters/shadow/flying.svg"
  19892. }
  19893. },
  19894. },
  19895. [
  19896. {
  19897. name: "Normal",
  19898. height: math.unit(55, "feet"),
  19899. default: true
  19900. },
  19901. ]
  19902. ))
  19903. characterMakers.push(() => makeCharacter(
  19904. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19905. {
  19906. front: {
  19907. height: math.unit(6, "feet"),
  19908. weight: math.unit(200, "lb"),
  19909. name: "Front",
  19910. image: {
  19911. source: "./media/characters/marcie/front.svg",
  19912. extra: 960 / 876,
  19913. bottom: 58 / 1017.87
  19914. }
  19915. },
  19916. },
  19917. [
  19918. {
  19919. name: "Macro",
  19920. height: math.unit(1, "mile"),
  19921. default: true
  19922. },
  19923. ]
  19924. ))
  19925. characterMakers.push(() => makeCharacter(
  19926. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19927. {
  19928. front: {
  19929. height: math.unit(7, "feet"),
  19930. weight: math.unit(200, "lb"),
  19931. name: "Front",
  19932. image: {
  19933. source: "./media/characters/kachina/front.svg",
  19934. extra: 1290.68 / 1119,
  19935. bottom: 36.5 / 1327.18
  19936. }
  19937. },
  19938. },
  19939. [
  19940. {
  19941. name: "Normal",
  19942. height: math.unit(7, "feet"),
  19943. default: true
  19944. },
  19945. ]
  19946. ))
  19947. characterMakers.push(() => makeCharacter(
  19948. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19949. {
  19950. looking: {
  19951. height: math.unit(2, "meters"),
  19952. weight: math.unit(300, "kg"),
  19953. name: "Looking",
  19954. image: {
  19955. source: "./media/characters/kash/looking.svg",
  19956. extra: 474 / 344,
  19957. bottom: 0.03
  19958. }
  19959. },
  19960. side: {
  19961. height: math.unit(2, "meters"),
  19962. weight: math.unit(300, "kg"),
  19963. name: "Side",
  19964. image: {
  19965. source: "./media/characters/kash/side.svg",
  19966. extra: 302 / 251,
  19967. bottom: 0.03
  19968. }
  19969. },
  19970. front: {
  19971. height: math.unit(2, "meters"),
  19972. weight: math.unit(300, "kg"),
  19973. name: "Front",
  19974. image: {
  19975. source: "./media/characters/kash/front.svg",
  19976. extra: 495 / 360,
  19977. bottom: 0.015
  19978. }
  19979. },
  19980. },
  19981. [
  19982. {
  19983. name: "Normal",
  19984. height: math.unit(2, "meters"),
  19985. default: true
  19986. },
  19987. {
  19988. name: "Big",
  19989. height: math.unit(3, "meters")
  19990. },
  19991. {
  19992. name: "Large",
  19993. height: math.unit(5, "meters")
  19994. },
  19995. ]
  19996. ))
  19997. characterMakers.push(() => makeCharacter(
  19998. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19999. {
  20000. feeding: {
  20001. height: math.unit(6.7, "feet"),
  20002. weight: math.unit(350, "lb"),
  20003. name: "Feeding",
  20004. image: {
  20005. source: "./media/characters/lalim/feeding.svg",
  20006. }
  20007. },
  20008. },
  20009. [
  20010. {
  20011. name: "Normal",
  20012. height: math.unit(6.7, "feet"),
  20013. default: true
  20014. },
  20015. ]
  20016. ))
  20017. characterMakers.push(() => makeCharacter(
  20018. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  20019. {
  20020. front: {
  20021. height: math.unit(9.5, "feet"),
  20022. weight: math.unit(600, "lb"),
  20023. name: "Front",
  20024. image: {
  20025. source: "./media/characters/de'vout/front.svg",
  20026. extra: 1443 / 1328,
  20027. bottom: 0.025
  20028. }
  20029. },
  20030. back: {
  20031. height: math.unit(9.5, "feet"),
  20032. weight: math.unit(600, "lb"),
  20033. name: "Back",
  20034. image: {
  20035. source: "./media/characters/de'vout/back.svg",
  20036. extra: 1443 / 1328
  20037. }
  20038. },
  20039. frontDressed: {
  20040. height: math.unit(9.5, "feet"),
  20041. weight: math.unit(600, "lb"),
  20042. name: "Front (Dressed",
  20043. image: {
  20044. source: "./media/characters/de'vout/front-dressed.svg",
  20045. extra: 1443 / 1328,
  20046. bottom: 0.025
  20047. }
  20048. },
  20049. backDressed: {
  20050. height: math.unit(9.5, "feet"),
  20051. weight: math.unit(600, "lb"),
  20052. name: "Back (Dressed",
  20053. image: {
  20054. source: "./media/characters/de'vout/back-dressed.svg",
  20055. extra: 1443 / 1328
  20056. }
  20057. },
  20058. },
  20059. [
  20060. {
  20061. name: "Normal",
  20062. height: math.unit(9.5, "feet"),
  20063. default: true
  20064. },
  20065. ]
  20066. ))
  20067. characterMakers.push(() => makeCharacter(
  20068. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  20069. {
  20070. front: {
  20071. height: math.unit(8, "feet"),
  20072. weight: math.unit(225, "lb"),
  20073. name: "Front",
  20074. image: {
  20075. source: "./media/characters/talana/front.svg",
  20076. extra: 1410 / 1300,
  20077. bottom: 0.015
  20078. }
  20079. },
  20080. frontDressed: {
  20081. height: math.unit(8, "feet"),
  20082. weight: math.unit(225, "lb"),
  20083. name: "Front (Dressed",
  20084. image: {
  20085. source: "./media/characters/talana/front-dressed.svg",
  20086. extra: 1410 / 1300,
  20087. bottom: 0.015
  20088. }
  20089. },
  20090. },
  20091. [
  20092. {
  20093. name: "Normal",
  20094. height: math.unit(8, "feet"),
  20095. default: true
  20096. },
  20097. ]
  20098. ))
  20099. characterMakers.push(() => makeCharacter(
  20100. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  20101. {
  20102. side: {
  20103. height: math.unit(7.2, "feet"),
  20104. weight: math.unit(150, "lb"),
  20105. name: "Side",
  20106. image: {
  20107. source: "./media/characters/xeauvok/side.svg",
  20108. extra: 1975 / 1523,
  20109. bottom: 0.07
  20110. }
  20111. },
  20112. },
  20113. [
  20114. {
  20115. name: "Normal",
  20116. height: math.unit(7.2, "feet"),
  20117. default: true
  20118. },
  20119. ]
  20120. ))
  20121. characterMakers.push(() => makeCharacter(
  20122. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  20123. {
  20124. side: {
  20125. height: math.unit(4, "meters"),
  20126. weight: math.unit(2200, "kg"),
  20127. name: "Side",
  20128. image: {
  20129. source: "./media/characters/zara/side.svg",
  20130. extra: 765/744,
  20131. bottom: 156/921
  20132. }
  20133. },
  20134. },
  20135. [
  20136. {
  20137. name: "Normal",
  20138. height: math.unit(4, "meters"),
  20139. default: true
  20140. },
  20141. ]
  20142. ))
  20143. characterMakers.push(() => makeCharacter(
  20144. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  20145. {
  20146. side: {
  20147. height: math.unit(6, "feet"),
  20148. weight: math.unit(150, "lb"),
  20149. name: "Side",
  20150. image: {
  20151. source: "./media/characters/richard-dragon/side.svg",
  20152. extra: 845 / 340,
  20153. bottom: 0.017
  20154. }
  20155. },
  20156. maw: {
  20157. height: math.unit(2.97, "feet"),
  20158. name: "Maw",
  20159. image: {
  20160. source: "./media/characters/richard-dragon/maw.svg"
  20161. }
  20162. },
  20163. },
  20164. [
  20165. ]
  20166. ))
  20167. characterMakers.push(() => makeCharacter(
  20168. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  20169. {
  20170. front: {
  20171. height: math.unit(4, "feet"),
  20172. weight: math.unit(100, "lb"),
  20173. name: "Front",
  20174. image: {
  20175. source: "./media/characters/richard-smeargle/front.svg",
  20176. extra: 2952 / 2820,
  20177. bottom: 0.028
  20178. }
  20179. },
  20180. },
  20181. [
  20182. {
  20183. name: "Normal",
  20184. height: math.unit(4, "feet"),
  20185. default: true
  20186. },
  20187. {
  20188. name: "Dynamax",
  20189. height: math.unit(20, "meters")
  20190. },
  20191. ]
  20192. ))
  20193. characterMakers.push(() => makeCharacter(
  20194. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  20195. {
  20196. front: {
  20197. height: math.unit(6, "feet"),
  20198. weight: math.unit(110, "lb"),
  20199. name: "Front",
  20200. image: {
  20201. source: "./media/characters/klay/front.svg",
  20202. extra: 962 / 883,
  20203. bottom: 0.04
  20204. }
  20205. },
  20206. back: {
  20207. height: math.unit(6, "feet"),
  20208. weight: math.unit(110, "lb"),
  20209. name: "Back",
  20210. image: {
  20211. source: "./media/characters/klay/back.svg",
  20212. extra: 962 / 883
  20213. }
  20214. },
  20215. beans: {
  20216. height: math.unit(1.15, "feet"),
  20217. name: "Beans",
  20218. image: {
  20219. source: "./media/characters/klay/beans.svg"
  20220. }
  20221. },
  20222. },
  20223. [
  20224. {
  20225. name: "Micro",
  20226. height: math.unit(6, "inches")
  20227. },
  20228. {
  20229. name: "Mini",
  20230. height: math.unit(3, "feet")
  20231. },
  20232. {
  20233. name: "Normal",
  20234. height: math.unit(6, "feet"),
  20235. default: true
  20236. },
  20237. {
  20238. name: "Big",
  20239. height: math.unit(25, "feet")
  20240. },
  20241. {
  20242. name: "Macro",
  20243. height: math.unit(100, "feet")
  20244. },
  20245. {
  20246. name: "Megamacro",
  20247. height: math.unit(400, "feet")
  20248. },
  20249. ]
  20250. ))
  20251. characterMakers.push(() => makeCharacter(
  20252. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20253. {
  20254. front: {
  20255. height: math.unit(6, "feet"),
  20256. weight: math.unit(160, "lb"),
  20257. name: "Front",
  20258. image: {
  20259. source: "./media/characters/marcus/front.svg",
  20260. extra: 734 / 676,
  20261. bottom: 0.03
  20262. }
  20263. },
  20264. },
  20265. [
  20266. {
  20267. name: "Little",
  20268. height: math.unit(6, "feet")
  20269. },
  20270. {
  20271. name: "Normal",
  20272. height: math.unit(110, "feet"),
  20273. default: true
  20274. },
  20275. {
  20276. name: "Macro",
  20277. height: math.unit(250, "feet")
  20278. },
  20279. {
  20280. name: "Megamacro",
  20281. height: math.unit(1000, "feet")
  20282. },
  20283. ]
  20284. ))
  20285. characterMakers.push(() => makeCharacter(
  20286. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20287. {
  20288. front: {
  20289. height: math.unit(7, "feet"),
  20290. weight: math.unit(275, "lb"),
  20291. name: "Front",
  20292. image: {
  20293. source: "./media/characters/claude-delroute/front.svg",
  20294. extra: 902/827,
  20295. bottom: 26/928
  20296. }
  20297. },
  20298. side: {
  20299. height: math.unit(7, "feet"),
  20300. weight: math.unit(275, "lb"),
  20301. name: "Side",
  20302. image: {
  20303. source: "./media/characters/claude-delroute/side.svg",
  20304. extra: 908/853,
  20305. bottom: 16/924
  20306. }
  20307. },
  20308. back: {
  20309. height: math.unit(7, "feet"),
  20310. weight: math.unit(275, "lb"),
  20311. name: "Back",
  20312. image: {
  20313. source: "./media/characters/claude-delroute/back.svg",
  20314. extra: 911/829,
  20315. bottom: 18/929
  20316. }
  20317. },
  20318. maw: {
  20319. height: math.unit(0.6407, "meters"),
  20320. name: "Maw",
  20321. image: {
  20322. source: "./media/characters/claude-delroute/maw.svg"
  20323. }
  20324. },
  20325. },
  20326. [
  20327. {
  20328. name: "Normal",
  20329. height: math.unit(7, "feet"),
  20330. default: true
  20331. },
  20332. {
  20333. name: "Lorge",
  20334. height: math.unit(20, "feet")
  20335. },
  20336. ]
  20337. ))
  20338. characterMakers.push(() => makeCharacter(
  20339. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20340. {
  20341. front: {
  20342. height: math.unit(8 + 4 / 12, "feet"),
  20343. weight: math.unit(600, "lb"),
  20344. name: "Front",
  20345. image: {
  20346. source: "./media/characters/dragonien/front.svg",
  20347. extra: 100 / 94,
  20348. bottom: 3.3 / 103.3445
  20349. }
  20350. },
  20351. back: {
  20352. height: math.unit(8 + 4 / 12, "feet"),
  20353. weight: math.unit(600, "lb"),
  20354. name: "Back",
  20355. image: {
  20356. source: "./media/characters/dragonien/back.svg",
  20357. extra: 776 / 746,
  20358. bottom: 6.4 / 782.0616
  20359. }
  20360. },
  20361. foot: {
  20362. height: math.unit(1.54, "feet"),
  20363. name: "Foot",
  20364. image: {
  20365. source: "./media/characters/dragonien/foot.svg",
  20366. }
  20367. },
  20368. },
  20369. [
  20370. {
  20371. name: "Normal",
  20372. height: math.unit(8 + 4 / 12, "feet"),
  20373. default: true
  20374. },
  20375. {
  20376. name: "Macro",
  20377. height: math.unit(200, "feet")
  20378. },
  20379. {
  20380. name: "Megamacro",
  20381. height: math.unit(1, "mile")
  20382. },
  20383. {
  20384. name: "Gigamacro",
  20385. height: math.unit(1000, "miles")
  20386. },
  20387. ]
  20388. ))
  20389. characterMakers.push(() => makeCharacter(
  20390. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20391. {
  20392. front: {
  20393. height: math.unit(5 + 2 / 12, "feet"),
  20394. weight: math.unit(110, "lb"),
  20395. name: "Front",
  20396. image: {
  20397. source: "./media/characters/desta/front.svg",
  20398. extra: 767 / 726,
  20399. bottom: 11.7 / 779
  20400. }
  20401. },
  20402. back: {
  20403. height: math.unit(5 + 2 / 12, "feet"),
  20404. weight: math.unit(110, "lb"),
  20405. name: "Back",
  20406. image: {
  20407. source: "./media/characters/desta/back.svg",
  20408. extra: 777 / 728,
  20409. bottom: 6 / 784
  20410. }
  20411. },
  20412. frontAlt: {
  20413. height: math.unit(5 + 2 / 12, "feet"),
  20414. weight: math.unit(110, "lb"),
  20415. name: "Front",
  20416. image: {
  20417. source: "./media/characters/desta/front-alt.svg",
  20418. extra: 1482 / 1417
  20419. }
  20420. },
  20421. side: {
  20422. height: math.unit(5 + 2 / 12, "feet"),
  20423. weight: math.unit(110, "lb"),
  20424. name: "Side",
  20425. image: {
  20426. source: "./media/characters/desta/side.svg",
  20427. extra: 2579 / 2491,
  20428. bottom: 0.053
  20429. }
  20430. },
  20431. },
  20432. [
  20433. {
  20434. name: "Micro",
  20435. height: math.unit(6, "inches")
  20436. },
  20437. {
  20438. name: "Normal",
  20439. height: math.unit(5 + 2 / 12, "feet"),
  20440. default: true
  20441. },
  20442. {
  20443. name: "Macro",
  20444. height: math.unit(62, "feet")
  20445. },
  20446. {
  20447. name: "Megamacro",
  20448. height: math.unit(1800, "feet")
  20449. },
  20450. ]
  20451. ))
  20452. characterMakers.push(() => makeCharacter(
  20453. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20454. {
  20455. front: {
  20456. height: math.unit(10, "feet"),
  20457. weight: math.unit(700, "lb"),
  20458. name: "Front",
  20459. image: {
  20460. source: "./media/characters/storm-alystar/front.svg",
  20461. extra: 2112 / 1898,
  20462. bottom: 0.034
  20463. }
  20464. },
  20465. },
  20466. [
  20467. {
  20468. name: "Micro",
  20469. height: math.unit(3.5, "inches")
  20470. },
  20471. {
  20472. name: "Normal",
  20473. height: math.unit(10, "feet"),
  20474. default: true
  20475. },
  20476. {
  20477. name: "Macro",
  20478. height: math.unit(400, "feet")
  20479. },
  20480. {
  20481. name: "Deific",
  20482. height: math.unit(60, "miles")
  20483. },
  20484. ]
  20485. ))
  20486. characterMakers.push(() => makeCharacter(
  20487. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20488. {
  20489. front: {
  20490. height: math.unit(2.35, "meters"),
  20491. weight: math.unit(119, "kg"),
  20492. name: "Front",
  20493. image: {
  20494. source: "./media/characters/ilia/front.svg",
  20495. extra: 1285 / 1255,
  20496. bottom: 0.06
  20497. }
  20498. },
  20499. },
  20500. [
  20501. {
  20502. name: "Normal",
  20503. height: math.unit(2.35, "meters")
  20504. },
  20505. {
  20506. name: "Macro",
  20507. height: math.unit(140, "meters"),
  20508. default: true
  20509. },
  20510. {
  20511. name: "Megamacro",
  20512. height: math.unit(100, "miles")
  20513. },
  20514. ]
  20515. ))
  20516. characterMakers.push(() => makeCharacter(
  20517. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20518. {
  20519. front: {
  20520. height: math.unit(6 + 5 / 12, "feet"),
  20521. weight: math.unit(190, "lb"),
  20522. name: "Front",
  20523. image: {
  20524. source: "./media/characters/kingdead/front.svg",
  20525. extra: 1228 / 1177
  20526. }
  20527. },
  20528. },
  20529. [
  20530. {
  20531. name: "Micro",
  20532. height: math.unit(7, "inches")
  20533. },
  20534. {
  20535. name: "Normal",
  20536. height: math.unit(6 + 5 / 12, "feet")
  20537. },
  20538. {
  20539. name: "Macro",
  20540. height: math.unit(150, "feet"),
  20541. default: true
  20542. },
  20543. {
  20544. name: "Megamacro",
  20545. height: math.unit(200, "miles")
  20546. },
  20547. ]
  20548. ))
  20549. characterMakers.push(() => makeCharacter(
  20550. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20551. {
  20552. front: {
  20553. height: math.unit(8, "feet"),
  20554. weight: math.unit(600, "lb"),
  20555. name: "Front",
  20556. image: {
  20557. source: "./media/characters/kyrehx/front.svg",
  20558. extra: 1195 / 1095,
  20559. bottom: 0.034
  20560. }
  20561. },
  20562. },
  20563. [
  20564. {
  20565. name: "Micro",
  20566. height: math.unit(2, "inches")
  20567. },
  20568. {
  20569. name: "Normal",
  20570. height: math.unit(8, "feet"),
  20571. default: true
  20572. },
  20573. {
  20574. name: "Macro",
  20575. height: math.unit(255, "feet")
  20576. },
  20577. ]
  20578. ))
  20579. characterMakers.push(() => makeCharacter(
  20580. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20581. {
  20582. front: {
  20583. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20584. weight: math.unit(184, "lb"),
  20585. name: "Front",
  20586. image: {
  20587. source: "./media/characters/xang/front.svg",
  20588. extra: 845 / 755
  20589. }
  20590. },
  20591. },
  20592. [
  20593. {
  20594. name: "Normal",
  20595. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20596. default: true
  20597. },
  20598. {
  20599. name: "Macro",
  20600. height: math.unit(0.935 * 146, "feet")
  20601. },
  20602. {
  20603. name: "Megamacro",
  20604. height: math.unit(0.935 * 3, "miles")
  20605. },
  20606. ]
  20607. ))
  20608. characterMakers.push(() => makeCharacter(
  20609. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20610. {
  20611. frontDressed: {
  20612. height: math.unit(5 + 7 / 12, "feet"),
  20613. weight: math.unit(140, "lb"),
  20614. name: "Front (Dressed)",
  20615. image: {
  20616. source: "./media/characters/doc-weardno/front-dressed.svg",
  20617. extra: 263 / 234
  20618. }
  20619. },
  20620. backDressed: {
  20621. height: math.unit(5 + 7 / 12, "feet"),
  20622. weight: math.unit(140, "lb"),
  20623. name: "Back (Dressed)",
  20624. image: {
  20625. source: "./media/characters/doc-weardno/back-dressed.svg",
  20626. extra: 266 / 238
  20627. }
  20628. },
  20629. front: {
  20630. height: math.unit(5 + 7 / 12, "feet"),
  20631. weight: math.unit(140, "lb"),
  20632. name: "Front",
  20633. image: {
  20634. source: "./media/characters/doc-weardno/front.svg",
  20635. extra: 254 / 233
  20636. }
  20637. },
  20638. },
  20639. [
  20640. {
  20641. name: "Micro",
  20642. height: math.unit(3, "inches")
  20643. },
  20644. {
  20645. name: "Normal",
  20646. height: math.unit(5 + 7 / 12, "feet"),
  20647. default: true
  20648. },
  20649. {
  20650. name: "Macro",
  20651. height: math.unit(25, "feet")
  20652. },
  20653. {
  20654. name: "Megamacro",
  20655. height: math.unit(2, "miles")
  20656. },
  20657. ]
  20658. ))
  20659. characterMakers.push(() => makeCharacter(
  20660. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20661. {
  20662. front: {
  20663. height: math.unit(6 + 2 / 12, "feet"),
  20664. weight: math.unit(153, "lb"),
  20665. name: "Front",
  20666. image: {
  20667. source: "./media/characters/seth-whilst/front.svg",
  20668. bottom: 0.07
  20669. }
  20670. },
  20671. },
  20672. [
  20673. {
  20674. name: "Micro",
  20675. height: math.unit(5, "inches")
  20676. },
  20677. {
  20678. name: "Normal",
  20679. height: math.unit(6 + 2 / 12, "feet"),
  20680. default: true
  20681. },
  20682. ]
  20683. ))
  20684. characterMakers.push(() => makeCharacter(
  20685. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20686. {
  20687. front: {
  20688. height: math.unit(3, "inches"),
  20689. weight: math.unit(8, "grams"),
  20690. name: "Front",
  20691. image: {
  20692. source: "./media/characters/pocket-jabari/front.svg",
  20693. extra: 1024 / 974,
  20694. bottom: 0.039
  20695. }
  20696. },
  20697. },
  20698. [
  20699. {
  20700. name: "Minimicro",
  20701. height: math.unit(8, "mm")
  20702. },
  20703. {
  20704. name: "Micro",
  20705. height: math.unit(3, "inches"),
  20706. default: true
  20707. },
  20708. {
  20709. name: "Normal",
  20710. height: math.unit(3, "feet")
  20711. },
  20712. ]
  20713. ))
  20714. characterMakers.push(() => makeCharacter(
  20715. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20716. {
  20717. frontDressed: {
  20718. height: math.unit(15, "feet"),
  20719. weight: math.unit(3280, "lb"),
  20720. name: "Front (Dressed)",
  20721. image: {
  20722. source: "./media/characters/sapphy/front-dressed.svg",
  20723. extra: 1951/1654,
  20724. bottom: 194/2145
  20725. },
  20726. form: "anthro",
  20727. default: true
  20728. },
  20729. backDressed: {
  20730. height: math.unit(15, "feet"),
  20731. weight: math.unit(3280, "lb"),
  20732. name: "Back (Dressed)",
  20733. image: {
  20734. source: "./media/characters/sapphy/back-dressed.svg",
  20735. extra: 2058/1918,
  20736. bottom: 125/2183
  20737. },
  20738. form: "anthro"
  20739. },
  20740. frontNude: {
  20741. height: math.unit(15, "feet"),
  20742. weight: math.unit(3280, "lb"),
  20743. name: "Front (Nude)",
  20744. image: {
  20745. source: "./media/characters/sapphy/front-nude.svg",
  20746. extra: 1951/1654,
  20747. bottom: 194/2145
  20748. },
  20749. form: "anthro"
  20750. },
  20751. backNude: {
  20752. height: math.unit(15, "feet"),
  20753. weight: math.unit(3280, "lb"),
  20754. name: "Back (Nude)",
  20755. image: {
  20756. source: "./media/characters/sapphy/back-nude.svg",
  20757. extra: 2058/1918,
  20758. bottom: 125/2183
  20759. },
  20760. form: "anthro"
  20761. },
  20762. full: {
  20763. height: math.unit(15, "feet"),
  20764. weight: math.unit(3280, "lb"),
  20765. name: "Full",
  20766. image: {
  20767. source: "./media/characters/sapphy/full.svg",
  20768. extra: 1396/1317,
  20769. bottom: 44/1440
  20770. },
  20771. form: "anthro"
  20772. },
  20773. dick: {
  20774. height: math.unit(3.8, "feet"),
  20775. name: "Dick",
  20776. image: {
  20777. source: "./media/characters/sapphy/dick.svg"
  20778. },
  20779. form: "anthro"
  20780. },
  20781. feral: {
  20782. height: math.unit(35, "feet"),
  20783. weight: math.unit(160, "tons"),
  20784. name: "Feral",
  20785. image: {
  20786. source: "./media/characters/sapphy/feral.svg",
  20787. extra: 1050/573,
  20788. bottom: 60/1110
  20789. },
  20790. form: "feral",
  20791. default: true
  20792. },
  20793. },
  20794. [
  20795. {
  20796. name: "Normal",
  20797. height: math.unit(15, "feet"),
  20798. form: "anthro"
  20799. },
  20800. {
  20801. name: "Casual Macro",
  20802. height: math.unit(120, "feet"),
  20803. form: "anthro"
  20804. },
  20805. {
  20806. name: "Macro",
  20807. height: math.unit(2150, "feet"),
  20808. default: true,
  20809. form: "anthro"
  20810. },
  20811. {
  20812. name: "Megamacro",
  20813. height: math.unit(8, "miles"),
  20814. form: "anthro"
  20815. },
  20816. {
  20817. name: "Galaxy Mom",
  20818. height: math.unit(6, "megalightyears"),
  20819. form: "anthro"
  20820. },
  20821. {
  20822. name: "Normal",
  20823. height: math.unit(35, "feet"),
  20824. form: "feral",
  20825. default: true
  20826. },
  20827. {
  20828. name: "Macro",
  20829. height: math.unit(300, "feet"),
  20830. form: "feral"
  20831. },
  20832. {
  20833. name: "Galaxy Mom",
  20834. height: math.unit(10, "megalightyears"),
  20835. form: "feral"
  20836. },
  20837. ],
  20838. {
  20839. "anthro": {
  20840. name: "Anthro",
  20841. default: true
  20842. },
  20843. "feral": {
  20844. name: "Feral"
  20845. }
  20846. }
  20847. ))
  20848. characterMakers.push(() => makeCharacter(
  20849. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20850. {
  20851. hyenaFront: {
  20852. height: math.unit(6, "feet"),
  20853. weight: math.unit(190, "lb"),
  20854. name: "Front",
  20855. image: {
  20856. source: "./media/characters/kiro/hyena-front.svg",
  20857. extra: 927/839,
  20858. bottom: 91/1018
  20859. },
  20860. form: "hyena",
  20861. default: true
  20862. },
  20863. front: {
  20864. height: math.unit(6, "feet"),
  20865. weight: math.unit(170, "lb"),
  20866. name: "Front",
  20867. image: {
  20868. source: "./media/characters/kiro/front.svg",
  20869. extra: 1064 / 1012,
  20870. bottom: 0.052
  20871. },
  20872. form: "folf",
  20873. default: true
  20874. },
  20875. },
  20876. [
  20877. {
  20878. name: "Micro",
  20879. height: math.unit(6, "inches"),
  20880. form: "folf"
  20881. },
  20882. {
  20883. name: "Normal",
  20884. height: math.unit(6, "feet"),
  20885. form: "folf",
  20886. default: true
  20887. },
  20888. {
  20889. name: "Macro",
  20890. height: math.unit(72, "feet"),
  20891. form: "folf"
  20892. },
  20893. {
  20894. name: "Micro",
  20895. height: math.unit(6, "inches"),
  20896. form: "hyena"
  20897. },
  20898. {
  20899. name: "Normal",
  20900. height: math.unit(6, "feet"),
  20901. form: "hyena",
  20902. default: true
  20903. },
  20904. {
  20905. name: "Macro",
  20906. height: math.unit(72, "feet"),
  20907. form: "hyena"
  20908. },
  20909. ],
  20910. {
  20911. "hyena": {
  20912. name: "Hyena",
  20913. default: true
  20914. },
  20915. "folf": {
  20916. name: "Folf",
  20917. },
  20918. }
  20919. ))
  20920. characterMakers.push(() => makeCharacter(
  20921. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20922. {
  20923. front: {
  20924. height: math.unit(5 + 9 / 12, "feet"),
  20925. weight: math.unit(175, "lb"),
  20926. name: "Front",
  20927. image: {
  20928. source: "./media/characters/irishfox/front.svg",
  20929. extra: 1912 / 1680,
  20930. bottom: 0.02
  20931. }
  20932. },
  20933. },
  20934. [
  20935. {
  20936. name: "Nano",
  20937. height: math.unit(1, "mm")
  20938. },
  20939. {
  20940. name: "Micro",
  20941. height: math.unit(2, "inches")
  20942. },
  20943. {
  20944. name: "Normal",
  20945. height: math.unit(5 + 9 / 12, "feet"),
  20946. default: true
  20947. },
  20948. {
  20949. name: "Macro",
  20950. height: math.unit(45, "feet")
  20951. },
  20952. ]
  20953. ))
  20954. characterMakers.push(() => makeCharacter(
  20955. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20956. {
  20957. front: {
  20958. height: math.unit(6 + 1 / 12, "feet"),
  20959. weight: math.unit(75, "lb"),
  20960. name: "Front",
  20961. image: {
  20962. source: "./media/characters/aronai-sieyes/front.svg",
  20963. extra: 1532/1450,
  20964. bottom: 42/1574
  20965. }
  20966. },
  20967. side: {
  20968. height: math.unit(6 + 1 / 12, "feet"),
  20969. weight: math.unit(75, "lb"),
  20970. name: "Side",
  20971. image: {
  20972. source: "./media/characters/aronai-sieyes/side.svg",
  20973. extra: 1422/1365,
  20974. bottom: 148/1570
  20975. }
  20976. },
  20977. back: {
  20978. height: math.unit(6 + 1 / 12, "feet"),
  20979. weight: math.unit(75, "lb"),
  20980. name: "Back",
  20981. image: {
  20982. source: "./media/characters/aronai-sieyes/back.svg",
  20983. extra: 1526/1464,
  20984. bottom: 51/1577
  20985. }
  20986. },
  20987. dressed: {
  20988. height: math.unit(6 + 1 / 12, "feet"),
  20989. weight: math.unit(75, "lb"),
  20990. name: "Dressed",
  20991. image: {
  20992. source: "./media/characters/aronai-sieyes/dressed.svg",
  20993. extra: 1559/1483,
  20994. bottom: 39/1598
  20995. }
  20996. },
  20997. slit: {
  20998. height: math.unit(1.3, "feet"),
  20999. name: "Slit",
  21000. image: {
  21001. source: "./media/characters/aronai-sieyes/slit.svg"
  21002. }
  21003. },
  21004. slitSpread: {
  21005. height: math.unit(0.9, "feet"),
  21006. name: "Slit (Spread)",
  21007. image: {
  21008. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  21009. }
  21010. },
  21011. rump: {
  21012. height: math.unit(1.3, "feet"),
  21013. name: "Rump",
  21014. image: {
  21015. source: "./media/characters/aronai-sieyes/rump.svg"
  21016. }
  21017. },
  21018. maw: {
  21019. height: math.unit(1.25, "feet"),
  21020. name: "Maw",
  21021. image: {
  21022. source: "./media/characters/aronai-sieyes/maw.svg"
  21023. }
  21024. },
  21025. feral: {
  21026. height: math.unit(18, "feet"),
  21027. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  21028. name: "Feral",
  21029. image: {
  21030. source: "./media/characters/aronai-sieyes/feral.svg",
  21031. extra: 1530 / 1240,
  21032. bottom: 0.035
  21033. }
  21034. },
  21035. },
  21036. [
  21037. {
  21038. name: "Micro",
  21039. height: math.unit(2, "inches")
  21040. },
  21041. {
  21042. name: "Normal",
  21043. height: math.unit(6 + 1 / 12, "feet"),
  21044. default: true
  21045. }
  21046. ]
  21047. ))
  21048. characterMakers.push(() => makeCharacter(
  21049. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  21050. {
  21051. front: {
  21052. height: math.unit(12, "feet"),
  21053. weight: math.unit(410, "kg"),
  21054. name: "Front",
  21055. image: {
  21056. source: "./media/characters/xuna/front.svg",
  21057. extra: 2184 / 1980
  21058. }
  21059. },
  21060. side: {
  21061. height: math.unit(12, "feet"),
  21062. weight: math.unit(410, "kg"),
  21063. name: "Side",
  21064. image: {
  21065. source: "./media/characters/xuna/side.svg",
  21066. extra: 2184 / 1980
  21067. }
  21068. },
  21069. back: {
  21070. height: math.unit(12, "feet"),
  21071. weight: math.unit(410, "kg"),
  21072. name: "Back",
  21073. image: {
  21074. source: "./media/characters/xuna/back.svg",
  21075. extra: 2184 / 1980
  21076. }
  21077. },
  21078. },
  21079. [
  21080. {
  21081. name: "Nano glow",
  21082. height: math.unit(10, "nm")
  21083. },
  21084. {
  21085. name: "Micro floof",
  21086. height: math.unit(0.3, "m")
  21087. },
  21088. {
  21089. name: "Huggable softy boi",
  21090. height: math.unit(3.6576, "m"),
  21091. default: true
  21092. },
  21093. {
  21094. name: "Admirable floof",
  21095. height: math.unit(80, "meters")
  21096. },
  21097. {
  21098. name: "Gentle macro",
  21099. height: math.unit(300, "meters")
  21100. },
  21101. {
  21102. name: "Very careful floof",
  21103. height: math.unit(3200, "meters")
  21104. },
  21105. {
  21106. name: "The mega floof",
  21107. height: math.unit(36000, "meters")
  21108. },
  21109. {
  21110. name: "Giga-fur-Wicker",
  21111. height: math.unit(4800000, "meters")
  21112. },
  21113. {
  21114. name: "Licky world",
  21115. height: math.unit(20000000, "meters")
  21116. },
  21117. {
  21118. name: "Floofy cyan sun",
  21119. height: math.unit(1500000000, "meters")
  21120. },
  21121. {
  21122. name: "Milky Wicker",
  21123. height: math.unit(1000000000000000000000, "meters")
  21124. },
  21125. {
  21126. name: "The observing Wicker",
  21127. height: math.unit(999999999999999999999999999, "meters")
  21128. },
  21129. ]
  21130. ))
  21131. characterMakers.push(() => makeCharacter(
  21132. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21133. {
  21134. front: {
  21135. height: math.unit(5 + 9 / 12, "feet"),
  21136. weight: math.unit(150, "lb"),
  21137. name: "Front",
  21138. image: {
  21139. source: "./media/characters/arokha-sieyes/front.svg",
  21140. extra: 1425 / 1284,
  21141. bottom: 0.05
  21142. }
  21143. },
  21144. },
  21145. [
  21146. {
  21147. name: "Normal",
  21148. height: math.unit(5 + 9 / 12, "feet")
  21149. },
  21150. {
  21151. name: "Macro",
  21152. height: math.unit(30, "meters"),
  21153. default: true
  21154. },
  21155. ]
  21156. ))
  21157. characterMakers.push(() => makeCharacter(
  21158. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21159. {
  21160. front: {
  21161. height: math.unit(6, "feet"),
  21162. weight: math.unit(180, "lb"),
  21163. name: "Front",
  21164. image: {
  21165. source: "./media/characters/arokh-sieyes/front.svg",
  21166. extra: 1830 / 1769,
  21167. bottom: 0.01
  21168. }
  21169. },
  21170. },
  21171. [
  21172. {
  21173. name: "Normal",
  21174. height: math.unit(6, "feet")
  21175. },
  21176. {
  21177. name: "Macro",
  21178. height: math.unit(30, "meters"),
  21179. default: true
  21180. },
  21181. ]
  21182. ))
  21183. characterMakers.push(() => makeCharacter(
  21184. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  21185. {
  21186. side: {
  21187. height: math.unit(13 + 1 / 12, "feet"),
  21188. weight: math.unit(8.5, "tonnes"),
  21189. preyCapacity: math.unit(36, "people"),
  21190. name: "Side",
  21191. image: {
  21192. source: "./media/characters/goldeneye/side.svg",
  21193. extra: 1139/741,
  21194. bottom: 98/1237
  21195. }
  21196. },
  21197. front: {
  21198. height: math.unit(5.1, "feet"),
  21199. weight: math.unit(8.5, "tonnes"),
  21200. preyCapacity: math.unit(36, "people"),
  21201. name: "Front",
  21202. image: {
  21203. source: "./media/characters/goldeneye/front.svg",
  21204. extra: 635/365,
  21205. bottom: 598/1233
  21206. }
  21207. },
  21208. maw: {
  21209. height: math.unit(6.6, "feet"),
  21210. name: "Maw",
  21211. image: {
  21212. source: "./media/characters/goldeneye/maw.svg"
  21213. }
  21214. },
  21215. headFront: {
  21216. height: math.unit(8, "feet"),
  21217. name: "Head (Front)",
  21218. image: {
  21219. source: "./media/characters/goldeneye/head-front.svg"
  21220. }
  21221. },
  21222. headSide: {
  21223. height: math.unit(6, "feet"),
  21224. name: "Head (Side)",
  21225. image: {
  21226. source: "./media/characters/goldeneye/head-side.svg"
  21227. }
  21228. },
  21229. headBack: {
  21230. height: math.unit(8, "feet"),
  21231. name: "Head (Back)",
  21232. image: {
  21233. source: "./media/characters/goldeneye/head-back.svg"
  21234. }
  21235. },
  21236. paw: {
  21237. height: math.unit(3.4, "feet"),
  21238. name: "Paw",
  21239. image: {
  21240. source: "./media/characters/goldeneye/paw.svg"
  21241. }
  21242. },
  21243. toering: {
  21244. height: math.unit(0.45, "feet"),
  21245. name: "Toering",
  21246. image: {
  21247. source: "./media/characters/goldeneye/toering.svg"
  21248. }
  21249. },
  21250. eyes: {
  21251. height: math.unit(0.5, "feet"),
  21252. name: "Eyes",
  21253. image: {
  21254. source: "./media/characters/goldeneye/eyes.svg"
  21255. }
  21256. },
  21257. },
  21258. [
  21259. {
  21260. name: "Normal",
  21261. height: math.unit(13 + 1 / 12, "feet"),
  21262. default: true
  21263. },
  21264. ]
  21265. ))
  21266. characterMakers.push(() => makeCharacter(
  21267. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21268. {
  21269. front: {
  21270. height: math.unit(6 + 1 / 12, "feet"),
  21271. weight: math.unit(210, "lb"),
  21272. name: "Front",
  21273. image: {
  21274. source: "./media/characters/leonardo-lycheborne/front.svg",
  21275. extra: 776/723,
  21276. bottom: 34/810
  21277. }
  21278. },
  21279. side: {
  21280. height: math.unit(6 + 1 / 12, "feet"),
  21281. weight: math.unit(210, "lb"),
  21282. name: "Side",
  21283. image: {
  21284. source: "./media/characters/leonardo-lycheborne/side.svg",
  21285. extra: 780/728,
  21286. bottom: 12/792
  21287. }
  21288. },
  21289. back: {
  21290. height: math.unit(6 + 1 / 12, "feet"),
  21291. weight: math.unit(210, "lb"),
  21292. name: "Back",
  21293. image: {
  21294. source: "./media/characters/leonardo-lycheborne/back.svg",
  21295. extra: 775/721,
  21296. bottom: 17/792
  21297. }
  21298. },
  21299. hand: {
  21300. height: math.unit(1.08, "feet"),
  21301. name: "Hand",
  21302. image: {
  21303. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21304. }
  21305. },
  21306. foot: {
  21307. height: math.unit(1.32, "feet"),
  21308. name: "Foot",
  21309. image: {
  21310. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21311. }
  21312. },
  21313. maw: {
  21314. height: math.unit(1, "feet"),
  21315. name: "Maw",
  21316. image: {
  21317. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21318. }
  21319. },
  21320. were: {
  21321. height: math.unit(20, "feet"),
  21322. weight: math.unit(7800, "lb"),
  21323. name: "Were",
  21324. image: {
  21325. source: "./media/characters/leonardo-lycheborne/were.svg",
  21326. extra: 1224/1165,
  21327. bottom: 72/1296
  21328. }
  21329. },
  21330. feral: {
  21331. height: math.unit(7.5, "feet"),
  21332. weight: math.unit(600, "lb"),
  21333. name: "Feral",
  21334. image: {
  21335. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21336. extra: 797/702,
  21337. bottom: 139/936
  21338. }
  21339. },
  21340. taur: {
  21341. height: math.unit(11, "feet"),
  21342. weight: math.unit(3300, "lb"),
  21343. name: "Taur",
  21344. image: {
  21345. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21346. extra: 1271/1197,
  21347. bottom: 47/1318
  21348. }
  21349. },
  21350. barghest: {
  21351. height: math.unit(11, "feet"),
  21352. weight: math.unit(1300, "lb"),
  21353. name: "Barghest",
  21354. image: {
  21355. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21356. extra: 1291/1204,
  21357. bottom: 37/1328
  21358. }
  21359. },
  21360. dick: {
  21361. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21362. name: "Dick",
  21363. image: {
  21364. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21365. }
  21366. },
  21367. dickWere: {
  21368. height: math.unit((20) / 3.8, "feet"),
  21369. name: "Dick (Were)",
  21370. image: {
  21371. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21372. }
  21373. },
  21374. },
  21375. [
  21376. {
  21377. name: "Normal",
  21378. height: math.unit(6 + 1 / 12, "feet"),
  21379. default: true
  21380. },
  21381. ]
  21382. ))
  21383. characterMakers.push(() => makeCharacter(
  21384. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21385. {
  21386. front: {
  21387. height: math.unit(10, "feet"),
  21388. weight: math.unit(350, "lb"),
  21389. name: "Front",
  21390. image: {
  21391. source: "./media/characters/jet/front.svg",
  21392. extra: 2050 / 1980,
  21393. bottom: 0.013
  21394. }
  21395. },
  21396. back: {
  21397. height: math.unit(10, "feet"),
  21398. weight: math.unit(350, "lb"),
  21399. name: "Back",
  21400. image: {
  21401. source: "./media/characters/jet/back.svg",
  21402. extra: 2050 / 1980,
  21403. bottom: 0.013
  21404. }
  21405. },
  21406. },
  21407. [
  21408. {
  21409. name: "Micro",
  21410. height: math.unit(6, "inches")
  21411. },
  21412. {
  21413. name: "Normal",
  21414. height: math.unit(10, "feet"),
  21415. default: true
  21416. },
  21417. {
  21418. name: "Macro",
  21419. height: math.unit(100, "feet")
  21420. },
  21421. ]
  21422. ))
  21423. characterMakers.push(() => makeCharacter(
  21424. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21425. {
  21426. front: {
  21427. height: math.unit(15, "feet"),
  21428. weight: math.unit(2800, "lb"),
  21429. name: "Front",
  21430. image: {
  21431. source: "./media/characters/tanarath/front.svg",
  21432. extra: 2392 / 2220,
  21433. bottom: 0.03
  21434. }
  21435. },
  21436. back: {
  21437. height: math.unit(15, "feet"),
  21438. weight: math.unit(2800, "lb"),
  21439. name: "Back",
  21440. image: {
  21441. source: "./media/characters/tanarath/back.svg",
  21442. extra: 2392 / 2220,
  21443. bottom: 0.03
  21444. }
  21445. },
  21446. },
  21447. [
  21448. {
  21449. name: "Normal",
  21450. height: math.unit(15, "feet"),
  21451. default: true
  21452. },
  21453. ]
  21454. ))
  21455. characterMakers.push(() => makeCharacter(
  21456. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21457. {
  21458. front: {
  21459. height: math.unit(7 + 1 / 12, "feet"),
  21460. weight: math.unit(175, "lb"),
  21461. name: "Front",
  21462. image: {
  21463. source: "./media/characters/patty-cattybatty/front.svg",
  21464. extra: 908 / 874,
  21465. bottom: 0.025
  21466. }
  21467. },
  21468. },
  21469. [
  21470. {
  21471. name: "Micro",
  21472. height: math.unit(1, "inch")
  21473. },
  21474. {
  21475. name: "Normal",
  21476. height: math.unit(7 + 1 / 12, "feet")
  21477. },
  21478. {
  21479. name: "Mini Macro",
  21480. height: math.unit(155, "feet")
  21481. },
  21482. {
  21483. name: "Macro",
  21484. height: math.unit(1077, "feet")
  21485. },
  21486. {
  21487. name: "Mega Macro",
  21488. height: math.unit(47650, "feet"),
  21489. default: true
  21490. },
  21491. {
  21492. name: "Giga Macro",
  21493. height: math.unit(440, "miles")
  21494. },
  21495. {
  21496. name: "Tera Macro",
  21497. height: math.unit(8700, "miles")
  21498. },
  21499. {
  21500. name: "Planetary Macro",
  21501. height: math.unit(32700, "miles")
  21502. },
  21503. {
  21504. name: "Solar Macro",
  21505. height: math.unit(550000, "miles")
  21506. },
  21507. {
  21508. name: "Celestial Macro",
  21509. height: math.unit(2.5, "AU")
  21510. },
  21511. ]
  21512. ))
  21513. characterMakers.push(() => makeCharacter(
  21514. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21515. {
  21516. front: {
  21517. height: math.unit(4 + 5 / 12, "feet"),
  21518. weight: math.unit(90, "lb"),
  21519. name: "Front",
  21520. image: {
  21521. source: "./media/characters/cappu/front.svg",
  21522. extra: 1247 / 1152,
  21523. bottom: 0.012
  21524. }
  21525. },
  21526. },
  21527. [
  21528. {
  21529. name: "Normal",
  21530. height: math.unit(4 + 5 / 12, "feet"),
  21531. default: true
  21532. },
  21533. ]
  21534. ))
  21535. characterMakers.push(() => makeCharacter(
  21536. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21537. {
  21538. frontDressed: {
  21539. height: math.unit(70, "cm"),
  21540. weight: math.unit(6, "kg"),
  21541. name: "Front (Dressed)",
  21542. image: {
  21543. source: "./media/characters/sebi/front-dressed.svg",
  21544. extra: 713.5 / 686.5,
  21545. bottom: 0.003
  21546. }
  21547. },
  21548. front: {
  21549. height: math.unit(70, "cm"),
  21550. weight: math.unit(5, "kg"),
  21551. name: "Front",
  21552. image: {
  21553. source: "./media/characters/sebi/front.svg",
  21554. extra: 713.5 / 686.5,
  21555. bottom: 0.003
  21556. }
  21557. }
  21558. },
  21559. [
  21560. {
  21561. name: "Normal",
  21562. height: math.unit(70, "cm"),
  21563. default: true
  21564. },
  21565. {
  21566. name: "Macro",
  21567. height: math.unit(8, "meters")
  21568. },
  21569. ]
  21570. ))
  21571. characterMakers.push(() => makeCharacter(
  21572. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21573. {
  21574. front: {
  21575. height: math.unit(6, "feet"),
  21576. weight: math.unit(150, "lb"),
  21577. name: "Front",
  21578. image: {
  21579. source: "./media/characters/typhek/front.svg",
  21580. extra: 1948 / 1929,
  21581. bottom: 0.025
  21582. }
  21583. },
  21584. side: {
  21585. height: math.unit(6, "feet"),
  21586. weight: math.unit(150, "lb"),
  21587. name: "Side",
  21588. image: {
  21589. source: "./media/characters/typhek/side.svg",
  21590. extra: 2034 / 2010,
  21591. bottom: 0.003
  21592. }
  21593. },
  21594. back: {
  21595. height: math.unit(6, "feet"),
  21596. weight: math.unit(150, "lb"),
  21597. name: "Back",
  21598. image: {
  21599. source: "./media/characters/typhek/back.svg",
  21600. extra: 2005 / 1978,
  21601. bottom: 0.004
  21602. }
  21603. },
  21604. palm: {
  21605. height: math.unit(1.2, "feet"),
  21606. name: "Palm",
  21607. image: {
  21608. source: "./media/characters/typhek/palm.svg"
  21609. }
  21610. },
  21611. fist: {
  21612. height: math.unit(1.1, "feet"),
  21613. name: "Fist",
  21614. image: {
  21615. source: "./media/characters/typhek/fist.svg"
  21616. }
  21617. },
  21618. foot: {
  21619. height: math.unit(1.57, "feet"),
  21620. name: "Foot",
  21621. image: {
  21622. source: "./media/characters/typhek/foot.svg"
  21623. }
  21624. },
  21625. sole: {
  21626. height: math.unit(2.05, "feet"),
  21627. name: "Sole",
  21628. image: {
  21629. source: "./media/characters/typhek/sole.svg"
  21630. }
  21631. },
  21632. },
  21633. [
  21634. {
  21635. name: "Macro",
  21636. height: math.unit(40, "stories"),
  21637. default: true
  21638. },
  21639. {
  21640. name: "Megamacro",
  21641. height: math.unit(1, "mile")
  21642. },
  21643. {
  21644. name: "Gigamacro",
  21645. height: math.unit(4000, "solarradii")
  21646. },
  21647. {
  21648. name: "Universal",
  21649. height: math.unit(1.1, "universes")
  21650. }
  21651. ]
  21652. ))
  21653. characterMakers.push(() => makeCharacter(
  21654. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21655. {
  21656. side: {
  21657. height: math.unit(5 + 7 / 12, "feet"),
  21658. weight: math.unit(150, "lb"),
  21659. name: "Side",
  21660. image: {
  21661. source: "./media/characters/kassy/side.svg",
  21662. extra: 1280 / 1225,
  21663. bottom: 0.002
  21664. }
  21665. },
  21666. front: {
  21667. height: math.unit(5 + 7 / 12, "feet"),
  21668. weight: math.unit(150, "lb"),
  21669. name: "Front",
  21670. image: {
  21671. source: "./media/characters/kassy/front.svg",
  21672. extra: 1280 / 1225,
  21673. bottom: 0.025
  21674. }
  21675. },
  21676. back: {
  21677. height: math.unit(5 + 7 / 12, "feet"),
  21678. weight: math.unit(150, "lb"),
  21679. name: "Back",
  21680. image: {
  21681. source: "./media/characters/kassy/back.svg",
  21682. extra: 1280 / 1225,
  21683. bottom: 0.002
  21684. }
  21685. },
  21686. foot: {
  21687. height: math.unit(1.266, "feet"),
  21688. name: "Foot",
  21689. image: {
  21690. source: "./media/characters/kassy/foot.svg"
  21691. }
  21692. },
  21693. },
  21694. [
  21695. {
  21696. name: "Normal",
  21697. height: math.unit(5 + 7 / 12, "feet")
  21698. },
  21699. {
  21700. name: "Macro",
  21701. height: math.unit(137, "feet"),
  21702. default: true
  21703. },
  21704. {
  21705. name: "Megamacro",
  21706. height: math.unit(1, "mile")
  21707. },
  21708. ]
  21709. ))
  21710. characterMakers.push(() => makeCharacter(
  21711. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21712. {
  21713. front: {
  21714. height: math.unit(6 + 1 / 12, "feet"),
  21715. weight: math.unit(200, "lb"),
  21716. name: "Front",
  21717. image: {
  21718. source: "./media/characters/neil/front.svg",
  21719. extra: 1326 / 1250,
  21720. bottom: 0.023
  21721. }
  21722. },
  21723. },
  21724. [
  21725. {
  21726. name: "Normal",
  21727. height: math.unit(6 + 1 / 12, "feet"),
  21728. default: true
  21729. },
  21730. {
  21731. name: "Macro",
  21732. height: math.unit(200, "feet")
  21733. },
  21734. ]
  21735. ))
  21736. characterMakers.push(() => makeCharacter(
  21737. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21738. {
  21739. front: {
  21740. height: math.unit(5 + 9 / 12, "feet"),
  21741. weight: math.unit(190, "lb"),
  21742. name: "Front",
  21743. image: {
  21744. source: "./media/characters/atticus/front.svg",
  21745. extra: 2934 / 2785,
  21746. bottom: 0.025
  21747. }
  21748. },
  21749. },
  21750. [
  21751. {
  21752. name: "Normal",
  21753. height: math.unit(5 + 9 / 12, "feet"),
  21754. default: true
  21755. },
  21756. {
  21757. name: "Macro",
  21758. height: math.unit(180, "feet")
  21759. },
  21760. ]
  21761. ))
  21762. characterMakers.push(() => makeCharacter(
  21763. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21764. {
  21765. side: {
  21766. height: math.unit(9, "feet"),
  21767. weight: math.unit(650, "lb"),
  21768. name: "Side",
  21769. image: {
  21770. source: "./media/characters/milo/side.svg",
  21771. extra: 2644 / 2310,
  21772. bottom: 0.032
  21773. }
  21774. },
  21775. },
  21776. [
  21777. {
  21778. name: "Normal",
  21779. height: math.unit(9, "feet"),
  21780. default: true
  21781. },
  21782. {
  21783. name: "Macro",
  21784. height: math.unit(300, "feet")
  21785. },
  21786. ]
  21787. ))
  21788. characterMakers.push(() => makeCharacter(
  21789. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21790. {
  21791. side: {
  21792. height: math.unit(8, "meters"),
  21793. weight: math.unit(90000, "kg"),
  21794. name: "Side",
  21795. image: {
  21796. source: "./media/characters/ijzer/side.svg",
  21797. extra: 2756 / 1600,
  21798. bottom: 0.01
  21799. }
  21800. },
  21801. },
  21802. [
  21803. {
  21804. name: "Small",
  21805. height: math.unit(3, "meters")
  21806. },
  21807. {
  21808. name: "Normal",
  21809. height: math.unit(8, "meters"),
  21810. default: true
  21811. },
  21812. {
  21813. name: "Normal+",
  21814. height: math.unit(10, "meters")
  21815. },
  21816. {
  21817. name: "Bigger",
  21818. height: math.unit(24, "meters")
  21819. },
  21820. {
  21821. name: "Huge",
  21822. height: math.unit(80, "meters")
  21823. },
  21824. ]
  21825. ))
  21826. characterMakers.push(() => makeCharacter(
  21827. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21828. {
  21829. front: {
  21830. height: math.unit(6 + 2 / 12, "feet"),
  21831. weight: math.unit(153, "lb"),
  21832. name: "Front",
  21833. image: {
  21834. source: "./media/characters/luca-cervicum/front.svg",
  21835. extra: 370 / 327,
  21836. bottom: 0.015
  21837. }
  21838. },
  21839. back: {
  21840. height: math.unit(6 + 2 / 12, "feet"),
  21841. weight: math.unit(153, "lb"),
  21842. name: "Back",
  21843. image: {
  21844. source: "./media/characters/luca-cervicum/back.svg",
  21845. extra: 367 / 333,
  21846. bottom: 0.005
  21847. }
  21848. },
  21849. frontGear: {
  21850. height: math.unit(6 + 2 / 12, "feet"),
  21851. weight: math.unit(173, "lb"),
  21852. name: "Front (Gear)",
  21853. image: {
  21854. source: "./media/characters/luca-cervicum/front-gear.svg",
  21855. extra: 377 / 333,
  21856. bottom: 0.006
  21857. }
  21858. },
  21859. },
  21860. [
  21861. {
  21862. name: "Normal",
  21863. height: math.unit(6 + 2 / 12, "feet"),
  21864. default: true
  21865. },
  21866. ]
  21867. ))
  21868. characterMakers.push(() => makeCharacter(
  21869. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21870. {
  21871. front: {
  21872. height: math.unit(6 + 1 / 12, "feet"),
  21873. weight: math.unit(304, "lb"),
  21874. name: "Front",
  21875. image: {
  21876. source: "./media/characters/oliver/front.svg",
  21877. extra: 157 / 143,
  21878. bottom: 0.08
  21879. }
  21880. },
  21881. },
  21882. [
  21883. {
  21884. name: "Normal",
  21885. height: math.unit(6 + 1 / 12, "feet"),
  21886. default: true
  21887. },
  21888. ]
  21889. ))
  21890. characterMakers.push(() => makeCharacter(
  21891. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21892. {
  21893. front: {
  21894. height: math.unit(5 + 7 / 12, "feet"),
  21895. weight: math.unit(140, "lb"),
  21896. name: "Front",
  21897. image: {
  21898. source: "./media/characters/shane/front.svg",
  21899. extra: 304 / 289,
  21900. bottom: 0.005
  21901. }
  21902. },
  21903. },
  21904. [
  21905. {
  21906. name: "Normal",
  21907. height: math.unit(5 + 7 / 12, "feet"),
  21908. default: true
  21909. },
  21910. ]
  21911. ))
  21912. characterMakers.push(() => makeCharacter(
  21913. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21914. {
  21915. front: {
  21916. height: math.unit(5 + 9 / 12, "feet"),
  21917. weight: math.unit(178, "lb"),
  21918. name: "Front",
  21919. image: {
  21920. source: "./media/characters/shin/front.svg",
  21921. extra: 159 / 151,
  21922. bottom: 0.015
  21923. }
  21924. },
  21925. },
  21926. [
  21927. {
  21928. name: "Normal",
  21929. height: math.unit(5 + 9 / 12, "feet"),
  21930. default: true
  21931. },
  21932. ]
  21933. ))
  21934. characterMakers.push(() => makeCharacter(
  21935. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21936. {
  21937. front: {
  21938. height: math.unit(5 + 10 / 12, "feet"),
  21939. weight: math.unit(168, "lb"),
  21940. name: "Front",
  21941. image: {
  21942. source: "./media/characters/xerxes/front.svg",
  21943. extra: 282 / 260,
  21944. bottom: 0.045
  21945. }
  21946. },
  21947. },
  21948. [
  21949. {
  21950. name: "Normal",
  21951. height: math.unit(5 + 10 / 12, "feet"),
  21952. default: true
  21953. },
  21954. ]
  21955. ))
  21956. characterMakers.push(() => makeCharacter(
  21957. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21958. {
  21959. front: {
  21960. height: math.unit(6 + 7 / 12, "feet"),
  21961. weight: math.unit(208, "lb"),
  21962. name: "Front",
  21963. image: {
  21964. source: "./media/characters/chaska/front.svg",
  21965. extra: 332 / 319,
  21966. bottom: 0.015
  21967. }
  21968. },
  21969. },
  21970. [
  21971. {
  21972. name: "Normal",
  21973. height: math.unit(6 + 7 / 12, "feet"),
  21974. default: true
  21975. },
  21976. ]
  21977. ))
  21978. characterMakers.push(() => makeCharacter(
  21979. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21980. {
  21981. front: {
  21982. height: math.unit(5 + 8 / 12, "feet"),
  21983. weight: math.unit(208, "lb"),
  21984. name: "Front",
  21985. image: {
  21986. source: "./media/characters/enuk/front.svg",
  21987. extra: 437 / 406,
  21988. bottom: 0.02
  21989. }
  21990. },
  21991. },
  21992. [
  21993. {
  21994. name: "Normal",
  21995. height: math.unit(5 + 8 / 12, "feet"),
  21996. default: true
  21997. },
  21998. ]
  21999. ))
  22000. characterMakers.push(() => makeCharacter(
  22001. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  22002. {
  22003. front: {
  22004. height: math.unit(5 + 10 / 12, "feet"),
  22005. weight: math.unit(252, "lb"),
  22006. name: "Front",
  22007. image: {
  22008. source: "./media/characters/bruun/front.svg",
  22009. extra: 197 / 187,
  22010. bottom: 0.012
  22011. }
  22012. },
  22013. },
  22014. [
  22015. {
  22016. name: "Normal",
  22017. height: math.unit(5 + 10 / 12, "feet"),
  22018. default: true
  22019. },
  22020. ]
  22021. ))
  22022. characterMakers.push(() => makeCharacter(
  22023. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  22024. {
  22025. front: {
  22026. height: math.unit(6 + 10 / 12, "feet"),
  22027. weight: math.unit(255, "lb"),
  22028. name: "Front",
  22029. image: {
  22030. source: "./media/characters/alexeev/front.svg",
  22031. extra: 213 / 200,
  22032. bottom: 0.05
  22033. }
  22034. },
  22035. },
  22036. [
  22037. {
  22038. name: "Normal",
  22039. height: math.unit(6 + 10 / 12, "feet"),
  22040. default: true
  22041. },
  22042. ]
  22043. ))
  22044. characterMakers.push(() => makeCharacter(
  22045. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  22046. {
  22047. front: {
  22048. height: math.unit(2 + 8 / 12, "feet"),
  22049. weight: math.unit(22, "lb"),
  22050. name: "Front",
  22051. image: {
  22052. source: "./media/characters/evelyn/front.svg",
  22053. extra: 208 / 180
  22054. }
  22055. },
  22056. },
  22057. [
  22058. {
  22059. name: "Normal",
  22060. height: math.unit(2 + 8 / 12, "feet"),
  22061. default: true
  22062. },
  22063. ]
  22064. ))
  22065. characterMakers.push(() => makeCharacter(
  22066. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  22067. {
  22068. front: {
  22069. height: math.unit(5 + 9 / 12, "feet"),
  22070. weight: math.unit(139, "lb"),
  22071. name: "Front",
  22072. image: {
  22073. source: "./media/characters/inca/front.svg",
  22074. extra: 294 / 291,
  22075. bottom: 0.03
  22076. }
  22077. },
  22078. },
  22079. [
  22080. {
  22081. name: "Normal",
  22082. height: math.unit(5 + 9 / 12, "feet"),
  22083. default: true
  22084. },
  22085. ]
  22086. ))
  22087. characterMakers.push(() => makeCharacter(
  22088. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  22089. {
  22090. front: {
  22091. height: math.unit(6 + 3 / 12, "feet"),
  22092. weight: math.unit(185, "lb"),
  22093. name: "Front",
  22094. image: {
  22095. source: "./media/characters/mera/front.svg",
  22096. extra: 291 / 277,
  22097. bottom: 0.03
  22098. }
  22099. },
  22100. },
  22101. [
  22102. {
  22103. name: "Normal",
  22104. height: math.unit(6 + 3 / 12, "feet"),
  22105. default: true
  22106. },
  22107. ]
  22108. ))
  22109. characterMakers.push(() => makeCharacter(
  22110. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  22111. {
  22112. front: {
  22113. height: math.unit(6 + 7 / 12, "feet"),
  22114. weight: math.unit(160, "lb"),
  22115. name: "Front",
  22116. image: {
  22117. source: "./media/characters/ceres/front.svg",
  22118. extra: 1023 / 950,
  22119. bottom: 0.027
  22120. }
  22121. },
  22122. back: {
  22123. height: math.unit(6 + 7 / 12, "feet"),
  22124. weight: math.unit(160, "lb"),
  22125. name: "Back",
  22126. image: {
  22127. source: "./media/characters/ceres/back.svg",
  22128. extra: 1023 / 950
  22129. }
  22130. },
  22131. },
  22132. [
  22133. {
  22134. name: "Normal",
  22135. height: math.unit(6 + 7 / 12, "feet"),
  22136. default: true
  22137. },
  22138. ]
  22139. ))
  22140. characterMakers.push(() => makeCharacter(
  22141. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  22142. {
  22143. front: {
  22144. height: math.unit(5 + 10 / 12, "feet"),
  22145. weight: math.unit(150, "lb"),
  22146. name: "Front",
  22147. image: {
  22148. source: "./media/characters/kris/front.svg",
  22149. extra: 885 / 803,
  22150. bottom: 0.03
  22151. }
  22152. },
  22153. },
  22154. [
  22155. {
  22156. name: "Normal",
  22157. height: math.unit(5 + 10 / 12, "feet"),
  22158. default: true
  22159. },
  22160. ]
  22161. ))
  22162. characterMakers.push(() => makeCharacter(
  22163. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  22164. {
  22165. dragon_front: {
  22166. height: math.unit(5, "feet"),
  22167. name: "Front",
  22168. image: {
  22169. source: "./media/characters/taluthus/dragon-front.svg",
  22170. extra: 1203/1098,
  22171. bottom: 46/1249
  22172. },
  22173. form: "dragon",
  22174. default: true
  22175. },
  22176. dragon_maw: {
  22177. height: math.unit(2.35, "feet"),
  22178. name: "Maw",
  22179. image: {
  22180. source: "./media/characters/taluthus/dragon-maw.svg"
  22181. },
  22182. form: "dragon",
  22183. },
  22184. kitsune_front: {
  22185. height: math.unit(7, "feet"),
  22186. name: "Front",
  22187. image: {
  22188. source: "./media/characters/taluthus/kitsune-front.svg",
  22189. extra: 900/841,
  22190. bottom: 65/965
  22191. },
  22192. form: "kitsune",
  22193. default: true
  22194. },
  22195. },
  22196. [
  22197. {
  22198. name: "Normal",
  22199. height: math.unit(5, "feet"),
  22200. form: "dragon",
  22201. default: true,
  22202. },
  22203. {
  22204. name: "Normal",
  22205. height: math.unit(7, "feet"),
  22206. form: "kitsune",
  22207. default: true
  22208. },
  22209. {
  22210. name: "Macro",
  22211. height: math.unit(300, "feet"),
  22212. allForms: true
  22213. },
  22214. ],
  22215. {
  22216. "dragon": {
  22217. name: "Dragon",
  22218. default: true
  22219. },
  22220. "kitsune": {
  22221. name: "Kitsune",
  22222. },
  22223. }
  22224. ))
  22225. characterMakers.push(() => makeCharacter(
  22226. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22227. {
  22228. front: {
  22229. height: math.unit(5 + 9 / 12, "feet"),
  22230. weight: math.unit(145, "lb"),
  22231. name: "Front",
  22232. image: {
  22233. source: "./media/characters/dawn/front.svg",
  22234. extra: 2094 / 2016,
  22235. bottom: 0.025
  22236. }
  22237. },
  22238. back: {
  22239. height: math.unit(5 + 9 / 12, "feet"),
  22240. weight: math.unit(160, "lb"),
  22241. name: "Back",
  22242. image: {
  22243. source: "./media/characters/dawn/back.svg",
  22244. extra: 2112 / 2080,
  22245. bottom: 0.005
  22246. }
  22247. },
  22248. },
  22249. [
  22250. {
  22251. name: "Normal",
  22252. height: math.unit(6 + 7 / 12, "feet"),
  22253. default: true
  22254. },
  22255. ]
  22256. ))
  22257. characterMakers.push(() => makeCharacter(
  22258. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22259. {
  22260. anthro: {
  22261. height: math.unit(8 + 3 / 12, "feet"),
  22262. weight: math.unit(450, "lb"),
  22263. name: "Anthro",
  22264. image: {
  22265. source: "./media/characters/arador/anthro.svg",
  22266. extra: 1835 / 1718,
  22267. bottom: 0.025
  22268. }
  22269. },
  22270. feral: {
  22271. height: math.unit(4, "feet"),
  22272. weight: math.unit(200, "lb"),
  22273. name: "Feral",
  22274. image: {
  22275. source: "./media/characters/arador/feral.svg",
  22276. extra: 1683 / 1514,
  22277. bottom: 0.07
  22278. }
  22279. },
  22280. },
  22281. [
  22282. {
  22283. name: "Normal",
  22284. height: math.unit(8 + 3 / 12, "feet")
  22285. },
  22286. {
  22287. name: "Macro",
  22288. height: math.unit(82.5, "feet"),
  22289. default: true
  22290. },
  22291. ]
  22292. ))
  22293. characterMakers.push(() => makeCharacter(
  22294. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22295. {
  22296. front: {
  22297. height: math.unit(5 + 10 / 12, "feet"),
  22298. weight: math.unit(125, "lb"),
  22299. name: "Front",
  22300. image: {
  22301. source: "./media/characters/dharsi/front.svg",
  22302. extra: 716 / 630,
  22303. bottom: 0.035
  22304. }
  22305. },
  22306. },
  22307. [
  22308. {
  22309. name: "Nano",
  22310. height: math.unit(100, "nm")
  22311. },
  22312. {
  22313. name: "Micro",
  22314. height: math.unit(2, "inches")
  22315. },
  22316. {
  22317. name: "Normal",
  22318. height: math.unit(5 + 10 / 12, "feet"),
  22319. default: true
  22320. },
  22321. {
  22322. name: "Macro",
  22323. height: math.unit(1000, "feet")
  22324. },
  22325. {
  22326. name: "Megamacro",
  22327. height: math.unit(10, "miles")
  22328. },
  22329. {
  22330. name: "Gigamacro",
  22331. height: math.unit(3000, "miles")
  22332. },
  22333. {
  22334. name: "Teramacro",
  22335. height: math.unit(500000, "miles")
  22336. },
  22337. {
  22338. name: "Teramacro+",
  22339. height: math.unit(30, "galaxies")
  22340. },
  22341. ]
  22342. ))
  22343. characterMakers.push(() => makeCharacter(
  22344. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22345. {
  22346. front: {
  22347. height: math.unit(6, "feet"),
  22348. weight: math.unit(150, "lb"),
  22349. name: "Front",
  22350. image: {
  22351. source: "./media/characters/deathy/front.svg",
  22352. extra: 1552 / 1463,
  22353. bottom: 0.025
  22354. }
  22355. },
  22356. side: {
  22357. height: math.unit(6, "feet"),
  22358. weight: math.unit(150, "lb"),
  22359. name: "Side",
  22360. image: {
  22361. source: "./media/characters/deathy/side.svg",
  22362. extra: 1604 / 1455,
  22363. bottom: 0.025
  22364. }
  22365. },
  22366. back: {
  22367. height: math.unit(6, "feet"),
  22368. weight: math.unit(150, "lb"),
  22369. name: "Back",
  22370. image: {
  22371. source: "./media/characters/deathy/back.svg",
  22372. extra: 1580 / 1463,
  22373. bottom: 0.005
  22374. }
  22375. },
  22376. },
  22377. [
  22378. {
  22379. name: "Micro",
  22380. height: math.unit(5, "millimeters")
  22381. },
  22382. {
  22383. name: "Normal",
  22384. height: math.unit(6 + 5 / 12, "feet"),
  22385. default: true
  22386. },
  22387. ]
  22388. ))
  22389. characterMakers.push(() => makeCharacter(
  22390. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22391. {
  22392. front: {
  22393. height: math.unit(16, "feet"),
  22394. weight: math.unit(4000, "lb"),
  22395. name: "Front",
  22396. image: {
  22397. source: "./media/characters/juniper/front.svg",
  22398. bottom: 0.04
  22399. }
  22400. },
  22401. },
  22402. [
  22403. {
  22404. name: "Normal",
  22405. height: math.unit(16, "feet"),
  22406. default: true
  22407. },
  22408. ]
  22409. ))
  22410. characterMakers.push(() => makeCharacter(
  22411. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22412. {
  22413. front: {
  22414. height: math.unit(6, "feet"),
  22415. weight: math.unit(150, "lb"),
  22416. name: "Front",
  22417. image: {
  22418. source: "./media/characters/hipster/front.svg",
  22419. extra: 1312 / 1209,
  22420. bottom: 0.025
  22421. }
  22422. },
  22423. back: {
  22424. height: math.unit(6, "feet"),
  22425. weight: math.unit(150, "lb"),
  22426. name: "Back",
  22427. image: {
  22428. source: "./media/characters/hipster/back.svg",
  22429. extra: 1281 / 1196,
  22430. bottom: 0.01
  22431. }
  22432. },
  22433. },
  22434. [
  22435. {
  22436. name: "Micro",
  22437. height: math.unit(1, "mm")
  22438. },
  22439. {
  22440. name: "Normal",
  22441. height: math.unit(4, "inches"),
  22442. default: true
  22443. },
  22444. {
  22445. name: "Macro",
  22446. height: math.unit(500, "feet")
  22447. },
  22448. {
  22449. name: "Megamacro",
  22450. height: math.unit(1000, "miles")
  22451. },
  22452. ]
  22453. ))
  22454. characterMakers.push(() => makeCharacter(
  22455. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22456. {
  22457. front: {
  22458. height: math.unit(6, "feet"),
  22459. weight: math.unit(150, "lb"),
  22460. name: "Front",
  22461. image: {
  22462. source: "./media/characters/tendirmuldr/front.svg",
  22463. extra: 1878 / 1772,
  22464. bottom: 0.015
  22465. }
  22466. },
  22467. },
  22468. [
  22469. {
  22470. name: "Megamacro",
  22471. height: math.unit(1500, "miles"),
  22472. default: true
  22473. },
  22474. ]
  22475. ))
  22476. characterMakers.push(() => makeCharacter(
  22477. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22478. {
  22479. front: {
  22480. height: math.unit(14, "feet"),
  22481. weight: math.unit(12000, "lb"),
  22482. name: "Front",
  22483. image: {
  22484. source: "./media/characters/mort/front.svg",
  22485. extra: 365 / 318,
  22486. bottom: 0.01
  22487. }
  22488. },
  22489. side: {
  22490. height: math.unit(14, "feet"),
  22491. weight: math.unit(12000, "lb"),
  22492. name: "Side",
  22493. image: {
  22494. source: "./media/characters/mort/side.svg",
  22495. extra: 365 / 318,
  22496. bottom: 0.052
  22497. },
  22498. default: true
  22499. },
  22500. back: {
  22501. height: math.unit(14, "feet"),
  22502. weight: math.unit(12000, "lb"),
  22503. name: "Back",
  22504. image: {
  22505. source: "./media/characters/mort/back.svg",
  22506. extra: 371 / 332,
  22507. bottom: 0.18
  22508. }
  22509. },
  22510. },
  22511. [
  22512. {
  22513. name: "Normal",
  22514. height: math.unit(14, "feet"),
  22515. default: true
  22516. },
  22517. ]
  22518. ))
  22519. characterMakers.push(() => makeCharacter(
  22520. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22521. {
  22522. front: {
  22523. height: math.unit(8, "feet"),
  22524. weight: math.unit(1, "ton"),
  22525. name: "Front",
  22526. image: {
  22527. source: "./media/characters/lycoa/front.svg",
  22528. extra: 1836/1728,
  22529. bottom: 81/1917
  22530. }
  22531. },
  22532. back: {
  22533. height: math.unit(8, "feet"),
  22534. weight: math.unit(1, "ton"),
  22535. name: "Back",
  22536. image: {
  22537. source: "./media/characters/lycoa/back.svg",
  22538. extra: 1785/1720,
  22539. bottom: 91/1876
  22540. }
  22541. },
  22542. head: {
  22543. height: math.unit(1.6243, "feet"),
  22544. name: "Head",
  22545. image: {
  22546. source: "./media/characters/lycoa/head.svg",
  22547. extra: 1011/782,
  22548. bottom: 0/1011
  22549. }
  22550. },
  22551. tailmaw: {
  22552. height: math.unit(1.9, "feet"),
  22553. name: "Tailmaw",
  22554. image: {
  22555. source: "./media/characters/lycoa/tailmaw.svg"
  22556. }
  22557. },
  22558. tentacles: {
  22559. height: math.unit(2.1, "feet"),
  22560. name: "Tentacles",
  22561. image: {
  22562. source: "./media/characters/lycoa/tentacles.svg"
  22563. }
  22564. },
  22565. dick: {
  22566. height: math.unit(1.73, "feet"),
  22567. name: "Dick",
  22568. image: {
  22569. source: "./media/characters/lycoa/dick.svg"
  22570. }
  22571. },
  22572. },
  22573. [
  22574. {
  22575. name: "Normal",
  22576. height: math.unit(8, "feet"),
  22577. default: true
  22578. },
  22579. {
  22580. name: "Macro",
  22581. height: math.unit(30, "feet")
  22582. },
  22583. ]
  22584. ))
  22585. characterMakers.push(() => makeCharacter(
  22586. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22587. {
  22588. front: {
  22589. height: math.unit(4 + 2 / 12, "feet"),
  22590. weight: math.unit(70, "lb"),
  22591. name: "Front",
  22592. image: {
  22593. source: "./media/characters/naldara/front.svg",
  22594. extra: 1664/1387,
  22595. bottom: 81/1745
  22596. },
  22597. form: "anthro",
  22598. default: true
  22599. },
  22600. naga: {
  22601. height: math.unit(20, "feet"),
  22602. weight: math.unit(15000, "kg"),
  22603. name: "Front",
  22604. image: {
  22605. source: "./media/characters/naldara/naga.svg",
  22606. extra: 1590/1396,
  22607. bottom: 285/1875
  22608. },
  22609. form: "naga",
  22610. default: true
  22611. },
  22612. },
  22613. [
  22614. {
  22615. name: "Normal",
  22616. height: math.unit(4 + 2 / 12, "feet"),
  22617. form: "anthro",
  22618. default: true
  22619. },
  22620. {
  22621. name: "Normal",
  22622. height: math.unit(20, "feet"),
  22623. form: "naga",
  22624. default: true
  22625. },
  22626. ],
  22627. {
  22628. "anthro": {
  22629. name: "Anthro",
  22630. default: true
  22631. },
  22632. "naga": {
  22633. name: "Naga"
  22634. }
  22635. }
  22636. ))
  22637. characterMakers.push(() => makeCharacter(
  22638. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22639. {
  22640. front: {
  22641. height: math.unit(13 + 7 / 12, "feet"),
  22642. weight: math.unit(1500, "lb"),
  22643. name: "Front",
  22644. image: {
  22645. source: "./media/characters/briar/front.svg",
  22646. extra: 1223/1157,
  22647. bottom: 123/1346
  22648. }
  22649. },
  22650. },
  22651. [
  22652. {
  22653. name: "Normal",
  22654. height: math.unit(13 + 7 / 12, "feet"),
  22655. default: true
  22656. },
  22657. ]
  22658. ))
  22659. characterMakers.push(() => makeCharacter(
  22660. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22661. {
  22662. side: {
  22663. height: math.unit(16, "feet"),
  22664. weight: math.unit(500, "lb"),
  22665. name: "Side",
  22666. image: {
  22667. source: "./media/characters/vanguard/side.svg",
  22668. extra: 1022/914,
  22669. bottom: 30/1052
  22670. }
  22671. },
  22672. sideAlt: {
  22673. height: math.unit(10, "feet"),
  22674. weight: math.unit(500, "lb"),
  22675. name: "Side (Alt)",
  22676. image: {
  22677. source: "./media/characters/vanguard/side-alt.svg",
  22678. extra: 502 / 425,
  22679. bottom: 0.087
  22680. }
  22681. },
  22682. },
  22683. [
  22684. {
  22685. name: "Normal",
  22686. height: math.unit(17.71, "feet"),
  22687. default: true
  22688. },
  22689. ]
  22690. ))
  22691. characterMakers.push(() => makeCharacter(
  22692. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22693. {
  22694. front: {
  22695. height: math.unit(7.5, "feet"),
  22696. weight: math.unit(2, "lb"),
  22697. name: "Front",
  22698. image: {
  22699. source: "./media/characters/artemis/work-safe-front.svg",
  22700. extra: 1192 / 1075,
  22701. bottom: 0.07
  22702. },
  22703. form: "work-safe",
  22704. default: true
  22705. },
  22706. frontNsfw: {
  22707. height: math.unit(7.5, "feet"),
  22708. weight: math.unit(2, "lb"),
  22709. name: "Front",
  22710. image: {
  22711. source: "./media/characters/artemis/calibrating-front.svg",
  22712. extra: 1192 / 1075,
  22713. bottom: 0.07
  22714. },
  22715. form: "calibrating",
  22716. default: true
  22717. },
  22718. frontNsfwer: {
  22719. height: math.unit(7.5, "feet"),
  22720. weight: math.unit(2, "lb"),
  22721. name: "Front",
  22722. image: {
  22723. source: "./media/characters/artemis/oversize-load-front.svg",
  22724. extra: 1192 / 1075,
  22725. bottom: 0.07
  22726. },
  22727. form: "oversize-load",
  22728. default: true
  22729. },
  22730. side: {
  22731. height: math.unit(7.5, "feet"),
  22732. weight: math.unit(2, "lb"),
  22733. name: "Side",
  22734. image: {
  22735. source: "./media/characters/artemis/work-safe-side.svg",
  22736. extra: 1192 / 1075,
  22737. bottom: 0.07
  22738. },
  22739. form: "work-safe"
  22740. },
  22741. sideNsfw: {
  22742. height: math.unit(7.5, "feet"),
  22743. weight: math.unit(2, "lb"),
  22744. name: "Side",
  22745. image: {
  22746. source: "./media/characters/artemis/calibrating-side.svg",
  22747. extra: 1192 / 1075,
  22748. bottom: 0.07
  22749. },
  22750. form: "calibrating"
  22751. },
  22752. sideNsfwer: {
  22753. height: math.unit(7.5, "feet"),
  22754. weight: math.unit(2, "lb"),
  22755. name: "Side",
  22756. image: {
  22757. source: "./media/characters/artemis/oversize-load-side.svg",
  22758. extra: 1192 / 1075,
  22759. bottom: 0.07
  22760. },
  22761. form: "oversize-load"
  22762. },
  22763. maw: {
  22764. height: math.unit(1.1, "feet"),
  22765. name: "Maw",
  22766. image: {
  22767. source: "./media/characters/artemis/maw.svg"
  22768. },
  22769. form: "work-safe"
  22770. },
  22771. stomach: {
  22772. height: math.unit(0.95, "feet"),
  22773. name: "Stomach",
  22774. image: {
  22775. source: "./media/characters/artemis/stomach.svg"
  22776. },
  22777. form: "work-safe"
  22778. },
  22779. dickCanine: {
  22780. height: math.unit(1, "feet"),
  22781. name: "Dick (Canine)",
  22782. image: {
  22783. source: "./media/characters/artemis/dick-canine.svg"
  22784. },
  22785. form: "calibrating"
  22786. },
  22787. dickEquine: {
  22788. height: math.unit(0.85, "feet"),
  22789. name: "Dick (Equine)",
  22790. image: {
  22791. source: "./media/characters/artemis/dick-equine.svg"
  22792. },
  22793. form: "calibrating"
  22794. },
  22795. dickExotic: {
  22796. height: math.unit(0.85, "feet"),
  22797. name: "Dick (Exotic)",
  22798. image: {
  22799. source: "./media/characters/artemis/dick-exotic.svg"
  22800. },
  22801. form: "calibrating"
  22802. },
  22803. dickCanineBigger: {
  22804. height: math.unit(1 * 1.33, "feet"),
  22805. name: "Dick (Canine)",
  22806. image: {
  22807. source: "./media/characters/artemis/dick-canine.svg"
  22808. },
  22809. form: "oversize-load"
  22810. },
  22811. dickEquineBigger: {
  22812. height: math.unit(0.85 * 1.33, "feet"),
  22813. name: "Dick (Equine)",
  22814. image: {
  22815. source: "./media/characters/artemis/dick-equine.svg"
  22816. },
  22817. form: "oversize-load"
  22818. },
  22819. dickExoticBigger: {
  22820. height: math.unit(0.85 * 1.33, "feet"),
  22821. name: "Dick (Exotic)",
  22822. image: {
  22823. source: "./media/characters/artemis/dick-exotic.svg"
  22824. },
  22825. form: "oversize-load"
  22826. },
  22827. },
  22828. [
  22829. {
  22830. name: "Normal",
  22831. height: math.unit(7.5, "feet"),
  22832. form: "work-safe",
  22833. default: true
  22834. },
  22835. {
  22836. name: "Normal",
  22837. height: math.unit(7.5, "feet"),
  22838. form: "calibrating",
  22839. default: true
  22840. },
  22841. {
  22842. name: "Normal",
  22843. height: math.unit(7.5, "feet"),
  22844. form: "oversize-load",
  22845. default: true
  22846. },
  22847. {
  22848. name: "Enlarged",
  22849. height: math.unit(12, "feet"),
  22850. form: "work-safe",
  22851. },
  22852. {
  22853. name: "Enlarged",
  22854. height: math.unit(12, "feet"),
  22855. form: "calibrating",
  22856. },
  22857. {
  22858. name: "Enlarged",
  22859. height: math.unit(12, "feet"),
  22860. form: "oversize-load",
  22861. },
  22862. ],
  22863. {
  22864. "work-safe": {
  22865. name: "Work-Safe",
  22866. default: true
  22867. },
  22868. "calibrating": {
  22869. name: "Calibrating"
  22870. },
  22871. "oversize-load": {
  22872. name: "Oversize Load"
  22873. }
  22874. }
  22875. ))
  22876. characterMakers.push(() => makeCharacter(
  22877. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22878. {
  22879. front: {
  22880. height: math.unit(5 + 3 / 12, "feet"),
  22881. weight: math.unit(160, "lb"),
  22882. name: "Front",
  22883. image: {
  22884. source: "./media/characters/kira/front.svg",
  22885. extra: 906 / 786,
  22886. bottom: 0.01
  22887. }
  22888. },
  22889. back: {
  22890. height: math.unit(5 + 3 / 12, "feet"),
  22891. weight: math.unit(160, "lb"),
  22892. name: "Back",
  22893. image: {
  22894. source: "./media/characters/kira/back.svg",
  22895. extra: 882 / 757,
  22896. bottom: 0.005
  22897. }
  22898. },
  22899. frontDressed: {
  22900. height: math.unit(5 + 3 / 12, "feet"),
  22901. weight: math.unit(160, "lb"),
  22902. name: "Front (Dressed)",
  22903. image: {
  22904. source: "./media/characters/kira/front-dressed.svg",
  22905. extra: 906 / 786,
  22906. bottom: 0.01
  22907. }
  22908. },
  22909. beans: {
  22910. height: math.unit(0.92, "feet"),
  22911. name: "Beans",
  22912. image: {
  22913. source: "./media/characters/kira/beans.svg"
  22914. }
  22915. },
  22916. },
  22917. [
  22918. {
  22919. name: "Normal",
  22920. height: math.unit(5 + 3 / 12, "feet"),
  22921. default: true
  22922. },
  22923. ]
  22924. ))
  22925. characterMakers.push(() => makeCharacter(
  22926. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22927. {
  22928. front: {
  22929. height: math.unit(5 + 4 / 12, "feet"),
  22930. weight: math.unit(145, "lb"),
  22931. name: "Front",
  22932. image: {
  22933. source: "./media/characters/scramble/front.svg",
  22934. extra: 763 / 727,
  22935. bottom: 0.05
  22936. }
  22937. },
  22938. back: {
  22939. height: math.unit(5 + 4 / 12, "feet"),
  22940. weight: math.unit(145, "lb"),
  22941. name: "Back",
  22942. image: {
  22943. source: "./media/characters/scramble/back.svg",
  22944. extra: 826 / 737,
  22945. bottom: 0.002
  22946. }
  22947. },
  22948. },
  22949. [
  22950. {
  22951. name: "Normal",
  22952. height: math.unit(5 + 4 / 12, "feet"),
  22953. default: true
  22954. },
  22955. ]
  22956. ))
  22957. characterMakers.push(() => makeCharacter(
  22958. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22959. {
  22960. side: {
  22961. height: math.unit(6 + 2 / 12, "feet"),
  22962. weight: math.unit(190, "lb"),
  22963. name: "Side",
  22964. image: {
  22965. source: "./media/characters/biscuit/side.svg",
  22966. extra: 858 / 791,
  22967. bottom: 0.044
  22968. }
  22969. },
  22970. },
  22971. [
  22972. {
  22973. name: "Normal",
  22974. height: math.unit(6 + 2 / 12, "feet"),
  22975. default: true
  22976. },
  22977. ]
  22978. ))
  22979. characterMakers.push(() => makeCharacter(
  22980. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22981. {
  22982. front: {
  22983. height: math.unit(5 + 2 / 12, "feet"),
  22984. weight: math.unit(120, "lb"),
  22985. name: "Front",
  22986. image: {
  22987. source: "./media/characters/poffin/front.svg",
  22988. extra: 786 / 680,
  22989. bottom: 0.005
  22990. }
  22991. },
  22992. },
  22993. [
  22994. {
  22995. name: "Normal",
  22996. height: math.unit(5 + 2 / 12, "feet"),
  22997. default: true
  22998. },
  22999. ]
  23000. ))
  23001. characterMakers.push(() => makeCharacter(
  23002. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  23003. {
  23004. front: {
  23005. height: math.unit(6 + 3 / 12, "feet"),
  23006. weight: math.unit(519, "lb"),
  23007. name: "Front",
  23008. image: {
  23009. source: "./media/characters/dhari/front.svg",
  23010. extra: 1048 / 946,
  23011. bottom: 0.015
  23012. }
  23013. },
  23014. back: {
  23015. height: math.unit(6 + 3 / 12, "feet"),
  23016. weight: math.unit(519, "lb"),
  23017. name: "Back",
  23018. image: {
  23019. source: "./media/characters/dhari/back.svg",
  23020. extra: 1048 / 931,
  23021. bottom: 0.005
  23022. }
  23023. },
  23024. frontDressed: {
  23025. height: math.unit(6 + 3 / 12, "feet"),
  23026. weight: math.unit(519, "lb"),
  23027. name: "Front (Dressed)",
  23028. image: {
  23029. source: "./media/characters/dhari/front-dressed.svg",
  23030. extra: 1713 / 1546,
  23031. bottom: 0.02
  23032. }
  23033. },
  23034. backDressed: {
  23035. height: math.unit(6 + 3 / 12, "feet"),
  23036. weight: math.unit(519, "lb"),
  23037. name: "Back (Dressed)",
  23038. image: {
  23039. source: "./media/characters/dhari/back-dressed.svg",
  23040. extra: 1699 / 1537,
  23041. bottom: 0.01
  23042. }
  23043. },
  23044. maw: {
  23045. height: math.unit(0.95, "feet"),
  23046. name: "Maw",
  23047. image: {
  23048. source: "./media/characters/dhari/maw.svg"
  23049. }
  23050. },
  23051. wereFront: {
  23052. height: math.unit(12 + 8 / 12, "feet"),
  23053. weight: math.unit(4000, "lb"),
  23054. name: "Front (Were)",
  23055. image: {
  23056. source: "./media/characters/dhari/were-front.svg",
  23057. extra: 1065 / 969,
  23058. bottom: 0.015
  23059. }
  23060. },
  23061. wereBack: {
  23062. height: math.unit(12 + 8 / 12, "feet"),
  23063. weight: math.unit(4000, "lb"),
  23064. name: "Back (Were)",
  23065. image: {
  23066. source: "./media/characters/dhari/were-back.svg",
  23067. extra: 1065 / 969,
  23068. bottom: 0.012
  23069. }
  23070. },
  23071. wereMaw: {
  23072. height: math.unit(0.625, "meters"),
  23073. name: "Maw (Were)",
  23074. image: {
  23075. source: "./media/characters/dhari/were-maw.svg"
  23076. }
  23077. },
  23078. },
  23079. [
  23080. {
  23081. name: "Normal",
  23082. height: math.unit(6 + 3 / 12, "feet"),
  23083. default: true
  23084. },
  23085. ]
  23086. ))
  23087. characterMakers.push(() => makeCharacter(
  23088. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  23089. {
  23090. anthro: {
  23091. height: math.unit(5 + 7 / 12, "feet"),
  23092. weight: math.unit(175, "lb"),
  23093. name: "Anthro",
  23094. image: {
  23095. source: "./media/characters/rena-dyne/anthro.svg",
  23096. extra: 1849 / 1785,
  23097. bottom: 0.005
  23098. }
  23099. },
  23100. taur: {
  23101. height: math.unit(15 + 6 / 12, "feet"),
  23102. weight: math.unit(8000, "lb"),
  23103. name: "Taur",
  23104. image: {
  23105. source: "./media/characters/rena-dyne/taur.svg",
  23106. extra: 2315 / 2234,
  23107. bottom: 0.033
  23108. }
  23109. },
  23110. },
  23111. [
  23112. {
  23113. name: "Normal",
  23114. height: math.unit(5 + 7 / 12, "feet"),
  23115. default: true
  23116. },
  23117. ]
  23118. ))
  23119. characterMakers.push(() => makeCharacter(
  23120. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  23121. {
  23122. front: {
  23123. height: math.unit(8, "feet"),
  23124. weight: math.unit(600, "lb"),
  23125. name: "Front",
  23126. image: {
  23127. source: "./media/characters/weremeep/front.svg",
  23128. extra: 970/849,
  23129. bottom: 7/977
  23130. }
  23131. },
  23132. },
  23133. [
  23134. {
  23135. name: "Normal",
  23136. height: math.unit(8, "feet"),
  23137. default: true
  23138. },
  23139. {
  23140. name: "Lorg",
  23141. height: math.unit(12, "feet")
  23142. },
  23143. {
  23144. name: "Oh Lawd She Comin'",
  23145. height: math.unit(20, "feet")
  23146. },
  23147. ]
  23148. ))
  23149. characterMakers.push(() => makeCharacter(
  23150. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  23151. {
  23152. front: {
  23153. height: math.unit(4, "feet"),
  23154. weight: math.unit(90, "lb"),
  23155. name: "Front",
  23156. image: {
  23157. source: "./media/characters/reza/front.svg",
  23158. extra: 1183 / 1111,
  23159. bottom: 0.017
  23160. }
  23161. },
  23162. back: {
  23163. height: math.unit(4, "feet"),
  23164. weight: math.unit(90, "lb"),
  23165. name: "Back",
  23166. image: {
  23167. source: "./media/characters/reza/back.svg",
  23168. extra: 1183 / 1111,
  23169. bottom: 0.01
  23170. }
  23171. },
  23172. drake: {
  23173. height: math.unit(30, "feet"),
  23174. weight: math.unit(246960, "lb"),
  23175. name: "Drake",
  23176. image: {
  23177. source: "./media/characters/reza/drake.svg",
  23178. extra: 2350 / 2024,
  23179. bottom: 60.7 / 2403
  23180. }
  23181. },
  23182. },
  23183. [
  23184. {
  23185. name: "Normal",
  23186. height: math.unit(4, "feet"),
  23187. default: true
  23188. },
  23189. ]
  23190. ))
  23191. characterMakers.push(() => makeCharacter(
  23192. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  23193. {
  23194. side: {
  23195. height: math.unit(15, "feet"),
  23196. weight: math.unit(14, "tons"),
  23197. name: "Side",
  23198. image: {
  23199. source: "./media/characters/athea/side.svg",
  23200. extra: 960 / 540,
  23201. bottom: 0.003
  23202. }
  23203. },
  23204. sitting: {
  23205. height: math.unit(6 * 2.85, "feet"),
  23206. weight: math.unit(14, "tons"),
  23207. name: "Sitting",
  23208. image: {
  23209. source: "./media/characters/athea/sitting.svg",
  23210. extra: 621 / 581,
  23211. bottom: 0.075
  23212. }
  23213. },
  23214. maw: {
  23215. height: math.unit(7.59498031496063, "feet"),
  23216. name: "Maw",
  23217. image: {
  23218. source: "./media/characters/athea/maw.svg"
  23219. }
  23220. },
  23221. },
  23222. [
  23223. {
  23224. name: "Lap Cat",
  23225. height: math.unit(2.5, "feet")
  23226. },
  23227. {
  23228. name: "Minimacro",
  23229. height: math.unit(15, "feet"),
  23230. default: true
  23231. },
  23232. {
  23233. name: "Macro",
  23234. height: math.unit(120, "feet")
  23235. },
  23236. {
  23237. name: "Macro+",
  23238. height: math.unit(640, "feet")
  23239. },
  23240. {
  23241. name: "Colossus",
  23242. height: math.unit(2.2, "miles")
  23243. },
  23244. ]
  23245. ))
  23246. characterMakers.push(() => makeCharacter(
  23247. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23248. {
  23249. front: {
  23250. height: math.unit(8 + 8 / 12, "feet"),
  23251. weight: math.unit(130, "kg"),
  23252. name: "Front",
  23253. image: {
  23254. source: "./media/characters/seroko/front.svg",
  23255. extra: 1385 / 1280,
  23256. bottom: 0.025
  23257. }
  23258. },
  23259. back: {
  23260. height: math.unit(8 + 8 / 12, "feet"),
  23261. weight: math.unit(130, "kg"),
  23262. name: "Back",
  23263. image: {
  23264. source: "./media/characters/seroko/back.svg",
  23265. extra: 1369 / 1238,
  23266. bottom: 0.018
  23267. }
  23268. },
  23269. frontDressed: {
  23270. height: math.unit(8 + 8 / 12, "feet"),
  23271. weight: math.unit(130, "kg"),
  23272. name: "Front (Dressed)",
  23273. image: {
  23274. source: "./media/characters/seroko/front-dressed.svg",
  23275. extra: 1366 / 1275,
  23276. bottom: 0.03
  23277. }
  23278. },
  23279. },
  23280. [
  23281. {
  23282. name: "Normal",
  23283. height: math.unit(8 + 8 / 12, "feet"),
  23284. default: true
  23285. },
  23286. ]
  23287. ))
  23288. characterMakers.push(() => makeCharacter(
  23289. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23290. {
  23291. front: {
  23292. height: math.unit(5.5, "feet"),
  23293. weight: math.unit(160, "lb"),
  23294. name: "Front",
  23295. image: {
  23296. source: "./media/characters/quatzi/front.svg",
  23297. extra: 2346 / 2242,
  23298. bottom: 0.015
  23299. }
  23300. },
  23301. },
  23302. [
  23303. {
  23304. name: "Normal",
  23305. height: math.unit(5.5, "feet"),
  23306. default: true
  23307. },
  23308. {
  23309. name: "Big",
  23310. height: math.unit(7.7, "feet")
  23311. },
  23312. ]
  23313. ))
  23314. characterMakers.push(() => makeCharacter(
  23315. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23316. {
  23317. front: {
  23318. height: math.unit(5 + 11 / 12, "feet"),
  23319. weight: math.unit(180, "lb"),
  23320. name: "Front",
  23321. image: {
  23322. source: "./media/characters/sen/front.svg",
  23323. extra: 1321 / 1254,
  23324. bottom: 0.015
  23325. }
  23326. },
  23327. side: {
  23328. height: math.unit(5 + 11 / 12, "feet"),
  23329. weight: math.unit(180, "lb"),
  23330. name: "Side",
  23331. image: {
  23332. source: "./media/characters/sen/side.svg",
  23333. extra: 1321 / 1254,
  23334. bottom: 0.007
  23335. }
  23336. },
  23337. back: {
  23338. height: math.unit(5 + 11 / 12, "feet"),
  23339. weight: math.unit(180, "lb"),
  23340. name: "Back",
  23341. image: {
  23342. source: "./media/characters/sen/back.svg",
  23343. extra: 1321 / 1254
  23344. }
  23345. },
  23346. },
  23347. [
  23348. {
  23349. name: "Normal",
  23350. height: math.unit(5 + 11 / 12, "feet"),
  23351. default: true
  23352. },
  23353. ]
  23354. ))
  23355. characterMakers.push(() => makeCharacter(
  23356. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23357. {
  23358. front: {
  23359. height: math.unit(166.6, "cm"),
  23360. weight: math.unit(66.6, "kg"),
  23361. name: "Front",
  23362. image: {
  23363. source: "./media/characters/fruity/front.svg",
  23364. extra: 1510 / 1386,
  23365. bottom: 0.04
  23366. }
  23367. },
  23368. back: {
  23369. height: math.unit(166.6, "cm"),
  23370. weight: math.unit(66.6, "lb"),
  23371. name: "Back",
  23372. image: {
  23373. source: "./media/characters/fruity/back.svg",
  23374. extra: 1563 / 1435,
  23375. bottom: 0.005
  23376. }
  23377. },
  23378. },
  23379. [
  23380. {
  23381. name: "Normal",
  23382. height: math.unit(166.6, "cm"),
  23383. default: true
  23384. },
  23385. {
  23386. name: "Demonic",
  23387. height: math.unit(166.6, "feet")
  23388. },
  23389. ]
  23390. ))
  23391. characterMakers.push(() => makeCharacter(
  23392. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23393. {
  23394. side: {
  23395. height: math.unit(10, "feet"),
  23396. weight: math.unit(500, "lb"),
  23397. name: "Side",
  23398. image: {
  23399. source: "./media/characters/zost/side.svg",
  23400. extra: 2870/2533,
  23401. bottom: 252/3122
  23402. }
  23403. },
  23404. mawFront: {
  23405. height: math.unit(1.08, "meters"),
  23406. name: "Maw (Front)",
  23407. image: {
  23408. source: "./media/characters/zost/maw-front.svg"
  23409. }
  23410. },
  23411. mawSide: {
  23412. height: math.unit(2.66, "feet"),
  23413. name: "Maw (Side)",
  23414. image: {
  23415. source: "./media/characters/zost/maw-side.svg"
  23416. }
  23417. },
  23418. wingspan: {
  23419. height: math.unit(7.4, "feet"),
  23420. name: "Wingspan",
  23421. image: {
  23422. source: "./media/characters/zost/wingspan.svg"
  23423. }
  23424. },
  23425. },
  23426. [
  23427. {
  23428. name: "Normal",
  23429. height: math.unit(10, "feet"),
  23430. default: true
  23431. },
  23432. ]
  23433. ))
  23434. characterMakers.push(() => makeCharacter(
  23435. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23436. {
  23437. front: {
  23438. height: math.unit(5 + 4 / 12, "feet"),
  23439. weight: math.unit(120, "lb"),
  23440. name: "Front",
  23441. image: {
  23442. source: "./media/characters/luci/front.svg",
  23443. extra: 1985 / 1884,
  23444. bottom: 0.04
  23445. }
  23446. },
  23447. back: {
  23448. height: math.unit(5 + 4 / 12, "feet"),
  23449. weight: math.unit(120, "lb"),
  23450. name: "Back",
  23451. image: {
  23452. source: "./media/characters/luci/back.svg",
  23453. extra: 1892 / 1791,
  23454. bottom: 0.002
  23455. }
  23456. },
  23457. },
  23458. [
  23459. {
  23460. name: "Normal",
  23461. height: math.unit(5 + 4 / 12, "feet"),
  23462. default: true
  23463. },
  23464. ]
  23465. ))
  23466. characterMakers.push(() => makeCharacter(
  23467. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23468. {
  23469. front: {
  23470. height: math.unit(1500, "feet"),
  23471. weight: math.unit(3.8e6, "tons"),
  23472. name: "Front",
  23473. image: {
  23474. source: "./media/characters/2th/front.svg",
  23475. extra: 3489 / 3350,
  23476. bottom: 0.1
  23477. }
  23478. },
  23479. foot: {
  23480. height: math.unit(461, "feet"),
  23481. name: "Foot",
  23482. image: {
  23483. source: "./media/characters/2th/foot.svg"
  23484. }
  23485. },
  23486. },
  23487. [
  23488. {
  23489. name: "\"Micro\"",
  23490. height: math.unit(15 + 7 / 12, "feet")
  23491. },
  23492. {
  23493. name: "Normal",
  23494. height: math.unit(1500, "feet"),
  23495. default: true
  23496. },
  23497. {
  23498. name: "Macro",
  23499. height: math.unit(5000, "feet")
  23500. },
  23501. {
  23502. name: "Megamacro",
  23503. height: math.unit(15, "miles")
  23504. },
  23505. {
  23506. name: "Gigamacro",
  23507. height: math.unit(4000, "miles")
  23508. },
  23509. {
  23510. name: "Galactic",
  23511. height: math.unit(50, "AU")
  23512. },
  23513. ]
  23514. ))
  23515. characterMakers.push(() => makeCharacter(
  23516. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23517. {
  23518. front: {
  23519. height: math.unit(5 + 6 / 12, "feet"),
  23520. weight: math.unit(220, "lb"),
  23521. name: "Front",
  23522. image: {
  23523. source: "./media/characters/amethyst/front.svg",
  23524. extra: 2078 / 2040,
  23525. bottom: 0.045
  23526. }
  23527. },
  23528. back: {
  23529. height: math.unit(5 + 6 / 12, "feet"),
  23530. weight: math.unit(220, "lb"),
  23531. name: "Back",
  23532. image: {
  23533. source: "./media/characters/amethyst/back.svg",
  23534. extra: 2021 / 1989,
  23535. bottom: 0.02
  23536. }
  23537. },
  23538. },
  23539. [
  23540. {
  23541. name: "Normal",
  23542. height: math.unit(5 + 6 / 12, "feet"),
  23543. default: true
  23544. },
  23545. ]
  23546. ))
  23547. characterMakers.push(() => makeCharacter(
  23548. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23549. {
  23550. front: {
  23551. height: math.unit(4 + 11 / 12, "feet"),
  23552. weight: math.unit(120, "lb"),
  23553. name: "Front",
  23554. image: {
  23555. source: "./media/characters/yumi-akiyama/front.svg",
  23556. extra: 1327 / 1235,
  23557. bottom: 0.02
  23558. }
  23559. },
  23560. back: {
  23561. height: math.unit(4 + 11 / 12, "feet"),
  23562. weight: math.unit(120, "lb"),
  23563. name: "Back",
  23564. image: {
  23565. source: "./media/characters/yumi-akiyama/back.svg",
  23566. extra: 1287 / 1245,
  23567. bottom: 0.002
  23568. }
  23569. },
  23570. },
  23571. [
  23572. {
  23573. name: "Galactic",
  23574. height: math.unit(50, "galaxies"),
  23575. default: true
  23576. },
  23577. {
  23578. name: "Universal",
  23579. height: math.unit(100, "universes")
  23580. },
  23581. ]
  23582. ))
  23583. characterMakers.push(() => makeCharacter(
  23584. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23585. {
  23586. front: {
  23587. height: math.unit(8, "feet"),
  23588. weight: math.unit(500, "lb"),
  23589. name: "Front",
  23590. image: {
  23591. source: "./media/characters/rifter-yrmori/front.svg",
  23592. extra: 1180 / 1125,
  23593. bottom: 0.02
  23594. }
  23595. },
  23596. back: {
  23597. height: math.unit(8, "feet"),
  23598. weight: math.unit(500, "lb"),
  23599. name: "Back",
  23600. image: {
  23601. source: "./media/characters/rifter-yrmori/back.svg",
  23602. extra: 1190 / 1145,
  23603. bottom: 0.001
  23604. }
  23605. },
  23606. wings: {
  23607. height: math.unit(7.75, "feet"),
  23608. weight: math.unit(500, "lb"),
  23609. name: "Wings",
  23610. image: {
  23611. source: "./media/characters/rifter-yrmori/wings.svg",
  23612. extra: 1357 / 1285
  23613. }
  23614. },
  23615. maw: {
  23616. height: math.unit(0.8, "feet"),
  23617. name: "Maw",
  23618. image: {
  23619. source: "./media/characters/rifter-yrmori/maw.svg"
  23620. }
  23621. },
  23622. mawfront: {
  23623. height: math.unit(1.45, "feet"),
  23624. name: "Maw (Front)",
  23625. image: {
  23626. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23627. }
  23628. },
  23629. },
  23630. [
  23631. {
  23632. name: "Normal",
  23633. height: math.unit(8, "feet"),
  23634. default: true
  23635. },
  23636. {
  23637. name: "Macro",
  23638. height: math.unit(42, "meters")
  23639. },
  23640. ]
  23641. ))
  23642. characterMakers.push(() => makeCharacter(
  23643. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23644. {
  23645. were: {
  23646. height: math.unit(25 + 6 / 12, "feet"),
  23647. weight: math.unit(10000, "lb"),
  23648. name: "Were",
  23649. image: {
  23650. source: "./media/characters/tahajin/were.svg",
  23651. extra: 801 / 770,
  23652. bottom: 0.042
  23653. }
  23654. },
  23655. aquatic: {
  23656. height: math.unit(6 + 4 / 12, "feet"),
  23657. weight: math.unit(160, "lb"),
  23658. name: "Aquatic",
  23659. image: {
  23660. source: "./media/characters/tahajin/aquatic.svg",
  23661. extra: 572 / 542,
  23662. bottom: 0.04
  23663. }
  23664. },
  23665. chow: {
  23666. height: math.unit(8 + 11 / 12, "feet"),
  23667. weight: math.unit(450, "lb"),
  23668. name: "Chow",
  23669. image: {
  23670. source: "./media/characters/tahajin/chow.svg",
  23671. extra: 660 / 640,
  23672. bottom: 0.015
  23673. }
  23674. },
  23675. demiNaga: {
  23676. height: math.unit(6 + 8 / 12, "feet"),
  23677. weight: math.unit(300, "lb"),
  23678. name: "Demi Naga",
  23679. image: {
  23680. source: "./media/characters/tahajin/demi-naga.svg",
  23681. extra: 643 / 615,
  23682. bottom: 0.1
  23683. }
  23684. },
  23685. data: {
  23686. height: math.unit(5, "inches"),
  23687. weight: math.unit(0.1, "lb"),
  23688. name: "Data",
  23689. image: {
  23690. source: "./media/characters/tahajin/data.svg"
  23691. }
  23692. },
  23693. fluu: {
  23694. height: math.unit(5 + 7 / 12, "feet"),
  23695. weight: math.unit(140, "lb"),
  23696. name: "Fluu",
  23697. image: {
  23698. source: "./media/characters/tahajin/fluu.svg",
  23699. extra: 628 / 592,
  23700. bottom: 0.02
  23701. }
  23702. },
  23703. starWarrior: {
  23704. height: math.unit(4 + 5 / 12, "feet"),
  23705. weight: math.unit(50, "lb"),
  23706. name: "Star Warrior",
  23707. image: {
  23708. source: "./media/characters/tahajin/star-warrior.svg"
  23709. }
  23710. },
  23711. },
  23712. [
  23713. {
  23714. name: "Normal",
  23715. height: math.unit(25 + 6 / 12, "feet"),
  23716. default: true
  23717. },
  23718. ]
  23719. ))
  23720. characterMakers.push(() => makeCharacter(
  23721. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23722. {
  23723. front: {
  23724. height: math.unit(8, "feet"),
  23725. weight: math.unit(350, "lb"),
  23726. name: "Front",
  23727. image: {
  23728. source: "./media/characters/gabira/front.svg",
  23729. extra: 1261/1154,
  23730. bottom: 51/1312
  23731. }
  23732. },
  23733. back: {
  23734. height: math.unit(8, "feet"),
  23735. weight: math.unit(350, "lb"),
  23736. name: "Back",
  23737. image: {
  23738. source: "./media/characters/gabira/back.svg",
  23739. extra: 1265/1163,
  23740. bottom: 46/1311
  23741. }
  23742. },
  23743. head: {
  23744. height: math.unit(2.85, "feet"),
  23745. name: "Head",
  23746. image: {
  23747. source: "./media/characters/gabira/head.svg"
  23748. }
  23749. },
  23750. },
  23751. [
  23752. {
  23753. name: "Normal",
  23754. height: math.unit(8, "feet"),
  23755. default: true
  23756. },
  23757. ]
  23758. ))
  23759. characterMakers.push(() => makeCharacter(
  23760. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23761. {
  23762. front: {
  23763. height: math.unit(5 + 3 / 12, "feet"),
  23764. weight: math.unit(137, "lb"),
  23765. name: "Front",
  23766. image: {
  23767. source: "./media/characters/sasha-katraine/front.svg",
  23768. extra: 1745/1694,
  23769. bottom: 37/1782
  23770. }
  23771. },
  23772. back: {
  23773. height: math.unit(5 + 3 / 12, "feet"),
  23774. weight: math.unit(137, "lb"),
  23775. name: "Back",
  23776. image: {
  23777. source: "./media/characters/sasha-katraine/back.svg",
  23778. extra: 1776/1699,
  23779. bottom: 26/1802
  23780. }
  23781. },
  23782. },
  23783. [
  23784. {
  23785. name: "Micro",
  23786. height: math.unit(5, "inches")
  23787. },
  23788. {
  23789. name: "Normal",
  23790. height: math.unit(5 + 3 / 12, "feet"),
  23791. default: true
  23792. },
  23793. ]
  23794. ))
  23795. characterMakers.push(() => makeCharacter(
  23796. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23797. {
  23798. side: {
  23799. height: math.unit(4, "inches"),
  23800. weight: math.unit(200, "grams"),
  23801. name: "Side",
  23802. image: {
  23803. source: "./media/characters/der/side.svg",
  23804. extra: 719 / 400,
  23805. bottom: 30.6 / 749.9187
  23806. }
  23807. },
  23808. },
  23809. [
  23810. {
  23811. name: "Micro",
  23812. height: math.unit(4, "inches"),
  23813. default: true
  23814. },
  23815. ]
  23816. ))
  23817. characterMakers.push(() => makeCharacter(
  23818. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23819. {
  23820. side: {
  23821. height: math.unit(30, "meters"),
  23822. weight: math.unit(700, "tonnes"),
  23823. name: "Side",
  23824. image: {
  23825. source: "./media/characters/fixerdragon/side.svg",
  23826. extra: (1293.0514 - 116.03) / 1106.86,
  23827. bottom: 116.03 / 1293.0514
  23828. }
  23829. },
  23830. },
  23831. [
  23832. {
  23833. name: "Planck",
  23834. height: math.unit(1.6e-35, "meters")
  23835. },
  23836. {
  23837. name: "Micro",
  23838. height: math.unit(0.4, "meters")
  23839. },
  23840. {
  23841. name: "Normal",
  23842. height: math.unit(30, "meters"),
  23843. default: true
  23844. },
  23845. {
  23846. name: "Megamacro",
  23847. height: math.unit(1.2, "megameters")
  23848. },
  23849. {
  23850. name: "Teramacro",
  23851. height: math.unit(130, "terameters")
  23852. },
  23853. {
  23854. name: "Yottamacro",
  23855. height: math.unit(6200, "yottameters")
  23856. },
  23857. ]
  23858. ));
  23859. characterMakers.push(() => makeCharacter(
  23860. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23861. {
  23862. front: {
  23863. height: math.unit(8, "feet"),
  23864. weight: math.unit(250, "lb"),
  23865. name: "Front",
  23866. image: {
  23867. source: "./media/characters/kite/front.svg",
  23868. extra: 2796 / 2659,
  23869. bottom: 0.002
  23870. }
  23871. },
  23872. },
  23873. [
  23874. {
  23875. name: "Normal",
  23876. height: math.unit(8, "feet"),
  23877. default: true
  23878. },
  23879. {
  23880. name: "Macro",
  23881. height: math.unit(360, "feet")
  23882. },
  23883. {
  23884. name: "Megamacro",
  23885. height: math.unit(1500, "feet")
  23886. },
  23887. ]
  23888. ))
  23889. characterMakers.push(() => makeCharacter(
  23890. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23891. {
  23892. anthro_front: {
  23893. height: math.unit(5 + 11/12, "feet"),
  23894. weight: math.unit(170, "lb"),
  23895. name: "Front",
  23896. image: {
  23897. source: "./media/characters/poojawa-vynar/anthro-front.svg",
  23898. extra: 1735/1585,
  23899. bottom: 96/1831
  23900. },
  23901. form: "anthro",
  23902. default: true
  23903. },
  23904. anthro_back: {
  23905. height: math.unit(5 + 11/12, "feet"),
  23906. weight: math.unit(170, "lb"),
  23907. name: "Back",
  23908. image: {
  23909. source: "./media/characters/poojawa-vynar/anthro-back.svg",
  23910. extra: 1749/1607,
  23911. bottom: 28/1777
  23912. },
  23913. form: "anthro"
  23914. },
  23915. anthro_male: {
  23916. height: math.unit(5 + 11/12, "feet"),
  23917. weight: math.unit(170, "lb"),
  23918. name: "Male",
  23919. image: {
  23920. source: "./media/characters/poojawa-vynar/anthro-front-male.svg",
  23921. extra: 1855/1713,
  23922. bottom: 63/1918
  23923. },
  23924. form: "anthro"
  23925. },
  23926. taur_front: {
  23927. height: math.unit(5 + 7/12, "feet"),
  23928. weight: math.unit(170, "lb"),
  23929. name: "Front",
  23930. image: {
  23931. source: "./media/characters/poojawa-vynar/taur-front.svg",
  23932. extra: 1151/1059,
  23933. bottom: 356/1507
  23934. },
  23935. form: "taur",
  23936. default: true
  23937. },
  23938. anthro_frontDressed: {
  23939. height: math.unit(5 + 11/12, "feet"),
  23940. weight: math.unit(170, "lb"),
  23941. name: "Front (Dressed)",
  23942. image: {
  23943. source: "./media/characters/poojawa-vynar/anthro-front-dressed.svg",
  23944. extra: 1735/1585,
  23945. bottom: 96/1831
  23946. },
  23947. form: "anthro"
  23948. },
  23949. anthro_backDressed: {
  23950. height: math.unit(5 + 11/12, "feet"),
  23951. weight: math.unit(170, "lb"),
  23952. name: "Back (Dressed)",
  23953. image: {
  23954. source: "./media/characters/poojawa-vynar/anthro-back-dressed.svg",
  23955. extra: 1749/1607,
  23956. bottom: 28/1777
  23957. },
  23958. form: "anthro"
  23959. },
  23960. anthro_maleDressed: {
  23961. height: math.unit(5 + 11/12, "feet"),
  23962. weight: math.unit(170, "lb"),
  23963. name: "Male (Dressed)",
  23964. image: {
  23965. source: "./media/characters/poojawa-vynar/anthro-front-male-dressed.svg",
  23966. extra: 1855/1713,
  23967. bottom: 63/1918
  23968. },
  23969. form: "anthro"
  23970. },
  23971. taur_frontDressed: {
  23972. height: math.unit(5 + 7/12, "feet"),
  23973. weight: math.unit(170, "lb"),
  23974. name: "Front (Dressed)",
  23975. image: {
  23976. source: "./media/characters/poojawa-vynar/taur-front-dressed.svg",
  23977. extra: 1151/1059,
  23978. bottom: 356/1507
  23979. },
  23980. form: "taur"
  23981. },
  23982. maw: {
  23983. height: math.unit(1.46, "feet"),
  23984. name: "Maw",
  23985. image: {
  23986. source: "./media/characters/poojawa-vynar/maw.svg"
  23987. },
  23988. allForms: true
  23989. },
  23990. head: {
  23991. height: math.unit(2.34, "feet"),
  23992. name: "Head",
  23993. image: {
  23994. source: "./media/characters/poojawa-vynar/head.svg"
  23995. },
  23996. allForms: true
  23997. },
  23998. leftPaw: {
  23999. height: math.unit(1.72, "feet"),
  24000. name: "Left Paw",
  24001. image: {
  24002. source: "./media/characters/poojawa-vynar/paw-left.svg"
  24003. },
  24004. allForms: true
  24005. },
  24006. rightPaw: {
  24007. height: math.unit(1.61, "feet"),
  24008. name: "Right Paw",
  24009. image: {
  24010. source: "./media/characters/poojawa-vynar/paw-right.svg"
  24011. },
  24012. allForms: true
  24013. },
  24014. toering: {
  24015. height: math.unit(2.9, "inches"),
  24016. name: "Toering",
  24017. image: {
  24018. source: "./media/characters/poojawa-vynar/toering.svg"
  24019. },
  24020. allForms: true
  24021. },
  24022. shaft: {
  24023. height: math.unit(0.625, "feet"),
  24024. name: "Shaft",
  24025. image: {
  24026. source: "./media/characters/poojawa-vynar/shaft.svg"
  24027. },
  24028. allForms: true
  24029. },
  24030. spade: {
  24031. height: math.unit(0.42, "feet"),
  24032. name: "Spade",
  24033. image: {
  24034. source: "./media/characters/poojawa-vynar/spade.svg"
  24035. },
  24036. allForms: true
  24037. },
  24038. },
  24039. [
  24040. {
  24041. name: "Shortstack",
  24042. height: math.unit(4, "feet"),
  24043. form: "anthro"
  24044. },
  24045. {
  24046. name: "Normal",
  24047. height: math.unit(5 + 11 / 12, "feet"),
  24048. form: "anthro",
  24049. default: true
  24050. },
  24051. {
  24052. name: "Tauric",
  24053. height: math.unit(4, "meters"),
  24054. form: "taur",
  24055. default: true
  24056. },
  24057. ],
  24058. {
  24059. "anthro": {
  24060. name: "Anthro",
  24061. default: true
  24062. },
  24063. "taur": {
  24064. name: "Taur",
  24065. },
  24066. }
  24067. ))
  24068. characterMakers.push(() => makeCharacter(
  24069. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  24070. {
  24071. front: {
  24072. height: math.unit(293, "meters"),
  24073. weight: math.unit(70400, "tons"),
  24074. name: "Front",
  24075. image: {
  24076. source: "./media/characters/violette/front.svg",
  24077. extra: 1227 / 1180,
  24078. bottom: 0.005
  24079. }
  24080. },
  24081. back: {
  24082. height: math.unit(293, "meters"),
  24083. weight: math.unit(70400, "tons"),
  24084. name: "Back",
  24085. image: {
  24086. source: "./media/characters/violette/back.svg",
  24087. extra: 1227 / 1180,
  24088. bottom: 0.005
  24089. }
  24090. },
  24091. },
  24092. [
  24093. {
  24094. name: "Macro",
  24095. height: math.unit(293, "meters"),
  24096. default: true
  24097. },
  24098. ]
  24099. ))
  24100. characterMakers.push(() => makeCharacter(
  24101. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  24102. {
  24103. front: {
  24104. height: math.unit(1050, "feet"),
  24105. weight: math.unit(200000, "tons"),
  24106. name: "Front",
  24107. image: {
  24108. source: "./media/characters/alessandra/front.svg",
  24109. extra: 960 / 912,
  24110. bottom: 0.06
  24111. }
  24112. },
  24113. },
  24114. [
  24115. {
  24116. name: "Macro",
  24117. height: math.unit(1050, "feet")
  24118. },
  24119. {
  24120. name: "Macro+",
  24121. height: math.unit(900, "meters"),
  24122. default: true
  24123. },
  24124. ]
  24125. ))
  24126. characterMakers.push(() => makeCharacter(
  24127. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  24128. {
  24129. front: {
  24130. height: math.unit(5, "feet"),
  24131. weight: math.unit(187, "lb"),
  24132. name: "Front",
  24133. image: {
  24134. source: "./media/characters/person/front.svg",
  24135. extra: 3087 / 2945,
  24136. bottom: 91 / 3181
  24137. }
  24138. },
  24139. },
  24140. [
  24141. {
  24142. name: "Micro",
  24143. height: math.unit(3, "inches")
  24144. },
  24145. {
  24146. name: "Normal",
  24147. height: math.unit(5, "feet"),
  24148. default: true
  24149. },
  24150. {
  24151. name: "Macro",
  24152. height: math.unit(90, "feet")
  24153. },
  24154. {
  24155. name: "Max Size",
  24156. height: math.unit(280, "feet")
  24157. },
  24158. ]
  24159. ))
  24160. characterMakers.push(() => makeCharacter(
  24161. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  24162. {
  24163. front: {
  24164. height: math.unit(4.5, "meters"),
  24165. weight: math.unit(3200, "lb"),
  24166. name: "Front",
  24167. image: {
  24168. source: "./media/characters/ty/front.svg",
  24169. extra: 1038 / 960,
  24170. bottom: 31.156 / 1068
  24171. }
  24172. },
  24173. back: {
  24174. height: math.unit(4.5, "meters"),
  24175. weight: math.unit(3200, "lb"),
  24176. name: "Back",
  24177. image: {
  24178. source: "./media/characters/ty/back.svg",
  24179. extra: 1044 / 966,
  24180. bottom: 7.48 / 1049
  24181. }
  24182. },
  24183. },
  24184. [
  24185. {
  24186. name: "Normal",
  24187. height: math.unit(4.5, "meters"),
  24188. default: true
  24189. },
  24190. ]
  24191. ))
  24192. characterMakers.push(() => makeCharacter(
  24193. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  24194. {
  24195. front: {
  24196. height: math.unit(5 + 4 / 12, "feet"),
  24197. weight: math.unit(115, "lb"),
  24198. name: "Front",
  24199. image: {
  24200. source: "./media/characters/rocky/front.svg",
  24201. extra: 1012 / 975,
  24202. bottom: 54 / 1066
  24203. }
  24204. },
  24205. },
  24206. [
  24207. {
  24208. name: "Normal",
  24209. height: math.unit(5 + 4 / 12, "feet"),
  24210. default: true
  24211. },
  24212. ]
  24213. ))
  24214. characterMakers.push(() => makeCharacter(
  24215. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  24216. {
  24217. upright: {
  24218. height: math.unit(6, "meters"),
  24219. weight: math.unit(4000, "kg"),
  24220. name: "Upright",
  24221. image: {
  24222. source: "./media/characters/ruin/upright.svg",
  24223. extra: 668 / 661,
  24224. bottom: 42 / 799.8396
  24225. }
  24226. },
  24227. },
  24228. [
  24229. {
  24230. name: "Normal",
  24231. height: math.unit(6, "meters"),
  24232. default: true
  24233. },
  24234. ]
  24235. ))
  24236. characterMakers.push(() => makeCharacter(
  24237. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24238. {
  24239. front: {
  24240. height: math.unit(5, "feet"),
  24241. weight: math.unit(106, "lb"),
  24242. name: "Front",
  24243. image: {
  24244. source: "./media/characters/robin/front.svg",
  24245. extra: 862 / 799,
  24246. bottom: 42.4 / 914.8856
  24247. }
  24248. },
  24249. },
  24250. [
  24251. {
  24252. name: "Normal",
  24253. height: math.unit(5, "feet"),
  24254. default: true
  24255. },
  24256. ]
  24257. ))
  24258. characterMakers.push(() => makeCharacter(
  24259. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24260. {
  24261. side: {
  24262. height: math.unit(3, "feet"),
  24263. weight: math.unit(225, "lb"),
  24264. name: "Side",
  24265. image: {
  24266. source: "./media/characters/saian/side.svg",
  24267. extra: 566 / 356,
  24268. bottom: 79.7 / 643
  24269. }
  24270. },
  24271. maw: {
  24272. height: math.unit(2.85, "feet"),
  24273. name: "Maw",
  24274. image: {
  24275. source: "./media/characters/saian/maw.svg"
  24276. }
  24277. },
  24278. },
  24279. [
  24280. {
  24281. name: "Normal",
  24282. height: math.unit(3, "feet"),
  24283. default: true
  24284. },
  24285. ]
  24286. ))
  24287. characterMakers.push(() => makeCharacter(
  24288. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24289. {
  24290. side: {
  24291. height: math.unit(8, "feet"),
  24292. weight: math.unit(300, "lb"),
  24293. name: "Side",
  24294. image: {
  24295. source: "./media/characters/equus-silvermane/side.svg",
  24296. extra: 2176 / 2050,
  24297. bottom: 65.7 / 2245
  24298. }
  24299. },
  24300. front: {
  24301. height: math.unit(8, "feet"),
  24302. weight: math.unit(300, "lb"),
  24303. name: "Front",
  24304. image: {
  24305. source: "./media/characters/equus-silvermane/front.svg",
  24306. extra: 4633 / 4400,
  24307. bottom: 71.3 / 4706.915
  24308. }
  24309. },
  24310. sideStepping: {
  24311. height: math.unit(8, "feet"),
  24312. weight: math.unit(300, "lb"),
  24313. name: "Side (Stepping)",
  24314. image: {
  24315. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24316. extra: 1968 / 1860,
  24317. bottom: 16.4 / 1989
  24318. }
  24319. },
  24320. },
  24321. [
  24322. {
  24323. name: "Normal",
  24324. height: math.unit(8, "feet")
  24325. },
  24326. {
  24327. name: "Minimacro",
  24328. height: math.unit(75, "feet"),
  24329. default: true
  24330. },
  24331. {
  24332. name: "Macro",
  24333. height: math.unit(150, "feet")
  24334. },
  24335. {
  24336. name: "Macro+",
  24337. height: math.unit(1000, "feet")
  24338. },
  24339. {
  24340. name: "Megamacro",
  24341. height: math.unit(1, "mile")
  24342. },
  24343. ]
  24344. ))
  24345. characterMakers.push(() => makeCharacter(
  24346. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24347. {
  24348. side: {
  24349. height: math.unit(20, "feet"),
  24350. weight: math.unit(30000, "kg"),
  24351. name: "Side",
  24352. image: {
  24353. source: "./media/characters/windar/side.svg",
  24354. extra: 1491 / 1248,
  24355. bottom: 82.56 / 1568
  24356. }
  24357. },
  24358. },
  24359. [
  24360. {
  24361. name: "Normal",
  24362. height: math.unit(20, "feet"),
  24363. default: true
  24364. },
  24365. ]
  24366. ))
  24367. characterMakers.push(() => makeCharacter(
  24368. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24369. {
  24370. side: {
  24371. height: math.unit(15.66, "feet"),
  24372. weight: math.unit(150, "lb"),
  24373. name: "Side",
  24374. image: {
  24375. source: "./media/characters/melody/side.svg",
  24376. extra: 1097 / 944,
  24377. bottom: 11.8 / 1109
  24378. }
  24379. },
  24380. sideOutfit: {
  24381. height: math.unit(15.66, "feet"),
  24382. weight: math.unit(150, "lb"),
  24383. name: "Side (Outfit)",
  24384. image: {
  24385. source: "./media/characters/melody/side-outfit.svg",
  24386. extra: 1097 / 944,
  24387. bottom: 11.8 / 1109
  24388. }
  24389. },
  24390. },
  24391. [
  24392. {
  24393. name: "Normal",
  24394. height: math.unit(15.66, "feet"),
  24395. default: true
  24396. },
  24397. ]
  24398. ))
  24399. characterMakers.push(() => makeCharacter(
  24400. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24401. {
  24402. armoredFront: {
  24403. height: math.unit(8, "feet"),
  24404. weight: math.unit(325, "lb"),
  24405. name: "Front",
  24406. image: {
  24407. source: "./media/characters/windera/armored-front.svg",
  24408. extra: 1830/1598,
  24409. bottom: 151/1981
  24410. },
  24411. form: "armored",
  24412. default: true
  24413. },
  24414. macroFront: {
  24415. height: math.unit(70, "feet"),
  24416. weight: math.unit(315453, "lb"),
  24417. name: "Front",
  24418. image: {
  24419. source: "./media/characters/windera/macro-front.svg",
  24420. extra: 963/883,
  24421. bottom: 23/986
  24422. },
  24423. form: "macro",
  24424. default: true
  24425. },
  24426. },
  24427. [
  24428. {
  24429. name: "Normal",
  24430. height: math.unit(8, "feet"),
  24431. default: true,
  24432. form: "armored"
  24433. },
  24434. {
  24435. name: "Normal",
  24436. height: math.unit(70, "feet"),
  24437. default: true,
  24438. form: "macro"
  24439. },
  24440. ],
  24441. {
  24442. "armored": {
  24443. name: "Armored",
  24444. default: true
  24445. },
  24446. "macro": {
  24447. name: "Macro",
  24448. },
  24449. }
  24450. ))
  24451. characterMakers.push(() => makeCharacter(
  24452. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24453. {
  24454. front: {
  24455. height: math.unit(28.75, "feet"),
  24456. weight: math.unit(2000, "kg"),
  24457. name: "Front",
  24458. image: {
  24459. source: "./media/characters/sonear/front.svg",
  24460. extra: 1041.1 / 964.9,
  24461. bottom: 53.7 / 1096.6
  24462. }
  24463. },
  24464. },
  24465. [
  24466. {
  24467. name: "Normal",
  24468. height: math.unit(28.75, "feet"),
  24469. default: true
  24470. },
  24471. ]
  24472. ))
  24473. characterMakers.push(() => makeCharacter(
  24474. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24475. {
  24476. side: {
  24477. height: math.unit(25.5, "feet"),
  24478. weight: math.unit(23000, "kg"),
  24479. name: "Side",
  24480. image: {
  24481. source: "./media/characters/kanara/side.svg"
  24482. }
  24483. },
  24484. },
  24485. [
  24486. {
  24487. name: "Normal",
  24488. height: math.unit(25.5, "feet"),
  24489. default: true
  24490. },
  24491. ]
  24492. ))
  24493. characterMakers.push(() => makeCharacter(
  24494. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24495. {
  24496. side: {
  24497. height: math.unit(10, "feet"),
  24498. weight: math.unit(1000, "kg"),
  24499. name: "Side",
  24500. image: {
  24501. source: "./media/characters/ereus/side.svg",
  24502. extra: 1157 / 959,
  24503. bottom: 153 / 1312.5
  24504. }
  24505. },
  24506. },
  24507. [
  24508. {
  24509. name: "Normal",
  24510. height: math.unit(10, "feet"),
  24511. default: true
  24512. },
  24513. ]
  24514. ))
  24515. characterMakers.push(() => makeCharacter(
  24516. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24517. {
  24518. side: {
  24519. height: math.unit(4.5, "feet"),
  24520. weight: math.unit(500, "lb"),
  24521. name: "Side",
  24522. image: {
  24523. source: "./media/characters/e-ter/side.svg",
  24524. extra: 1550 / 1248,
  24525. bottom: 146 / 1694
  24526. }
  24527. },
  24528. },
  24529. [
  24530. {
  24531. name: "Normal",
  24532. height: math.unit(4.5, "feet"),
  24533. default: true
  24534. },
  24535. ]
  24536. ))
  24537. characterMakers.push(() => makeCharacter(
  24538. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24539. {
  24540. side: {
  24541. height: math.unit(9.7, "feet"),
  24542. weight: math.unit(4000, "kg"),
  24543. name: "Side",
  24544. image: {
  24545. source: "./media/characters/yamie/side.svg"
  24546. }
  24547. },
  24548. },
  24549. [
  24550. {
  24551. name: "Normal",
  24552. height: math.unit(9.7, "feet"),
  24553. default: true
  24554. },
  24555. ]
  24556. ))
  24557. characterMakers.push(() => makeCharacter(
  24558. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24559. {
  24560. front: {
  24561. height: math.unit(50, "feet"),
  24562. weight: math.unit(50000, "kg"),
  24563. name: "Front",
  24564. image: {
  24565. source: "./media/characters/anders/front.svg",
  24566. extra: 570 / 539,
  24567. bottom: 14.7 / 586.7
  24568. }
  24569. },
  24570. },
  24571. [
  24572. {
  24573. name: "Large",
  24574. height: math.unit(50, "feet")
  24575. },
  24576. {
  24577. name: "Macro",
  24578. height: math.unit(2000, "feet"),
  24579. default: true
  24580. },
  24581. {
  24582. name: "Megamacro",
  24583. height: math.unit(12, "miles")
  24584. },
  24585. ]
  24586. ))
  24587. characterMakers.push(() => makeCharacter(
  24588. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24589. {
  24590. front: {
  24591. height: math.unit(7 + 2 / 12, "feet"),
  24592. weight: math.unit(300, "lb"),
  24593. name: "Front",
  24594. image: {
  24595. source: "./media/characters/reban/front.svg",
  24596. extra: 1287/1212,
  24597. bottom: 148/1435
  24598. }
  24599. },
  24600. head: {
  24601. height: math.unit(1.95, "feet"),
  24602. name: "Head",
  24603. image: {
  24604. source: "./media/characters/reban/head.svg"
  24605. }
  24606. },
  24607. maw: {
  24608. height: math.unit(0.95, "feet"),
  24609. name: "Maw",
  24610. image: {
  24611. source: "./media/characters/reban/maw.svg"
  24612. }
  24613. },
  24614. foot: {
  24615. height: math.unit(1.65, "feet"),
  24616. name: "Foot",
  24617. image: {
  24618. source: "./media/characters/reban/foot.svg"
  24619. }
  24620. },
  24621. dick: {
  24622. height: math.unit(7 / 5, "feet"),
  24623. name: "Dick",
  24624. image: {
  24625. source: "./media/characters/reban/dick.svg"
  24626. }
  24627. },
  24628. },
  24629. [
  24630. {
  24631. name: "Natural Height",
  24632. height: math.unit(7 + 2 / 12, "feet")
  24633. },
  24634. {
  24635. name: "Macro",
  24636. height: math.unit(500, "feet"),
  24637. default: true
  24638. },
  24639. {
  24640. name: "Canon Height",
  24641. height: math.unit(50, "AU")
  24642. },
  24643. ]
  24644. ))
  24645. characterMakers.push(() => makeCharacter(
  24646. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24647. {
  24648. front: {
  24649. height: math.unit(6, "feet"),
  24650. weight: math.unit(150, "lb"),
  24651. name: "Front",
  24652. image: {
  24653. source: "./media/characters/terrance-keayes/front.svg",
  24654. extra: 1.005,
  24655. bottom: 151 / 1615
  24656. }
  24657. },
  24658. side: {
  24659. height: math.unit(6, "feet"),
  24660. weight: math.unit(150, "lb"),
  24661. name: "Side",
  24662. image: {
  24663. source: "./media/characters/terrance-keayes/side.svg",
  24664. extra: 1.005,
  24665. bottom: 129.4 / 1544
  24666. }
  24667. },
  24668. back: {
  24669. height: math.unit(6, "feet"),
  24670. weight: math.unit(150, "lb"),
  24671. name: "Back",
  24672. image: {
  24673. source: "./media/characters/terrance-keayes/back.svg",
  24674. extra: 1.005,
  24675. bottom: 58.4 / 1557.3
  24676. }
  24677. },
  24678. dick: {
  24679. height: math.unit(6 * 0.208, "feet"),
  24680. name: "Dick",
  24681. image: {
  24682. source: "./media/characters/terrance-keayes/dick.svg"
  24683. }
  24684. },
  24685. },
  24686. [
  24687. {
  24688. name: "Canon Height",
  24689. height: math.unit(35, "miles"),
  24690. default: true
  24691. },
  24692. ]
  24693. ))
  24694. characterMakers.push(() => makeCharacter(
  24695. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24696. {
  24697. front: {
  24698. height: math.unit(6, "feet"),
  24699. weight: math.unit(150, "lb"),
  24700. name: "Front",
  24701. image: {
  24702. source: "./media/characters/ofelia/front.svg",
  24703. extra: 1130/1117,
  24704. bottom: 91/1221
  24705. }
  24706. },
  24707. back: {
  24708. height: math.unit(6, "feet"),
  24709. weight: math.unit(150, "lb"),
  24710. name: "Back",
  24711. image: {
  24712. source: "./media/characters/ofelia/back.svg",
  24713. extra: 1172/1159,
  24714. bottom: 28/1200
  24715. }
  24716. },
  24717. maw: {
  24718. height: math.unit(1, "feet"),
  24719. name: "Maw",
  24720. image: {
  24721. source: "./media/characters/ofelia/maw.svg"
  24722. }
  24723. },
  24724. foot: {
  24725. height: math.unit(1.949, "feet"),
  24726. name: "Foot",
  24727. image: {
  24728. source: "./media/characters/ofelia/foot.svg"
  24729. }
  24730. },
  24731. },
  24732. [
  24733. {
  24734. name: "Canon Height",
  24735. height: math.unit(2000, "miles"),
  24736. default: true
  24737. },
  24738. ]
  24739. ))
  24740. characterMakers.push(() => makeCharacter(
  24741. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24742. {
  24743. front: {
  24744. height: math.unit(6, "feet"),
  24745. weight: math.unit(150, "lb"),
  24746. name: "Front",
  24747. image: {
  24748. source: "./media/characters/samuel/front.svg",
  24749. extra: 265 / 258,
  24750. bottom: 2 / 266.1566
  24751. }
  24752. },
  24753. },
  24754. [
  24755. {
  24756. name: "Macro",
  24757. height: math.unit(100, "feet"),
  24758. default: true
  24759. },
  24760. {
  24761. name: "Full Size",
  24762. height: math.unit(1000, "miles")
  24763. },
  24764. ]
  24765. ))
  24766. characterMakers.push(() => makeCharacter(
  24767. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24768. {
  24769. front: {
  24770. height: math.unit(6, "feet"),
  24771. weight: math.unit(300, "lb"),
  24772. name: "Front",
  24773. image: {
  24774. source: "./media/characters/beishir-kiel/front.svg",
  24775. extra: 569 / 547,
  24776. bottom: 41.9 / 609
  24777. }
  24778. },
  24779. maw: {
  24780. height: math.unit(6 * 0.202, "feet"),
  24781. name: "Maw",
  24782. image: {
  24783. source: "./media/characters/beishir-kiel/maw.svg"
  24784. }
  24785. },
  24786. },
  24787. [
  24788. {
  24789. name: "Macro",
  24790. height: math.unit(300, "feet"),
  24791. default: true
  24792. },
  24793. ]
  24794. ))
  24795. characterMakers.push(() => makeCharacter(
  24796. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24797. {
  24798. front: {
  24799. height: math.unit(5 + 7/12, "feet"),
  24800. weight: math.unit(120, "lb"),
  24801. name: "Front",
  24802. image: {
  24803. source: "./media/characters/logan-grey/front.svg",
  24804. extra: 1836/1738,
  24805. bottom: 108/1944
  24806. }
  24807. },
  24808. back: {
  24809. height: math.unit(5 + 7/12, "feet"),
  24810. weight: math.unit(120, "lb"),
  24811. name: "Back",
  24812. image: {
  24813. source: "./media/characters/logan-grey/back.svg",
  24814. extra: 1880/1794,
  24815. bottom: 24/1904
  24816. }
  24817. },
  24818. frontSfw: {
  24819. height: math.unit(5 + 7/12, "feet"),
  24820. weight: math.unit(120, "lb"),
  24821. name: "Front (SFW)",
  24822. image: {
  24823. source: "./media/characters/logan-grey/front-sfw.svg",
  24824. extra: 1836/1738,
  24825. bottom: 108/1944
  24826. }
  24827. },
  24828. backSfw: {
  24829. height: math.unit(5 + 7/12, "feet"),
  24830. weight: math.unit(120, "lb"),
  24831. name: "Back (SFW)",
  24832. image: {
  24833. source: "./media/characters/logan-grey/back-sfw.svg",
  24834. extra: 1880/1794,
  24835. bottom: 24/1904
  24836. }
  24837. },
  24838. hands: {
  24839. height: math.unit(0.84, "feet"),
  24840. name: "Hands",
  24841. image: {
  24842. source: "./media/characters/logan-grey/hands.svg"
  24843. }
  24844. },
  24845. paws: {
  24846. height: math.unit(0.72, "feet"),
  24847. name: "Paws",
  24848. image: {
  24849. source: "./media/characters/logan-grey/paws.svg"
  24850. }
  24851. },
  24852. cock: {
  24853. height: math.unit(1.45, "feet"),
  24854. name: "Cock",
  24855. image: {
  24856. source: "./media/characters/logan-grey/cock.svg"
  24857. }
  24858. },
  24859. cockAlt: {
  24860. height: math.unit(1.437, "feet"),
  24861. name: "Cock (alt)",
  24862. image: {
  24863. source: "./media/characters/logan-grey/cock-alt.svg"
  24864. }
  24865. },
  24866. },
  24867. [
  24868. {
  24869. name: "Normal",
  24870. height: math.unit(5 + 8 / 12, "feet")
  24871. },
  24872. {
  24873. name: "The 500 Foot Femboy",
  24874. height: math.unit(500, "feet"),
  24875. default: true
  24876. },
  24877. {
  24878. name: "Megmacro",
  24879. height: math.unit(20, "miles")
  24880. },
  24881. ]
  24882. ))
  24883. characterMakers.push(() => makeCharacter(
  24884. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24885. {
  24886. front: {
  24887. height: math.unit(8 + 2 / 12, "feet"),
  24888. weight: math.unit(275, "lb"),
  24889. name: "Front",
  24890. image: {
  24891. source: "./media/characters/draganta/front.svg",
  24892. extra: 1177 / 1135,
  24893. bottom: 33.46 / 1212.1
  24894. }
  24895. },
  24896. },
  24897. [
  24898. {
  24899. name: "Normal",
  24900. height: math.unit(8 + 6 / 12, "feet"),
  24901. default: true
  24902. },
  24903. {
  24904. name: "Macro",
  24905. height: math.unit(150, "feet")
  24906. },
  24907. {
  24908. name: "Megamacro",
  24909. height: math.unit(1000, "miles")
  24910. },
  24911. ]
  24912. ))
  24913. characterMakers.push(() => makeCharacter(
  24914. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24915. {
  24916. front: {
  24917. height: math.unit(1.72, "m"),
  24918. weight: math.unit(80, "lb"),
  24919. name: "Front",
  24920. image: {
  24921. source: "./media/characters/voski/front.svg",
  24922. extra: 2076.22 / 2022.4,
  24923. bottom: 102.7 / 2177.3866
  24924. }
  24925. },
  24926. frontFlaccid: {
  24927. height: math.unit(1.72, "m"),
  24928. weight: math.unit(80, "lb"),
  24929. name: "Front (Flaccid)",
  24930. image: {
  24931. source: "./media/characters/voski/front-flaccid.svg",
  24932. extra: 2076.22 / 2022.4,
  24933. bottom: 102.7 / 2177.3866
  24934. }
  24935. },
  24936. frontErect: {
  24937. height: math.unit(1.72, "m"),
  24938. weight: math.unit(80, "lb"),
  24939. name: "Front (Erect)",
  24940. image: {
  24941. source: "./media/characters/voski/front-erect.svg",
  24942. extra: 2076.22 / 2022.4,
  24943. bottom: 102.7 / 2177.3866
  24944. }
  24945. },
  24946. back: {
  24947. height: math.unit(1.72, "m"),
  24948. weight: math.unit(80, "lb"),
  24949. name: "Back",
  24950. image: {
  24951. source: "./media/characters/voski/back.svg",
  24952. extra: 2104 / 2051,
  24953. bottom: 10.45 / 2113.63
  24954. }
  24955. },
  24956. },
  24957. [
  24958. {
  24959. name: "Normal",
  24960. height: math.unit(1.72, "m")
  24961. },
  24962. {
  24963. name: "Macro",
  24964. height: math.unit(55, "m"),
  24965. default: true
  24966. },
  24967. {
  24968. name: "Macro+",
  24969. height: math.unit(300, "m")
  24970. },
  24971. {
  24972. name: "Macro++",
  24973. height: math.unit(700, "m")
  24974. },
  24975. {
  24976. name: "Macro+++",
  24977. height: math.unit(4500, "m")
  24978. },
  24979. {
  24980. name: "Macro++++",
  24981. height: math.unit(45, "km")
  24982. },
  24983. {
  24984. name: "Macro+++++",
  24985. height: math.unit(1220, "km")
  24986. },
  24987. ]
  24988. ))
  24989. characterMakers.push(() => makeCharacter(
  24990. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24991. {
  24992. front: {
  24993. height: math.unit(2.3, "m"),
  24994. weight: math.unit(304, "kg"),
  24995. name: "Front",
  24996. image: {
  24997. source: "./media/characters/icowom-lee/front.svg",
  24998. extra: 985 / 955,
  24999. bottom: 25.4 / 1012
  25000. }
  25001. },
  25002. fronttentacles: {
  25003. height: math.unit(2.3, "m"),
  25004. weight: math.unit(304, "kg"),
  25005. name: "Front-tentacles",
  25006. image: {
  25007. source: "./media/characters/icowom-lee/front-tentacles.svg",
  25008. extra: 985 / 955,
  25009. bottom: 25.4 / 1012
  25010. }
  25011. },
  25012. back: {
  25013. height: math.unit(2.3, "m"),
  25014. weight: math.unit(304, "kg"),
  25015. name: "Back",
  25016. image: {
  25017. source: "./media/characters/icowom-lee/back.svg",
  25018. extra: 975 / 954,
  25019. bottom: 9.5 / 985
  25020. }
  25021. },
  25022. backtentacles: {
  25023. height: math.unit(2.3, "m"),
  25024. weight: math.unit(304, "kg"),
  25025. name: "Back-tentacles",
  25026. image: {
  25027. source: "./media/characters/icowom-lee/back-tentacles.svg",
  25028. extra: 975 / 954,
  25029. bottom: 9.5 / 985
  25030. }
  25031. },
  25032. frontDressed: {
  25033. height: math.unit(2.3, "m"),
  25034. weight: math.unit(304, "kg"),
  25035. name: "Front (Dressed)",
  25036. image: {
  25037. source: "./media/characters/icowom-lee/front-dressed.svg",
  25038. extra: 3076 / 2933,
  25039. bottom: 51.4 / 3125.1889
  25040. }
  25041. },
  25042. rump: {
  25043. height: math.unit(0.776, "meters"),
  25044. name: "Rump",
  25045. image: {
  25046. source: "./media/characters/icowom-lee/rump.svg"
  25047. }
  25048. },
  25049. genitals: {
  25050. height: math.unit(0.78, "meters"),
  25051. name: "Genitals",
  25052. image: {
  25053. source: "./media/characters/icowom-lee/genitals.svg"
  25054. }
  25055. },
  25056. },
  25057. [
  25058. {
  25059. name: "Normal",
  25060. height: math.unit(2.3, "meters"),
  25061. default: true
  25062. },
  25063. {
  25064. name: "Macro",
  25065. height: math.unit(94, "meters"),
  25066. default: true
  25067. },
  25068. ]
  25069. ))
  25070. characterMakers.push(() => makeCharacter(
  25071. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  25072. {
  25073. front: {
  25074. height: math.unit(22, "meters"),
  25075. weight: math.unit(21000, "kg"),
  25076. name: "Front",
  25077. image: {
  25078. source: "./media/characters/shock-diamond/front.svg",
  25079. extra: 2204 / 2053,
  25080. bottom: 65 / 2239.47
  25081. }
  25082. },
  25083. frontNude: {
  25084. height: math.unit(22, "meters"),
  25085. weight: math.unit(21000, "kg"),
  25086. name: "Front (Nude)",
  25087. image: {
  25088. source: "./media/characters/shock-diamond/front-nude.svg",
  25089. extra: 2514 / 2285,
  25090. bottom: 13 / 2527.56
  25091. }
  25092. },
  25093. },
  25094. [
  25095. {
  25096. name: "Normal",
  25097. height: math.unit(3, "meters")
  25098. },
  25099. {
  25100. name: "Macro",
  25101. height: math.unit(22, "meters"),
  25102. default: true
  25103. },
  25104. ]
  25105. ))
  25106. characterMakers.push(() => makeCharacter(
  25107. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  25108. {
  25109. front: {
  25110. height: math.unit(5 + 4/12, "feet"),
  25111. weight: math.unit(125, "lb"),
  25112. name: "Front",
  25113. image: {
  25114. source: "./media/characters/rory/front.svg",
  25115. extra: 1790/1681,
  25116. bottom: 66/1856
  25117. },
  25118. form: "normal",
  25119. default: true
  25120. },
  25121. back: {
  25122. height: math.unit(5 + 4/12, "feet"),
  25123. weight: math.unit(125, "lb"),
  25124. name: "Back",
  25125. image: {
  25126. source: "./media/characters/rory/back.svg",
  25127. extra: 1805/1690,
  25128. bottom: 56/1861
  25129. },
  25130. form: "normal"
  25131. },
  25132. frontDressed: {
  25133. height: math.unit(5 + 4/12, "feet"),
  25134. weight: math.unit(125, "lb"),
  25135. name: "Front (Dressed)",
  25136. image: {
  25137. source: "./media/characters/rory/front-dressed.svg",
  25138. extra: 1790/1681,
  25139. bottom: 66/1856
  25140. },
  25141. form: "normal"
  25142. },
  25143. backDressed: {
  25144. height: math.unit(5 + 4/12, "feet"),
  25145. weight: math.unit(125, "lb"),
  25146. name: "Back (Dressed)",
  25147. image: {
  25148. source: "./media/characters/rory/back-dressed.svg",
  25149. extra: 1805/1690,
  25150. bottom: 56/1861
  25151. },
  25152. form: "normal"
  25153. },
  25154. frontNsfw: {
  25155. height: math.unit(5 + 4/12, "feet"),
  25156. weight: math.unit(125, "lb"),
  25157. name: "Front (NSFW)",
  25158. image: {
  25159. source: "./media/characters/rory/front-nsfw.svg",
  25160. extra: 1790/1681,
  25161. bottom: 66/1856
  25162. },
  25163. form: "normal"
  25164. },
  25165. backNsfw: {
  25166. height: math.unit(5 + 4/12, "feet"),
  25167. weight: math.unit(125, "lb"),
  25168. name: "Back (NSFW)",
  25169. image: {
  25170. source: "./media/characters/rory/back-nsfw.svg",
  25171. extra: 1805/1690,
  25172. bottom: 56/1861
  25173. },
  25174. form: "normal"
  25175. },
  25176. dick: {
  25177. height: math.unit(0.8, "feet"),
  25178. name: "Dick",
  25179. image: {
  25180. source: "./media/characters/rory/dick.svg"
  25181. },
  25182. form: "normal"
  25183. },
  25184. thicc_front: {
  25185. height: math.unit(5 + 4/12, "feet"),
  25186. weight: math.unit(195, "lb"),
  25187. name: "Front",
  25188. image: {
  25189. source: "./media/characters/rory/thicc-front.svg",
  25190. extra: 1220/1100,
  25191. bottom: 103/1323
  25192. },
  25193. form: "thicc",
  25194. default: true
  25195. },
  25196. thicc_back: {
  25197. height: math.unit(5 + 4/12, "feet"),
  25198. weight: math.unit(195, "lb"),
  25199. name: "Back",
  25200. image: {
  25201. source: "./media/characters/rory/thicc-back.svg",
  25202. extra: 1166/1086,
  25203. bottom: 35/1201
  25204. },
  25205. form: "thicc"
  25206. },
  25207. },
  25208. [
  25209. {
  25210. name: "Micro",
  25211. height: math.unit(3, "inches"),
  25212. allForms: true
  25213. },
  25214. {
  25215. name: "Normal",
  25216. height: math.unit(5 + 4/12, "feet"),
  25217. allForms: true,
  25218. default: true
  25219. },
  25220. {
  25221. name: "Macro",
  25222. height: math.unit(90, "feet"),
  25223. allForms: true
  25224. },
  25225. {
  25226. name: "Supercharged",
  25227. height: math.unit(270, "feet"),
  25228. allForms: true
  25229. },
  25230. ],
  25231. {
  25232. "normal": {
  25233. name: "Normal",
  25234. default: true
  25235. },
  25236. "thicc": {
  25237. name: "Thicc",
  25238. },
  25239. }
  25240. ))
  25241. characterMakers.push(() => makeCharacter(
  25242. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25243. {
  25244. front: {
  25245. height: math.unit(5 + 9 / 12, "feet"),
  25246. weight: math.unit(190, "lb"),
  25247. name: "Front",
  25248. image: {
  25249. source: "./media/characters/sprisk/front.svg",
  25250. extra: 1225 / 1180,
  25251. bottom: 42.7 / 1266.4
  25252. }
  25253. },
  25254. frontNsfw: {
  25255. height: math.unit(5 + 9 / 12, "feet"),
  25256. weight: math.unit(190, "lb"),
  25257. name: "Front (NSFW)",
  25258. image: {
  25259. source: "./media/characters/sprisk/front-nsfw.svg",
  25260. extra: 1225 / 1180,
  25261. bottom: 42.7 / 1266.4
  25262. }
  25263. },
  25264. back: {
  25265. height: math.unit(5 + 9 / 12, "feet"),
  25266. weight: math.unit(190, "lb"),
  25267. name: "Back",
  25268. image: {
  25269. source: "./media/characters/sprisk/back.svg",
  25270. extra: 1247 / 1200,
  25271. bottom: 5.6 / 1253.04
  25272. }
  25273. },
  25274. },
  25275. [
  25276. {
  25277. name: "Tiny",
  25278. height: math.unit(2, "inches")
  25279. },
  25280. {
  25281. name: "Normal",
  25282. height: math.unit(5 + 9 / 12, "feet"),
  25283. default: true
  25284. },
  25285. {
  25286. name: "Mini Macro",
  25287. height: math.unit(18, "feet")
  25288. },
  25289. {
  25290. name: "Macro",
  25291. height: math.unit(100, "feet")
  25292. },
  25293. {
  25294. name: "MACRO",
  25295. height: math.unit(50, "miles")
  25296. },
  25297. {
  25298. name: "M A C R O",
  25299. height: math.unit(300, "miles")
  25300. },
  25301. ]
  25302. ))
  25303. characterMakers.push(() => makeCharacter(
  25304. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25305. {
  25306. side: {
  25307. height: math.unit(15.6, "meters"),
  25308. weight: math.unit(700000, "kg"),
  25309. name: "Side",
  25310. image: {
  25311. source: "./media/characters/bunsen/side.svg",
  25312. extra: 1644 / 358
  25313. }
  25314. },
  25315. foot: {
  25316. height: math.unit(1.611 * 1644 / 358, "meter"),
  25317. name: "Foot",
  25318. image: {
  25319. source: "./media/characters/bunsen/foot.svg"
  25320. }
  25321. },
  25322. },
  25323. [
  25324. {
  25325. name: "Small",
  25326. height: math.unit(10, "feet")
  25327. },
  25328. {
  25329. name: "Normal",
  25330. height: math.unit(15.6, "meters"),
  25331. default: true
  25332. },
  25333. ]
  25334. ))
  25335. characterMakers.push(() => makeCharacter(
  25336. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25337. {
  25338. front: {
  25339. height: math.unit(4 + 11 / 12, "feet"),
  25340. weight: math.unit(140, "lb"),
  25341. name: "Front",
  25342. image: {
  25343. source: "./media/characters/sesh/front.svg",
  25344. extra: 3420 / 3231,
  25345. bottom: 72 / 3949.5
  25346. }
  25347. },
  25348. },
  25349. [
  25350. {
  25351. name: "Normal",
  25352. height: math.unit(4 + 11 / 12, "feet")
  25353. },
  25354. {
  25355. name: "Grown",
  25356. height: math.unit(15, "feet"),
  25357. default: true
  25358. },
  25359. {
  25360. name: "Macro",
  25361. height: math.unit(1500, "feet")
  25362. },
  25363. {
  25364. name: "Megamacro",
  25365. height: math.unit(30, "miles")
  25366. },
  25367. {
  25368. name: "Continental",
  25369. height: math.unit(3000, "miles")
  25370. },
  25371. {
  25372. name: "Gravity Mass",
  25373. height: math.unit(300000, "miles")
  25374. },
  25375. {
  25376. name: "Planet Buster",
  25377. height: math.unit(30000000, "miles")
  25378. },
  25379. {
  25380. name: "Big",
  25381. height: math.unit(3000000000, "miles")
  25382. },
  25383. ]
  25384. ))
  25385. characterMakers.push(() => makeCharacter(
  25386. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25387. {
  25388. front: {
  25389. height: math.unit(9, "feet"),
  25390. weight: math.unit(350, "lb"),
  25391. name: "Front",
  25392. image: {
  25393. source: "./media/characters/pepper/front.svg",
  25394. extra: 1448 / 1312,
  25395. bottom: 9.4 / 1457.88
  25396. }
  25397. },
  25398. back: {
  25399. height: math.unit(9, "feet"),
  25400. weight: math.unit(350, "lb"),
  25401. name: "Back",
  25402. image: {
  25403. source: "./media/characters/pepper/back.svg",
  25404. extra: 1423 / 1300,
  25405. bottom: 4.6 / 1429
  25406. }
  25407. },
  25408. maw: {
  25409. height: math.unit(0.932, "feet"),
  25410. name: "Maw",
  25411. image: {
  25412. source: "./media/characters/pepper/maw.svg"
  25413. }
  25414. },
  25415. },
  25416. [
  25417. {
  25418. name: "Normal",
  25419. height: math.unit(9, "feet"),
  25420. default: true
  25421. },
  25422. ]
  25423. ))
  25424. characterMakers.push(() => makeCharacter(
  25425. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25426. {
  25427. front: {
  25428. height: math.unit(6, "feet"),
  25429. weight: math.unit(150, "lb"),
  25430. name: "Front",
  25431. image: {
  25432. source: "./media/characters/maelstrom/front.svg",
  25433. extra: 2100 / 1883,
  25434. bottom: 94 / 2196.7
  25435. }
  25436. },
  25437. },
  25438. [
  25439. {
  25440. name: "Less Kaiju",
  25441. height: math.unit(200, "feet")
  25442. },
  25443. {
  25444. name: "Kaiju",
  25445. height: math.unit(400, "feet"),
  25446. default: true
  25447. },
  25448. {
  25449. name: "Kaiju-er",
  25450. height: math.unit(600, "feet")
  25451. },
  25452. ]
  25453. ))
  25454. characterMakers.push(() => makeCharacter(
  25455. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25456. {
  25457. front: {
  25458. height: math.unit(6 + 5 / 12, "feet"),
  25459. weight: math.unit(180, "lb"),
  25460. name: "Front",
  25461. image: {
  25462. source: "./media/characters/lexir/front.svg",
  25463. extra: 180 / 172,
  25464. bottom: 12 / 192
  25465. }
  25466. },
  25467. back: {
  25468. height: math.unit(6 + 5 / 12, "feet"),
  25469. weight: math.unit(180, "lb"),
  25470. name: "Back",
  25471. image: {
  25472. source: "./media/characters/lexir/back.svg",
  25473. extra: 1273/1201,
  25474. bottom: 39/1312
  25475. }
  25476. },
  25477. },
  25478. [
  25479. {
  25480. name: "Very Smal",
  25481. height: math.unit(1, "nm")
  25482. },
  25483. {
  25484. name: "Normal",
  25485. height: math.unit(6 + 5 / 12, "feet"),
  25486. default: true
  25487. },
  25488. {
  25489. name: "Macro",
  25490. height: math.unit(1, "mile")
  25491. },
  25492. {
  25493. name: "Megamacro",
  25494. height: math.unit(50, "miles")
  25495. },
  25496. ]
  25497. ))
  25498. characterMakers.push(() => makeCharacter(
  25499. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25500. {
  25501. front: {
  25502. height: math.unit(1.5, "meters"),
  25503. weight: math.unit(100, "lb"),
  25504. name: "Front",
  25505. image: {
  25506. source: "./media/characters/maksio/front.svg",
  25507. extra: 1549 / 1531,
  25508. bottom: 123.7 / 1674.5429
  25509. }
  25510. },
  25511. back: {
  25512. height: math.unit(1.5, "meters"),
  25513. weight: math.unit(100, "lb"),
  25514. name: "Back",
  25515. image: {
  25516. source: "./media/characters/maksio/back.svg",
  25517. extra: 1541 / 1509,
  25518. bottom: 97 / 1639
  25519. }
  25520. },
  25521. hand: {
  25522. height: math.unit(0.621, "feet"),
  25523. name: "Hand",
  25524. image: {
  25525. source: "./media/characters/maksio/hand.svg"
  25526. }
  25527. },
  25528. foot: {
  25529. height: math.unit(1.611, "feet"),
  25530. name: "Foot",
  25531. image: {
  25532. source: "./media/characters/maksio/foot.svg"
  25533. }
  25534. },
  25535. },
  25536. [
  25537. {
  25538. name: "Shrunken",
  25539. height: math.unit(10, "cm")
  25540. },
  25541. {
  25542. name: "Normal",
  25543. height: math.unit(150, "cm"),
  25544. default: true
  25545. },
  25546. ]
  25547. ))
  25548. characterMakers.push(() => makeCharacter(
  25549. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25550. {
  25551. front: {
  25552. height: math.unit(100, "feet"),
  25553. name: "Front",
  25554. image: {
  25555. source: "./media/characters/erza-bear/front.svg",
  25556. extra: 2449 / 2390,
  25557. bottom: 46 / 2494
  25558. }
  25559. },
  25560. back: {
  25561. height: math.unit(100, "feet"),
  25562. name: "Back",
  25563. image: {
  25564. source: "./media/characters/erza-bear/back.svg",
  25565. extra: 2489 / 2430,
  25566. bottom: 85.4 / 2480
  25567. }
  25568. },
  25569. tail: {
  25570. height: math.unit(42, "feet"),
  25571. name: "Tail",
  25572. image: {
  25573. source: "./media/characters/erza-bear/tail.svg"
  25574. }
  25575. },
  25576. tongue: {
  25577. height: math.unit(8, "feet"),
  25578. name: "Tongue",
  25579. image: {
  25580. source: "./media/characters/erza-bear/tongue.svg"
  25581. }
  25582. },
  25583. dick: {
  25584. height: math.unit(10.5, "feet"),
  25585. name: "Dick",
  25586. image: {
  25587. source: "./media/characters/erza-bear/dick.svg"
  25588. }
  25589. },
  25590. dickVertical: {
  25591. height: math.unit(16.9, "feet"),
  25592. name: "Dick (Vertical)",
  25593. image: {
  25594. source: "./media/characters/erza-bear/dick-vertical.svg"
  25595. }
  25596. },
  25597. },
  25598. [
  25599. {
  25600. name: "Macro",
  25601. height: math.unit(100, "feet"),
  25602. default: true
  25603. },
  25604. ]
  25605. ))
  25606. characterMakers.push(() => makeCharacter(
  25607. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25608. {
  25609. front: {
  25610. height: math.unit(172, "cm"),
  25611. weight: math.unit(73, "kg"),
  25612. name: "Front",
  25613. image: {
  25614. source: "./media/characters/violet-flor/front.svg",
  25615. extra: 1530 / 1442,
  25616. bottom: 61.9 / 1588.8
  25617. }
  25618. },
  25619. back: {
  25620. height: math.unit(180, "cm"),
  25621. weight: math.unit(73, "kg"),
  25622. name: "Back",
  25623. image: {
  25624. source: "./media/characters/violet-flor/back.svg",
  25625. extra: 1692 / 1630,
  25626. bottom: 20 / 1712
  25627. }
  25628. },
  25629. },
  25630. [
  25631. {
  25632. name: "Normal",
  25633. height: math.unit(172, "cm"),
  25634. default: true
  25635. },
  25636. ]
  25637. ))
  25638. characterMakers.push(() => makeCharacter(
  25639. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25640. {
  25641. front: {
  25642. height: math.unit(6, "feet"),
  25643. weight: math.unit(220, "lb"),
  25644. name: "Front",
  25645. image: {
  25646. source: "./media/characters/lynn-rhea/front.svg",
  25647. extra: 310 / 273
  25648. }
  25649. },
  25650. back: {
  25651. height: math.unit(6, "feet"),
  25652. weight: math.unit(220, "lb"),
  25653. name: "Back",
  25654. image: {
  25655. source: "./media/characters/lynn-rhea/back.svg",
  25656. extra: 310 / 273
  25657. }
  25658. },
  25659. dicks: {
  25660. height: math.unit(0.9, "feet"),
  25661. name: "Dicks",
  25662. image: {
  25663. source: "./media/characters/lynn-rhea/dicks.svg"
  25664. }
  25665. },
  25666. slit: {
  25667. height: math.unit(0.4, "feet"),
  25668. name: "Slit",
  25669. image: {
  25670. source: "./media/characters/lynn-rhea/slit.svg"
  25671. }
  25672. },
  25673. },
  25674. [
  25675. {
  25676. name: "Micro",
  25677. height: math.unit(1, "inch")
  25678. },
  25679. {
  25680. name: "Macro",
  25681. height: math.unit(60, "feet"),
  25682. default: true
  25683. },
  25684. {
  25685. name: "Megamacro",
  25686. height: math.unit(2, "miles")
  25687. },
  25688. {
  25689. name: "Gigamacro",
  25690. height: math.unit(3, "earths")
  25691. },
  25692. {
  25693. name: "Galactic",
  25694. height: math.unit(0.8, "galaxies")
  25695. },
  25696. ]
  25697. ))
  25698. characterMakers.push(() => makeCharacter(
  25699. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25700. {
  25701. front: {
  25702. height: math.unit(1600, "feet"),
  25703. weight: math.unit(85758785169, "kg"),
  25704. name: "Front",
  25705. image: {
  25706. source: "./media/characters/valathos/front.svg",
  25707. extra: 1451 / 1339
  25708. }
  25709. },
  25710. },
  25711. [
  25712. {
  25713. name: "Macro",
  25714. height: math.unit(1600, "feet"),
  25715. default: true
  25716. },
  25717. ]
  25718. ))
  25719. characterMakers.push(() => makeCharacter(
  25720. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25721. {
  25722. front: {
  25723. height: math.unit(7 + 5 / 12, "feet"),
  25724. weight: math.unit(300, "lb"),
  25725. name: "Front",
  25726. image: {
  25727. source: "./media/characters/azula/front.svg",
  25728. extra: 3208 / 2880,
  25729. bottom: 80.2 / 3277
  25730. }
  25731. },
  25732. back: {
  25733. height: math.unit(7 + 5 / 12, "feet"),
  25734. weight: math.unit(300, "lb"),
  25735. name: "Back",
  25736. image: {
  25737. source: "./media/characters/azula/back.svg",
  25738. extra: 3169 / 2822,
  25739. bottom: 150.6 / 3321
  25740. }
  25741. },
  25742. },
  25743. [
  25744. {
  25745. name: "Normal",
  25746. height: math.unit(7 + 5 / 12, "feet"),
  25747. default: true
  25748. },
  25749. {
  25750. name: "Big",
  25751. height: math.unit(20, "feet")
  25752. },
  25753. ]
  25754. ))
  25755. characterMakers.push(() => makeCharacter(
  25756. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25757. {
  25758. front: {
  25759. height: math.unit(5 + 1 / 12, "feet"),
  25760. weight: math.unit(110, "lb"),
  25761. name: "Front",
  25762. image: {
  25763. source: "./media/characters/rupert/front.svg",
  25764. extra: 1549 / 1495,
  25765. bottom: 54.2 / 1604.4
  25766. }
  25767. },
  25768. },
  25769. [
  25770. {
  25771. name: "Normal",
  25772. height: math.unit(5 + 1 / 12, "feet"),
  25773. default: true
  25774. },
  25775. ]
  25776. ))
  25777. characterMakers.push(() => makeCharacter(
  25778. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25779. {
  25780. front: {
  25781. height: math.unit(8 + 4 / 12, "feet"),
  25782. weight: math.unit(350, "lb"),
  25783. name: "Front",
  25784. image: {
  25785. source: "./media/characters/sheera-castellar/front.svg",
  25786. extra: 1957 / 1894,
  25787. bottom: 26.97 / 1975.017
  25788. }
  25789. },
  25790. side: {
  25791. height: math.unit(8 + 4 / 12, "feet"),
  25792. weight: math.unit(350, "lb"),
  25793. name: "Side",
  25794. image: {
  25795. source: "./media/characters/sheera-castellar/side.svg",
  25796. extra: 1957 / 1894
  25797. }
  25798. },
  25799. back: {
  25800. height: math.unit(8 + 4 / 12, "feet"),
  25801. weight: math.unit(350, "lb"),
  25802. name: "Back",
  25803. image: {
  25804. source: "./media/characters/sheera-castellar/back.svg",
  25805. extra: 1957 / 1894
  25806. }
  25807. },
  25808. angled: {
  25809. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25810. weight: math.unit(350, "lb"),
  25811. name: "Angled",
  25812. image: {
  25813. source: "./media/characters/sheera-castellar/angled.svg",
  25814. extra: 1807 / 1707,
  25815. bottom: 68 / 1875
  25816. }
  25817. },
  25818. genitals: {
  25819. height: math.unit(2.2, "feet"),
  25820. name: "Genitals",
  25821. image: {
  25822. source: "./media/characters/sheera-castellar/genitals.svg"
  25823. }
  25824. },
  25825. taur: {
  25826. height: math.unit(10 + 6/12, "feet"),
  25827. name: "Taur",
  25828. image: {
  25829. source: "./media/characters/sheera-castellar/taur.svg",
  25830. extra: 2017/1909,
  25831. bottom: 185/2202
  25832. }
  25833. },
  25834. },
  25835. [
  25836. {
  25837. name: "Normal",
  25838. height: math.unit(8 + 4 / 12, "feet")
  25839. },
  25840. {
  25841. name: "Macro",
  25842. height: math.unit(150, "feet"),
  25843. default: true
  25844. },
  25845. {
  25846. name: "Macro+",
  25847. height: math.unit(800, "feet")
  25848. },
  25849. ]
  25850. ))
  25851. characterMakers.push(() => makeCharacter(
  25852. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25853. {
  25854. front: {
  25855. height: math.unit(6, "feet"),
  25856. weight: math.unit(150, "lb"),
  25857. name: "Front",
  25858. image: {
  25859. source: "./media/characters/jaipur/front.svg",
  25860. extra: 3860 / 3731,
  25861. bottom: 287 / 4140
  25862. }
  25863. },
  25864. back: {
  25865. height: math.unit(6, "feet"),
  25866. weight: math.unit(150, "lb"),
  25867. name: "Back",
  25868. image: {
  25869. source: "./media/characters/jaipur/back.svg",
  25870. extra: 1637/1561,
  25871. bottom: 154/1791
  25872. }
  25873. },
  25874. },
  25875. [
  25876. {
  25877. name: "Normal",
  25878. height: math.unit(1.85, "meters"),
  25879. default: true
  25880. },
  25881. {
  25882. name: "Macro",
  25883. height: math.unit(150, "meters")
  25884. },
  25885. {
  25886. name: "Macro+",
  25887. height: math.unit(0.5, "miles")
  25888. },
  25889. {
  25890. name: "Macro++",
  25891. height: math.unit(2.5, "miles")
  25892. },
  25893. {
  25894. name: "Macro+++",
  25895. height: math.unit(12, "miles")
  25896. },
  25897. {
  25898. name: "Macro++++",
  25899. height: math.unit(120, "miles")
  25900. },
  25901. {
  25902. name: "Macro+++++",
  25903. height: math.unit(1200, "miles")
  25904. },
  25905. ]
  25906. ))
  25907. characterMakers.push(() => makeCharacter(
  25908. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25909. {
  25910. front: {
  25911. height: math.unit(6, "feet"),
  25912. weight: math.unit(150, "lb"),
  25913. name: "Front",
  25914. image: {
  25915. source: "./media/characters/sheila-wolf/front.svg",
  25916. extra: 1931 / 1808,
  25917. bottom: 29.5 / 1960
  25918. }
  25919. },
  25920. dick: {
  25921. height: math.unit(1.464, "feet"),
  25922. name: "Dick",
  25923. image: {
  25924. source: "./media/characters/sheila-wolf/dick.svg"
  25925. }
  25926. },
  25927. muzzle: {
  25928. height: math.unit(0.513, "feet"),
  25929. name: "Muzzle",
  25930. image: {
  25931. source: "./media/characters/sheila-wolf/muzzle.svg"
  25932. }
  25933. },
  25934. },
  25935. [
  25936. {
  25937. name: "Macro",
  25938. height: math.unit(70, "feet"),
  25939. default: true
  25940. },
  25941. ]
  25942. ))
  25943. characterMakers.push(() => makeCharacter(
  25944. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25945. {
  25946. front: {
  25947. height: math.unit(32, "meters"),
  25948. weight: math.unit(300000, "kg"),
  25949. name: "Front",
  25950. image: {
  25951. source: "./media/characters/almor/front.svg",
  25952. extra: 1408 / 1322,
  25953. bottom: 94.6 / 1506.5
  25954. }
  25955. },
  25956. },
  25957. [
  25958. {
  25959. name: "Macro",
  25960. height: math.unit(32, "meters"),
  25961. default: true
  25962. },
  25963. ]
  25964. ))
  25965. characterMakers.push(() => makeCharacter(
  25966. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25967. {
  25968. front: {
  25969. height: math.unit(7, "feet"),
  25970. weight: math.unit(200, "lb"),
  25971. name: "Front",
  25972. image: {
  25973. source: "./media/characters/silver/front.svg",
  25974. extra: 472.1 / 450.5,
  25975. bottom: 26.5 / 499.424
  25976. }
  25977. },
  25978. },
  25979. [
  25980. {
  25981. name: "Normal",
  25982. height: math.unit(7, "feet"),
  25983. default: true
  25984. },
  25985. {
  25986. name: "Macro",
  25987. height: math.unit(800, "feet")
  25988. },
  25989. {
  25990. name: "Megamacro",
  25991. height: math.unit(250, "miles")
  25992. },
  25993. ]
  25994. ))
  25995. characterMakers.push(() => makeCharacter(
  25996. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25997. {
  25998. front: {
  25999. height: math.unit(6, "feet"),
  26000. weight: math.unit(150, "lb"),
  26001. name: "Front",
  26002. image: {
  26003. source: "./media/characters/pliskin/front.svg",
  26004. extra: 1469 / 1359,
  26005. bottom: 70 / 1540
  26006. }
  26007. },
  26008. },
  26009. [
  26010. {
  26011. name: "Micro",
  26012. height: math.unit(3, "inches")
  26013. },
  26014. {
  26015. name: "Normal",
  26016. height: math.unit(5 + 11 / 12, "feet"),
  26017. default: true
  26018. },
  26019. {
  26020. name: "Macro",
  26021. height: math.unit(120, "feet")
  26022. },
  26023. ]
  26024. ))
  26025. characterMakers.push(() => makeCharacter(
  26026. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  26027. {
  26028. front: {
  26029. height: math.unit(6, "feet"),
  26030. weight: math.unit(150, "lb"),
  26031. name: "Front",
  26032. image: {
  26033. source: "./media/characters/sammy/front.svg",
  26034. extra: 1193 / 1089,
  26035. bottom: 30.5 / 1226
  26036. }
  26037. },
  26038. },
  26039. [
  26040. {
  26041. name: "Macro",
  26042. height: math.unit(1700, "feet"),
  26043. default: true
  26044. },
  26045. {
  26046. name: "Examacro",
  26047. height: math.unit(2.5e9, "lightyears")
  26048. },
  26049. ]
  26050. ))
  26051. characterMakers.push(() => makeCharacter(
  26052. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  26053. {
  26054. front: {
  26055. height: math.unit(21, "meters"),
  26056. weight: math.unit(12, "tonnes"),
  26057. name: "Front",
  26058. image: {
  26059. source: "./media/characters/kuru/front.svg",
  26060. extra: 4301 / 3785,
  26061. bottom: 371.3 / 4691
  26062. }
  26063. },
  26064. },
  26065. [
  26066. {
  26067. name: "Macro",
  26068. height: math.unit(21, "meters"),
  26069. default: true
  26070. },
  26071. ]
  26072. ))
  26073. characterMakers.push(() => makeCharacter(
  26074. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  26075. {
  26076. front: {
  26077. height: math.unit(23, "meters"),
  26078. weight: math.unit(12.2, "tonnes"),
  26079. name: "Front",
  26080. image: {
  26081. source: "./media/characters/rakka/front.svg",
  26082. extra: 4670 / 4169,
  26083. bottom: 301 / 4968.7
  26084. }
  26085. },
  26086. },
  26087. [
  26088. {
  26089. name: "Macro",
  26090. height: math.unit(23, "meters"),
  26091. default: true
  26092. },
  26093. ]
  26094. ))
  26095. characterMakers.push(() => makeCharacter(
  26096. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  26097. {
  26098. front: {
  26099. height: math.unit(6, "feet"),
  26100. weight: math.unit(150, "lb"),
  26101. name: "Front",
  26102. image: {
  26103. source: "./media/characters/rhys-feline/front.svg",
  26104. extra: 2488 / 2308,
  26105. bottom: 35.67 / 2519.19
  26106. }
  26107. },
  26108. },
  26109. [
  26110. {
  26111. name: "Really Small",
  26112. height: math.unit(1, "nm")
  26113. },
  26114. {
  26115. name: "Micro",
  26116. height: math.unit(4, "inches")
  26117. },
  26118. {
  26119. name: "Normal",
  26120. height: math.unit(4 + 10 / 12, "feet"),
  26121. default: true
  26122. },
  26123. {
  26124. name: "Macro",
  26125. height: math.unit(100, "feet")
  26126. },
  26127. {
  26128. name: "Megamacto",
  26129. height: math.unit(50, "miles")
  26130. },
  26131. ]
  26132. ))
  26133. characterMakers.push(() => makeCharacter(
  26134. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  26135. {
  26136. side: {
  26137. height: math.unit(30, "feet"),
  26138. weight: math.unit(35000, "kg"),
  26139. name: "Side",
  26140. image: {
  26141. source: "./media/characters/alydar/side.svg",
  26142. extra: 234 / 222,
  26143. bottom: 6.5 / 241
  26144. }
  26145. },
  26146. front: {
  26147. height: math.unit(30, "feet"),
  26148. weight: math.unit(35000, "kg"),
  26149. name: "Front",
  26150. image: {
  26151. source: "./media/characters/alydar/front.svg",
  26152. extra: 223.37 / 210.2,
  26153. bottom: 22.3 / 246.76
  26154. }
  26155. },
  26156. top: {
  26157. height: math.unit(64.54, "feet"),
  26158. weight: math.unit(35000, "kg"),
  26159. name: "Top",
  26160. image: {
  26161. source: "./media/characters/alydar/top.svg"
  26162. }
  26163. },
  26164. anthro: {
  26165. height: math.unit(30, "feet"),
  26166. weight: math.unit(9000, "kg"),
  26167. name: "Anthro",
  26168. image: {
  26169. source: "./media/characters/alydar/anthro.svg",
  26170. extra: 432 / 421,
  26171. bottom: 7.18 / 440
  26172. }
  26173. },
  26174. maw: {
  26175. height: math.unit(11.693, "feet"),
  26176. name: "Maw",
  26177. image: {
  26178. source: "./media/characters/alydar/maw.svg"
  26179. }
  26180. },
  26181. head: {
  26182. height: math.unit(11.693, "feet"),
  26183. name: "Head",
  26184. image: {
  26185. source: "./media/characters/alydar/head.svg"
  26186. }
  26187. },
  26188. headAlt: {
  26189. height: math.unit(12.861, "feet"),
  26190. name: "Head (Alt)",
  26191. image: {
  26192. source: "./media/characters/alydar/head-alt.svg"
  26193. }
  26194. },
  26195. wing: {
  26196. height: math.unit(20.712, "feet"),
  26197. name: "Wing",
  26198. image: {
  26199. source: "./media/characters/alydar/wing.svg"
  26200. }
  26201. },
  26202. wingFeather: {
  26203. height: math.unit(9.662, "feet"),
  26204. name: "Wing Feather",
  26205. image: {
  26206. source: "./media/characters/alydar/wing-feather.svg"
  26207. }
  26208. },
  26209. countourFeather: {
  26210. height: math.unit(4.154, "feet"),
  26211. name: "Contour Feather",
  26212. image: {
  26213. source: "./media/characters/alydar/contour-feather.svg"
  26214. }
  26215. },
  26216. },
  26217. [
  26218. {
  26219. name: "Diplomatic",
  26220. height: math.unit(13, "feet"),
  26221. default: true
  26222. },
  26223. {
  26224. name: "Small",
  26225. height: math.unit(30, "feet")
  26226. },
  26227. {
  26228. name: "Normal",
  26229. height: math.unit(95, "feet"),
  26230. default: true
  26231. },
  26232. {
  26233. name: "Large",
  26234. height: math.unit(285, "feet")
  26235. },
  26236. {
  26237. name: "Incomprehensible",
  26238. height: math.unit(450, "megameters")
  26239. },
  26240. ]
  26241. ))
  26242. characterMakers.push(() => makeCharacter(
  26243. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26244. {
  26245. side: {
  26246. height: math.unit(11, "feet"),
  26247. weight: math.unit(1750, "kg"),
  26248. name: "Side",
  26249. image: {
  26250. source: "./media/characters/selicia/side.svg",
  26251. extra: 440 / 396,
  26252. bottom: 24.8 / 465.979
  26253. }
  26254. },
  26255. maw: {
  26256. height: math.unit(4.665, "feet"),
  26257. name: "Maw",
  26258. image: {
  26259. source: "./media/characters/selicia/maw.svg"
  26260. }
  26261. },
  26262. },
  26263. [
  26264. {
  26265. name: "Normal",
  26266. height: math.unit(11, "feet"),
  26267. default: true
  26268. },
  26269. ]
  26270. ))
  26271. characterMakers.push(() => makeCharacter(
  26272. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26273. {
  26274. side: {
  26275. height: math.unit(2 + 6 / 12, "feet"),
  26276. weight: math.unit(30, "lb"),
  26277. name: "Side",
  26278. image: {
  26279. source: "./media/characters/layla/side.svg",
  26280. extra: 244 / 188,
  26281. bottom: 18.2 / 262.1
  26282. }
  26283. },
  26284. back: {
  26285. height: math.unit(2 + 6 / 12, "feet"),
  26286. weight: math.unit(30, "lb"),
  26287. name: "Back",
  26288. image: {
  26289. source: "./media/characters/layla/back.svg",
  26290. extra: 308 / 241.5,
  26291. bottom: 8.9 / 316.8
  26292. }
  26293. },
  26294. cumming: {
  26295. height: math.unit(2 + 6 / 12, "feet"),
  26296. weight: math.unit(30, "lb"),
  26297. name: "Cumming",
  26298. image: {
  26299. source: "./media/characters/layla/cumming.svg",
  26300. extra: 342 / 279,
  26301. bottom: 595 / 938
  26302. }
  26303. },
  26304. dickFlaccid: {
  26305. height: math.unit(2.595, "feet"),
  26306. name: "Flaccid Genitals",
  26307. image: {
  26308. source: "./media/characters/layla/dick-flaccid.svg"
  26309. }
  26310. },
  26311. dickErect: {
  26312. height: math.unit(2.359, "feet"),
  26313. name: "Erect Genitals",
  26314. image: {
  26315. source: "./media/characters/layla/dick-erect.svg"
  26316. }
  26317. },
  26318. dragon: {
  26319. height: math.unit(40, "feet"),
  26320. name: "Dragon",
  26321. image: {
  26322. source: "./media/characters/layla/dragon.svg",
  26323. extra: 610/535,
  26324. bottom: 367/977
  26325. }
  26326. },
  26327. taur: {
  26328. height: math.unit(30, "feet"),
  26329. name: "Taur",
  26330. image: {
  26331. source: "./media/characters/layla/taur.svg",
  26332. extra: 1268/1199,
  26333. bottom: 112/1380
  26334. }
  26335. },
  26336. },
  26337. [
  26338. {
  26339. name: "Micro",
  26340. height: math.unit(1, "inch")
  26341. },
  26342. {
  26343. name: "Small",
  26344. height: math.unit(1, "foot")
  26345. },
  26346. {
  26347. name: "Normal",
  26348. height: math.unit(2 + 6 / 12, "feet"),
  26349. default: true
  26350. },
  26351. {
  26352. name: "Macro",
  26353. height: math.unit(200, "feet")
  26354. },
  26355. {
  26356. name: "Megamacro",
  26357. height: math.unit(1000, "miles")
  26358. },
  26359. {
  26360. name: "Planetary",
  26361. height: math.unit(8000, "miles")
  26362. },
  26363. {
  26364. name: "True Layla",
  26365. height: math.unit(200000 * 7, "multiverses")
  26366. },
  26367. ]
  26368. ))
  26369. characterMakers.push(() => makeCharacter(
  26370. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26371. {
  26372. back: {
  26373. height: math.unit(10.5, "feet"),
  26374. weight: math.unit(800, "lb"),
  26375. name: "Back",
  26376. image: {
  26377. source: "./media/characters/knox/back.svg",
  26378. extra: 1486 / 1089,
  26379. bottom: 107 / 1601.4
  26380. }
  26381. },
  26382. side: {
  26383. height: math.unit(10.5, "feet"),
  26384. weight: math.unit(800, "lb"),
  26385. name: "Side",
  26386. image: {
  26387. source: "./media/characters/knox/side.svg",
  26388. extra: 244 / 218,
  26389. bottom: 14 / 260
  26390. }
  26391. },
  26392. },
  26393. [
  26394. {
  26395. name: "Compact",
  26396. height: math.unit(10.5, "feet"),
  26397. default: true
  26398. },
  26399. {
  26400. name: "Dynamax",
  26401. height: math.unit(210, "feet")
  26402. },
  26403. {
  26404. name: "Full Macro",
  26405. height: math.unit(850, "feet")
  26406. },
  26407. ]
  26408. ))
  26409. characterMakers.push(() => makeCharacter(
  26410. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26411. {
  26412. front: {
  26413. height: math.unit(28, "feet"),
  26414. weight: math.unit(10500, "lb"),
  26415. name: "Front",
  26416. image: {
  26417. source: "./media/characters/kayda/front.svg",
  26418. extra: 1536 / 1428,
  26419. bottom: 68.7 / 1603
  26420. }
  26421. },
  26422. back: {
  26423. height: math.unit(28, "feet"),
  26424. weight: math.unit(10500, "lb"),
  26425. name: "Back",
  26426. image: {
  26427. source: "./media/characters/kayda/back.svg",
  26428. extra: 1557 / 1464,
  26429. bottom: 39.5 / 1597.49
  26430. }
  26431. },
  26432. dick: {
  26433. height: math.unit(3.858, "feet"),
  26434. name: "Dick",
  26435. image: {
  26436. source: "./media/characters/kayda/dick.svg"
  26437. }
  26438. },
  26439. },
  26440. [
  26441. {
  26442. name: "Macro",
  26443. height: math.unit(28, "feet"),
  26444. default: true
  26445. },
  26446. ]
  26447. ))
  26448. characterMakers.push(() => makeCharacter(
  26449. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26450. {
  26451. front: {
  26452. height: math.unit(10 + 11 / 12, "feet"),
  26453. weight: math.unit(1400, "lb"),
  26454. name: "Front",
  26455. image: {
  26456. source: "./media/characters/brian/front.svg",
  26457. extra: 737 / 692,
  26458. bottom: 55.4 / 785
  26459. }
  26460. },
  26461. },
  26462. [
  26463. {
  26464. name: "Normal",
  26465. height: math.unit(10 + 11 / 12, "feet"),
  26466. default: true
  26467. },
  26468. ]
  26469. ))
  26470. characterMakers.push(() => makeCharacter(
  26471. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26472. {
  26473. front: {
  26474. height: math.unit(5 + 8 / 12, "feet"),
  26475. weight: math.unit(140, "lb"),
  26476. name: "Front",
  26477. image: {
  26478. source: "./media/characters/khemri/front.svg",
  26479. extra: 4780 / 4059,
  26480. bottom: 80.1 / 4859.25
  26481. }
  26482. },
  26483. },
  26484. [
  26485. {
  26486. name: "Micro",
  26487. height: math.unit(6, "inches")
  26488. },
  26489. {
  26490. name: "Normal",
  26491. height: math.unit(5 + 8 / 12, "feet"),
  26492. default: true
  26493. },
  26494. ]
  26495. ))
  26496. characterMakers.push(() => makeCharacter(
  26497. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26498. {
  26499. front: {
  26500. height: math.unit(13, "feet"),
  26501. weight: math.unit(1700, "lb"),
  26502. name: "Front",
  26503. image: {
  26504. source: "./media/characters/felix-braveheart/front.svg",
  26505. extra: 1222 / 1157,
  26506. bottom: 53.2 / 1280
  26507. }
  26508. },
  26509. back: {
  26510. height: math.unit(13, "feet"),
  26511. weight: math.unit(1700, "lb"),
  26512. name: "Back",
  26513. image: {
  26514. source: "./media/characters/felix-braveheart/back.svg",
  26515. extra: 1277 / 1203,
  26516. bottom: 50.2 / 1327
  26517. }
  26518. },
  26519. feral: {
  26520. height: math.unit(6, "feet"),
  26521. weight: math.unit(400, "lb"),
  26522. name: "Feral",
  26523. image: {
  26524. source: "./media/characters/felix-braveheart/feral.svg",
  26525. extra: 682 / 625,
  26526. bottom: 6.9 / 688
  26527. }
  26528. },
  26529. },
  26530. [
  26531. {
  26532. name: "Normal",
  26533. height: math.unit(13, "feet"),
  26534. default: true
  26535. },
  26536. ]
  26537. ))
  26538. characterMakers.push(() => makeCharacter(
  26539. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26540. {
  26541. side: {
  26542. height: math.unit(5 + 11 / 12, "feet"),
  26543. weight: math.unit(1400, "lb"),
  26544. name: "Side",
  26545. image: {
  26546. source: "./media/characters/shadow-blade/side.svg",
  26547. extra: 1726 / 1267,
  26548. bottom: 58.4 / 1785
  26549. }
  26550. },
  26551. },
  26552. [
  26553. {
  26554. name: "Normal",
  26555. height: math.unit(5 + 11 / 12, "feet"),
  26556. default: true
  26557. },
  26558. ]
  26559. ))
  26560. characterMakers.push(() => makeCharacter(
  26561. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26562. {
  26563. front: {
  26564. height: math.unit(1 + 6 / 12, "feet"),
  26565. weight: math.unit(25, "lb"),
  26566. name: "Front",
  26567. image: {
  26568. source: "./media/characters/karla-halldor/front.svg",
  26569. extra: 1459 / 1383,
  26570. bottom: 12 / 1472
  26571. }
  26572. },
  26573. },
  26574. [
  26575. {
  26576. name: "Normal",
  26577. height: math.unit(1 + 6 / 12, "feet"),
  26578. default: true
  26579. },
  26580. ]
  26581. ))
  26582. characterMakers.push(() => makeCharacter(
  26583. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26584. {
  26585. front: {
  26586. height: math.unit(6 + 2 / 12, "feet"),
  26587. weight: math.unit(160, "lb"),
  26588. name: "Front",
  26589. image: {
  26590. source: "./media/characters/ariam/front.svg",
  26591. extra: 1073/976,
  26592. bottom: 52/1125
  26593. }
  26594. },
  26595. back: {
  26596. height: math.unit(6 + 2/12, "feet"),
  26597. weight: math.unit(160, "lb"),
  26598. name: "Back",
  26599. image: {
  26600. source: "./media/characters/ariam/back.svg",
  26601. extra: 1103/1023,
  26602. bottom: 9/1112
  26603. }
  26604. },
  26605. dressed: {
  26606. height: math.unit(6 + 2/12, "feet"),
  26607. weight: math.unit(160, "lb"),
  26608. name: "Dressed",
  26609. image: {
  26610. source: "./media/characters/ariam/dressed.svg",
  26611. extra: 1099/1009,
  26612. bottom: 25/1124
  26613. }
  26614. },
  26615. squatting: {
  26616. height: math.unit(4.1, "feet"),
  26617. weight: math.unit(160, "lb"),
  26618. name: "Squatting",
  26619. image: {
  26620. source: "./media/characters/ariam/squatting.svg",
  26621. extra: 2617 / 2112,
  26622. bottom: 61.2 / 2681,
  26623. }
  26624. },
  26625. },
  26626. [
  26627. {
  26628. name: "Normal",
  26629. height: math.unit(6 + 2 / 12, "feet"),
  26630. default: true
  26631. },
  26632. {
  26633. name: "Normal+",
  26634. height: math.unit(4, "meters")
  26635. },
  26636. {
  26637. name: "Macro",
  26638. height: math.unit(50, "meters")
  26639. },
  26640. {
  26641. name: "Macro+",
  26642. height: math.unit(100, "meters")
  26643. },
  26644. {
  26645. name: "Megamacro",
  26646. height: math.unit(20, "km")
  26647. },
  26648. {
  26649. name: "Caretaker",
  26650. height: math.unit(444, "megameters")
  26651. },
  26652. ]
  26653. ))
  26654. characterMakers.push(() => makeCharacter(
  26655. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26656. {
  26657. front: {
  26658. height: math.unit(1.67, "meters"),
  26659. weight: math.unit(140, "lb"),
  26660. name: "Front",
  26661. image: {
  26662. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26663. extra: 438 / 410,
  26664. bottom: 0.75 / 439
  26665. }
  26666. },
  26667. },
  26668. [
  26669. {
  26670. name: "Shrunken",
  26671. height: math.unit(7.6, "cm")
  26672. },
  26673. {
  26674. name: "Human Scale",
  26675. height: math.unit(1.67, "meters")
  26676. },
  26677. {
  26678. name: "Wolxi Scale",
  26679. height: math.unit(36.7, "meters"),
  26680. default: true
  26681. },
  26682. ]
  26683. ))
  26684. characterMakers.push(() => makeCharacter(
  26685. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26686. {
  26687. front: {
  26688. height: math.unit(1.73, "meters"),
  26689. weight: math.unit(240, "lb"),
  26690. name: "Front",
  26691. image: {
  26692. source: "./media/characters/izue-two-mothers/front.svg",
  26693. extra: 469 / 437,
  26694. bottom: 1.24 / 470.6
  26695. }
  26696. },
  26697. },
  26698. [
  26699. {
  26700. name: "Shrunken",
  26701. height: math.unit(7.86, "cm")
  26702. },
  26703. {
  26704. name: "Human Scale",
  26705. height: math.unit(1.73, "meters")
  26706. },
  26707. {
  26708. name: "Wolxi Scale",
  26709. height: math.unit(38, "meters"),
  26710. default: true
  26711. },
  26712. ]
  26713. ))
  26714. characterMakers.push(() => makeCharacter(
  26715. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26716. {
  26717. front: {
  26718. height: math.unit(1.55, "meters"),
  26719. weight: math.unit(120, "lb"),
  26720. name: "Front",
  26721. image: {
  26722. source: "./media/characters/teeku-love-shack/front.svg",
  26723. extra: 387 / 362,
  26724. bottom: 1.51 / 388
  26725. }
  26726. },
  26727. },
  26728. [
  26729. {
  26730. name: "Shrunken",
  26731. height: math.unit(7, "cm")
  26732. },
  26733. {
  26734. name: "Human Scale",
  26735. height: math.unit(1.55, "meters")
  26736. },
  26737. {
  26738. name: "Wolxi Scale",
  26739. height: math.unit(34.1, "meters"),
  26740. default: true
  26741. },
  26742. ]
  26743. ))
  26744. characterMakers.push(() => makeCharacter(
  26745. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26746. {
  26747. front: {
  26748. height: math.unit(1.83, "meters"),
  26749. weight: math.unit(135, "lb"),
  26750. name: "Front",
  26751. image: {
  26752. source: "./media/characters/dejma-the-red/front.svg",
  26753. extra: 480 / 458,
  26754. bottom: 1.8 / 482
  26755. }
  26756. },
  26757. },
  26758. [
  26759. {
  26760. name: "Shrunken",
  26761. height: math.unit(8.3, "cm")
  26762. },
  26763. {
  26764. name: "Human Scale",
  26765. height: math.unit(1.83, "meters")
  26766. },
  26767. {
  26768. name: "Wolxi Scale",
  26769. height: math.unit(40, "meters"),
  26770. default: true
  26771. },
  26772. ]
  26773. ))
  26774. characterMakers.push(() => makeCharacter(
  26775. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26776. {
  26777. front: {
  26778. height: math.unit(1.78, "meters"),
  26779. weight: math.unit(65, "kg"),
  26780. name: "Front",
  26781. image: {
  26782. source: "./media/characters/aki/front.svg",
  26783. extra: 452 / 415
  26784. }
  26785. },
  26786. frontNsfw: {
  26787. height: math.unit(1.78, "meters"),
  26788. weight: math.unit(65, "kg"),
  26789. name: "Front (NSFW)",
  26790. image: {
  26791. source: "./media/characters/aki/front-nsfw.svg",
  26792. extra: 452 / 415
  26793. }
  26794. },
  26795. back: {
  26796. height: math.unit(1.78, "meters"),
  26797. weight: math.unit(65, "kg"),
  26798. name: "Back",
  26799. image: {
  26800. source: "./media/characters/aki/back.svg",
  26801. extra: 452 / 415
  26802. }
  26803. },
  26804. rump: {
  26805. height: math.unit(2.05, "feet"),
  26806. name: "Rump",
  26807. image: {
  26808. source: "./media/characters/aki/rump.svg"
  26809. }
  26810. },
  26811. dick: {
  26812. height: math.unit(0.95, "feet"),
  26813. name: "Dick",
  26814. image: {
  26815. source: "./media/characters/aki/dick.svg"
  26816. }
  26817. },
  26818. },
  26819. [
  26820. {
  26821. name: "Micro",
  26822. height: math.unit(15, "cm")
  26823. },
  26824. {
  26825. name: "Normal",
  26826. height: math.unit(178, "cm"),
  26827. default: true
  26828. },
  26829. {
  26830. name: "Macro",
  26831. height: math.unit(214, "m")
  26832. },
  26833. {
  26834. name: "Macro+",
  26835. height: math.unit(534, "m")
  26836. },
  26837. ]
  26838. ))
  26839. characterMakers.push(() => makeCharacter(
  26840. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26841. {
  26842. front: {
  26843. height: math.unit(5 + 5 / 12, "feet"),
  26844. weight: math.unit(120, "lb"),
  26845. name: "Front",
  26846. image: {
  26847. source: "./media/characters/ari/front.svg",
  26848. extra: 1550/1471,
  26849. bottom: 39/1589
  26850. }
  26851. },
  26852. },
  26853. [
  26854. {
  26855. name: "Normal",
  26856. height: math.unit(5 + 5 / 12, "feet")
  26857. },
  26858. {
  26859. name: "Macro",
  26860. height: math.unit(100, "feet"),
  26861. default: true
  26862. },
  26863. {
  26864. name: "Megamacro",
  26865. height: math.unit(100, "miles")
  26866. },
  26867. {
  26868. name: "Gigamacro",
  26869. height: math.unit(80000, "miles")
  26870. },
  26871. ]
  26872. ))
  26873. characterMakers.push(() => makeCharacter(
  26874. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26875. {
  26876. side: {
  26877. height: math.unit(9, "feet"),
  26878. weight: math.unit(400, "kg"),
  26879. name: "Side",
  26880. image: {
  26881. source: "./media/characters/bolt/side.svg",
  26882. extra: 1126 / 896,
  26883. bottom: 60 / 1187.3,
  26884. }
  26885. },
  26886. },
  26887. [
  26888. {
  26889. name: "Micro",
  26890. height: math.unit(5, "inches")
  26891. },
  26892. {
  26893. name: "Normal",
  26894. height: math.unit(9, "feet"),
  26895. default: true
  26896. },
  26897. {
  26898. name: "Macro",
  26899. height: math.unit(700, "feet")
  26900. },
  26901. {
  26902. name: "Max Size",
  26903. height: math.unit(1.52e22, "yottameters")
  26904. },
  26905. ]
  26906. ))
  26907. characterMakers.push(() => makeCharacter(
  26908. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26909. {
  26910. front: {
  26911. height: math.unit(4.3, "meters"),
  26912. weight: math.unit(3, "tons"),
  26913. name: "Front",
  26914. image: {
  26915. source: "./media/characters/draekon-sylviar/front.svg",
  26916. extra: 2072/1512,
  26917. bottom: 74/2146
  26918. }
  26919. },
  26920. back: {
  26921. height: math.unit(4.3, "meters"),
  26922. weight: math.unit(3, "tons"),
  26923. name: "Back",
  26924. image: {
  26925. source: "./media/characters/draekon-sylviar/back.svg",
  26926. extra: 1639/1483,
  26927. bottom: 41/1680
  26928. }
  26929. },
  26930. feral: {
  26931. height: math.unit(1.15, "meters"),
  26932. weight: math.unit(3, "tons"),
  26933. name: "Feral",
  26934. image: {
  26935. source: "./media/characters/draekon-sylviar/feral.svg",
  26936. extra: 1033/395,
  26937. bottom: 130/1163
  26938. }
  26939. },
  26940. maw: {
  26941. height: math.unit(1.3, "meters"),
  26942. name: "Maw",
  26943. image: {
  26944. source: "./media/characters/draekon-sylviar/maw.svg"
  26945. }
  26946. },
  26947. mawSeparated: {
  26948. height: math.unit(1.53, "meters"),
  26949. name: "Separated Maw",
  26950. image: {
  26951. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26952. }
  26953. },
  26954. tail: {
  26955. height: math.unit(1.15, "meters"),
  26956. name: "Tail",
  26957. image: {
  26958. source: "./media/characters/draekon-sylviar/tail.svg"
  26959. }
  26960. },
  26961. tailDick: {
  26962. height: math.unit(1.15, "meters"),
  26963. name: "Tail (Dick)",
  26964. image: {
  26965. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26966. }
  26967. },
  26968. tailDickSeparated: {
  26969. height: math.unit(1.19, "meters"),
  26970. name: "Tail (Separated Dick)",
  26971. image: {
  26972. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26973. }
  26974. },
  26975. slit: {
  26976. height: math.unit(1, "meters"),
  26977. name: "Slit",
  26978. image: {
  26979. source: "./media/characters/draekon-sylviar/slit.svg"
  26980. }
  26981. },
  26982. dick: {
  26983. height: math.unit(1.15, "meters"),
  26984. name: "Dick",
  26985. image: {
  26986. source: "./media/characters/draekon-sylviar/dick.svg"
  26987. }
  26988. },
  26989. dickSeparated: {
  26990. height: math.unit(1.1, "meters"),
  26991. name: "Separated Dick",
  26992. image: {
  26993. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26994. }
  26995. },
  26996. sheath: {
  26997. height: math.unit(1.15, "meters"),
  26998. name: "Sheath",
  26999. image: {
  27000. source: "./media/characters/draekon-sylviar/sheath.svg"
  27001. }
  27002. },
  27003. },
  27004. [
  27005. {
  27006. name: "Small",
  27007. height: math.unit(4.53 / 2, "meters"),
  27008. default: true
  27009. },
  27010. {
  27011. name: "Normal",
  27012. height: math.unit(4.53, "meters"),
  27013. default: true
  27014. },
  27015. {
  27016. name: "Large",
  27017. height: math.unit(4.53 * 2, "meters"),
  27018. },
  27019. ]
  27020. ))
  27021. characterMakers.push(() => makeCharacter(
  27022. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  27023. {
  27024. front: {
  27025. height: math.unit(6 + 2 / 12, "feet"),
  27026. weight: math.unit(180, "lb"),
  27027. name: "Front",
  27028. image: {
  27029. source: "./media/characters/brawler/front.svg",
  27030. extra: 3301 / 3027,
  27031. bottom: 138 / 3439
  27032. }
  27033. },
  27034. },
  27035. [
  27036. {
  27037. name: "Normal",
  27038. height: math.unit(6 + 2 / 12, "feet"),
  27039. default: true
  27040. },
  27041. ]
  27042. ))
  27043. characterMakers.push(() => makeCharacter(
  27044. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  27045. {
  27046. front: {
  27047. height: math.unit(11, "feet"),
  27048. weight: math.unit(1000, "lb"),
  27049. name: "Front",
  27050. image: {
  27051. source: "./media/characters/alex/front.svg",
  27052. bottom: 44.5 / 620
  27053. }
  27054. },
  27055. },
  27056. [
  27057. {
  27058. name: "Micro",
  27059. height: math.unit(5, "inches")
  27060. },
  27061. {
  27062. name: "Normal",
  27063. height: math.unit(11, "feet"),
  27064. default: true
  27065. },
  27066. {
  27067. name: "Macro",
  27068. height: math.unit(9.5e9, "feet")
  27069. },
  27070. {
  27071. name: "Max Size",
  27072. height: math.unit(1.4e283, "yottameters")
  27073. },
  27074. ]
  27075. ))
  27076. characterMakers.push(() => makeCharacter(
  27077. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  27078. {
  27079. female: {
  27080. height: math.unit(29.9, "m"),
  27081. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  27082. name: "Female",
  27083. image: {
  27084. source: "./media/characters/zenari/female.svg",
  27085. extra: 3281.6 / 3217,
  27086. bottom: 72.2 / 3353
  27087. }
  27088. },
  27089. male: {
  27090. height: math.unit(27.7, "m"),
  27091. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  27092. name: "Male",
  27093. image: {
  27094. source: "./media/characters/zenari/male.svg",
  27095. extra: 3008 / 2991,
  27096. bottom: 54.6 / 3069
  27097. }
  27098. },
  27099. },
  27100. [
  27101. {
  27102. name: "Macro",
  27103. height: math.unit(29.7, "meters"),
  27104. default: true
  27105. },
  27106. ]
  27107. ))
  27108. characterMakers.push(() => makeCharacter(
  27109. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  27110. {
  27111. female: {
  27112. height: math.unit(23.8, "m"),
  27113. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27114. name: "Female",
  27115. image: {
  27116. source: "./media/characters/mactarian/female.svg",
  27117. extra: 2662 / 2569,
  27118. bottom: 73 / 2736
  27119. }
  27120. },
  27121. male: {
  27122. height: math.unit(23.8, "m"),
  27123. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27124. name: "Male",
  27125. image: {
  27126. source: "./media/characters/mactarian/male.svg",
  27127. extra: 2673 / 2600,
  27128. bottom: 76 / 2750
  27129. }
  27130. },
  27131. },
  27132. [
  27133. {
  27134. name: "Macro",
  27135. height: math.unit(23.8, "meters"),
  27136. default: true
  27137. },
  27138. ]
  27139. ))
  27140. characterMakers.push(() => makeCharacter(
  27141. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  27142. {
  27143. female: {
  27144. height: math.unit(19.3, "m"),
  27145. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  27146. name: "Female",
  27147. image: {
  27148. source: "./media/characters/umok/female.svg",
  27149. extra: 2186 / 2078,
  27150. bottom: 87 / 2277
  27151. }
  27152. },
  27153. male: {
  27154. height: math.unit(19.5, "m"),
  27155. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  27156. name: "Male",
  27157. image: {
  27158. source: "./media/characters/umok/male.svg",
  27159. extra: 2233 / 2140,
  27160. bottom: 24.4 / 2258
  27161. }
  27162. },
  27163. },
  27164. [
  27165. {
  27166. name: "Macro",
  27167. height: math.unit(19.3, "meters"),
  27168. default: true
  27169. },
  27170. ]
  27171. ))
  27172. characterMakers.push(() => makeCharacter(
  27173. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  27174. {
  27175. female: {
  27176. height: math.unit(26.15, "m"),
  27177. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  27178. name: "Female",
  27179. image: {
  27180. source: "./media/characters/joraxian/female.svg",
  27181. extra: 2912 / 2824,
  27182. bottom: 36 / 2956
  27183. }
  27184. },
  27185. male: {
  27186. height: math.unit(25.4, "m"),
  27187. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  27188. name: "Male",
  27189. image: {
  27190. source: "./media/characters/joraxian/male.svg",
  27191. extra: 2877 / 2721,
  27192. bottom: 82 / 2967
  27193. }
  27194. },
  27195. },
  27196. [
  27197. {
  27198. name: "Macro",
  27199. height: math.unit(26.15, "meters"),
  27200. default: true
  27201. },
  27202. ]
  27203. ))
  27204. characterMakers.push(() => makeCharacter(
  27205. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  27206. {
  27207. female: {
  27208. height: math.unit(21.6, "m"),
  27209. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  27210. name: "Female",
  27211. image: {
  27212. source: "./media/characters/sthara/female.svg",
  27213. extra: 2516 / 2347,
  27214. bottom: 21.5 / 2537
  27215. }
  27216. },
  27217. male: {
  27218. height: math.unit(24, "m"),
  27219. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  27220. name: "Male",
  27221. image: {
  27222. source: "./media/characters/sthara/male.svg",
  27223. extra: 2732 / 2607,
  27224. bottom: 23 / 2732
  27225. }
  27226. },
  27227. },
  27228. [
  27229. {
  27230. name: "Macro",
  27231. height: math.unit(21.6, "meters"),
  27232. default: true
  27233. },
  27234. ]
  27235. ))
  27236. characterMakers.push(() => makeCharacter(
  27237. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27238. {
  27239. front: {
  27240. height: math.unit(6 + 4 / 12, "feet"),
  27241. weight: math.unit(175, "lb"),
  27242. name: "Front",
  27243. image: {
  27244. source: "./media/characters/luka-bryzant/front.svg",
  27245. extra: 311 / 289,
  27246. bottom: 4 / 315
  27247. }
  27248. },
  27249. back: {
  27250. height: math.unit(6 + 4 / 12, "feet"),
  27251. weight: math.unit(175, "lb"),
  27252. name: "Back",
  27253. image: {
  27254. source: "./media/characters/luka-bryzant/back.svg",
  27255. extra: 311 / 289,
  27256. bottom: 3.8 / 313.7
  27257. }
  27258. },
  27259. },
  27260. [
  27261. {
  27262. name: "Micro",
  27263. height: math.unit(10, "inches")
  27264. },
  27265. {
  27266. name: "Normal",
  27267. height: math.unit(6 + 4 / 12, "feet"),
  27268. default: true
  27269. },
  27270. {
  27271. name: "Large",
  27272. height: math.unit(12, "feet")
  27273. },
  27274. ]
  27275. ))
  27276. characterMakers.push(() => makeCharacter(
  27277. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27278. {
  27279. front: {
  27280. height: math.unit(5 + 7 / 12, "feet"),
  27281. weight: math.unit(185, "lb"),
  27282. name: "Front",
  27283. image: {
  27284. source: "./media/characters/aman-aquila/front.svg",
  27285. extra: 1013 / 976,
  27286. bottom: 45.6 / 1057
  27287. }
  27288. },
  27289. side: {
  27290. height: math.unit(5 + 7 / 12, "feet"),
  27291. weight: math.unit(185, "lb"),
  27292. name: "Side",
  27293. image: {
  27294. source: "./media/characters/aman-aquila/side.svg",
  27295. extra: 1054 / 1011,
  27296. bottom: 15 / 1070
  27297. }
  27298. },
  27299. back: {
  27300. height: math.unit(5 + 7 / 12, "feet"),
  27301. weight: math.unit(185, "lb"),
  27302. name: "Back",
  27303. image: {
  27304. source: "./media/characters/aman-aquila/back.svg",
  27305. extra: 1026 / 970,
  27306. bottom: 12 / 1039
  27307. }
  27308. },
  27309. head: {
  27310. height: math.unit(1.211, "feet"),
  27311. name: "Head",
  27312. image: {
  27313. source: "./media/characters/aman-aquila/head.svg",
  27314. }
  27315. },
  27316. },
  27317. [
  27318. {
  27319. name: "Minimicro",
  27320. height: math.unit(0.057, "inches")
  27321. },
  27322. {
  27323. name: "Micro",
  27324. height: math.unit(7, "inches")
  27325. },
  27326. {
  27327. name: "Mini",
  27328. height: math.unit(3 + 7 / 12, "feet")
  27329. },
  27330. {
  27331. name: "Normal",
  27332. height: math.unit(5 + 7 / 12, "feet"),
  27333. default: true
  27334. },
  27335. {
  27336. name: "Macro",
  27337. height: math.unit(157 + 7 / 12, "feet")
  27338. },
  27339. {
  27340. name: "Megamacro",
  27341. height: math.unit(1557 + 7 / 12, "feet")
  27342. },
  27343. {
  27344. name: "Gigamacro",
  27345. height: math.unit(15557 + 7 / 12, "feet")
  27346. },
  27347. ]
  27348. ))
  27349. characterMakers.push(() => makeCharacter(
  27350. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27351. {
  27352. front: {
  27353. height: math.unit(3 + 2 / 12, "inches"),
  27354. weight: math.unit(0.3, "ounces"),
  27355. name: "Front",
  27356. image: {
  27357. source: "./media/characters/hiphae/front.svg",
  27358. extra: 1931 / 1683,
  27359. bottom: 24 / 1955
  27360. }
  27361. },
  27362. },
  27363. [
  27364. {
  27365. name: "Normal",
  27366. height: math.unit(3 + 1 / 2, "inches"),
  27367. default: true
  27368. },
  27369. ]
  27370. ))
  27371. characterMakers.push(() => makeCharacter(
  27372. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27373. {
  27374. front: {
  27375. height: math.unit(5 + 10 / 12, "feet"),
  27376. weight: math.unit(165, "lb"),
  27377. name: "Front",
  27378. image: {
  27379. source: "./media/characters/nicky/front.svg",
  27380. extra: 3144 / 2886,
  27381. bottom: 45.6 / 3192
  27382. }
  27383. },
  27384. back: {
  27385. height: math.unit(5 + 10 / 12, "feet"),
  27386. weight: math.unit(165, "lb"),
  27387. name: "Back",
  27388. image: {
  27389. source: "./media/characters/nicky/back.svg",
  27390. extra: 3055 / 2804,
  27391. bottom: 28.4 / 3087
  27392. }
  27393. },
  27394. frontclothed: {
  27395. height: math.unit(5 + 10 / 12, "feet"),
  27396. weight: math.unit(165, "lb"),
  27397. name: "Front-clothed",
  27398. image: {
  27399. source: "./media/characters/nicky/front-clothed.svg",
  27400. extra: 3184.9 / 2926.9,
  27401. bottom: 86.5 / 3239.9
  27402. }
  27403. },
  27404. foot: {
  27405. height: math.unit(1.16, "feet"),
  27406. name: "Foot",
  27407. image: {
  27408. source: "./media/characters/nicky/foot.svg"
  27409. }
  27410. },
  27411. feet: {
  27412. height: math.unit(1.34, "feet"),
  27413. name: "Feet",
  27414. image: {
  27415. source: "./media/characters/nicky/feet.svg"
  27416. }
  27417. },
  27418. maw: {
  27419. height: math.unit(0.9, "feet"),
  27420. name: "Maw",
  27421. image: {
  27422. source: "./media/characters/nicky/maw.svg"
  27423. }
  27424. },
  27425. },
  27426. [
  27427. {
  27428. name: "Normal",
  27429. height: math.unit(5 + 10 / 12, "feet"),
  27430. default: true
  27431. },
  27432. {
  27433. name: "Macro",
  27434. height: math.unit(60, "feet")
  27435. },
  27436. {
  27437. name: "Megamacro",
  27438. height: math.unit(1, "mile")
  27439. },
  27440. ]
  27441. ))
  27442. characterMakers.push(() => makeCharacter(
  27443. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27444. {
  27445. side: {
  27446. height: math.unit(10, "feet"),
  27447. weight: math.unit(600, "lb"),
  27448. name: "Side",
  27449. image: {
  27450. source: "./media/characters/blair/side.svg",
  27451. bottom: 16.6 / 475,
  27452. extra: 458 / 431
  27453. }
  27454. },
  27455. },
  27456. [
  27457. {
  27458. name: "Micro",
  27459. height: math.unit(8, "inches")
  27460. },
  27461. {
  27462. name: "Normal",
  27463. height: math.unit(10, "feet"),
  27464. default: true
  27465. },
  27466. {
  27467. name: "Macro",
  27468. height: math.unit(180, "feet")
  27469. },
  27470. ]
  27471. ))
  27472. characterMakers.push(() => makeCharacter(
  27473. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27474. {
  27475. front: {
  27476. height: math.unit(5 + 4 / 12, "feet"),
  27477. weight: math.unit(125, "lb"),
  27478. name: "Front",
  27479. image: {
  27480. source: "./media/characters/fisher/front.svg",
  27481. extra: 444 / 390,
  27482. bottom: 2 / 444.8
  27483. }
  27484. },
  27485. },
  27486. [
  27487. {
  27488. name: "Micro",
  27489. height: math.unit(4, "inches")
  27490. },
  27491. {
  27492. name: "Normal",
  27493. height: math.unit(5 + 4 / 12, "feet"),
  27494. default: true
  27495. },
  27496. {
  27497. name: "Macro",
  27498. height: math.unit(100, "feet")
  27499. },
  27500. ]
  27501. ))
  27502. characterMakers.push(() => makeCharacter(
  27503. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27504. {
  27505. front: {
  27506. height: math.unit(6.71, "feet"),
  27507. weight: math.unit(200, "lb"),
  27508. preyCapacity: math.unit(1000000, "people"),
  27509. name: "Front",
  27510. image: {
  27511. source: "./media/characters/gliss/front.svg",
  27512. extra: 2347 / 2231,
  27513. bottom: 113 / 2462
  27514. }
  27515. },
  27516. hammerspaceSize: {
  27517. height: math.unit(6.71 * 717, "feet"),
  27518. weight: math.unit(200, "lb"),
  27519. preyCapacity: math.unit(1000000, "people"),
  27520. name: "Hammerspace Size",
  27521. image: {
  27522. source: "./media/characters/gliss/front.svg",
  27523. extra: 2347 / 2231,
  27524. bottom: 113 / 2462
  27525. }
  27526. },
  27527. },
  27528. [
  27529. {
  27530. name: "Normal",
  27531. height: math.unit(6.71, "feet"),
  27532. default: true
  27533. },
  27534. ]
  27535. ))
  27536. characterMakers.push(() => makeCharacter(
  27537. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27538. {
  27539. side: {
  27540. height: math.unit(1.44, "m"),
  27541. weight: math.unit(80, "kg"),
  27542. name: "Side",
  27543. image: {
  27544. source: "./media/characters/dune-anderson/side.svg",
  27545. bottom: 49 / 1426
  27546. }
  27547. },
  27548. },
  27549. [
  27550. {
  27551. name: "Wolf-sized",
  27552. height: math.unit(1.44, "meters")
  27553. },
  27554. {
  27555. name: "Normal",
  27556. height: math.unit(5.05, "meters"),
  27557. default: true
  27558. },
  27559. {
  27560. name: "Big",
  27561. height: math.unit(14.4, "meters")
  27562. },
  27563. {
  27564. name: "Huge",
  27565. height: math.unit(144, "meters")
  27566. },
  27567. ]
  27568. ))
  27569. characterMakers.push(() => makeCharacter(
  27570. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27571. {
  27572. front: {
  27573. height: math.unit(6, "feet"),
  27574. weight: math.unit(220, "lb"),
  27575. name: "Front",
  27576. image: {
  27577. source: "./media/characters/hind/front.svg",
  27578. extra: 1912/1787,
  27579. bottom: 52/1964
  27580. }
  27581. },
  27582. back: {
  27583. height: math.unit(6, "feet"),
  27584. weight: math.unit(220, "lb"),
  27585. name: "Back",
  27586. image: {
  27587. source: "./media/characters/hind/back.svg",
  27588. extra: 1901/1794,
  27589. bottom: 26/1927
  27590. }
  27591. },
  27592. },
  27593. [
  27594. {
  27595. name: "Normal",
  27596. height: math.unit(6, "feet"),
  27597. default: true
  27598. },
  27599. ]
  27600. ))
  27601. characterMakers.push(() => makeCharacter(
  27602. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27603. {
  27604. front: {
  27605. height: math.unit(2.1, "meters"),
  27606. weight: math.unit(150, "lb"),
  27607. name: "Front",
  27608. image: {
  27609. source: "./media/characters/tharquench-sizestealer/front.svg",
  27610. extra: 1605/1470,
  27611. bottom: 36/1641
  27612. }
  27613. },
  27614. frontAlt: {
  27615. height: math.unit(2.1, "meters"),
  27616. weight: math.unit(150, "lb"),
  27617. name: "Front (Alt)",
  27618. image: {
  27619. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27620. extra: 2318 / 2063,
  27621. bottom: 93.4 / 2410
  27622. }
  27623. },
  27624. },
  27625. [
  27626. {
  27627. name: "Nano",
  27628. height: math.unit(1, "mm")
  27629. },
  27630. {
  27631. name: "Micro",
  27632. height: math.unit(1, "cm")
  27633. },
  27634. {
  27635. name: "Normal",
  27636. height: math.unit(2.1, "meters"),
  27637. default: true
  27638. },
  27639. ]
  27640. ))
  27641. characterMakers.push(() => makeCharacter(
  27642. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27643. {
  27644. front: {
  27645. height: math.unit(7 + 5 / 12, "feet"),
  27646. weight: math.unit(357, "lb"),
  27647. name: "Front",
  27648. image: {
  27649. source: "./media/characters/solex-draconov/front.svg",
  27650. extra: 1993 / 1865,
  27651. bottom: 117 / 2111
  27652. }
  27653. },
  27654. },
  27655. [
  27656. {
  27657. name: "Natural Height",
  27658. height: math.unit(7 + 5 / 12, "feet"),
  27659. default: true
  27660. },
  27661. {
  27662. name: "Macro",
  27663. height: math.unit(350, "feet")
  27664. },
  27665. {
  27666. name: "Macro+",
  27667. height: math.unit(1000, "feet")
  27668. },
  27669. {
  27670. name: "Megamacro",
  27671. height: math.unit(20, "km")
  27672. },
  27673. {
  27674. name: "Megamacro+",
  27675. height: math.unit(1000, "km")
  27676. },
  27677. {
  27678. name: "Gigamacro",
  27679. height: math.unit(2.5, "Gm")
  27680. },
  27681. {
  27682. name: "Teramacro",
  27683. height: math.unit(15, "Tm")
  27684. },
  27685. {
  27686. name: "Galactic",
  27687. height: math.unit(30, "Zm")
  27688. },
  27689. {
  27690. name: "Universal",
  27691. height: math.unit(21000, "Ym")
  27692. },
  27693. {
  27694. name: "Omniversal",
  27695. height: math.unit(9.861e50, "Ym")
  27696. },
  27697. {
  27698. name: "Existential",
  27699. height: math.unit(1e300, "meters")
  27700. },
  27701. ]
  27702. ))
  27703. characterMakers.push(() => makeCharacter(
  27704. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27705. {
  27706. side: {
  27707. height: math.unit(25, "feet"),
  27708. weight: math.unit(90000, "lb"),
  27709. name: "Side",
  27710. image: {
  27711. source: "./media/characters/mandarax/side.svg",
  27712. extra: 614 / 332,
  27713. bottom: 55 / 630
  27714. }
  27715. },
  27716. lounging: {
  27717. height: math.unit(15.4, "feet"),
  27718. weight: math.unit(90000, "lb"),
  27719. name: "Lounging",
  27720. image: {
  27721. source: "./media/characters/mandarax/lounging.svg",
  27722. extra: 817/609,
  27723. bottom: 685/1502
  27724. }
  27725. },
  27726. head: {
  27727. height: math.unit(11.4, "feet"),
  27728. name: "Head",
  27729. image: {
  27730. source: "./media/characters/mandarax/head.svg"
  27731. }
  27732. },
  27733. belly: {
  27734. height: math.unit(33, "feet"),
  27735. name: "Belly",
  27736. preyCapacity: math.unit(500, "people"),
  27737. image: {
  27738. source: "./media/characters/mandarax/belly.svg"
  27739. }
  27740. },
  27741. dick: {
  27742. height: math.unit(8.46, "feet"),
  27743. name: "Dick",
  27744. image: {
  27745. source: "./media/characters/mandarax/dick.svg"
  27746. }
  27747. },
  27748. top: {
  27749. height: math.unit(28, "meters"),
  27750. name: "Top",
  27751. image: {
  27752. source: "./media/characters/mandarax/top.svg"
  27753. }
  27754. },
  27755. },
  27756. [
  27757. {
  27758. name: "Normal",
  27759. height: math.unit(25, "feet"),
  27760. default: true
  27761. },
  27762. ]
  27763. ))
  27764. characterMakers.push(() => makeCharacter(
  27765. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27766. {
  27767. front: {
  27768. height: math.unit(5, "feet"),
  27769. weight: math.unit(90, "lb"),
  27770. name: "Front",
  27771. image: {
  27772. source: "./media/characters/pixil/front.svg",
  27773. extra: 2000 / 1618,
  27774. bottom: 12.3 / 2011
  27775. }
  27776. },
  27777. },
  27778. [
  27779. {
  27780. name: "Normal",
  27781. height: math.unit(5, "feet"),
  27782. default: true
  27783. },
  27784. {
  27785. name: "Megamacro",
  27786. height: math.unit(10, "miles"),
  27787. },
  27788. ]
  27789. ))
  27790. characterMakers.push(() => makeCharacter(
  27791. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27792. {
  27793. front: {
  27794. height: math.unit(7 + 2 / 12, "feet"),
  27795. weight: math.unit(200, "lb"),
  27796. name: "Front",
  27797. image: {
  27798. source: "./media/characters/angel/front.svg",
  27799. extra: 1946/1840,
  27800. bottom: 30/1976
  27801. }
  27802. },
  27803. },
  27804. [
  27805. {
  27806. name: "Normal",
  27807. height: math.unit(7 + 2 / 12, "feet"),
  27808. default: true
  27809. },
  27810. {
  27811. name: "Macro",
  27812. height: math.unit(1000, "feet")
  27813. },
  27814. {
  27815. name: "Megamacro",
  27816. height: math.unit(2, "miles")
  27817. },
  27818. {
  27819. name: "Gigamacro",
  27820. height: math.unit(20, "earths")
  27821. },
  27822. ]
  27823. ))
  27824. characterMakers.push(() => makeCharacter(
  27825. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27826. {
  27827. front: {
  27828. height: math.unit(5, "feet"),
  27829. weight: math.unit(180, "lb"),
  27830. name: "Front",
  27831. image: {
  27832. source: "./media/characters/mekana/front.svg",
  27833. extra: 1671 / 1605,
  27834. bottom: 3.5 / 1691
  27835. }
  27836. },
  27837. side: {
  27838. height: math.unit(5, "feet"),
  27839. weight: math.unit(180, "lb"),
  27840. name: "Side",
  27841. image: {
  27842. source: "./media/characters/mekana/side.svg",
  27843. extra: 1671 / 1605,
  27844. bottom: 3.5 / 1691
  27845. }
  27846. },
  27847. back: {
  27848. height: math.unit(5, "feet"),
  27849. weight: math.unit(180, "lb"),
  27850. name: "Back",
  27851. image: {
  27852. source: "./media/characters/mekana/back.svg",
  27853. extra: 1671 / 1605,
  27854. bottom: 3.5 / 1691
  27855. }
  27856. },
  27857. },
  27858. [
  27859. {
  27860. name: "Normal",
  27861. height: math.unit(5, "feet"),
  27862. default: true
  27863. },
  27864. ]
  27865. ))
  27866. characterMakers.push(() => makeCharacter(
  27867. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27868. {
  27869. front: {
  27870. height: math.unit(4 + 6 / 12, "feet"),
  27871. weight: math.unit(80, "lb"),
  27872. name: "Front",
  27873. image: {
  27874. source: "./media/characters/pixie/front.svg",
  27875. extra: 1924 / 1825,
  27876. bottom: 22.4 / 1946
  27877. }
  27878. },
  27879. },
  27880. [
  27881. {
  27882. name: "Normal",
  27883. height: math.unit(4 + 6 / 12, "feet"),
  27884. default: true
  27885. },
  27886. {
  27887. name: "Macro",
  27888. height: math.unit(40, "feet")
  27889. },
  27890. ]
  27891. ))
  27892. characterMakers.push(() => makeCharacter(
  27893. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27894. {
  27895. front: {
  27896. height: math.unit(2.1, "meters"),
  27897. weight: math.unit(200, "lb"),
  27898. name: "Front",
  27899. image: {
  27900. source: "./media/characters/the-lascivious/front.svg",
  27901. extra: 1 / 0.893,
  27902. bottom: 3.5 / 573.7
  27903. }
  27904. },
  27905. },
  27906. [
  27907. {
  27908. name: "Human Scale",
  27909. height: math.unit(2.1, "meters")
  27910. },
  27911. {
  27912. name: "Wolxi Scale",
  27913. height: math.unit(46.2, "m"),
  27914. default: true
  27915. },
  27916. {
  27917. name: "Boinker of Buildings",
  27918. height: math.unit(10, "km")
  27919. },
  27920. {
  27921. name: "Shagger of Skyscrapers",
  27922. height: math.unit(40, "km")
  27923. },
  27924. {
  27925. name: "Banger of Boroughs",
  27926. height: math.unit(4000, "km")
  27927. },
  27928. {
  27929. name: "Screwer of States",
  27930. height: math.unit(100000, "km")
  27931. },
  27932. {
  27933. name: "Pounder of Planets",
  27934. height: math.unit(2000000, "km")
  27935. },
  27936. ]
  27937. ))
  27938. characterMakers.push(() => makeCharacter(
  27939. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27940. {
  27941. front: {
  27942. height: math.unit(6, "feet"),
  27943. weight: math.unit(150, "lb"),
  27944. name: "Front",
  27945. image: {
  27946. source: "./media/characters/aj/front.svg",
  27947. extra: 2039 / 1562,
  27948. bottom: 40 / 2079
  27949. }
  27950. },
  27951. },
  27952. [
  27953. {
  27954. name: "Normal",
  27955. height: math.unit(11 + 6 / 12, "feet"),
  27956. default: true
  27957. },
  27958. {
  27959. name: "Megamacro",
  27960. height: math.unit(60, "megameters")
  27961. },
  27962. ]
  27963. ))
  27964. characterMakers.push(() => makeCharacter(
  27965. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27966. {
  27967. side: {
  27968. height: math.unit(31 + 8 / 12, "feet"),
  27969. weight: math.unit(75000, "kg"),
  27970. name: "Side",
  27971. image: {
  27972. source: "./media/characters/koros/side.svg",
  27973. extra: 1442 / 1297,
  27974. bottom: 122.7 / 1562
  27975. }
  27976. },
  27977. dicksKingsCrown: {
  27978. height: math.unit(6, "feet"),
  27979. name: "Dicks (King's Crown)",
  27980. image: {
  27981. source: "./media/characters/koros/dicks-kings-crown.svg"
  27982. }
  27983. },
  27984. dicksTailSet: {
  27985. height: math.unit(3, "feet"),
  27986. name: "Dicks (Tail Set)",
  27987. image: {
  27988. source: "./media/characters/koros/dicks-tail-set.svg"
  27989. }
  27990. },
  27991. dickCumming: {
  27992. height: math.unit(7.98, "feet"),
  27993. name: "Dick (Cumming)",
  27994. image: {
  27995. source: "./media/characters/koros/dick-cumming.svg"
  27996. }
  27997. },
  27998. dicksBack: {
  27999. height: math.unit(5.9, "feet"),
  28000. name: "Dicks (Back)",
  28001. image: {
  28002. source: "./media/characters/koros/dicks-back.svg"
  28003. }
  28004. },
  28005. dicksFront: {
  28006. height: math.unit(3.72, "feet"),
  28007. name: "Dicks (Front)",
  28008. image: {
  28009. source: "./media/characters/koros/dicks-front.svg"
  28010. }
  28011. },
  28012. dicksPeeking: {
  28013. height: math.unit(3.0, "feet"),
  28014. name: "Dicks (Peeking)",
  28015. image: {
  28016. source: "./media/characters/koros/dicks-peeking.svg"
  28017. }
  28018. },
  28019. eye: {
  28020. height: math.unit(1.7, "feet"),
  28021. name: "Eye",
  28022. image: {
  28023. source: "./media/characters/koros/eye.svg"
  28024. }
  28025. },
  28026. headFront: {
  28027. height: math.unit(11.69, "feet"),
  28028. name: "Head (Front)",
  28029. image: {
  28030. source: "./media/characters/koros/head-front.svg"
  28031. }
  28032. },
  28033. headSide: {
  28034. height: math.unit(14, "feet"),
  28035. name: "Head (Side)",
  28036. image: {
  28037. source: "./media/characters/koros/head-side.svg"
  28038. }
  28039. },
  28040. leg: {
  28041. height: math.unit(17, "feet"),
  28042. name: "Leg",
  28043. image: {
  28044. source: "./media/characters/koros/leg.svg"
  28045. }
  28046. },
  28047. mawSide: {
  28048. height: math.unit(12.8, "feet"),
  28049. name: "Maw (Side)",
  28050. image: {
  28051. source: "./media/characters/koros/maw-side.svg"
  28052. }
  28053. },
  28054. mawSpitting: {
  28055. height: math.unit(17, "feet"),
  28056. name: "Maw (Spitting)",
  28057. image: {
  28058. source: "./media/characters/koros/maw-spitting.svg"
  28059. }
  28060. },
  28061. slit: {
  28062. height: math.unit(2.8, "feet"),
  28063. name: "Slit",
  28064. image: {
  28065. source: "./media/characters/koros/slit.svg"
  28066. }
  28067. },
  28068. stomach: {
  28069. height: math.unit(6.8, "feet"),
  28070. preyCapacity: math.unit(20, "people"),
  28071. name: "Stomach",
  28072. image: {
  28073. source: "./media/characters/koros/stomach.svg"
  28074. }
  28075. },
  28076. wingspanBottom: {
  28077. height: math.unit(114, "feet"),
  28078. name: "Wingspan (Bottom)",
  28079. image: {
  28080. source: "./media/characters/koros/wingspan-bottom.svg"
  28081. }
  28082. },
  28083. wingspanTop: {
  28084. height: math.unit(104, "feet"),
  28085. name: "Wingspan (Top)",
  28086. image: {
  28087. source: "./media/characters/koros/wingspan-top.svg"
  28088. }
  28089. },
  28090. },
  28091. [
  28092. {
  28093. name: "Normal",
  28094. height: math.unit(31 + 8 / 12, "feet"),
  28095. default: true
  28096. },
  28097. ]
  28098. ))
  28099. characterMakers.push(() => makeCharacter(
  28100. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  28101. {
  28102. front: {
  28103. height: math.unit(18 + 5 / 12, "feet"),
  28104. weight: math.unit(3750, "kg"),
  28105. name: "Front",
  28106. image: {
  28107. source: "./media/characters/vexx/front.svg",
  28108. extra: 426 / 396,
  28109. bottom: 31.5 / 458
  28110. }
  28111. },
  28112. maw: {
  28113. height: math.unit(6, "feet"),
  28114. name: "Maw",
  28115. image: {
  28116. source: "./media/characters/vexx/maw.svg"
  28117. }
  28118. },
  28119. },
  28120. [
  28121. {
  28122. name: "Normal",
  28123. height: math.unit(18 + 5 / 12, "feet"),
  28124. default: true
  28125. },
  28126. ]
  28127. ))
  28128. characterMakers.push(() => makeCharacter(
  28129. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  28130. {
  28131. front: {
  28132. height: math.unit(17 + 6 / 12, "feet"),
  28133. weight: math.unit(150, "lb"),
  28134. name: "Front",
  28135. image: {
  28136. source: "./media/characters/baadra/front.svg",
  28137. extra: 1694/1553,
  28138. bottom: 179/1873
  28139. }
  28140. },
  28141. frontAlt: {
  28142. height: math.unit(17 + 6 / 12, "feet"),
  28143. weight: math.unit(150, "lb"),
  28144. name: "Front (Alt)",
  28145. image: {
  28146. source: "./media/characters/baadra/front-alt.svg",
  28147. extra: 3137 / 2890,
  28148. bottom: 168.4 / 3305
  28149. }
  28150. },
  28151. back: {
  28152. height: math.unit(17 + 6 / 12, "feet"),
  28153. weight: math.unit(150, "lb"),
  28154. name: "Back",
  28155. image: {
  28156. source: "./media/characters/baadra/back.svg",
  28157. extra: 3142 / 2890,
  28158. bottom: 220 / 3371
  28159. }
  28160. },
  28161. head: {
  28162. height: math.unit(5.45, "feet"),
  28163. name: "Head",
  28164. image: {
  28165. source: "./media/characters/baadra/head.svg"
  28166. }
  28167. },
  28168. headAngry: {
  28169. height: math.unit(4.95, "feet"),
  28170. name: "Head (Angry)",
  28171. image: {
  28172. source: "./media/characters/baadra/head-angry.svg"
  28173. }
  28174. },
  28175. headOpen: {
  28176. height: math.unit(6, "feet"),
  28177. name: "Head (Open)",
  28178. image: {
  28179. source: "./media/characters/baadra/head-open.svg"
  28180. }
  28181. },
  28182. },
  28183. [
  28184. {
  28185. name: "Normal",
  28186. height: math.unit(17 + 6 / 12, "feet"),
  28187. default: true
  28188. },
  28189. ]
  28190. ))
  28191. characterMakers.push(() => makeCharacter(
  28192. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  28193. {
  28194. front: {
  28195. height: math.unit(7 + 3 / 12, "feet"),
  28196. weight: math.unit(180, "lb"),
  28197. name: "Front",
  28198. image: {
  28199. source: "./media/characters/juri/front.svg",
  28200. extra: 1401 / 1237,
  28201. bottom: 18.5 / 1418
  28202. }
  28203. },
  28204. side: {
  28205. height: math.unit(7 + 3 / 12, "feet"),
  28206. weight: math.unit(180, "lb"),
  28207. name: "Side",
  28208. image: {
  28209. source: "./media/characters/juri/side.svg",
  28210. extra: 1424 / 1242,
  28211. bottom: 18.5 / 1447
  28212. }
  28213. },
  28214. sitting: {
  28215. height: math.unit(6, "feet"),
  28216. weight: math.unit(180, "lb"),
  28217. name: "Sitting",
  28218. image: {
  28219. source: "./media/characters/juri/sitting.svg",
  28220. extra: 1270 / 1143,
  28221. bottom: 100 / 1343
  28222. }
  28223. },
  28224. back: {
  28225. height: math.unit(7 + 3 / 12, "feet"),
  28226. weight: math.unit(180, "lb"),
  28227. name: "Back",
  28228. image: {
  28229. source: "./media/characters/juri/back.svg",
  28230. extra: 1377 / 1240,
  28231. bottom: 23.7 / 1405
  28232. }
  28233. },
  28234. maw: {
  28235. height: math.unit(2.8, "feet"),
  28236. name: "Maw",
  28237. image: {
  28238. source: "./media/characters/juri/maw.svg"
  28239. }
  28240. },
  28241. stomach: {
  28242. height: math.unit(0.89, "feet"),
  28243. preyCapacity: math.unit(4, "liters"),
  28244. name: "Stomach",
  28245. image: {
  28246. source: "./media/characters/juri/stomach.svg"
  28247. }
  28248. },
  28249. },
  28250. [
  28251. {
  28252. name: "Normal",
  28253. height: math.unit(7 + 3 / 12, "feet"),
  28254. default: true
  28255. },
  28256. ]
  28257. ))
  28258. characterMakers.push(() => makeCharacter(
  28259. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28260. {
  28261. fox: {
  28262. height: math.unit(5 + 6 / 12, "feet"),
  28263. weight: math.unit(140, "lb"),
  28264. name: "Fox",
  28265. image: {
  28266. source: "./media/characters/maxene-sita/fox.svg",
  28267. extra: 146 / 138,
  28268. bottom: 2.1 / 148.19
  28269. }
  28270. },
  28271. foxLaying: {
  28272. height: math.unit(1.70, "feet"),
  28273. weight: math.unit(140, "lb"),
  28274. name: "Fox (Laying)",
  28275. image: {
  28276. source: "./media/characters/maxene-sita/fox-laying.svg",
  28277. extra: 910 / 572,
  28278. bottom: 71 / 981
  28279. }
  28280. },
  28281. kitsune: {
  28282. height: math.unit(10, "feet"),
  28283. weight: math.unit(800, "lb"),
  28284. name: "Kitsune",
  28285. image: {
  28286. source: "./media/characters/maxene-sita/kitsune.svg",
  28287. extra: 185 / 176,
  28288. bottom: 4.7 / 189.9
  28289. }
  28290. },
  28291. hellhound: {
  28292. height: math.unit(10, "feet"),
  28293. weight: math.unit(700, "lb"),
  28294. name: "Hellhound",
  28295. image: {
  28296. source: "./media/characters/maxene-sita/hellhound.svg",
  28297. extra: 1600 / 1545,
  28298. bottom: 81 / 1681
  28299. }
  28300. },
  28301. },
  28302. [
  28303. {
  28304. name: "Normal",
  28305. height: math.unit(5 + 6 / 12, "feet"),
  28306. default: true
  28307. },
  28308. ]
  28309. ))
  28310. characterMakers.push(() => makeCharacter(
  28311. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28312. {
  28313. front: {
  28314. height: math.unit(3 + 4 / 12, "feet"),
  28315. weight: math.unit(70, "lb"),
  28316. name: "Front",
  28317. image: {
  28318. source: "./media/characters/maia/front.svg",
  28319. extra: 227 / 219.5,
  28320. bottom: 40 / 267
  28321. }
  28322. },
  28323. back: {
  28324. height: math.unit(3 + 4 / 12, "feet"),
  28325. weight: math.unit(70, "lb"),
  28326. name: "Back",
  28327. image: {
  28328. source: "./media/characters/maia/back.svg",
  28329. extra: 237 / 225
  28330. }
  28331. },
  28332. },
  28333. [
  28334. {
  28335. name: "Normal",
  28336. height: math.unit(3 + 4 / 12, "feet"),
  28337. default: true
  28338. },
  28339. ]
  28340. ))
  28341. characterMakers.push(() => makeCharacter(
  28342. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28343. {
  28344. front: {
  28345. height: math.unit(5 + 10 / 12, "feet"),
  28346. weight: math.unit(197, "lb"),
  28347. name: "Front",
  28348. image: {
  28349. source: "./media/characters/jabaro/front.svg",
  28350. extra: 225 / 216,
  28351. bottom: 5.06 / 230
  28352. }
  28353. },
  28354. back: {
  28355. height: math.unit(5 + 10 / 12, "feet"),
  28356. weight: math.unit(197, "lb"),
  28357. name: "Back",
  28358. image: {
  28359. source: "./media/characters/jabaro/back.svg",
  28360. extra: 225 / 219,
  28361. bottom: 1.9 / 227
  28362. }
  28363. },
  28364. },
  28365. [
  28366. {
  28367. name: "Normal",
  28368. height: math.unit(5 + 10 / 12, "feet"),
  28369. default: true
  28370. },
  28371. ]
  28372. ))
  28373. characterMakers.push(() => makeCharacter(
  28374. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28375. {
  28376. front: {
  28377. height: math.unit(5 + 8 / 12, "feet"),
  28378. weight: math.unit(139, "lb"),
  28379. name: "Front",
  28380. image: {
  28381. source: "./media/characters/risa/front.svg",
  28382. extra: 270 / 260,
  28383. bottom: 11.2 / 282
  28384. }
  28385. },
  28386. back: {
  28387. height: math.unit(5 + 8 / 12, "feet"),
  28388. weight: math.unit(139, "lb"),
  28389. name: "Back",
  28390. image: {
  28391. source: "./media/characters/risa/back.svg",
  28392. extra: 264 / 255,
  28393. bottom: 4 / 268
  28394. }
  28395. },
  28396. },
  28397. [
  28398. {
  28399. name: "Normal",
  28400. height: math.unit(5 + 8 / 12, "feet"),
  28401. default: true
  28402. },
  28403. ]
  28404. ))
  28405. characterMakers.push(() => makeCharacter(
  28406. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28407. {
  28408. front: {
  28409. height: math.unit(2 + 11 / 12, "feet"),
  28410. weight: math.unit(30, "lb"),
  28411. name: "Front",
  28412. image: {
  28413. source: "./media/characters/weatley/front.svg",
  28414. bottom: 10.7 / 414,
  28415. extra: 403.5 / 362
  28416. }
  28417. },
  28418. back: {
  28419. height: math.unit(2 + 11 / 12, "feet"),
  28420. weight: math.unit(30, "lb"),
  28421. name: "Back",
  28422. image: {
  28423. source: "./media/characters/weatley/back.svg",
  28424. bottom: 10.7 / 414,
  28425. extra: 403.5 / 362
  28426. }
  28427. },
  28428. },
  28429. [
  28430. {
  28431. name: "Normal",
  28432. height: math.unit(2 + 11 / 12, "feet"),
  28433. default: true
  28434. },
  28435. ]
  28436. ))
  28437. characterMakers.push(() => makeCharacter(
  28438. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28439. {
  28440. front: {
  28441. height: math.unit(5 + 2 / 12, "feet"),
  28442. weight: math.unit(50, "kg"),
  28443. name: "Front",
  28444. image: {
  28445. source: "./media/characters/mercury-crescent/front.svg",
  28446. extra: 1088 / 1033,
  28447. bottom: 18.9 / 1109
  28448. }
  28449. },
  28450. },
  28451. [
  28452. {
  28453. name: "Normal",
  28454. height: math.unit(5 + 2 / 12, "feet"),
  28455. default: true
  28456. },
  28457. ]
  28458. ))
  28459. characterMakers.push(() => makeCharacter(
  28460. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28461. {
  28462. front: {
  28463. height: math.unit(2, "feet"),
  28464. weight: math.unit(15, "kg"),
  28465. name: "Front",
  28466. image: {
  28467. source: "./media/characters/diamond-jones/front.svg",
  28468. extra: 727/723,
  28469. bottom: 46/773
  28470. }
  28471. },
  28472. },
  28473. [
  28474. {
  28475. name: "Normal",
  28476. height: math.unit(2, "feet"),
  28477. default: true
  28478. },
  28479. ]
  28480. ))
  28481. characterMakers.push(() => makeCharacter(
  28482. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28483. {
  28484. front: {
  28485. height: math.unit(3, "feet"),
  28486. weight: math.unit(30, "kg"),
  28487. name: "Front",
  28488. image: {
  28489. source: "./media/characters/sweet-bit/front.svg",
  28490. extra: 675 / 567,
  28491. bottom: 27.7 / 703
  28492. }
  28493. },
  28494. },
  28495. [
  28496. {
  28497. name: "Normal",
  28498. height: math.unit(3, "feet"),
  28499. default: true
  28500. },
  28501. ]
  28502. ))
  28503. characterMakers.push(() => makeCharacter(
  28504. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28505. {
  28506. side: {
  28507. height: math.unit(9.178, "feet"),
  28508. weight: math.unit(500, "lb"),
  28509. name: "Side",
  28510. image: {
  28511. source: "./media/characters/umbrazen/side.svg",
  28512. extra: 1730 / 1473,
  28513. bottom: 34.6 / 1765
  28514. }
  28515. },
  28516. },
  28517. [
  28518. {
  28519. name: "Normal",
  28520. height: math.unit(9.178, "feet"),
  28521. default: true
  28522. },
  28523. ]
  28524. ))
  28525. characterMakers.push(() => makeCharacter(
  28526. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28527. {
  28528. front: {
  28529. height: math.unit(10, "feet"),
  28530. weight: math.unit(750, "lb"),
  28531. name: "Front",
  28532. image: {
  28533. source: "./media/characters/arlist/front.svg",
  28534. extra: 961 / 778,
  28535. bottom: 6.2 / 986
  28536. }
  28537. },
  28538. },
  28539. [
  28540. {
  28541. name: "Normal",
  28542. height: math.unit(10, "feet"),
  28543. default: true
  28544. },
  28545. ]
  28546. ))
  28547. characterMakers.push(() => makeCharacter(
  28548. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28549. {
  28550. front: {
  28551. height: math.unit(5 + 1 / 12, "feet"),
  28552. weight: math.unit(110, "lb"),
  28553. name: "Front",
  28554. image: {
  28555. source: "./media/characters/aradel/front.svg",
  28556. extra: 324 / 303,
  28557. bottom: 3.6 / 329.4
  28558. }
  28559. },
  28560. },
  28561. [
  28562. {
  28563. name: "Normal",
  28564. height: math.unit(5 + 1 / 12, "feet"),
  28565. default: true
  28566. },
  28567. ]
  28568. ))
  28569. characterMakers.push(() => makeCharacter(
  28570. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28571. {
  28572. dressed: {
  28573. height: math.unit(3 + 8 / 12, "feet"),
  28574. weight: math.unit(50, "lb"),
  28575. name: "Dressed",
  28576. image: {
  28577. source: "./media/characters/serryn/dressed.svg",
  28578. extra: 1792 / 1656,
  28579. bottom: 43.5 / 1840
  28580. }
  28581. },
  28582. nude: {
  28583. height: math.unit(3 + 8 / 12, "feet"),
  28584. weight: math.unit(50, "lb"),
  28585. name: "Nude",
  28586. image: {
  28587. source: "./media/characters/serryn/nude.svg",
  28588. extra: 1792 / 1656,
  28589. bottom: 43.5 / 1840
  28590. }
  28591. },
  28592. },
  28593. [
  28594. {
  28595. name: "Normal",
  28596. height: math.unit(3 + 8 / 12, "feet"),
  28597. default: true
  28598. },
  28599. ]
  28600. ))
  28601. characterMakers.push(() => makeCharacter(
  28602. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28603. {
  28604. front: {
  28605. height: math.unit(7 + 10 / 12, "feet"),
  28606. weight: math.unit(255, "lb"),
  28607. name: "Front",
  28608. image: {
  28609. source: "./media/characters/xavier-thyme/front.svg",
  28610. extra: 3733 / 3642,
  28611. bottom: 131 / 3869
  28612. }
  28613. },
  28614. frontRaven: {
  28615. height: math.unit(7 + 10 / 12, "feet"),
  28616. weight: math.unit(255, "lb"),
  28617. name: "Front (Raven)",
  28618. image: {
  28619. source: "./media/characters/xavier-thyme/front-raven.svg",
  28620. extra: 4385 / 3642,
  28621. bottom: 131 / 4517
  28622. }
  28623. },
  28624. },
  28625. [
  28626. {
  28627. name: "Normal",
  28628. height: math.unit(7 + 10 / 12, "feet"),
  28629. default: true
  28630. },
  28631. ]
  28632. ))
  28633. characterMakers.push(() => makeCharacter(
  28634. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28635. {
  28636. front: {
  28637. height: math.unit(1.6, "m"),
  28638. weight: math.unit(50, "kg"),
  28639. name: "Front",
  28640. image: {
  28641. source: "./media/characters/kiki/front.svg",
  28642. extra: 4682 / 3610,
  28643. bottom: 115 / 4777
  28644. }
  28645. },
  28646. },
  28647. [
  28648. {
  28649. name: "Normal",
  28650. height: math.unit(1.6, "meters"),
  28651. default: true
  28652. },
  28653. ]
  28654. ))
  28655. characterMakers.push(() => makeCharacter(
  28656. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28657. {
  28658. front: {
  28659. height: math.unit(50, "m"),
  28660. weight: math.unit(500, "tonnes"),
  28661. name: "Front",
  28662. image: {
  28663. source: "./media/characters/ryoko/front.svg",
  28664. extra: 4632 / 3926,
  28665. bottom: 193 / 4823
  28666. }
  28667. },
  28668. },
  28669. [
  28670. {
  28671. name: "Normal",
  28672. height: math.unit(50, "meters"),
  28673. default: true
  28674. },
  28675. ]
  28676. ))
  28677. characterMakers.push(() => makeCharacter(
  28678. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28679. {
  28680. front: {
  28681. height: math.unit(30, "m"),
  28682. weight: math.unit(22, "tonnes"),
  28683. name: "Front",
  28684. image: {
  28685. source: "./media/characters/elio/front.svg",
  28686. extra: 4582 / 3720,
  28687. bottom: 236 / 4828
  28688. }
  28689. },
  28690. },
  28691. [
  28692. {
  28693. name: "Normal",
  28694. height: math.unit(30, "meters"),
  28695. default: true
  28696. },
  28697. ]
  28698. ))
  28699. characterMakers.push(() => makeCharacter(
  28700. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28701. {
  28702. front: {
  28703. height: math.unit(6 + 3 / 12, "feet"),
  28704. weight: math.unit(120, "lb"),
  28705. name: "Front",
  28706. image: {
  28707. source: "./media/characters/azura/front.svg",
  28708. extra: 1149 / 1135,
  28709. bottom: 45 / 1194
  28710. }
  28711. },
  28712. frontClothed: {
  28713. height: math.unit(6 + 3 / 12, "feet"),
  28714. weight: math.unit(120, "lb"),
  28715. name: "Front (Clothed)",
  28716. image: {
  28717. source: "./media/characters/azura/front-clothed.svg",
  28718. extra: 1149 / 1135,
  28719. bottom: 45 / 1194
  28720. }
  28721. },
  28722. },
  28723. [
  28724. {
  28725. name: "Normal",
  28726. height: math.unit(6 + 3 / 12, "feet"),
  28727. default: true
  28728. },
  28729. {
  28730. name: "Macro",
  28731. height: math.unit(20 + 6 / 12, "feet")
  28732. },
  28733. {
  28734. name: "Megamacro",
  28735. height: math.unit(12, "miles")
  28736. },
  28737. {
  28738. name: "Gigamacro",
  28739. height: math.unit(10000, "miles")
  28740. },
  28741. {
  28742. name: "Teramacro",
  28743. height: math.unit(900000, "miles")
  28744. },
  28745. ]
  28746. ))
  28747. characterMakers.push(() => makeCharacter(
  28748. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28749. {
  28750. front: {
  28751. height: math.unit(12, "feet"),
  28752. weight: math.unit(1, "ton"),
  28753. capacity: math.unit(660000, "gallons"),
  28754. name: "Front",
  28755. image: {
  28756. source: "./media/characters/zeus/front.svg",
  28757. extra: 5005 / 4717,
  28758. bottom: 363 / 5388
  28759. }
  28760. },
  28761. },
  28762. [
  28763. {
  28764. name: "Normal",
  28765. height: math.unit(12, "feet")
  28766. },
  28767. {
  28768. name: "Preferred Size",
  28769. height: math.unit(0.5, "miles"),
  28770. default: true
  28771. },
  28772. {
  28773. name: "Giga Horse",
  28774. height: math.unit(300, "miles")
  28775. },
  28776. {
  28777. name: "Riding Planets",
  28778. height: math.unit(30, "megameters")
  28779. },
  28780. {
  28781. name: "Cosmic Giant",
  28782. height: math.unit(3, "zettameters")
  28783. },
  28784. {
  28785. name: "Breeding God",
  28786. height: math.unit(9.92e22, "yottameters")
  28787. },
  28788. ]
  28789. ))
  28790. characterMakers.push(() => makeCharacter(
  28791. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28792. {
  28793. side: {
  28794. height: math.unit(9, "feet"),
  28795. weight: math.unit(1500, "kg"),
  28796. name: "Side",
  28797. image: {
  28798. source: "./media/characters/fang/side.svg",
  28799. extra: 924 / 866,
  28800. bottom: 47.5 / 972.3
  28801. }
  28802. },
  28803. },
  28804. [
  28805. {
  28806. name: "Normal",
  28807. height: math.unit(9, "feet"),
  28808. default: true
  28809. },
  28810. {
  28811. name: "Macro",
  28812. height: math.unit(75 + 6 / 12, "feet")
  28813. },
  28814. {
  28815. name: "Teramacro",
  28816. height: math.unit(50000, "miles")
  28817. },
  28818. ]
  28819. ))
  28820. characterMakers.push(() => makeCharacter(
  28821. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28822. {
  28823. front: {
  28824. height: math.unit(10, "feet"),
  28825. weight: math.unit(2, "tons"),
  28826. name: "Front",
  28827. image: {
  28828. source: "./media/characters/rekhit/front.svg",
  28829. extra: 2796 / 2590,
  28830. bottom: 225 / 3022
  28831. }
  28832. },
  28833. },
  28834. [
  28835. {
  28836. name: "Normal",
  28837. height: math.unit(10, "feet"),
  28838. default: true
  28839. },
  28840. {
  28841. name: "Macro",
  28842. height: math.unit(500, "feet")
  28843. },
  28844. ]
  28845. ))
  28846. characterMakers.push(() => makeCharacter(
  28847. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28848. {
  28849. front: {
  28850. height: math.unit(7 + 6.451 / 12, "feet"),
  28851. weight: math.unit(310, "lb"),
  28852. name: "Front",
  28853. image: {
  28854. source: "./media/characters/dahlia-verrick/front.svg",
  28855. extra: 1488 / 1365,
  28856. bottom: 6.2 / 1495
  28857. }
  28858. },
  28859. back: {
  28860. height: math.unit(7 + 6.451 / 12, "feet"),
  28861. weight: math.unit(310, "lb"),
  28862. name: "Back",
  28863. image: {
  28864. source: "./media/characters/dahlia-verrick/back.svg",
  28865. extra: 1472 / 1351,
  28866. bottom: 5.28 / 1477
  28867. }
  28868. },
  28869. frontBusiness: {
  28870. height: math.unit(7 + 6.451 / 12, "feet"),
  28871. weight: math.unit(200, "lb"),
  28872. name: "Front (Business)",
  28873. image: {
  28874. source: "./media/characters/dahlia-verrick/front-business.svg",
  28875. extra: 1478 / 1381,
  28876. bottom: 5.5 / 1484
  28877. }
  28878. },
  28879. frontCasual: {
  28880. height: math.unit(7 + 6.451 / 12, "feet"),
  28881. weight: math.unit(200, "lb"),
  28882. name: "Front (Casual)",
  28883. image: {
  28884. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28885. extra: 1478 / 1381,
  28886. bottom: 5.5 / 1484
  28887. }
  28888. },
  28889. },
  28890. [
  28891. {
  28892. name: "Travel-Sized",
  28893. height: math.unit(7.45, "inches")
  28894. },
  28895. {
  28896. name: "Normal",
  28897. height: math.unit(7 + 6.451 / 12, "feet"),
  28898. default: true
  28899. },
  28900. {
  28901. name: "Hitting the Town",
  28902. height: math.unit(37 + 8 / 12, "feet")
  28903. },
  28904. {
  28905. name: "Stomp in the Suburbs",
  28906. height: math.unit(964 + 9.728 / 12, "feet")
  28907. },
  28908. {
  28909. name: "Sit on the City",
  28910. height: math.unit(61747 + 10.592 / 12, "feet")
  28911. },
  28912. {
  28913. name: "Glomp the Globe",
  28914. height: math.unit(252919327 + 4.832 / 12, "feet")
  28915. },
  28916. ]
  28917. ))
  28918. characterMakers.push(() => makeCharacter(
  28919. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28920. {
  28921. front: {
  28922. height: math.unit(6 + 4 / 12, "feet"),
  28923. weight: math.unit(320, "lb"),
  28924. name: "Front",
  28925. image: {
  28926. source: "./media/characters/balina-mahigan/front.svg",
  28927. extra: 447 / 428,
  28928. bottom: 18 / 466
  28929. }
  28930. },
  28931. back: {
  28932. height: math.unit(6 + 4 / 12, "feet"),
  28933. weight: math.unit(320, "lb"),
  28934. name: "Back",
  28935. image: {
  28936. source: "./media/characters/balina-mahigan/back.svg",
  28937. extra: 445 / 428,
  28938. bottom: 4.07 / 448
  28939. }
  28940. },
  28941. arm: {
  28942. height: math.unit(1.88, "feet"),
  28943. name: "Arm",
  28944. image: {
  28945. source: "./media/characters/balina-mahigan/arm.svg"
  28946. }
  28947. },
  28948. backPort: {
  28949. height: math.unit(0.685, "feet"),
  28950. name: "Back Port",
  28951. image: {
  28952. source: "./media/characters/balina-mahigan/back-port.svg"
  28953. }
  28954. },
  28955. hoofpaw: {
  28956. height: math.unit(1.41, "feet"),
  28957. name: "Hoofpaw",
  28958. image: {
  28959. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28960. }
  28961. },
  28962. leftHandBack: {
  28963. height: math.unit(0.938, "feet"),
  28964. name: "Left Hand (Back)",
  28965. image: {
  28966. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28967. }
  28968. },
  28969. leftHandFront: {
  28970. height: math.unit(0.938, "feet"),
  28971. name: "Left Hand (Front)",
  28972. image: {
  28973. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28974. }
  28975. },
  28976. rightHandBack: {
  28977. height: math.unit(0.95, "feet"),
  28978. name: "Right Hand (Back)",
  28979. image: {
  28980. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28981. }
  28982. },
  28983. rightHandFront: {
  28984. height: math.unit(0.95, "feet"),
  28985. name: "Right Hand (Front)",
  28986. image: {
  28987. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28988. }
  28989. },
  28990. },
  28991. [
  28992. {
  28993. name: "Normal",
  28994. height: math.unit(6 + 4 / 12, "feet"),
  28995. default: true
  28996. },
  28997. ]
  28998. ))
  28999. characterMakers.push(() => makeCharacter(
  29000. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  29001. {
  29002. front: {
  29003. height: math.unit(6, "feet"),
  29004. weight: math.unit(320, "lb"),
  29005. name: "Front",
  29006. image: {
  29007. source: "./media/characters/balina-mejeri/front.svg",
  29008. extra: 517 / 488,
  29009. bottom: 44.2 / 561
  29010. }
  29011. },
  29012. },
  29013. [
  29014. {
  29015. name: "Normal",
  29016. height: math.unit(6 + 4 / 12, "feet")
  29017. },
  29018. {
  29019. name: "Business",
  29020. height: math.unit(155, "feet"),
  29021. default: true
  29022. },
  29023. ]
  29024. ))
  29025. characterMakers.push(() => makeCharacter(
  29026. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  29027. {
  29028. kneeling: {
  29029. height: math.unit(6 + 4 / 12, "feet"),
  29030. weight: math.unit(300 * 20, "lb"),
  29031. name: "Kneeling",
  29032. image: {
  29033. source: "./media/characters/balbarian/kneeling.svg",
  29034. extra: 922 / 862,
  29035. bottom: 42.4 / 965
  29036. }
  29037. },
  29038. },
  29039. [
  29040. {
  29041. name: "Normal",
  29042. height: math.unit(6 + 4 / 12, "feet")
  29043. },
  29044. {
  29045. name: "Treasured",
  29046. height: math.unit(18 + 9 / 12, "feet"),
  29047. default: true
  29048. },
  29049. {
  29050. name: "Macro",
  29051. height: math.unit(900, "feet")
  29052. },
  29053. ]
  29054. ))
  29055. characterMakers.push(() => makeCharacter(
  29056. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  29057. {
  29058. front: {
  29059. height: math.unit(6 + 4 / 12, "feet"),
  29060. weight: math.unit(325, "lb"),
  29061. name: "Front",
  29062. image: {
  29063. source: "./media/characters/balina-amarini/front.svg",
  29064. extra: 415 / 403,
  29065. bottom: 19 / 433.4
  29066. }
  29067. },
  29068. back: {
  29069. height: math.unit(6 + 4 / 12, "feet"),
  29070. weight: math.unit(325, "lb"),
  29071. name: "Back",
  29072. image: {
  29073. source: "./media/characters/balina-amarini/back.svg",
  29074. extra: 415 / 403,
  29075. bottom: 13.5 / 432
  29076. }
  29077. },
  29078. overdrive: {
  29079. height: math.unit(6 + 4 / 12, "feet"),
  29080. weight: math.unit(400, "lb"),
  29081. name: "Overdrive",
  29082. image: {
  29083. source: "./media/characters/balina-amarini/overdrive.svg",
  29084. extra: 269 / 259,
  29085. bottom: 12 / 282
  29086. }
  29087. },
  29088. },
  29089. [
  29090. {
  29091. name: "Boom",
  29092. height: math.unit(9 + 10 / 12, "feet"),
  29093. default: true
  29094. },
  29095. {
  29096. name: "Macro",
  29097. height: math.unit(280, "feet")
  29098. },
  29099. ]
  29100. ))
  29101. characterMakers.push(() => makeCharacter(
  29102. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  29103. {
  29104. goddess: {
  29105. height: math.unit(600, "feet"),
  29106. weight: math.unit(2000000, "tons"),
  29107. name: "Goddess",
  29108. image: {
  29109. source: "./media/characters/lady-kubwa/goddess.svg",
  29110. extra: 1240.5 / 1223,
  29111. bottom: 22 / 1263
  29112. }
  29113. },
  29114. goddesser: {
  29115. height: math.unit(900, "feet"),
  29116. weight: math.unit(20000000, "lb"),
  29117. name: "Goddess-er",
  29118. image: {
  29119. source: "./media/characters/lady-kubwa/goddess-er.svg",
  29120. extra: 899 / 888,
  29121. bottom: 12.6 / 912
  29122. }
  29123. },
  29124. },
  29125. [
  29126. {
  29127. name: "Macro",
  29128. height: math.unit(600, "feet"),
  29129. default: true
  29130. },
  29131. {
  29132. name: "Megamacro",
  29133. height: math.unit(250, "miles")
  29134. },
  29135. ]
  29136. ))
  29137. characterMakers.push(() => makeCharacter(
  29138. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  29139. {
  29140. front: {
  29141. height: math.unit(7 + 7 / 12, "feet"),
  29142. weight: math.unit(250, "lb"),
  29143. name: "Front",
  29144. image: {
  29145. source: "./media/characters/tala-grovehorn/front.svg",
  29146. extra: 2636 / 2525,
  29147. bottom: 147 / 2781
  29148. }
  29149. },
  29150. back: {
  29151. height: math.unit(7 + 7 / 12, "feet"),
  29152. weight: math.unit(250, "lb"),
  29153. name: "Back",
  29154. image: {
  29155. source: "./media/characters/tala-grovehorn/back.svg",
  29156. extra: 2635 / 2539,
  29157. bottom: 100 / 2732.8
  29158. }
  29159. },
  29160. mouth: {
  29161. height: math.unit(1.15, "feet"),
  29162. name: "Mouth",
  29163. image: {
  29164. source: "./media/characters/tala-grovehorn/mouth.svg"
  29165. }
  29166. },
  29167. dick: {
  29168. height: math.unit(2.36, "feet"),
  29169. name: "Dick",
  29170. image: {
  29171. source: "./media/characters/tala-grovehorn/dick.svg"
  29172. }
  29173. },
  29174. slit: {
  29175. height: math.unit(0.61, "feet"),
  29176. name: "Slit",
  29177. image: {
  29178. source: "./media/characters/tala-grovehorn/slit.svg"
  29179. }
  29180. },
  29181. },
  29182. [
  29183. ]
  29184. ))
  29185. characterMakers.push(() => makeCharacter(
  29186. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  29187. {
  29188. front: {
  29189. height: math.unit(7 + 7 / 12, "feet"),
  29190. weight: math.unit(225, "lb"),
  29191. name: "Front",
  29192. image: {
  29193. source: "./media/characters/epona/front.svg",
  29194. extra: 2445 / 2290,
  29195. bottom: 251 / 2696
  29196. }
  29197. },
  29198. back: {
  29199. height: math.unit(7 + 7 / 12, "feet"),
  29200. weight: math.unit(225, "lb"),
  29201. name: "Back",
  29202. image: {
  29203. source: "./media/characters/epona/back.svg",
  29204. extra: 2546 / 2408,
  29205. bottom: 44 / 2589
  29206. }
  29207. },
  29208. genitals: {
  29209. height: math.unit(1.5, "feet"),
  29210. name: "Genitals",
  29211. image: {
  29212. source: "./media/characters/epona/genitals.svg"
  29213. }
  29214. },
  29215. },
  29216. [
  29217. {
  29218. name: "Normal",
  29219. height: math.unit(7 + 7 / 12, "feet"),
  29220. default: true
  29221. },
  29222. ]
  29223. ))
  29224. characterMakers.push(() => makeCharacter(
  29225. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29226. {
  29227. front: {
  29228. height: math.unit(7, "feet"),
  29229. weight: math.unit(518, "lb"),
  29230. name: "Front",
  29231. image: {
  29232. source: "./media/characters/avia-bloodbourn/front.svg",
  29233. extra: 1466 / 1350,
  29234. bottom: 65 / 1527
  29235. }
  29236. },
  29237. },
  29238. [
  29239. ]
  29240. ))
  29241. characterMakers.push(() => makeCharacter(
  29242. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29243. {
  29244. front: {
  29245. height: math.unit(9.35, "feet"),
  29246. weight: math.unit(600, "lb"),
  29247. name: "Front",
  29248. image: {
  29249. source: "./media/characters/amera/front.svg",
  29250. extra: 891 / 818,
  29251. bottom: 30 / 922.7
  29252. }
  29253. },
  29254. back: {
  29255. height: math.unit(9.35, "feet"),
  29256. weight: math.unit(600, "lb"),
  29257. name: "Back",
  29258. image: {
  29259. source: "./media/characters/amera/back.svg",
  29260. extra: 876 / 824,
  29261. bottom: 6.8 / 884
  29262. }
  29263. },
  29264. dick: {
  29265. height: math.unit(2.14, "feet"),
  29266. name: "Dick",
  29267. image: {
  29268. source: "./media/characters/amera/dick.svg"
  29269. }
  29270. },
  29271. },
  29272. [
  29273. {
  29274. name: "Normal",
  29275. height: math.unit(9.35, "feet"),
  29276. default: true
  29277. },
  29278. ]
  29279. ))
  29280. characterMakers.push(() => makeCharacter(
  29281. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29282. {
  29283. kneeling: {
  29284. height: math.unit(3 + 4 / 12, "feet"),
  29285. weight: math.unit(90, "lb"),
  29286. name: "Kneeling",
  29287. image: {
  29288. source: "./media/characters/rosewen/kneeling.svg",
  29289. extra: 1835 / 1571,
  29290. bottom: 27.7 / 1862
  29291. }
  29292. },
  29293. },
  29294. [
  29295. {
  29296. name: "Normal",
  29297. height: math.unit(3 + 4 / 12, "feet"),
  29298. default: true
  29299. },
  29300. ]
  29301. ))
  29302. characterMakers.push(() => makeCharacter(
  29303. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29304. {
  29305. front: {
  29306. height: math.unit(5 + 10 / 12, "feet"),
  29307. weight: math.unit(200, "lb"),
  29308. name: "Front",
  29309. image: {
  29310. source: "./media/characters/sabah/front.svg",
  29311. extra: 849 / 763,
  29312. bottom: 33.9 / 881
  29313. }
  29314. },
  29315. },
  29316. [
  29317. {
  29318. name: "Normal",
  29319. height: math.unit(5 + 10 / 12, "feet"),
  29320. default: true
  29321. },
  29322. ]
  29323. ))
  29324. characterMakers.push(() => makeCharacter(
  29325. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29326. {
  29327. front: {
  29328. height: math.unit(3 + 5 / 12, "feet"),
  29329. weight: math.unit(40, "kg"),
  29330. name: "Front",
  29331. image: {
  29332. source: "./media/characters/purple-flame/front.svg",
  29333. extra: 1577 / 1412,
  29334. bottom: 97 / 1694
  29335. }
  29336. },
  29337. frontDressed: {
  29338. height: math.unit(3 + 5 / 12, "feet"),
  29339. weight: math.unit(40, "kg"),
  29340. name: "Front (Dressed)",
  29341. image: {
  29342. source: "./media/characters/purple-flame/front-dressed.svg",
  29343. extra: 1577 / 1412,
  29344. bottom: 97 / 1694
  29345. }
  29346. },
  29347. headphones: {
  29348. height: math.unit(0.85, "feet"),
  29349. name: "Headphones",
  29350. image: {
  29351. source: "./media/characters/purple-flame/headphones.svg"
  29352. }
  29353. },
  29354. },
  29355. [
  29356. {
  29357. name: "Really Small",
  29358. height: math.unit(5, "cm")
  29359. },
  29360. {
  29361. name: "Micro",
  29362. height: math.unit(1 + 5 / 12, "feet")
  29363. },
  29364. {
  29365. name: "Normal",
  29366. height: math.unit(3 + 5 / 12, "feet"),
  29367. default: true
  29368. },
  29369. {
  29370. name: "Minimacro",
  29371. height: math.unit(125, "feet")
  29372. },
  29373. {
  29374. name: "Macro",
  29375. height: math.unit(0.5, "miles")
  29376. },
  29377. {
  29378. name: "Megamacro",
  29379. height: math.unit(50, "miles")
  29380. },
  29381. {
  29382. name: "Gigantic",
  29383. height: math.unit(750, "miles")
  29384. },
  29385. {
  29386. name: "Planetary",
  29387. height: math.unit(15000, "miles")
  29388. },
  29389. ]
  29390. ))
  29391. characterMakers.push(() => makeCharacter(
  29392. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29393. {
  29394. front: {
  29395. height: math.unit(14, "feet"),
  29396. weight: math.unit(959, "lb"),
  29397. name: "Front",
  29398. image: {
  29399. source: "./media/characters/arsenal/front.svg",
  29400. extra: 2357 / 2157,
  29401. bottom: 93 / 2458
  29402. }
  29403. },
  29404. },
  29405. [
  29406. {
  29407. name: "Normal",
  29408. height: math.unit(14, "feet"),
  29409. default: true
  29410. },
  29411. ]
  29412. ))
  29413. characterMakers.push(() => makeCharacter(
  29414. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29415. {
  29416. front: {
  29417. height: math.unit(6, "feet"),
  29418. weight: math.unit(150, "lb"),
  29419. name: "Front",
  29420. image: {
  29421. source: "./media/characters/adira/front.svg",
  29422. extra: 1078 / 1029,
  29423. bottom: 87 / 1166
  29424. }
  29425. },
  29426. },
  29427. [
  29428. {
  29429. name: "Micro",
  29430. height: math.unit(4, "inches"),
  29431. default: true
  29432. },
  29433. {
  29434. name: "Macro",
  29435. height: math.unit(50, "feet")
  29436. },
  29437. ]
  29438. ))
  29439. characterMakers.push(() => makeCharacter(
  29440. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29441. {
  29442. front: {
  29443. height: math.unit(16, "feet"),
  29444. weight: math.unit(1000, "lb"),
  29445. name: "Front",
  29446. image: {
  29447. source: "./media/characters/grim/front.svg",
  29448. extra: 622 / 614,
  29449. bottom: 18.1 / 642
  29450. }
  29451. },
  29452. back: {
  29453. height: math.unit(16, "feet"),
  29454. weight: math.unit(1000, "lb"),
  29455. name: "Back",
  29456. image: {
  29457. source: "./media/characters/grim/back.svg",
  29458. extra: 610.6 / 602,
  29459. bottom: 40.8 / 652
  29460. }
  29461. },
  29462. hunched: {
  29463. height: math.unit(9.75, "feet"),
  29464. weight: math.unit(1000, "lb"),
  29465. name: "Hunched",
  29466. image: {
  29467. source: "./media/characters/grim/hunched.svg",
  29468. extra: 304 / 297,
  29469. bottom: 35.4 / 394
  29470. }
  29471. },
  29472. },
  29473. [
  29474. {
  29475. name: "Normal",
  29476. height: math.unit(16, "feet"),
  29477. default: true
  29478. },
  29479. ]
  29480. ))
  29481. characterMakers.push(() => makeCharacter(
  29482. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29483. {
  29484. front: {
  29485. height: math.unit(2.3, "meters"),
  29486. weight: math.unit(300, "lb"),
  29487. name: "Front",
  29488. image: {
  29489. source: "./media/characters/sinja/front-sfw.svg",
  29490. extra: 1393 / 1294,
  29491. bottom: 70 / 1463
  29492. }
  29493. },
  29494. frontNsfw: {
  29495. height: math.unit(2.3, "meters"),
  29496. weight: math.unit(300, "lb"),
  29497. name: "Front (NSFW)",
  29498. image: {
  29499. source: "./media/characters/sinja/front-nsfw.svg",
  29500. extra: 1393 / 1294,
  29501. bottom: 70 / 1463
  29502. }
  29503. },
  29504. back: {
  29505. height: math.unit(2.3, "meters"),
  29506. weight: math.unit(300, "lb"),
  29507. name: "Back",
  29508. image: {
  29509. source: "./media/characters/sinja/back.svg",
  29510. extra: 1393 / 1294,
  29511. bottom: 70 / 1463
  29512. }
  29513. },
  29514. head: {
  29515. height: math.unit(1.771, "feet"),
  29516. name: "Head",
  29517. image: {
  29518. source: "./media/characters/sinja/head.svg"
  29519. }
  29520. },
  29521. slit: {
  29522. height: math.unit(0.8, "feet"),
  29523. name: "Slit",
  29524. image: {
  29525. source: "./media/characters/sinja/slit.svg"
  29526. }
  29527. },
  29528. },
  29529. [
  29530. {
  29531. name: "Normal",
  29532. height: math.unit(2.3, "meters")
  29533. },
  29534. {
  29535. name: "Macro",
  29536. height: math.unit(91, "meters"),
  29537. default: true
  29538. },
  29539. {
  29540. name: "Megamacro",
  29541. height: math.unit(91440, "meters")
  29542. },
  29543. {
  29544. name: "Gigamacro",
  29545. height: math.unit(60960000, "meters")
  29546. },
  29547. {
  29548. name: "Teramacro",
  29549. height: math.unit(9144000000, "meters")
  29550. },
  29551. ]
  29552. ))
  29553. characterMakers.push(() => makeCharacter(
  29554. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29555. {
  29556. front: {
  29557. height: math.unit(1.7, "meters"),
  29558. weight: math.unit(130, "lb"),
  29559. name: "Front",
  29560. image: {
  29561. source: "./media/characters/kyu/front.svg",
  29562. extra: 415 / 395,
  29563. bottom: 5 / 420
  29564. }
  29565. },
  29566. head: {
  29567. height: math.unit(1.75, "feet"),
  29568. name: "Head",
  29569. image: {
  29570. source: "./media/characters/kyu/head.svg"
  29571. }
  29572. },
  29573. foot: {
  29574. height: math.unit(0.81, "feet"),
  29575. name: "Foot",
  29576. image: {
  29577. source: "./media/characters/kyu/foot.svg"
  29578. }
  29579. },
  29580. },
  29581. [
  29582. {
  29583. name: "Normal",
  29584. height: math.unit(1.7, "meters")
  29585. },
  29586. {
  29587. name: "Macro",
  29588. height: math.unit(131, "feet"),
  29589. default: true
  29590. },
  29591. {
  29592. name: "Megamacro",
  29593. height: math.unit(91440, "meters")
  29594. },
  29595. {
  29596. name: "Gigamacro",
  29597. height: math.unit(60960000, "meters")
  29598. },
  29599. {
  29600. name: "Teramacro",
  29601. height: math.unit(9144000000, "meters")
  29602. },
  29603. ]
  29604. ))
  29605. characterMakers.push(() => makeCharacter(
  29606. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29607. {
  29608. front: {
  29609. height: math.unit(7 + 1 / 12, "feet"),
  29610. weight: math.unit(250, "lb"),
  29611. name: "Front",
  29612. image: {
  29613. source: "./media/characters/joey/front.svg",
  29614. extra: 1791 / 1537,
  29615. bottom: 28 / 1816
  29616. }
  29617. },
  29618. },
  29619. [
  29620. {
  29621. name: "Micro",
  29622. height: math.unit(3, "inches")
  29623. },
  29624. {
  29625. name: "Normal",
  29626. height: math.unit(7 + 1 / 12, "feet"),
  29627. default: true
  29628. },
  29629. ]
  29630. ))
  29631. characterMakers.push(() => makeCharacter(
  29632. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29633. {
  29634. front: {
  29635. height: math.unit(165, "cm"),
  29636. weight: math.unit(140, "lb"),
  29637. name: "Front",
  29638. image: {
  29639. source: "./media/characters/sam-evans/front.svg",
  29640. extra: 3417 / 3230,
  29641. bottom: 41.3 / 3417
  29642. }
  29643. },
  29644. frontSixTails: {
  29645. height: math.unit(165, "cm"),
  29646. weight: math.unit(140, "lb"),
  29647. name: "Front-six-tails",
  29648. image: {
  29649. source: "./media/characters/sam-evans/front-six-tails.svg",
  29650. extra: 3417 / 3230,
  29651. bottom: 41.3 / 3417
  29652. }
  29653. },
  29654. back: {
  29655. height: math.unit(165, "cm"),
  29656. weight: math.unit(140, "lb"),
  29657. name: "Back",
  29658. image: {
  29659. source: "./media/characters/sam-evans/back.svg",
  29660. extra: 3227 / 3032,
  29661. bottom: 6.8 / 3234
  29662. }
  29663. },
  29664. face: {
  29665. height: math.unit(0.68, "feet"),
  29666. name: "Face",
  29667. image: {
  29668. source: "./media/characters/sam-evans/face.svg"
  29669. }
  29670. },
  29671. },
  29672. [
  29673. {
  29674. name: "Normal",
  29675. height: math.unit(165, "cm"),
  29676. default: true
  29677. },
  29678. {
  29679. name: "Macro",
  29680. height: math.unit(100, "meters")
  29681. },
  29682. {
  29683. name: "Macro+",
  29684. height: math.unit(800, "meters")
  29685. },
  29686. {
  29687. name: "Macro++",
  29688. height: math.unit(3, "km")
  29689. },
  29690. {
  29691. name: "Macro+++",
  29692. height: math.unit(30, "km")
  29693. },
  29694. ]
  29695. ))
  29696. characterMakers.push(() => makeCharacter(
  29697. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29698. {
  29699. front: {
  29700. height: math.unit(10, "feet"),
  29701. weight: math.unit(750, "lb"),
  29702. name: "Front",
  29703. image: {
  29704. source: "./media/characters/juliet-a/front.svg",
  29705. extra: 1766 / 1720,
  29706. bottom: 43 / 1809
  29707. }
  29708. },
  29709. back: {
  29710. height: math.unit(10, "feet"),
  29711. weight: math.unit(750, "lb"),
  29712. name: "Back",
  29713. image: {
  29714. source: "./media/characters/juliet-a/back.svg",
  29715. extra: 1781 / 1734,
  29716. bottom: 35 / 1810,
  29717. }
  29718. },
  29719. },
  29720. [
  29721. {
  29722. name: "Normal",
  29723. height: math.unit(10, "feet"),
  29724. default: true
  29725. },
  29726. {
  29727. name: "Dragon Form",
  29728. height: math.unit(250, "feet")
  29729. },
  29730. {
  29731. name: "Macro",
  29732. height: math.unit(1000, "feet")
  29733. },
  29734. {
  29735. name: "Megamacro",
  29736. height: math.unit(10000, "feet")
  29737. }
  29738. ]
  29739. ))
  29740. characterMakers.push(() => makeCharacter(
  29741. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29742. {
  29743. regular: {
  29744. height: math.unit(7 + 3 / 12, "feet"),
  29745. weight: math.unit(260, "lb"),
  29746. name: "Regular",
  29747. image: {
  29748. source: "./media/characters/wild/regular.svg",
  29749. extra: 97.45 / 92,
  29750. bottom: 6.8 / 104.3
  29751. }
  29752. },
  29753. biggums: {
  29754. height: math.unit(8 + 6 / 12, "feet"),
  29755. weight: math.unit(425, "lb"),
  29756. name: "Biggums",
  29757. image: {
  29758. source: "./media/characters/wild/biggums.svg",
  29759. extra: 97.45 / 92,
  29760. bottom: 7.5 / 132.34
  29761. }
  29762. },
  29763. mawRegular: {
  29764. height: math.unit(1.24, "feet"),
  29765. name: "Maw (Regular)",
  29766. image: {
  29767. source: "./media/characters/wild/maw.svg"
  29768. }
  29769. },
  29770. mawBiggums: {
  29771. height: math.unit(1.47, "feet"),
  29772. name: "Maw (Biggums)",
  29773. image: {
  29774. source: "./media/characters/wild/maw.svg"
  29775. }
  29776. },
  29777. },
  29778. [
  29779. {
  29780. name: "Normal",
  29781. height: math.unit(7 + 3 / 12, "feet"),
  29782. default: true
  29783. },
  29784. ]
  29785. ))
  29786. characterMakers.push(() => makeCharacter(
  29787. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29788. {
  29789. front: {
  29790. height: math.unit(2.5, "meters"),
  29791. weight: math.unit(200, "kg"),
  29792. name: "Front",
  29793. image: {
  29794. source: "./media/characters/vidar/front.svg",
  29795. extra: 2994 / 2795,
  29796. bottom: 56 / 3061
  29797. }
  29798. },
  29799. back: {
  29800. height: math.unit(2.5, "meters"),
  29801. weight: math.unit(200, "kg"),
  29802. name: "Back",
  29803. image: {
  29804. source: "./media/characters/vidar/back.svg",
  29805. extra: 3131 / 2928,
  29806. bottom: 13.5 / 3141.5
  29807. }
  29808. },
  29809. feral: {
  29810. height: math.unit(2.5, "meters"),
  29811. weight: math.unit(2000, "kg"),
  29812. name: "Feral",
  29813. image: {
  29814. source: "./media/characters/vidar/feral.svg",
  29815. extra: 2790 / 1765,
  29816. bottom: 6 / 2796
  29817. }
  29818. },
  29819. },
  29820. [
  29821. {
  29822. name: "Normal",
  29823. height: math.unit(2.5, "meters"),
  29824. default: true
  29825. },
  29826. {
  29827. name: "Macro",
  29828. height: math.unit(100, "meters")
  29829. },
  29830. ]
  29831. ))
  29832. characterMakers.push(() => makeCharacter(
  29833. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29834. {
  29835. front: {
  29836. height: math.unit(5 + 9 / 12, "feet"),
  29837. weight: math.unit(120, "lb"),
  29838. name: "Front",
  29839. image: {
  29840. source: "./media/characters/ash/front.svg",
  29841. extra: 2189 / 1961,
  29842. bottom: 5.2 / 2194
  29843. }
  29844. },
  29845. },
  29846. [
  29847. {
  29848. name: "Normal",
  29849. height: math.unit(5 + 9 / 12, "feet"),
  29850. default: true
  29851. },
  29852. ]
  29853. ))
  29854. characterMakers.push(() => makeCharacter(
  29855. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29856. {
  29857. front: {
  29858. height: math.unit(9, "feet"),
  29859. weight: math.unit(10000, "lb"),
  29860. name: "Front",
  29861. image: {
  29862. source: "./media/characters/gygabite/front.svg",
  29863. bottom: 31.7 / 537.8,
  29864. extra: 505 / 370
  29865. }
  29866. },
  29867. },
  29868. [
  29869. {
  29870. name: "Normal",
  29871. height: math.unit(9, "feet"),
  29872. default: true
  29873. },
  29874. ]
  29875. ))
  29876. characterMakers.push(() => makeCharacter(
  29877. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29878. {
  29879. front: {
  29880. height: math.unit(12, "feet"),
  29881. weight: math.unit(4000, "lb"),
  29882. name: "Front",
  29883. image: {
  29884. source: "./media/characters/p0tat0/front.svg",
  29885. extra: 1065 / 921,
  29886. bottom: 55.7 / 1121.25
  29887. }
  29888. },
  29889. },
  29890. [
  29891. {
  29892. name: "Normal",
  29893. height: math.unit(12, "feet"),
  29894. default: true
  29895. },
  29896. ]
  29897. ))
  29898. characterMakers.push(() => makeCharacter(
  29899. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29900. {
  29901. side: {
  29902. height: math.unit(6.5, "feet"),
  29903. weight: math.unit(800, "lb"),
  29904. name: "Side",
  29905. image: {
  29906. source: "./media/characters/dusk/side.svg",
  29907. extra: 615 / 373,
  29908. bottom: 53 / 664
  29909. }
  29910. },
  29911. sitting: {
  29912. height: math.unit(7, "feet"),
  29913. weight: math.unit(800, "lb"),
  29914. name: "Sitting",
  29915. image: {
  29916. source: "./media/characters/dusk/sitting.svg",
  29917. extra: 753 / 425,
  29918. bottom: 33 / 774
  29919. }
  29920. },
  29921. head: {
  29922. height: math.unit(6.1, "feet"),
  29923. name: "Head",
  29924. image: {
  29925. source: "./media/characters/dusk/head.svg"
  29926. }
  29927. },
  29928. },
  29929. [
  29930. {
  29931. name: "Normal",
  29932. height: math.unit(7, "feet"),
  29933. default: true
  29934. },
  29935. ]
  29936. ))
  29937. characterMakers.push(() => makeCharacter(
  29938. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29939. {
  29940. front: {
  29941. height: math.unit(15, "feet"),
  29942. weight: math.unit(7000, "lb"),
  29943. name: "Front",
  29944. image: {
  29945. source: "./media/characters/jay-direwolf/front.svg",
  29946. extra: 1810 / 1732,
  29947. bottom: 66 / 1892
  29948. }
  29949. },
  29950. },
  29951. [
  29952. {
  29953. name: "Normal",
  29954. height: math.unit(15, "feet"),
  29955. default: true
  29956. },
  29957. ]
  29958. ))
  29959. characterMakers.push(() => makeCharacter(
  29960. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29961. {
  29962. front: {
  29963. height: math.unit(4 + 9 / 12, "feet"),
  29964. weight: math.unit(130, "lb"),
  29965. name: "Front",
  29966. image: {
  29967. source: "./media/characters/anchovie/front.svg",
  29968. extra: 382 / 350,
  29969. bottom: 25 / 409
  29970. }
  29971. },
  29972. back: {
  29973. height: math.unit(4 + 9 / 12, "feet"),
  29974. weight: math.unit(130, "lb"),
  29975. name: "Back",
  29976. image: {
  29977. source: "./media/characters/anchovie/back.svg",
  29978. extra: 385 / 352,
  29979. bottom: 16.6 / 402
  29980. }
  29981. },
  29982. frontDressed: {
  29983. height: math.unit(4 + 9 / 12, "feet"),
  29984. weight: math.unit(130, "lb"),
  29985. name: "Front (Dressed)",
  29986. image: {
  29987. source: "./media/characters/anchovie/front-dressed.svg",
  29988. extra: 382 / 350,
  29989. bottom: 25 / 409
  29990. }
  29991. },
  29992. backDressed: {
  29993. height: math.unit(4 + 9 / 12, "feet"),
  29994. weight: math.unit(130, "lb"),
  29995. name: "Back (Dressed)",
  29996. image: {
  29997. source: "./media/characters/anchovie/back-dressed.svg",
  29998. extra: 385 / 352,
  29999. bottom: 16.6 / 402
  30000. }
  30001. },
  30002. },
  30003. [
  30004. {
  30005. name: "Micro",
  30006. height: math.unit(6.4, "inches")
  30007. },
  30008. {
  30009. name: "Normal",
  30010. height: math.unit(4 + 9 / 12, "feet"),
  30011. default: true
  30012. },
  30013. ]
  30014. ))
  30015. characterMakers.push(() => makeCharacter(
  30016. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  30017. {
  30018. front: {
  30019. height: math.unit(2, "meters"),
  30020. weight: math.unit(180, "lb"),
  30021. name: "Front",
  30022. image: {
  30023. source: "./media/characters/acidrenamon/front.svg",
  30024. extra: 987 / 890,
  30025. bottom: 22.8 / 1009
  30026. }
  30027. },
  30028. back: {
  30029. height: math.unit(2, "meters"),
  30030. weight: math.unit(180, "lb"),
  30031. name: "Back",
  30032. image: {
  30033. source: "./media/characters/acidrenamon/back.svg",
  30034. extra: 983 / 891,
  30035. bottom: 8.4 / 992
  30036. }
  30037. },
  30038. head: {
  30039. height: math.unit(1.92, "feet"),
  30040. name: "Head",
  30041. image: {
  30042. source: "./media/characters/acidrenamon/head.svg"
  30043. }
  30044. },
  30045. rump: {
  30046. height: math.unit(1.72, "feet"),
  30047. name: "Rump",
  30048. image: {
  30049. source: "./media/characters/acidrenamon/rump.svg"
  30050. }
  30051. },
  30052. tail: {
  30053. height: math.unit(4.2, "feet"),
  30054. name: "Tail",
  30055. image: {
  30056. source: "./media/characters/acidrenamon/tail.svg"
  30057. }
  30058. },
  30059. },
  30060. [
  30061. {
  30062. name: "Normal",
  30063. height: math.unit(2, "meters"),
  30064. default: true
  30065. },
  30066. {
  30067. name: "Minimacro",
  30068. height: math.unit(7, "meters")
  30069. },
  30070. {
  30071. name: "Macro",
  30072. height: math.unit(200, "meters")
  30073. },
  30074. {
  30075. name: "Gigamacro",
  30076. height: math.unit(0.2, "earths")
  30077. },
  30078. ]
  30079. ))
  30080. characterMakers.push(() => makeCharacter(
  30081. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  30082. {
  30083. front: {
  30084. height: math.unit(152, "feet"),
  30085. name: "Front",
  30086. image: {
  30087. source: "./media/characters/kenzie-lee/front.svg",
  30088. extra: 1869/1774,
  30089. bottom: 128/1997
  30090. }
  30091. },
  30092. side: {
  30093. height: math.unit(86, "feet"),
  30094. name: "Side",
  30095. image: {
  30096. source: "./media/characters/kenzie-lee/side.svg",
  30097. extra: 930/815,
  30098. bottom: 177/1107
  30099. }
  30100. },
  30101. paw: {
  30102. height: math.unit(15, "feet"),
  30103. name: "Paw",
  30104. image: {
  30105. source: "./media/characters/kenzie-lee/paw.svg"
  30106. }
  30107. },
  30108. },
  30109. [
  30110. {
  30111. name: "Kenzie Flea",
  30112. height: math.unit(2, "mm"),
  30113. default: true
  30114. },
  30115. {
  30116. name: "Micro",
  30117. height: math.unit(2, "inches")
  30118. },
  30119. {
  30120. name: "Normal",
  30121. height: math.unit(152, "feet")
  30122. },
  30123. {
  30124. name: "Megamacro",
  30125. height: math.unit(7, "miles")
  30126. },
  30127. {
  30128. name: "Gigamacro",
  30129. height: math.unit(8000, "miles")
  30130. },
  30131. ]
  30132. ))
  30133. characterMakers.push(() => makeCharacter(
  30134. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  30135. {
  30136. front: {
  30137. height: math.unit(6, "feet"),
  30138. name: "Front",
  30139. image: {
  30140. source: "./media/characters/withers/front.svg",
  30141. extra: 1935/1760,
  30142. bottom: 72/2007
  30143. }
  30144. },
  30145. back: {
  30146. height: math.unit(6, "feet"),
  30147. name: "Back",
  30148. image: {
  30149. source: "./media/characters/withers/back.svg",
  30150. extra: 1944/1792,
  30151. bottom: 12/1956
  30152. }
  30153. },
  30154. dressed: {
  30155. height: math.unit(6, "feet"),
  30156. name: "Dressed",
  30157. image: {
  30158. source: "./media/characters/withers/dressed.svg",
  30159. extra: 1937/1765,
  30160. bottom: 73/2010
  30161. }
  30162. },
  30163. phase1: {
  30164. height: math.unit(1.1, "feet"),
  30165. name: "Phase 1",
  30166. image: {
  30167. source: "./media/characters/withers/phase-1.svg",
  30168. extra: 1885/1232,
  30169. bottom: 0/1885
  30170. }
  30171. },
  30172. phase2: {
  30173. height: math.unit(1.05, "feet"),
  30174. name: "Phase 2",
  30175. image: {
  30176. source: "./media/characters/withers/phase-2.svg",
  30177. extra: 1792/1090,
  30178. bottom: 0/1792
  30179. }
  30180. },
  30181. partyWipe: {
  30182. height: math.unit(1.1, "feet"),
  30183. name: "Party Wipe",
  30184. image: {
  30185. source: "./media/characters/withers/party-wipe.svg",
  30186. extra: 1864/1207,
  30187. bottom: 0/1864
  30188. }
  30189. },
  30190. },
  30191. [
  30192. {
  30193. name: "Macro",
  30194. height: math.unit(167, "feet"),
  30195. default: true
  30196. },
  30197. {
  30198. name: "Megamacro",
  30199. height: math.unit(15, "miles")
  30200. }
  30201. ]
  30202. ))
  30203. characterMakers.push(() => makeCharacter(
  30204. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  30205. {
  30206. front: {
  30207. height: math.unit(6 + 7 / 12, "feet"),
  30208. weight: math.unit(250, "lb"),
  30209. name: "Front",
  30210. image: {
  30211. source: "./media/characters/nemoskii/front.svg",
  30212. extra: 2270 / 1734,
  30213. bottom: 86 / 2354
  30214. }
  30215. },
  30216. back: {
  30217. height: math.unit(6 + 7 / 12, "feet"),
  30218. weight: math.unit(250, "lb"),
  30219. name: "Back",
  30220. image: {
  30221. source: "./media/characters/nemoskii/back.svg",
  30222. extra: 1845 / 1788,
  30223. bottom: 10.5 / 1852
  30224. }
  30225. },
  30226. head: {
  30227. height: math.unit(1.31, "feet"),
  30228. name: "Head",
  30229. image: {
  30230. source: "./media/characters/nemoskii/head.svg"
  30231. }
  30232. },
  30233. },
  30234. [
  30235. {
  30236. name: "Micro",
  30237. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30238. },
  30239. {
  30240. name: "Normal",
  30241. height: math.unit(6 + 7 / 12, "feet"),
  30242. default: true
  30243. },
  30244. {
  30245. name: "Macro",
  30246. height: math.unit((6 + 7 / 12) * 150, "feet")
  30247. },
  30248. {
  30249. name: "Macro+",
  30250. height: math.unit((6 + 7 / 12) * 500, "feet")
  30251. },
  30252. {
  30253. name: "Megamacro",
  30254. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30255. },
  30256. ]
  30257. ))
  30258. characterMakers.push(() => makeCharacter(
  30259. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30260. {
  30261. front: {
  30262. height: math.unit(1, "mile"),
  30263. weight: math.unit(265261.9, "lb"),
  30264. name: "Front",
  30265. image: {
  30266. source: "./media/characters/shui/front.svg",
  30267. extra: 1633 / 1564,
  30268. bottom: 91.5 / 1726
  30269. }
  30270. },
  30271. },
  30272. [
  30273. {
  30274. name: "Macro",
  30275. height: math.unit(1, "mile"),
  30276. default: true
  30277. },
  30278. ]
  30279. ))
  30280. characterMakers.push(() => makeCharacter(
  30281. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30282. {
  30283. front: {
  30284. height: math.unit(12 + 6 / 12, "feet"),
  30285. weight: math.unit(1342, "lb"),
  30286. name: "Front",
  30287. image: {
  30288. source: "./media/characters/arokh-takakura/front.svg",
  30289. extra: 1089 / 1043,
  30290. bottom: 77.4 / 1176.7
  30291. }
  30292. },
  30293. back: {
  30294. height: math.unit(12 + 6 / 12, "feet"),
  30295. weight: math.unit(1342, "lb"),
  30296. name: "Back",
  30297. image: {
  30298. source: "./media/characters/arokh-takakura/back.svg",
  30299. extra: 1046 / 1019,
  30300. bottom: 102 / 1150
  30301. }
  30302. },
  30303. },
  30304. [
  30305. {
  30306. name: "Big",
  30307. height: math.unit(12 + 6 / 12, "feet"),
  30308. default: true
  30309. },
  30310. ]
  30311. ))
  30312. characterMakers.push(() => makeCharacter(
  30313. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30314. {
  30315. front: {
  30316. height: math.unit(5 + 6 / 12, "feet"),
  30317. weight: math.unit(150, "lb"),
  30318. name: "Front",
  30319. image: {
  30320. source: "./media/characters/theo/front.svg",
  30321. extra: 1184 / 1131,
  30322. bottom: 7.4 / 1191
  30323. }
  30324. },
  30325. },
  30326. [
  30327. {
  30328. name: "Micro",
  30329. height: math.unit(5, "inches")
  30330. },
  30331. {
  30332. name: "Normal",
  30333. height: math.unit(5 + 6 / 12, "feet"),
  30334. default: true
  30335. },
  30336. ]
  30337. ))
  30338. characterMakers.push(() => makeCharacter(
  30339. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30340. {
  30341. front: {
  30342. height: math.unit(5 + 9 / 12, "feet"),
  30343. weight: math.unit(130, "lb"),
  30344. name: "Front",
  30345. image: {
  30346. source: "./media/characters/cecelia-swift/front.svg",
  30347. extra: 502 / 484,
  30348. bottom: 23 / 523
  30349. }
  30350. },
  30351. back: {
  30352. height: math.unit(5 + 9 / 12, "feet"),
  30353. weight: math.unit(130, "lb"),
  30354. name: "Back",
  30355. image: {
  30356. source: "./media/characters/cecelia-swift/back.svg",
  30357. extra: 499 / 485,
  30358. bottom: 12 / 511
  30359. }
  30360. },
  30361. head: {
  30362. height: math.unit(0.90, "feet"),
  30363. name: "Head",
  30364. image: {
  30365. source: "./media/characters/cecelia-swift/head.svg"
  30366. }
  30367. },
  30368. rump: {
  30369. height: math.unit(1.75, "feet"),
  30370. name: "Rump",
  30371. image: {
  30372. source: "./media/characters/cecelia-swift/rump.svg"
  30373. }
  30374. },
  30375. },
  30376. [
  30377. {
  30378. name: "Normal",
  30379. height: math.unit(5 + 9 / 12, "feet"),
  30380. default: true
  30381. },
  30382. {
  30383. name: "Big",
  30384. height: math.unit(50, "feet")
  30385. },
  30386. {
  30387. name: "Macro",
  30388. height: math.unit(100, "feet")
  30389. },
  30390. {
  30391. name: "Macro+",
  30392. height: math.unit(500, "feet")
  30393. },
  30394. {
  30395. name: "Macro++",
  30396. height: math.unit(1000, "feet")
  30397. },
  30398. ]
  30399. ))
  30400. characterMakers.push(() => makeCharacter(
  30401. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30402. {
  30403. front: {
  30404. height: math.unit(6, "feet"),
  30405. weight: math.unit(150, "lb"),
  30406. name: "Front",
  30407. image: {
  30408. source: "./media/characters/kaunan/front.svg",
  30409. extra: 2890 / 2523,
  30410. bottom: 49 / 2939
  30411. }
  30412. },
  30413. },
  30414. [
  30415. {
  30416. name: "Macro",
  30417. height: math.unit(150, "feet"),
  30418. default: true
  30419. },
  30420. ]
  30421. ))
  30422. characterMakers.push(() => makeCharacter(
  30423. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30424. {
  30425. dressed: {
  30426. height: math.unit(175, "cm"),
  30427. weight: math.unit(60, "kg"),
  30428. name: "Dressed",
  30429. image: {
  30430. source: "./media/characters/fei/dressed.svg",
  30431. extra: 1402/1278,
  30432. bottom: 27/1429
  30433. }
  30434. },
  30435. nude: {
  30436. height: math.unit(175, "cm"),
  30437. weight: math.unit(60, "kg"),
  30438. name: "Nude",
  30439. image: {
  30440. source: "./media/characters/fei/nude.svg",
  30441. extra: 1402/1278,
  30442. bottom: 27/1429
  30443. }
  30444. },
  30445. heels: {
  30446. height: math.unit(0.466, "feet"),
  30447. name: "Heels",
  30448. image: {
  30449. source: "./media/characters/fei/heels.svg",
  30450. extra: 156/152,
  30451. bottom: 28/184
  30452. }
  30453. },
  30454. },
  30455. [
  30456. {
  30457. name: "Mortal",
  30458. height: math.unit(175, "cm")
  30459. },
  30460. {
  30461. name: "Normal",
  30462. height: math.unit(3500, "m")
  30463. },
  30464. {
  30465. name: "Stroll",
  30466. height: math.unit(18.4, "km"),
  30467. default: true
  30468. },
  30469. {
  30470. name: "Showoff",
  30471. height: math.unit(175, "km")
  30472. },
  30473. ]
  30474. ))
  30475. characterMakers.push(() => makeCharacter(
  30476. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30477. {
  30478. front: {
  30479. height: math.unit(7, "feet"),
  30480. weight: math.unit(1000, "kg"),
  30481. name: "Front",
  30482. image: {
  30483. source: "./media/characters/edrax/front.svg",
  30484. extra: 2838 / 2550,
  30485. bottom: 130 / 2968
  30486. }
  30487. },
  30488. },
  30489. [
  30490. {
  30491. name: "Small",
  30492. height: math.unit(7, "feet")
  30493. },
  30494. {
  30495. name: "Normal",
  30496. height: math.unit(1500, "meters")
  30497. },
  30498. {
  30499. name: "Mega",
  30500. height: math.unit(12000000, "km"),
  30501. default: true
  30502. },
  30503. {
  30504. name: "Megamacro",
  30505. height: math.unit(10600000, "lightyears")
  30506. },
  30507. {
  30508. name: "Hypermacro",
  30509. height: math.unit(256, "yottameters")
  30510. },
  30511. ]
  30512. ))
  30513. characterMakers.push(() => makeCharacter(
  30514. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30515. {
  30516. front: {
  30517. height: math.unit(10, "feet"),
  30518. weight: math.unit(750, "lb"),
  30519. name: "Front",
  30520. image: {
  30521. source: "./media/characters/clove/front.svg",
  30522. extra: 1918/1751,
  30523. bottom: 52/1970
  30524. }
  30525. },
  30526. back: {
  30527. height: math.unit(10, "feet"),
  30528. weight: math.unit(750, "lb"),
  30529. name: "Back",
  30530. image: {
  30531. source: "./media/characters/clove/back.svg",
  30532. extra: 1912/1747,
  30533. bottom: 50/1962
  30534. }
  30535. },
  30536. },
  30537. [
  30538. {
  30539. name: "Normal",
  30540. height: math.unit(10, "feet"),
  30541. default: true
  30542. },
  30543. ]
  30544. ))
  30545. characterMakers.push(() => makeCharacter(
  30546. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30547. {
  30548. front: {
  30549. height: math.unit(4, "feet"),
  30550. weight: math.unit(50, "lb"),
  30551. name: "Front",
  30552. image: {
  30553. source: "./media/characters/alex-rabbit/front.svg",
  30554. extra: 507 / 458,
  30555. bottom: 18.5 / 527
  30556. }
  30557. },
  30558. back: {
  30559. height: math.unit(4, "feet"),
  30560. weight: math.unit(50, "lb"),
  30561. name: "Back",
  30562. image: {
  30563. source: "./media/characters/alex-rabbit/back.svg",
  30564. extra: 502 / 460,
  30565. bottom: 18.9 / 521
  30566. }
  30567. },
  30568. },
  30569. [
  30570. {
  30571. name: "Normal",
  30572. height: math.unit(4, "feet"),
  30573. default: true
  30574. },
  30575. ]
  30576. ))
  30577. characterMakers.push(() => makeCharacter(
  30578. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30579. {
  30580. front: {
  30581. height: math.unit(1 + 3 / 12, "feet"),
  30582. weight: math.unit(80, "lb"),
  30583. name: "Front",
  30584. image: {
  30585. source: "./media/characters/zander-rose/front.svg",
  30586. extra: 916 / 797,
  30587. bottom: 17 / 933
  30588. }
  30589. },
  30590. back: {
  30591. height: math.unit(1 + 3 / 12, "feet"),
  30592. weight: math.unit(80, "lb"),
  30593. name: "Back",
  30594. image: {
  30595. source: "./media/characters/zander-rose/back.svg",
  30596. extra: 903 / 779,
  30597. bottom: 31 / 934
  30598. }
  30599. },
  30600. },
  30601. [
  30602. {
  30603. name: "Normal",
  30604. height: math.unit(1 + 3 / 12, "feet"),
  30605. default: true
  30606. },
  30607. ]
  30608. ))
  30609. characterMakers.push(() => makeCharacter(
  30610. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30611. {
  30612. anthro: {
  30613. height: math.unit(6, "feet"),
  30614. weight: math.unit(150, "lb"),
  30615. name: "Anthro",
  30616. image: {
  30617. source: "./media/characters/razz/anthro.svg",
  30618. extra: 1437 / 1343,
  30619. bottom: 48 / 1485
  30620. }
  30621. },
  30622. feral: {
  30623. height: math.unit(6, "feet"),
  30624. weight: math.unit(150, "lb"),
  30625. name: "Feral",
  30626. image: {
  30627. source: "./media/characters/razz/feral.svg",
  30628. extra: 2569 / 1385,
  30629. bottom: 95 / 2664
  30630. }
  30631. },
  30632. },
  30633. [
  30634. {
  30635. name: "Normal",
  30636. height: math.unit(6, "feet"),
  30637. default: true
  30638. },
  30639. ]
  30640. ))
  30641. characterMakers.push(() => makeCharacter(
  30642. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30643. {
  30644. front: {
  30645. height: math.unit(9 + 4 / 12, "feet"),
  30646. weight: math.unit(500, "lb"),
  30647. name: "Front",
  30648. image: {
  30649. source: "./media/characters/morrigan/front.svg",
  30650. extra: 2707 / 2579,
  30651. bottom: 156 / 2863
  30652. }
  30653. },
  30654. },
  30655. [
  30656. {
  30657. name: "Normal",
  30658. height: math.unit(9 + 4 / 12, "feet"),
  30659. default: true
  30660. },
  30661. ]
  30662. ))
  30663. characterMakers.push(() => makeCharacter(
  30664. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30665. {
  30666. front: {
  30667. height: math.unit(5, "stories"),
  30668. weight: math.unit(4000, "lb"),
  30669. name: "Front",
  30670. image: {
  30671. source: "./media/characters/jenene/front.svg",
  30672. extra: 1780 / 1710,
  30673. bottom: 57 / 1837
  30674. }
  30675. },
  30676. },
  30677. [
  30678. {
  30679. name: "Normal",
  30680. height: math.unit(5, "stories"),
  30681. default: true
  30682. },
  30683. ]
  30684. ))
  30685. characterMakers.push(() => makeCharacter(
  30686. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30687. {
  30688. taurSfw: {
  30689. height: math.unit(10, "meters"),
  30690. weight: math.unit(17500, "kg"),
  30691. name: "Taur",
  30692. image: {
  30693. source: "./media/characters/faey/taur-sfw.svg",
  30694. extra: 1200 / 968,
  30695. bottom: 41 / 1241
  30696. }
  30697. },
  30698. chestmaw: {
  30699. height: math.unit(2.01, "meters"),
  30700. name: "Chestmaw",
  30701. image: {
  30702. source: "./media/characters/faey/chestmaw.svg"
  30703. }
  30704. },
  30705. foot: {
  30706. height: math.unit(2.43, "meters"),
  30707. name: "Foot",
  30708. image: {
  30709. source: "./media/characters/faey/foot.svg"
  30710. }
  30711. },
  30712. jaws: {
  30713. height: math.unit(1.66, "meters"),
  30714. name: "Jaws",
  30715. image: {
  30716. source: "./media/characters/faey/jaws.svg"
  30717. }
  30718. },
  30719. tongues: {
  30720. height: math.unit(2.01, "meters"),
  30721. name: "Tongues",
  30722. image: {
  30723. source: "./media/characters/faey/tongues.svg"
  30724. }
  30725. },
  30726. },
  30727. [
  30728. {
  30729. name: "Small",
  30730. height: math.unit(10, "meters"),
  30731. default: true
  30732. },
  30733. {
  30734. name: "Big",
  30735. height: math.unit(500000, "km")
  30736. },
  30737. ]
  30738. ))
  30739. characterMakers.push(() => makeCharacter(
  30740. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30741. {
  30742. front: {
  30743. height: math.unit(7, "feet"),
  30744. weight: math.unit(275, "lb"),
  30745. name: "Front",
  30746. image: {
  30747. source: "./media/characters/roku/front.svg",
  30748. extra: 903 / 878,
  30749. bottom: 37 / 940
  30750. }
  30751. },
  30752. },
  30753. [
  30754. {
  30755. name: "Normal",
  30756. height: math.unit(7, "feet"),
  30757. default: true
  30758. },
  30759. {
  30760. name: "Macro",
  30761. height: math.unit(500, "feet")
  30762. },
  30763. {
  30764. name: "Megamacro",
  30765. height: math.unit(200, "miles")
  30766. },
  30767. ]
  30768. ))
  30769. characterMakers.push(() => makeCharacter(
  30770. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30771. {
  30772. front: {
  30773. height: math.unit(6 + 2 / 12, "feet"),
  30774. weight: math.unit(150, "lb"),
  30775. name: "Front",
  30776. image: {
  30777. source: "./media/characters/lira/front.svg",
  30778. extra: 1727 / 1605,
  30779. bottom: 26 / 1753
  30780. }
  30781. },
  30782. back: {
  30783. height: math.unit(6 + 2 / 12, "feet"),
  30784. weight: math.unit(150, "lb"),
  30785. name: "Back",
  30786. image: {
  30787. source: "./media/characters/lira/back.svg",
  30788. extra: 1713/1621,
  30789. bottom: 20/1733
  30790. }
  30791. },
  30792. hand: {
  30793. height: math.unit(0.75, "feet"),
  30794. name: "Hand",
  30795. image: {
  30796. source: "./media/characters/lira/hand.svg"
  30797. }
  30798. },
  30799. maw: {
  30800. height: math.unit(0.65, "feet"),
  30801. name: "Maw",
  30802. image: {
  30803. source: "./media/characters/lira/maw.svg"
  30804. }
  30805. },
  30806. pawDigi: {
  30807. height: math.unit(1.6, "feet"),
  30808. name: "Paw Digi",
  30809. image: {
  30810. source: "./media/characters/lira/paw-digi.svg"
  30811. }
  30812. },
  30813. pawPlanti: {
  30814. height: math.unit(1.4, "feet"),
  30815. name: "Paw Planti",
  30816. image: {
  30817. source: "./media/characters/lira/paw-planti.svg"
  30818. }
  30819. },
  30820. },
  30821. [
  30822. {
  30823. name: "Normal",
  30824. height: math.unit(6 + 2 / 12, "feet"),
  30825. default: true
  30826. },
  30827. {
  30828. name: "Macro",
  30829. height: math.unit(100, "feet")
  30830. },
  30831. {
  30832. name: "Macro²",
  30833. height: math.unit(1600, "feet")
  30834. },
  30835. {
  30836. name: "Planetary",
  30837. height: math.unit(20, "earths")
  30838. },
  30839. ]
  30840. ))
  30841. characterMakers.push(() => makeCharacter(
  30842. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30843. {
  30844. front: {
  30845. height: math.unit(6, "feet"),
  30846. weight: math.unit(150, "lb"),
  30847. name: "Front",
  30848. image: {
  30849. source: "./media/characters/hadjet/front.svg",
  30850. extra: 1480 / 1346,
  30851. bottom: 26 / 1506
  30852. }
  30853. },
  30854. frontNsfw: {
  30855. height: math.unit(6, "feet"),
  30856. weight: math.unit(150, "lb"),
  30857. name: "Front (NSFW)",
  30858. image: {
  30859. source: "./media/characters/hadjet/front-nsfw.svg",
  30860. extra: 1440 / 1358,
  30861. bottom: 52 / 1492
  30862. }
  30863. },
  30864. },
  30865. [
  30866. {
  30867. name: "Macro",
  30868. height: math.unit(10, "stories"),
  30869. default: true
  30870. },
  30871. {
  30872. name: "Megamacro",
  30873. height: math.unit(1.5, "miles")
  30874. },
  30875. {
  30876. name: "Megamacro+",
  30877. height: math.unit(5, "miles")
  30878. },
  30879. ]
  30880. ))
  30881. characterMakers.push(() => makeCharacter(
  30882. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30883. {
  30884. side: {
  30885. height: math.unit(106, "feet"),
  30886. weight: math.unit(500, "tonnes"),
  30887. name: "Side",
  30888. image: {
  30889. source: "./media/characters/kodran/side.svg",
  30890. extra: 553 / 480,
  30891. bottom: 33 / 586
  30892. }
  30893. },
  30894. front: {
  30895. height: math.unit(132, "feet"),
  30896. weight: math.unit(500, "tonnes"),
  30897. name: "Front",
  30898. image: {
  30899. source: "./media/characters/kodran/front.svg",
  30900. extra: 667 / 643,
  30901. bottom: 42 / 709
  30902. }
  30903. },
  30904. flying: {
  30905. height: math.unit(350, "feet"),
  30906. weight: math.unit(500, "tonnes"),
  30907. name: "Flying",
  30908. image: {
  30909. source: "./media/characters/kodran/flying.svg"
  30910. }
  30911. },
  30912. foot: {
  30913. height: math.unit(33, "feet"),
  30914. name: "Foot",
  30915. image: {
  30916. source: "./media/characters/kodran/foot.svg"
  30917. }
  30918. },
  30919. footFront: {
  30920. height: math.unit(19, "feet"),
  30921. name: "Foot (Front)",
  30922. image: {
  30923. source: "./media/characters/kodran/foot-front.svg",
  30924. extra: 261 / 261,
  30925. bottom: 91 / 352
  30926. }
  30927. },
  30928. headFront: {
  30929. height: math.unit(53, "feet"),
  30930. name: "Head (Front)",
  30931. image: {
  30932. source: "./media/characters/kodran/head-front.svg"
  30933. }
  30934. },
  30935. headSide: {
  30936. height: math.unit(65, "feet"),
  30937. name: "Head (Side)",
  30938. image: {
  30939. source: "./media/characters/kodran/head-side.svg"
  30940. }
  30941. },
  30942. throat: {
  30943. height: math.unit(79, "feet"),
  30944. name: "Throat",
  30945. image: {
  30946. source: "./media/characters/kodran/throat.svg"
  30947. }
  30948. },
  30949. },
  30950. [
  30951. {
  30952. name: "Large",
  30953. height: math.unit(106, "feet"),
  30954. default: true
  30955. },
  30956. ]
  30957. ))
  30958. characterMakers.push(() => makeCharacter(
  30959. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30960. {
  30961. side: {
  30962. height: math.unit(11, "feet"),
  30963. weight: math.unit(150, "lb"),
  30964. name: "Side",
  30965. image: {
  30966. source: "./media/characters/pyxaron/side.svg",
  30967. extra: 305 / 195,
  30968. bottom: 17 / 322
  30969. }
  30970. },
  30971. },
  30972. [
  30973. {
  30974. name: "Normal",
  30975. height: math.unit(11, "feet"),
  30976. default: true
  30977. },
  30978. ]
  30979. ))
  30980. characterMakers.push(() => makeCharacter(
  30981. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30982. {
  30983. front: {
  30984. height: math.unit(6, "feet"),
  30985. weight: math.unit(150, "lb"),
  30986. name: "Front",
  30987. image: {
  30988. source: "./media/characters/meep/front.svg",
  30989. extra: 88 / 80,
  30990. bottom: 6 / 94
  30991. }
  30992. },
  30993. },
  30994. [
  30995. {
  30996. name: "Fun Sized",
  30997. height: math.unit(2, "inches"),
  30998. default: true
  30999. },
  31000. {
  31001. name: "Friend Sized",
  31002. height: math.unit(8, "inches")
  31003. },
  31004. ]
  31005. ))
  31006. characterMakers.push(() => makeCharacter(
  31007. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  31008. {
  31009. front: {
  31010. height: math.unit(15, "feet"),
  31011. weight: math.unit(2500, "lb"),
  31012. name: "Front",
  31013. image: {
  31014. source: "./media/characters/holly-rabbit/front.svg",
  31015. extra: 1433 / 1233,
  31016. bottom: 125 / 1558
  31017. }
  31018. },
  31019. dick: {
  31020. height: math.unit(4.6, "feet"),
  31021. name: "Dick",
  31022. image: {
  31023. source: "./media/characters/holly-rabbit/dick.svg"
  31024. }
  31025. },
  31026. },
  31027. [
  31028. {
  31029. name: "Normal",
  31030. height: math.unit(15, "feet"),
  31031. default: true
  31032. },
  31033. {
  31034. name: "Macro",
  31035. height: math.unit(250, "feet")
  31036. },
  31037. {
  31038. name: "Macro+",
  31039. height: math.unit(2500, "feet")
  31040. },
  31041. ]
  31042. ))
  31043. characterMakers.push(() => makeCharacter(
  31044. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  31045. {
  31046. front: {
  31047. height: math.unit(3.02, "meters"),
  31048. weight: math.unit(500, "kg"),
  31049. name: "Front",
  31050. image: {
  31051. source: "./media/characters/drena/front.svg",
  31052. extra: 282 / 243,
  31053. bottom: 8 / 290
  31054. }
  31055. },
  31056. side: {
  31057. height: math.unit(3.02, "meters"),
  31058. weight: math.unit(500, "kg"),
  31059. name: "Side",
  31060. image: {
  31061. source: "./media/characters/drena/side.svg",
  31062. extra: 280 / 245,
  31063. bottom: 10 / 290
  31064. }
  31065. },
  31066. back: {
  31067. height: math.unit(3.02, "meters"),
  31068. weight: math.unit(500, "kg"),
  31069. name: "Back",
  31070. image: {
  31071. source: "./media/characters/drena/back.svg",
  31072. extra: 278 / 243,
  31073. bottom: 2 / 280
  31074. }
  31075. },
  31076. foot: {
  31077. height: math.unit(0.75, "meters"),
  31078. name: "Foot",
  31079. image: {
  31080. source: "./media/characters/drena/foot.svg"
  31081. }
  31082. },
  31083. maw: {
  31084. height: math.unit(0.82, "meters"),
  31085. name: "Maw",
  31086. image: {
  31087. source: "./media/characters/drena/maw.svg"
  31088. }
  31089. },
  31090. eating: {
  31091. height: math.unit(0.75, "meters"),
  31092. name: "Eating",
  31093. image: {
  31094. source: "./media/characters/drena/eating.svg"
  31095. }
  31096. },
  31097. rump: {
  31098. height: math.unit(0.93, "meters"),
  31099. name: "Rump",
  31100. image: {
  31101. source: "./media/characters/drena/rump.svg"
  31102. }
  31103. },
  31104. },
  31105. [
  31106. {
  31107. name: "Normal",
  31108. height: math.unit(3.02, "meters"),
  31109. default: true
  31110. },
  31111. ]
  31112. ))
  31113. characterMakers.push(() => makeCharacter(
  31114. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  31115. {
  31116. front: {
  31117. height: math.unit(6 + 4 / 12, "feet"),
  31118. weight: math.unit(250, "lb"),
  31119. name: "Front",
  31120. image: {
  31121. source: "./media/characters/remmyzilla/front.svg",
  31122. extra: 4033 / 3588,
  31123. bottom: 123 / 4156
  31124. }
  31125. },
  31126. back: {
  31127. height: math.unit(6 + 4 / 12, "feet"),
  31128. weight: math.unit(250, "lb"),
  31129. name: "Back",
  31130. image: {
  31131. source: "./media/characters/remmyzilla/back.svg",
  31132. extra: 1696/1602,
  31133. bottom: 63/1759
  31134. }
  31135. },
  31136. paw: {
  31137. height: math.unit(1.73, "feet"),
  31138. name: "Paw",
  31139. image: {
  31140. source: "./media/characters/remmyzilla/paw.svg"
  31141. },
  31142. extraAttributes: {
  31143. "toeSize": {
  31144. name: "Toe Size",
  31145. power: 2,
  31146. type: "area",
  31147. base: math.unit(0.0035, "m^2")
  31148. },
  31149. "padSize": {
  31150. name: "Pad Size",
  31151. power: 2,
  31152. type: "area",
  31153. base: math.unit(0.015, "m^2")
  31154. },
  31155. "pawsize": {
  31156. name: "Paw Size",
  31157. power: 2,
  31158. type: "area",
  31159. base: math.unit(0.072, "m^2")
  31160. },
  31161. }
  31162. },
  31163. maw: {
  31164. height: math.unit(1.73, "feet"),
  31165. name: "Maw",
  31166. image: {
  31167. source: "./media/characters/remmyzilla/maw.svg"
  31168. }
  31169. },
  31170. },
  31171. [
  31172. {
  31173. name: "Normal",
  31174. height: math.unit(6 + 4 / 12, "feet")
  31175. },
  31176. {
  31177. name: "Minimacro",
  31178. height: math.unit(12 + 8 / 12, "feet")
  31179. },
  31180. {
  31181. name: "Normal",
  31182. height: math.unit(640, "feet"),
  31183. default: true
  31184. },
  31185. {
  31186. name: "Megamacro",
  31187. height: math.unit(6400, "feet")
  31188. },
  31189. {
  31190. name: "Gigamacro",
  31191. height: math.unit(64000, "miles")
  31192. },
  31193. ]
  31194. ))
  31195. characterMakers.push(() => makeCharacter(
  31196. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  31197. {
  31198. front: {
  31199. height: math.unit(2.5, "meters"),
  31200. weight: math.unit(300, "lb"),
  31201. name: "Front",
  31202. image: {
  31203. source: "./media/characters/lawrence/front.svg",
  31204. extra: 357 / 335,
  31205. bottom: 30 / 387
  31206. }
  31207. },
  31208. back: {
  31209. height: math.unit(2.5, "meters"),
  31210. weight: math.unit(300, "lb"),
  31211. name: "Back",
  31212. image: {
  31213. source: "./media/characters/lawrence/back.svg",
  31214. extra: 357 / 338,
  31215. bottom: 16 / 373
  31216. }
  31217. },
  31218. head: {
  31219. height: math.unit(0.9, "meter"),
  31220. name: "Head",
  31221. image: {
  31222. source: "./media/characters/lawrence/head.svg"
  31223. }
  31224. },
  31225. maw: {
  31226. height: math.unit(0.7, "meter"),
  31227. name: "Maw",
  31228. image: {
  31229. source: "./media/characters/lawrence/maw.svg"
  31230. }
  31231. },
  31232. footBottom: {
  31233. height: math.unit(0.5, "meter"),
  31234. name: "Foot (Bottom)",
  31235. image: {
  31236. source: "./media/characters/lawrence/foot-bottom.svg"
  31237. }
  31238. },
  31239. footTop: {
  31240. height: math.unit(0.5, "meter"),
  31241. name: "Foot (Top)",
  31242. image: {
  31243. source: "./media/characters/lawrence/foot-top.svg"
  31244. }
  31245. },
  31246. },
  31247. [
  31248. {
  31249. name: "Normal",
  31250. height: math.unit(2.5, "meters"),
  31251. default: true
  31252. },
  31253. {
  31254. name: "Macro",
  31255. height: math.unit(95, "meters")
  31256. },
  31257. {
  31258. name: "Megamacro",
  31259. height: math.unit(150, "km")
  31260. },
  31261. ]
  31262. ))
  31263. characterMakers.push(() => makeCharacter(
  31264. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31265. {
  31266. front: {
  31267. height: math.unit(4.2, "meters"),
  31268. preyCapacity: math.unit(50, "m^3"),
  31269. weight: math.unit(30, "tonnes"),
  31270. name: "Front",
  31271. image: {
  31272. source: "./media/characters/sydney/front.svg",
  31273. extra: 1177/1129,
  31274. bottom: 197/1374
  31275. },
  31276. extraAttributes: {
  31277. "length": {
  31278. name: "Length",
  31279. power: 1,
  31280. type: "length",
  31281. base: math.unit(21, "meters")
  31282. },
  31283. }
  31284. },
  31285. },
  31286. [
  31287. {
  31288. name: "Normal",
  31289. height: math.unit(4.2, "meters"),
  31290. default: true
  31291. },
  31292. ]
  31293. ))
  31294. characterMakers.push(() => makeCharacter(
  31295. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31296. {
  31297. back: {
  31298. height: math.unit(201, "feet"),
  31299. name: "Back",
  31300. image: {
  31301. source: "./media/characters/jessica/back.svg",
  31302. extra: 273 / 259,
  31303. bottom: 7 / 280
  31304. }
  31305. },
  31306. },
  31307. [
  31308. {
  31309. name: "Normal",
  31310. height: math.unit(201, "feet"),
  31311. default: true
  31312. },
  31313. {
  31314. name: "Megamacro",
  31315. height: math.unit(8, "miles")
  31316. },
  31317. ]
  31318. ))
  31319. characterMakers.push(() => makeCharacter(
  31320. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31321. {
  31322. side: {
  31323. height: math.unit(5.6, "m"),
  31324. weight: math.unit(8000, "kg"),
  31325. name: "Side",
  31326. image: {
  31327. source: "./media/characters/victoria/side.svg",
  31328. extra: 1542/1229,
  31329. bottom: 124/1666
  31330. }
  31331. },
  31332. maw: {
  31333. height: math.unit(7.14, "feet"),
  31334. name: "Maw",
  31335. image: {
  31336. source: "./media/characters/victoria/maw.svg"
  31337. }
  31338. },
  31339. },
  31340. [
  31341. {
  31342. name: "Normal",
  31343. height: math.unit(5.6, "m"),
  31344. default: true
  31345. },
  31346. ]
  31347. ))
  31348. characterMakers.push(() => makeCharacter(
  31349. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  31350. {
  31351. front: {
  31352. height: math.unit(5 + 6 / 12, "feet"),
  31353. name: "Front",
  31354. image: {
  31355. source: "./media/characters/cat/front.svg",
  31356. extra: 1449/1295,
  31357. bottom: 34/1483
  31358. },
  31359. form: "cat",
  31360. default: true
  31361. },
  31362. back: {
  31363. height: math.unit(5 + 6 / 12, "feet"),
  31364. name: "Back",
  31365. image: {
  31366. source: "./media/characters/cat/back.svg",
  31367. extra: 1466/1301,
  31368. bottom: 19/1485
  31369. },
  31370. form: "cat"
  31371. },
  31372. taur: {
  31373. height: math.unit(7, "feet"),
  31374. name: "Taur",
  31375. image: {
  31376. source: "./media/characters/cat/taur.svg",
  31377. extra: 1389/1233,
  31378. bottom: 83/1472
  31379. },
  31380. form: "taur",
  31381. default: true
  31382. },
  31383. lucarioFront: {
  31384. height: math.unit(4, "feet"),
  31385. name: "Lucario (Front)",
  31386. image: {
  31387. source: "./media/characters/cat/lucario-front.svg",
  31388. extra: 1149/1019,
  31389. bottom: 84/1233
  31390. },
  31391. form: "lucario",
  31392. default: true
  31393. },
  31394. lucarioBack: {
  31395. height: math.unit(4, "feet"),
  31396. name: "Lucario (Back)",
  31397. image: {
  31398. source: "./media/characters/cat/lucario-back.svg",
  31399. extra: 1190/1059,
  31400. bottom: 33/1223
  31401. },
  31402. form: "lucario"
  31403. },
  31404. megaLucario: {
  31405. height: math.unit(4, "feet"),
  31406. name: "Mega Lucario",
  31407. image: {
  31408. source: "./media/characters/cat/mega-lucario.svg",
  31409. extra: 1515 / 1319,
  31410. bottom: 63 / 1578
  31411. },
  31412. form: "lucario"
  31413. },
  31414. nickit: {
  31415. height: math.unit(2, "feet"),
  31416. name: "Nickit",
  31417. image: {
  31418. source: "./media/characters/cat/nickit.svg",
  31419. extra: 1980 / 1585,
  31420. bottom: 102 / 2082
  31421. },
  31422. form: "nickit",
  31423. default: true
  31424. },
  31425. lopunnyFront: {
  31426. height: math.unit(5, "feet"),
  31427. name: "Lopunny (Front)",
  31428. image: {
  31429. source: "./media/characters/cat/lopunny-front.svg",
  31430. extra: 1782 / 1469,
  31431. bottom: 38 / 1820
  31432. },
  31433. form: "lopunny",
  31434. default: true
  31435. },
  31436. lopunnyBack: {
  31437. height: math.unit(5, "feet"),
  31438. name: "Lopunny (Back)",
  31439. image: {
  31440. source: "./media/characters/cat/lopunny-back.svg",
  31441. extra: 1660 / 1490,
  31442. bottom: 25 / 1685
  31443. },
  31444. form: "lopunny"
  31445. },
  31446. },
  31447. [
  31448. {
  31449. name: "Really small",
  31450. height: math.unit(1, "nm"),
  31451. allForms: true
  31452. },
  31453. {
  31454. name: "Micro",
  31455. height: math.unit(5, "inches"),
  31456. allForms: true
  31457. },
  31458. {
  31459. name: "Normal",
  31460. height: math.unit(5 + 6 / 12, "feet"),
  31461. default: true,
  31462. form: "cat"
  31463. },
  31464. {
  31465. name: "Normal",
  31466. height: math.unit(7, "feet"),
  31467. default: true,
  31468. form: "taur"
  31469. },
  31470. {
  31471. name: "Normal",
  31472. height: math.unit(4, "feet"),
  31473. default: true,
  31474. form: "lucario"
  31475. },
  31476. {
  31477. name: "Normal",
  31478. height: math.unit(2, "feet"),
  31479. default: true,
  31480. form: "nickit"
  31481. },
  31482. {
  31483. name: "Normal",
  31484. height: math.unit(5, "feet"),
  31485. default: true,
  31486. form: "lopunny"
  31487. },
  31488. {
  31489. name: "Macro",
  31490. height: math.unit(50, "feet"),
  31491. allForms: true
  31492. },
  31493. {
  31494. name: "Macro+",
  31495. height: math.unit(150, "feet"),
  31496. allForms: true
  31497. },
  31498. {
  31499. name: "Megamacro",
  31500. height: math.unit(100, "miles"),
  31501. allForms: true
  31502. },
  31503. ],
  31504. {
  31505. "cat": {
  31506. name: "Cat",
  31507. default: true
  31508. },
  31509. "taur": {
  31510. name: "Taur",
  31511. },
  31512. "lucario": {
  31513. name: "Lucario",
  31514. },
  31515. "nickit": {
  31516. name: "Nickit",
  31517. },
  31518. "lopunny": {
  31519. name: "Lopunny",
  31520. }
  31521. }
  31522. ))
  31523. characterMakers.push(() => makeCharacter(
  31524. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31525. {
  31526. front: {
  31527. height: math.unit(63.4, "meters"),
  31528. weight: math.unit(3.28349e+6, "kilograms"),
  31529. name: "Front",
  31530. image: {
  31531. source: "./media/characters/kirina-violet/front.svg",
  31532. extra: 2812 / 2725,
  31533. bottom: 0 / 2812
  31534. }
  31535. },
  31536. back: {
  31537. height: math.unit(63.4, "meters"),
  31538. weight: math.unit(3.28349e+6, "kilograms"),
  31539. name: "Back",
  31540. image: {
  31541. source: "./media/characters/kirina-violet/back.svg",
  31542. extra: 2812 / 2725,
  31543. bottom: 0 / 2812
  31544. }
  31545. },
  31546. mouth: {
  31547. height: math.unit(4.35, "meters"),
  31548. name: "Mouth",
  31549. image: {
  31550. source: "./media/characters/kirina-violet/mouth.svg"
  31551. }
  31552. },
  31553. paw: {
  31554. height: math.unit(5.6, "meters"),
  31555. name: "Paw",
  31556. image: {
  31557. source: "./media/characters/kirina-violet/paw.svg"
  31558. }
  31559. },
  31560. tail: {
  31561. height: math.unit(18, "meters"),
  31562. name: "Tail",
  31563. image: {
  31564. source: "./media/characters/kirina-violet/tail.svg"
  31565. }
  31566. },
  31567. },
  31568. [
  31569. {
  31570. name: "Macro",
  31571. height: math.unit(63.4, "meters"),
  31572. default: true
  31573. },
  31574. ]
  31575. ))
  31576. characterMakers.push(() => makeCharacter(
  31577. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  31578. {
  31579. front: {
  31580. height: math.unit(75, "feet"),
  31581. name: "Front",
  31582. image: {
  31583. source: "./media/characters/cat-gigachu/front.svg",
  31584. extra: 1239/1027,
  31585. bottom: 32/1271
  31586. }
  31587. },
  31588. back: {
  31589. height: math.unit(75, "feet"),
  31590. name: "Back",
  31591. image: {
  31592. source: "./media/characters/cat-gigachu/back.svg",
  31593. extra: 1229/1030,
  31594. bottom: 9/1238
  31595. }
  31596. },
  31597. },
  31598. [
  31599. {
  31600. name: "Dynamax",
  31601. height: math.unit(75, "feet"),
  31602. default: true
  31603. },
  31604. ]
  31605. ))
  31606. characterMakers.push(() => makeCharacter(
  31607. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  31608. {
  31609. front: {
  31610. height: math.unit(6, "feet"),
  31611. weight: math.unit(150, "lb"),
  31612. name: "Front",
  31613. image: {
  31614. source: "./media/characters/sfaiyan/front.svg",
  31615. extra: 999 / 978,
  31616. bottom: 5 / 1004
  31617. }
  31618. },
  31619. },
  31620. [
  31621. {
  31622. name: "Normal",
  31623. height: math.unit(1.82, "meters")
  31624. },
  31625. {
  31626. name: "Giant",
  31627. height: math.unit(2.27, "km"),
  31628. default: true
  31629. },
  31630. ]
  31631. ))
  31632. characterMakers.push(() => makeCharacter(
  31633. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31634. {
  31635. front: {
  31636. height: math.unit(179, "cm"),
  31637. weight: math.unit(100, "kg"),
  31638. name: "Front",
  31639. image: {
  31640. source: "./media/characters/raunehkeli/front.svg",
  31641. extra: 1934 / 1926,
  31642. bottom: 0 / 1934
  31643. }
  31644. },
  31645. },
  31646. [
  31647. {
  31648. name: "Normal",
  31649. height: math.unit(179, "cm")
  31650. },
  31651. {
  31652. name: "Maximum",
  31653. height: math.unit(575, "meters"),
  31654. default: true
  31655. },
  31656. ]
  31657. ))
  31658. characterMakers.push(() => makeCharacter(
  31659. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31660. {
  31661. front: {
  31662. height: math.unit(6, "feet"),
  31663. weight: math.unit(150, "lb"),
  31664. name: "Front",
  31665. image: {
  31666. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31667. extra: 2625 / 2518,
  31668. bottom: 60 / 2685
  31669. }
  31670. },
  31671. },
  31672. [
  31673. {
  31674. name: "Normal",
  31675. height: math.unit(6 + 2 / 12, "feet")
  31676. },
  31677. {
  31678. name: "Macro",
  31679. height: math.unit(1180, "feet"),
  31680. default: true
  31681. },
  31682. ]
  31683. ))
  31684. characterMakers.push(() => makeCharacter(
  31685. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31686. {
  31687. front: {
  31688. height: math.unit(5 + 6 / 12, "feet"),
  31689. weight: math.unit(108, "lb"),
  31690. name: "Front",
  31691. image: {
  31692. source: "./media/characters/lilith-zott/front.svg",
  31693. extra: 2510 / 2238,
  31694. bottom: 100 / 2610
  31695. }
  31696. },
  31697. frontDressed: {
  31698. height: math.unit(5 + 6 / 12, "feet"),
  31699. weight: math.unit(108, "lb"),
  31700. name: "Front (Dressed)",
  31701. image: {
  31702. source: "./media/characters/lilith-zott/front-dressed.svg",
  31703. extra: 2510 / 2238,
  31704. bottom: 100 / 2610
  31705. }
  31706. },
  31707. },
  31708. [
  31709. {
  31710. name: "Normal",
  31711. height: math.unit(5 + 6 / 12, "feet")
  31712. },
  31713. {
  31714. name: "Macro",
  31715. height: math.unit(1030, "feet"),
  31716. default: true
  31717. },
  31718. ]
  31719. ))
  31720. characterMakers.push(() => makeCharacter(
  31721. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31722. {
  31723. front: {
  31724. height: math.unit(6, "feet"),
  31725. weight: math.unit(150, "lb"),
  31726. name: "Front",
  31727. image: {
  31728. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31729. extra: 2567 / 2435,
  31730. bottom: 39 / 2606
  31731. }
  31732. },
  31733. frontSuper: {
  31734. height: math.unit(6, "feet"),
  31735. name: "Front (Super)",
  31736. image: {
  31737. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31738. extra: 2567 / 2435,
  31739. bottom: 39 / 2606
  31740. }
  31741. },
  31742. },
  31743. [
  31744. {
  31745. name: "Normal",
  31746. height: math.unit(5 + 10 / 12, "feet")
  31747. },
  31748. {
  31749. name: "Macro",
  31750. height: math.unit(1100, "feet"),
  31751. default: true
  31752. },
  31753. ]
  31754. ))
  31755. characterMakers.push(() => makeCharacter(
  31756. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31757. {
  31758. front: {
  31759. height: math.unit(100, "miles"),
  31760. name: "Front",
  31761. image: {
  31762. source: "./media/characters/sona/front.svg",
  31763. extra: 2433 / 2201,
  31764. bottom: 53 / 2486
  31765. }
  31766. },
  31767. foot: {
  31768. height: math.unit(16.1, "miles"),
  31769. name: "Foot",
  31770. image: {
  31771. source: "./media/characters/sona/foot.svg"
  31772. }
  31773. },
  31774. },
  31775. [
  31776. {
  31777. name: "Macro",
  31778. height: math.unit(100, "miles"),
  31779. default: true
  31780. },
  31781. ]
  31782. ))
  31783. characterMakers.push(() => makeCharacter(
  31784. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31785. {
  31786. front: {
  31787. height: math.unit(6, "feet"),
  31788. weight: math.unit(150, "lb"),
  31789. name: "Front",
  31790. image: {
  31791. source: "./media/characters/bailey/front.svg",
  31792. extra: 1778 / 1724,
  31793. bottom: 30 / 1808
  31794. }
  31795. },
  31796. },
  31797. [
  31798. {
  31799. name: "Micro",
  31800. height: math.unit(4, "inches")
  31801. },
  31802. {
  31803. name: "Normal",
  31804. height: math.unit(5 + 5 / 12, "feet"),
  31805. default: true
  31806. },
  31807. {
  31808. name: "Macro",
  31809. height: math.unit(250, "feet")
  31810. },
  31811. {
  31812. name: "Megamacro",
  31813. height: math.unit(100, "miles")
  31814. },
  31815. ]
  31816. ))
  31817. characterMakers.push(() => makeCharacter(
  31818. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31819. {
  31820. front: {
  31821. height: math.unit(5 + 2 / 12, "feet"),
  31822. weight: math.unit(120, "lb"),
  31823. name: "Front",
  31824. image: {
  31825. source: "./media/characters/snaps/front.svg",
  31826. extra: 2370 / 2177,
  31827. bottom: 48 / 2418
  31828. }
  31829. },
  31830. back: {
  31831. height: math.unit(5 + 2 / 12, "feet"),
  31832. weight: math.unit(120, "lb"),
  31833. name: "Back",
  31834. image: {
  31835. source: "./media/characters/snaps/back.svg",
  31836. extra: 2408 / 2258,
  31837. bottom: 15 / 2423
  31838. }
  31839. },
  31840. },
  31841. [
  31842. {
  31843. name: "Micro",
  31844. height: math.unit(9, "inches")
  31845. },
  31846. {
  31847. name: "Normal",
  31848. height: math.unit(5 + 2 / 12, "feet"),
  31849. default: true
  31850. },
  31851. {
  31852. name: "Mini Macro",
  31853. height: math.unit(10, "feet")
  31854. },
  31855. ]
  31856. ))
  31857. characterMakers.push(() => makeCharacter(
  31858. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31859. {
  31860. front: {
  31861. height: math.unit(1.8, "meters"),
  31862. weight: math.unit(85, "kg"),
  31863. name: "Front",
  31864. image: {
  31865. source: "./media/characters/azteck/front.svg",
  31866. extra: 2815 / 2625,
  31867. bottom: 89 / 2904
  31868. }
  31869. },
  31870. back: {
  31871. height: math.unit(1.8, "meters"),
  31872. weight: math.unit(85, "kg"),
  31873. name: "Back",
  31874. image: {
  31875. source: "./media/characters/azteck/back.svg",
  31876. extra: 2856 / 2648,
  31877. bottom: 85 / 2941
  31878. }
  31879. },
  31880. frontDressed: {
  31881. height: math.unit(1.8, "meters"),
  31882. weight: math.unit(85, "kg"),
  31883. name: "Front (Dressed)",
  31884. image: {
  31885. source: "./media/characters/azteck/front-dressed.svg",
  31886. extra: 2147 / 2003,
  31887. bottom: 68 / 2215
  31888. }
  31889. },
  31890. head: {
  31891. height: math.unit(0.47, "meters"),
  31892. weight: math.unit(85, "kg"),
  31893. name: "Head",
  31894. image: {
  31895. source: "./media/characters/azteck/head.svg"
  31896. }
  31897. },
  31898. },
  31899. [
  31900. {
  31901. name: "Bite sized",
  31902. height: math.unit(16, "cm")
  31903. },
  31904. {
  31905. name: "Normal",
  31906. height: math.unit(1.8, "meters"),
  31907. default: true
  31908. },
  31909. ]
  31910. ))
  31911. characterMakers.push(() => makeCharacter(
  31912. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31913. {
  31914. front: {
  31915. height: math.unit(6, "feet"),
  31916. weight: math.unit(150, "lb"),
  31917. name: "Front",
  31918. image: {
  31919. source: "./media/characters/pidge/front.svg",
  31920. extra: 1936/1820,
  31921. bottom: 0/1936
  31922. }
  31923. },
  31924. back: {
  31925. height: math.unit(6, "feet"),
  31926. weight: math.unit(150, "lb"),
  31927. name: "Back",
  31928. image: {
  31929. source: "./media/characters/pidge/back.svg",
  31930. extra: 1938/1843,
  31931. bottom: 0/1938
  31932. }
  31933. },
  31934. casual: {
  31935. height: math.unit(6, "feet"),
  31936. weight: math.unit(150, "lb"),
  31937. name: "Casual",
  31938. image: {
  31939. source: "./media/characters/pidge/casual.svg",
  31940. extra: 1936/1820,
  31941. bottom: 0/1936
  31942. }
  31943. },
  31944. tech: {
  31945. height: math.unit(6, "feet"),
  31946. weight: math.unit(150, "lb"),
  31947. name: "Tech",
  31948. image: {
  31949. source: "./media/characters/pidge/tech.svg",
  31950. extra: 1802/1682,
  31951. bottom: 0/1802
  31952. }
  31953. },
  31954. head: {
  31955. height: math.unit(1.61, "feet"),
  31956. name: "Head",
  31957. image: {
  31958. source: "./media/characters/pidge/head.svg"
  31959. }
  31960. },
  31961. collar: {
  31962. height: math.unit(0.82, "feet"),
  31963. name: "Collar",
  31964. image: {
  31965. source: "./media/characters/pidge/collar.svg"
  31966. }
  31967. },
  31968. },
  31969. [
  31970. {
  31971. name: "Macro",
  31972. height: math.unit(2, "mile"),
  31973. default: true
  31974. },
  31975. {
  31976. name: "PUPPY",
  31977. height: math.unit(20, "miles")
  31978. },
  31979. ]
  31980. ))
  31981. characterMakers.push(() => makeCharacter(
  31982. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31983. {
  31984. front: {
  31985. height: math.unit(6, "feet"),
  31986. weight: math.unit(150, "lb"),
  31987. name: "Front",
  31988. image: {
  31989. source: "./media/characters/en/front.svg",
  31990. extra: 1697 / 1563,
  31991. bottom: 103 / 1800
  31992. }
  31993. },
  31994. back: {
  31995. height: math.unit(6, "feet"),
  31996. weight: math.unit(150, "lb"),
  31997. name: "Back",
  31998. image: {
  31999. source: "./media/characters/en/back.svg",
  32000. extra: 1700 / 1570,
  32001. bottom: 51 / 1751
  32002. }
  32003. },
  32004. frontDressed: {
  32005. height: math.unit(6, "feet"),
  32006. weight: math.unit(150, "lb"),
  32007. name: "Front (Dressed)",
  32008. image: {
  32009. source: "./media/characters/en/front-dressed.svg",
  32010. extra: 1697 / 1563,
  32011. bottom: 103 / 1800
  32012. }
  32013. },
  32014. backDressed: {
  32015. height: math.unit(6, "feet"),
  32016. weight: math.unit(150, "lb"),
  32017. name: "Back (Dressed)",
  32018. image: {
  32019. source: "./media/characters/en/back-dressed.svg",
  32020. extra: 1700 / 1570,
  32021. bottom: 51 / 1751
  32022. }
  32023. },
  32024. },
  32025. [
  32026. {
  32027. name: "Macro",
  32028. height: math.unit(210, "feet"),
  32029. default: true
  32030. },
  32031. ]
  32032. ))
  32033. characterMakers.push(() => makeCharacter(
  32034. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  32035. {
  32036. front: {
  32037. height: math.unit(6, "feet"),
  32038. weight: math.unit(150, "lb"),
  32039. name: "Front",
  32040. image: {
  32041. source: "./media/characters/haze-orris/front.svg",
  32042. extra: 3975 / 3525,
  32043. bottom: 137 / 4112
  32044. }
  32045. },
  32046. },
  32047. [
  32048. {
  32049. name: "Micro",
  32050. height: math.unit(150, "mm"),
  32051. default: true
  32052. },
  32053. ]
  32054. ))
  32055. characterMakers.push(() => makeCharacter(
  32056. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  32057. {
  32058. front: {
  32059. height: math.unit(6, "feet"),
  32060. weight: math.unit(150, "lb"),
  32061. name: "Front",
  32062. image: {
  32063. source: "./media/characters/casselene-yaro/front.svg",
  32064. extra: 4721 / 4541,
  32065. bottom: 82 / 4803
  32066. }
  32067. },
  32068. back: {
  32069. height: math.unit(6, "feet"),
  32070. weight: math.unit(150, "lb"),
  32071. name: "Back",
  32072. image: {
  32073. source: "./media/characters/casselene-yaro/back.svg",
  32074. extra: 4569 / 4377,
  32075. bottom: 69 / 4638
  32076. }
  32077. },
  32078. dressed: {
  32079. height: math.unit(6, "feet"),
  32080. weight: math.unit(150, "lb"),
  32081. name: "Dressed",
  32082. image: {
  32083. source: "./media/characters/casselene-yaro/dressed.svg",
  32084. extra: 4721 / 4541,
  32085. bottom: 82 / 4803
  32086. }
  32087. },
  32088. maw: {
  32089. height: math.unit(1, "feet"),
  32090. name: "Maw",
  32091. image: {
  32092. source: "./media/characters/casselene-yaro/maw.svg"
  32093. }
  32094. },
  32095. },
  32096. [
  32097. {
  32098. name: "Macro",
  32099. height: math.unit(190, "feet"),
  32100. default: true
  32101. },
  32102. ]
  32103. ))
  32104. characterMakers.push(() => makeCharacter(
  32105. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  32106. {
  32107. front: {
  32108. height: math.unit(10, "feet"),
  32109. weight: math.unit(15015, "lb"),
  32110. name: "Front",
  32111. image: {
  32112. source: "./media/characters/platine/front.svg",
  32113. extra: 1741/1650,
  32114. bottom: 84/1825
  32115. }
  32116. },
  32117. side: {
  32118. height: math.unit(10, "feet"),
  32119. weight: math.unit(15015, "lb"),
  32120. name: "Side",
  32121. image: {
  32122. source: "./media/characters/platine/side.svg",
  32123. extra: 1790/1705,
  32124. bottom: 29/1819
  32125. }
  32126. },
  32127. },
  32128. [
  32129. {
  32130. name: "Normal",
  32131. height: math.unit(10, "feet"),
  32132. default: true
  32133. },
  32134. {
  32135. name: "Macro",
  32136. height: math.unit(100, "feet")
  32137. },
  32138. {
  32139. name: "Megamacro",
  32140. height: math.unit(1000, "feet")
  32141. },
  32142. ]
  32143. ))
  32144. characterMakers.push(() => makeCharacter(
  32145. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  32146. {
  32147. front: {
  32148. height: math.unit(15 + 5 / 12, "feet"),
  32149. weight: math.unit(4600, "lb"),
  32150. name: "Front",
  32151. image: {
  32152. source: "./media/characters/neapolitan-ananassa/front.svg",
  32153. extra: 2903 / 2736,
  32154. bottom: 0 / 2903
  32155. }
  32156. },
  32157. side: {
  32158. height: math.unit(15 + 5 / 12, "feet"),
  32159. weight: math.unit(4600, "lb"),
  32160. name: "Side",
  32161. image: {
  32162. source: "./media/characters/neapolitan-ananassa/side.svg",
  32163. extra: 2925 / 2719,
  32164. bottom: 0 / 2925
  32165. }
  32166. },
  32167. back: {
  32168. height: math.unit(15 + 5 / 12, "feet"),
  32169. weight: math.unit(4600, "lb"),
  32170. name: "Back",
  32171. image: {
  32172. source: "./media/characters/neapolitan-ananassa/back.svg",
  32173. extra: 2903 / 2736,
  32174. bottom: 0 / 2903
  32175. }
  32176. },
  32177. },
  32178. [
  32179. {
  32180. name: "Normal",
  32181. height: math.unit(15 + 5 / 12, "feet"),
  32182. default: true
  32183. },
  32184. {
  32185. name: "Post-Millenium",
  32186. height: math.unit(35 + 5 / 12, "feet")
  32187. },
  32188. {
  32189. name: "Post-Era",
  32190. height: math.unit(450 + 5 / 12, "feet")
  32191. },
  32192. ]
  32193. ))
  32194. characterMakers.push(() => makeCharacter(
  32195. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  32196. {
  32197. front: {
  32198. height: math.unit(300, "meters"),
  32199. weight: math.unit(125000, "tonnes"),
  32200. name: "Front",
  32201. image: {
  32202. source: "./media/characters/pazuzu/front.svg",
  32203. extra: 877 / 794,
  32204. bottom: 47 / 924
  32205. }
  32206. },
  32207. },
  32208. [
  32209. {
  32210. name: "Macro",
  32211. height: math.unit(300, "meters"),
  32212. default: true
  32213. },
  32214. ]
  32215. ))
  32216. characterMakers.push(() => makeCharacter(
  32217. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  32218. {
  32219. side: {
  32220. height: math.unit(10 + 7 / 12, "feet"),
  32221. weight: math.unit(2.5, "tons"),
  32222. name: "Side",
  32223. image: {
  32224. source: "./media/characters/aasha/side.svg",
  32225. extra: 1345 / 1245,
  32226. bottom: 111 / 1456
  32227. }
  32228. },
  32229. back: {
  32230. height: math.unit(10 + 7 / 12, "feet"),
  32231. weight: math.unit(2.5, "tons"),
  32232. name: "Back",
  32233. image: {
  32234. source: "./media/characters/aasha/back.svg",
  32235. extra: 1133 / 1057,
  32236. bottom: 257 / 1390
  32237. }
  32238. },
  32239. },
  32240. [
  32241. {
  32242. name: "Normal",
  32243. height: math.unit(10 + 7 / 12, "feet"),
  32244. default: true
  32245. },
  32246. ]
  32247. ))
  32248. characterMakers.push(() => makeCharacter(
  32249. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  32250. {
  32251. front: {
  32252. height: math.unit(6 + 3 / 12, "feet"),
  32253. name: "Front",
  32254. image: {
  32255. source: "./media/characters/nevan/front.svg",
  32256. extra: 704 / 704,
  32257. bottom: 28 / 732
  32258. }
  32259. },
  32260. back: {
  32261. height: math.unit(6 + 3 / 12, "feet"),
  32262. name: "Back",
  32263. image: {
  32264. source: "./media/characters/nevan/back.svg",
  32265. extra: 714 / 714,
  32266. bottom: 21 / 735
  32267. }
  32268. },
  32269. frontFlaccid: {
  32270. height: math.unit(6 + 3 / 12, "feet"),
  32271. name: "Front (Flaccid)",
  32272. image: {
  32273. source: "./media/characters/nevan/front-flaccid.svg",
  32274. extra: 704 / 704,
  32275. bottom: 28 / 732
  32276. }
  32277. },
  32278. frontErect: {
  32279. height: math.unit(6 + 3 / 12, "feet"),
  32280. name: "Front (Erect)",
  32281. image: {
  32282. source: "./media/characters/nevan/front-erect.svg",
  32283. extra: 704 / 704,
  32284. bottom: 28 / 732
  32285. }
  32286. },
  32287. backFlaccid: {
  32288. height: math.unit(6 + 3 / 12, "feet"),
  32289. name: "Back (Flaccid)",
  32290. image: {
  32291. source: "./media/characters/nevan/back-flaccid.svg",
  32292. extra: 714 / 714,
  32293. bottom: 21 / 735
  32294. }
  32295. },
  32296. },
  32297. [
  32298. {
  32299. name: "Normal",
  32300. height: math.unit(6 + 3 / 12, "feet"),
  32301. default: true
  32302. },
  32303. ]
  32304. ))
  32305. characterMakers.push(() => makeCharacter(
  32306. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32307. {
  32308. front: {
  32309. height: math.unit(4, "feet"),
  32310. name: "Front",
  32311. image: {
  32312. source: "./media/characters/arhan/front.svg",
  32313. extra: 3368 / 3133,
  32314. bottom: 0 / 3368
  32315. }
  32316. },
  32317. side: {
  32318. height: math.unit(4, "feet"),
  32319. name: "Side",
  32320. image: {
  32321. source: "./media/characters/arhan/side.svg",
  32322. extra: 3347 / 3105,
  32323. bottom: 0 / 3347
  32324. }
  32325. },
  32326. tongue: {
  32327. height: math.unit(1.42, "feet"),
  32328. name: "Tongue",
  32329. image: {
  32330. source: "./media/characters/arhan/tongue.svg"
  32331. }
  32332. },
  32333. head: {
  32334. height: math.unit(0.85, "feet"),
  32335. name: "Head",
  32336. image: {
  32337. source: "./media/characters/arhan/head.svg"
  32338. }
  32339. },
  32340. },
  32341. [
  32342. {
  32343. name: "Normal",
  32344. height: math.unit(4, "feet"),
  32345. default: true
  32346. },
  32347. ]
  32348. ))
  32349. characterMakers.push(() => makeCharacter(
  32350. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32351. {
  32352. front: {
  32353. height: math.unit(5 + 7.5 / 12, "feet"),
  32354. weight: math.unit(120, "lb"),
  32355. name: "Front",
  32356. image: {
  32357. source: "./media/characters/digi-duncan/front.svg",
  32358. extra: 330 / 326,
  32359. bottom: 16 / 346
  32360. }
  32361. },
  32362. side: {
  32363. height: math.unit(5 + 7.5 / 12, "feet"),
  32364. weight: math.unit(120, "lb"),
  32365. name: "Side",
  32366. image: {
  32367. source: "./media/characters/digi-duncan/side.svg",
  32368. extra: 341 / 337,
  32369. bottom: 1 / 342
  32370. }
  32371. },
  32372. back: {
  32373. height: math.unit(5 + 7.5 / 12, "feet"),
  32374. weight: math.unit(120, "lb"),
  32375. name: "Back",
  32376. image: {
  32377. source: "./media/characters/digi-duncan/back.svg",
  32378. extra: 330 / 326,
  32379. bottom: 12 / 342
  32380. }
  32381. },
  32382. },
  32383. [
  32384. {
  32385. name: "Speck",
  32386. height: math.unit(0.25, "mm")
  32387. },
  32388. {
  32389. name: "Micro",
  32390. height: math.unit(5, "mm")
  32391. },
  32392. {
  32393. name: "Tiny",
  32394. height: math.unit(0.5, "inches"),
  32395. default: true
  32396. },
  32397. {
  32398. name: "Human",
  32399. height: math.unit(5 + 7.5 / 12, "feet")
  32400. },
  32401. {
  32402. name: "Minigiant",
  32403. height: math.unit(8 + 5.25, "feet")
  32404. },
  32405. {
  32406. name: "Giant",
  32407. height: math.unit(2000, "feet")
  32408. },
  32409. {
  32410. name: "Mega",
  32411. height: math.unit(371.1, "miles")
  32412. },
  32413. ]
  32414. ))
  32415. characterMakers.push(() => makeCharacter(
  32416. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32417. {
  32418. front: {
  32419. height: math.unit(2, "meters"),
  32420. weight: math.unit(350, "kg"),
  32421. name: "Front",
  32422. image: {
  32423. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32424. extra: 898 / 838,
  32425. bottom: 9 / 907
  32426. }
  32427. },
  32428. },
  32429. [
  32430. {
  32431. name: "Micro",
  32432. height: math.unit(8, "meters")
  32433. },
  32434. {
  32435. name: "Normal",
  32436. height: math.unit(50, "meters"),
  32437. default: true
  32438. },
  32439. {
  32440. name: "Macro",
  32441. height: math.unit(500, "meters")
  32442. },
  32443. ]
  32444. ))
  32445. characterMakers.push(() => makeCharacter(
  32446. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32447. {
  32448. front: {
  32449. height: math.unit(6 + 6 / 12, "feet"),
  32450. name: "Front",
  32451. image: {
  32452. source: "./media/characters/khardesh/front.svg",
  32453. extra: 1788/1596,
  32454. bottom: 66/1854
  32455. }
  32456. },
  32457. back: {
  32458. height: math.unit(6 + 6 / 12, "feet"),
  32459. name: "Back",
  32460. image: {
  32461. source: "./media/characters/khardesh/back.svg",
  32462. extra: 1781/1584,
  32463. bottom: 68/1849
  32464. }
  32465. },
  32466. },
  32467. [
  32468. {
  32469. name: "Normal",
  32470. height: math.unit(6 + 6 / 12, "feet"),
  32471. default: true
  32472. },
  32473. {
  32474. name: "Normal+",
  32475. height: math.unit(4, "meters")
  32476. },
  32477. {
  32478. name: "Macro",
  32479. height: math.unit(50, "meters")
  32480. },
  32481. {
  32482. name: "Macro+",
  32483. height: math.unit(100, "meters")
  32484. },
  32485. {
  32486. name: "Megamacro",
  32487. height: math.unit(20, "km")
  32488. },
  32489. ]
  32490. ))
  32491. characterMakers.push(() => makeCharacter(
  32492. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32493. {
  32494. front: {
  32495. height: math.unit(6, "feet"),
  32496. weight: math.unit(150, "lb"),
  32497. name: "Front",
  32498. image: {
  32499. source: "./media/characters/kosho/front.svg",
  32500. extra: 1847 / 1847,
  32501. bottom: 86 / 1933
  32502. }
  32503. },
  32504. },
  32505. [
  32506. {
  32507. name: "Second-stage micro",
  32508. height: math.unit(0.5, "inches")
  32509. },
  32510. {
  32511. name: "First-stage micro",
  32512. height: math.unit(6, "inches")
  32513. },
  32514. {
  32515. name: "Normal",
  32516. height: math.unit(6, "feet"),
  32517. default: true
  32518. },
  32519. {
  32520. name: "First-stage macro",
  32521. height: math.unit(72, "feet")
  32522. },
  32523. {
  32524. name: "Second-stage macro",
  32525. height: math.unit(864, "feet")
  32526. },
  32527. ]
  32528. ))
  32529. characterMakers.push(() => makeCharacter(
  32530. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32531. {
  32532. normal: {
  32533. height: math.unit(4 + 6 / 12, "feet"),
  32534. name: "Normal",
  32535. image: {
  32536. source: "./media/characters/hydra/normal.svg",
  32537. extra: 2833 / 2634,
  32538. bottom: 68 / 2901
  32539. }
  32540. },
  32541. smol: {
  32542. height: math.unit(0.705, "inches"),
  32543. name: "Smol",
  32544. image: {
  32545. source: "./media/characters/hydra/smol.svg",
  32546. extra: 2715 / 2540,
  32547. bottom: 0 / 2715
  32548. }
  32549. },
  32550. },
  32551. [
  32552. {
  32553. name: "Normal",
  32554. height: math.unit(4 + 6 / 12, "feet"),
  32555. default: true
  32556. }
  32557. ]
  32558. ))
  32559. characterMakers.push(() => makeCharacter(
  32560. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32561. {
  32562. front: {
  32563. height: math.unit(0.6, "cm"),
  32564. name: "Front",
  32565. image: {
  32566. source: "./media/characters/daz/front.svg",
  32567. extra: 1682 / 1164,
  32568. bottom: 42 / 1724
  32569. }
  32570. },
  32571. },
  32572. [
  32573. {
  32574. name: "Normal",
  32575. height: math.unit(0.6, "cm"),
  32576. default: true
  32577. },
  32578. ]
  32579. ))
  32580. characterMakers.push(() => makeCharacter(
  32581. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32582. {
  32583. front: {
  32584. height: math.unit(6, "feet"),
  32585. weight: math.unit(235, "lb"),
  32586. name: "Front",
  32587. image: {
  32588. source: "./media/characters/theo-pangolin/front.svg",
  32589. extra: 1996 / 1969,
  32590. bottom: 115 / 2111
  32591. }
  32592. },
  32593. back: {
  32594. height: math.unit(6, "feet"),
  32595. weight: math.unit(235, "lb"),
  32596. name: "Back",
  32597. image: {
  32598. source: "./media/characters/theo-pangolin/back.svg",
  32599. extra: 1979 / 1979,
  32600. bottom: 40 / 2019
  32601. }
  32602. },
  32603. feral: {
  32604. height: math.unit(2, "feet"),
  32605. weight: math.unit(30, "lb"),
  32606. name: "Feral",
  32607. image: {
  32608. source: "./media/characters/theo-pangolin/feral.svg",
  32609. extra: 803 / 791,
  32610. bottom: 181 / 984
  32611. }
  32612. },
  32613. footFive: {
  32614. height: math.unit(1.43, "feet"),
  32615. name: "Foot (Five Toes)",
  32616. image: {
  32617. source: "./media/characters/theo-pangolin/foot-five.svg"
  32618. }
  32619. },
  32620. footFour: {
  32621. height: math.unit(1.43, "feet"),
  32622. name: "Foot (Four Toes)",
  32623. image: {
  32624. source: "./media/characters/theo-pangolin/foot-four.svg"
  32625. }
  32626. },
  32627. handFour: {
  32628. height: math.unit(0.81, "feet"),
  32629. name: "Hand (Four Fingers)",
  32630. image: {
  32631. source: "./media/characters/theo-pangolin/hand-four.svg"
  32632. }
  32633. },
  32634. handThree: {
  32635. height: math.unit(0.81, "feet"),
  32636. name: "Hand (Three Fingers)",
  32637. image: {
  32638. source: "./media/characters/theo-pangolin/hand-three.svg"
  32639. }
  32640. },
  32641. headFront: {
  32642. height: math.unit(1.37, "feet"),
  32643. name: "Head (Front)",
  32644. image: {
  32645. source: "./media/characters/theo-pangolin/head-front.svg"
  32646. }
  32647. },
  32648. headSide: {
  32649. height: math.unit(1.43, "feet"),
  32650. name: "Head (Side)",
  32651. image: {
  32652. source: "./media/characters/theo-pangolin/head-side.svg"
  32653. }
  32654. },
  32655. tongue: {
  32656. height: math.unit(2.29, "feet"),
  32657. name: "Tongue",
  32658. image: {
  32659. source: "./media/characters/theo-pangolin/tongue.svg"
  32660. }
  32661. },
  32662. },
  32663. [
  32664. {
  32665. name: "Normal",
  32666. height: math.unit(6, "feet")
  32667. },
  32668. {
  32669. name: "Macro",
  32670. height: math.unit(400, "feet"),
  32671. default: true
  32672. },
  32673. ]
  32674. ))
  32675. characterMakers.push(() => makeCharacter(
  32676. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32677. {
  32678. front: {
  32679. height: math.unit(6, "inches"),
  32680. weight: math.unit(0.036, "kg"),
  32681. name: "Front",
  32682. image: {
  32683. source: "./media/characters/renée/front.svg",
  32684. extra: 900 / 886,
  32685. bottom: 8 / 908
  32686. }
  32687. },
  32688. },
  32689. [
  32690. {
  32691. name: "Nano",
  32692. height: math.unit(1, "nm")
  32693. },
  32694. {
  32695. name: "Micro",
  32696. height: math.unit(1, "mm")
  32697. },
  32698. {
  32699. name: "Normal",
  32700. height: math.unit(6, "inches")
  32701. },
  32702. {
  32703. name: "Macro",
  32704. height: math.unit(2000, "feet"),
  32705. default: true
  32706. },
  32707. {
  32708. name: "Megamacro",
  32709. height: math.unit(2, "km")
  32710. },
  32711. {
  32712. name: "Gigamacro",
  32713. height: math.unit(2000, "km")
  32714. },
  32715. {
  32716. name: "Teramacro",
  32717. height: math.unit(250000, "km")
  32718. },
  32719. ]
  32720. ))
  32721. characterMakers.push(() => makeCharacter(
  32722. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32723. {
  32724. front: {
  32725. height: math.unit(4, "meters"),
  32726. weight: math.unit(150, "kg"),
  32727. name: "Front",
  32728. image: {
  32729. source: "./media/characters/caledvwlch/front.svg",
  32730. extra: 1757/1537,
  32731. bottom: 31/1788
  32732. }
  32733. },
  32734. side: {
  32735. height: math.unit(4, "meters"),
  32736. weight: math.unit(150, "kg"),
  32737. name: "Side",
  32738. image: {
  32739. source: "./media/characters/caledvwlch/side.svg",
  32740. extra: 1605 / 1536,
  32741. bottom: 31 / 1636
  32742. }
  32743. },
  32744. back: {
  32745. height: math.unit(4, "meters"),
  32746. weight: math.unit(150, "kg"),
  32747. name: "Back",
  32748. image: {
  32749. source: "./media/characters/caledvwlch/back.svg",
  32750. extra: 1635 / 1565,
  32751. bottom: 27 / 1662
  32752. }
  32753. },
  32754. },
  32755. [
  32756. {
  32757. name: "\"Incognito\"",
  32758. height: math.unit(4, "meters")
  32759. },
  32760. {
  32761. name: "Small rampage",
  32762. height: math.unit(600, "meters")
  32763. },
  32764. {
  32765. name: "Mega",
  32766. height: math.unit(30, "km")
  32767. },
  32768. {
  32769. name: "Home-size",
  32770. height: math.unit(50, "km"),
  32771. default: true
  32772. },
  32773. {
  32774. name: "Giga",
  32775. height: math.unit(300, "km")
  32776. },
  32777. {
  32778. name: "Lounging",
  32779. height: math.unit(11000, "km")
  32780. },
  32781. {
  32782. name: "Planet snacking",
  32783. height: math.unit(2000000, "km")
  32784. },
  32785. ]
  32786. ))
  32787. characterMakers.push(() => makeCharacter(
  32788. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32789. {
  32790. front: {
  32791. height: math.unit(6, "feet"),
  32792. weight: math.unit(215, "lb"),
  32793. name: "Front",
  32794. image: {
  32795. source: "./media/characters/sapphire-svell/front.svg",
  32796. extra: 495 / 455,
  32797. bottom: 20 / 515
  32798. }
  32799. },
  32800. back: {
  32801. height: math.unit(6, "feet"),
  32802. weight: math.unit(216, "lb"),
  32803. name: "Back",
  32804. image: {
  32805. source: "./media/characters/sapphire-svell/back.svg",
  32806. extra: 497 / 477,
  32807. bottom: 7 / 504
  32808. }
  32809. },
  32810. maw: {
  32811. height: math.unit(1.57, "feet"),
  32812. name: "Maw",
  32813. image: {
  32814. source: "./media/characters/sapphire-svell/maw.svg"
  32815. }
  32816. },
  32817. foot: {
  32818. height: math.unit(1.07, "feet"),
  32819. name: "Foot",
  32820. image: {
  32821. source: "./media/characters/sapphire-svell/foot.svg"
  32822. }
  32823. },
  32824. toering: {
  32825. height: math.unit(1.7, "inch"),
  32826. name: "Toering",
  32827. image: {
  32828. source: "./media/characters/sapphire-svell/toering.svg"
  32829. }
  32830. },
  32831. },
  32832. [
  32833. {
  32834. name: "Normal",
  32835. height: math.unit(300, "feet"),
  32836. default: true
  32837. },
  32838. {
  32839. name: "Augmented",
  32840. height: math.unit(1250, "feet")
  32841. },
  32842. {
  32843. name: "Unleashed",
  32844. height: math.unit(3000, "feet")
  32845. },
  32846. ]
  32847. ))
  32848. characterMakers.push(() => makeCharacter(
  32849. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32850. {
  32851. side: {
  32852. height: math.unit(2 + 3 / 12, "feet"),
  32853. weight: math.unit(110, "lb"),
  32854. name: "Side",
  32855. image: {
  32856. source: "./media/characters/glitch-flux/side.svg",
  32857. extra: 997 / 805,
  32858. bottom: 20 / 1017
  32859. }
  32860. },
  32861. },
  32862. [
  32863. {
  32864. name: "Normal",
  32865. height: math.unit(2 + 3 / 12, "feet"),
  32866. default: true
  32867. },
  32868. ]
  32869. ))
  32870. characterMakers.push(() => makeCharacter(
  32871. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32872. {
  32873. front: {
  32874. height: math.unit(4, "meters"),
  32875. name: "Front",
  32876. image: {
  32877. source: "./media/characters/mid/front.svg",
  32878. extra: 507 / 476,
  32879. bottom: 17 / 524
  32880. }
  32881. },
  32882. back: {
  32883. height: math.unit(4, "meters"),
  32884. name: "Back",
  32885. image: {
  32886. source: "./media/characters/mid/back.svg",
  32887. extra: 519 / 487,
  32888. bottom: 7 / 526
  32889. }
  32890. },
  32891. stuck: {
  32892. height: math.unit(2.2, "meters"),
  32893. name: "Stuck",
  32894. image: {
  32895. source: "./media/characters/mid/stuck.svg",
  32896. extra: 1951 / 1869,
  32897. bottom: 88 / 2039
  32898. }
  32899. }
  32900. },
  32901. [
  32902. {
  32903. name: "Normal",
  32904. height: math.unit(4, "meters"),
  32905. default: true
  32906. },
  32907. {
  32908. name: "Big",
  32909. height: math.unit(10, "meters")
  32910. },
  32911. {
  32912. name: "Macro",
  32913. height: math.unit(800, "meters")
  32914. },
  32915. {
  32916. name: "Megamacro",
  32917. height: math.unit(100, "km")
  32918. },
  32919. {
  32920. name: "Overgrown",
  32921. height: math.unit(1, "parsec")
  32922. },
  32923. ]
  32924. ))
  32925. characterMakers.push(() => makeCharacter(
  32926. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32927. {
  32928. front: {
  32929. height: math.unit(2.5, "meters"),
  32930. weight: math.unit(225, "kg"),
  32931. name: "Front",
  32932. image: {
  32933. source: "./media/characters/iris/front.svg",
  32934. extra: 3348 / 3251,
  32935. bottom: 205 / 3553
  32936. }
  32937. },
  32938. maw: {
  32939. height: math.unit(0.56, "meter"),
  32940. name: "Maw",
  32941. image: {
  32942. source: "./media/characters/iris/maw.svg"
  32943. }
  32944. },
  32945. },
  32946. [
  32947. {
  32948. name: "Mewter cat",
  32949. height: math.unit(1.2, "meters")
  32950. },
  32951. {
  32952. name: "Normal",
  32953. height: math.unit(2.5, "meters"),
  32954. default: true
  32955. },
  32956. {
  32957. name: "Minimacro",
  32958. height: math.unit(18, "feet")
  32959. },
  32960. {
  32961. name: "Macro",
  32962. height: math.unit(140, "feet")
  32963. },
  32964. {
  32965. name: "Macro+",
  32966. height: math.unit(180, "meters")
  32967. },
  32968. {
  32969. name: "Megamacro",
  32970. height: math.unit(2746, "meters")
  32971. },
  32972. ]
  32973. ))
  32974. characterMakers.push(() => makeCharacter(
  32975. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32976. {
  32977. front: {
  32978. height: math.unit(6, "feet"),
  32979. weight: math.unit(135, "lb"),
  32980. name: "Front",
  32981. image: {
  32982. source: "./media/characters/axel/front.svg",
  32983. extra: 908 / 908,
  32984. bottom: 58 / 966
  32985. }
  32986. },
  32987. side: {
  32988. height: math.unit(6, "feet"),
  32989. weight: math.unit(135, "lb"),
  32990. name: "Side",
  32991. image: {
  32992. source: "./media/characters/axel/side.svg",
  32993. extra: 958 / 958,
  32994. bottom: 11 / 969
  32995. }
  32996. },
  32997. back: {
  32998. height: math.unit(6, "feet"),
  32999. weight: math.unit(135, "lb"),
  33000. name: "Back",
  33001. image: {
  33002. source: "./media/characters/axel/back.svg",
  33003. extra: 887 / 887,
  33004. bottom: 34 / 921
  33005. }
  33006. },
  33007. head: {
  33008. height: math.unit(1.07, "feet"),
  33009. name: "Head",
  33010. image: {
  33011. source: "./media/characters/axel/head.svg"
  33012. }
  33013. },
  33014. beak: {
  33015. height: math.unit(1.4, "feet"),
  33016. name: "Beak",
  33017. image: {
  33018. source: "./media/characters/axel/beak.svg"
  33019. }
  33020. },
  33021. beakSide: {
  33022. height: math.unit(1.4, "feet"),
  33023. name: "Beak Side",
  33024. image: {
  33025. source: "./media/characters/axel/beak-side.svg"
  33026. }
  33027. },
  33028. sheath: {
  33029. height: math.unit(0.5, "feet"),
  33030. name: "Sheath",
  33031. image: {
  33032. source: "./media/characters/axel/sheath.svg"
  33033. }
  33034. },
  33035. dick: {
  33036. height: math.unit(0.98, "feet"),
  33037. name: "Dick",
  33038. image: {
  33039. source: "./media/characters/axel/dick.svg"
  33040. }
  33041. },
  33042. },
  33043. [
  33044. {
  33045. name: "Macro",
  33046. height: math.unit(68, "meters"),
  33047. default: true
  33048. },
  33049. ]
  33050. ))
  33051. characterMakers.push(() => makeCharacter(
  33052. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  33053. {
  33054. front: {
  33055. height: math.unit(3.5, "meters"),
  33056. weight: math.unit(1200, "kg"),
  33057. name: "Front",
  33058. image: {
  33059. source: "./media/characters/joanna/front.svg",
  33060. extra: 1596 / 1488,
  33061. bottom: 29 / 1625
  33062. }
  33063. },
  33064. back: {
  33065. height: math.unit(3.5, "meters"),
  33066. weight: math.unit(1200, "kg"),
  33067. name: "Back",
  33068. image: {
  33069. source: "./media/characters/joanna/back.svg",
  33070. extra: 1594 / 1495,
  33071. bottom: 26 / 1620
  33072. }
  33073. },
  33074. frontShorts: {
  33075. height: math.unit(3.5, "meters"),
  33076. weight: math.unit(1200, "kg"),
  33077. name: "Front (Shorts)",
  33078. image: {
  33079. source: "./media/characters/joanna/front-shorts.svg",
  33080. extra: 1596 / 1488,
  33081. bottom: 29 / 1625
  33082. }
  33083. },
  33084. frontBiker: {
  33085. height: math.unit(3.5, "meters"),
  33086. weight: math.unit(1200, "kg"),
  33087. name: "Front (Biker)",
  33088. image: {
  33089. source: "./media/characters/joanna/front-biker.svg",
  33090. extra: 1596 / 1488,
  33091. bottom: 29 / 1625
  33092. }
  33093. },
  33094. backBiker: {
  33095. height: math.unit(3.5, "meters"),
  33096. weight: math.unit(1200, "kg"),
  33097. name: "Back (Biker)",
  33098. image: {
  33099. source: "./media/characters/joanna/back-biker.svg",
  33100. extra: 1594 / 1495,
  33101. bottom: 88 / 1682
  33102. }
  33103. },
  33104. bikeLeft: {
  33105. height: math.unit(2.4, "meters"),
  33106. weight: math.unit(1600, "kg"),
  33107. name: "Bike (Left)",
  33108. image: {
  33109. source: "./media/characters/joanna/bike-left.svg",
  33110. extra: 720 / 720,
  33111. bottom: 8 / 728
  33112. }
  33113. },
  33114. bikeRight: {
  33115. height: math.unit(2.4, "meters"),
  33116. weight: math.unit(1600, "kg"),
  33117. name: "Bike (Right)",
  33118. image: {
  33119. source: "./media/characters/joanna/bike-right.svg",
  33120. extra: 720 / 720,
  33121. bottom: 8 / 728
  33122. }
  33123. },
  33124. },
  33125. [
  33126. {
  33127. name: "Incognito",
  33128. height: math.unit(3.5, "meters")
  33129. },
  33130. {
  33131. name: "Casual Big",
  33132. height: math.unit(200, "meters")
  33133. },
  33134. {
  33135. name: "Macro",
  33136. height: math.unit(600, "meters")
  33137. },
  33138. {
  33139. name: "Original",
  33140. height: math.unit(20, "km"),
  33141. default: true
  33142. },
  33143. {
  33144. name: "Giga",
  33145. height: math.unit(400, "km")
  33146. },
  33147. {
  33148. name: "Lounging",
  33149. height: math.unit(1500, "km")
  33150. },
  33151. {
  33152. name: "Planetary",
  33153. height: math.unit(200000, "km")
  33154. },
  33155. ]
  33156. ))
  33157. characterMakers.push(() => makeCharacter(
  33158. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  33159. {
  33160. front: {
  33161. height: math.unit(6, "feet"),
  33162. weight: math.unit(150, "lb"),
  33163. name: "Front",
  33164. image: {
  33165. source: "./media/characters/hugo-sigil/front.svg",
  33166. extra: 522 / 500,
  33167. bottom: 2 / 524
  33168. }
  33169. },
  33170. back: {
  33171. height: math.unit(6, "feet"),
  33172. weight: math.unit(150, "lb"),
  33173. name: "Back",
  33174. image: {
  33175. source: "./media/characters/hugo-sigil/back.svg",
  33176. extra: 519 / 495,
  33177. bottom: 5 / 524
  33178. }
  33179. },
  33180. maw: {
  33181. height: math.unit(1.4, "feet"),
  33182. weight: math.unit(150, "lb"),
  33183. name: "Maw",
  33184. image: {
  33185. source: "./media/characters/hugo-sigil/maw.svg"
  33186. }
  33187. },
  33188. feet: {
  33189. height: math.unit(1.56, "feet"),
  33190. weight: math.unit(150, "lb"),
  33191. name: "Feet",
  33192. image: {
  33193. source: "./media/characters/hugo-sigil/feet.svg",
  33194. extra: 177 / 177,
  33195. bottom: 12 / 189
  33196. }
  33197. },
  33198. },
  33199. [
  33200. {
  33201. name: "Normal",
  33202. height: math.unit(6, "feet")
  33203. },
  33204. {
  33205. name: "Macro",
  33206. height: math.unit(200, "feet"),
  33207. default: true
  33208. },
  33209. ]
  33210. ))
  33211. characterMakers.push(() => makeCharacter(
  33212. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  33213. {
  33214. front: {
  33215. height: math.unit(6, "feet"),
  33216. weight: math.unit(150, "lb"),
  33217. name: "Front",
  33218. image: {
  33219. source: "./media/characters/peri/front.svg",
  33220. extra: 2354 / 2233,
  33221. bottom: 49 / 2403
  33222. }
  33223. },
  33224. },
  33225. [
  33226. {
  33227. name: "Really Small",
  33228. height: math.unit(1, "nm")
  33229. },
  33230. {
  33231. name: "Micro",
  33232. height: math.unit(4, "inches")
  33233. },
  33234. {
  33235. name: "Normal",
  33236. height: math.unit(7, "inches"),
  33237. default: true
  33238. },
  33239. {
  33240. name: "Macro",
  33241. height: math.unit(400, "feet")
  33242. },
  33243. {
  33244. name: "Megamacro",
  33245. height: math.unit(100, "miles")
  33246. },
  33247. ]
  33248. ))
  33249. characterMakers.push(() => makeCharacter(
  33250. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  33251. {
  33252. frontSlim: {
  33253. height: math.unit(7, "feet"),
  33254. name: "Front (Slim)",
  33255. image: {
  33256. source: "./media/characters/issilora/front-slim.svg",
  33257. extra: 529 / 449,
  33258. bottom: 53 / 582
  33259. }
  33260. },
  33261. sideSlim: {
  33262. height: math.unit(7, "feet"),
  33263. name: "Side (Slim)",
  33264. image: {
  33265. source: "./media/characters/issilora/side-slim.svg",
  33266. extra: 570 / 480,
  33267. bottom: 30 / 600
  33268. }
  33269. },
  33270. backSlim: {
  33271. height: math.unit(7, "feet"),
  33272. name: "Back (Slim)",
  33273. image: {
  33274. source: "./media/characters/issilora/back-slim.svg",
  33275. extra: 537 / 455,
  33276. bottom: 46 / 583
  33277. }
  33278. },
  33279. frontBuff: {
  33280. height: math.unit(7, "feet"),
  33281. name: "Front (Buff)",
  33282. image: {
  33283. source: "./media/characters/issilora/front-buff.svg",
  33284. extra: 2310 / 2035,
  33285. bottom: 335 / 2645
  33286. }
  33287. },
  33288. head: {
  33289. height: math.unit(1.94, "feet"),
  33290. name: "Head",
  33291. image: {
  33292. source: "./media/characters/issilora/head.svg"
  33293. }
  33294. },
  33295. },
  33296. [
  33297. {
  33298. name: "Minimum",
  33299. height: math.unit(7, "feet")
  33300. },
  33301. {
  33302. name: "Comfortable",
  33303. height: math.unit(17, "feet")
  33304. },
  33305. {
  33306. name: "Fun Size",
  33307. height: math.unit(47, "feet")
  33308. },
  33309. {
  33310. name: "Natural Macro",
  33311. height: math.unit(137, "feet"),
  33312. default: true
  33313. },
  33314. {
  33315. name: "Maximum Kaiju",
  33316. height: math.unit(397, "feet")
  33317. },
  33318. ]
  33319. ))
  33320. characterMakers.push(() => makeCharacter(
  33321. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33322. {
  33323. front: {
  33324. height: math.unit(50 + 9/12, "feet"),
  33325. weight: math.unit(32.8, "tons"),
  33326. name: "Front",
  33327. image: {
  33328. source: "./media/characters/irb'iiritaahn/front.svg",
  33329. extra: 1878/1826,
  33330. bottom: 326/2204
  33331. }
  33332. },
  33333. back: {
  33334. height: math.unit(50 + 9/12, "feet"),
  33335. weight: math.unit(32.8, "tons"),
  33336. name: "Back",
  33337. image: {
  33338. source: "./media/characters/irb'iiritaahn/back.svg",
  33339. extra: 2052/2018,
  33340. bottom: 152/2204
  33341. }
  33342. },
  33343. head: {
  33344. height: math.unit(12.86, "feet"),
  33345. name: "Head",
  33346. image: {
  33347. source: "./media/characters/irb'iiritaahn/head.svg"
  33348. }
  33349. },
  33350. maw: {
  33351. height: math.unit(9.66, "feet"),
  33352. name: "Maw",
  33353. image: {
  33354. source: "./media/characters/irb'iiritaahn/maw.svg"
  33355. }
  33356. },
  33357. frontDick: {
  33358. height: math.unit(8.78461, "feet"),
  33359. name: "Front Dick",
  33360. image: {
  33361. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33362. }
  33363. },
  33364. rearDick: {
  33365. height: math.unit(8.78461, "feet"),
  33366. name: "Rear Dick",
  33367. image: {
  33368. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33369. }
  33370. },
  33371. rearDickUnfolded: {
  33372. height: math.unit(8.78, "feet"),
  33373. name: "Rear Dick (Unfolded)",
  33374. image: {
  33375. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33376. }
  33377. },
  33378. wings: {
  33379. height: math.unit(43, "feet"),
  33380. name: "Wings",
  33381. image: {
  33382. source: "./media/characters/irb'iiritaahn/wings.svg"
  33383. }
  33384. },
  33385. },
  33386. [
  33387. {
  33388. name: "Macro",
  33389. height: math.unit(50 + 9/12, "feet"),
  33390. default: true
  33391. },
  33392. ]
  33393. ))
  33394. characterMakers.push(() => makeCharacter(
  33395. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33396. {
  33397. front: {
  33398. height: math.unit(205, "cm"),
  33399. weight: math.unit(102, "kg"),
  33400. name: "Front",
  33401. image: {
  33402. source: "./media/characters/irbisgreif/front.svg",
  33403. extra: 785/706,
  33404. bottom: 13/798
  33405. }
  33406. },
  33407. back: {
  33408. height: math.unit(205, "cm"),
  33409. weight: math.unit(102, "kg"),
  33410. name: "Back",
  33411. image: {
  33412. source: "./media/characters/irbisgreif/back.svg",
  33413. extra: 713/701,
  33414. bottom: 26/739
  33415. }
  33416. },
  33417. frontDressed: {
  33418. height: math.unit(216, "cm"),
  33419. weight: math.unit(102, "kg"),
  33420. name: "Front-dressed",
  33421. image: {
  33422. source: "./media/characters/irbisgreif/front-dressed.svg",
  33423. extra: 902/776,
  33424. bottom: 14/916
  33425. }
  33426. },
  33427. sideDressed: {
  33428. height: math.unit(195, "cm"),
  33429. weight: math.unit(102, "kg"),
  33430. name: "Side-dressed",
  33431. image: {
  33432. source: "./media/characters/irbisgreif/side-dressed.svg",
  33433. extra: 788/688,
  33434. bottom: 21/809
  33435. }
  33436. },
  33437. backDressed: {
  33438. height: math.unit(216, "cm"),
  33439. weight: math.unit(102, "kg"),
  33440. name: "Back-dressed",
  33441. image: {
  33442. source: "./media/characters/irbisgreif/back-dressed.svg",
  33443. extra: 901/783,
  33444. bottom: 10/911
  33445. }
  33446. },
  33447. dick: {
  33448. height: math.unit(0.49, "feet"),
  33449. name: "Dick",
  33450. image: {
  33451. source: "./media/characters/irbisgreif/dick.svg"
  33452. }
  33453. },
  33454. wingTop: {
  33455. height: math.unit(1.93 , "feet"),
  33456. name: "Wing-top",
  33457. image: {
  33458. source: "./media/characters/irbisgreif/wing-top.svg"
  33459. }
  33460. },
  33461. wingBottom: {
  33462. height: math.unit(1.93 , "feet"),
  33463. name: "Wing-bottom",
  33464. image: {
  33465. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33466. }
  33467. },
  33468. },
  33469. [
  33470. {
  33471. name: "Normal",
  33472. height: math.unit(216, "cm"),
  33473. default: true
  33474. },
  33475. ]
  33476. ))
  33477. characterMakers.push(() => makeCharacter(
  33478. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33479. {
  33480. front: {
  33481. height: math.unit(6, "feet"),
  33482. weight: math.unit(150, "lb"),
  33483. name: "Front",
  33484. image: {
  33485. source: "./media/characters/pride/front.svg",
  33486. extra: 1299/1230,
  33487. bottom: 18/1317
  33488. }
  33489. },
  33490. },
  33491. [
  33492. {
  33493. name: "Normal",
  33494. height: math.unit(7, "feet")
  33495. },
  33496. {
  33497. name: "Mini-macro",
  33498. height: math.unit(11, "feet")
  33499. },
  33500. {
  33501. name: "Macro",
  33502. height: math.unit(15, "meters"),
  33503. default: true
  33504. },
  33505. {
  33506. name: "Macro+",
  33507. height: math.unit(40, "meters")
  33508. },
  33509. ]
  33510. ))
  33511. characterMakers.push(() => makeCharacter(
  33512. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33513. {
  33514. front: {
  33515. height: math.unit(4 + 2 / 12, "feet"),
  33516. weight: math.unit(95, "lb"),
  33517. name: "Front",
  33518. image: {
  33519. source: "./media/characters/vaelophis-nyx/front.svg",
  33520. extra: 2532/2330,
  33521. bottom: 0/2532
  33522. }
  33523. },
  33524. back: {
  33525. height: math.unit(4 + 2 / 12, "feet"),
  33526. weight: math.unit(95, "lb"),
  33527. name: "Back",
  33528. image: {
  33529. source: "./media/characters/vaelophis-nyx/back.svg",
  33530. extra: 2484/2361,
  33531. bottom: 0/2484
  33532. }
  33533. },
  33534. feralSide: {
  33535. height: math.unit(2 + 1/12, "feet"),
  33536. weight: math.unit(20, "lb"),
  33537. name: "Feral (Side)",
  33538. image: {
  33539. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33540. extra: 1721/1581,
  33541. bottom: 70/1791
  33542. }
  33543. },
  33544. feralLazing: {
  33545. height: math.unit(1.08, "feet"),
  33546. weight: math.unit(20, "lb"),
  33547. name: "Feral (Lazing)",
  33548. image: {
  33549. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33550. extra: 822/822,
  33551. bottom: 248/1070
  33552. }
  33553. },
  33554. ear: {
  33555. height: math.unit(0.416, "feet"),
  33556. name: "Ear",
  33557. image: {
  33558. source: "./media/characters/vaelophis-nyx/ear.svg"
  33559. }
  33560. },
  33561. eye: {
  33562. height: math.unit(0.0748, "feet"),
  33563. name: "Eye",
  33564. image: {
  33565. source: "./media/characters/vaelophis-nyx/eye.svg"
  33566. }
  33567. },
  33568. mouth: {
  33569. height: math.unit(0.378, "feet"),
  33570. name: "Mouth",
  33571. image: {
  33572. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33573. }
  33574. },
  33575. spade: {
  33576. height: math.unit(0.55, "feet"),
  33577. name: "Spade",
  33578. image: {
  33579. source: "./media/characters/vaelophis-nyx/spade.svg"
  33580. }
  33581. },
  33582. },
  33583. [
  33584. {
  33585. name: "Normal",
  33586. height: math.unit(4 + 2/12, "feet"),
  33587. default: true
  33588. },
  33589. ]
  33590. ))
  33591. characterMakers.push(() => makeCharacter(
  33592. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33593. {
  33594. front: {
  33595. height: math.unit(7, "feet"),
  33596. weight: math.unit(231, "lb"),
  33597. name: "Front",
  33598. image: {
  33599. source: "./media/characters/flux/front.svg",
  33600. extra: 919/871,
  33601. bottom: 0/919
  33602. }
  33603. },
  33604. back: {
  33605. height: math.unit(7, "feet"),
  33606. weight: math.unit(231, "lb"),
  33607. name: "Back",
  33608. image: {
  33609. source: "./media/characters/flux/back.svg",
  33610. extra: 1040/992,
  33611. bottom: 0/1040
  33612. }
  33613. },
  33614. frontDressed: {
  33615. height: math.unit(7, "feet"),
  33616. weight: math.unit(231, "lb"),
  33617. name: "Front (Dressed)",
  33618. image: {
  33619. source: "./media/characters/flux/front-dressed.svg",
  33620. extra: 919/871,
  33621. bottom: 0/919
  33622. }
  33623. },
  33624. feralSide: {
  33625. height: math.unit(5, "feet"),
  33626. weight: math.unit(150, "lb"),
  33627. name: "Feral (Side)",
  33628. image: {
  33629. source: "./media/characters/flux/feral-side.svg",
  33630. extra: 598/528,
  33631. bottom: 28/626
  33632. }
  33633. },
  33634. head: {
  33635. height: math.unit(1.585, "feet"),
  33636. name: "Head",
  33637. image: {
  33638. source: "./media/characters/flux/head.svg"
  33639. }
  33640. },
  33641. headSide: {
  33642. height: math.unit(1.74, "feet"),
  33643. name: "Head (Side)",
  33644. image: {
  33645. source: "./media/characters/flux/head-side.svg"
  33646. }
  33647. },
  33648. headSideFire: {
  33649. height: math.unit(1.76, "feet"),
  33650. name: "Head (Side, Fire)",
  33651. image: {
  33652. source: "./media/characters/flux/head-side-fire.svg"
  33653. }
  33654. },
  33655. },
  33656. [
  33657. {
  33658. name: "Normal",
  33659. height: math.unit(7, "feet"),
  33660. default: true
  33661. },
  33662. ]
  33663. ))
  33664. characterMakers.push(() => makeCharacter(
  33665. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33666. {
  33667. front: {
  33668. height: math.unit(9, "feet"),
  33669. weight: math.unit(1012, "lb"),
  33670. name: "Front",
  33671. image: {
  33672. source: "./media/characters/ulfra-lupae/front.svg",
  33673. extra: 1083/1011,
  33674. bottom: 67/1150
  33675. }
  33676. },
  33677. },
  33678. [
  33679. {
  33680. name: "Micro",
  33681. height: math.unit(6, "inches")
  33682. },
  33683. {
  33684. name: "Socializing",
  33685. height: math.unit(6 + 5/12, "feet")
  33686. },
  33687. {
  33688. name: "Normal",
  33689. height: math.unit(9, "feet"),
  33690. default: true
  33691. },
  33692. {
  33693. name: "Macro",
  33694. height: math.unit(150, "feet")
  33695. },
  33696. ]
  33697. ))
  33698. characterMakers.push(() => makeCharacter(
  33699. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33700. {
  33701. front: {
  33702. height: math.unit(5 + 2/12, "feet"),
  33703. weight: math.unit(120, "lb"),
  33704. name: "Front",
  33705. image: {
  33706. source: "./media/characters/timber/front.svg",
  33707. extra: 2814/2705,
  33708. bottom: 181/2995
  33709. }
  33710. },
  33711. },
  33712. [
  33713. {
  33714. name: "Normal",
  33715. height: math.unit(5 + 2/12, "feet"),
  33716. default: true
  33717. },
  33718. ]
  33719. ))
  33720. characterMakers.push(() => makeCharacter(
  33721. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33722. {
  33723. front: {
  33724. height: math.unit(9, "feet"),
  33725. name: "Front",
  33726. image: {
  33727. source: "./media/characters/nicki/front.svg",
  33728. extra: 1240/990,
  33729. bottom: 45/1285
  33730. },
  33731. form: "anthro",
  33732. default: true
  33733. },
  33734. side: {
  33735. height: math.unit(9, "feet"),
  33736. name: "Side",
  33737. image: {
  33738. source: "./media/characters/nicki/side.svg",
  33739. extra: 1047/973,
  33740. bottom: 61/1108
  33741. },
  33742. form: "anthro"
  33743. },
  33744. back: {
  33745. height: math.unit(9, "feet"),
  33746. name: "Back",
  33747. image: {
  33748. source: "./media/characters/nicki/back.svg",
  33749. extra: 1006/965,
  33750. bottom: 39/1045
  33751. },
  33752. form: "anthro"
  33753. },
  33754. taur: {
  33755. height: math.unit(15, "feet"),
  33756. name: "Taur",
  33757. image: {
  33758. source: "./media/characters/nicki/taur.svg",
  33759. extra: 1592/1347,
  33760. bottom: 0/1592
  33761. },
  33762. form: "taur",
  33763. default: true
  33764. },
  33765. },
  33766. [
  33767. {
  33768. name: "Normal",
  33769. height: math.unit(9, "feet"),
  33770. form: "anthro",
  33771. default: true
  33772. },
  33773. {
  33774. name: "Normal",
  33775. height: math.unit(15, "feet"),
  33776. form: "taur",
  33777. default: true
  33778. }
  33779. ],
  33780. {
  33781. "anthro": {
  33782. name: "Anthro",
  33783. default: true
  33784. },
  33785. "taur": {
  33786. name: "Taur"
  33787. }
  33788. }
  33789. ))
  33790. characterMakers.push(() => makeCharacter(
  33791. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33792. {
  33793. front: {
  33794. height: math.unit(7 + 10/12, "feet"),
  33795. weight: math.unit(3.5, "tons"),
  33796. name: "Front",
  33797. image: {
  33798. source: "./media/characters/lee/front.svg",
  33799. extra: 1773/1615,
  33800. bottom: 86/1859
  33801. }
  33802. },
  33803. hand: {
  33804. height: math.unit(1.78, "feet"),
  33805. name: "Hand",
  33806. image: {
  33807. source: "./media/characters/lee/hand.svg"
  33808. }
  33809. },
  33810. maw: {
  33811. height: math.unit(1.18, "feet"),
  33812. name: "Maw",
  33813. image: {
  33814. source: "./media/characters/lee/maw.svg"
  33815. }
  33816. },
  33817. },
  33818. [
  33819. {
  33820. name: "Normal",
  33821. height: math.unit(7 + 10/12, "feet"),
  33822. default: true
  33823. },
  33824. ]
  33825. ))
  33826. characterMakers.push(() => makeCharacter(
  33827. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33828. {
  33829. front: {
  33830. height: math.unit(9, "feet"),
  33831. name: "Front",
  33832. image: {
  33833. source: "./media/characters/guti/front.svg",
  33834. extra: 4551/4355,
  33835. bottom: 123/4674
  33836. }
  33837. },
  33838. tongue: {
  33839. height: math.unit(1, "feet"),
  33840. name: "Tongue",
  33841. image: {
  33842. source: "./media/characters/guti/tongue.svg"
  33843. }
  33844. },
  33845. paw: {
  33846. height: math.unit(1.18, "feet"),
  33847. name: "Paw",
  33848. image: {
  33849. source: "./media/characters/guti/paw.svg"
  33850. }
  33851. },
  33852. },
  33853. [
  33854. {
  33855. name: "Normal",
  33856. height: math.unit(9, "feet"),
  33857. default: true
  33858. },
  33859. ]
  33860. ))
  33861. characterMakers.push(() => makeCharacter(
  33862. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33863. {
  33864. side: {
  33865. height: math.unit(5, "meters"),
  33866. name: "Side",
  33867. image: {
  33868. source: "./media/characters/vesper/side.svg",
  33869. extra: 1605/1518,
  33870. bottom: 0/1605
  33871. }
  33872. },
  33873. },
  33874. [
  33875. {
  33876. name: "Small",
  33877. height: math.unit(5, "meters")
  33878. },
  33879. {
  33880. name: "Sage",
  33881. height: math.unit(100, "meters"),
  33882. default: true
  33883. },
  33884. {
  33885. name: "Fun Size",
  33886. height: math.unit(600, "meters")
  33887. },
  33888. {
  33889. name: "Goddess",
  33890. height: math.unit(20000, "km")
  33891. },
  33892. {
  33893. name: "Maximum",
  33894. height: math.unit(5, "galaxies")
  33895. },
  33896. ]
  33897. ))
  33898. characterMakers.push(() => makeCharacter(
  33899. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33900. {
  33901. front: {
  33902. height: math.unit(6 + 3/12, "feet"),
  33903. weight: math.unit(190, "lb"),
  33904. name: "Front",
  33905. image: {
  33906. source: "./media/characters/gawain/front.svg",
  33907. extra: 2222/2139,
  33908. bottom: 90/2312
  33909. }
  33910. },
  33911. back: {
  33912. height: math.unit(6 + 3/12, "feet"),
  33913. weight: math.unit(190, "lb"),
  33914. name: "Back",
  33915. image: {
  33916. source: "./media/characters/gawain/back.svg",
  33917. extra: 2199/2111,
  33918. bottom: 73/2272
  33919. }
  33920. },
  33921. },
  33922. [
  33923. {
  33924. name: "Normal",
  33925. height: math.unit(6 + 3/12, "feet"),
  33926. default: true
  33927. },
  33928. ]
  33929. ))
  33930. characterMakers.push(() => makeCharacter(
  33931. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33932. {
  33933. side: {
  33934. height: math.unit(3.5, "meters"),
  33935. weight: math.unit(16000, "lb"),
  33936. name: "Side",
  33937. image: {
  33938. source: "./media/characters/dascalti/side.svg",
  33939. extra: 392/273,
  33940. bottom: 47/439
  33941. }
  33942. },
  33943. breath: {
  33944. height: math.unit(7.4, "feet"),
  33945. name: "Breath",
  33946. image: {
  33947. source: "./media/characters/dascalti/breath.svg"
  33948. }
  33949. },
  33950. fed: {
  33951. height: math.unit(3.6, "meters"),
  33952. weight: math.unit(16000, "lb"),
  33953. name: "Fed",
  33954. image: {
  33955. source: "./media/characters/dascalti/fed.svg",
  33956. extra: 1419/820,
  33957. bottom: 95/1514
  33958. }
  33959. },
  33960. },
  33961. [
  33962. {
  33963. name: "Normal",
  33964. height: math.unit(3.5, "meters"),
  33965. default: true
  33966. },
  33967. ]
  33968. ))
  33969. characterMakers.push(() => makeCharacter(
  33970. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33971. {
  33972. front: {
  33973. height: math.unit(3 + 5/12, "feet"),
  33974. name: "Front",
  33975. image: {
  33976. source: "./media/characters/mauve/front.svg",
  33977. extra: 1126/1033,
  33978. bottom: 65/1191
  33979. }
  33980. },
  33981. side: {
  33982. height: math.unit(3 + 5/12, "feet"),
  33983. name: "Side",
  33984. image: {
  33985. source: "./media/characters/mauve/side.svg",
  33986. extra: 1089/1001,
  33987. bottom: 29/1118
  33988. }
  33989. },
  33990. back: {
  33991. height: math.unit(3 + 5/12, "feet"),
  33992. name: "Back",
  33993. image: {
  33994. source: "./media/characters/mauve/back.svg",
  33995. extra: 1173/1053,
  33996. bottom: 109/1282
  33997. }
  33998. },
  33999. },
  34000. [
  34001. {
  34002. name: "Normal",
  34003. height: math.unit(3 + 5/12, "feet"),
  34004. default: true
  34005. },
  34006. ]
  34007. ))
  34008. characterMakers.push(() => makeCharacter(
  34009. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  34010. {
  34011. front: {
  34012. height: math.unit(6 + 3/12, "feet"),
  34013. weight: math.unit(430, "lb"),
  34014. name: "Front",
  34015. image: {
  34016. source: "./media/characters/carlos/front.svg",
  34017. extra: 1964/1913,
  34018. bottom: 70/2034
  34019. }
  34020. },
  34021. },
  34022. [
  34023. {
  34024. name: "Normal",
  34025. height: math.unit(6 + 3/12, "feet"),
  34026. default: true
  34027. },
  34028. ]
  34029. ))
  34030. characterMakers.push(() => makeCharacter(
  34031. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  34032. {
  34033. back: {
  34034. height: math.unit(5 + 10/12, "feet"),
  34035. weight: math.unit(200, "lb"),
  34036. name: "Back",
  34037. image: {
  34038. source: "./media/characters/jax/back.svg",
  34039. extra: 764/739,
  34040. bottom: 25/789
  34041. }
  34042. },
  34043. },
  34044. [
  34045. {
  34046. name: "Normal",
  34047. height: math.unit(5 + 10/12, "feet"),
  34048. default: true
  34049. },
  34050. ]
  34051. ))
  34052. characterMakers.push(() => makeCharacter(
  34053. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  34054. {
  34055. front: {
  34056. height: math.unit(8, "feet"),
  34057. weight: math.unit(250, "lb"),
  34058. name: "Front",
  34059. image: {
  34060. source: "./media/characters/eikthynir/front.svg",
  34061. extra: 1332/1166,
  34062. bottom: 82/1414
  34063. }
  34064. },
  34065. back: {
  34066. height: math.unit(8, "feet"),
  34067. weight: math.unit(250, "lb"),
  34068. name: "Back",
  34069. image: {
  34070. source: "./media/characters/eikthynir/back.svg",
  34071. extra: 1342/1190,
  34072. bottom: 19/1361
  34073. }
  34074. },
  34075. dick: {
  34076. height: math.unit(2.35, "feet"),
  34077. name: "Dick",
  34078. image: {
  34079. source: "./media/characters/eikthynir/dick.svg"
  34080. }
  34081. },
  34082. },
  34083. [
  34084. {
  34085. name: "Normal",
  34086. height: math.unit(8, "feet"),
  34087. default: true
  34088. },
  34089. ]
  34090. ))
  34091. characterMakers.push(() => makeCharacter(
  34092. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  34093. {
  34094. front: {
  34095. height: math.unit(99, "meters"),
  34096. weight: math.unit(13000, "tons"),
  34097. name: "Front",
  34098. image: {
  34099. source: "./media/characters/zlmos/front.svg",
  34100. extra: 2202/1992,
  34101. bottom: 315/2517
  34102. }
  34103. },
  34104. },
  34105. [
  34106. {
  34107. name: "Macro",
  34108. height: math.unit(99, "meters"),
  34109. default: true
  34110. },
  34111. ]
  34112. ))
  34113. characterMakers.push(() => makeCharacter(
  34114. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  34115. {
  34116. front: {
  34117. height: math.unit(6 + 5/12, "feet"),
  34118. name: "Front",
  34119. image: {
  34120. source: "./media/characters/purri/front.svg",
  34121. extra: 1698/1610,
  34122. bottom: 32/1730
  34123. }
  34124. },
  34125. frontAlt: {
  34126. height: math.unit(6 + 5/12, "feet"),
  34127. name: "Front (Alt)",
  34128. image: {
  34129. source: "./media/characters/purri/front-alt.svg",
  34130. extra: 450/420,
  34131. bottom: 26/476
  34132. }
  34133. },
  34134. boots: {
  34135. height: math.unit(5.5, "feet"),
  34136. name: "Boots",
  34137. image: {
  34138. source: "./media/characters/purri/boots.svg",
  34139. extra: 905/853,
  34140. bottom: 18/923
  34141. },
  34142. extraAttributes: {
  34143. "shoeSize": {
  34144. name: "Shoe Size",
  34145. power: 1,
  34146. type: "length",
  34147. base: math.unit(12, "ShoeSizeMensUS")
  34148. },
  34149. "platformHeight": {
  34150. name: "Platform Height",
  34151. power: 1,
  34152. type: "length",
  34153. base: math.unit(2, "inches")
  34154. },
  34155. }
  34156. },
  34157. lying: {
  34158. height: math.unit(2, "feet"),
  34159. name: "Lying",
  34160. image: {
  34161. source: "./media/characters/purri/lying.svg",
  34162. extra: 940/843,
  34163. bottom: 146/1086
  34164. }
  34165. },
  34166. devious: {
  34167. height: math.unit(1.77, "feet"),
  34168. name: "Devious",
  34169. image: {
  34170. source: "./media/characters/purri/devious.svg",
  34171. extra: 1440/1155,
  34172. bottom: 147/1587
  34173. }
  34174. },
  34175. bean: {
  34176. height: math.unit(1.94, "feet"),
  34177. name: "Bean",
  34178. image: {
  34179. source: "./media/characters/purri/bean.svg"
  34180. }
  34181. },
  34182. },
  34183. [
  34184. {
  34185. name: "Micro",
  34186. height: math.unit(1, "mm")
  34187. },
  34188. {
  34189. name: "Normal",
  34190. height: math.unit(6 + 5/12, "feet"),
  34191. default: true
  34192. },
  34193. {
  34194. name: "Macro :3c",
  34195. height: math.unit(2, "miles")
  34196. },
  34197. ]
  34198. ))
  34199. characterMakers.push(() => makeCharacter(
  34200. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  34201. {
  34202. front: {
  34203. height: math.unit(6 + 2/12, "feet"),
  34204. weight: math.unit(250, "lb"),
  34205. name: "Front",
  34206. image: {
  34207. source: "./media/characters/moonlight/front.svg",
  34208. extra: 1044/908,
  34209. bottom: 56/1100
  34210. }
  34211. },
  34212. feral: {
  34213. height: math.unit(3 + 1/12, "feet"),
  34214. weight: math.unit(50, "kg"),
  34215. name: "Feral",
  34216. image: {
  34217. source: "./media/characters/moonlight/feral.svg",
  34218. extra: 3705/2791,
  34219. bottom: 145/3850
  34220. }
  34221. },
  34222. paw: {
  34223. height: math.unit(1, "feet"),
  34224. name: "Paw",
  34225. image: {
  34226. source: "./media/characters/moonlight/paw.svg"
  34227. }
  34228. },
  34229. paws: {
  34230. height: math.unit(0.98, "feet"),
  34231. name: "Paws",
  34232. image: {
  34233. source: "./media/characters/moonlight/paws.svg",
  34234. extra: 939/939,
  34235. bottom: 50/989
  34236. }
  34237. },
  34238. mouth: {
  34239. height: math.unit(0.48, "feet"),
  34240. name: "Mouth",
  34241. image: {
  34242. source: "./media/characters/moonlight/mouth.svg"
  34243. }
  34244. },
  34245. dick: {
  34246. height: math.unit(1.46, "feet"),
  34247. name: "Dick",
  34248. image: {
  34249. source: "./media/characters/moonlight/dick.svg"
  34250. }
  34251. },
  34252. },
  34253. [
  34254. {
  34255. name: "Normal",
  34256. height: math.unit(6 + 2/12, "feet"),
  34257. default: true
  34258. },
  34259. {
  34260. name: "Macro",
  34261. height: math.unit(300, "feet")
  34262. },
  34263. {
  34264. name: "Macro+",
  34265. height: math.unit(1, "mile")
  34266. },
  34267. {
  34268. name: "Mt. Moon",
  34269. height: math.unit(5, "miles")
  34270. },
  34271. {
  34272. name: "Megamacro",
  34273. height: math.unit(15, "miles")
  34274. },
  34275. ]
  34276. ))
  34277. characterMakers.push(() => makeCharacter(
  34278. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  34279. {
  34280. back: {
  34281. height: math.unit(6, "feet"),
  34282. weight: math.unit(150, "lb"),
  34283. name: "Back",
  34284. image: {
  34285. source: "./media/characters/sylen/back.svg",
  34286. extra: 1335/1273,
  34287. bottom: 107/1442
  34288. }
  34289. },
  34290. },
  34291. [
  34292. {
  34293. name: "Normal",
  34294. height: math.unit(5 + 5/12, "feet")
  34295. },
  34296. {
  34297. name: "Megamacro",
  34298. height: math.unit(3, "miles"),
  34299. default: true
  34300. },
  34301. ]
  34302. ))
  34303. characterMakers.push(() => makeCharacter(
  34304. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  34305. {
  34306. front: {
  34307. height: math.unit(6, "feet"),
  34308. weight: math.unit(190, "lb"),
  34309. name: "Front",
  34310. image: {
  34311. source: "./media/characters/huttser/front.svg",
  34312. extra: 1152/1058,
  34313. bottom: 23/1175
  34314. }
  34315. },
  34316. side: {
  34317. height: math.unit(6, "feet"),
  34318. weight: math.unit(190, "lb"),
  34319. name: "Side",
  34320. image: {
  34321. source: "./media/characters/huttser/side.svg",
  34322. extra: 1174/1065,
  34323. bottom: 18/1192
  34324. }
  34325. },
  34326. back: {
  34327. height: math.unit(6, "feet"),
  34328. weight: math.unit(190, "lb"),
  34329. name: "Back",
  34330. image: {
  34331. source: "./media/characters/huttser/back.svg",
  34332. extra: 1158/1056,
  34333. bottom: 12/1170
  34334. }
  34335. },
  34336. },
  34337. [
  34338. ]
  34339. ))
  34340. characterMakers.push(() => makeCharacter(
  34341. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34342. {
  34343. side: {
  34344. height: math.unit(12 + 9/12, "feet"),
  34345. weight: math.unit(15000, "lb"),
  34346. name: "Side",
  34347. image: {
  34348. source: "./media/characters/faan/side.svg",
  34349. extra: 2747/2697,
  34350. bottom: 0/2747
  34351. }
  34352. },
  34353. front: {
  34354. height: math.unit(12 + 9/12, "feet"),
  34355. weight: math.unit(15000, "lb"),
  34356. name: "Front",
  34357. image: {
  34358. source: "./media/characters/faan/front.svg",
  34359. extra: 607/571,
  34360. bottom: 24/631
  34361. }
  34362. },
  34363. head: {
  34364. height: math.unit(2.85, "feet"),
  34365. name: "Head",
  34366. image: {
  34367. source: "./media/characters/faan/head.svg"
  34368. }
  34369. },
  34370. headAlt: {
  34371. height: math.unit(3.13, "feet"),
  34372. name: "Head-alt",
  34373. image: {
  34374. source: "./media/characters/faan/head-alt.svg"
  34375. }
  34376. },
  34377. },
  34378. [
  34379. {
  34380. name: "Normal",
  34381. height: math.unit(12 + 9/12, "feet"),
  34382. default: true
  34383. },
  34384. ]
  34385. ))
  34386. characterMakers.push(() => makeCharacter(
  34387. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34388. {
  34389. front: {
  34390. height: math.unit(6, "feet"),
  34391. weight: math.unit(300, "lb"),
  34392. name: "Front",
  34393. image: {
  34394. source: "./media/characters/tanio/front.svg",
  34395. extra: 711/673,
  34396. bottom: 25/736
  34397. }
  34398. },
  34399. },
  34400. [
  34401. {
  34402. name: "Normal",
  34403. height: math.unit(6, "feet"),
  34404. default: true
  34405. },
  34406. ]
  34407. ))
  34408. characterMakers.push(() => makeCharacter(
  34409. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34410. {
  34411. front: {
  34412. height: math.unit(3, "inches"),
  34413. name: "Front",
  34414. image: {
  34415. source: "./media/characters/noboru/front.svg",
  34416. extra: 1039/932,
  34417. bottom: 18/1057
  34418. }
  34419. },
  34420. },
  34421. [
  34422. {
  34423. name: "Micro",
  34424. height: math.unit(3, "inches"),
  34425. default: true
  34426. },
  34427. ]
  34428. ))
  34429. characterMakers.push(() => makeCharacter(
  34430. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34431. {
  34432. front: {
  34433. height: math.unit(1.85, "meters"),
  34434. weight: math.unit(80, "kg"),
  34435. name: "Front",
  34436. image: {
  34437. source: "./media/characters/daniel-barrett/front.svg",
  34438. extra: 355/337,
  34439. bottom: 9/364
  34440. }
  34441. },
  34442. },
  34443. [
  34444. {
  34445. name: "Pico",
  34446. height: math.unit(0.0433, "mm")
  34447. },
  34448. {
  34449. name: "Nano",
  34450. height: math.unit(1.5, "mm")
  34451. },
  34452. {
  34453. name: "Micro",
  34454. height: math.unit(5.3, "cm"),
  34455. default: true
  34456. },
  34457. {
  34458. name: "Normal",
  34459. height: math.unit(1.85, "meters")
  34460. },
  34461. {
  34462. name: "Macro",
  34463. height: math.unit(64.7, "meters")
  34464. },
  34465. {
  34466. name: "Megamacro",
  34467. height: math.unit(2.26, "km")
  34468. },
  34469. {
  34470. name: "Gigamacro",
  34471. height: math.unit(79, "km")
  34472. },
  34473. {
  34474. name: "Teramacro",
  34475. height: math.unit(2765, "km")
  34476. },
  34477. {
  34478. name: "Petamacro",
  34479. height: math.unit(96678, "km")
  34480. },
  34481. ]
  34482. ))
  34483. characterMakers.push(() => makeCharacter(
  34484. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34485. {
  34486. front: {
  34487. height: math.unit(30, "meters"),
  34488. weight: math.unit(400, "tons"),
  34489. name: "Front",
  34490. image: {
  34491. source: "./media/characters/zeel/front.svg",
  34492. extra: 2599/2599,
  34493. bottom: 226/2825
  34494. }
  34495. },
  34496. },
  34497. [
  34498. {
  34499. name: "Macro",
  34500. height: math.unit(30, "meters"),
  34501. default: true
  34502. },
  34503. ]
  34504. ))
  34505. characterMakers.push(() => makeCharacter(
  34506. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34507. {
  34508. front: {
  34509. height: math.unit(6 + 7/12, "feet"),
  34510. weight: math.unit(210, "lb"),
  34511. name: "Front",
  34512. image: {
  34513. source: "./media/characters/tarn/front.svg",
  34514. extra: 3517/3220,
  34515. bottom: 91/3608
  34516. }
  34517. },
  34518. back: {
  34519. height: math.unit(6 + 7/12, "feet"),
  34520. weight: math.unit(210, "lb"),
  34521. name: "Back",
  34522. image: {
  34523. source: "./media/characters/tarn/back.svg",
  34524. extra: 3566/3241,
  34525. bottom: 34/3600
  34526. }
  34527. },
  34528. dick: {
  34529. height: math.unit(1.65, "feet"),
  34530. name: "Dick",
  34531. image: {
  34532. source: "./media/characters/tarn/dick.svg"
  34533. }
  34534. },
  34535. paw: {
  34536. height: math.unit(1.80, "feet"),
  34537. name: "Paw",
  34538. image: {
  34539. source: "./media/characters/tarn/paw.svg"
  34540. }
  34541. },
  34542. tongue: {
  34543. height: math.unit(0.97, "feet"),
  34544. name: "Tongue",
  34545. image: {
  34546. source: "./media/characters/tarn/tongue.svg"
  34547. }
  34548. },
  34549. },
  34550. [
  34551. {
  34552. name: "Micro",
  34553. height: math.unit(4, "inches")
  34554. },
  34555. {
  34556. name: "Normal",
  34557. height: math.unit(6 + 7/12, "feet"),
  34558. default: true
  34559. },
  34560. {
  34561. name: "Macro",
  34562. height: math.unit(300, "feet")
  34563. },
  34564. ]
  34565. ))
  34566. characterMakers.push(() => makeCharacter(
  34567. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34568. {
  34569. front: {
  34570. height: math.unit(5 + 7/12, "feet"),
  34571. weight: math.unit(80, "kg"),
  34572. name: "Front",
  34573. image: {
  34574. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34575. extra: 3023/2865,
  34576. bottom: 33/3056
  34577. }
  34578. },
  34579. back: {
  34580. height: math.unit(5 + 7/12, "feet"),
  34581. weight: math.unit(80, "kg"),
  34582. name: "Back",
  34583. image: {
  34584. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34585. extra: 3020/2886,
  34586. bottom: 30/3050
  34587. }
  34588. },
  34589. dick: {
  34590. height: math.unit(0.98, "feet"),
  34591. name: "Dick",
  34592. image: {
  34593. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34594. }
  34595. },
  34596. anatomy: {
  34597. height: math.unit(2.86, "feet"),
  34598. name: "Anatomy",
  34599. image: {
  34600. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  34601. }
  34602. },
  34603. },
  34604. [
  34605. {
  34606. name: "Really Small",
  34607. height: math.unit(2, "inches")
  34608. },
  34609. {
  34610. name: "Micro",
  34611. height: math.unit(5.583, "inches")
  34612. },
  34613. {
  34614. name: "Normal",
  34615. height: math.unit(5 + 7/12, "feet"),
  34616. default: true
  34617. },
  34618. {
  34619. name: "Macro",
  34620. height: math.unit(67, "feet")
  34621. },
  34622. {
  34623. name: "Megamacro",
  34624. height: math.unit(134, "feet")
  34625. },
  34626. ]
  34627. ))
  34628. characterMakers.push(() => makeCharacter(
  34629. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34630. {
  34631. front: {
  34632. height: math.unit(9, "feet"),
  34633. weight: math.unit(120, "lb"),
  34634. name: "Front",
  34635. image: {
  34636. source: "./media/characters/sally/front.svg",
  34637. extra: 1506/1349,
  34638. bottom: 66/1572
  34639. }
  34640. },
  34641. },
  34642. [
  34643. {
  34644. name: "Normal",
  34645. height: math.unit(9, "feet"),
  34646. default: true
  34647. },
  34648. ]
  34649. ))
  34650. characterMakers.push(() => makeCharacter(
  34651. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34652. {
  34653. front: {
  34654. height: math.unit(8, "feet"),
  34655. weight: math.unit(900, "lb"),
  34656. name: "Front",
  34657. image: {
  34658. source: "./media/characters/owen/front.svg",
  34659. extra: 1761/1657,
  34660. bottom: 74/1835
  34661. }
  34662. },
  34663. side: {
  34664. height: math.unit(8, "feet"),
  34665. weight: math.unit(900, "lb"),
  34666. name: "Side",
  34667. image: {
  34668. source: "./media/characters/owen/side.svg",
  34669. extra: 1797/1734,
  34670. bottom: 30/1827
  34671. }
  34672. },
  34673. back: {
  34674. height: math.unit(8, "feet"),
  34675. weight: math.unit(900, "lb"),
  34676. name: "Back",
  34677. image: {
  34678. source: "./media/characters/owen/back.svg",
  34679. extra: 1796/1706,
  34680. bottom: 59/1855
  34681. }
  34682. },
  34683. maw: {
  34684. height: math.unit(1.76, "feet"),
  34685. name: "Maw",
  34686. image: {
  34687. source: "./media/characters/owen/maw.svg"
  34688. }
  34689. },
  34690. },
  34691. [
  34692. {
  34693. name: "Normal",
  34694. height: math.unit(8, "feet"),
  34695. default: true
  34696. },
  34697. ]
  34698. ))
  34699. characterMakers.push(() => makeCharacter(
  34700. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34701. {
  34702. front: {
  34703. height: math.unit(4, "feet"),
  34704. weight: math.unit(400, "lb"),
  34705. name: "Front",
  34706. image: {
  34707. source: "./media/characters/ryth/front.svg",
  34708. extra: 1920/1748,
  34709. bottom: 42/1962
  34710. }
  34711. },
  34712. back: {
  34713. height: math.unit(4, "feet"),
  34714. weight: math.unit(400, "lb"),
  34715. name: "Back",
  34716. image: {
  34717. source: "./media/characters/ryth/back.svg",
  34718. extra: 1897/1690,
  34719. bottom: 89/1986
  34720. }
  34721. },
  34722. mouth: {
  34723. height: math.unit(1.39, "feet"),
  34724. name: "Mouth",
  34725. image: {
  34726. source: "./media/characters/ryth/mouth.svg"
  34727. }
  34728. },
  34729. tailmaw: {
  34730. height: math.unit(1.23, "feet"),
  34731. name: "Tailmaw",
  34732. image: {
  34733. source: "./media/characters/ryth/tailmaw.svg"
  34734. }
  34735. },
  34736. goia: {
  34737. height: math.unit(4, "meters"),
  34738. weight: math.unit(10800, "lb"),
  34739. name: "Goia",
  34740. image: {
  34741. source: "./media/characters/ryth/goia.svg",
  34742. extra: 745/640,
  34743. bottom: 107/852
  34744. }
  34745. },
  34746. goiaFront: {
  34747. height: math.unit(4, "meters"),
  34748. weight: math.unit(10800, "lb"),
  34749. name: "Goia (Front)",
  34750. image: {
  34751. source: "./media/characters/ryth/goia-front.svg",
  34752. extra: 750/586,
  34753. bottom: 114/864
  34754. }
  34755. },
  34756. goiaMaw: {
  34757. height: math.unit(5.55, "feet"),
  34758. name: "Goia Maw",
  34759. image: {
  34760. source: "./media/characters/ryth/goia-maw.svg"
  34761. }
  34762. },
  34763. goiaForepaw: {
  34764. height: math.unit(3.5, "feet"),
  34765. name: "Goia Forepaw",
  34766. image: {
  34767. source: "./media/characters/ryth/goia-forepaw.svg"
  34768. }
  34769. },
  34770. goiaHindpaw: {
  34771. height: math.unit(5.55, "feet"),
  34772. name: "Goia Hindpaw",
  34773. image: {
  34774. source: "./media/characters/ryth/goia-hindpaw.svg"
  34775. }
  34776. },
  34777. },
  34778. [
  34779. {
  34780. name: "Normal",
  34781. height: math.unit(4, "feet"),
  34782. default: true
  34783. },
  34784. ]
  34785. ))
  34786. characterMakers.push(() => makeCharacter(
  34787. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34788. {
  34789. front: {
  34790. height: math.unit(7, "feet"),
  34791. weight: math.unit(180, "lb"),
  34792. name: "Front",
  34793. image: {
  34794. source: "./media/characters/necrolance/front.svg",
  34795. extra: 1062/947,
  34796. bottom: 41/1103
  34797. }
  34798. },
  34799. back: {
  34800. height: math.unit(7, "feet"),
  34801. weight: math.unit(180, "lb"),
  34802. name: "Back",
  34803. image: {
  34804. source: "./media/characters/necrolance/back.svg",
  34805. extra: 1045/984,
  34806. bottom: 14/1059
  34807. }
  34808. },
  34809. wing: {
  34810. height: math.unit(2.67, "feet"),
  34811. name: "Wing",
  34812. image: {
  34813. source: "./media/characters/necrolance/wing.svg"
  34814. }
  34815. },
  34816. },
  34817. [
  34818. {
  34819. name: "Normal",
  34820. height: math.unit(7, "feet"),
  34821. default: true
  34822. },
  34823. ]
  34824. ))
  34825. characterMakers.push(() => makeCharacter(
  34826. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34827. {
  34828. front: {
  34829. height: math.unit(76, "meters"),
  34830. weight: math.unit(30000, "tons"),
  34831. name: "Front",
  34832. image: {
  34833. source: "./media/characters/tyler/front.svg",
  34834. extra: 1640/1640,
  34835. bottom: 114/1754
  34836. }
  34837. },
  34838. },
  34839. [
  34840. {
  34841. name: "Macro",
  34842. height: math.unit(76, "meters"),
  34843. default: true
  34844. },
  34845. ]
  34846. ))
  34847. characterMakers.push(() => makeCharacter(
  34848. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34849. {
  34850. front: {
  34851. height: math.unit(4 + 11/12, "feet"),
  34852. weight: math.unit(132, "lb"),
  34853. name: "Front",
  34854. image: {
  34855. source: "./media/characters/icey/front.svg",
  34856. extra: 2750/2550,
  34857. bottom: 33/2783
  34858. }
  34859. },
  34860. back: {
  34861. height: math.unit(4 + 11/12, "feet"),
  34862. weight: math.unit(132, "lb"),
  34863. name: "Back",
  34864. image: {
  34865. source: "./media/characters/icey/back.svg",
  34866. extra: 2624/2481,
  34867. bottom: 35/2659
  34868. }
  34869. },
  34870. },
  34871. [
  34872. {
  34873. name: "Normal",
  34874. height: math.unit(4 + 11/12, "feet"),
  34875. default: true
  34876. },
  34877. ]
  34878. ))
  34879. characterMakers.push(() => makeCharacter(
  34880. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34881. {
  34882. front: {
  34883. height: math.unit(100, "feet"),
  34884. weight: math.unit(0, "lb"),
  34885. name: "Front",
  34886. image: {
  34887. source: "./media/characters/smile/front.svg",
  34888. extra: 2983/2912,
  34889. bottom: 162/3145
  34890. }
  34891. },
  34892. back: {
  34893. height: math.unit(100, "feet"),
  34894. weight: math.unit(0, "lb"),
  34895. name: "Back",
  34896. image: {
  34897. source: "./media/characters/smile/back.svg",
  34898. extra: 3143/3031,
  34899. bottom: 91/3234
  34900. }
  34901. },
  34902. head: {
  34903. height: math.unit(26.3, "feet"),
  34904. weight: math.unit(0, "lb"),
  34905. name: "Head",
  34906. image: {
  34907. source: "./media/characters/smile/head.svg"
  34908. }
  34909. },
  34910. collar: {
  34911. height: math.unit(5.3, "feet"),
  34912. weight: math.unit(0, "lb"),
  34913. name: "Collar",
  34914. image: {
  34915. source: "./media/characters/smile/collar.svg"
  34916. }
  34917. },
  34918. },
  34919. [
  34920. {
  34921. name: "Macro",
  34922. height: math.unit(100, "feet"),
  34923. default: true
  34924. },
  34925. ]
  34926. ))
  34927. characterMakers.push(() => makeCharacter(
  34928. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34929. {
  34930. dragon: {
  34931. height: math.unit(26, "feet"),
  34932. weight: math.unit(36, "tons"),
  34933. name: "Dragon",
  34934. image: {
  34935. source: "./media/characters/arimphae/dragon.svg",
  34936. extra: 1574/983,
  34937. bottom: 357/1931
  34938. }
  34939. },
  34940. drake: {
  34941. height: math.unit(9, "feet"),
  34942. weight: math.unit(1.5, "tons"),
  34943. name: "Drake",
  34944. image: {
  34945. source: "./media/characters/arimphae/drake.svg",
  34946. extra: 1120/925,
  34947. bottom: 435/1555
  34948. }
  34949. },
  34950. },
  34951. [
  34952. {
  34953. name: "Small",
  34954. height: math.unit(26*5/9, "feet")
  34955. },
  34956. {
  34957. name: "Normal",
  34958. height: math.unit(26, "feet"),
  34959. default: true
  34960. },
  34961. ]
  34962. ))
  34963. characterMakers.push(() => makeCharacter(
  34964. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34965. {
  34966. front: {
  34967. height: math.unit(8 + 9/12, "feet"),
  34968. name: "Front",
  34969. image: {
  34970. source: "./media/characters/xander/front.svg",
  34971. extra: 1237/974,
  34972. bottom: 94/1331
  34973. }
  34974. },
  34975. },
  34976. [
  34977. {
  34978. name: "Normal",
  34979. height: math.unit(8 + 9/12, "feet"),
  34980. default: true
  34981. },
  34982. {
  34983. name: "Gaze Grabber",
  34984. height: math.unit(13 + 8/12, "feet")
  34985. },
  34986. {
  34987. name: "Jaw Dropper",
  34988. height: math.unit(27, "feet")
  34989. },
  34990. {
  34991. name: "Show Stopper",
  34992. height: math.unit(136, "feet")
  34993. },
  34994. {
  34995. name: "Superstar",
  34996. height: math.unit(1.9e6, "miles")
  34997. },
  34998. ]
  34999. ))
  35000. characterMakers.push(() => makeCharacter(
  35001. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  35002. {
  35003. side: {
  35004. height: math.unit(2100, "feet"),
  35005. name: "Side",
  35006. image: {
  35007. source: "./media/characters/osiris/side.svg",
  35008. extra: 1105/939,
  35009. bottom: 167/1272
  35010. }
  35011. },
  35012. },
  35013. [
  35014. {
  35015. name: "Macro",
  35016. height: math.unit(2100, "feet"),
  35017. default: true
  35018. },
  35019. ]
  35020. ))
  35021. characterMakers.push(() => makeCharacter(
  35022. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  35023. {
  35024. front: {
  35025. height: math.unit(6 + 8/12, "feet"),
  35026. weight: math.unit(225, "lb"),
  35027. name: "Front",
  35028. image: {
  35029. source: "./media/characters/rhys-londe/front.svg",
  35030. extra: 2258/2141,
  35031. bottom: 188/2446
  35032. }
  35033. },
  35034. back: {
  35035. height: math.unit(6 + 8/12, "feet"),
  35036. weight: math.unit(225, "lb"),
  35037. name: "Back",
  35038. image: {
  35039. source: "./media/characters/rhys-londe/back.svg",
  35040. extra: 2237/2137,
  35041. bottom: 63/2300
  35042. }
  35043. },
  35044. frontNsfw: {
  35045. height: math.unit(6 + 8/12, "feet"),
  35046. weight: math.unit(225, "lb"),
  35047. name: "Front (NSFW)",
  35048. image: {
  35049. source: "./media/characters/rhys-londe/front-nsfw.svg",
  35050. extra: 2258/2141,
  35051. bottom: 188/2446
  35052. }
  35053. },
  35054. backNsfw: {
  35055. height: math.unit(6 + 8/12, "feet"),
  35056. weight: math.unit(225, "lb"),
  35057. name: "Back (NSFW)",
  35058. image: {
  35059. source: "./media/characters/rhys-londe/back-nsfw.svg",
  35060. extra: 2237/2137,
  35061. bottom: 63/2300
  35062. }
  35063. },
  35064. dick: {
  35065. height: math.unit(30, "inches"),
  35066. name: "Dick",
  35067. image: {
  35068. source: "./media/characters/rhys-londe/dick.svg"
  35069. }
  35070. },
  35071. maw: {
  35072. height: math.unit(1.6, "feet"),
  35073. name: "Maw",
  35074. image: {
  35075. source: "./media/characters/rhys-londe/maw.svg"
  35076. }
  35077. },
  35078. },
  35079. [
  35080. {
  35081. name: "Normal",
  35082. height: math.unit(6 + 8/12, "feet"),
  35083. default: true
  35084. },
  35085. ]
  35086. ))
  35087. characterMakers.push(() => makeCharacter(
  35088. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  35089. {
  35090. front: {
  35091. height: math.unit(3 + 10/12, "feet"),
  35092. weight: math.unit(90, "lb"),
  35093. name: "Front",
  35094. image: {
  35095. source: "./media/characters/taivas-ensim/front.svg",
  35096. extra: 1327/1216,
  35097. bottom: 96/1423
  35098. }
  35099. },
  35100. back: {
  35101. height: math.unit(3 + 10/12, "feet"),
  35102. weight: math.unit(90, "lb"),
  35103. name: "Back",
  35104. image: {
  35105. source: "./media/characters/taivas-ensim/back.svg",
  35106. extra: 1355/1247,
  35107. bottom: 11/1366
  35108. }
  35109. },
  35110. frontNsfw: {
  35111. height: math.unit(3 + 10/12, "feet"),
  35112. weight: math.unit(90, "lb"),
  35113. name: "Front (NSFW)",
  35114. image: {
  35115. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  35116. extra: 1327/1216,
  35117. bottom: 96/1423
  35118. }
  35119. },
  35120. backNsfw: {
  35121. height: math.unit(3 + 10/12, "feet"),
  35122. weight: math.unit(90, "lb"),
  35123. name: "Back (NSFW)",
  35124. image: {
  35125. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  35126. extra: 1355/1247,
  35127. bottom: 11/1366
  35128. }
  35129. },
  35130. },
  35131. [
  35132. {
  35133. name: "Normal",
  35134. height: math.unit(3 + 10/12, "feet"),
  35135. default: true
  35136. },
  35137. ]
  35138. ))
  35139. characterMakers.push(() => makeCharacter(
  35140. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  35141. {
  35142. front: {
  35143. height: math.unit(9 + 6/12, "feet"),
  35144. weight: math.unit(940, "lb"),
  35145. name: "Front",
  35146. image: {
  35147. source: "./media/characters/byliss/front.svg",
  35148. extra: 1327/1290,
  35149. bottom: 82/1409
  35150. }
  35151. },
  35152. back: {
  35153. height: math.unit(9 + 6/12, "feet"),
  35154. weight: math.unit(940, "lb"),
  35155. name: "Back",
  35156. image: {
  35157. source: "./media/characters/byliss/back.svg",
  35158. extra: 1376/1349,
  35159. bottom: 9/1385
  35160. }
  35161. },
  35162. frontNsfw: {
  35163. height: math.unit(9 + 6/12, "feet"),
  35164. weight: math.unit(940, "lb"),
  35165. name: "Front (NSFW)",
  35166. image: {
  35167. source: "./media/characters/byliss/front-nsfw.svg",
  35168. extra: 1327/1290,
  35169. bottom: 82/1409
  35170. }
  35171. },
  35172. backNsfw: {
  35173. height: math.unit(9 + 6/12, "feet"),
  35174. weight: math.unit(940, "lb"),
  35175. name: "Back (NSFW)",
  35176. image: {
  35177. source: "./media/characters/byliss/back-nsfw.svg",
  35178. extra: 1376/1349,
  35179. bottom: 9/1385
  35180. }
  35181. },
  35182. },
  35183. [
  35184. {
  35185. name: "Normal",
  35186. height: math.unit(9 + 6/12, "feet"),
  35187. default: true
  35188. },
  35189. ]
  35190. ))
  35191. characterMakers.push(() => makeCharacter(
  35192. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  35193. {
  35194. front: {
  35195. height: math.unit(5 + 2/12, "feet"),
  35196. weight: math.unit(200, "lb"),
  35197. name: "Front",
  35198. image: {
  35199. source: "./media/characters/noraly/front.svg",
  35200. extra: 4985/4773,
  35201. bottom: 150/5135
  35202. }
  35203. },
  35204. full: {
  35205. height: math.unit(5 + 2/12, "feet"),
  35206. weight: math.unit(164, "lb"),
  35207. name: "Full",
  35208. image: {
  35209. source: "./media/characters/noraly/full.svg",
  35210. extra: 1114/1059,
  35211. bottom: 35/1149
  35212. }
  35213. },
  35214. fuller: {
  35215. height: math.unit(5 + 2/12, "feet"),
  35216. weight: math.unit(230, "lb"),
  35217. name: "Fuller",
  35218. image: {
  35219. source: "./media/characters/noraly/fuller.svg",
  35220. extra: 1114/1059,
  35221. bottom: 35/1149
  35222. }
  35223. },
  35224. fullest: {
  35225. height: math.unit(5 + 2/12, "feet"),
  35226. weight: math.unit(300, "lb"),
  35227. name: "Fullest",
  35228. image: {
  35229. source: "./media/characters/noraly/fullest.svg",
  35230. extra: 1114/1059,
  35231. bottom: 35/1149
  35232. }
  35233. },
  35234. },
  35235. [
  35236. {
  35237. name: "Normal",
  35238. height: math.unit(5 + 2/12, "feet"),
  35239. default: true
  35240. },
  35241. ]
  35242. ))
  35243. characterMakers.push(() => makeCharacter(
  35244. { name: "Pera", species: ["snake"], tags: ["naga"] },
  35245. {
  35246. front: {
  35247. height: math.unit(5 + 2/12, "feet"),
  35248. weight: math.unit(210, "lb"),
  35249. name: "Front",
  35250. image: {
  35251. source: "./media/characters/pera/front.svg",
  35252. extra: 1560/1531,
  35253. bottom: 165/1725
  35254. }
  35255. },
  35256. back: {
  35257. height: math.unit(5 + 2/12, "feet"),
  35258. weight: math.unit(210, "lb"),
  35259. name: "Back",
  35260. image: {
  35261. source: "./media/characters/pera/back.svg",
  35262. extra: 1523/1493,
  35263. bottom: 152/1675
  35264. }
  35265. },
  35266. dick: {
  35267. height: math.unit(2.4, "feet"),
  35268. name: "Dick",
  35269. image: {
  35270. source: "./media/characters/pera/dick.svg"
  35271. }
  35272. },
  35273. },
  35274. [
  35275. {
  35276. name: "Normal",
  35277. height: math.unit(5 + 2/12, "feet"),
  35278. default: true
  35279. },
  35280. ]
  35281. ))
  35282. characterMakers.push(() => makeCharacter(
  35283. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  35284. {
  35285. front: {
  35286. height: math.unit(12, "feet"),
  35287. weight: math.unit(3200, "lb"),
  35288. name: "Front",
  35289. image: {
  35290. source: "./media/characters/julian/front.svg",
  35291. extra: 2962/2701,
  35292. bottom: 184/3146
  35293. }
  35294. },
  35295. maw: {
  35296. height: math.unit(5.35, "feet"),
  35297. name: "Maw",
  35298. image: {
  35299. source: "./media/characters/julian/maw.svg"
  35300. }
  35301. },
  35302. paw: {
  35303. height: math.unit(3.07, "feet"),
  35304. name: "Paw",
  35305. image: {
  35306. source: "./media/characters/julian/paw.svg"
  35307. }
  35308. },
  35309. },
  35310. [
  35311. {
  35312. name: "Default",
  35313. height: math.unit(12, "feet"),
  35314. default: true
  35315. },
  35316. {
  35317. name: "Big",
  35318. height: math.unit(50, "feet")
  35319. },
  35320. {
  35321. name: "Really Big",
  35322. height: math.unit(1, "mile")
  35323. },
  35324. {
  35325. name: "Extremely Big",
  35326. height: math.unit(100, "miles")
  35327. },
  35328. {
  35329. name: "Planet Hugger",
  35330. height: math.unit(200, "megameters")
  35331. },
  35332. {
  35333. name: "Unreasonably Big",
  35334. height: math.unit(1e300, "meters")
  35335. },
  35336. ]
  35337. ))
  35338. characterMakers.push(() => makeCharacter(
  35339. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35340. {
  35341. solgooleo: {
  35342. height: math.unit(4, "meters"),
  35343. weight: math.unit(6000*1.5, "kg"),
  35344. volume: math.unit(6000, "liters"),
  35345. name: "Solgooleo",
  35346. image: {
  35347. source: "./media/characters/pi/solgooleo.svg",
  35348. extra: 388/331,
  35349. bottom: 29/417
  35350. }
  35351. },
  35352. },
  35353. [
  35354. {
  35355. name: "Normal",
  35356. height: math.unit(4, "meters"),
  35357. default: true
  35358. },
  35359. ]
  35360. ))
  35361. characterMakers.push(() => makeCharacter(
  35362. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35363. {
  35364. front: {
  35365. height: math.unit(8, "feet"),
  35366. weight: math.unit(4, "tons"),
  35367. name: "Front",
  35368. image: {
  35369. source: "./media/characters/shaun/front.svg",
  35370. extra: 503/495,
  35371. bottom: 20/523
  35372. }
  35373. },
  35374. back: {
  35375. height: math.unit(8, "feet"),
  35376. weight: math.unit(4, "tons"),
  35377. name: "Back",
  35378. image: {
  35379. source: "./media/characters/shaun/back.svg",
  35380. extra: 487/480,
  35381. bottom: 20/507
  35382. }
  35383. },
  35384. },
  35385. [
  35386. {
  35387. name: "Lorg",
  35388. height: math.unit(8, "feet"),
  35389. default: true
  35390. },
  35391. ]
  35392. ))
  35393. characterMakers.push(() => makeCharacter(
  35394. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35395. {
  35396. frontAnthro: {
  35397. height: math.unit(7, "feet"),
  35398. name: "Front",
  35399. image: {
  35400. source: "./media/characters/sini/front-anthro.svg",
  35401. extra: 726/678,
  35402. bottom: 35/761
  35403. },
  35404. form: "anthro",
  35405. default: true
  35406. },
  35407. backAnthro: {
  35408. height: math.unit(7, "feet"),
  35409. name: "Back",
  35410. image: {
  35411. source: "./media/characters/sini/back-anthro.svg",
  35412. extra: 743/701,
  35413. bottom: 12/755
  35414. },
  35415. form: "anthro",
  35416. },
  35417. frontAnthroNsfw: {
  35418. height: math.unit(7, "feet"),
  35419. name: "Front (NSFW)",
  35420. image: {
  35421. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35422. extra: 726/678,
  35423. bottom: 35/761
  35424. },
  35425. form: "anthro"
  35426. },
  35427. backAnthroNsfw: {
  35428. height: math.unit(7, "feet"),
  35429. name: "Back (NSFW)",
  35430. image: {
  35431. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35432. extra: 743/701,
  35433. bottom: 12/755
  35434. },
  35435. form: "anthro",
  35436. },
  35437. mawAnthro: {
  35438. height: math.unit(2.14, "feet"),
  35439. name: "Maw",
  35440. image: {
  35441. source: "./media/characters/sini/maw-anthro.svg"
  35442. },
  35443. form: "anthro"
  35444. },
  35445. dick: {
  35446. height: math.unit(1.45, "feet"),
  35447. name: "Dick",
  35448. image: {
  35449. source: "./media/characters/sini/dick-anthro.svg"
  35450. },
  35451. form: "anthro"
  35452. },
  35453. feral: {
  35454. height: math.unit(16, "feet"),
  35455. name: "Feral",
  35456. image: {
  35457. source: "./media/characters/sini/feral.svg",
  35458. extra: 814/605,
  35459. bottom: 11/825
  35460. },
  35461. form: "feral",
  35462. default: true
  35463. },
  35464. feralNsfw: {
  35465. height: math.unit(16, "feet"),
  35466. name: "Feral (NSFW)",
  35467. image: {
  35468. source: "./media/characters/sini/feral-nsfw.svg",
  35469. extra: 814/605,
  35470. bottom: 11/825
  35471. },
  35472. form: "feral"
  35473. },
  35474. mawFeral: {
  35475. height: math.unit(5.66, "feet"),
  35476. name: "Maw",
  35477. image: {
  35478. source: "./media/characters/sini/maw-feral.svg"
  35479. },
  35480. form: "feral",
  35481. },
  35482. pawFeral: {
  35483. height: math.unit(5.17, "feet"),
  35484. name: "Paw",
  35485. image: {
  35486. source: "./media/characters/sini/paw-feral.svg"
  35487. },
  35488. form: "feral",
  35489. },
  35490. rumpFeral: {
  35491. height: math.unit(13.11, "feet"),
  35492. name: "Rump",
  35493. image: {
  35494. source: "./media/characters/sini/rump-feral.svg"
  35495. },
  35496. form: "feral",
  35497. },
  35498. dickFeral: {
  35499. height: math.unit(1, "feet"),
  35500. name: "Dick",
  35501. image: {
  35502. source: "./media/characters/sini/dick-feral.svg"
  35503. },
  35504. form: "feral",
  35505. },
  35506. eyeFeral: {
  35507. height: math.unit(1.23, "feet"),
  35508. name: "Eye",
  35509. image: {
  35510. source: "./media/characters/sini/eye-feral.svg"
  35511. },
  35512. form: "feral",
  35513. },
  35514. },
  35515. [
  35516. {
  35517. name: "Normal",
  35518. height: math.unit(7, "feet"),
  35519. default: true,
  35520. form: "anthro"
  35521. },
  35522. {
  35523. name: "Normal",
  35524. height: math.unit(16, "feet"),
  35525. default: true,
  35526. form: "feral"
  35527. },
  35528. ],
  35529. {
  35530. "anthro": {
  35531. name: "Anthro",
  35532. default: true
  35533. },
  35534. "feral": {
  35535. name: "Feral",
  35536. }
  35537. }
  35538. ))
  35539. characterMakers.push(() => makeCharacter(
  35540. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35541. {
  35542. side: {
  35543. height: math.unit(47.2, "meters"),
  35544. weight: math.unit(10000, "tons"),
  35545. name: "Side",
  35546. image: {
  35547. source: "./media/characters/raylldo/side.svg",
  35548. extra: 2363/642,
  35549. bottom: 221/2584
  35550. }
  35551. },
  35552. top: {
  35553. height: math.unit(240, "meters"),
  35554. weight: math.unit(10000, "tons"),
  35555. name: "Top",
  35556. image: {
  35557. source: "./media/characters/raylldo/top.svg"
  35558. }
  35559. },
  35560. bottom: {
  35561. height: math.unit(240, "meters"),
  35562. weight: math.unit(10000, "tons"),
  35563. name: "Bottom",
  35564. image: {
  35565. source: "./media/characters/raylldo/bottom.svg"
  35566. }
  35567. },
  35568. head: {
  35569. height: math.unit(38.6, "meters"),
  35570. name: "Head",
  35571. image: {
  35572. source: "./media/characters/raylldo/head.svg",
  35573. extra: 1335/1112,
  35574. bottom: 0/1335
  35575. }
  35576. },
  35577. maw: {
  35578. height: math.unit(16.37, "meters"),
  35579. name: "Maw",
  35580. image: {
  35581. source: "./media/characters/raylldo/maw.svg",
  35582. extra: 883/660,
  35583. bottom: 0/883
  35584. },
  35585. extraAttributes: {
  35586. preyCapacity: {
  35587. name: "Capacity",
  35588. power: 3,
  35589. type: "volume",
  35590. base: math.unit(1000, "people")
  35591. },
  35592. tongueSize: {
  35593. name: "Tongue Size",
  35594. power: 2,
  35595. type: "area",
  35596. base: math.unit(21, "m^2")
  35597. }
  35598. }
  35599. },
  35600. forepaw: {
  35601. height: math.unit(18, "meters"),
  35602. name: "Forepaw",
  35603. image: {
  35604. source: "./media/characters/raylldo/forepaw.svg"
  35605. }
  35606. },
  35607. hindpaw: {
  35608. height: math.unit(23, "meters"),
  35609. name: "Hindpaw",
  35610. image: {
  35611. source: "./media/characters/raylldo/hindpaw.svg"
  35612. }
  35613. },
  35614. genitals: {
  35615. height: math.unit(42, "meters"),
  35616. name: "Genitals",
  35617. image: {
  35618. source: "./media/characters/raylldo/genitals.svg"
  35619. }
  35620. },
  35621. },
  35622. [
  35623. {
  35624. name: "Normal",
  35625. height: math.unit(47.2, "meters"),
  35626. default: true
  35627. },
  35628. ]
  35629. ))
  35630. characterMakers.push(() => makeCharacter(
  35631. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35632. {
  35633. anthroFront: {
  35634. height: math.unit(9, "feet"),
  35635. weight: math.unit(600, "lb"),
  35636. name: "Anthro (Front)",
  35637. image: {
  35638. source: "./media/characters/glint/anthro-front.svg",
  35639. extra: 1097/1018,
  35640. bottom: 28/1125
  35641. }
  35642. },
  35643. anthroBack: {
  35644. height: math.unit(9, "feet"),
  35645. weight: math.unit(600, "lb"),
  35646. name: "Anthro (Back)",
  35647. image: {
  35648. source: "./media/characters/glint/anthro-back.svg",
  35649. extra: 1154/997,
  35650. bottom: 36/1190
  35651. }
  35652. },
  35653. feral: {
  35654. height: math.unit(11, "feet"),
  35655. weight: math.unit(50000, "lb"),
  35656. name: "Feral",
  35657. image: {
  35658. source: "./media/characters/glint/feral.svg",
  35659. extra: 3035/1585,
  35660. bottom: 1169/4204
  35661. }
  35662. },
  35663. dickAnthro: {
  35664. height: math.unit(0.7, "meters"),
  35665. name: "Dick (Anthro)",
  35666. image: {
  35667. source: "./media/characters/glint/dick-anthro.svg"
  35668. }
  35669. },
  35670. dickFeral: {
  35671. height: math.unit(2.65, "meters"),
  35672. name: "Dick (Feral)",
  35673. image: {
  35674. source: "./media/characters/glint/dick-feral.svg"
  35675. }
  35676. },
  35677. slitHidden: {
  35678. height: math.unit(5.85, "meters"),
  35679. name: "Slit (Hidden)",
  35680. image: {
  35681. source: "./media/characters/glint/slit-hidden.svg"
  35682. }
  35683. },
  35684. slitErect: {
  35685. height: math.unit(5.85, "meters"),
  35686. name: "Slit (Erect)",
  35687. image: {
  35688. source: "./media/characters/glint/slit-erect.svg"
  35689. }
  35690. },
  35691. mawAnthro: {
  35692. height: math.unit(0.63, "meters"),
  35693. name: "Maw (Anthro)",
  35694. image: {
  35695. source: "./media/characters/glint/maw.svg"
  35696. }
  35697. },
  35698. mawFeral: {
  35699. height: math.unit(2.89, "meters"),
  35700. name: "Maw (Feral)",
  35701. image: {
  35702. source: "./media/characters/glint/maw.svg"
  35703. }
  35704. },
  35705. },
  35706. [
  35707. {
  35708. name: "Normal",
  35709. height: math.unit(9, "feet"),
  35710. default: true
  35711. },
  35712. ]
  35713. ))
  35714. characterMakers.push(() => makeCharacter(
  35715. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35716. {
  35717. side: {
  35718. height: math.unit(15, "feet"),
  35719. weight: math.unit(5000, "kg"),
  35720. name: "Side",
  35721. image: {
  35722. source: "./media/characters/kairne/side.svg",
  35723. extra: 979/811,
  35724. bottom: 13/992
  35725. }
  35726. },
  35727. front: {
  35728. height: math.unit(15, "feet"),
  35729. weight: math.unit(5000, "kg"),
  35730. name: "Front",
  35731. image: {
  35732. source: "./media/characters/kairne/front.svg",
  35733. extra: 908/814,
  35734. bottom: 26/934
  35735. }
  35736. },
  35737. sideNsfw: {
  35738. height: math.unit(15, "feet"),
  35739. weight: math.unit(5000, "kg"),
  35740. name: "Side (NSFW)",
  35741. image: {
  35742. source: "./media/characters/kairne/side-nsfw.svg",
  35743. extra: 979/811,
  35744. bottom: 13/992
  35745. }
  35746. },
  35747. frontNsfw: {
  35748. height: math.unit(15, "feet"),
  35749. weight: math.unit(5000, "kg"),
  35750. name: "Front (NSFW)",
  35751. image: {
  35752. source: "./media/characters/kairne/front-nsfw.svg",
  35753. extra: 908/814,
  35754. bottom: 26/934
  35755. }
  35756. },
  35757. dickCaged: {
  35758. height: math.unit(0.65, "meters"),
  35759. name: "Dick-caged",
  35760. image: {
  35761. source: "./media/characters/kairne/dick-caged.svg"
  35762. }
  35763. },
  35764. dick: {
  35765. height: math.unit(0.79, "meters"),
  35766. name: "Dick",
  35767. image: {
  35768. source: "./media/characters/kairne/dick.svg"
  35769. }
  35770. },
  35771. genitals: {
  35772. height: math.unit(1.29, "meters"),
  35773. name: "Genitals",
  35774. image: {
  35775. source: "./media/characters/kairne/genitals.svg"
  35776. }
  35777. },
  35778. maw: {
  35779. height: math.unit(1.73, "meters"),
  35780. name: "Maw",
  35781. image: {
  35782. source: "./media/characters/kairne/maw.svg"
  35783. }
  35784. },
  35785. },
  35786. [
  35787. {
  35788. name: "Normal",
  35789. height: math.unit(15, "feet"),
  35790. default: true
  35791. },
  35792. ]
  35793. ))
  35794. characterMakers.push(() => makeCharacter(
  35795. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35796. {
  35797. front: {
  35798. height: math.unit(5 + 8/12, "feet"),
  35799. weight: math.unit(139, "lb"),
  35800. name: "Front",
  35801. image: {
  35802. source: "./media/characters/biscuit-jackal/front.svg",
  35803. extra: 2106/1961,
  35804. bottom: 58/2164
  35805. }
  35806. },
  35807. back: {
  35808. height: math.unit(5 + 8/12, "feet"),
  35809. weight: math.unit(139, "lb"),
  35810. name: "Back",
  35811. image: {
  35812. source: "./media/characters/biscuit-jackal/back.svg",
  35813. extra: 2132/1976,
  35814. bottom: 57/2189
  35815. }
  35816. },
  35817. werejackal: {
  35818. height: math.unit(6 + 3/12, "feet"),
  35819. weight: math.unit(188, "lb"),
  35820. name: "Werejackal",
  35821. image: {
  35822. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35823. extra: 2373/2178,
  35824. bottom: 53/2426
  35825. }
  35826. },
  35827. },
  35828. [
  35829. {
  35830. name: "Normal",
  35831. height: math.unit(5 + 8/12, "feet"),
  35832. default: true
  35833. },
  35834. ]
  35835. ))
  35836. characterMakers.push(() => makeCharacter(
  35837. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35838. {
  35839. front: {
  35840. height: math.unit(140, "cm"),
  35841. weight: math.unit(45, "kg"),
  35842. name: "Front",
  35843. image: {
  35844. source: "./media/characters/tayra-white/front.svg",
  35845. extra: 2229/2192,
  35846. bottom: 75/2304
  35847. }
  35848. },
  35849. },
  35850. [
  35851. {
  35852. name: "Normal",
  35853. height: math.unit(140, "cm"),
  35854. default: true
  35855. },
  35856. ]
  35857. ))
  35858. characterMakers.push(() => makeCharacter(
  35859. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35860. {
  35861. front: {
  35862. height: math.unit(4 + 5/12, "feet"),
  35863. name: "Front",
  35864. image: {
  35865. source: "./media/characters/scoop/front.svg",
  35866. extra: 1257/1136,
  35867. bottom: 69/1326
  35868. }
  35869. },
  35870. back: {
  35871. height: math.unit(4 + 5/12, "feet"),
  35872. name: "Back",
  35873. image: {
  35874. source: "./media/characters/scoop/back.svg",
  35875. extra: 1321/1152,
  35876. bottom: 32/1353
  35877. }
  35878. },
  35879. maw: {
  35880. height: math.unit(0.68, "feet"),
  35881. name: "Maw",
  35882. image: {
  35883. source: "./media/characters/scoop/maw.svg"
  35884. }
  35885. },
  35886. },
  35887. [
  35888. {
  35889. name: "Really Small",
  35890. height: math.unit(1, "mm")
  35891. },
  35892. {
  35893. name: "Micro",
  35894. height: math.unit(1, "inch")
  35895. },
  35896. {
  35897. name: "Normal",
  35898. height: math.unit(4 + 5/12, "feet"),
  35899. default: true
  35900. },
  35901. {
  35902. name: "Macro",
  35903. height: math.unit(200, "feet")
  35904. },
  35905. {
  35906. name: "Megamacro",
  35907. height: math.unit(3240, "feet")
  35908. },
  35909. {
  35910. name: "Teramacro",
  35911. height: math.unit(2500, "miles")
  35912. },
  35913. ]
  35914. ))
  35915. characterMakers.push(() => makeCharacter(
  35916. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35917. {
  35918. front: {
  35919. height: math.unit(15 + 7/12, "feet"),
  35920. weight: math.unit(1150, "tons"),
  35921. name: "Front",
  35922. image: {
  35923. source: "./media/characters/saphinara/front.svg",
  35924. extra: 1837/1643,
  35925. bottom: 84/1921
  35926. },
  35927. form: "normal",
  35928. default: true
  35929. },
  35930. side: {
  35931. height: math.unit(15 + 7/12, "feet"),
  35932. weight: math.unit(1150, "tons"),
  35933. name: "Side",
  35934. image: {
  35935. source: "./media/characters/saphinara/side.svg",
  35936. extra: 605/547,
  35937. bottom: 6/611
  35938. },
  35939. form: "normal"
  35940. },
  35941. back: {
  35942. height: math.unit(15 + 7/12, "feet"),
  35943. weight: math.unit(1150, "tons"),
  35944. name: "Back",
  35945. image: {
  35946. source: "./media/characters/saphinara/back.svg",
  35947. extra: 591/531,
  35948. bottom: 13/604
  35949. },
  35950. form: "normal"
  35951. },
  35952. frontTail: {
  35953. height: math.unit(15 + 7/12, "feet"),
  35954. weight: math.unit(1150, "tons"),
  35955. name: "Front (Full Tail)",
  35956. image: {
  35957. source: "./media/characters/saphinara/front-tail.svg",
  35958. extra: 2256/1630,
  35959. bottom: 261/2517
  35960. },
  35961. form: "normal"
  35962. },
  35963. insides: {
  35964. height: math.unit(11.92, "feet"),
  35965. name: "Insides",
  35966. image: {
  35967. source: "./media/characters/saphinara/insides.svg"
  35968. },
  35969. form: "normal"
  35970. },
  35971. head: {
  35972. height: math.unit(4.17, "feet"),
  35973. name: "Head",
  35974. image: {
  35975. source: "./media/characters/saphinara/head.svg"
  35976. },
  35977. form: "normal"
  35978. },
  35979. tongue: {
  35980. height: math.unit(4.60, "feet"),
  35981. name: "Tongue",
  35982. image: {
  35983. source: "./media/characters/saphinara/tongue.svg"
  35984. },
  35985. form: "normal"
  35986. },
  35987. headEnraged: {
  35988. height: math.unit(5.55, "feet"),
  35989. name: "Head (Enraged)",
  35990. image: {
  35991. source: "./media/characters/saphinara/head-enraged.svg"
  35992. },
  35993. form: "normal"
  35994. },
  35995. wings: {
  35996. height: math.unit(11.95, "feet"),
  35997. name: "Wings",
  35998. image: {
  35999. source: "./media/characters/saphinara/wings.svg"
  36000. },
  36001. form: "normal"
  36002. },
  36003. feathers: {
  36004. height: math.unit(8.92, "feet"),
  36005. name: "Feathers",
  36006. image: {
  36007. source: "./media/characters/saphinara/feathers.svg"
  36008. },
  36009. form: "normal"
  36010. },
  36011. shackles: {
  36012. height: math.unit(2, "feet"),
  36013. name: "Shackles",
  36014. image: {
  36015. source: "./media/characters/saphinara/shackles.svg"
  36016. },
  36017. form: "normal"
  36018. },
  36019. eyes: {
  36020. height: math.unit(1.331, "feet"),
  36021. name: "Eyes",
  36022. image: {
  36023. source: "./media/characters/saphinara/eyes.svg"
  36024. },
  36025. form: "normal"
  36026. },
  36027. eyesEnraged: {
  36028. height: math.unit(1.331, "feet"),
  36029. name: "Eyes (Enraged)",
  36030. image: {
  36031. source: "./media/characters/saphinara/eyes-enraged.svg"
  36032. },
  36033. form: "normal"
  36034. },
  36035. trueFormSide: {
  36036. height: math.unit(200, "feet"),
  36037. weight: math.unit(1e7, "tons"),
  36038. name: "Side",
  36039. image: {
  36040. source: "./media/characters/saphinara/true-form-side.svg",
  36041. extra: 1399/770,
  36042. bottom: 97/1496
  36043. },
  36044. form: "true-form",
  36045. default: true
  36046. },
  36047. trueFormMaw: {
  36048. height: math.unit(71.5, "feet"),
  36049. name: "Maw",
  36050. image: {
  36051. source: "./media/characters/saphinara/true-form-maw.svg",
  36052. extra: 2302/1453,
  36053. bottom: 0/2302
  36054. },
  36055. form: "true-form"
  36056. },
  36057. meowberusSide: {
  36058. height: math.unit(75, "feet"),
  36059. weight: math.unit(180000, "kg"),
  36060. preyCapacity: math.unit(50000, "people"),
  36061. name: "Side",
  36062. image: {
  36063. source: "./media/characters/saphinara/meowberus-side.svg",
  36064. extra: 1400/711,
  36065. bottom: 126/1526
  36066. },
  36067. form: "meowberus",
  36068. extraAttributes: {
  36069. "pawArea": {
  36070. name: "Paw Size",
  36071. power: 2,
  36072. type: "area",
  36073. base: math.unit(35, "m^2")
  36074. }
  36075. }
  36076. },
  36077. },
  36078. [
  36079. {
  36080. name: "Normal",
  36081. height: math.unit(15 + 7/12, "feet"),
  36082. default: true,
  36083. form: "normal"
  36084. },
  36085. {
  36086. name: "Angry",
  36087. height: math.unit(30 + 6/12, "feet"),
  36088. form: "normal"
  36089. },
  36090. {
  36091. name: "Enraged",
  36092. height: math.unit(102 + 1/12, "feet"),
  36093. form: "normal"
  36094. },
  36095. {
  36096. name: "True",
  36097. height: math.unit(200, "feet"),
  36098. default: true,
  36099. form: "true-form"
  36100. },
  36101. {
  36102. name: "Normal",
  36103. height: math.unit(75, "feet"),
  36104. default: true,
  36105. form: "meowberus"
  36106. },
  36107. ],
  36108. {
  36109. "normal": {
  36110. name: "Normal",
  36111. default: true
  36112. },
  36113. "true-form": {
  36114. name: "True Form"
  36115. },
  36116. "meowberus": {
  36117. name: "Meowberus",
  36118. },
  36119. }
  36120. ))
  36121. characterMakers.push(() => makeCharacter(
  36122. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  36123. {
  36124. front: {
  36125. height: math.unit(6 + 8/12, "feet"),
  36126. weight: math.unit(300, "lb"),
  36127. name: "Front",
  36128. image: {
  36129. source: "./media/characters/jrain/front.svg",
  36130. extra: 3039/2865,
  36131. bottom: 399/3438
  36132. }
  36133. },
  36134. back: {
  36135. height: math.unit(6 + 8/12, "feet"),
  36136. weight: math.unit(300, "lb"),
  36137. name: "Back",
  36138. image: {
  36139. source: "./media/characters/jrain/back.svg",
  36140. extra: 3089/2938,
  36141. bottom: 172/3261
  36142. }
  36143. },
  36144. head: {
  36145. height: math.unit(2.14, "feet"),
  36146. name: "Head",
  36147. image: {
  36148. source: "./media/characters/jrain/head.svg"
  36149. }
  36150. },
  36151. maw: {
  36152. height: math.unit(1.77, "feet"),
  36153. name: "Maw",
  36154. image: {
  36155. source: "./media/characters/jrain/maw.svg"
  36156. }
  36157. },
  36158. leftHand: {
  36159. height: math.unit(1.1, "feet"),
  36160. name: "Left Hand",
  36161. image: {
  36162. source: "./media/characters/jrain/left-hand.svg"
  36163. }
  36164. },
  36165. rightHand: {
  36166. height: math.unit(1.1, "feet"),
  36167. name: "Right Hand",
  36168. image: {
  36169. source: "./media/characters/jrain/right-hand.svg"
  36170. }
  36171. },
  36172. eye: {
  36173. height: math.unit(0.35, "feet"),
  36174. name: "Eye",
  36175. image: {
  36176. source: "./media/characters/jrain/eye.svg"
  36177. }
  36178. },
  36179. },
  36180. [
  36181. {
  36182. name: "Normal",
  36183. height: math.unit(6 + 8/12, "feet"),
  36184. default: true
  36185. },
  36186. {
  36187. name: "Casually Large",
  36188. height: math.unit(25, "feet")
  36189. },
  36190. {
  36191. name: "Giant",
  36192. height: math.unit(100, "feet")
  36193. },
  36194. {
  36195. name: "Kaiju",
  36196. height: math.unit(300, "feet")
  36197. },
  36198. ]
  36199. ))
  36200. characterMakers.push(() => makeCharacter(
  36201. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  36202. {
  36203. dragon: {
  36204. height: math.unit(5, "meters"),
  36205. name: "Dragon",
  36206. image: {
  36207. source: "./media/characters/sabrina/dragon.svg",
  36208. extra: 3670 / 2365,
  36209. bottom: 333 / 4003
  36210. }
  36211. },
  36212. gryphon: {
  36213. height: math.unit(3, "meters"),
  36214. name: "Gryphon",
  36215. image: {
  36216. source: "./media/characters/sabrina/gryphon.svg",
  36217. extra: 1576 / 945,
  36218. bottom: 71 / 1647
  36219. }
  36220. },
  36221. snake: {
  36222. height: math.unit(12, "meters"),
  36223. name: "Snake",
  36224. image: {
  36225. source: "./media/characters/sabrina/snake.svg",
  36226. extra: 1758 / 1320,
  36227. bottom: 186 / 1944
  36228. }
  36229. },
  36230. collar: {
  36231. height: math.unit(1.86, "meters"),
  36232. name: "Collar",
  36233. image: {
  36234. source: "./media/characters/sabrina/collar.svg"
  36235. }
  36236. },
  36237. eye: {
  36238. height: math.unit(0.53, "meters"),
  36239. name: "Eye",
  36240. image: {
  36241. source: "./media/characters/sabrina/eye.svg"
  36242. }
  36243. },
  36244. foot: {
  36245. height: math.unit(1.86, "meters"),
  36246. name: "Foot",
  36247. image: {
  36248. source: "./media/characters/sabrina/foot.svg"
  36249. }
  36250. },
  36251. hand: {
  36252. height: math.unit(1.32, "meters"),
  36253. name: "Hand",
  36254. image: {
  36255. source: "./media/characters/sabrina/hand.svg"
  36256. }
  36257. },
  36258. head: {
  36259. height: math.unit(2.44, "meters"),
  36260. name: "Head",
  36261. image: {
  36262. source: "./media/characters/sabrina/head.svg"
  36263. }
  36264. },
  36265. headAngry: {
  36266. height: math.unit(2.44, "meters"),
  36267. name: "Head (Angry))",
  36268. image: {
  36269. source: "./media/characters/sabrina/head-angry.svg"
  36270. }
  36271. },
  36272. maw: {
  36273. height: math.unit(1.65, "meters"),
  36274. name: "Maw",
  36275. image: {
  36276. source: "./media/characters/sabrina/maw.svg"
  36277. }
  36278. },
  36279. spikes: {
  36280. height: math.unit(1.69, "meters"),
  36281. name: "Spikes",
  36282. image: {
  36283. source: "./media/characters/sabrina/spikes.svg"
  36284. }
  36285. },
  36286. stomach: {
  36287. height: math.unit(1.15, "meters"),
  36288. name: "Stomach",
  36289. image: {
  36290. source: "./media/characters/sabrina/stomach.svg"
  36291. }
  36292. },
  36293. tongue: {
  36294. height: math.unit(1.27, "meters"),
  36295. name: "Tongue",
  36296. image: {
  36297. source: "./media/characters/sabrina/tongue.svg"
  36298. }
  36299. },
  36300. wingDorsal: {
  36301. height: math.unit(4.85, "meters"),
  36302. name: "Wing (Dorsal)",
  36303. image: {
  36304. source: "./media/characters/sabrina/wing-dorsal.svg"
  36305. }
  36306. },
  36307. wingVentral: {
  36308. height: math.unit(4.85, "meters"),
  36309. name: "Wing (Ventral)",
  36310. image: {
  36311. source: "./media/characters/sabrina/wing-ventral.svg"
  36312. }
  36313. },
  36314. },
  36315. [
  36316. {
  36317. name: "Normal",
  36318. height: math.unit(5, "meters"),
  36319. default: true
  36320. },
  36321. ]
  36322. ))
  36323. characterMakers.push(() => makeCharacter(
  36324. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  36325. {
  36326. frontMaid: {
  36327. height: math.unit(5 + 5/12, "feet"),
  36328. weight: math.unit(130, "lb"),
  36329. name: "Front (Maid)",
  36330. image: {
  36331. source: "./media/characters/midnight-tales/front-maid.svg",
  36332. extra: 489/454,
  36333. bottom: 61/550
  36334. }
  36335. },
  36336. frontFormal: {
  36337. height: math.unit(5 + 5/12, "feet"),
  36338. weight: math.unit(130, "lb"),
  36339. name: "Front (Formal)",
  36340. image: {
  36341. source: "./media/characters/midnight-tales/front-formal.svg",
  36342. extra: 489/454,
  36343. bottom: 61/550
  36344. }
  36345. },
  36346. back: {
  36347. height: math.unit(5 + 5/12, "feet"),
  36348. weight: math.unit(130, "lb"),
  36349. name: "Back",
  36350. image: {
  36351. source: "./media/characters/midnight-tales/back.svg",
  36352. extra: 498/456,
  36353. bottom: 33/531
  36354. }
  36355. },
  36356. frontBeast: {
  36357. height: math.unit(40, "feet"),
  36358. weight: math.unit(64000, "lb"),
  36359. name: "Front (Beast)",
  36360. image: {
  36361. source: "./media/characters/midnight-tales/front-beast.svg",
  36362. extra: 927/860,
  36363. bottom: 53/980
  36364. }
  36365. },
  36366. backBeast: {
  36367. height: math.unit(40, "feet"),
  36368. weight: math.unit(64000, "lb"),
  36369. name: "Back (Beast)",
  36370. image: {
  36371. source: "./media/characters/midnight-tales/back-beast.svg",
  36372. extra: 929/855,
  36373. bottom: 16/945
  36374. }
  36375. },
  36376. footBeast: {
  36377. height: math.unit(6.7, "feet"),
  36378. name: "Foot (Beast)",
  36379. image: {
  36380. source: "./media/characters/midnight-tales/foot-beast.svg"
  36381. }
  36382. },
  36383. headBeast: {
  36384. height: math.unit(8, "feet"),
  36385. name: "Head (Beast)",
  36386. image: {
  36387. source: "./media/characters/midnight-tales/head-beast.svg"
  36388. }
  36389. },
  36390. },
  36391. [
  36392. {
  36393. name: "Normal",
  36394. height: math.unit(5 + 5 / 12, "feet"),
  36395. default: true
  36396. },
  36397. {
  36398. name: "Macro",
  36399. height: math.unit(25, "feet")
  36400. },
  36401. ]
  36402. ))
  36403. characterMakers.push(() => makeCharacter(
  36404. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36405. {
  36406. front: {
  36407. height: math.unit(5 + 10/12, "feet"),
  36408. name: "Front",
  36409. image: {
  36410. source: "./media/characters/argon/front.svg",
  36411. extra: 2009/1935,
  36412. bottom: 118/2127
  36413. }
  36414. },
  36415. back: {
  36416. height: math.unit(5 + 10/12, "feet"),
  36417. name: "Back",
  36418. image: {
  36419. source: "./media/characters/argon/back.svg",
  36420. extra: 2047/1992,
  36421. bottom: 20/2067
  36422. }
  36423. },
  36424. frontDressed: {
  36425. height: math.unit(5 + 10/12, "feet"),
  36426. name: "Front (Dressed)",
  36427. image: {
  36428. source: "./media/characters/argon/front-dressed.svg",
  36429. extra: 2009/1935,
  36430. bottom: 118/2127
  36431. }
  36432. },
  36433. },
  36434. [
  36435. {
  36436. name: "Normal",
  36437. height: math.unit(5 + 10/12, "feet"),
  36438. default: true
  36439. },
  36440. ]
  36441. ))
  36442. characterMakers.push(() => makeCharacter(
  36443. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  36444. {
  36445. front: {
  36446. height: math.unit(8 + 6/12, "feet"),
  36447. weight: math.unit(1150, "lb"),
  36448. name: "Front",
  36449. image: {
  36450. source: "./media/characters/kichi/front.svg",
  36451. extra: 1267/1164,
  36452. bottom: 61/1328
  36453. }
  36454. },
  36455. back: {
  36456. height: math.unit(8 + 6/12, "feet"),
  36457. weight: math.unit(1150, "lb"),
  36458. name: "Back",
  36459. image: {
  36460. source: "./media/characters/kichi/back.svg",
  36461. extra: 1273/1166,
  36462. bottom: 33/1306
  36463. }
  36464. },
  36465. },
  36466. [
  36467. {
  36468. name: "Normal",
  36469. height: math.unit(8 + 6/12, "feet"),
  36470. default: true
  36471. },
  36472. ]
  36473. ))
  36474. characterMakers.push(() => makeCharacter(
  36475. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36476. {
  36477. front: {
  36478. height: math.unit(6, "feet"),
  36479. weight: math.unit(210, "lb"),
  36480. name: "Front",
  36481. image: {
  36482. source: "./media/characters/manetel-greyscale/front.svg",
  36483. extra: 350/312,
  36484. bottom: 8/358
  36485. }
  36486. },
  36487. },
  36488. [
  36489. {
  36490. name: "Micro",
  36491. height: math.unit(2, "inches")
  36492. },
  36493. {
  36494. name: "Normal",
  36495. height: math.unit(6, "feet"),
  36496. default: true
  36497. },
  36498. {
  36499. name: "Minimacro",
  36500. height: math.unit(17, "feet")
  36501. },
  36502. {
  36503. name: "Macro",
  36504. height: math.unit(117, "feet")
  36505. },
  36506. ]
  36507. ))
  36508. characterMakers.push(() => makeCharacter(
  36509. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36510. {
  36511. side: {
  36512. height: math.unit(5 + 1/12, "feet"),
  36513. weight: math.unit(418, "lb"),
  36514. name: "Side",
  36515. image: {
  36516. source: "./media/characters/softpurr/side.svg",
  36517. extra: 1993/1945,
  36518. bottom: 134/2127
  36519. }
  36520. },
  36521. front: {
  36522. height: math.unit(5 + 1/12, "feet"),
  36523. weight: math.unit(418, "lb"),
  36524. name: "Front",
  36525. image: {
  36526. source: "./media/characters/softpurr/front.svg",
  36527. extra: 1950/1856,
  36528. bottom: 174/2124
  36529. }
  36530. },
  36531. paw: {
  36532. height: math.unit(1, "feet"),
  36533. name: "Paw",
  36534. image: {
  36535. source: "./media/characters/softpurr/paw.svg"
  36536. }
  36537. },
  36538. },
  36539. [
  36540. {
  36541. name: "Normal",
  36542. height: math.unit(5 + 1/12, "feet"),
  36543. default: true
  36544. },
  36545. ]
  36546. ))
  36547. characterMakers.push(() => makeCharacter(
  36548. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36549. {
  36550. front: {
  36551. height: math.unit(260, "meters"),
  36552. name: "Front",
  36553. image: {
  36554. source: "./media/characters/anahita/front.svg",
  36555. extra: 665/635,
  36556. bottom: 89/754
  36557. }
  36558. },
  36559. },
  36560. [
  36561. {
  36562. name: "Macro",
  36563. height: math.unit(260, "meters"),
  36564. default: true
  36565. },
  36566. ]
  36567. ))
  36568. characterMakers.push(() => makeCharacter(
  36569. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36570. {
  36571. front: {
  36572. height: math.unit(4 + 10/12, "feet"),
  36573. weight: math.unit(160, "lb"),
  36574. name: "Front",
  36575. image: {
  36576. source: "./media/characters/chip-mouse/front.svg",
  36577. extra: 3528/3408,
  36578. bottom: 0/3528
  36579. }
  36580. },
  36581. frontNsfw: {
  36582. height: math.unit(4 + 10/12, "feet"),
  36583. weight: math.unit(160, "lb"),
  36584. name: "Front (NSFW)",
  36585. image: {
  36586. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36587. extra: 3528/3408,
  36588. bottom: 0/3528
  36589. }
  36590. },
  36591. },
  36592. [
  36593. {
  36594. name: "Normal",
  36595. height: math.unit(4 + 10/12, "feet"),
  36596. default: true
  36597. },
  36598. ]
  36599. ))
  36600. characterMakers.push(() => makeCharacter(
  36601. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  36602. {
  36603. side: {
  36604. height: math.unit(10, "feet"),
  36605. weight: math.unit(14000, "lb"),
  36606. name: "Side",
  36607. image: {
  36608. source: "./media/characters/kremm/side.svg",
  36609. extra: 1390/1053,
  36610. bottom: 90/1480
  36611. }
  36612. },
  36613. gut: {
  36614. height: math.unit(5.8, "feet"),
  36615. name: "Gut",
  36616. image: {
  36617. source: "./media/characters/kremm/gut.svg"
  36618. }
  36619. },
  36620. ass: {
  36621. height: math.unit(6.1, "feet"),
  36622. name: "Ass",
  36623. image: {
  36624. source: "./media/characters/kremm/ass.svg"
  36625. }
  36626. },
  36627. jaws: {
  36628. height: math.unit(2.2, "feet"),
  36629. name: "Jaws",
  36630. image: {
  36631. source: "./media/characters/kremm/jaws.svg"
  36632. }
  36633. },
  36634. dick: {
  36635. height: math.unit(4.26, "feet"),
  36636. name: "Dick",
  36637. image: {
  36638. source: "./media/characters/kremm/dick.svg"
  36639. }
  36640. },
  36641. },
  36642. [
  36643. {
  36644. name: "Normal",
  36645. height: math.unit(10, "feet"),
  36646. default: true
  36647. },
  36648. ]
  36649. ))
  36650. characterMakers.push(() => makeCharacter(
  36651. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36652. {
  36653. front: {
  36654. height: math.unit(30, "stories"),
  36655. name: "Front",
  36656. image: {
  36657. source: "./media/characters/kai/front.svg",
  36658. extra: 1892/1718,
  36659. bottom: 162/2054
  36660. }
  36661. },
  36662. },
  36663. [
  36664. {
  36665. name: "Macro",
  36666. height: math.unit(30, "stories"),
  36667. default: true
  36668. },
  36669. ]
  36670. ))
  36671. characterMakers.push(() => makeCharacter(
  36672. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36673. {
  36674. front: {
  36675. height: math.unit(6 + 4/12, "feet"),
  36676. weight: math.unit(145, "lb"),
  36677. name: "Front",
  36678. image: {
  36679. source: "./media/characters/sykes/front.svg",
  36680. extra: 1321 / 1187,
  36681. bottom: 66 / 1387
  36682. }
  36683. },
  36684. back: {
  36685. height: math.unit(6 + 4/12, "feet"),
  36686. weight: math.unit(145, "lb"),
  36687. name: "Back",
  36688. image: {
  36689. source: "./media/characters/sykes/back.svg",
  36690. extra: 1326/1181,
  36691. bottom: 31/1357
  36692. }
  36693. },
  36694. traditionalOutfit: {
  36695. height: math.unit(6 + 4/12, "feet"),
  36696. weight: math.unit(145, "lb"),
  36697. name: "Traditional Outfit",
  36698. image: {
  36699. source: "./media/characters/sykes/traditional-outfit.svg",
  36700. extra: 1321 / 1187,
  36701. bottom: 66 / 1387
  36702. }
  36703. },
  36704. adventureOutfit: {
  36705. height: math.unit(6 + 4/12, "feet"),
  36706. weight: math.unit(145, "lb"),
  36707. name: "Adventure Outfit",
  36708. image: {
  36709. source: "./media/characters/sykes/adventure-outfit.svg",
  36710. extra: 1321 / 1187,
  36711. bottom: 66 / 1387
  36712. }
  36713. },
  36714. handLeft: {
  36715. height: math.unit(0.9, "feet"),
  36716. name: "Hand (Left)",
  36717. image: {
  36718. source: "./media/characters/sykes/hand-left.svg"
  36719. }
  36720. },
  36721. handRight: {
  36722. height: math.unit(0.839, "feet"),
  36723. name: "Hand (Right)",
  36724. image: {
  36725. source: "./media/characters/sykes/hand-right.svg"
  36726. }
  36727. },
  36728. leftFoot: {
  36729. height: math.unit(1.2, "feet"),
  36730. name: "Foot (Left)",
  36731. image: {
  36732. source: "./media/characters/sykes/foot-left.svg"
  36733. }
  36734. },
  36735. rightFoot: {
  36736. height: math.unit(1.2, "feet"),
  36737. name: "Foot (Right)",
  36738. image: {
  36739. source: "./media/characters/sykes/foot-right.svg"
  36740. }
  36741. },
  36742. maw: {
  36743. height: math.unit(1.93, "feet"),
  36744. name: "Maw",
  36745. image: {
  36746. source: "./media/characters/sykes/maw.svg"
  36747. }
  36748. },
  36749. teeth: {
  36750. height: math.unit(0.51, "feet"),
  36751. name: "Teeth",
  36752. image: {
  36753. source: "./media/characters/sykes/teeth.svg"
  36754. }
  36755. },
  36756. tongue: {
  36757. height: math.unit(2.13, "feet"),
  36758. name: "Tongue",
  36759. image: {
  36760. source: "./media/characters/sykes/tongue.svg"
  36761. }
  36762. },
  36763. uvula: {
  36764. height: math.unit(0.16, "feet"),
  36765. name: "Uvula",
  36766. image: {
  36767. source: "./media/characters/sykes/uvula.svg"
  36768. }
  36769. },
  36770. collar: {
  36771. height: math.unit(0.287, "feet"),
  36772. name: "Collar",
  36773. image: {
  36774. source: "./media/characters/sykes/collar.svg"
  36775. }
  36776. },
  36777. tail: {
  36778. height: math.unit(3.8, "feet"),
  36779. name: "Tail",
  36780. image: {
  36781. source: "./media/characters/sykes/tail.svg"
  36782. }
  36783. },
  36784. },
  36785. [
  36786. {
  36787. name: "Shrunken",
  36788. height: math.unit(5, "inches")
  36789. },
  36790. {
  36791. name: "Normal",
  36792. height: math.unit(6 + 4 / 12, "feet"),
  36793. default: true
  36794. },
  36795. {
  36796. name: "Big",
  36797. height: math.unit(15, "feet")
  36798. },
  36799. ]
  36800. ))
  36801. characterMakers.push(() => makeCharacter(
  36802. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36803. {
  36804. front: {
  36805. height: math.unit(5 + 8/12, "feet"),
  36806. weight: math.unit(190, "lb"),
  36807. name: "Front",
  36808. image: {
  36809. source: "./media/characters/oven-otter/front.svg",
  36810. extra: 1809/1740,
  36811. bottom: 181/1990
  36812. }
  36813. },
  36814. back: {
  36815. height: math.unit(5 + 8/12, "feet"),
  36816. weight: math.unit(190, "lb"),
  36817. name: "Back",
  36818. image: {
  36819. source: "./media/characters/oven-otter/back.svg",
  36820. extra: 1709/1635,
  36821. bottom: 118/1827
  36822. }
  36823. },
  36824. hand: {
  36825. height: math.unit(1.07, "feet"),
  36826. name: "Hand",
  36827. image: {
  36828. source: "./media/characters/oven-otter/hand.svg"
  36829. }
  36830. },
  36831. beans: {
  36832. height: math.unit(1.74, "feet"),
  36833. name: "Beans",
  36834. image: {
  36835. source: "./media/characters/oven-otter/beans.svg"
  36836. }
  36837. },
  36838. },
  36839. [
  36840. {
  36841. name: "Micro",
  36842. height: math.unit(0.5, "inches")
  36843. },
  36844. {
  36845. name: "Normal",
  36846. height: math.unit(5 + 8/12, "feet"),
  36847. default: true
  36848. },
  36849. {
  36850. name: "Macro",
  36851. height: math.unit(250, "feet")
  36852. },
  36853. {
  36854. name: "Really High",
  36855. height: math.unit(420, "feet")
  36856. },
  36857. ]
  36858. ))
  36859. characterMakers.push(() => makeCharacter(
  36860. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36861. {
  36862. front: {
  36863. height: math.unit(5, "meters"),
  36864. weight: math.unit(292000000000000, "kg"),
  36865. name: "Front",
  36866. image: {
  36867. source: "./media/characters/devourer/front.svg",
  36868. extra: 1800/1733,
  36869. bottom: 211/2011
  36870. }
  36871. },
  36872. maw: {
  36873. height: math.unit(1.1, "meter"),
  36874. name: "Maw",
  36875. image: {
  36876. source: "./media/characters/devourer/maw.svg"
  36877. }
  36878. },
  36879. },
  36880. [
  36881. {
  36882. name: "Small",
  36883. height: math.unit(3, "meters")
  36884. },
  36885. {
  36886. name: "Large",
  36887. height: math.unit(5, "meters"),
  36888. default: true
  36889. },
  36890. ]
  36891. ))
  36892. characterMakers.push(() => makeCharacter(
  36893. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36894. {
  36895. front: {
  36896. height: math.unit(6, "feet"),
  36897. weight: math.unit(400, "lb"),
  36898. name: "Front",
  36899. image: {
  36900. source: "./media/characters/ellarby/front.svg",
  36901. extra: 1909/1763,
  36902. bottom: 80/1989
  36903. }
  36904. },
  36905. back: {
  36906. height: math.unit(6, "feet"),
  36907. weight: math.unit(400, "lb"),
  36908. name: "Back",
  36909. image: {
  36910. source: "./media/characters/ellarby/back.svg",
  36911. extra: 1914/1784,
  36912. bottom: 172/2086
  36913. }
  36914. },
  36915. },
  36916. [
  36917. {
  36918. name: "Mischief",
  36919. height: math.unit(18, "inches")
  36920. },
  36921. {
  36922. name: "Trouble",
  36923. height: math.unit(12, "feet")
  36924. },
  36925. {
  36926. name: "Havoc",
  36927. height: math.unit(200, "feet"),
  36928. default: true
  36929. },
  36930. {
  36931. name: "Pandemonium",
  36932. height: math.unit(1, "mile")
  36933. },
  36934. {
  36935. name: "Catastrophe",
  36936. height: math.unit(100, "miles")
  36937. },
  36938. ]
  36939. ))
  36940. characterMakers.push(() => makeCharacter(
  36941. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36942. {
  36943. front: {
  36944. height: math.unit(4.7, "meters"),
  36945. weight: math.unit(6500, "kg"),
  36946. name: "Front",
  36947. image: {
  36948. source: "./media/characters/vex/front.svg",
  36949. extra: 1288/1140,
  36950. bottom: 100/1388
  36951. }
  36952. },
  36953. },
  36954. [
  36955. {
  36956. name: "Normal",
  36957. height: math.unit(4.7, "meters"),
  36958. default: true
  36959. },
  36960. ]
  36961. ))
  36962. characterMakers.push(() => makeCharacter(
  36963. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36964. {
  36965. normal: {
  36966. height: math.unit(6, "feet"),
  36967. weight: math.unit(350, "lb"),
  36968. name: "Normal",
  36969. image: {
  36970. source: "./media/characters/teshy/normal.svg",
  36971. extra: 1795/1735,
  36972. bottom: 16/1811
  36973. }
  36974. },
  36975. monsterFront: {
  36976. height: math.unit(12, "feet"),
  36977. weight: math.unit(4700, "lb"),
  36978. name: "Monster (Front)",
  36979. image: {
  36980. source: "./media/characters/teshy/monster-front.svg",
  36981. extra: 2042/2034,
  36982. bottom: 128/2170
  36983. }
  36984. },
  36985. monsterSide: {
  36986. height: math.unit(12, "feet"),
  36987. weight: math.unit(4700, "lb"),
  36988. name: "Monster (Side)",
  36989. image: {
  36990. source: "./media/characters/teshy/monster-side.svg",
  36991. extra: 2067/2056,
  36992. bottom: 70/2137
  36993. }
  36994. },
  36995. monsterBack: {
  36996. height: math.unit(12, "feet"),
  36997. weight: math.unit(4700, "lb"),
  36998. name: "Monster (Back)",
  36999. image: {
  37000. source: "./media/characters/teshy/monster-back.svg",
  37001. extra: 1921/1914,
  37002. bottom: 171/2092
  37003. }
  37004. },
  37005. },
  37006. [
  37007. {
  37008. name: "Normal",
  37009. height: math.unit(6, "feet"),
  37010. default: true
  37011. },
  37012. ]
  37013. ))
  37014. characterMakers.push(() => makeCharacter(
  37015. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  37016. {
  37017. front: {
  37018. height: math.unit(6, "feet"),
  37019. name: "Front",
  37020. image: {
  37021. source: "./media/characters/ramey/front.svg",
  37022. extra: 790/787,
  37023. bottom: 27/817
  37024. }
  37025. },
  37026. },
  37027. [
  37028. {
  37029. name: "Normal",
  37030. height: math.unit(6, "feet"),
  37031. default: true
  37032. },
  37033. ]
  37034. ))
  37035. characterMakers.push(() => makeCharacter(
  37036. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  37037. {
  37038. front: {
  37039. height: math.unit(5 + 5/12, "feet"),
  37040. weight: math.unit(120, "lb"),
  37041. name: "Front",
  37042. image: {
  37043. source: "./media/characters/phirae/front.svg",
  37044. extra: 2491/2436,
  37045. bottom: 38/2529
  37046. }
  37047. },
  37048. },
  37049. [
  37050. {
  37051. name: "Normal",
  37052. height: math.unit(5 + 5/12, "feet"),
  37053. default: true
  37054. },
  37055. ]
  37056. ))
  37057. characterMakers.push(() => makeCharacter(
  37058. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  37059. {
  37060. front: {
  37061. height: math.unit(5 + 3/12, "feet"),
  37062. name: "Front",
  37063. image: {
  37064. source: "./media/characters/stagglas/front.svg",
  37065. extra: 962/882,
  37066. bottom: 53/1015
  37067. }
  37068. },
  37069. feral: {
  37070. height: math.unit(335, "cm"),
  37071. name: "Feral",
  37072. image: {
  37073. source: "./media/characters/stagglas/feral.svg",
  37074. extra: 1732/1090,
  37075. bottom: 48/1780
  37076. }
  37077. },
  37078. },
  37079. [
  37080. {
  37081. name: "Normal",
  37082. height: math.unit(5 + 3/12, "feet"),
  37083. default: true
  37084. },
  37085. ]
  37086. ))
  37087. characterMakers.push(() => makeCharacter(
  37088. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  37089. {
  37090. front: {
  37091. height: math.unit(5 + 4/12, "feet"),
  37092. weight: math.unit(145, "lb"),
  37093. name: "Front",
  37094. image: {
  37095. source: "./media/characters/starra/front.svg",
  37096. extra: 1790/1691,
  37097. bottom: 91/1881
  37098. }
  37099. },
  37100. },
  37101. [
  37102. {
  37103. name: "Normal",
  37104. height: math.unit(5 + 4/12, "feet"),
  37105. default: true
  37106. },
  37107. ]
  37108. ))
  37109. characterMakers.push(() => makeCharacter(
  37110. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  37111. {
  37112. front: {
  37113. height: math.unit(3.5, "meters"),
  37114. name: "Front",
  37115. image: {
  37116. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  37117. extra: 1248/972,
  37118. bottom: 38/1286
  37119. }
  37120. },
  37121. },
  37122. [
  37123. {
  37124. name: "Normal",
  37125. height: math.unit(3.5, "meters"),
  37126. default: true
  37127. },
  37128. ]
  37129. ))
  37130. characterMakers.push(() => makeCharacter(
  37131. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  37132. {
  37133. side: {
  37134. height: math.unit(8 + 2/12, "feet"),
  37135. weight: math.unit(1240, "lb"),
  37136. name: "Side",
  37137. image: {
  37138. source: "./media/characters/mika-valentine/side.svg",
  37139. extra: 2670/2501,
  37140. bottom: 250/2920
  37141. }
  37142. },
  37143. },
  37144. [
  37145. {
  37146. name: "Normal",
  37147. height: math.unit(8 + 2/12, "feet"),
  37148. default: true
  37149. },
  37150. ]
  37151. ))
  37152. characterMakers.push(() => makeCharacter(
  37153. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  37154. {
  37155. front: {
  37156. height: math.unit(7 + 2/12, "feet"),
  37157. name: "Front",
  37158. image: {
  37159. source: "./media/characters/xoltol/front.svg",
  37160. extra: 2212/2124,
  37161. bottom: 84/2296
  37162. }
  37163. },
  37164. side: {
  37165. height: math.unit(7 + 2/12, "feet"),
  37166. name: "Side",
  37167. image: {
  37168. source: "./media/characters/xoltol/side.svg",
  37169. extra: 2273/2197,
  37170. bottom: 26/2299
  37171. }
  37172. },
  37173. hand: {
  37174. height: math.unit(2.5, "feet"),
  37175. name: "Hand",
  37176. image: {
  37177. source: "./media/characters/xoltol/hand.svg"
  37178. }
  37179. },
  37180. },
  37181. [
  37182. {
  37183. name: "Small-ish",
  37184. height: math.unit(5 + 11/12, "feet")
  37185. },
  37186. {
  37187. name: "Normal",
  37188. height: math.unit(7 + 2/12, "feet")
  37189. },
  37190. {
  37191. name: "\"Macro\"",
  37192. height: math.unit(14 + 9/12, "feet"),
  37193. default: true
  37194. },
  37195. {
  37196. name: "Alternate Height",
  37197. height: math.unit(20, "feet")
  37198. },
  37199. {
  37200. name: "Actually Macro",
  37201. height: math.unit(100, "feet")
  37202. },
  37203. ]
  37204. ))
  37205. characterMakers.push(() => makeCharacter(
  37206. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  37207. {
  37208. front: {
  37209. height: math.unit(5 + 2/12, "feet"),
  37210. weight: math.unit(75, "kg"),
  37211. name: "Front",
  37212. image: {
  37213. source: "./media/characters/kotetsu-redwood/front.svg",
  37214. extra: 1053/942,
  37215. bottom: 60/1113
  37216. }
  37217. },
  37218. },
  37219. [
  37220. {
  37221. name: "Normal",
  37222. height: math.unit(5 + 2/12, "feet"),
  37223. default: true
  37224. },
  37225. ]
  37226. ))
  37227. characterMakers.push(() => makeCharacter(
  37228. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  37229. {
  37230. front: {
  37231. height: math.unit(2.4, "meters"),
  37232. weight: math.unit(125, "kg"),
  37233. name: "Front",
  37234. image: {
  37235. source: "./media/characters/lilith/front.svg",
  37236. extra: 1590/1513,
  37237. bottom: 203/1793
  37238. }
  37239. },
  37240. },
  37241. [
  37242. {
  37243. name: "Humanoid",
  37244. height: math.unit(2.4, "meters")
  37245. },
  37246. {
  37247. name: "Normal",
  37248. height: math.unit(6, "meters"),
  37249. default: true
  37250. },
  37251. {
  37252. name: "Largest",
  37253. height: math.unit(55, "meters")
  37254. },
  37255. ]
  37256. ))
  37257. characterMakers.push(() => makeCharacter(
  37258. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  37259. {
  37260. front: {
  37261. height: math.unit(8 + 4/12, "feet"),
  37262. weight: math.unit(535, "lb"),
  37263. name: "Front",
  37264. image: {
  37265. source: "./media/characters/beh'kah-bolger/front.svg",
  37266. extra: 1660/1603,
  37267. bottom: 37/1697
  37268. }
  37269. },
  37270. },
  37271. [
  37272. {
  37273. name: "Normal",
  37274. height: math.unit(8 + 4/12, "feet"),
  37275. default: true
  37276. },
  37277. {
  37278. name: "Kaiju",
  37279. height: math.unit(250, "feet")
  37280. },
  37281. {
  37282. name: "Still Growing",
  37283. height: math.unit(10, "miles")
  37284. },
  37285. {
  37286. name: "Continental",
  37287. height: math.unit(5000, "miles")
  37288. },
  37289. {
  37290. name: "Final Form",
  37291. height: math.unit(2500000, "miles")
  37292. },
  37293. ]
  37294. ))
  37295. characterMakers.push(() => makeCharacter(
  37296. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  37297. {
  37298. front: {
  37299. height: math.unit(7 + 2/12, "feet"),
  37300. weight: math.unit(230, "kg"),
  37301. name: "Front",
  37302. image: {
  37303. source: "./media/characters/tatyana-milewska/front.svg",
  37304. extra: 1199/1150,
  37305. bottom: 86/1285
  37306. }
  37307. },
  37308. },
  37309. [
  37310. {
  37311. name: "Normal",
  37312. height: math.unit(7 + 2/12, "feet"),
  37313. default: true
  37314. },
  37315. {
  37316. name: "Big",
  37317. height: math.unit(12, "feet")
  37318. },
  37319. {
  37320. name: "Minimacro",
  37321. height: math.unit(20, "feet")
  37322. },
  37323. {
  37324. name: "Macro",
  37325. height: math.unit(120, "feet")
  37326. },
  37327. ]
  37328. ))
  37329. characterMakers.push(() => makeCharacter(
  37330. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  37331. {
  37332. front: {
  37333. height: math.unit(7 + 8/12, "feet"),
  37334. weight: math.unit(152, "kg"),
  37335. name: "Front",
  37336. image: {
  37337. source: "./media/characters/helen-arri/front.svg",
  37338. extra: 440/423,
  37339. bottom: 14/454
  37340. }
  37341. },
  37342. back: {
  37343. height: math.unit(7 + 8/12, "feet"),
  37344. weight: math.unit(152, "kg"),
  37345. name: "Back",
  37346. image: {
  37347. source: "./media/characters/helen-arri/back.svg",
  37348. extra: 443/426,
  37349. bottom: 8/451
  37350. }
  37351. },
  37352. },
  37353. [
  37354. {
  37355. name: "Normal",
  37356. height: math.unit(7 + 8/12, "feet"),
  37357. default: true
  37358. },
  37359. {
  37360. name: "Big",
  37361. height: math.unit(14, "feet")
  37362. },
  37363. {
  37364. name: "Minimacro",
  37365. height: math.unit(24, "feet")
  37366. },
  37367. {
  37368. name: "Macro",
  37369. height: math.unit(140, "feet")
  37370. },
  37371. ]
  37372. ))
  37373. characterMakers.push(() => makeCharacter(
  37374. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  37375. {
  37376. front: {
  37377. height: math.unit(6, "meters"),
  37378. name: "Front",
  37379. image: {
  37380. source: "./media/characters/ehanu-rehu/front.svg",
  37381. extra: 1800/1800,
  37382. bottom: 59/1859
  37383. }
  37384. },
  37385. },
  37386. [
  37387. {
  37388. name: "Normal",
  37389. height: math.unit(6, "meters"),
  37390. default: true
  37391. },
  37392. ]
  37393. ))
  37394. characterMakers.push(() => makeCharacter(
  37395. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  37396. {
  37397. front: {
  37398. height: math.unit(7 + 3/12, "feet"),
  37399. name: "Front",
  37400. image: {
  37401. source: "./media/characters/renholder/front.svg",
  37402. extra: 3096/2960,
  37403. bottom: 250/3346
  37404. }
  37405. },
  37406. },
  37407. [
  37408. {
  37409. name: "Normal Bat",
  37410. height: math.unit(7 + 3/12, "feet"),
  37411. default: true
  37412. },
  37413. {
  37414. name: "Slightly Tall Bat",
  37415. height: math.unit(100, "feet")
  37416. },
  37417. {
  37418. name: "Big Bat",
  37419. height: math.unit(1000, "feet")
  37420. },
  37421. {
  37422. name: "City-Sized Bat",
  37423. height: math.unit(200000, "feet")
  37424. },
  37425. {
  37426. name: "Bigger Bat",
  37427. height: math.unit(10000, "miles")
  37428. },
  37429. {
  37430. name: "Solar Sized Bat",
  37431. height: math.unit(100, "AU")
  37432. },
  37433. {
  37434. name: "Galactic Bat",
  37435. height: math.unit(200000, "lightyears")
  37436. },
  37437. {
  37438. name: "Universally Known Bat",
  37439. height: math.unit(1, "universe")
  37440. },
  37441. ]
  37442. ))
  37443. characterMakers.push(() => makeCharacter(
  37444. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  37445. {
  37446. front: {
  37447. height: math.unit(6 + 11/12, "feet"),
  37448. weight: math.unit(250, "lb"),
  37449. name: "Front",
  37450. image: {
  37451. source: "./media/characters/cookiecat/front.svg",
  37452. extra: 893/827,
  37453. bottom: 14/907
  37454. }
  37455. },
  37456. },
  37457. [
  37458. {
  37459. name: "Micro",
  37460. height: math.unit(3, "inches")
  37461. },
  37462. {
  37463. name: "Normal",
  37464. height: math.unit(6 + 11/12, "feet"),
  37465. default: true
  37466. },
  37467. {
  37468. name: "Macro",
  37469. height: math.unit(100, "feet")
  37470. },
  37471. {
  37472. name: "Macro+",
  37473. height: math.unit(404, "feet")
  37474. },
  37475. {
  37476. name: "Megamacro",
  37477. height: math.unit(165, "miles")
  37478. },
  37479. {
  37480. name: "Planetary",
  37481. height: math.unit(4600, "miles")
  37482. },
  37483. ]
  37484. ))
  37485. characterMakers.push(() => makeCharacter(
  37486. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  37487. {
  37488. front: {
  37489. height: math.unit(10 + 3/12, "feet"),
  37490. weight: math.unit(1500, "lb"),
  37491. name: "Front",
  37492. image: {
  37493. source: "./media/characters/tux-kusanagi/front.svg",
  37494. extra: 944/840,
  37495. bottom: 39/983
  37496. }
  37497. },
  37498. back: {
  37499. height: math.unit(10 + 3/12, "feet"),
  37500. weight: math.unit(1500, "lb"),
  37501. name: "Back",
  37502. image: {
  37503. source: "./media/characters/tux-kusanagi/back.svg",
  37504. extra: 941/842,
  37505. bottom: 28/969
  37506. }
  37507. },
  37508. rump: {
  37509. height: math.unit(5.25, "feet"),
  37510. name: "Rump",
  37511. image: {
  37512. source: "./media/characters/tux-kusanagi/rump.svg"
  37513. }
  37514. },
  37515. beak: {
  37516. height: math.unit(1.54, "feet"),
  37517. name: "Beak",
  37518. image: {
  37519. source: "./media/characters/tux-kusanagi/beak.svg"
  37520. }
  37521. },
  37522. },
  37523. [
  37524. {
  37525. name: "Normal",
  37526. height: math.unit(10 + 3/12, "feet"),
  37527. default: true
  37528. },
  37529. ]
  37530. ))
  37531. characterMakers.push(() => makeCharacter(
  37532. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37533. {
  37534. front: {
  37535. height: math.unit(58, "feet"),
  37536. weight: math.unit(200, "tons"),
  37537. name: "Front",
  37538. image: {
  37539. source: "./media/characters/uzarmazari/front.svg",
  37540. extra: 1575/1455,
  37541. bottom: 152/1727
  37542. }
  37543. },
  37544. back: {
  37545. height: math.unit(58, "feet"),
  37546. weight: math.unit(200, "tons"),
  37547. name: "Back",
  37548. image: {
  37549. source: "./media/characters/uzarmazari/back.svg",
  37550. extra: 1585/1510,
  37551. bottom: 157/1742
  37552. }
  37553. },
  37554. head: {
  37555. height: math.unit(26, "feet"),
  37556. name: "Head",
  37557. image: {
  37558. source: "./media/characters/uzarmazari/head.svg"
  37559. }
  37560. },
  37561. },
  37562. [
  37563. {
  37564. name: "Normal",
  37565. height: math.unit(58, "feet"),
  37566. default: true
  37567. },
  37568. ]
  37569. ))
  37570. characterMakers.push(() => makeCharacter(
  37571. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37572. {
  37573. side: {
  37574. height: math.unit(15, "feet"),
  37575. name: "Side",
  37576. image: {
  37577. source: "./media/characters/akitu/side.svg",
  37578. extra: 1421/1321,
  37579. bottom: 157/1578
  37580. }
  37581. },
  37582. front: {
  37583. height: math.unit(15, "feet"),
  37584. name: "Front",
  37585. image: {
  37586. source: "./media/characters/akitu/front.svg",
  37587. extra: 1435/1326,
  37588. bottom: 232/1667
  37589. }
  37590. },
  37591. },
  37592. [
  37593. {
  37594. name: "Normal",
  37595. height: math.unit(15, "feet"),
  37596. default: true
  37597. },
  37598. ]
  37599. ))
  37600. characterMakers.push(() => makeCharacter(
  37601. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  37602. {
  37603. front: {
  37604. height: math.unit(10 + 8/12, "feet"),
  37605. name: "Front",
  37606. image: {
  37607. source: "./media/characters/azalie-croixland/front.svg",
  37608. extra: 1972/1856,
  37609. bottom: 31/2003
  37610. }
  37611. },
  37612. },
  37613. [
  37614. {
  37615. name: "Original Height",
  37616. height: math.unit(5 + 4/12, "feet")
  37617. },
  37618. {
  37619. name: "Normal Height",
  37620. height: math.unit(10 + 8/12, "feet"),
  37621. default: true
  37622. },
  37623. ]
  37624. ))
  37625. characterMakers.push(() => makeCharacter(
  37626. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37627. {
  37628. side: {
  37629. height: math.unit(7 + 1/12, "feet"),
  37630. weight: math.unit(245, "lb"),
  37631. name: "Side",
  37632. image: {
  37633. source: "./media/characters/kavus-kazian/side.svg",
  37634. extra: 349/342,
  37635. bottom: 15/364
  37636. }
  37637. },
  37638. },
  37639. [
  37640. {
  37641. name: "Normal",
  37642. height: math.unit(7 + 1/12, "feet"),
  37643. default: true
  37644. },
  37645. ]
  37646. ))
  37647. characterMakers.push(() => makeCharacter(
  37648. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37649. {
  37650. normalFront: {
  37651. height: math.unit(5 + 11/12, "feet"),
  37652. name: "Front",
  37653. image: {
  37654. source: "./media/characters/moonlight-rose/normal-front.svg",
  37655. extra: 1980/1825,
  37656. bottom: 18/1998
  37657. },
  37658. form: "normal",
  37659. default: true
  37660. },
  37661. normalBack: {
  37662. height: math.unit(5 + 11/12, "feet"),
  37663. name: "Back",
  37664. image: {
  37665. source: "./media/characters/moonlight-rose/normal-back.svg",
  37666. extra: 2010/1839,
  37667. bottom: 10/2020
  37668. },
  37669. form: "normal"
  37670. },
  37671. demonFront: {
  37672. height: math.unit(1.5, "earths"),
  37673. name: "Front",
  37674. image: {
  37675. source: "./media/characters/moonlight-rose/demon.svg",
  37676. extra: 1400/1294,
  37677. bottom: 45/1445
  37678. },
  37679. form: "demon",
  37680. default: true
  37681. },
  37682. terraFront: {
  37683. height: math.unit(1.5, "earths"),
  37684. name: "Front",
  37685. image: {
  37686. source: "./media/characters/moonlight-rose/terra.svg"
  37687. },
  37688. form: "terra",
  37689. default: true
  37690. },
  37691. jupiterFront: {
  37692. height: math.unit(69911*2, "km"),
  37693. name: "Front",
  37694. image: {
  37695. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37696. extra: 1367/1286,
  37697. bottom: 55/1422
  37698. },
  37699. form: "jupiter",
  37700. default: true
  37701. },
  37702. neptuneFront: {
  37703. height: math.unit(24622*2, "feet"),
  37704. name: "Front",
  37705. image: {
  37706. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37707. extra: 1851/1712,
  37708. bottom: 0/1851
  37709. },
  37710. form: "neptune",
  37711. default: true
  37712. },
  37713. },
  37714. [
  37715. {
  37716. name: "\"Natural\" Height",
  37717. height: math.unit(5 + 11/12, "feet"),
  37718. form: "normal"
  37719. },
  37720. {
  37721. name: "Smallest comfortable size",
  37722. height: math.unit(40, "meters"),
  37723. form: "normal"
  37724. },
  37725. {
  37726. name: "Common size",
  37727. height: math.unit(50, "km"),
  37728. form: "normal",
  37729. default: true
  37730. },
  37731. {
  37732. name: "Normal",
  37733. height: math.unit(1.5, "earths"),
  37734. form: "demon",
  37735. default: true
  37736. },
  37737. {
  37738. name: "Universal",
  37739. height: math.unit(15, "universes"),
  37740. form: "demon"
  37741. },
  37742. {
  37743. name: "Earth",
  37744. height: math.unit(1.5, "earths"),
  37745. form: "terra",
  37746. default: true
  37747. },
  37748. {
  37749. name: "Super Earth",
  37750. height: math.unit(67.5, "earths"),
  37751. form: "terra"
  37752. },
  37753. {
  37754. name: "Doesn't fit in a solar system...",
  37755. height: math.unit(1, "galaxy"),
  37756. form: "terra"
  37757. },
  37758. {
  37759. name: "Saturn",
  37760. height: math.unit(58232*2, "km"),
  37761. form: "jupiter"
  37762. },
  37763. {
  37764. name: "Jupiter",
  37765. height: math.unit(69911*2, "km"),
  37766. form: "jupiter",
  37767. default: true
  37768. },
  37769. {
  37770. name: "HD 100546 b",
  37771. height: math.unit(482938, "km"),
  37772. form: "jupiter"
  37773. },
  37774. {
  37775. name: "Enceladus",
  37776. height: math.unit(513*2, "km"),
  37777. form: "neptune"
  37778. },
  37779. {
  37780. name: "Europe",
  37781. height: math.unit(1560*2, "km"),
  37782. form: "neptune"
  37783. },
  37784. {
  37785. name: "Neptune",
  37786. height: math.unit(24622*2, "km"),
  37787. form: "neptune",
  37788. default: true
  37789. },
  37790. {
  37791. name: "CoRoT-9b",
  37792. height: math.unit(75067*2, "km"),
  37793. form: "neptune"
  37794. },
  37795. ],
  37796. {
  37797. "normal": {
  37798. name: "Normal",
  37799. default: true
  37800. },
  37801. "demon": {
  37802. name: "Demon"
  37803. },
  37804. "terra": {
  37805. name: "Terra"
  37806. },
  37807. "jupiter": {
  37808. name: "Jupiter"
  37809. },
  37810. "neptune": {
  37811. name: "Neptune"
  37812. }
  37813. }
  37814. ))
  37815. characterMakers.push(() => makeCharacter(
  37816. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37817. {
  37818. front: {
  37819. height: math.unit(16, "feet"),
  37820. weight: math.unit(610, "kg"),
  37821. name: "Front",
  37822. image: {
  37823. source: "./media/characters/huckle/front.svg",
  37824. extra: 1731/1625,
  37825. bottom: 33/1764
  37826. }
  37827. },
  37828. back: {
  37829. height: math.unit(16, "feet"),
  37830. weight: math.unit(610, "kg"),
  37831. name: "Back",
  37832. image: {
  37833. source: "./media/characters/huckle/back.svg",
  37834. extra: 1738/1651,
  37835. bottom: 37/1775
  37836. }
  37837. },
  37838. laughing: {
  37839. height: math.unit(3.75, "feet"),
  37840. name: "Laughing",
  37841. image: {
  37842. source: "./media/characters/huckle/laughing.svg"
  37843. }
  37844. },
  37845. angry: {
  37846. height: math.unit(4.15, "feet"),
  37847. name: "Angry",
  37848. image: {
  37849. source: "./media/characters/huckle/angry.svg"
  37850. }
  37851. },
  37852. },
  37853. [
  37854. {
  37855. name: "Normal",
  37856. height: math.unit(16, "feet"),
  37857. default: true
  37858. },
  37859. {
  37860. name: "Mini Macro",
  37861. height: math.unit(463, "feet")
  37862. },
  37863. {
  37864. name: "Macro",
  37865. height: math.unit(1680, "meters")
  37866. },
  37867. {
  37868. name: "Mega Macro",
  37869. height: math.unit(175, "km")
  37870. },
  37871. {
  37872. name: "Terra Macro",
  37873. height: math.unit(32, "gigameters")
  37874. },
  37875. {
  37876. name: "Multiverse+",
  37877. height: math.unit(2.56e23, "yottameters")
  37878. },
  37879. ]
  37880. ))
  37881. characterMakers.push(() => makeCharacter(
  37882. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37883. {
  37884. front: {
  37885. height: math.unit(6 + 9/12, "feet"),
  37886. weight: math.unit(280, "lb"),
  37887. name: "Front",
  37888. image: {
  37889. source: "./media/characters/candy/front.svg",
  37890. extra: 234/217,
  37891. bottom: 11/245
  37892. }
  37893. },
  37894. },
  37895. [
  37896. {
  37897. name: "Really Small",
  37898. height: math.unit(0.1, "nm")
  37899. },
  37900. {
  37901. name: "Micro",
  37902. height: math.unit(2, "inches")
  37903. },
  37904. {
  37905. name: "Normal",
  37906. height: math.unit(6 + 9/12, "feet"),
  37907. default: true
  37908. },
  37909. {
  37910. name: "Small Macro",
  37911. height: math.unit(69, "feet")
  37912. },
  37913. {
  37914. name: "Macro",
  37915. height: math.unit(160, "feet")
  37916. },
  37917. {
  37918. name: "Megamacro",
  37919. height: math.unit(22000, "miles")
  37920. },
  37921. {
  37922. name: "Gigamacro",
  37923. height: math.unit(50000, "miles")
  37924. },
  37925. ]
  37926. ))
  37927. characterMakers.push(() => makeCharacter(
  37928. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37929. {
  37930. front: {
  37931. height: math.unit(4, "feet"),
  37932. weight: math.unit(90, "lb"),
  37933. name: "Front",
  37934. image: {
  37935. source: "./media/characters/joey-mcdonald/front.svg",
  37936. extra: 1059/852,
  37937. bottom: 33/1092
  37938. }
  37939. },
  37940. back: {
  37941. height: math.unit(4, "feet"),
  37942. weight: math.unit(90, "lb"),
  37943. name: "Back",
  37944. image: {
  37945. source: "./media/characters/joey-mcdonald/back.svg",
  37946. extra: 1077/879,
  37947. bottom: 5/1082
  37948. }
  37949. },
  37950. frontKobold: {
  37951. height: math.unit(4, "feet"),
  37952. weight: math.unit(100, "lb"),
  37953. name: "Front-kobold",
  37954. image: {
  37955. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37956. extra: 1480/1367,
  37957. bottom: 0/1480
  37958. }
  37959. },
  37960. backKobold: {
  37961. height: math.unit(4, "feet"),
  37962. weight: math.unit(100, "lb"),
  37963. name: "Back-kobold",
  37964. image: {
  37965. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37966. extra: 1449/1361,
  37967. bottom: 0/1449
  37968. }
  37969. },
  37970. },
  37971. [
  37972. {
  37973. name: "Normal",
  37974. height: math.unit(4, "feet"),
  37975. default: true
  37976. },
  37977. ]
  37978. ))
  37979. characterMakers.push(() => makeCharacter(
  37980. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37981. {
  37982. front: {
  37983. height: math.unit(12 + 6/12, "feet"),
  37984. name: "Front",
  37985. image: {
  37986. source: "./media/characters/kass-lockheed/front.svg",
  37987. extra: 354/343,
  37988. bottom: 9/363
  37989. }
  37990. },
  37991. back: {
  37992. height: math.unit(12 + 6/12, "feet"),
  37993. name: "Back",
  37994. image: {
  37995. source: "./media/characters/kass-lockheed/back.svg",
  37996. extra: 364/352,
  37997. bottom: 3/367
  37998. }
  37999. },
  38000. dick: {
  38001. height: math.unit(3.12, "feet"),
  38002. name: "Dick",
  38003. image: {
  38004. source: "./media/characters/kass-lockheed/dick.svg"
  38005. }
  38006. },
  38007. head: {
  38008. height: math.unit(2.6, "feet"),
  38009. name: "Head",
  38010. image: {
  38011. source: "./media/characters/kass-lockheed/head.svg"
  38012. }
  38013. },
  38014. bleh: {
  38015. height: math.unit(2.85, "feet"),
  38016. name: "Bleh",
  38017. image: {
  38018. source: "./media/characters/kass-lockheed/bleh.svg"
  38019. }
  38020. },
  38021. smug: {
  38022. height: math.unit(2.85, "feet"),
  38023. name: "Smug",
  38024. image: {
  38025. source: "./media/characters/kass-lockheed/smug.svg"
  38026. }
  38027. },
  38028. },
  38029. [
  38030. {
  38031. name: "Normal",
  38032. height: math.unit(12 + 6/12, "feet"),
  38033. default: true
  38034. },
  38035. ]
  38036. ))
  38037. characterMakers.push(() => makeCharacter(
  38038. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  38039. {
  38040. front: {
  38041. height: math.unit(6 + 2/12, "feet"),
  38042. name: "Front",
  38043. image: {
  38044. source: "./media/characters/taylor/front.svg",
  38045. extra: 639/495,
  38046. bottom: 12/651
  38047. }
  38048. },
  38049. },
  38050. [
  38051. {
  38052. name: "Normal",
  38053. height: math.unit(6 + 2/12, "feet"),
  38054. default: true
  38055. },
  38056. {
  38057. name: "Big",
  38058. height: math.unit(15, "feet")
  38059. },
  38060. {
  38061. name: "Lorg",
  38062. height: math.unit(80, "feet")
  38063. },
  38064. {
  38065. name: "Too Lorg",
  38066. height: math.unit(120, "feet")
  38067. },
  38068. ]
  38069. ))
  38070. characterMakers.push(() => makeCharacter(
  38071. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  38072. {
  38073. front: {
  38074. height: math.unit(15, "feet"),
  38075. name: "Front",
  38076. image: {
  38077. source: "./media/characters/kaizer/front.svg",
  38078. extra: 1612/1436,
  38079. bottom: 43/1655
  38080. }
  38081. },
  38082. },
  38083. [
  38084. {
  38085. name: "Normal",
  38086. height: math.unit(15, "feet"),
  38087. default: true
  38088. },
  38089. ]
  38090. ))
  38091. characterMakers.push(() => makeCharacter(
  38092. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  38093. {
  38094. front: {
  38095. height: math.unit(2, "feet"),
  38096. weight: math.unit(30, "lb"),
  38097. name: "Front",
  38098. image: {
  38099. source: "./media/characters/sandy/front.svg",
  38100. extra: 1439/1307,
  38101. bottom: 194/1633
  38102. }
  38103. },
  38104. },
  38105. [
  38106. {
  38107. name: "Normal",
  38108. height: math.unit(2, "feet"),
  38109. default: true
  38110. },
  38111. ]
  38112. ))
  38113. characterMakers.push(() => makeCharacter(
  38114. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  38115. {
  38116. front: {
  38117. height: math.unit(3, "feet"),
  38118. name: "Front",
  38119. image: {
  38120. source: "./media/characters/mellvi/front.svg",
  38121. extra: 1831/1630,
  38122. bottom: 58/1889
  38123. }
  38124. },
  38125. },
  38126. [
  38127. {
  38128. name: "Normal",
  38129. height: math.unit(3, "feet"),
  38130. default: true
  38131. },
  38132. ]
  38133. ))
  38134. characterMakers.push(() => makeCharacter(
  38135. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  38136. {
  38137. front: {
  38138. height: math.unit(5 + 11/12, "feet"),
  38139. weight: math.unit(200, "lb"),
  38140. name: "Front",
  38141. image: {
  38142. source: "./media/characters/shirou/front.svg",
  38143. extra: 2491/2383,
  38144. bottom: 189/2680
  38145. }
  38146. },
  38147. back: {
  38148. height: math.unit(5 + 11/12, "feet"),
  38149. weight: math.unit(200, "lb"),
  38150. name: "Back",
  38151. image: {
  38152. source: "./media/characters/shirou/back.svg",
  38153. extra: 2554/2450,
  38154. bottom: 76/2630
  38155. }
  38156. },
  38157. },
  38158. [
  38159. {
  38160. name: "Normal",
  38161. height: math.unit(5 + 11/12, "feet"),
  38162. default: true
  38163. },
  38164. ]
  38165. ))
  38166. characterMakers.push(() => makeCharacter(
  38167. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  38168. {
  38169. front: {
  38170. height: math.unit(6 + 3/12, "feet"),
  38171. weight: math.unit(177, "lb"),
  38172. name: "Front",
  38173. image: {
  38174. source: "./media/characters/noryu/front.svg",
  38175. extra: 973/885,
  38176. bottom: 10/983
  38177. }
  38178. },
  38179. },
  38180. [
  38181. {
  38182. name: "Normal",
  38183. height: math.unit(6 + 3/12, "feet"),
  38184. default: true
  38185. },
  38186. ]
  38187. ))
  38188. characterMakers.push(() => makeCharacter(
  38189. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  38190. {
  38191. front: {
  38192. height: math.unit(5 + 6/12, "feet"),
  38193. weight: math.unit(170, "lb"),
  38194. name: "Front",
  38195. image: {
  38196. source: "./media/characters/mevolas-rubenido/front.svg",
  38197. extra: 2109/1901,
  38198. bottom: 96/2205
  38199. }
  38200. },
  38201. },
  38202. [
  38203. {
  38204. name: "Normal",
  38205. height: math.unit(5 + 6/12, "feet"),
  38206. default: true
  38207. },
  38208. ]
  38209. ))
  38210. characterMakers.push(() => makeCharacter(
  38211. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  38212. {
  38213. front: {
  38214. height: math.unit(100, "feet"),
  38215. name: "Front",
  38216. image: {
  38217. source: "./media/characters/dee/front.svg",
  38218. extra: 2153/2036,
  38219. bottom: 59/2212
  38220. }
  38221. },
  38222. back: {
  38223. height: math.unit(100, "feet"),
  38224. name: "Back",
  38225. image: {
  38226. source: "./media/characters/dee/back.svg",
  38227. extra: 2183/2058,
  38228. bottom: 75/2258
  38229. }
  38230. },
  38231. foot: {
  38232. height: math.unit(19.43, "feet"),
  38233. name: "Foot",
  38234. image: {
  38235. source: "./media/characters/dee/foot.svg"
  38236. }
  38237. },
  38238. hoof: {
  38239. height: math.unit(20.6, "feet"),
  38240. name: "Hoof",
  38241. image: {
  38242. source: "./media/characters/dee/hoof.svg"
  38243. }
  38244. },
  38245. },
  38246. [
  38247. {
  38248. name: "Macro",
  38249. height: math.unit(100, "feet"),
  38250. default: true
  38251. },
  38252. ]
  38253. ))
  38254. characterMakers.push(() => makeCharacter(
  38255. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  38256. {
  38257. front: {
  38258. height: math.unit(5 + 6/12, "feet"),
  38259. name: "Front",
  38260. image: {
  38261. source: "./media/characters/teh/front.svg",
  38262. extra: 1002/847,
  38263. bottom: 62/1064
  38264. }
  38265. },
  38266. },
  38267. [
  38268. {
  38269. name: "Normal",
  38270. height: math.unit(5 + 6/12, "feet"),
  38271. default: true
  38272. },
  38273. ]
  38274. ))
  38275. characterMakers.push(() => makeCharacter(
  38276. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  38277. {
  38278. side: {
  38279. height: math.unit(6 + 1/12, "feet"),
  38280. weight: math.unit(204, "lb"),
  38281. name: "Side",
  38282. image: {
  38283. source: "./media/characters/quicksilver-ayukoti/side.svg",
  38284. extra: 974/775,
  38285. bottom: 169/1143
  38286. }
  38287. },
  38288. sitting: {
  38289. height: math.unit(6 + 2/12, "feet"),
  38290. weight: math.unit(204, "lb"),
  38291. name: "Sitting",
  38292. image: {
  38293. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  38294. extra: 1175/964,
  38295. bottom: 378/1553
  38296. }
  38297. },
  38298. },
  38299. [
  38300. {
  38301. name: "Normal",
  38302. height: math.unit(6 + 1/12, "feet"),
  38303. default: true
  38304. },
  38305. ]
  38306. ))
  38307. characterMakers.push(() => makeCharacter(
  38308. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  38309. {
  38310. front: {
  38311. height: math.unit(6, "inches"),
  38312. name: "Front",
  38313. image: {
  38314. source: "./media/characters/tululi/front.svg",
  38315. extra: 1997/1876,
  38316. bottom: 20/2017
  38317. }
  38318. },
  38319. },
  38320. [
  38321. {
  38322. name: "Normal",
  38323. height: math.unit(6, "inches"),
  38324. default: true
  38325. },
  38326. ]
  38327. ))
  38328. characterMakers.push(() => makeCharacter(
  38329. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  38330. {
  38331. front: {
  38332. height: math.unit(4 + 1/12, "feet"),
  38333. name: "Front",
  38334. image: {
  38335. source: "./media/characters/star/front.svg",
  38336. extra: 1493/1189,
  38337. bottom: 48/1541
  38338. }
  38339. },
  38340. },
  38341. [
  38342. {
  38343. name: "Normal",
  38344. height: math.unit(4 + 1/12, "feet"),
  38345. default: true
  38346. },
  38347. ]
  38348. ))
  38349. characterMakers.push(() => makeCharacter(
  38350. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  38351. {
  38352. front: {
  38353. height: math.unit(6 + 3/12, "feet"),
  38354. name: "Front",
  38355. image: {
  38356. source: "./media/characters/comet/front.svg",
  38357. extra: 1681/1462,
  38358. bottom: 26/1707
  38359. }
  38360. },
  38361. },
  38362. [
  38363. {
  38364. name: "Normal",
  38365. height: math.unit(6 + 3/12, "feet"),
  38366. default: true
  38367. },
  38368. ]
  38369. ))
  38370. characterMakers.push(() => makeCharacter(
  38371. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  38372. {
  38373. front: {
  38374. height: math.unit(950, "feet"),
  38375. name: "Front",
  38376. image: {
  38377. source: "./media/characters/vortex/front.svg",
  38378. extra: 1497/1434,
  38379. bottom: 56/1553
  38380. }
  38381. },
  38382. maw: {
  38383. height: math.unit(285, "feet"),
  38384. name: "Maw",
  38385. image: {
  38386. source: "./media/characters/vortex/maw.svg"
  38387. }
  38388. },
  38389. },
  38390. [
  38391. {
  38392. name: "Macro",
  38393. height: math.unit(950, "feet"),
  38394. default: true
  38395. },
  38396. ]
  38397. ))
  38398. characterMakers.push(() => makeCharacter(
  38399. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  38400. {
  38401. front: {
  38402. height: math.unit(600, "feet"),
  38403. weight: math.unit(0.02, "grams"),
  38404. name: "Front",
  38405. image: {
  38406. source: "./media/characters/doodle/front.svg",
  38407. extra: 1578/1413,
  38408. bottom: 37/1615
  38409. }
  38410. },
  38411. },
  38412. [
  38413. {
  38414. name: "Macro",
  38415. height: math.unit(600, "feet"),
  38416. default: true
  38417. },
  38418. ]
  38419. ))
  38420. characterMakers.push(() => makeCharacter(
  38421. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  38422. {
  38423. front: {
  38424. height: math.unit(6 + 6/12, "feet"),
  38425. name: "Front",
  38426. image: {
  38427. source: "./media/characters/jai/front.svg",
  38428. extra: 1645/1534,
  38429. bottom: 115/1760
  38430. }
  38431. },
  38432. },
  38433. [
  38434. {
  38435. name: "Normal",
  38436. height: math.unit(6 + 6/12, "feet"),
  38437. default: true
  38438. },
  38439. ]
  38440. ))
  38441. characterMakers.push(() => makeCharacter(
  38442. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  38443. {
  38444. front: {
  38445. height: math.unit(6 + 8/12, "feet"),
  38446. name: "Front",
  38447. image: {
  38448. source: "./media/characters/pixel/front.svg",
  38449. extra: 1900/1735,
  38450. bottom: 63/1963
  38451. }
  38452. },
  38453. },
  38454. [
  38455. {
  38456. name: "Normal",
  38457. height: math.unit(6 + 8/12, "feet"),
  38458. default: true
  38459. },
  38460. ]
  38461. ))
  38462. characterMakers.push(() => makeCharacter(
  38463. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38464. {
  38465. back: {
  38466. height: math.unit(4 + 1/12, "feet"),
  38467. weight: math.unit(75, "lb"),
  38468. name: "Back",
  38469. image: {
  38470. source: "./media/characters/rhett/back.svg",
  38471. extra: 930/878,
  38472. bottom: 25/955
  38473. }
  38474. },
  38475. front: {
  38476. height: math.unit(4 + 1/12, "feet"),
  38477. weight: math.unit(75, "lb"),
  38478. name: "Front",
  38479. image: {
  38480. source: "./media/characters/rhett/front.svg",
  38481. extra: 1682/1586,
  38482. bottom: 92/1774
  38483. }
  38484. },
  38485. },
  38486. [
  38487. {
  38488. name: "Micro",
  38489. height: math.unit(8, "inches")
  38490. },
  38491. {
  38492. name: "Tiny",
  38493. height: math.unit(2, "feet")
  38494. },
  38495. {
  38496. name: "Normal",
  38497. height: math.unit(4 + 1/12, "feet"),
  38498. default: true
  38499. },
  38500. ]
  38501. ))
  38502. characterMakers.push(() => makeCharacter(
  38503. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  38504. {
  38505. front: {
  38506. height: math.unit(3 + 3/12, "feet"),
  38507. name: "Front",
  38508. image: {
  38509. source: "./media/characters/penny/front.svg",
  38510. extra: 1406/1311,
  38511. bottom: 26/1432
  38512. }
  38513. },
  38514. },
  38515. [
  38516. {
  38517. name: "Normal",
  38518. height: math.unit(3 + 3/12, "feet"),
  38519. default: true
  38520. },
  38521. ]
  38522. ))
  38523. characterMakers.push(() => makeCharacter(
  38524. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38525. {
  38526. front: {
  38527. height: math.unit(4 + 11/12, "feet"),
  38528. name: "Front",
  38529. image: {
  38530. source: "./media/characters/monty/front.svg",
  38531. extra: 1479/1209,
  38532. bottom: 0/1479
  38533. }
  38534. },
  38535. },
  38536. [
  38537. {
  38538. name: "Normal",
  38539. height: math.unit(4 + 11/12, "feet"),
  38540. default: true
  38541. },
  38542. ]
  38543. ))
  38544. characterMakers.push(() => makeCharacter(
  38545. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38546. {
  38547. front: {
  38548. height: math.unit(8 + 4/12, "feet"),
  38549. name: "Front",
  38550. image: {
  38551. source: "./media/characters/sterling/front.svg",
  38552. extra: 1420/1236,
  38553. bottom: 27/1447
  38554. }
  38555. },
  38556. },
  38557. [
  38558. {
  38559. name: "Normal",
  38560. height: math.unit(8 + 4/12, "feet"),
  38561. default: true
  38562. },
  38563. ]
  38564. ))
  38565. characterMakers.push(() => makeCharacter(
  38566. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38567. {
  38568. front: {
  38569. height: math.unit(15, "feet"),
  38570. name: "Front",
  38571. image: {
  38572. source: "./media/characters/marble/front.svg",
  38573. extra: 973/937,
  38574. bottom: 32/1005
  38575. }
  38576. },
  38577. },
  38578. [
  38579. {
  38580. name: "Normal",
  38581. height: math.unit(15, "feet"),
  38582. default: true
  38583. },
  38584. ]
  38585. ))
  38586. characterMakers.push(() => makeCharacter(
  38587. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38588. {
  38589. front: {
  38590. height: math.unit(3, "inches"),
  38591. name: "Front",
  38592. image: {
  38593. source: "./media/characters/powder/front.svg",
  38594. extra: 1504/1334,
  38595. bottom: 518/2022
  38596. }
  38597. },
  38598. },
  38599. [
  38600. {
  38601. name: "Normal",
  38602. height: math.unit(3, "inches"),
  38603. default: true
  38604. },
  38605. ]
  38606. ))
  38607. characterMakers.push(() => makeCharacter(
  38608. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  38609. {
  38610. front: {
  38611. height: math.unit(4 + 5/12, "feet"),
  38612. name: "Front",
  38613. image: {
  38614. source: "./media/characters/joey-raccoon/front.svg",
  38615. extra: 1273/1197,
  38616. bottom: 0/1273
  38617. }
  38618. },
  38619. },
  38620. [
  38621. {
  38622. name: "Normal",
  38623. height: math.unit(4 + 5/12, "feet"),
  38624. default: true
  38625. },
  38626. ]
  38627. ))
  38628. characterMakers.push(() => makeCharacter(
  38629. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38630. {
  38631. front: {
  38632. height: math.unit(8 + 4/12, "feet"),
  38633. name: "Front",
  38634. image: {
  38635. source: "./media/characters/vick/front.svg",
  38636. extra: 2187/2118,
  38637. bottom: 47/2234
  38638. }
  38639. },
  38640. },
  38641. [
  38642. {
  38643. name: "Normal",
  38644. height: math.unit(8 + 4/12, "feet"),
  38645. default: true
  38646. },
  38647. ]
  38648. ))
  38649. characterMakers.push(() => makeCharacter(
  38650. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38651. {
  38652. front: {
  38653. height: math.unit(5 + 5/12, "feet"),
  38654. name: "Front",
  38655. image: {
  38656. source: "./media/characters/mitsy/front.svg",
  38657. extra: 1842/1695,
  38658. bottom: 0/1842
  38659. }
  38660. },
  38661. },
  38662. [
  38663. {
  38664. name: "Normal",
  38665. height: math.unit(5 + 5/12, "feet"),
  38666. default: true
  38667. },
  38668. ]
  38669. ))
  38670. characterMakers.push(() => makeCharacter(
  38671. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38672. {
  38673. front: {
  38674. height: math.unit(6 + 3/12, "feet"),
  38675. name: "Front",
  38676. image: {
  38677. source: "./media/characters/silvy/front.svg",
  38678. extra: 1995/1836,
  38679. bottom: 225/2220
  38680. }
  38681. },
  38682. },
  38683. [
  38684. {
  38685. name: "Normal",
  38686. height: math.unit(6 + 3/12, "feet"),
  38687. default: true
  38688. },
  38689. ]
  38690. ))
  38691. characterMakers.push(() => makeCharacter(
  38692. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38693. {
  38694. front: {
  38695. height: math.unit(3 + 8/12, "feet"),
  38696. name: "Front",
  38697. image: {
  38698. source: "./media/characters/rodney/front.svg",
  38699. extra: 1956/1747,
  38700. bottom: 31/1987
  38701. }
  38702. },
  38703. frontDressed: {
  38704. height: math.unit(2.9, "feet"),
  38705. name: "Front (Dressed)",
  38706. image: {
  38707. source: "./media/characters/rodney/front-dressed.svg",
  38708. extra: 1382/1241,
  38709. bottom: 385/1767
  38710. }
  38711. },
  38712. },
  38713. [
  38714. {
  38715. name: "Normal",
  38716. height: math.unit(3 + 8/12, "feet"),
  38717. default: true
  38718. },
  38719. ]
  38720. ))
  38721. characterMakers.push(() => makeCharacter(
  38722. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38723. {
  38724. front: {
  38725. height: math.unit(5 + 9/12, "feet"),
  38726. weight: math.unit(194, "lbs"),
  38727. name: "Front",
  38728. image: {
  38729. source: "./media/characters/zakail-sudekai/front.svg",
  38730. extra: 2696/2533,
  38731. bottom: 248/2944
  38732. }
  38733. },
  38734. maw: {
  38735. height: math.unit(1.35, "feet"),
  38736. name: "Maw",
  38737. image: {
  38738. source: "./media/characters/zakail-sudekai/maw.svg"
  38739. }
  38740. },
  38741. },
  38742. [
  38743. {
  38744. name: "Normal",
  38745. height: math.unit(5 + 9/12, "feet"),
  38746. default: true
  38747. },
  38748. ]
  38749. ))
  38750. characterMakers.push(() => makeCharacter(
  38751. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38752. {
  38753. front: {
  38754. height: math.unit(8 + 4/12, "feet"),
  38755. weight: math.unit(1200, "lb"),
  38756. name: "Front",
  38757. image: {
  38758. source: "./media/characters/eleanor/front.svg",
  38759. extra: 1226/1192,
  38760. bottom: 52/1278
  38761. }
  38762. },
  38763. back: {
  38764. height: math.unit(8 + 4/12, "feet"),
  38765. weight: math.unit(1200, "lb"),
  38766. name: "Back",
  38767. image: {
  38768. source: "./media/characters/eleanor/back.svg",
  38769. extra: 1242/1184,
  38770. bottom: 60/1302
  38771. }
  38772. },
  38773. head: {
  38774. height: math.unit(2.62, "feet"),
  38775. name: "Head",
  38776. image: {
  38777. source: "./media/characters/eleanor/head.svg"
  38778. }
  38779. },
  38780. },
  38781. [
  38782. {
  38783. name: "Normal",
  38784. height: math.unit(8 + 4/12, "feet"),
  38785. default: true
  38786. },
  38787. ]
  38788. ))
  38789. characterMakers.push(() => makeCharacter(
  38790. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38791. {
  38792. front: {
  38793. height: math.unit(8 + 4/12, "feet"),
  38794. weight: math.unit(750, "lb"),
  38795. name: "Front",
  38796. image: {
  38797. source: "./media/characters/tanya/front.svg",
  38798. extra: 1749/1615,
  38799. bottom: 33/1782
  38800. }
  38801. },
  38802. },
  38803. [
  38804. {
  38805. name: "Normal",
  38806. height: math.unit(8 + 4/12, "feet"),
  38807. default: true
  38808. },
  38809. ]
  38810. ))
  38811. characterMakers.push(() => makeCharacter(
  38812. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38813. {
  38814. front: {
  38815. height: math.unit(5, "feet"),
  38816. weight: math.unit(225, "lb"),
  38817. name: "Front",
  38818. image: {
  38819. source: "./media/characters/cindy/front.svg",
  38820. extra: 1320/1250,
  38821. bottom: 42/1362
  38822. }
  38823. },
  38824. frontDressed: {
  38825. height: math.unit(5, "feet"),
  38826. weight: math.unit(225, "lb"),
  38827. name: "Front (Dressed)",
  38828. image: {
  38829. source: "./media/characters/cindy/front-dressed.svg",
  38830. extra: 1320/1250,
  38831. bottom: 42/1362
  38832. }
  38833. },
  38834. back: {
  38835. height: math.unit(5, "feet"),
  38836. weight: math.unit(225, "lb"),
  38837. name: "Back",
  38838. image: {
  38839. source: "./media/characters/cindy/back.svg",
  38840. extra: 1384/1346,
  38841. bottom: 14/1398
  38842. }
  38843. },
  38844. },
  38845. [
  38846. {
  38847. name: "Normal",
  38848. height: math.unit(5, "feet"),
  38849. default: true
  38850. },
  38851. ]
  38852. ))
  38853. characterMakers.push(() => makeCharacter(
  38854. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38855. {
  38856. front: {
  38857. height: math.unit(6 + 9/12, "feet"),
  38858. weight: math.unit(440, "lb"),
  38859. name: "Front",
  38860. image: {
  38861. source: "./media/characters/wilbur-owen/front.svg",
  38862. extra: 1575/1448,
  38863. bottom: 72/1647
  38864. }
  38865. },
  38866. back: {
  38867. height: math.unit(6 + 9/12, "feet"),
  38868. weight: math.unit(440, "lb"),
  38869. name: "Back",
  38870. image: {
  38871. source: "./media/characters/wilbur-owen/back.svg",
  38872. extra: 1578/1445,
  38873. bottom: 36/1614
  38874. }
  38875. },
  38876. },
  38877. [
  38878. {
  38879. name: "Normal",
  38880. height: math.unit(6 + 9/12, "feet"),
  38881. default: true
  38882. },
  38883. ]
  38884. ))
  38885. characterMakers.push(() => makeCharacter(
  38886. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38887. {
  38888. front: {
  38889. height: math.unit(6 + 5/12, "feet"),
  38890. weight: math.unit(650, "lb"),
  38891. name: "Front",
  38892. image: {
  38893. source: "./media/characters/keegan/front.svg",
  38894. extra: 2387/2198,
  38895. bottom: 33/2420
  38896. }
  38897. },
  38898. side: {
  38899. height: math.unit(6 + 5/12, "feet"),
  38900. weight: math.unit(650, "lb"),
  38901. name: "Side",
  38902. image: {
  38903. source: "./media/characters/keegan/side.svg",
  38904. extra: 2390/2202,
  38905. bottom: 47/2437
  38906. }
  38907. },
  38908. back: {
  38909. height: math.unit(6 + 5/12, "feet"),
  38910. weight: math.unit(650, "lb"),
  38911. name: "Back",
  38912. image: {
  38913. source: "./media/characters/keegan/back.svg",
  38914. extra: 2418/2268,
  38915. bottom: 15/2433
  38916. }
  38917. },
  38918. frontSfw: {
  38919. height: math.unit(6 + 5/12, "feet"),
  38920. weight: math.unit(650, "lb"),
  38921. name: "Front (SFW)",
  38922. image: {
  38923. source: "./media/characters/keegan/front-sfw.svg",
  38924. extra: 2387/2198,
  38925. bottom: 33/2420
  38926. }
  38927. },
  38928. beans: {
  38929. height: math.unit(1.85, "feet"),
  38930. name: "Beans",
  38931. image: {
  38932. source: "./media/characters/keegan/beans.svg"
  38933. }
  38934. },
  38935. },
  38936. [
  38937. {
  38938. name: "Normal",
  38939. height: math.unit(6 + 5/12, "feet"),
  38940. default: true
  38941. },
  38942. ]
  38943. ))
  38944. characterMakers.push(() => makeCharacter(
  38945. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38946. {
  38947. front: {
  38948. height: math.unit(9, "feet"),
  38949. name: "Front",
  38950. image: {
  38951. source: "./media/characters/colton/front.svg",
  38952. extra: 1589/1326,
  38953. bottom: 139/1728
  38954. }
  38955. },
  38956. },
  38957. [
  38958. {
  38959. name: "Normal",
  38960. height: math.unit(9, "feet"),
  38961. default: true
  38962. },
  38963. ]
  38964. ))
  38965. characterMakers.push(() => makeCharacter(
  38966. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38967. {
  38968. front: {
  38969. height: math.unit(2 + 9/12, "feet"),
  38970. name: "Front",
  38971. image: {
  38972. source: "./media/characters/bora/front.svg",
  38973. extra: 1265/1250,
  38974. bottom: 24/1289
  38975. }
  38976. },
  38977. },
  38978. [
  38979. {
  38980. name: "Normal",
  38981. height: math.unit(2 + 9/12, "feet"),
  38982. default: true
  38983. },
  38984. ]
  38985. ))
  38986. characterMakers.push(() => makeCharacter(
  38987. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38988. {
  38989. front: {
  38990. height: math.unit(8, "feet"),
  38991. name: "Front",
  38992. image: {
  38993. source: "./media/characters/myu-myu/front.svg",
  38994. extra: 1949/1857,
  38995. bottom: 90/2039
  38996. }
  38997. },
  38998. },
  38999. [
  39000. {
  39001. name: "Normal",
  39002. height: math.unit(8, "feet"),
  39003. default: true
  39004. },
  39005. {
  39006. name: "Big",
  39007. height: math.unit(15, "feet")
  39008. },
  39009. {
  39010. name: "BIG",
  39011. height: math.unit(25, "feet")
  39012. },
  39013. ]
  39014. ))
  39015. characterMakers.push(() => makeCharacter(
  39016. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  39017. {
  39018. side: {
  39019. height: math.unit(7 + 5/12, "feet"),
  39020. weight: math.unit(2800, "lb"),
  39021. name: "Side",
  39022. image: {
  39023. source: "./media/characters/haloren/side.svg",
  39024. extra: 1793/409,
  39025. bottom: 59/1852
  39026. }
  39027. },
  39028. frontPaw: {
  39029. height: math.unit(2.36, "feet"),
  39030. name: "Front paw",
  39031. image: {
  39032. source: "./media/characters/haloren/front-paw.svg"
  39033. }
  39034. },
  39035. hindPaw: {
  39036. height: math.unit(3.18, "feet"),
  39037. name: "Hind paw",
  39038. image: {
  39039. source: "./media/characters/haloren/hind-paw.svg"
  39040. }
  39041. },
  39042. maw: {
  39043. height: math.unit(5.05, "feet"),
  39044. name: "Maw",
  39045. image: {
  39046. source: "./media/characters/haloren/maw.svg"
  39047. }
  39048. },
  39049. dick: {
  39050. height: math.unit(2.90, "feet"),
  39051. name: "Dick",
  39052. image: {
  39053. source: "./media/characters/haloren/dick.svg"
  39054. }
  39055. },
  39056. },
  39057. [
  39058. {
  39059. name: "Normal",
  39060. height: math.unit(7 + 5/12, "feet"),
  39061. default: true
  39062. },
  39063. {
  39064. name: "Enhanced",
  39065. height: math.unit(14 + 3/12, "feet")
  39066. },
  39067. ]
  39068. ))
  39069. characterMakers.push(() => makeCharacter(
  39070. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  39071. {
  39072. front: {
  39073. height: math.unit(171, "cm"),
  39074. name: "Front",
  39075. image: {
  39076. source: "./media/characters/kimmy/front.svg",
  39077. extra: 1491/1435,
  39078. bottom: 53/1544
  39079. }
  39080. },
  39081. },
  39082. [
  39083. {
  39084. name: "Small",
  39085. height: math.unit(9, "cm")
  39086. },
  39087. {
  39088. name: "Normal",
  39089. height: math.unit(171, "cm"),
  39090. default: true
  39091. },
  39092. ]
  39093. ))
  39094. characterMakers.push(() => makeCharacter(
  39095. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  39096. {
  39097. front: {
  39098. height: math.unit(8, "feet"),
  39099. weight: math.unit(300, "lb"),
  39100. name: "Front",
  39101. image: {
  39102. source: "./media/characters/galeboomer/front.svg",
  39103. extra: 4651/4415,
  39104. bottom: 162/4813
  39105. }
  39106. },
  39107. back: {
  39108. height: math.unit(8, "feet"),
  39109. weight: math.unit(300, "lb"),
  39110. name: "Back",
  39111. image: {
  39112. source: "./media/characters/galeboomer/back.svg",
  39113. extra: 4544/4314,
  39114. bottom: 16/4560
  39115. }
  39116. },
  39117. frontAlt: {
  39118. height: math.unit(8, "feet"),
  39119. weight: math.unit(300, "lb"),
  39120. name: "Front (Alt)",
  39121. image: {
  39122. source: "./media/characters/galeboomer/front-alt.svg",
  39123. extra: 4458/4228,
  39124. bottom: 68/4526
  39125. }
  39126. },
  39127. maw: {
  39128. height: math.unit(1.2, "feet"),
  39129. name: "Maw",
  39130. image: {
  39131. source: "./media/characters/galeboomer/maw.svg"
  39132. }
  39133. },
  39134. },
  39135. [
  39136. {
  39137. name: "Normal",
  39138. height: math.unit(8, "feet"),
  39139. default: true
  39140. },
  39141. ]
  39142. ))
  39143. characterMakers.push(() => makeCharacter(
  39144. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  39145. {
  39146. front: {
  39147. height: math.unit(5 + 9/12, "feet"),
  39148. weight: math.unit(120, "lb"),
  39149. name: "Front",
  39150. image: {
  39151. source: "./media/characters/chyr/front.svg",
  39152. extra: 1323/1254,
  39153. bottom: 63/1386
  39154. }
  39155. },
  39156. back: {
  39157. height: math.unit(5 + 9/12, "feet"),
  39158. weight: math.unit(120, "lb"),
  39159. name: "Back",
  39160. image: {
  39161. source: "./media/characters/chyr/back.svg",
  39162. extra: 1323/1252,
  39163. bottom: 48/1371
  39164. }
  39165. },
  39166. },
  39167. [
  39168. {
  39169. name: "Normal",
  39170. height: math.unit(5 + 9/12, "feet"),
  39171. default: true
  39172. },
  39173. ]
  39174. ))
  39175. characterMakers.push(() => makeCharacter(
  39176. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  39177. {
  39178. front: {
  39179. height: math.unit(7, "feet"),
  39180. weight: math.unit(310, "lb"),
  39181. name: "Front",
  39182. image: {
  39183. source: "./media/characters/solarus/front.svg",
  39184. extra: 2415/2021,
  39185. bottom: 103/2518
  39186. }
  39187. },
  39188. back: {
  39189. height: math.unit(7, "feet"),
  39190. weight: math.unit(310, "lb"),
  39191. name: "Back",
  39192. image: {
  39193. source: "./media/characters/solarus/back.svg",
  39194. extra: 2463/2089,
  39195. bottom: 79/2542
  39196. }
  39197. },
  39198. },
  39199. [
  39200. {
  39201. name: "Normal",
  39202. height: math.unit(7, "feet"),
  39203. default: true
  39204. },
  39205. ]
  39206. ))
  39207. characterMakers.push(() => makeCharacter(
  39208. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  39209. {
  39210. front: {
  39211. height: math.unit(16, "feet"),
  39212. name: "Front",
  39213. image: {
  39214. source: "./media/characters/mutsuju-koizaemon/front.svg",
  39215. extra: 1844/1780,
  39216. bottom: 58/1902
  39217. }
  39218. },
  39219. winterCoat: {
  39220. height: math.unit(16, "feet"),
  39221. name: "Winter Coat",
  39222. image: {
  39223. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  39224. extra: 1807/1775,
  39225. bottom: 69/1876
  39226. }
  39227. },
  39228. },
  39229. [
  39230. {
  39231. name: "Normal",
  39232. height: math.unit(16, "feet"),
  39233. default: true
  39234. },
  39235. {
  39236. name: "Chicago Size",
  39237. height: math.unit(560, "feet")
  39238. },
  39239. ]
  39240. ))
  39241. characterMakers.push(() => makeCharacter(
  39242. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  39243. {
  39244. front: {
  39245. height: math.unit(11 + 6/12, "feet"),
  39246. weight: math.unit(1366, "lb"),
  39247. name: "Front",
  39248. image: {
  39249. source: "./media/characters/lexor/front.svg",
  39250. extra: 1560/1481,
  39251. bottom: 211/1771
  39252. }
  39253. },
  39254. back: {
  39255. height: math.unit(11 + 6/12, "feet"),
  39256. weight: math.unit(1366, "lb"),
  39257. name: "Back",
  39258. image: {
  39259. source: "./media/characters/lexor/back.svg",
  39260. extra: 1614/1533,
  39261. bottom: 76/1690
  39262. }
  39263. },
  39264. maw: {
  39265. height: math.unit(3, "feet"),
  39266. name: "Maw",
  39267. image: {
  39268. source: "./media/characters/lexor/maw.svg"
  39269. }
  39270. },
  39271. dick: {
  39272. height: math.unit(2.59, "feet"),
  39273. name: "Dick",
  39274. image: {
  39275. source: "./media/characters/lexor/dick.svg"
  39276. }
  39277. },
  39278. },
  39279. [
  39280. {
  39281. name: "Normal",
  39282. height: math.unit(11 + 6/12, "feet"),
  39283. default: true
  39284. },
  39285. ]
  39286. ))
  39287. characterMakers.push(() => makeCharacter(
  39288. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  39289. {
  39290. front: {
  39291. height: math.unit(5 + 8/12, "feet"),
  39292. name: "Front",
  39293. image: {
  39294. source: "./media/characters/magnum/front.svg",
  39295. extra: 942/855,
  39296. bottom: 26/968
  39297. }
  39298. },
  39299. },
  39300. [
  39301. {
  39302. name: "Normal",
  39303. height: math.unit(5 + 8/12, "feet"),
  39304. default: true
  39305. },
  39306. ]
  39307. ))
  39308. characterMakers.push(() => makeCharacter(
  39309. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  39310. {
  39311. front: {
  39312. height: math.unit(18 + 4/12, "feet"),
  39313. weight: math.unit(1500, "kg"),
  39314. name: "Front",
  39315. image: {
  39316. source: "./media/characters/solas-sharpsman/front.svg",
  39317. extra: 1698/1589,
  39318. bottom: 0/1698
  39319. }
  39320. },
  39321. },
  39322. [
  39323. {
  39324. name: "Normal",
  39325. height: math.unit(18 + 4/12, "feet"),
  39326. default: true
  39327. },
  39328. ]
  39329. ))
  39330. characterMakers.push(() => makeCharacter(
  39331. { name: "October", species: ["tiger"], tags: ["anthro"] },
  39332. {
  39333. front: {
  39334. height: math.unit(5 + 5/12, "feet"),
  39335. weight: math.unit(180, "lb"),
  39336. name: "Front",
  39337. image: {
  39338. source: "./media/characters/october/front.svg",
  39339. extra: 1800/1650,
  39340. bottom: 0/1800
  39341. }
  39342. },
  39343. frontNsfw: {
  39344. height: math.unit(5 + 5/12, "feet"),
  39345. weight: math.unit(180, "lb"),
  39346. name: "Front (NSFW)",
  39347. image: {
  39348. source: "./media/characters/october/front-nsfw.svg",
  39349. extra: 1392/1307,
  39350. bottom: 42/1434
  39351. }
  39352. },
  39353. },
  39354. [
  39355. {
  39356. name: "Normal",
  39357. height: math.unit(5 + 5/12, "feet"),
  39358. default: true
  39359. },
  39360. ]
  39361. ))
  39362. characterMakers.push(() => makeCharacter(
  39363. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  39364. {
  39365. front: {
  39366. height: math.unit(8 + 6/12, "feet"),
  39367. name: "Front",
  39368. image: {
  39369. source: "./media/characters/essynkardi/front.svg",
  39370. extra: 1541/1457,
  39371. bottom: 47/1588
  39372. }
  39373. },
  39374. },
  39375. [
  39376. {
  39377. name: "Normal",
  39378. height: math.unit(8 + 6/12, "feet"),
  39379. default: true
  39380. },
  39381. ]
  39382. ))
  39383. characterMakers.push(() => makeCharacter(
  39384. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  39385. {
  39386. front: {
  39387. height: math.unit(6 + 6/12, "feet"),
  39388. weight: math.unit(7, "lb"),
  39389. name: "Front",
  39390. image: {
  39391. source: "./media/characters/icky/front.svg",
  39392. extra: 813/782,
  39393. bottom: 66/879
  39394. }
  39395. },
  39396. back: {
  39397. height: math.unit(6 + 6/12, "feet"),
  39398. weight: math.unit(7, "lb"),
  39399. name: "Back",
  39400. image: {
  39401. source: "./media/characters/icky/back.svg",
  39402. extra: 754/735,
  39403. bottom: 56/810
  39404. }
  39405. },
  39406. },
  39407. [
  39408. {
  39409. name: "Normal",
  39410. height: math.unit(6 + 6/12, "feet"),
  39411. default: true
  39412. },
  39413. ]
  39414. ))
  39415. characterMakers.push(() => makeCharacter(
  39416. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  39417. {
  39418. front: {
  39419. height: math.unit(15, "feet"),
  39420. name: "Front",
  39421. image: {
  39422. source: "./media/characters/rojas/front.svg",
  39423. extra: 1462/1408,
  39424. bottom: 95/1557
  39425. }
  39426. },
  39427. back: {
  39428. height: math.unit(15, "feet"),
  39429. name: "Back",
  39430. image: {
  39431. source: "./media/characters/rojas/back.svg",
  39432. extra: 1023/954,
  39433. bottom: 28/1051
  39434. }
  39435. },
  39436. },
  39437. [
  39438. {
  39439. name: "Normal",
  39440. height: math.unit(15, "feet"),
  39441. default: true
  39442. },
  39443. ]
  39444. ))
  39445. characterMakers.push(() => makeCharacter(
  39446. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  39447. {
  39448. frontHuman: {
  39449. height: math.unit(5 + 7/12, "feet"),
  39450. name: "Front (Human)",
  39451. image: {
  39452. source: "./media/characters/alek-dryagan/front-human.svg",
  39453. extra: 1687/1667,
  39454. bottom: 69/1756
  39455. }
  39456. },
  39457. backHuman: {
  39458. height: math.unit(5 + 7/12, "feet"),
  39459. name: "Back (Human)",
  39460. image: {
  39461. source: "./media/characters/alek-dryagan/back-human.svg",
  39462. extra: 1670/1649,
  39463. bottom: 65/1735
  39464. }
  39465. },
  39466. frontDemi: {
  39467. height: math.unit(65, "feet"),
  39468. name: "Front (Demi)",
  39469. image: {
  39470. source: "./media/characters/alek-dryagan/front-demi.svg",
  39471. extra: 1669/1642,
  39472. bottom: 49/1718
  39473. }
  39474. },
  39475. backDemi: {
  39476. height: math.unit(65, "feet"),
  39477. name: "Back (Demi)",
  39478. image: {
  39479. source: "./media/characters/alek-dryagan/back-demi.svg",
  39480. extra: 1658/1637,
  39481. bottom: 40/1698
  39482. }
  39483. },
  39484. mawHuman: {
  39485. height: math.unit(0.3, "feet"),
  39486. name: "Maw (Human)",
  39487. image: {
  39488. source: "./media/characters/alek-dryagan/maw-human.svg"
  39489. }
  39490. },
  39491. mawDemi: {
  39492. height: math.unit(3.8, "feet"),
  39493. name: "Maw (Demi)",
  39494. image: {
  39495. source: "./media/characters/alek-dryagan/maw-demi.svg"
  39496. }
  39497. },
  39498. },
  39499. [
  39500. {
  39501. name: "Normal",
  39502. height: math.unit(5 + 7/12, "feet"),
  39503. default: true
  39504. },
  39505. ]
  39506. ))
  39507. characterMakers.push(() => makeCharacter(
  39508. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  39509. {
  39510. frontHuman: {
  39511. height: math.unit(5 + 2/12, "feet"),
  39512. name: "Front (Human)",
  39513. image: {
  39514. source: "./media/characters/gen/front-human.svg",
  39515. extra: 1627/1538,
  39516. bottom: 71/1698
  39517. }
  39518. },
  39519. backHuman: {
  39520. height: math.unit(5 + 2/12, "feet"),
  39521. name: "Back (Human)",
  39522. image: {
  39523. source: "./media/characters/gen/back-human.svg",
  39524. extra: 1638/1548,
  39525. bottom: 69/1707
  39526. }
  39527. },
  39528. frontDemi: {
  39529. height: math.unit(5 + 2/12, "feet"),
  39530. name: "Front (Demi)",
  39531. image: {
  39532. source: "./media/characters/gen/front-demi.svg",
  39533. extra: 1627/1538,
  39534. bottom: 71/1698
  39535. }
  39536. },
  39537. backDemi: {
  39538. height: math.unit(5 + 2/12, "feet"),
  39539. name: "Back (Demi)",
  39540. image: {
  39541. source: "./media/characters/gen/back-demi.svg",
  39542. extra: 1638/1548,
  39543. bottom: 69/1707
  39544. }
  39545. },
  39546. },
  39547. [
  39548. {
  39549. name: "Normal",
  39550. height: math.unit(5 + 2/12, "feet"),
  39551. default: true
  39552. },
  39553. ]
  39554. ))
  39555. characterMakers.push(() => makeCharacter(
  39556. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39557. {
  39558. frontImp: {
  39559. height: math.unit(1 + 11/12, "feet"),
  39560. name: "Front (Imp)",
  39561. image: {
  39562. source: "./media/characters/max-kobold/front-imp.svg",
  39563. extra: 1238/1134,
  39564. bottom: 81/1319
  39565. }
  39566. },
  39567. backImp: {
  39568. height: math.unit(1 + 11/12, "feet"),
  39569. name: "Back (Imp)",
  39570. image: {
  39571. source: "./media/characters/max-kobold/back-imp.svg",
  39572. extra: 1334/1175,
  39573. bottom: 34/1368
  39574. }
  39575. },
  39576. frontDemi: {
  39577. height: math.unit(5 + 9/12, "feet"),
  39578. name: "Front (Demi)",
  39579. image: {
  39580. source: "./media/characters/max-kobold/front-demi.svg",
  39581. extra: 1715/1685,
  39582. bottom: 54/1769
  39583. }
  39584. },
  39585. backDemi: {
  39586. height: math.unit(5 + 9/12, "feet"),
  39587. name: "Back (Demi)",
  39588. image: {
  39589. source: "./media/characters/max-kobold/back-demi.svg",
  39590. extra: 1752/1729,
  39591. bottom: 41/1793
  39592. }
  39593. },
  39594. handImp: {
  39595. height: math.unit(0.45, "feet"),
  39596. name: "Hand (Imp)",
  39597. image: {
  39598. source: "./media/characters/max-kobold/hand.svg"
  39599. }
  39600. },
  39601. pawImp: {
  39602. height: math.unit(0.46, "feet"),
  39603. name: "Paw (Imp)",
  39604. image: {
  39605. source: "./media/characters/max-kobold/paw.svg"
  39606. }
  39607. },
  39608. handDemi: {
  39609. height: math.unit(0.80, "feet"),
  39610. name: "Hand (Demi)",
  39611. image: {
  39612. source: "./media/characters/max-kobold/hand.svg"
  39613. }
  39614. },
  39615. pawDemi: {
  39616. height: math.unit(1.1, "feet"),
  39617. name: "Paw (Demi)",
  39618. image: {
  39619. source: "./media/characters/max-kobold/paw.svg"
  39620. }
  39621. },
  39622. headImp: {
  39623. height: math.unit(1.33, "feet"),
  39624. name: "Head (Imp)",
  39625. image: {
  39626. source: "./media/characters/max-kobold/head-imp.svg"
  39627. }
  39628. },
  39629. mawImp: {
  39630. height: math.unit(0.75, "feet"),
  39631. name: "Maw (Imp)",
  39632. image: {
  39633. source: "./media/characters/max-kobold/maw-imp.svg"
  39634. }
  39635. },
  39636. mawDemi: {
  39637. height: math.unit(0.42, "feet"),
  39638. name: "Maw (Demi)",
  39639. image: {
  39640. source: "./media/characters/max-kobold/maw-demi.svg"
  39641. }
  39642. },
  39643. },
  39644. [
  39645. {
  39646. name: "Normal",
  39647. height: math.unit(1 + 11/12, "feet"),
  39648. default: true
  39649. },
  39650. ]
  39651. ))
  39652. characterMakers.push(() => makeCharacter(
  39653. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39654. {
  39655. front: {
  39656. height: math.unit(7 + 5/12, "feet"),
  39657. name: "Front",
  39658. image: {
  39659. source: "./media/characters/carbon/front.svg",
  39660. extra: 1754/1689,
  39661. bottom: 65/1819
  39662. }
  39663. },
  39664. back: {
  39665. height: math.unit(7 + 5/12, "feet"),
  39666. name: "Back",
  39667. image: {
  39668. source: "./media/characters/carbon/back.svg",
  39669. extra: 1762/1695,
  39670. bottom: 24/1786
  39671. }
  39672. },
  39673. frontGigantamax: {
  39674. height: math.unit(150, "feet"),
  39675. name: "Front (Gigantamax)",
  39676. image: {
  39677. source: "./media/characters/carbon/front-gigantamax.svg",
  39678. extra: 1826/1669,
  39679. bottom: 59/1885
  39680. }
  39681. },
  39682. backGigantamax: {
  39683. height: math.unit(150, "feet"),
  39684. name: "Back (Gigantamax)",
  39685. image: {
  39686. source: "./media/characters/carbon/back-gigantamax.svg",
  39687. extra: 1796/1653,
  39688. bottom: 53/1849
  39689. }
  39690. },
  39691. maw: {
  39692. height: math.unit(0.48, "feet"),
  39693. name: "Maw",
  39694. image: {
  39695. source: "./media/characters/carbon/maw.svg"
  39696. }
  39697. },
  39698. mawGigantamax: {
  39699. height: math.unit(7.5, "feet"),
  39700. name: "Maw (Gigantamax)",
  39701. image: {
  39702. source: "./media/characters/carbon/maw-gigantamax.svg"
  39703. }
  39704. },
  39705. },
  39706. [
  39707. {
  39708. name: "Normal",
  39709. height: math.unit(7 + 5/12, "feet"),
  39710. default: true
  39711. },
  39712. ]
  39713. ))
  39714. characterMakers.push(() => makeCharacter(
  39715. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39716. {
  39717. front: {
  39718. height: math.unit(6, "feet"),
  39719. name: "Front",
  39720. image: {
  39721. source: "./media/characters/maverick/front.svg",
  39722. extra: 1672/1661,
  39723. bottom: 85/1757
  39724. }
  39725. },
  39726. back: {
  39727. height: math.unit(6, "feet"),
  39728. name: "Back",
  39729. image: {
  39730. source: "./media/characters/maverick/back.svg",
  39731. extra: 1642/1631,
  39732. bottom: 38/1680
  39733. }
  39734. },
  39735. },
  39736. [
  39737. {
  39738. name: "Normal",
  39739. height: math.unit(6, "feet"),
  39740. default: true
  39741. },
  39742. ]
  39743. ))
  39744. characterMakers.push(() => makeCharacter(
  39745. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39746. {
  39747. front: {
  39748. height: math.unit(15, "feet"),
  39749. weight: math.unit(615, "lb"),
  39750. name: "Front",
  39751. image: {
  39752. source: "./media/characters/grockle/front.svg",
  39753. extra: 1535/1427,
  39754. bottom: 56/1591
  39755. }
  39756. },
  39757. },
  39758. [
  39759. {
  39760. name: "Normal",
  39761. height: math.unit(15, "feet"),
  39762. default: true
  39763. },
  39764. {
  39765. name: "Large",
  39766. height: math.unit(150, "feet")
  39767. },
  39768. {
  39769. name: "Macro",
  39770. height: math.unit(1876, "feet")
  39771. },
  39772. {
  39773. name: "Mega Macro",
  39774. height: math.unit(121940, "feet")
  39775. },
  39776. {
  39777. name: "Giga Macro",
  39778. height: math.unit(750, "km")
  39779. },
  39780. {
  39781. name: "Tera Macro",
  39782. height: math.unit(750000, "km")
  39783. },
  39784. {
  39785. name: "Galactic",
  39786. height: math.unit(1.4e5, "km")
  39787. },
  39788. {
  39789. name: "Godlike",
  39790. height: math.unit(9.8e280, "galaxies")
  39791. },
  39792. ]
  39793. ))
  39794. characterMakers.push(() => makeCharacter(
  39795. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39796. {
  39797. front: {
  39798. height: math.unit(11, "meters"),
  39799. weight: math.unit(20, "tonnes"),
  39800. name: "Front",
  39801. image: {
  39802. source: "./media/characters/alistair/front.svg",
  39803. extra: 1265/1009,
  39804. bottom: 93/1358
  39805. }
  39806. },
  39807. },
  39808. [
  39809. {
  39810. name: "Normal",
  39811. height: math.unit(11, "meters"),
  39812. default: true
  39813. },
  39814. ]
  39815. ))
  39816. characterMakers.push(() => makeCharacter(
  39817. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39818. {
  39819. front: {
  39820. height: math.unit(5 + 8/12, "feet"),
  39821. name: "Front",
  39822. image: {
  39823. source: "./media/characters/haruka/front.svg",
  39824. extra: 2012/1952,
  39825. bottom: 0/2012
  39826. }
  39827. },
  39828. },
  39829. [
  39830. {
  39831. name: "Normal",
  39832. height: math.unit(5 + 8/12, "feet"),
  39833. default: true
  39834. },
  39835. ]
  39836. ))
  39837. characterMakers.push(() => makeCharacter(
  39838. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39839. {
  39840. back: {
  39841. height: math.unit(9, "feet"),
  39842. name: "Back",
  39843. image: {
  39844. source: "./media/characters/vivian-sylveon/back.svg",
  39845. extra: 1853/1714,
  39846. bottom: 0/1853
  39847. }
  39848. },
  39849. hyper: {
  39850. height: math.unit(5.58, "feet"),
  39851. name: "Hyper",
  39852. preyCapacity: math.unit(2.80616218797, "m^3"),
  39853. image: {
  39854. source: "./media/characters/vivian-sylveon/hyper.svg",
  39855. extra: 999/676,
  39856. bottom: 697/1696
  39857. },
  39858. },
  39859. paw: {
  39860. height: math.unit(1.8, "feet"),
  39861. name: "Paw",
  39862. image: {
  39863. source: "./media/characters/vivian-sylveon/paw.svg"
  39864. }
  39865. },
  39866. danger: {
  39867. height: math.unit(7.5, "feet"),
  39868. name: "DANGER",
  39869. image: {
  39870. source: "./media/characters/vivian-sylveon/danger.svg"
  39871. }
  39872. },
  39873. },
  39874. [
  39875. {
  39876. name: "Normal",
  39877. height: math.unit(9, "feet"),
  39878. default: true
  39879. },
  39880. {
  39881. name: "Macro",
  39882. height: math.unit(500, "feet")
  39883. },
  39884. {
  39885. name: "Megamacro",
  39886. height: math.unit(600, "miles")
  39887. },
  39888. {
  39889. name: "Gigamacro",
  39890. height: math.unit(30000, "miles")
  39891. },
  39892. ]
  39893. ))
  39894. characterMakers.push(() => makeCharacter(
  39895. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39896. {
  39897. anthro: {
  39898. height: math.unit(5 + 10/12, "feet"),
  39899. weight: math.unit(100, "lb"),
  39900. name: "Anthro",
  39901. image: {
  39902. source: "./media/characters/daiki/anthro.svg",
  39903. extra: 1115/1027,
  39904. bottom: 69/1184
  39905. }
  39906. },
  39907. feral: {
  39908. height: math.unit(200, "feet"),
  39909. name: "Feral",
  39910. image: {
  39911. source: "./media/characters/daiki/feral.svg",
  39912. extra: 1256/313,
  39913. bottom: 39/1295
  39914. }
  39915. },
  39916. feralHead: {
  39917. height: math.unit(171, "feet"),
  39918. name: "Feral Head",
  39919. image: {
  39920. source: "./media/characters/daiki/feral-head.svg"
  39921. }
  39922. },
  39923. manaDragon: {
  39924. height: math.unit(170, "meters"),
  39925. name: "Mana-dragon",
  39926. image: {
  39927. source: "./media/characters/daiki/mana-dragon.svg",
  39928. extra: 763/420,
  39929. bottom: 97/860
  39930. }
  39931. },
  39932. },
  39933. [
  39934. {
  39935. name: "Normal",
  39936. height: math.unit(5 + 10/12, "feet"),
  39937. default: true
  39938. },
  39939. ]
  39940. ))
  39941. characterMakers.push(() => makeCharacter(
  39942. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39943. {
  39944. fullyEquippedFront: {
  39945. height: math.unit(3 + 1/12, "feet"),
  39946. weight: math.unit(24, "lb"),
  39947. name: "Fully Equipped (Front)",
  39948. image: {
  39949. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39950. extra: 687/605,
  39951. bottom: 18/705
  39952. }
  39953. },
  39954. fullyEquippedBack: {
  39955. height: math.unit(3 + 1/12, "feet"),
  39956. weight: math.unit(24, "lb"),
  39957. name: "Fully Equipped (Back)",
  39958. image: {
  39959. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39960. extra: 689/590,
  39961. bottom: 18/707
  39962. }
  39963. },
  39964. dailyWear: {
  39965. height: math.unit(3 + 1/12, "feet"),
  39966. weight: math.unit(24, "lb"),
  39967. name: "Daily Wear",
  39968. image: {
  39969. source: "./media/characters/tea-spot/daily-wear.svg",
  39970. extra: 701/620,
  39971. bottom: 21/722
  39972. }
  39973. },
  39974. maidWork: {
  39975. height: math.unit(3 + 1/12, "feet"),
  39976. weight: math.unit(24, "lb"),
  39977. name: "Maid Work",
  39978. image: {
  39979. source: "./media/characters/tea-spot/maid-work.svg",
  39980. extra: 693/609,
  39981. bottom: 15/708
  39982. }
  39983. },
  39984. },
  39985. [
  39986. {
  39987. name: "Normal",
  39988. height: math.unit(3 + 1/12, "feet"),
  39989. default: true
  39990. },
  39991. ]
  39992. ))
  39993. characterMakers.push(() => makeCharacter(
  39994. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39995. {
  39996. front: {
  39997. height: math.unit(175, "cm"),
  39998. weight: math.unit(75, "kg"),
  39999. name: "Front",
  40000. image: {
  40001. source: "./media/characters/chee/front.svg",
  40002. extra: 1796/1740,
  40003. bottom: 40/1836
  40004. }
  40005. },
  40006. },
  40007. [
  40008. {
  40009. name: "Micro-Micro",
  40010. height: math.unit(1, "nm")
  40011. },
  40012. {
  40013. name: "Micro-erst",
  40014. height: math.unit(1, "micrometer")
  40015. },
  40016. {
  40017. name: "Micro-er",
  40018. height: math.unit(1, "cm")
  40019. },
  40020. {
  40021. name: "Normal",
  40022. height: math.unit(175, "cm"),
  40023. default: true
  40024. },
  40025. {
  40026. name: "Macro",
  40027. height: math.unit(100, "m")
  40028. },
  40029. {
  40030. name: "Macro-er",
  40031. height: math.unit(1, "km")
  40032. },
  40033. {
  40034. name: "Macro-erst",
  40035. height: math.unit(10, "km")
  40036. },
  40037. {
  40038. name: "Macro-Macro",
  40039. height: math.unit(100, "km")
  40040. },
  40041. ]
  40042. ))
  40043. characterMakers.push(() => makeCharacter(
  40044. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  40045. {
  40046. front: {
  40047. height: math.unit(11 + 9/12, "feet"),
  40048. weight: math.unit(935, "lb"),
  40049. name: "Front",
  40050. image: {
  40051. source: "./media/characters/kingsley/front.svg",
  40052. extra: 1803/1674,
  40053. bottom: 127/1930
  40054. }
  40055. },
  40056. frontNude: {
  40057. height: math.unit(11 + 9/12, "feet"),
  40058. weight: math.unit(935, "lb"),
  40059. name: "Front (Nude)",
  40060. image: {
  40061. source: "./media/characters/kingsley/front-nude.svg",
  40062. extra: 1803/1674,
  40063. bottom: 127/1930
  40064. }
  40065. },
  40066. },
  40067. [
  40068. {
  40069. name: "Normal",
  40070. height: math.unit(11 + 9/12, "feet"),
  40071. default: true
  40072. },
  40073. ]
  40074. ))
  40075. characterMakers.push(() => makeCharacter(
  40076. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  40077. {
  40078. side: {
  40079. height: math.unit(9, "feet"),
  40080. name: "Side",
  40081. image: {
  40082. source: "./media/characters/rymel/side.svg",
  40083. extra: 792/469,
  40084. bottom: 121/913
  40085. }
  40086. },
  40087. maw: {
  40088. height: math.unit(2.4, "meters"),
  40089. name: "Maw",
  40090. image: {
  40091. source: "./media/characters/rymel/maw.svg"
  40092. }
  40093. },
  40094. },
  40095. [
  40096. {
  40097. name: "House Drake",
  40098. height: math.unit(2, "feet")
  40099. },
  40100. {
  40101. name: "Reduced",
  40102. height: math.unit(4.5, "feet")
  40103. },
  40104. {
  40105. name: "Normal",
  40106. height: math.unit(9, "feet"),
  40107. default: true
  40108. },
  40109. ]
  40110. ))
  40111. characterMakers.push(() => makeCharacter(
  40112. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  40113. {
  40114. front: {
  40115. height: math.unit(1.74, "meters"),
  40116. weight: math.unit(55, "kg"),
  40117. name: "Front",
  40118. image: {
  40119. source: "./media/characters/rubus/front.svg",
  40120. extra: 1894/1742,
  40121. bottom: 44/1938
  40122. }
  40123. },
  40124. },
  40125. [
  40126. {
  40127. name: "Normal",
  40128. height: math.unit(1.74, "meters"),
  40129. default: true
  40130. },
  40131. ]
  40132. ))
  40133. characterMakers.push(() => makeCharacter(
  40134. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  40135. {
  40136. front: {
  40137. height: math.unit(5 + 2/12, "feet"),
  40138. weight: math.unit(112, "lb"),
  40139. name: "Front",
  40140. image: {
  40141. source: "./media/characters/cassie-kingston/front.svg",
  40142. extra: 1438/1390,
  40143. bottom: 47/1485
  40144. }
  40145. },
  40146. },
  40147. [
  40148. {
  40149. name: "Normal",
  40150. height: math.unit(5 + 2/12, "feet"),
  40151. default: true
  40152. },
  40153. {
  40154. name: "Macro",
  40155. height: math.unit(128, "feet")
  40156. },
  40157. {
  40158. name: "Megamacro",
  40159. height: math.unit(2.56, "miles")
  40160. },
  40161. ]
  40162. ))
  40163. characterMakers.push(() => makeCharacter(
  40164. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  40165. {
  40166. front: {
  40167. height: math.unit(7, "feet"),
  40168. name: "Front",
  40169. image: {
  40170. source: "./media/characters/fox/front.svg",
  40171. extra: 1798/1703,
  40172. bottom: 55/1853
  40173. }
  40174. },
  40175. back: {
  40176. height: math.unit(7, "feet"),
  40177. name: "Back",
  40178. image: {
  40179. source: "./media/characters/fox/back.svg",
  40180. extra: 1748/1649,
  40181. bottom: 32/1780
  40182. }
  40183. },
  40184. head: {
  40185. height: math.unit(1.95, "feet"),
  40186. name: "Head",
  40187. image: {
  40188. source: "./media/characters/fox/head.svg"
  40189. }
  40190. },
  40191. dick: {
  40192. height: math.unit(1.33, "feet"),
  40193. name: "Dick",
  40194. image: {
  40195. source: "./media/characters/fox/dick.svg"
  40196. }
  40197. },
  40198. foot: {
  40199. height: math.unit(1, "feet"),
  40200. name: "Foot",
  40201. image: {
  40202. source: "./media/characters/fox/foot.svg"
  40203. }
  40204. },
  40205. paw: {
  40206. height: math.unit(0.92, "feet"),
  40207. name: "Paw",
  40208. image: {
  40209. source: "./media/characters/fox/paw.svg"
  40210. }
  40211. },
  40212. },
  40213. [
  40214. {
  40215. name: "Small",
  40216. height: math.unit(3, "inches")
  40217. },
  40218. {
  40219. name: "\"Realistic\"",
  40220. height: math.unit(7, "feet")
  40221. },
  40222. {
  40223. name: "Normal",
  40224. height: math.unit(150, "feet"),
  40225. default: true
  40226. },
  40227. {
  40228. name: "BIG",
  40229. height: math.unit(1200, "feet")
  40230. },
  40231. {
  40232. name: "👀",
  40233. height: math.unit(5, "miles")
  40234. },
  40235. {
  40236. name: "👀👀👀",
  40237. height: math.unit(64, "miles")
  40238. },
  40239. ]
  40240. ))
  40241. characterMakers.push(() => makeCharacter(
  40242. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  40243. {
  40244. front: {
  40245. height: math.unit(625, "feet"),
  40246. name: "Front",
  40247. image: {
  40248. source: "./media/characters/asonja-rossa/front.svg",
  40249. extra: 1833/1686,
  40250. bottom: 24/1857
  40251. }
  40252. },
  40253. back: {
  40254. height: math.unit(625, "feet"),
  40255. name: "Back",
  40256. image: {
  40257. source: "./media/characters/asonja-rossa/back.svg",
  40258. extra: 1852/1753,
  40259. bottom: 26/1878
  40260. }
  40261. },
  40262. },
  40263. [
  40264. {
  40265. name: "Macro",
  40266. height: math.unit(625, "feet"),
  40267. default: true
  40268. },
  40269. ]
  40270. ))
  40271. characterMakers.push(() => makeCharacter(
  40272. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  40273. {
  40274. side: {
  40275. height: math.unit(8, "feet"),
  40276. name: "Side",
  40277. image: {
  40278. source: "./media/characters/rezukii/side.svg",
  40279. extra: 979/542,
  40280. bottom: 87/1066
  40281. }
  40282. },
  40283. sitting: {
  40284. height: math.unit(14.6, "feet"),
  40285. name: "Sitting",
  40286. image: {
  40287. source: "./media/characters/rezukii/sitting.svg",
  40288. extra: 1023/813,
  40289. bottom: 45/1068
  40290. }
  40291. },
  40292. },
  40293. [
  40294. {
  40295. name: "Tiny",
  40296. height: math.unit(2, "feet")
  40297. },
  40298. {
  40299. name: "Smol",
  40300. height: math.unit(4, "feet")
  40301. },
  40302. {
  40303. name: "Normal",
  40304. height: math.unit(8, "feet"),
  40305. default: true
  40306. },
  40307. {
  40308. name: "Big",
  40309. height: math.unit(12, "feet")
  40310. },
  40311. {
  40312. name: "Macro",
  40313. height: math.unit(30, "feet")
  40314. },
  40315. ]
  40316. ))
  40317. characterMakers.push(() => makeCharacter(
  40318. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  40319. {
  40320. front: {
  40321. height: math.unit(14, "feet"),
  40322. weight: math.unit(9.5, "tonnes"),
  40323. name: "Front",
  40324. image: {
  40325. source: "./media/characters/dawnheart/front.svg",
  40326. extra: 2792/2675,
  40327. bottom: 64/2856
  40328. }
  40329. },
  40330. },
  40331. [
  40332. {
  40333. name: "Normal",
  40334. height: math.unit(14, "feet"),
  40335. default: true
  40336. },
  40337. ]
  40338. ))
  40339. characterMakers.push(() => makeCharacter(
  40340. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  40341. {
  40342. front: {
  40343. height: math.unit(1.7, "m"),
  40344. name: "Front",
  40345. image: {
  40346. source: "./media/characters/gladi/front.svg",
  40347. extra: 1460/1362,
  40348. bottom: 19/1479
  40349. }
  40350. },
  40351. back: {
  40352. height: math.unit(1.7, "m"),
  40353. name: "Back",
  40354. image: {
  40355. source: "./media/characters/gladi/back.svg",
  40356. extra: 1459/1357,
  40357. bottom: 12/1471
  40358. }
  40359. },
  40360. feral: {
  40361. height: math.unit(2.05, "m"),
  40362. name: "Feral",
  40363. image: {
  40364. source: "./media/characters/gladi/feral.svg",
  40365. extra: 821/557,
  40366. bottom: 91/912
  40367. }
  40368. },
  40369. },
  40370. [
  40371. {
  40372. name: "Shortest",
  40373. height: math.unit(70, "cm")
  40374. },
  40375. {
  40376. name: "Normal",
  40377. height: math.unit(1.7, "m")
  40378. },
  40379. {
  40380. name: "Macro",
  40381. height: math.unit(10, "m"),
  40382. default: true
  40383. },
  40384. {
  40385. name: "Tallest",
  40386. height: math.unit(200, "m")
  40387. },
  40388. ]
  40389. ))
  40390. characterMakers.push(() => makeCharacter(
  40391. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  40392. {
  40393. front: {
  40394. height: math.unit(5 + 7/12, "feet"),
  40395. weight: math.unit(2, "tons"),
  40396. name: "Front",
  40397. image: {
  40398. source: "./media/characters/erdno/front.svg",
  40399. extra: 1234/1129,
  40400. bottom: 35/1269
  40401. }
  40402. },
  40403. angled: {
  40404. height: math.unit(5 + 7/12, "feet"),
  40405. weight: math.unit(2, "tons"),
  40406. name: "Angled",
  40407. image: {
  40408. source: "./media/characters/erdno/angled.svg",
  40409. extra: 1185/1139,
  40410. bottom: 36/1221
  40411. }
  40412. },
  40413. side: {
  40414. height: math.unit(5 + 7/12, "feet"),
  40415. weight: math.unit(2, "tons"),
  40416. name: "Side",
  40417. image: {
  40418. source: "./media/characters/erdno/side.svg",
  40419. extra: 1191/1144,
  40420. bottom: 40/1231
  40421. }
  40422. },
  40423. back: {
  40424. height: math.unit(5 + 7/12, "feet"),
  40425. weight: math.unit(2, "tons"),
  40426. name: "Back",
  40427. image: {
  40428. source: "./media/characters/erdno/back.svg",
  40429. extra: 1202/1146,
  40430. bottom: 17/1219
  40431. }
  40432. },
  40433. frontNsfw: {
  40434. height: math.unit(5 + 7/12, "feet"),
  40435. weight: math.unit(2, "tons"),
  40436. name: "Front (NSFW)",
  40437. image: {
  40438. source: "./media/characters/erdno/front-nsfw.svg",
  40439. extra: 1234/1129,
  40440. bottom: 35/1269
  40441. }
  40442. },
  40443. angledNsfw: {
  40444. height: math.unit(5 + 7/12, "feet"),
  40445. weight: math.unit(2, "tons"),
  40446. name: "Angled (NSFW)",
  40447. image: {
  40448. source: "./media/characters/erdno/angled-nsfw.svg",
  40449. extra: 1185/1139,
  40450. bottom: 36/1221
  40451. }
  40452. },
  40453. sideNsfw: {
  40454. height: math.unit(5 + 7/12, "feet"),
  40455. weight: math.unit(2, "tons"),
  40456. name: "Side (NSFW)",
  40457. image: {
  40458. source: "./media/characters/erdno/side-nsfw.svg",
  40459. extra: 1191/1144,
  40460. bottom: 40/1231
  40461. }
  40462. },
  40463. backNsfw: {
  40464. height: math.unit(5 + 7/12, "feet"),
  40465. weight: math.unit(2, "tons"),
  40466. name: "Back (NSFW)",
  40467. image: {
  40468. source: "./media/characters/erdno/back-nsfw.svg",
  40469. extra: 1202/1146,
  40470. bottom: 17/1219
  40471. }
  40472. },
  40473. frontHyper: {
  40474. height: math.unit(5 + 7/12, "feet"),
  40475. weight: math.unit(2, "tons"),
  40476. name: "Front (Hyper)",
  40477. image: {
  40478. source: "./media/characters/erdno/front-hyper.svg",
  40479. extra: 1298/1136,
  40480. bottom: 35/1333
  40481. }
  40482. },
  40483. },
  40484. [
  40485. {
  40486. name: "Normal",
  40487. height: math.unit(5 + 7/12, "feet"),
  40488. default: true
  40489. },
  40490. {
  40491. name: "Big",
  40492. height: math.unit(5.7, "meters")
  40493. },
  40494. {
  40495. name: "Macro",
  40496. height: math.unit(5.7, "kilometers")
  40497. },
  40498. {
  40499. name: "Megamacro",
  40500. height: math.unit(5.7, "earths")
  40501. },
  40502. ]
  40503. ))
  40504. characterMakers.push(() => makeCharacter(
  40505. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  40506. {
  40507. front: {
  40508. height: math.unit(5 + 10/12, "feet"),
  40509. weight: math.unit(150, "lb"),
  40510. name: "Front",
  40511. image: {
  40512. source: "./media/characters/jamie/front.svg",
  40513. extra: 1908/1768,
  40514. bottom: 19/1927
  40515. }
  40516. },
  40517. },
  40518. [
  40519. {
  40520. name: "Minimum",
  40521. height: math.unit(2, "cm")
  40522. },
  40523. {
  40524. name: "Micro",
  40525. height: math.unit(3, "inches")
  40526. },
  40527. {
  40528. name: "Normal",
  40529. height: math.unit(5 + 10/12, "feet"),
  40530. default: true
  40531. },
  40532. {
  40533. name: "Macro",
  40534. height: math.unit(150, "feet")
  40535. },
  40536. {
  40537. name: "Megamacro",
  40538. height: math.unit(10000, "m")
  40539. },
  40540. ]
  40541. ))
  40542. characterMakers.push(() => makeCharacter(
  40543. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40544. {
  40545. front: {
  40546. height: math.unit(2, "meters"),
  40547. weight: math.unit(100, "kg"),
  40548. name: "Front",
  40549. image: {
  40550. source: "./media/characters/shiron/front.svg",
  40551. extra: 2103/1985,
  40552. bottom: 98/2201
  40553. }
  40554. },
  40555. back: {
  40556. height: math.unit(2, "meters"),
  40557. weight: math.unit(100, "kg"),
  40558. name: "Back",
  40559. image: {
  40560. source: "./media/characters/shiron/back.svg",
  40561. extra: 2110/2015,
  40562. bottom: 89/2199
  40563. }
  40564. },
  40565. hand: {
  40566. height: math.unit(0.96, "feet"),
  40567. name: "Hand",
  40568. image: {
  40569. source: "./media/characters/shiron/hand.svg"
  40570. }
  40571. },
  40572. foot: {
  40573. height: math.unit(1.464, "feet"),
  40574. name: "Foot",
  40575. image: {
  40576. source: "./media/characters/shiron/foot.svg"
  40577. }
  40578. },
  40579. },
  40580. [
  40581. {
  40582. name: "Normal",
  40583. height: math.unit(2, "meters")
  40584. },
  40585. {
  40586. name: "Macro",
  40587. height: math.unit(500, "meters"),
  40588. default: true
  40589. },
  40590. {
  40591. name: "Megamacro",
  40592. height: math.unit(20, "km")
  40593. },
  40594. ]
  40595. ))
  40596. characterMakers.push(() => makeCharacter(
  40597. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  40598. {
  40599. front: {
  40600. height: math.unit(6, "feet"),
  40601. name: "Front",
  40602. image: {
  40603. source: "./media/characters/sam/front.svg",
  40604. extra: 849/826,
  40605. bottom: 19/868
  40606. }
  40607. },
  40608. },
  40609. [
  40610. {
  40611. name: "Normal",
  40612. height: math.unit(6, "feet"),
  40613. default: true
  40614. },
  40615. ]
  40616. ))
  40617. characterMakers.push(() => makeCharacter(
  40618. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  40619. {
  40620. front: {
  40621. height: math.unit(8 + 4/12, "feet"),
  40622. weight: math.unit(122, "kg"),
  40623. name: "Front",
  40624. image: {
  40625. source: "./media/characters/namori-kurogawa/front.svg",
  40626. extra: 1894/1576,
  40627. bottom: 34/1928
  40628. }
  40629. },
  40630. },
  40631. [
  40632. {
  40633. name: "Normal",
  40634. height: math.unit(8 + 4/12, "feet"),
  40635. default: true
  40636. },
  40637. ]
  40638. ))
  40639. characterMakers.push(() => makeCharacter(
  40640. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  40641. {
  40642. front: {
  40643. height: math.unit(9, "feet"),
  40644. weight: math.unit(621, "lb"),
  40645. name: "Front",
  40646. image: {
  40647. source: "./media/characters/unmru/front.svg",
  40648. extra: 1853/1747,
  40649. bottom: 73/1926
  40650. }
  40651. },
  40652. side: {
  40653. height: math.unit(9, "feet"),
  40654. weight: math.unit(621, "lb"),
  40655. name: "Side",
  40656. image: {
  40657. source: "./media/characters/unmru/side.svg",
  40658. extra: 1781/1671,
  40659. bottom: 127/1908
  40660. }
  40661. },
  40662. back: {
  40663. height: math.unit(9, "feet"),
  40664. weight: math.unit(621, "lb"),
  40665. name: "Back",
  40666. image: {
  40667. source: "./media/characters/unmru/back.svg",
  40668. extra: 1894/1765,
  40669. bottom: 75/1969
  40670. }
  40671. },
  40672. dick: {
  40673. height: math.unit(3, "feet"),
  40674. weight: math.unit(35, "lb"),
  40675. name: "Dick",
  40676. image: {
  40677. source: "./media/characters/unmru/dick.svg"
  40678. }
  40679. },
  40680. },
  40681. [
  40682. {
  40683. name: "Normal",
  40684. height: math.unit(9, "feet")
  40685. },
  40686. {
  40687. name: "Natural",
  40688. height: math.unit(27, "feet"),
  40689. default: true
  40690. },
  40691. {
  40692. name: "Giant",
  40693. height: math.unit(90, "feet")
  40694. },
  40695. {
  40696. name: "Kaiju",
  40697. height: math.unit(270, "feet")
  40698. },
  40699. {
  40700. name: "Macro",
  40701. height: math.unit(900, "feet")
  40702. },
  40703. {
  40704. name: "Macro+",
  40705. height: math.unit(2700, "feet")
  40706. },
  40707. {
  40708. name: "Megamacro",
  40709. height: math.unit(9000, "feet")
  40710. },
  40711. {
  40712. name: "City-Crushing",
  40713. height: math.unit(27000, "feet")
  40714. },
  40715. {
  40716. name: "Mountain-Mashing",
  40717. height: math.unit(90000, "feet")
  40718. },
  40719. {
  40720. name: "Earth-Eclipsing",
  40721. height: math.unit(2.7e8, "feet")
  40722. },
  40723. {
  40724. name: "Sol-Swallowing",
  40725. height: math.unit(9e10, "feet")
  40726. },
  40727. {
  40728. name: "Majoris-Munching",
  40729. height: math.unit(2.7e13, "feet")
  40730. },
  40731. ]
  40732. ))
  40733. characterMakers.push(() => makeCharacter(
  40734. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40735. {
  40736. front: {
  40737. height: math.unit(1, "inch"),
  40738. name: "Front",
  40739. image: {
  40740. source: "./media/characters/squeaks-mouse/front.svg",
  40741. extra: 352/308,
  40742. bottom: 25/377
  40743. }
  40744. },
  40745. },
  40746. [
  40747. {
  40748. name: "Micro",
  40749. height: math.unit(1, "inch"),
  40750. default: true
  40751. },
  40752. ]
  40753. ))
  40754. characterMakers.push(() => makeCharacter(
  40755. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40756. {
  40757. side: {
  40758. height: math.unit(35, "feet"),
  40759. name: "Side",
  40760. image: {
  40761. source: "./media/characters/sayko/side.svg",
  40762. extra: 1697/1021,
  40763. bottom: 82/1779
  40764. }
  40765. },
  40766. head: {
  40767. height: math.unit(16, "feet"),
  40768. name: "Head",
  40769. image: {
  40770. source: "./media/characters/sayko/head.svg"
  40771. }
  40772. },
  40773. forepaw: {
  40774. height: math.unit(7.85, "feet"),
  40775. name: "Forepaw",
  40776. image: {
  40777. source: "./media/characters/sayko/forepaw.svg"
  40778. }
  40779. },
  40780. hindpaw: {
  40781. height: math.unit(8.8, "feet"),
  40782. name: "Hindpaw",
  40783. image: {
  40784. source: "./media/characters/sayko/hindpaw.svg"
  40785. }
  40786. },
  40787. },
  40788. [
  40789. {
  40790. name: "Normal",
  40791. height: math.unit(35, "feet"),
  40792. default: true
  40793. },
  40794. {
  40795. name: "Colossus",
  40796. height: math.unit(100, "meters")
  40797. },
  40798. {
  40799. name: "\"Small\" Deity",
  40800. height: math.unit(1, "km")
  40801. },
  40802. {
  40803. name: "\"Large\" Deity",
  40804. height: math.unit(15, "km")
  40805. },
  40806. ]
  40807. ))
  40808. characterMakers.push(() => makeCharacter(
  40809. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40810. {
  40811. front: {
  40812. height: math.unit(6, "feet"),
  40813. weight: math.unit(250, "lb"),
  40814. name: "Front",
  40815. image: {
  40816. source: "./media/characters/mukiro/front.svg",
  40817. extra: 1368/1310,
  40818. bottom: 34/1402
  40819. }
  40820. },
  40821. },
  40822. [
  40823. {
  40824. name: "Normal",
  40825. height: math.unit(6, "feet"),
  40826. default: true
  40827. },
  40828. ]
  40829. ))
  40830. characterMakers.push(() => makeCharacter(
  40831. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40832. {
  40833. front: {
  40834. height: math.unit(12 + 4/12, "feet"),
  40835. name: "Front",
  40836. image: {
  40837. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40838. extra: 1346/1311,
  40839. bottom: 65/1411
  40840. }
  40841. },
  40842. },
  40843. [
  40844. {
  40845. name: "Base",
  40846. height: math.unit(12 + 4/12, "feet"),
  40847. default: true
  40848. },
  40849. {
  40850. name: "Macro",
  40851. height: math.unit(150, "feet")
  40852. },
  40853. {
  40854. name: "Mega",
  40855. height: math.unit(2, "miles")
  40856. },
  40857. {
  40858. name: "Demi God",
  40859. height: math.unit(4, "AU")
  40860. },
  40861. {
  40862. name: "God Size",
  40863. height: math.unit(1, "universe")
  40864. },
  40865. ]
  40866. ))
  40867. characterMakers.push(() => makeCharacter(
  40868. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40869. {
  40870. front: {
  40871. height: math.unit(3 + 3/12, "feet"),
  40872. weight: math.unit(88, "lb"),
  40873. name: "Front",
  40874. image: {
  40875. source: "./media/characters/trey/front.svg",
  40876. extra: 1815/1509,
  40877. bottom: 60/1875
  40878. }
  40879. },
  40880. },
  40881. [
  40882. {
  40883. name: "Normal",
  40884. height: math.unit(3 + 3/12, "feet"),
  40885. default: true
  40886. },
  40887. ]
  40888. ))
  40889. characterMakers.push(() => makeCharacter(
  40890. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40891. {
  40892. front: {
  40893. height: math.unit(4, "meters"),
  40894. name: "Front",
  40895. image: {
  40896. source: "./media/characters/adelonda/front.svg",
  40897. extra: 1077/982,
  40898. bottom: 39/1116
  40899. }
  40900. },
  40901. back: {
  40902. height: math.unit(4, "meters"),
  40903. name: "Back",
  40904. image: {
  40905. source: "./media/characters/adelonda/back.svg",
  40906. extra: 1105/1003,
  40907. bottom: 25/1130
  40908. }
  40909. },
  40910. feral: {
  40911. height: math.unit(40/1.5, "meters"),
  40912. name: "Feral",
  40913. image: {
  40914. source: "./media/characters/adelonda/feral.svg",
  40915. extra: 597/271,
  40916. bottom: 387/984
  40917. }
  40918. },
  40919. },
  40920. [
  40921. {
  40922. name: "Normal",
  40923. height: math.unit(4, "meters"),
  40924. default: true
  40925. },
  40926. ]
  40927. ))
  40928. characterMakers.push(() => makeCharacter(
  40929. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40930. {
  40931. front: {
  40932. height: math.unit(8 + 4/12, "feet"),
  40933. weight: math.unit(670, "lb"),
  40934. name: "Front",
  40935. image: {
  40936. source: "./media/characters/acadiel/front.svg",
  40937. extra: 1901/1595,
  40938. bottom: 142/2043
  40939. }
  40940. },
  40941. },
  40942. [
  40943. {
  40944. name: "Normal",
  40945. height: math.unit(8 + 4/12, "feet"),
  40946. default: true
  40947. },
  40948. {
  40949. name: "Macro",
  40950. height: math.unit(200, "feet")
  40951. },
  40952. ]
  40953. ))
  40954. characterMakers.push(() => makeCharacter(
  40955. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40956. {
  40957. front: {
  40958. height: math.unit(6 + 2/12, "feet"),
  40959. weight: math.unit(185, "lb"),
  40960. name: "Front",
  40961. image: {
  40962. source: "./media/characters/kayne-ein/front.svg",
  40963. extra: 1780/1560,
  40964. bottom: 81/1861
  40965. }
  40966. },
  40967. },
  40968. [
  40969. {
  40970. name: "Normal",
  40971. height: math.unit(6 + 2/12, "feet"),
  40972. default: true
  40973. },
  40974. {
  40975. name: "Transformation Stage",
  40976. height: math.unit(15, "feet")
  40977. },
  40978. {
  40979. name: "Macro",
  40980. height: math.unit(150, "feet")
  40981. },
  40982. {
  40983. name: "Earth's Shadow",
  40984. height: math.unit(6200, "miles")
  40985. },
  40986. {
  40987. name: "Universal Demon",
  40988. height: math.unit(28e9, "parsecs")
  40989. },
  40990. {
  40991. name: "Multiverse God",
  40992. height: math.unit(3, "multiverses")
  40993. },
  40994. ]
  40995. ))
  40996. characterMakers.push(() => makeCharacter(
  40997. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40998. {
  40999. front: {
  41000. height: math.unit(5 + 5/12, "feet"),
  41001. name: "Front",
  41002. image: {
  41003. source: "./media/characters/fawn/front.svg",
  41004. extra: 1873/1731,
  41005. bottom: 95/1968
  41006. }
  41007. },
  41008. back: {
  41009. height: math.unit(5 + 5/12, "feet"),
  41010. name: "Back",
  41011. image: {
  41012. source: "./media/characters/fawn/back.svg",
  41013. extra: 1813/1700,
  41014. bottom: 14/1827
  41015. }
  41016. },
  41017. hoof: {
  41018. height: math.unit(1.45, "feet"),
  41019. name: "Hoof",
  41020. image: {
  41021. source: "./media/characters/fawn/hoof.svg"
  41022. }
  41023. },
  41024. },
  41025. [
  41026. {
  41027. name: "Normal",
  41028. height: math.unit(5 + 5/12, "feet"),
  41029. default: true
  41030. },
  41031. ]
  41032. ))
  41033. characterMakers.push(() => makeCharacter(
  41034. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  41035. {
  41036. front: {
  41037. height: math.unit(2 + 5/12, "feet"),
  41038. name: "Front",
  41039. image: {
  41040. source: "./media/characters/orion/front.svg",
  41041. extra: 1366/1304,
  41042. bottom: 43/1409
  41043. }
  41044. },
  41045. paw: {
  41046. height: math.unit(0.52, "feet"),
  41047. name: "Paw",
  41048. image: {
  41049. source: "./media/characters/orion/paw.svg"
  41050. }
  41051. },
  41052. },
  41053. [
  41054. {
  41055. name: "Normal",
  41056. height: math.unit(2 + 5/12, "feet"),
  41057. default: true
  41058. },
  41059. ]
  41060. ))
  41061. characterMakers.push(() => makeCharacter(
  41062. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  41063. {
  41064. front: {
  41065. height: math.unit(5 + 10/12, "feet"),
  41066. name: "Front",
  41067. image: {
  41068. source: "./media/characters/vera/front.svg",
  41069. extra: 1680/1575,
  41070. bottom: 49/1729
  41071. }
  41072. },
  41073. back: {
  41074. height: math.unit(5 + 10/12, "feet"),
  41075. name: "Back",
  41076. image: {
  41077. source: "./media/characters/vera/back.svg",
  41078. extra: 1700/1588,
  41079. bottom: 18/1718
  41080. }
  41081. },
  41082. arcanine: {
  41083. height: math.unit(6 + 8/12, "feet"),
  41084. name: "Arcanine",
  41085. image: {
  41086. source: "./media/characters/vera/arcanine.svg",
  41087. extra: 1590/1511,
  41088. bottom: 71/1661
  41089. }
  41090. },
  41091. maw: {
  41092. height: math.unit(0.82, "feet"),
  41093. name: "Maw",
  41094. image: {
  41095. source: "./media/characters/vera/maw.svg"
  41096. }
  41097. },
  41098. mawArcanine: {
  41099. height: math.unit(0.97, "feet"),
  41100. name: "Maw (Arcanine)",
  41101. image: {
  41102. source: "./media/characters/vera/maw-arcanine.svg"
  41103. }
  41104. },
  41105. paw: {
  41106. height: math.unit(0.75, "feet"),
  41107. name: "Paw",
  41108. image: {
  41109. source: "./media/characters/vera/paw.svg"
  41110. }
  41111. },
  41112. pawprint: {
  41113. height: math.unit(0.52, "feet"),
  41114. name: "Pawprint",
  41115. image: {
  41116. source: "./media/characters/vera/pawprint.svg"
  41117. }
  41118. },
  41119. },
  41120. [
  41121. {
  41122. name: "Normal",
  41123. height: math.unit(5 + 10/12, "feet"),
  41124. default: true
  41125. },
  41126. {
  41127. name: "Macro",
  41128. height: math.unit(75, "feet")
  41129. },
  41130. ]
  41131. ))
  41132. characterMakers.push(() => makeCharacter(
  41133. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  41134. {
  41135. front: {
  41136. height: math.unit(4, "feet"),
  41137. weight: math.unit(40, "lb"),
  41138. name: "Front",
  41139. image: {
  41140. source: "./media/characters/orvan-rabbit/front.svg",
  41141. extra: 1896/1642,
  41142. bottom: 29/1925
  41143. }
  41144. },
  41145. },
  41146. [
  41147. {
  41148. name: "Normal",
  41149. height: math.unit(4, "feet"),
  41150. default: true
  41151. },
  41152. ]
  41153. ))
  41154. characterMakers.push(() => makeCharacter(
  41155. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  41156. {
  41157. front: {
  41158. height: math.unit(6, "feet"),
  41159. weight: math.unit(168, "lb"),
  41160. name: "Front",
  41161. image: {
  41162. source: "./media/characters/lisa/front.svg",
  41163. extra: 2065/1867,
  41164. bottom: 46/2111
  41165. }
  41166. },
  41167. back: {
  41168. height: math.unit(6, "feet"),
  41169. weight: math.unit(168, "lb"),
  41170. name: "Back",
  41171. image: {
  41172. source: "./media/characters/lisa/back.svg",
  41173. extra: 1982/1838,
  41174. bottom: 29/2011
  41175. }
  41176. },
  41177. maw: {
  41178. height: math.unit(0.81, "feet"),
  41179. name: "Maw",
  41180. image: {
  41181. source: "./media/characters/lisa/maw.svg"
  41182. }
  41183. },
  41184. paw: {
  41185. height: math.unit(0.9, "feet"),
  41186. name: "Paw",
  41187. image: {
  41188. source: "./media/characters/lisa/paw.svg"
  41189. }
  41190. },
  41191. caribousune: {
  41192. height: math.unit(7 + 2/12, "feet"),
  41193. weight: math.unit(268, "lb"),
  41194. name: "Caribousune",
  41195. image: {
  41196. source: "./media/characters/lisa/caribousune.svg",
  41197. extra: 1843/1633,
  41198. bottom: 29/1872
  41199. }
  41200. },
  41201. frontCaribousune: {
  41202. height: math.unit(7 + 2/12, "feet"),
  41203. weight: math.unit(268, "lb"),
  41204. name: "Front (Caribousune)",
  41205. image: {
  41206. source: "./media/characters/lisa/front-caribousune.svg",
  41207. extra: 1818/1638,
  41208. bottom: 52/1870
  41209. }
  41210. },
  41211. sideCaribousune: {
  41212. height: math.unit(7 + 2/12, "feet"),
  41213. weight: math.unit(268, "lb"),
  41214. name: "Side (Caribousune)",
  41215. image: {
  41216. source: "./media/characters/lisa/side-caribousune.svg",
  41217. extra: 1851/1635,
  41218. bottom: 16/1867
  41219. }
  41220. },
  41221. backCaribousune: {
  41222. height: math.unit(7 + 2/12, "feet"),
  41223. weight: math.unit(268, "lb"),
  41224. name: "Back (Caribousune)",
  41225. image: {
  41226. source: "./media/characters/lisa/back-caribousune.svg",
  41227. extra: 1801/1604,
  41228. bottom: 44/1845
  41229. }
  41230. },
  41231. caribou: {
  41232. height: math.unit(7 + 2/12, "feet"),
  41233. weight: math.unit(268, "lb"),
  41234. name: "Caribou",
  41235. image: {
  41236. source: "./media/characters/lisa/caribou.svg",
  41237. extra: 1843/1633,
  41238. bottom: 29/1872
  41239. }
  41240. },
  41241. frontCaribou: {
  41242. height: math.unit(7 + 2/12, "feet"),
  41243. weight: math.unit(268, "lb"),
  41244. name: "Front (Caribou)",
  41245. image: {
  41246. source: "./media/characters/lisa/front-caribou.svg",
  41247. extra: 1818/1638,
  41248. bottom: 52/1870
  41249. }
  41250. },
  41251. sideCaribou: {
  41252. height: math.unit(7 + 2/12, "feet"),
  41253. weight: math.unit(268, "lb"),
  41254. name: "Side (Caribou)",
  41255. image: {
  41256. source: "./media/characters/lisa/side-caribou.svg",
  41257. extra: 1851/1635,
  41258. bottom: 16/1867
  41259. }
  41260. },
  41261. backCaribou: {
  41262. height: math.unit(7 + 2/12, "feet"),
  41263. weight: math.unit(268, "lb"),
  41264. name: "Back (Caribou)",
  41265. image: {
  41266. source: "./media/characters/lisa/back-caribou.svg",
  41267. extra: 1801/1604,
  41268. bottom: 44/1845
  41269. }
  41270. },
  41271. mawCaribou: {
  41272. height: math.unit(1.45, "feet"),
  41273. name: "Maw (Caribou)",
  41274. image: {
  41275. source: "./media/characters/lisa/maw-caribou.svg"
  41276. }
  41277. },
  41278. mawCaribousune: {
  41279. height: math.unit(1.45, "feet"),
  41280. name: "Maw (Caribousune)",
  41281. image: {
  41282. source: "./media/characters/lisa/maw-caribousune.svg"
  41283. }
  41284. },
  41285. pawCaribousune: {
  41286. height: math.unit(1.61, "feet"),
  41287. name: "Paw (Caribou)",
  41288. image: {
  41289. source: "./media/characters/lisa/paw-caribousune.svg"
  41290. }
  41291. },
  41292. },
  41293. [
  41294. {
  41295. name: "Normal",
  41296. height: math.unit(6, "feet")
  41297. },
  41298. {
  41299. name: "God Size",
  41300. height: math.unit(72, "feet"),
  41301. default: true
  41302. },
  41303. {
  41304. name: "Towering",
  41305. height: math.unit(288, "feet")
  41306. },
  41307. {
  41308. name: "City Size",
  41309. height: math.unit(48384, "feet")
  41310. },
  41311. {
  41312. name: "Continental",
  41313. height: math.unit(4200, "miles")
  41314. },
  41315. {
  41316. name: "Planet Eater",
  41317. height: math.unit(42, "earths")
  41318. },
  41319. {
  41320. name: "Star Swallower",
  41321. height: math.unit(42, "solarradii")
  41322. },
  41323. {
  41324. name: "System Swallower",
  41325. height: math.unit(84000, "AU")
  41326. },
  41327. {
  41328. name: "Galaxy Gobbler",
  41329. height: math.unit(42, "galaxies")
  41330. },
  41331. {
  41332. name: "Universe Devourer",
  41333. height: math.unit(42, "universes")
  41334. },
  41335. {
  41336. name: "Multiverse Muncher",
  41337. height: math.unit(42, "multiverses")
  41338. },
  41339. ]
  41340. ))
  41341. characterMakers.push(() => makeCharacter(
  41342. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  41343. {
  41344. front: {
  41345. height: math.unit(36, "feet"),
  41346. name: "Front",
  41347. image: {
  41348. source: "./media/characters/shadow-rat/front.svg",
  41349. extra: 1845/1758,
  41350. bottom: 83/1928
  41351. }
  41352. },
  41353. },
  41354. [
  41355. {
  41356. name: "Macro",
  41357. height: math.unit(36, "feet"),
  41358. default: true
  41359. },
  41360. ]
  41361. ))
  41362. characterMakers.push(() => makeCharacter(
  41363. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  41364. {
  41365. side: {
  41366. height: math.unit(8, "feet"),
  41367. weight: math.unit(2630, "lb"),
  41368. name: "Side",
  41369. image: {
  41370. source: "./media/characters/torallia/side.svg",
  41371. extra: 2164/2021,
  41372. bottom: 371/2535
  41373. }
  41374. },
  41375. },
  41376. [
  41377. {
  41378. name: "Mortal Interaction",
  41379. height: math.unit(8, "feet")
  41380. },
  41381. {
  41382. name: "Natural",
  41383. height: math.unit(24, "feet"),
  41384. default: true
  41385. },
  41386. {
  41387. name: "Giant",
  41388. height: math.unit(80, "feet")
  41389. },
  41390. {
  41391. name: "Kaiju",
  41392. height: math.unit(240, "feet")
  41393. },
  41394. {
  41395. name: "Macro",
  41396. height: math.unit(800, "feet")
  41397. },
  41398. {
  41399. name: "Macro+",
  41400. height: math.unit(2400, "feet")
  41401. },
  41402. {
  41403. name: "Macro++",
  41404. height: math.unit(8000, "feet")
  41405. },
  41406. {
  41407. name: "City-Crushing",
  41408. height: math.unit(24000, "feet")
  41409. },
  41410. {
  41411. name: "Mountain-Mashing",
  41412. height: math.unit(80000, "feet")
  41413. },
  41414. {
  41415. name: "District Demolisher",
  41416. height: math.unit(240000, "feet")
  41417. },
  41418. {
  41419. name: "Tri-County Terror",
  41420. height: math.unit(800000, "feet")
  41421. },
  41422. {
  41423. name: "State Smasher",
  41424. height: math.unit(2.4e6, "feet")
  41425. },
  41426. {
  41427. name: "Nation Nemesis",
  41428. height: math.unit(8e6, "feet")
  41429. },
  41430. {
  41431. name: "Continent Cracker",
  41432. height: math.unit(2.4e7, "feet")
  41433. },
  41434. {
  41435. name: "Planet-Pillaging",
  41436. height: math.unit(8e7, "feet")
  41437. },
  41438. {
  41439. name: "Earth-Eclipsing",
  41440. height: math.unit(2.4e8, "feet")
  41441. },
  41442. {
  41443. name: "Jovian-Jostling",
  41444. height: math.unit(8e8, "feet")
  41445. },
  41446. {
  41447. name: "Gas Giant Gulper",
  41448. height: math.unit(2.4e9, "feet")
  41449. },
  41450. {
  41451. name: "Astral Annihilator",
  41452. height: math.unit(8e9, "feet")
  41453. },
  41454. {
  41455. name: "Celestial Conqueror",
  41456. height: math.unit(2.4e10, "feet")
  41457. },
  41458. {
  41459. name: "Sol-Swallowing",
  41460. height: math.unit(8e10, "feet")
  41461. },
  41462. {
  41463. name: "Hunter of the Heavens",
  41464. height: math.unit(2.4e13, "feet")
  41465. },
  41466. ]
  41467. ))
  41468. characterMakers.push(() => makeCharacter(
  41469. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  41470. {
  41471. front: {
  41472. height: math.unit(10, "feet"),
  41473. weight: math.unit(844, "kilograms"),
  41474. name: "Front",
  41475. image: {
  41476. source: "./media/characters/rebecca-pawlson/front.svg",
  41477. extra: 1196/1099,
  41478. bottom: 81/1277
  41479. },
  41480. extraAttributes: {
  41481. "pawSize": {
  41482. name: "Paw Size",
  41483. power: 2,
  41484. type: "area",
  41485. base: math.unit(0.2 * 0.375, "meters^2")
  41486. },
  41487. "handSize": {
  41488. name: "Hand Size",
  41489. power: 2,
  41490. type: "area",
  41491. base: math.unit(0.2 * 0.35, "meters^2")
  41492. },
  41493. "breastDiameter": {
  41494. name: "Breast Diameter",
  41495. power: 1,
  41496. type: "length",
  41497. base: math.unit(0.5, "meters")
  41498. },
  41499. "breastVolume": {
  41500. name: "Breast Volume",
  41501. power: 3,
  41502. type: "volume",
  41503. base: math.unit(0.065, "m^3")
  41504. },
  41505. "breastMass": {
  41506. name: "Breast Mass",
  41507. power: 3,
  41508. type: "mass",
  41509. base: math.unit(65, "kg")
  41510. },
  41511. "nippleDiameter": {
  41512. name: "Nipple Diameter",
  41513. power: 1,
  41514. type: "length",
  41515. base: math.unit(0.1, "meters")
  41516. },
  41517. }
  41518. },
  41519. back: {
  41520. height: math.unit(10, "feet"),
  41521. weight: math.unit(844, "kilograms"),
  41522. name: "Back",
  41523. image: {
  41524. source: "./media/characters/rebecca-pawlson/back.svg",
  41525. extra: 879/776,
  41526. bottom: 43/922
  41527. },
  41528. extraAttributes: {
  41529. "pawSize": {
  41530. name: "Paw Size",
  41531. power: 2,
  41532. type: "area",
  41533. base: math.unit(0.2 * 0.375, "meters^2")
  41534. },
  41535. "handSize": {
  41536. name: "Hand Size",
  41537. power: 2,
  41538. type: "area",
  41539. base: math.unit(0.2 * 0.35, "meters^2")
  41540. },
  41541. "breastDiameter": {
  41542. name: "Breast Diameter",
  41543. power: 1,
  41544. type: "length",
  41545. base: math.unit(0.5, "meters")
  41546. },
  41547. "breastVolume": {
  41548. name: "Breast Volume",
  41549. power: 3,
  41550. type: "volume",
  41551. base: math.unit(0.065, "m^3")
  41552. },
  41553. "breastMass": {
  41554. name: "Breast Mass",
  41555. power: 3,
  41556. type: "mass",
  41557. base: math.unit(65, "kg")
  41558. },
  41559. "nippleDiameter": {
  41560. name: "Nipple Diameter",
  41561. power: 1,
  41562. type: "length",
  41563. base: math.unit(0.1, "meters")
  41564. },
  41565. }
  41566. },
  41567. },
  41568. [
  41569. {
  41570. name: "Normal",
  41571. height: math.unit(6 + 8/12, "feet")
  41572. },
  41573. {
  41574. name: "Mini Macro",
  41575. height: math.unit(10, "feet"),
  41576. default: true
  41577. },
  41578. {
  41579. name: "Macro",
  41580. height: math.unit(100, "feet")
  41581. },
  41582. {
  41583. name: "Mega Macro",
  41584. height: math.unit(2500, "feet")
  41585. },
  41586. {
  41587. name: "Giga Macro",
  41588. height: math.unit(50, "miles")
  41589. },
  41590. ]
  41591. ))
  41592. characterMakers.push(() => makeCharacter(
  41593. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  41594. {
  41595. front: {
  41596. height: math.unit(7 + 6/12, "feet"),
  41597. weight: math.unit(600, "lb"),
  41598. name: "Front",
  41599. image: {
  41600. source: "./media/characters/moxie-nova/front.svg",
  41601. extra: 1734/1652,
  41602. bottom: 41/1775
  41603. }
  41604. },
  41605. },
  41606. [
  41607. {
  41608. name: "Normal",
  41609. height: math.unit(7 + 6/12, "feet"),
  41610. default: true
  41611. },
  41612. ]
  41613. ))
  41614. characterMakers.push(() => makeCharacter(
  41615. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  41616. {
  41617. goat: {
  41618. height: math.unit(4, "feet"),
  41619. weight: math.unit(180, "lb"),
  41620. name: "Goat",
  41621. image: {
  41622. source: "./media/characters/tiffany/goat.svg",
  41623. extra: 1845/1595,
  41624. bottom: 106/1951
  41625. }
  41626. },
  41627. front: {
  41628. height: math.unit(5, "feet"),
  41629. weight: math.unit(150, "lb"),
  41630. name: "Foxcoon",
  41631. image: {
  41632. source: "./media/characters/tiffany/foxcoon.svg",
  41633. extra: 1941/1845,
  41634. bottom: 58/1999
  41635. }
  41636. },
  41637. },
  41638. [
  41639. {
  41640. name: "Normal",
  41641. height: math.unit(5, "feet"),
  41642. default: true
  41643. },
  41644. ]
  41645. ))
  41646. characterMakers.push(() => makeCharacter(
  41647. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  41648. {
  41649. front: {
  41650. height: math.unit(8, "feet"),
  41651. weight: math.unit(300, "lb"),
  41652. name: "Front",
  41653. image: {
  41654. source: "./media/characters/raxinath/front.svg",
  41655. extra: 1407/1309,
  41656. bottom: 39/1446
  41657. }
  41658. },
  41659. back: {
  41660. height: math.unit(8, "feet"),
  41661. weight: math.unit(300, "lb"),
  41662. name: "Back",
  41663. image: {
  41664. source: "./media/characters/raxinath/back.svg",
  41665. extra: 1405/1315,
  41666. bottom: 9/1414
  41667. }
  41668. },
  41669. },
  41670. [
  41671. {
  41672. name: "Speck",
  41673. height: math.unit(0.5, "nm")
  41674. },
  41675. {
  41676. name: "Micro",
  41677. height: math.unit(3, "inches")
  41678. },
  41679. {
  41680. name: "Kobold",
  41681. height: math.unit(3, "feet")
  41682. },
  41683. {
  41684. name: "Normal",
  41685. height: math.unit(8, "feet"),
  41686. default: true
  41687. },
  41688. {
  41689. name: "Giant",
  41690. height: math.unit(50, "feet")
  41691. },
  41692. {
  41693. name: "Macro",
  41694. height: math.unit(1000, "feet")
  41695. },
  41696. {
  41697. name: "Megamacro",
  41698. height: math.unit(1, "mile")
  41699. },
  41700. ]
  41701. ))
  41702. characterMakers.push(() => makeCharacter(
  41703. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  41704. {
  41705. front: {
  41706. height: math.unit(10, "feet"),
  41707. weight: math.unit(1442, "lb"),
  41708. name: "Front",
  41709. image: {
  41710. source: "./media/characters/mal-dragon/front.svg",
  41711. extra: 1515/1444,
  41712. bottom: 113/1628
  41713. }
  41714. },
  41715. back: {
  41716. height: math.unit(10, "feet"),
  41717. weight: math.unit(1442, "lb"),
  41718. name: "Back",
  41719. image: {
  41720. source: "./media/characters/mal-dragon/back.svg",
  41721. extra: 1527/1434,
  41722. bottom: 25/1552
  41723. }
  41724. },
  41725. },
  41726. [
  41727. {
  41728. name: "Mortal Interaction",
  41729. height: math.unit(10, "feet"),
  41730. default: true
  41731. },
  41732. {
  41733. name: "Large",
  41734. height: math.unit(30, "feet")
  41735. },
  41736. {
  41737. name: "Kaiju",
  41738. height: math.unit(300, "feet")
  41739. },
  41740. {
  41741. name: "Megamacro",
  41742. height: math.unit(10000, "feet")
  41743. },
  41744. {
  41745. name: "Continent Cracker",
  41746. height: math.unit(30000000, "feet")
  41747. },
  41748. {
  41749. name: "Sol-Swallowing",
  41750. height: math.unit(1e11, "feet")
  41751. },
  41752. {
  41753. name: "Light Universal",
  41754. height: math.unit(5, "universes")
  41755. },
  41756. {
  41757. name: "Universe Atoms",
  41758. height: math.unit(1.829e9, "universes")
  41759. },
  41760. {
  41761. name: "Light Multiversal",
  41762. height: math.unit(5, "multiverses")
  41763. },
  41764. {
  41765. name: "Multiverse Atoms",
  41766. height: math.unit(1.829e9, "multiverses")
  41767. },
  41768. {
  41769. name: "Fabric of Time",
  41770. height: math.unit(1e262, "multiverses")
  41771. },
  41772. ]
  41773. ))
  41774. characterMakers.push(() => makeCharacter(
  41775. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41776. {
  41777. front: {
  41778. height: math.unit(9, "feet"),
  41779. weight: math.unit(1050, "lb"),
  41780. name: "Front",
  41781. image: {
  41782. source: "./media/characters/tabitha/front.svg",
  41783. extra: 2083/1994,
  41784. bottom: 68/2151
  41785. }
  41786. },
  41787. },
  41788. [
  41789. {
  41790. name: "Baseline",
  41791. height: math.unit(9, "feet"),
  41792. default: true
  41793. },
  41794. {
  41795. name: "Giant",
  41796. height: math.unit(90, "feet")
  41797. },
  41798. {
  41799. name: "Macro",
  41800. height: math.unit(900, "feet")
  41801. },
  41802. {
  41803. name: "Megamacro",
  41804. height: math.unit(9000, "feet")
  41805. },
  41806. {
  41807. name: "City-Crushing",
  41808. height: math.unit(27000, "feet")
  41809. },
  41810. {
  41811. name: "Mountain-Mashing",
  41812. height: math.unit(90000, "feet")
  41813. },
  41814. {
  41815. name: "Nation Nemesis",
  41816. height: math.unit(9e6, "feet")
  41817. },
  41818. {
  41819. name: "Continent Cracker",
  41820. height: math.unit(27e6, "feet")
  41821. },
  41822. {
  41823. name: "Earth-Eclipsing",
  41824. height: math.unit(2.7e8, "feet")
  41825. },
  41826. {
  41827. name: "Gas Giant Gulper",
  41828. height: math.unit(2.7e9, "feet")
  41829. },
  41830. {
  41831. name: "Sol-Swallowing",
  41832. height: math.unit(9e10, "feet")
  41833. },
  41834. {
  41835. name: "Galaxy Gulper",
  41836. height: math.unit(9, "galaxies")
  41837. },
  41838. {
  41839. name: "Cosmos Churner",
  41840. height: math.unit(9, "universes")
  41841. },
  41842. ]
  41843. ))
  41844. characterMakers.push(() => makeCharacter(
  41845. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41846. {
  41847. front: {
  41848. height: math.unit(160, "cm"),
  41849. weight: math.unit(55, "kg"),
  41850. name: "Front",
  41851. image: {
  41852. source: "./media/characters/tow/front.svg",
  41853. extra: 1751/1722,
  41854. bottom: 74/1825
  41855. }
  41856. },
  41857. },
  41858. [
  41859. {
  41860. name: "Norm",
  41861. height: math.unit(160, "cm")
  41862. },
  41863. {
  41864. name: "Casual",
  41865. height: math.unit(3200, "m"),
  41866. default: true
  41867. },
  41868. {
  41869. name: "Show-Off",
  41870. height: math.unit(160, "km")
  41871. },
  41872. ]
  41873. ))
  41874. characterMakers.push(() => makeCharacter(
  41875. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41876. {
  41877. front: {
  41878. height: math.unit(7 + 11/12, "feet"),
  41879. weight: math.unit(342.8, "lb"),
  41880. name: "Front",
  41881. image: {
  41882. source: "./media/characters/vivian-orca-dragon/front.svg",
  41883. extra: 1890/1865,
  41884. bottom: 28/1918
  41885. }
  41886. },
  41887. },
  41888. [
  41889. {
  41890. name: "Micro",
  41891. height: math.unit(5, "inches")
  41892. },
  41893. {
  41894. name: "Normal",
  41895. height: math.unit(7 + 11/12, "feet"),
  41896. default: true
  41897. },
  41898. {
  41899. name: "Macro",
  41900. height: math.unit(395 + 7/12, "feet")
  41901. },
  41902. ]
  41903. ))
  41904. characterMakers.push(() => makeCharacter(
  41905. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41906. {
  41907. side: {
  41908. height: math.unit(10, "feet"),
  41909. weight: math.unit(1442, "lb"),
  41910. name: "Side",
  41911. image: {
  41912. source: "./media/characters/lotherakon/side.svg",
  41913. extra: 1604/1497,
  41914. bottom: 89/1693
  41915. }
  41916. },
  41917. },
  41918. [
  41919. {
  41920. name: "Mortal Interaction",
  41921. height: math.unit(10, "feet")
  41922. },
  41923. {
  41924. name: "Large",
  41925. height: math.unit(30, "feet"),
  41926. default: true
  41927. },
  41928. {
  41929. name: "Giant",
  41930. height: math.unit(100, "feet")
  41931. },
  41932. {
  41933. name: "Kaiju",
  41934. height: math.unit(300, "feet")
  41935. },
  41936. {
  41937. name: "Macro",
  41938. height: math.unit(1000, "feet")
  41939. },
  41940. {
  41941. name: "Macro+",
  41942. height: math.unit(3000, "feet")
  41943. },
  41944. {
  41945. name: "Megamacro",
  41946. height: math.unit(10000, "feet")
  41947. },
  41948. {
  41949. name: "City-Crushing",
  41950. height: math.unit(30000, "feet")
  41951. },
  41952. {
  41953. name: "Continent Cracker",
  41954. height: math.unit(30e6, "feet")
  41955. },
  41956. {
  41957. name: "Earth Eclipsing",
  41958. height: math.unit(3e8, "feet")
  41959. },
  41960. {
  41961. name: "Gas Giant Gulper",
  41962. height: math.unit(3e9, "feet")
  41963. },
  41964. {
  41965. name: "Sol-Swallowing",
  41966. height: math.unit(1e11, "feet")
  41967. },
  41968. {
  41969. name: "System Swallower",
  41970. height: math.unit(3e14, "feet")
  41971. },
  41972. {
  41973. name: "Galaxy Gulper",
  41974. height: math.unit(10, "galaxies")
  41975. },
  41976. {
  41977. name: "Light Universal",
  41978. height: math.unit(5, "universes")
  41979. },
  41980. {
  41981. name: "Universe Palm",
  41982. height: math.unit(20, "universes")
  41983. },
  41984. {
  41985. name: "Light Multiversal",
  41986. height: math.unit(5, "multiverses")
  41987. },
  41988. {
  41989. name: "Multiverse Palm",
  41990. height: math.unit(20, "multiverses")
  41991. },
  41992. {
  41993. name: "Inferno Incarnate",
  41994. height: math.unit(1e7, "multiverses")
  41995. },
  41996. ]
  41997. ))
  41998. characterMakers.push(() => makeCharacter(
  41999. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  42000. {
  42001. front: {
  42002. height: math.unit(8, "feet"),
  42003. weight: math.unit(1200, "lb"),
  42004. name: "Front",
  42005. image: {
  42006. source: "./media/characters/malithee/front.svg",
  42007. extra: 1675/1640,
  42008. bottom: 162/1837
  42009. }
  42010. },
  42011. },
  42012. [
  42013. {
  42014. name: "Mortal Interaction",
  42015. height: math.unit(8, "feet"),
  42016. default: true
  42017. },
  42018. {
  42019. name: "Large",
  42020. height: math.unit(24, "feet")
  42021. },
  42022. {
  42023. name: "Kaiju",
  42024. height: math.unit(240, "feet")
  42025. },
  42026. {
  42027. name: "Megamacro",
  42028. height: math.unit(8000, "feet")
  42029. },
  42030. {
  42031. name: "Continent Cracker",
  42032. height: math.unit(24e6, "feet")
  42033. },
  42034. {
  42035. name: "Earth-Eclipsing",
  42036. height: math.unit(2.4e8, "feet")
  42037. },
  42038. {
  42039. name: "Sol-Swallowing",
  42040. height: math.unit(8e10, "feet")
  42041. },
  42042. {
  42043. name: "Galaxy Gulper",
  42044. height: math.unit(8, "galaxies")
  42045. },
  42046. {
  42047. name: "Light Universal",
  42048. height: math.unit(4, "universes")
  42049. },
  42050. {
  42051. name: "Universe Atoms",
  42052. height: math.unit(1.829e9, "universes")
  42053. },
  42054. {
  42055. name: "Light Multiversal",
  42056. height: math.unit(4, "multiverses")
  42057. },
  42058. {
  42059. name: "Multiverse Atoms",
  42060. height: math.unit(1.829e9, "multiverses")
  42061. },
  42062. {
  42063. name: "Nigh-Omnipresence",
  42064. height: math.unit(8e261, "multiverses")
  42065. },
  42066. ]
  42067. ))
  42068. characterMakers.push(() => makeCharacter(
  42069. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  42070. {
  42071. front: {
  42072. height: math.unit(10, "feet"),
  42073. weight: math.unit(1500, "lb"),
  42074. name: "Front",
  42075. image: {
  42076. source: "./media/characters/miles-thestia/front.svg",
  42077. extra: 1812/1727,
  42078. bottom: 86/1898
  42079. }
  42080. },
  42081. back: {
  42082. height: math.unit(10, "feet"),
  42083. weight: math.unit(1500, "lb"),
  42084. name: "Back",
  42085. image: {
  42086. source: "./media/characters/miles-thestia/back.svg",
  42087. extra: 1799/1690,
  42088. bottom: 47/1846
  42089. }
  42090. },
  42091. frontNsfw: {
  42092. height: math.unit(10, "feet"),
  42093. weight: math.unit(1500, "lb"),
  42094. name: "Front (NSFW)",
  42095. image: {
  42096. source: "./media/characters/miles-thestia/front-nsfw.svg",
  42097. extra: 1812/1727,
  42098. bottom: 86/1898
  42099. }
  42100. },
  42101. },
  42102. [
  42103. {
  42104. name: "Mini-Macro",
  42105. height: math.unit(10, "feet"),
  42106. default: true
  42107. },
  42108. ]
  42109. ))
  42110. characterMakers.push(() => makeCharacter(
  42111. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  42112. {
  42113. front: {
  42114. height: math.unit(25, "feet"),
  42115. name: "Front",
  42116. image: {
  42117. source: "./media/characters/titan-s-wulf/front.svg",
  42118. extra: 1560/1484,
  42119. bottom: 76/1636
  42120. }
  42121. },
  42122. },
  42123. [
  42124. {
  42125. name: "Smallest",
  42126. height: math.unit(25, "feet"),
  42127. default: true
  42128. },
  42129. {
  42130. name: "Normal",
  42131. height: math.unit(200, "feet")
  42132. },
  42133. {
  42134. name: "Macro",
  42135. height: math.unit(200000, "feet")
  42136. },
  42137. {
  42138. name: "Multiversal Original",
  42139. height: math.unit(10000, "multiverses")
  42140. },
  42141. ]
  42142. ))
  42143. characterMakers.push(() => makeCharacter(
  42144. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  42145. {
  42146. front: {
  42147. height: math.unit(8, "feet"),
  42148. weight: math.unit(553, "lb"),
  42149. name: "Front",
  42150. image: {
  42151. source: "./media/characters/tawendeh/front.svg",
  42152. extra: 2365/2268,
  42153. bottom: 83/2448
  42154. }
  42155. },
  42156. frontClothed: {
  42157. height: math.unit(8, "feet"),
  42158. weight: math.unit(553, "lb"),
  42159. name: "Front (Clothed)",
  42160. image: {
  42161. source: "./media/characters/tawendeh/front-clothed.svg",
  42162. extra: 2365/2268,
  42163. bottom: 83/2448
  42164. }
  42165. },
  42166. back: {
  42167. height: math.unit(8, "feet"),
  42168. weight: math.unit(553, "lb"),
  42169. name: "Back",
  42170. image: {
  42171. source: "./media/characters/tawendeh/back.svg",
  42172. extra: 2397/2294,
  42173. bottom: 42/2439
  42174. }
  42175. },
  42176. },
  42177. [
  42178. {
  42179. name: "Mortal Interaction",
  42180. height: math.unit(8, "feet"),
  42181. default: true
  42182. },
  42183. {
  42184. name: "Giant",
  42185. height: math.unit(80, "feet")
  42186. },
  42187. {
  42188. name: "Macro",
  42189. height: math.unit(800, "feet")
  42190. },
  42191. {
  42192. name: "Megamacro",
  42193. height: math.unit(8000, "feet")
  42194. },
  42195. {
  42196. name: "City-Crushing",
  42197. height: math.unit(24000, "feet")
  42198. },
  42199. {
  42200. name: "Mountain-Mashing",
  42201. height: math.unit(80000, "feet")
  42202. },
  42203. {
  42204. name: "Nation Nemesis",
  42205. height: math.unit(8e6, "feet")
  42206. },
  42207. {
  42208. name: "Continent Cracker",
  42209. height: math.unit(24e6, "feet")
  42210. },
  42211. {
  42212. name: "Earth-Eclipsing",
  42213. height: math.unit(2.4e8, "feet")
  42214. },
  42215. {
  42216. name: "Gas Giant Gulper",
  42217. height: math.unit(2.4e9, "feet")
  42218. },
  42219. {
  42220. name: "Sol-Swallowing",
  42221. height: math.unit(8e10, "feet")
  42222. },
  42223. {
  42224. name: "Galaxy Gulper",
  42225. height: math.unit(8, "galaxies")
  42226. },
  42227. {
  42228. name: "Cosmos Churner",
  42229. height: math.unit(8, "universes")
  42230. },
  42231. {
  42232. name: "Omnipotent Otter",
  42233. height: math.unit(80, "universes")
  42234. },
  42235. ]
  42236. ))
  42237. characterMakers.push(() => makeCharacter(
  42238. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  42239. {
  42240. front: {
  42241. height: math.unit(2.6, "meters"),
  42242. weight: math.unit(900, "kg"),
  42243. name: "Front",
  42244. image: {
  42245. source: "./media/characters/neesha/front.svg",
  42246. extra: 1803/1653,
  42247. bottom: 128/1931
  42248. }
  42249. },
  42250. },
  42251. [
  42252. {
  42253. name: "Normal",
  42254. height: math.unit(2.6, "meters"),
  42255. default: true
  42256. },
  42257. {
  42258. name: "Macro",
  42259. height: math.unit(50, "meters")
  42260. },
  42261. ]
  42262. ))
  42263. characterMakers.push(() => makeCharacter(
  42264. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  42265. {
  42266. front: {
  42267. height: math.unit(5, "feet"),
  42268. weight: math.unit(185, "lb"),
  42269. name: "Front",
  42270. image: {
  42271. source: "./media/characters/kyera/front.svg",
  42272. extra: 1875/1790,
  42273. bottom: 96/1971
  42274. }
  42275. },
  42276. },
  42277. [
  42278. {
  42279. name: "Normal",
  42280. height: math.unit(5, "feet"),
  42281. default: true
  42282. },
  42283. ]
  42284. ))
  42285. characterMakers.push(() => makeCharacter(
  42286. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  42287. {
  42288. front: {
  42289. height: math.unit(7 + 6/12, "feet"),
  42290. weight: math.unit(540, "lb"),
  42291. name: "Front",
  42292. image: {
  42293. source: "./media/characters/yuko/front.svg",
  42294. extra: 1282/1222,
  42295. bottom: 101/1383
  42296. }
  42297. },
  42298. frontClothed: {
  42299. height: math.unit(7 + 6/12, "feet"),
  42300. weight: math.unit(540, "lb"),
  42301. name: "Front (Clothed)",
  42302. image: {
  42303. source: "./media/characters/yuko/front-clothed.svg",
  42304. extra: 1282/1222,
  42305. bottom: 101/1383
  42306. }
  42307. },
  42308. },
  42309. [
  42310. {
  42311. name: "Normal",
  42312. height: math.unit(7 + 6/12, "feet"),
  42313. default: true
  42314. },
  42315. {
  42316. name: "Macro",
  42317. height: math.unit(26 + 9/12, "feet")
  42318. },
  42319. {
  42320. name: "Megamacro",
  42321. height: math.unit(300, "feet")
  42322. },
  42323. {
  42324. name: "Gigamacro",
  42325. height: math.unit(5000, "feet")
  42326. },
  42327. {
  42328. name: "Planetary",
  42329. height: math.unit(10000, "miles")
  42330. },
  42331. ]
  42332. ))
  42333. characterMakers.push(() => makeCharacter(
  42334. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  42335. {
  42336. front: {
  42337. height: math.unit(8 + 2/12, "feet"),
  42338. weight: math.unit(600, "lb"),
  42339. name: "Front",
  42340. image: {
  42341. source: "./media/characters/deam-nitrel/front.svg",
  42342. extra: 1308/1234,
  42343. bottom: 125/1433
  42344. }
  42345. },
  42346. },
  42347. [
  42348. {
  42349. name: "Normal",
  42350. height: math.unit(8 + 2/12, "feet"),
  42351. default: true
  42352. },
  42353. ]
  42354. ))
  42355. characterMakers.push(() => makeCharacter(
  42356. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  42357. {
  42358. front: {
  42359. height: math.unit(6.1, "feet"),
  42360. weight: math.unit(180, "lb"),
  42361. name: "Front",
  42362. image: {
  42363. source: "./media/characters/skyress/front.svg",
  42364. extra: 1045/915,
  42365. bottom: 28/1073
  42366. }
  42367. },
  42368. maw: {
  42369. height: math.unit(1, "feet"),
  42370. name: "Maw",
  42371. image: {
  42372. source: "./media/characters/skyress/maw.svg"
  42373. }
  42374. },
  42375. },
  42376. [
  42377. {
  42378. name: "Normal",
  42379. height: math.unit(6.1, "feet"),
  42380. default: true
  42381. },
  42382. {
  42383. name: "Macro",
  42384. height: math.unit(200, "feet")
  42385. },
  42386. ]
  42387. ))
  42388. characterMakers.push(() => makeCharacter(
  42389. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  42390. {
  42391. front: {
  42392. height: math.unit(4 + 2/12, "feet"),
  42393. weight: math.unit(40, "kg"),
  42394. name: "Front",
  42395. image: {
  42396. source: "./media/characters/amethyst-jones/front.svg",
  42397. extra: 1220/1150,
  42398. bottom: 101/1321
  42399. }
  42400. },
  42401. },
  42402. [
  42403. {
  42404. name: "Normal",
  42405. height: math.unit(4 + 2/12, "feet"),
  42406. default: true
  42407. },
  42408. ]
  42409. ))
  42410. characterMakers.push(() => makeCharacter(
  42411. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  42412. {
  42413. front: {
  42414. height: math.unit(1.7, "m"),
  42415. weight: math.unit(135, "lb"),
  42416. name: "Front",
  42417. image: {
  42418. source: "./media/characters/jade/front.svg",
  42419. extra: 1818/1767,
  42420. bottom: 32/1850
  42421. }
  42422. },
  42423. back: {
  42424. height: math.unit(1.7, "m"),
  42425. weight: math.unit(135, "lb"),
  42426. name: "Back",
  42427. image: {
  42428. source: "./media/characters/jade/back.svg",
  42429. extra: 1869/1809,
  42430. bottom: 35/1904
  42431. }
  42432. },
  42433. hand: {
  42434. height: math.unit(0.24, "m"),
  42435. name: "Hand",
  42436. image: {
  42437. source: "./media/characters/jade/hand.svg"
  42438. }
  42439. },
  42440. foot: {
  42441. height: math.unit(0.263, "m"),
  42442. name: "Foot",
  42443. image: {
  42444. source: "./media/characters/jade/foot.svg"
  42445. }
  42446. },
  42447. dick: {
  42448. height: math.unit(0.47, "m"),
  42449. name: "Dick",
  42450. image: {
  42451. source: "./media/characters/jade/dick.svg"
  42452. }
  42453. },
  42454. },
  42455. [
  42456. {
  42457. name: "Micro",
  42458. height: math.unit(22, "cm")
  42459. },
  42460. {
  42461. name: "Normal",
  42462. height: math.unit(1.7, "m"),
  42463. default: true
  42464. },
  42465. {
  42466. name: "Macro",
  42467. height: math.unit(152, "m")
  42468. },
  42469. ]
  42470. ))
  42471. characterMakers.push(() => makeCharacter(
  42472. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  42473. {
  42474. front: {
  42475. height: math.unit(100, "miles"),
  42476. weight: math.unit(20000, "tons"),
  42477. name: "Front",
  42478. image: {
  42479. source: "./media/characters/cookie/front.svg",
  42480. extra: 1125/1070,
  42481. bottom: 30/1155
  42482. }
  42483. },
  42484. },
  42485. [
  42486. {
  42487. name: "Big",
  42488. height: math.unit(50, "feet")
  42489. },
  42490. {
  42491. name: "Macro",
  42492. height: math.unit(100, "miles"),
  42493. default: true
  42494. },
  42495. {
  42496. name: "Megamacro",
  42497. height: math.unit(90000, "miles")
  42498. },
  42499. ]
  42500. ))
  42501. characterMakers.push(() => makeCharacter(
  42502. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  42503. {
  42504. front: {
  42505. height: math.unit(6, "feet"),
  42506. weight: math.unit(145, "lb"),
  42507. name: "Front",
  42508. image: {
  42509. source: "./media/characters/farzian/front.svg",
  42510. extra: 1902/1693,
  42511. bottom: 108/2010
  42512. }
  42513. },
  42514. },
  42515. [
  42516. {
  42517. name: "Macro",
  42518. height: math.unit(500, "feet"),
  42519. default: true
  42520. },
  42521. ]
  42522. ))
  42523. characterMakers.push(() => makeCharacter(
  42524. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  42525. {
  42526. front: {
  42527. height: math.unit(3 + 6/12, "feet"),
  42528. weight: math.unit(50, "lb"),
  42529. name: "Front",
  42530. image: {
  42531. source: "./media/characters/kimberly-tilson/front.svg",
  42532. extra: 1400/1322,
  42533. bottom: 36/1436
  42534. }
  42535. },
  42536. back: {
  42537. height: math.unit(3 + 6/12, "feet"),
  42538. weight: math.unit(50, "lb"),
  42539. name: "Back",
  42540. image: {
  42541. source: "./media/characters/kimberly-tilson/back.svg",
  42542. extra: 1370/1307,
  42543. bottom: 20/1390
  42544. }
  42545. },
  42546. },
  42547. [
  42548. {
  42549. name: "Normal",
  42550. height: math.unit(3 + 6/12, "feet"),
  42551. default: true
  42552. },
  42553. ]
  42554. ))
  42555. characterMakers.push(() => makeCharacter(
  42556. { name: "Harthos", species: ["peacekeeper", "allusus"], tags: ["anthro"] },
  42557. {
  42558. front: {
  42559. height: math.unit(350, "meters"),
  42560. weight: math.unit(7.57059e+8, "lb"),
  42561. name: "Front",
  42562. image: {
  42563. source: "./media/characters/harthos/front.svg",
  42564. extra: 455/446,
  42565. bottom: 15/470
  42566. },
  42567. form: "peacekeeper",
  42568. default: true
  42569. },
  42570. allusus_front: {
  42571. height: math.unit(270, "meters"),
  42572. weight: math.unit(3.47550e+8, "lb"),
  42573. name: "Front",
  42574. image: {
  42575. source: "./media/characters/harthos/allusus-front.svg",
  42576. extra: 455/446,
  42577. bottom: 15/470
  42578. },
  42579. form: "allusus",
  42580. },
  42581. },
  42582. [
  42583. {
  42584. name: "Macro",
  42585. height: math.unit(350, "meters"),
  42586. default: true,
  42587. form: "peacekeeper"
  42588. },
  42589. {
  42590. name: "Macro",
  42591. height: math.unit(270, "meters"),
  42592. default: true,
  42593. form: "allusus"
  42594. },
  42595. ],
  42596. {
  42597. "peacekeeper": {
  42598. name: "Peacekeeper",
  42599. default: true
  42600. },
  42601. "allusus": {
  42602. name: "Allusus",
  42603. },
  42604. }
  42605. ))
  42606. characterMakers.push(() => makeCharacter(
  42607. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  42608. {
  42609. front: {
  42610. height: math.unit(15, "feet"),
  42611. name: "Front",
  42612. image: {
  42613. source: "./media/characters/hypatia/front.svg",
  42614. extra: 1653/1591,
  42615. bottom: 79/1732
  42616. }
  42617. },
  42618. },
  42619. [
  42620. {
  42621. name: "Normal",
  42622. height: math.unit(15, "feet")
  42623. },
  42624. {
  42625. name: "Small",
  42626. height: math.unit(300, "feet")
  42627. },
  42628. {
  42629. name: "Macro",
  42630. height: math.unit(2500, "feet"),
  42631. default: true
  42632. },
  42633. {
  42634. name: "Mega Macro",
  42635. height: math.unit(1500, "miles")
  42636. },
  42637. {
  42638. name: "Giga Macro",
  42639. height: math.unit(1.5e6, "miles")
  42640. },
  42641. ]
  42642. ))
  42643. characterMakers.push(() => makeCharacter(
  42644. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  42645. {
  42646. front: {
  42647. height: math.unit(6, "feet"),
  42648. weight: math.unit(200, "lb"),
  42649. name: "Front",
  42650. image: {
  42651. source: "./media/characters/wulver/front.svg",
  42652. extra: 1724/1632,
  42653. bottom: 130/1854
  42654. }
  42655. },
  42656. frontNsfw: {
  42657. height: math.unit(6, "feet"),
  42658. weight: math.unit(200, "lb"),
  42659. name: "Front (NSFW)",
  42660. image: {
  42661. source: "./media/characters/wulver/front-nsfw.svg",
  42662. extra: 1724/1632,
  42663. bottom: 130/1854
  42664. }
  42665. },
  42666. },
  42667. [
  42668. {
  42669. name: "Human-Sized",
  42670. height: math.unit(6, "feet")
  42671. },
  42672. {
  42673. name: "Normal",
  42674. height: math.unit(4, "meters"),
  42675. default: true
  42676. },
  42677. {
  42678. name: "Large",
  42679. height: math.unit(6, "m")
  42680. },
  42681. ]
  42682. ))
  42683. characterMakers.push(() => makeCharacter(
  42684. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  42685. {
  42686. front: {
  42687. height: math.unit(7, "feet"),
  42688. name: "Front",
  42689. image: {
  42690. source: "./media/characters/maru/front.svg",
  42691. extra: 1595/1570,
  42692. bottom: 0/1595
  42693. }
  42694. },
  42695. },
  42696. [
  42697. {
  42698. name: "Normal",
  42699. height: math.unit(7, "feet"),
  42700. default: true
  42701. },
  42702. {
  42703. name: "Macro",
  42704. height: math.unit(700, "feet")
  42705. },
  42706. {
  42707. name: "Mega Macro",
  42708. height: math.unit(25, "miles")
  42709. },
  42710. ]
  42711. ))
  42712. characterMakers.push(() => makeCharacter(
  42713. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  42714. {
  42715. front: {
  42716. height: math.unit(6, "feet"),
  42717. weight: math.unit(170, "lb"),
  42718. name: "Front",
  42719. image: {
  42720. source: "./media/characters/xenon/front.svg",
  42721. extra: 1376/1305,
  42722. bottom: 56/1432
  42723. }
  42724. },
  42725. back: {
  42726. height: math.unit(6, "feet"),
  42727. weight: math.unit(170, "lb"),
  42728. name: "Back",
  42729. image: {
  42730. source: "./media/characters/xenon/back.svg",
  42731. extra: 1328/1259,
  42732. bottom: 95/1423
  42733. }
  42734. },
  42735. maw: {
  42736. height: math.unit(0.52, "feet"),
  42737. name: "Maw",
  42738. image: {
  42739. source: "./media/characters/xenon/maw.svg"
  42740. }
  42741. },
  42742. handLeft: {
  42743. height: math.unit(0.82 * 169 / 153, "feet"),
  42744. name: "Hand (Left)",
  42745. image: {
  42746. source: "./media/characters/xenon/hand-left.svg"
  42747. }
  42748. },
  42749. handRight: {
  42750. height: math.unit(0.82, "feet"),
  42751. name: "Hand (Right)",
  42752. image: {
  42753. source: "./media/characters/xenon/hand-right.svg"
  42754. }
  42755. },
  42756. footLeft: {
  42757. height: math.unit(1.13, "feet"),
  42758. name: "Foot (Left)",
  42759. image: {
  42760. source: "./media/characters/xenon/foot-left.svg"
  42761. }
  42762. },
  42763. footRight: {
  42764. height: math.unit(1.13 * 194 / 196, "feet"),
  42765. name: "Foot (Right)",
  42766. image: {
  42767. source: "./media/characters/xenon/foot-right.svg"
  42768. }
  42769. },
  42770. },
  42771. [
  42772. {
  42773. name: "Micro",
  42774. height: math.unit(0.8, "inches")
  42775. },
  42776. {
  42777. name: "Normal",
  42778. height: math.unit(6, "feet")
  42779. },
  42780. {
  42781. name: "Macro",
  42782. height: math.unit(50, "feet"),
  42783. default: true
  42784. },
  42785. {
  42786. name: "Macro+",
  42787. height: math.unit(250, "feet")
  42788. },
  42789. {
  42790. name: "Megamacro",
  42791. height: math.unit(1500, "feet")
  42792. },
  42793. ]
  42794. ))
  42795. characterMakers.push(() => makeCharacter(
  42796. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42797. {
  42798. front: {
  42799. height: math.unit(7 + 5/12, "feet"),
  42800. name: "Front",
  42801. image: {
  42802. source: "./media/characters/zane/front.svg",
  42803. extra: 1260/1203,
  42804. bottom: 94/1354
  42805. }
  42806. },
  42807. back: {
  42808. height: math.unit(5.05, "feet"),
  42809. name: "Back",
  42810. image: {
  42811. source: "./media/characters/zane/back.svg",
  42812. extra: 893/829,
  42813. bottom: 30/923
  42814. }
  42815. },
  42816. werewolf: {
  42817. height: math.unit(11, "feet"),
  42818. name: "Werewolf",
  42819. image: {
  42820. source: "./media/characters/zane/werewolf.svg",
  42821. extra: 1383/1323,
  42822. bottom: 89/1472
  42823. }
  42824. },
  42825. foot: {
  42826. height: math.unit(1.46, "feet"),
  42827. name: "Foot",
  42828. image: {
  42829. source: "./media/characters/zane/foot.svg"
  42830. }
  42831. },
  42832. footFront: {
  42833. height: math.unit(0.784, "feet"),
  42834. name: "Foot (Front)",
  42835. image: {
  42836. source: "./media/characters/zane/foot-front.svg"
  42837. }
  42838. },
  42839. dick: {
  42840. height: math.unit(1.95, "feet"),
  42841. name: "Dick",
  42842. image: {
  42843. source: "./media/characters/zane/dick.svg"
  42844. }
  42845. },
  42846. dickWerewolf: {
  42847. height: math.unit(3.77, "feet"),
  42848. name: "Dick (Werewolf)",
  42849. image: {
  42850. source: "./media/characters/zane/dick.svg"
  42851. }
  42852. },
  42853. },
  42854. [
  42855. {
  42856. name: "Normal",
  42857. height: math.unit(7 + 5/12, "feet"),
  42858. default: true
  42859. },
  42860. ]
  42861. ))
  42862. characterMakers.push(() => makeCharacter(
  42863. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42864. {
  42865. front: {
  42866. height: math.unit(6 + 2/12, "feet"),
  42867. weight: math.unit(284, "lb"),
  42868. name: "Front",
  42869. image: {
  42870. source: "./media/characters/benni-desparque/front.svg",
  42871. extra: 1353/1126,
  42872. bottom: 69/1422
  42873. }
  42874. },
  42875. },
  42876. [
  42877. {
  42878. name: "Civilian",
  42879. height: math.unit(6 + 2/12, "feet")
  42880. },
  42881. {
  42882. name: "Normal",
  42883. height: math.unit(98, "feet"),
  42884. default: true
  42885. },
  42886. {
  42887. name: "Kaiju Fighter",
  42888. height: math.unit(268, "feet")
  42889. },
  42890. ]
  42891. ))
  42892. characterMakers.push(() => makeCharacter(
  42893. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42894. {
  42895. front: {
  42896. height: math.unit(5, "feet"),
  42897. weight: math.unit(105, "lb"),
  42898. name: "Front",
  42899. image: {
  42900. source: "./media/characters/maxine/front.svg",
  42901. extra: 1386/1250,
  42902. bottom: 71/1457
  42903. }
  42904. },
  42905. },
  42906. [
  42907. {
  42908. name: "Normal",
  42909. height: math.unit(5, "feet"),
  42910. default: true
  42911. },
  42912. ]
  42913. ))
  42914. characterMakers.push(() => makeCharacter(
  42915. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42916. {
  42917. front: {
  42918. height: math.unit(11 + 7/12, "feet"),
  42919. weight: math.unit(9576, "lb"),
  42920. name: "Front",
  42921. image: {
  42922. source: "./media/characters/scaly/front.svg",
  42923. extra: 888/867,
  42924. bottom: 36/924
  42925. }
  42926. },
  42927. },
  42928. [
  42929. {
  42930. name: "Normal",
  42931. height: math.unit(11 + 7/12, "feet"),
  42932. default: true
  42933. },
  42934. ]
  42935. ))
  42936. characterMakers.push(() => makeCharacter(
  42937. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42938. {
  42939. front: {
  42940. height: math.unit(6 + 3/12, "feet"),
  42941. name: "Front",
  42942. image: {
  42943. source: "./media/characters/saelria/front.svg",
  42944. extra: 1243/1138,
  42945. bottom: 46/1289
  42946. }
  42947. },
  42948. },
  42949. [
  42950. {
  42951. name: "Micro",
  42952. height: math.unit(6, "inches"),
  42953. },
  42954. {
  42955. name: "Normal",
  42956. height: math.unit(6 + 3/12, "feet"),
  42957. default: true
  42958. },
  42959. {
  42960. name: "Macro",
  42961. height: math.unit(25, "feet")
  42962. },
  42963. ]
  42964. ))
  42965. characterMakers.push(() => makeCharacter(
  42966. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42967. {
  42968. front: {
  42969. height: math.unit(80, "meters"),
  42970. weight: math.unit(7000, "tonnes"),
  42971. name: "Front",
  42972. image: {
  42973. source: "./media/characters/tef/front.svg",
  42974. extra: 2036/1991,
  42975. bottom: 54/2090
  42976. }
  42977. },
  42978. back: {
  42979. height: math.unit(80, "meters"),
  42980. weight: math.unit(7000, "tonnes"),
  42981. name: "Back",
  42982. image: {
  42983. source: "./media/characters/tef/back.svg",
  42984. extra: 2036/1991,
  42985. bottom: 54/2090
  42986. }
  42987. },
  42988. },
  42989. [
  42990. {
  42991. name: "Macro",
  42992. height: math.unit(80, "meters"),
  42993. default: true
  42994. },
  42995. ]
  42996. ))
  42997. characterMakers.push(() => makeCharacter(
  42998. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42999. {
  43000. front: {
  43001. height: math.unit(13, "feet"),
  43002. weight: math.unit(6, "tons"),
  43003. name: "Front",
  43004. image: {
  43005. source: "./media/characters/rover/front.svg",
  43006. extra: 1233/1156,
  43007. bottom: 50/1283
  43008. }
  43009. },
  43010. back: {
  43011. height: math.unit(13, "feet"),
  43012. weight: math.unit(6, "tons"),
  43013. name: "Back",
  43014. image: {
  43015. source: "./media/characters/rover/back.svg",
  43016. extra: 1327/1258,
  43017. bottom: 39/1366
  43018. }
  43019. },
  43020. },
  43021. [
  43022. {
  43023. name: "Normal",
  43024. height: math.unit(13, "feet"),
  43025. default: true
  43026. },
  43027. {
  43028. name: "Macro",
  43029. height: math.unit(1300, "feet")
  43030. },
  43031. {
  43032. name: "Megamacro",
  43033. height: math.unit(1300, "miles")
  43034. },
  43035. {
  43036. name: "Gigamacro",
  43037. height: math.unit(1300000, "miles")
  43038. },
  43039. ]
  43040. ))
  43041. characterMakers.push(() => makeCharacter(
  43042. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  43043. {
  43044. front: {
  43045. height: math.unit(10, "feet"),
  43046. weight: math.unit(500, "lb"),
  43047. name: "Front",
  43048. image: {
  43049. source: "./media/characters/ariz/front.svg",
  43050. extra: 461/450,
  43051. bottom: 16/477
  43052. }
  43053. },
  43054. },
  43055. [
  43056. {
  43057. name: "MiniMacro",
  43058. height: math.unit(10, "feet"),
  43059. default: true
  43060. },
  43061. ]
  43062. ))
  43063. characterMakers.push(() => makeCharacter(
  43064. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  43065. {
  43066. front: {
  43067. height: math.unit(6, "feet"),
  43068. weight: math.unit(140, "lb"),
  43069. name: "Front",
  43070. image: {
  43071. source: "./media/characters/sigrun/front.svg",
  43072. extra: 1418/1359,
  43073. bottom: 27/1445
  43074. }
  43075. },
  43076. },
  43077. [
  43078. {
  43079. name: "Macro",
  43080. height: math.unit(35, "feet"),
  43081. default: true
  43082. },
  43083. ]
  43084. ))
  43085. characterMakers.push(() => makeCharacter(
  43086. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  43087. {
  43088. front: {
  43089. height: math.unit(6, "feet"),
  43090. weight: math.unit(150, "lb"),
  43091. name: "Front",
  43092. image: {
  43093. source: "./media/characters/numin/front.svg",
  43094. extra: 1433/1388,
  43095. bottom: 12/1445
  43096. }
  43097. },
  43098. },
  43099. [
  43100. {
  43101. name: "Macro",
  43102. height: math.unit(21.5, "km"),
  43103. default: true
  43104. },
  43105. ]
  43106. ))
  43107. characterMakers.push(() => makeCharacter(
  43108. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  43109. {
  43110. front: {
  43111. height: math.unit(6, "feet"),
  43112. weight: math.unit(463, "lb"),
  43113. name: "Front",
  43114. image: {
  43115. source: "./media/characters/melwa/front.svg",
  43116. extra: 1307/1248,
  43117. bottom: 93/1400
  43118. }
  43119. },
  43120. },
  43121. [
  43122. {
  43123. name: "Macro",
  43124. height: math.unit(50, "meters"),
  43125. default: true
  43126. },
  43127. ]
  43128. ))
  43129. characterMakers.push(() => makeCharacter(
  43130. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  43131. {
  43132. front: {
  43133. height: math.unit(325, "feet"),
  43134. name: "Front",
  43135. image: {
  43136. source: "./media/characters/zorkaiju/front.svg",
  43137. extra: 1955/1814,
  43138. bottom: 40/1995
  43139. }
  43140. },
  43141. frontExtended: {
  43142. height: math.unit(325, "feet"),
  43143. name: "Front (Extended)",
  43144. image: {
  43145. source: "./media/characters/zorkaiju/front-extended.svg",
  43146. extra: 1955/1814,
  43147. bottom: 40/1995
  43148. }
  43149. },
  43150. side: {
  43151. height: math.unit(325, "feet"),
  43152. name: "Side",
  43153. image: {
  43154. source: "./media/characters/zorkaiju/side.svg",
  43155. extra: 1495/1396,
  43156. bottom: 17/1512
  43157. }
  43158. },
  43159. sideExtended: {
  43160. height: math.unit(325, "feet"),
  43161. name: "Side (Extended)",
  43162. image: {
  43163. source: "./media/characters/zorkaiju/side-extended.svg",
  43164. extra: 1495/1396,
  43165. bottom: 17/1512
  43166. }
  43167. },
  43168. back: {
  43169. height: math.unit(325, "feet"),
  43170. name: "Back",
  43171. image: {
  43172. source: "./media/characters/zorkaiju/back.svg",
  43173. extra: 1959/1821,
  43174. bottom: 31/1990
  43175. }
  43176. },
  43177. backExtended: {
  43178. height: math.unit(325, "feet"),
  43179. name: "Back (Extended)",
  43180. image: {
  43181. source: "./media/characters/zorkaiju/back-extended.svg",
  43182. extra: 1959/1821,
  43183. bottom: 31/1990
  43184. }
  43185. },
  43186. hand: {
  43187. height: math.unit(58.4, "feet"),
  43188. name: "Hand",
  43189. image: {
  43190. source: "./media/characters/zorkaiju/hand.svg"
  43191. }
  43192. },
  43193. handExtended: {
  43194. height: math.unit(61.4, "feet"),
  43195. name: "Hand (Extended)",
  43196. image: {
  43197. source: "./media/characters/zorkaiju/hand-extended.svg"
  43198. }
  43199. },
  43200. foot: {
  43201. height: math.unit(95, "feet"),
  43202. name: "Foot",
  43203. image: {
  43204. source: "./media/characters/zorkaiju/foot.svg"
  43205. }
  43206. },
  43207. leftArm: {
  43208. height: math.unit(59, "feet"),
  43209. name: "Left Arm",
  43210. image: {
  43211. source: "./media/characters/zorkaiju/left-arm.svg"
  43212. }
  43213. },
  43214. rightArm: {
  43215. height: math.unit(59, "feet"),
  43216. name: "Right Arm",
  43217. image: {
  43218. source: "./media/characters/zorkaiju/right-arm.svg"
  43219. }
  43220. },
  43221. leftArmExtended: {
  43222. height: math.unit(59 * 1.033546, "feet"),
  43223. name: "Left Arm (Extended)",
  43224. image: {
  43225. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  43226. }
  43227. },
  43228. rightArmExtended: {
  43229. height: math.unit(59 * 1.0496, "feet"),
  43230. name: "Right Arm (Extended)",
  43231. image: {
  43232. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  43233. }
  43234. },
  43235. tail: {
  43236. height: math.unit(104, "feet"),
  43237. name: "Tail",
  43238. image: {
  43239. source: "./media/characters/zorkaiju/tail.svg"
  43240. }
  43241. },
  43242. tailExtended: {
  43243. height: math.unit(104, "feet"),
  43244. name: "Tail (Extended)",
  43245. image: {
  43246. source: "./media/characters/zorkaiju/tail-extended.svg"
  43247. }
  43248. },
  43249. tailBottom: {
  43250. height: math.unit(104, "feet"),
  43251. name: "Tail Bottom",
  43252. image: {
  43253. source: "./media/characters/zorkaiju/tail-bottom.svg"
  43254. }
  43255. },
  43256. crystal: {
  43257. height: math.unit(27.54, "feet"),
  43258. name: "Crystal",
  43259. image: {
  43260. source: "./media/characters/zorkaiju/crystal.svg"
  43261. }
  43262. },
  43263. },
  43264. [
  43265. {
  43266. name: "Kaiju",
  43267. height: math.unit(325, "feet"),
  43268. default: true
  43269. },
  43270. ]
  43271. ))
  43272. characterMakers.push(() => makeCharacter(
  43273. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  43274. {
  43275. front: {
  43276. height: math.unit(6 + 1/12, "feet"),
  43277. weight: math.unit(115, "lb"),
  43278. name: "Front",
  43279. image: {
  43280. source: "./media/characters/bailey-belfry/front.svg",
  43281. extra: 1240/1121,
  43282. bottom: 101/1341
  43283. }
  43284. },
  43285. },
  43286. [
  43287. {
  43288. name: "Normal",
  43289. height: math.unit(6 + 1/12, "feet"),
  43290. default: true
  43291. },
  43292. ]
  43293. ))
  43294. characterMakers.push(() => makeCharacter(
  43295. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  43296. {
  43297. side: {
  43298. height: math.unit(4, "meters"),
  43299. weight: math.unit(250, "kg"),
  43300. name: "Side",
  43301. image: {
  43302. source: "./media/characters/blacky/side.svg",
  43303. extra: 1027/919,
  43304. bottom: 43/1070
  43305. }
  43306. },
  43307. maw: {
  43308. height: math.unit(1, "meters"),
  43309. name: "Maw",
  43310. image: {
  43311. source: "./media/characters/blacky/maw.svg"
  43312. }
  43313. },
  43314. paw: {
  43315. height: math.unit(1, "meters"),
  43316. name: "Paw",
  43317. image: {
  43318. source: "./media/characters/blacky/paw.svg"
  43319. }
  43320. },
  43321. },
  43322. [
  43323. {
  43324. name: "Normal",
  43325. height: math.unit(4, "meters"),
  43326. default: true
  43327. },
  43328. ]
  43329. ))
  43330. characterMakers.push(() => makeCharacter(
  43331. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  43332. {
  43333. front: {
  43334. height: math.unit(170, "cm"),
  43335. weight: math.unit(66, "kg"),
  43336. name: "Front",
  43337. image: {
  43338. source: "./media/characters/thux-ei/front.svg",
  43339. extra: 1109/1011,
  43340. bottom: 8/1117
  43341. }
  43342. },
  43343. },
  43344. [
  43345. {
  43346. name: "Normal",
  43347. height: math.unit(170, "cm"),
  43348. default: true
  43349. },
  43350. ]
  43351. ))
  43352. characterMakers.push(() => makeCharacter(
  43353. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  43354. {
  43355. front: {
  43356. height: math.unit(5, "feet"),
  43357. weight: math.unit(120, "lb"),
  43358. name: "Front",
  43359. image: {
  43360. source: "./media/characters/roxanne-voltaire/front.svg",
  43361. extra: 1901/1779,
  43362. bottom: 53/1954
  43363. }
  43364. },
  43365. },
  43366. [
  43367. {
  43368. name: "Normal",
  43369. height: math.unit(5, "feet"),
  43370. default: true
  43371. },
  43372. {
  43373. name: "Giant",
  43374. height: math.unit(50, "feet")
  43375. },
  43376. {
  43377. name: "Titan",
  43378. height: math.unit(500, "feet")
  43379. },
  43380. {
  43381. name: "Macro",
  43382. height: math.unit(5000, "feet")
  43383. },
  43384. {
  43385. name: "Megamacro",
  43386. height: math.unit(50000, "feet")
  43387. },
  43388. {
  43389. name: "Gigamacro",
  43390. height: math.unit(500000, "feet")
  43391. },
  43392. {
  43393. name: "Teramacro",
  43394. height: math.unit(5e6, "feet")
  43395. },
  43396. ]
  43397. ))
  43398. characterMakers.push(() => makeCharacter(
  43399. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  43400. {
  43401. front: {
  43402. height: math.unit(6 + 2/12, "feet"),
  43403. name: "Front",
  43404. image: {
  43405. source: "./media/characters/squeaks/front.svg",
  43406. extra: 1823/1768,
  43407. bottom: 138/1961
  43408. }
  43409. },
  43410. },
  43411. [
  43412. {
  43413. name: "Micro",
  43414. height: math.unit(0.5, "inches")
  43415. },
  43416. {
  43417. name: "Normal",
  43418. height: math.unit(6 + 2/12, "feet"),
  43419. default: true
  43420. },
  43421. {
  43422. name: "Macro",
  43423. height: math.unit(600, "feet")
  43424. },
  43425. ]
  43426. ))
  43427. characterMakers.push(() => makeCharacter(
  43428. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  43429. {
  43430. front: {
  43431. height: math.unit(1.72, "meters"),
  43432. name: "Front",
  43433. image: {
  43434. source: "./media/characters/archinger/front.svg",
  43435. extra: 1861/1675,
  43436. bottom: 125/1986
  43437. }
  43438. },
  43439. back: {
  43440. height: math.unit(1.72, "meters"),
  43441. name: "Back",
  43442. image: {
  43443. source: "./media/characters/archinger/back.svg",
  43444. extra: 1844/1701,
  43445. bottom: 104/1948
  43446. }
  43447. },
  43448. cock: {
  43449. height: math.unit(0.59, "feet"),
  43450. name: "Cock",
  43451. image: {
  43452. source: "./media/characters/archinger/cock.svg"
  43453. }
  43454. },
  43455. },
  43456. [
  43457. {
  43458. name: "Normal",
  43459. height: math.unit(1.72, "meters"),
  43460. default: true
  43461. },
  43462. {
  43463. name: "Macro",
  43464. height: math.unit(84, "meters")
  43465. },
  43466. {
  43467. name: "Macro+",
  43468. height: math.unit(112, "meters")
  43469. },
  43470. {
  43471. name: "Macro++",
  43472. height: math.unit(960, "meters")
  43473. },
  43474. {
  43475. name: "Macro+++",
  43476. height: math.unit(4, "km")
  43477. },
  43478. {
  43479. name: "Macro++++",
  43480. height: math.unit(48, "km")
  43481. },
  43482. {
  43483. name: "Macro+++++",
  43484. height: math.unit(4500, "km")
  43485. },
  43486. ]
  43487. ))
  43488. characterMakers.push(() => makeCharacter(
  43489. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  43490. {
  43491. front: {
  43492. height: math.unit(5 + 5/12, "feet"),
  43493. name: "Front",
  43494. image: {
  43495. source: "./media/characters/alsnapz/front.svg",
  43496. extra: 1157/1065,
  43497. bottom: 42/1199
  43498. }
  43499. },
  43500. },
  43501. [
  43502. {
  43503. name: "Normal",
  43504. height: math.unit(5 + 5/12, "feet"),
  43505. default: true
  43506. },
  43507. ]
  43508. ))
  43509. characterMakers.push(() => makeCharacter(
  43510. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  43511. {
  43512. side: {
  43513. height: math.unit(3.2, "earths"),
  43514. name: "Side",
  43515. image: {
  43516. source: "./media/characters/mag/side.svg",
  43517. extra: 1331/1008,
  43518. bottom: 52/1383
  43519. }
  43520. },
  43521. wing: {
  43522. height: math.unit(1.94, "earths"),
  43523. name: "Wing",
  43524. image: {
  43525. source: "./media/characters/mag/wing.svg"
  43526. }
  43527. },
  43528. dick: {
  43529. height: math.unit(1.8, "earths"),
  43530. name: "Dick",
  43531. image: {
  43532. source: "./media/characters/mag/dick.svg"
  43533. }
  43534. },
  43535. ass: {
  43536. height: math.unit(1.33, "earths"),
  43537. name: "Ass",
  43538. image: {
  43539. source: "./media/characters/mag/ass.svg"
  43540. }
  43541. },
  43542. head: {
  43543. height: math.unit(1.1, "earths"),
  43544. name: "Head",
  43545. image: {
  43546. source: "./media/characters/mag/head.svg"
  43547. }
  43548. },
  43549. maw: {
  43550. height: math.unit(1.62, "earths"),
  43551. name: "Maw",
  43552. image: {
  43553. source: "./media/characters/mag/maw.svg"
  43554. }
  43555. },
  43556. },
  43557. [
  43558. {
  43559. name: "Small",
  43560. height: math.unit(162, "feet")
  43561. },
  43562. {
  43563. name: "Normal",
  43564. height: math.unit(3.2, "earths"),
  43565. default: true
  43566. },
  43567. ]
  43568. ))
  43569. characterMakers.push(() => makeCharacter(
  43570. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  43571. {
  43572. front: {
  43573. height: math.unit(512, "feet"),
  43574. weight: math.unit(63509, "tonnes"),
  43575. name: "Front",
  43576. image: {
  43577. source: "./media/characters/vorrel-harroc/front.svg",
  43578. extra: 1075/1063,
  43579. bottom: 62/1137
  43580. }
  43581. },
  43582. },
  43583. [
  43584. {
  43585. name: "Normal",
  43586. height: math.unit(10, "feet")
  43587. },
  43588. {
  43589. name: "Macro",
  43590. height: math.unit(512, "feet"),
  43591. default: true
  43592. },
  43593. {
  43594. name: "Megamacro",
  43595. height: math.unit(256, "miles")
  43596. },
  43597. {
  43598. name: "Gigamacro",
  43599. height: math.unit(4096, "miles")
  43600. },
  43601. ]
  43602. ))
  43603. characterMakers.push(() => makeCharacter(
  43604. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  43605. {
  43606. side: {
  43607. height: math.unit(50, "feet"),
  43608. name: "Side",
  43609. image: {
  43610. source: "./media/characters/froimar/side.svg",
  43611. extra: 855/638,
  43612. bottom: 99/954
  43613. }
  43614. },
  43615. },
  43616. [
  43617. {
  43618. name: "Macro",
  43619. height: math.unit(50, "feet"),
  43620. default: true
  43621. },
  43622. ]
  43623. ))
  43624. characterMakers.push(() => makeCharacter(
  43625. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  43626. {
  43627. front: {
  43628. height: math.unit(210, "miles"),
  43629. name: "Front",
  43630. image: {
  43631. source: "./media/characters/timothy/front.svg",
  43632. extra: 1007/943,
  43633. bottom: 62/1069
  43634. }
  43635. },
  43636. frontSkirt: {
  43637. height: math.unit(210, "miles"),
  43638. name: "Front (Skirt)",
  43639. image: {
  43640. source: "./media/characters/timothy/front-skirt.svg",
  43641. extra: 1007/943,
  43642. bottom: 62/1069
  43643. }
  43644. },
  43645. frontCoat: {
  43646. height: math.unit(210, "miles"),
  43647. name: "Front (Coat)",
  43648. image: {
  43649. source: "./media/characters/timothy/front-coat.svg",
  43650. extra: 1007/943,
  43651. bottom: 62/1069
  43652. }
  43653. },
  43654. },
  43655. [
  43656. {
  43657. name: "Macro",
  43658. height: math.unit(210, "miles"),
  43659. default: true
  43660. },
  43661. {
  43662. name: "Megamacro",
  43663. height: math.unit(210000, "miles")
  43664. },
  43665. ]
  43666. ))
  43667. characterMakers.push(() => makeCharacter(
  43668. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  43669. {
  43670. front: {
  43671. height: math.unit(188, "feet"),
  43672. name: "Front",
  43673. image: {
  43674. source: "./media/characters/pyotr/front.svg",
  43675. extra: 1912/1826,
  43676. bottom: 18/1930
  43677. }
  43678. },
  43679. },
  43680. [
  43681. {
  43682. name: "Macro",
  43683. height: math.unit(188, "feet"),
  43684. default: true
  43685. },
  43686. {
  43687. name: "Megamacro",
  43688. height: math.unit(8, "miles")
  43689. },
  43690. ]
  43691. ))
  43692. characterMakers.push(() => makeCharacter(
  43693. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  43694. {
  43695. side: {
  43696. height: math.unit(10, "feet"),
  43697. weight: math.unit(4500, "lb"),
  43698. name: "Side",
  43699. image: {
  43700. source: "./media/characters/ackart/side.svg",
  43701. extra: 1776/1668,
  43702. bottom: 116/1892
  43703. }
  43704. },
  43705. },
  43706. [
  43707. {
  43708. name: "Normal",
  43709. height: math.unit(10, "feet"),
  43710. default: true
  43711. },
  43712. ]
  43713. ))
  43714. characterMakers.push(() => makeCharacter(
  43715. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  43716. {
  43717. side: {
  43718. height: math.unit(21, "feet"),
  43719. name: "Side",
  43720. image: {
  43721. source: "./media/characters/nolow/side.svg",
  43722. extra: 1484/1434,
  43723. bottom: 85/1569
  43724. }
  43725. },
  43726. sideErect: {
  43727. height: math.unit(21, "feet"),
  43728. name: "Side-erect",
  43729. image: {
  43730. source: "./media/characters/nolow/side-erect.svg",
  43731. extra: 1484/1434,
  43732. bottom: 85/1569
  43733. }
  43734. },
  43735. },
  43736. [
  43737. {
  43738. name: "Regular",
  43739. height: math.unit(12, "feet")
  43740. },
  43741. {
  43742. name: "Big Chee",
  43743. height: math.unit(21, "feet"),
  43744. default: true
  43745. },
  43746. ]
  43747. ))
  43748. characterMakers.push(() => makeCharacter(
  43749. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  43750. {
  43751. front: {
  43752. height: math.unit(7, "feet"),
  43753. weight: math.unit(250, "lb"),
  43754. name: "Front",
  43755. image: {
  43756. source: "./media/characters/nines/front.svg",
  43757. extra: 1741/1607,
  43758. bottom: 41/1782
  43759. }
  43760. },
  43761. side: {
  43762. height: math.unit(7, "feet"),
  43763. weight: math.unit(250, "lb"),
  43764. name: "Side",
  43765. image: {
  43766. source: "./media/characters/nines/side.svg",
  43767. extra: 1854/1735,
  43768. bottom: 93/1947
  43769. }
  43770. },
  43771. back: {
  43772. height: math.unit(7, "feet"),
  43773. weight: math.unit(250, "lb"),
  43774. name: "Back",
  43775. image: {
  43776. source: "./media/characters/nines/back.svg",
  43777. extra: 1748/1615,
  43778. bottom: 20/1768
  43779. }
  43780. },
  43781. },
  43782. [
  43783. {
  43784. name: "Megamacro",
  43785. height: math.unit(99, "km"),
  43786. default: true
  43787. },
  43788. ]
  43789. ))
  43790. characterMakers.push(() => makeCharacter(
  43791. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43792. {
  43793. front: {
  43794. height: math.unit(5 + 10/12, "feet"),
  43795. weight: math.unit(210, "lb"),
  43796. name: "Front",
  43797. image: {
  43798. source: "./media/characters/zenith/front.svg",
  43799. extra: 1531/1452,
  43800. bottom: 198/1729
  43801. }
  43802. },
  43803. back: {
  43804. height: math.unit(5 + 10/12, "feet"),
  43805. weight: math.unit(210, "lb"),
  43806. name: "Back",
  43807. image: {
  43808. source: "./media/characters/zenith/back.svg",
  43809. extra: 1571/1487,
  43810. bottom: 75/1646
  43811. }
  43812. },
  43813. },
  43814. [
  43815. {
  43816. name: "Normal",
  43817. height: math.unit(5 + 10/12, "feet"),
  43818. default: true
  43819. }
  43820. ]
  43821. ))
  43822. characterMakers.push(() => makeCharacter(
  43823. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43824. {
  43825. front: {
  43826. height: math.unit(4, "feet"),
  43827. weight: math.unit(60, "lb"),
  43828. name: "Front",
  43829. image: {
  43830. source: "./media/characters/jasper/front.svg",
  43831. extra: 1450/1379,
  43832. bottom: 19/1469
  43833. }
  43834. },
  43835. },
  43836. [
  43837. {
  43838. name: "Normal",
  43839. height: math.unit(4, "feet"),
  43840. default: true
  43841. },
  43842. ]
  43843. ))
  43844. characterMakers.push(() => makeCharacter(
  43845. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43846. {
  43847. front: {
  43848. height: math.unit(6 + 5/12, "feet"),
  43849. weight: math.unit(290, "lb"),
  43850. name: "Front",
  43851. image: {
  43852. source: "./media/characters/tiberius-thyben/front.svg",
  43853. extra: 757/739,
  43854. bottom: 39/796
  43855. }
  43856. },
  43857. },
  43858. [
  43859. {
  43860. name: "Micro",
  43861. height: math.unit(1.5, "inches")
  43862. },
  43863. {
  43864. name: "Normal",
  43865. height: math.unit(6 + 5/12, "feet"),
  43866. default: true
  43867. },
  43868. {
  43869. name: "Macro",
  43870. height: math.unit(300, "feet")
  43871. },
  43872. ]
  43873. ))
  43874. characterMakers.push(() => makeCharacter(
  43875. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43876. {
  43877. front: {
  43878. height: math.unit(5 + 6/12, "feet"),
  43879. weight: math.unit(60, "kg"),
  43880. name: "Front",
  43881. image: {
  43882. source: "./media/characters/sabre/front.svg",
  43883. extra: 738/671,
  43884. bottom: 27/765
  43885. }
  43886. },
  43887. },
  43888. [
  43889. {
  43890. name: "Teeny",
  43891. height: math.unit(2, "inches")
  43892. },
  43893. {
  43894. name: "Smol",
  43895. height: math.unit(8, "inches")
  43896. },
  43897. {
  43898. name: "Normal",
  43899. height: math.unit(5 + 6/12, "feet"),
  43900. default: true
  43901. },
  43902. {
  43903. name: "Mini-Macro",
  43904. height: math.unit(15, "feet")
  43905. },
  43906. {
  43907. name: "Macro",
  43908. height: math.unit(50, "feet")
  43909. },
  43910. ]
  43911. ))
  43912. characterMakers.push(() => makeCharacter(
  43913. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43914. {
  43915. front: {
  43916. height: math.unit(6 + 4/12, "feet"),
  43917. weight: math.unit(170, "lb"),
  43918. name: "Front",
  43919. image: {
  43920. source: "./media/characters/charlie/front.svg",
  43921. extra: 1348/1228,
  43922. bottom: 15/1363
  43923. }
  43924. },
  43925. },
  43926. [
  43927. {
  43928. name: "Macro",
  43929. height: math.unit(1700, "meters"),
  43930. default: true
  43931. },
  43932. {
  43933. name: "MegaMacro",
  43934. height: math.unit(20400, "meters")
  43935. },
  43936. ]
  43937. ))
  43938. characterMakers.push(() => makeCharacter(
  43939. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43940. {
  43941. front: {
  43942. height: math.unit(1.96, "meters"),
  43943. weight: math.unit(220, "lb"),
  43944. name: "Front",
  43945. image: {
  43946. source: "./media/characters/susan-grant/front.svg",
  43947. extra: 482/478,
  43948. bottom: 7/489
  43949. }
  43950. },
  43951. },
  43952. [
  43953. {
  43954. name: "Normal",
  43955. height: math.unit(1.96, "meters"),
  43956. default: true
  43957. },
  43958. {
  43959. name: "Macro",
  43960. height: math.unit(76.2, "meters")
  43961. },
  43962. {
  43963. name: "MegaMacro",
  43964. height: math.unit(305, "meters")
  43965. },
  43966. {
  43967. name: "GigaMacro",
  43968. height: math.unit(1220, "meters")
  43969. },
  43970. {
  43971. name: "SuperMacro",
  43972. height: math.unit(4878, "meters")
  43973. },
  43974. ]
  43975. ))
  43976. characterMakers.push(() => makeCharacter(
  43977. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43978. {
  43979. front: {
  43980. height: math.unit(5 + 4/12, "feet"),
  43981. weight: math.unit(110, "lb"),
  43982. name: "Front",
  43983. image: {
  43984. source: "./media/characters/axel-isanov/front.svg",
  43985. extra: 1096/1065,
  43986. bottom: 13/1109
  43987. }
  43988. },
  43989. },
  43990. [
  43991. {
  43992. name: "Normal",
  43993. height: math.unit(5 + 4/12, "feet"),
  43994. default: true
  43995. },
  43996. ]
  43997. ))
  43998. characterMakers.push(() => makeCharacter(
  43999. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  44000. {
  44001. front: {
  44002. height: math.unit(9, "feet"),
  44003. weight: math.unit(467, "lb"),
  44004. name: "Front",
  44005. image: {
  44006. source: "./media/characters/necahual/front.svg",
  44007. extra: 920/873,
  44008. bottom: 26/946
  44009. }
  44010. },
  44011. back: {
  44012. height: math.unit(9, "feet"),
  44013. weight: math.unit(467, "lb"),
  44014. name: "Back",
  44015. image: {
  44016. source: "./media/characters/necahual/back.svg",
  44017. extra: 930/884,
  44018. bottom: 16/946
  44019. }
  44020. },
  44021. frontUnderwear: {
  44022. height: math.unit(9, "feet"),
  44023. weight: math.unit(467, "lb"),
  44024. name: "Front (Underwear)",
  44025. image: {
  44026. source: "./media/characters/necahual/front-underwear.svg",
  44027. extra: 920/873,
  44028. bottom: 26/946
  44029. }
  44030. },
  44031. frontDressed: {
  44032. height: math.unit(9, "feet"),
  44033. weight: math.unit(467, "lb"),
  44034. name: "Front (Dressed)",
  44035. image: {
  44036. source: "./media/characters/necahual/front-dressed.svg",
  44037. extra: 920/873,
  44038. bottom: 26/946
  44039. }
  44040. },
  44041. },
  44042. [
  44043. {
  44044. name: "Comprsesed",
  44045. height: math.unit(9, "feet")
  44046. },
  44047. {
  44048. name: "Natural",
  44049. height: math.unit(15, "feet"),
  44050. default: true
  44051. },
  44052. {
  44053. name: "Boosted",
  44054. height: math.unit(50, "feet")
  44055. },
  44056. {
  44057. name: "Boosted+",
  44058. height: math.unit(150, "feet")
  44059. },
  44060. {
  44061. name: "Max",
  44062. height: math.unit(500, "feet")
  44063. },
  44064. ]
  44065. ))
  44066. characterMakers.push(() => makeCharacter(
  44067. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  44068. {
  44069. front: {
  44070. height: math.unit(22 + 1/12, "feet"),
  44071. weight: math.unit(3200, "lb"),
  44072. name: "Front",
  44073. image: {
  44074. source: "./media/characters/theo-acacia/front.svg",
  44075. extra: 1796/1741,
  44076. bottom: 83/1879
  44077. }
  44078. },
  44079. frontUnderwear: {
  44080. height: math.unit(22 + 1/12, "feet"),
  44081. weight: math.unit(3200, "lb"),
  44082. name: "Front (Underwear)",
  44083. image: {
  44084. source: "./media/characters/theo-acacia/front-underwear.svg",
  44085. extra: 1796/1741,
  44086. bottom: 83/1879
  44087. }
  44088. },
  44089. frontNude: {
  44090. height: math.unit(22 + 1/12, "feet"),
  44091. weight: math.unit(3200, "lb"),
  44092. name: "Front (Nude)",
  44093. image: {
  44094. source: "./media/characters/theo-acacia/front-nude.svg",
  44095. extra: 1796/1741,
  44096. bottom: 83/1879
  44097. }
  44098. },
  44099. },
  44100. [
  44101. {
  44102. name: "Normal",
  44103. height: math.unit(22 + 1/12, "feet"),
  44104. default: true
  44105. },
  44106. ]
  44107. ))
  44108. characterMakers.push(() => makeCharacter(
  44109. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44110. {
  44111. front: {
  44112. height: math.unit(20, "feet"),
  44113. name: "Front",
  44114. image: {
  44115. source: "./media/characters/astra/front.svg",
  44116. extra: 1850/1714,
  44117. bottom: 106/1956
  44118. }
  44119. },
  44120. frontUndressed: {
  44121. height: math.unit(20, "feet"),
  44122. name: "Front (Undressed)",
  44123. image: {
  44124. source: "./media/characters/astra/front-undressed.svg",
  44125. extra: 1926/1749,
  44126. bottom: 0/1926
  44127. }
  44128. },
  44129. hand: {
  44130. height: math.unit(1.53, "feet"),
  44131. name: "Hand",
  44132. image: {
  44133. source: "./media/characters/astra/hand.svg"
  44134. }
  44135. },
  44136. paw: {
  44137. height: math.unit(1.53, "feet"),
  44138. name: "Paw",
  44139. image: {
  44140. source: "./media/characters/astra/paw.svg"
  44141. }
  44142. },
  44143. },
  44144. [
  44145. {
  44146. name: "Smallest",
  44147. height: math.unit(20, "feet")
  44148. },
  44149. {
  44150. name: "Normal",
  44151. height: math.unit(1e9, "miles"),
  44152. default: true
  44153. },
  44154. {
  44155. name: "Larger",
  44156. height: math.unit(5, "multiverses")
  44157. },
  44158. {
  44159. name: "Largest",
  44160. height: math.unit(1e9, "multiverses")
  44161. },
  44162. ]
  44163. ))
  44164. characterMakers.push(() => makeCharacter(
  44165. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44166. {
  44167. front: {
  44168. height: math.unit(8, "feet"),
  44169. name: "Front",
  44170. image: {
  44171. source: "./media/characters/breanna/front.svg",
  44172. extra: 1912/1632,
  44173. bottom: 33/1945
  44174. }
  44175. },
  44176. },
  44177. [
  44178. {
  44179. name: "Smallest",
  44180. height: math.unit(8, "feet")
  44181. },
  44182. {
  44183. name: "Normal",
  44184. height: math.unit(1, "mile"),
  44185. default: true
  44186. },
  44187. {
  44188. name: "Maximum",
  44189. height: math.unit(1500000000000, "lightyears")
  44190. },
  44191. ]
  44192. ))
  44193. characterMakers.push(() => makeCharacter(
  44194. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  44195. {
  44196. front: {
  44197. height: math.unit(5 + 11/12, "feet"),
  44198. weight: math.unit(155, "lb"),
  44199. name: "Front",
  44200. image: {
  44201. source: "./media/characters/cai/front.svg",
  44202. extra: 1823/1702,
  44203. bottom: 32/1855
  44204. }
  44205. },
  44206. back: {
  44207. height: math.unit(5 + 11/12, "feet"),
  44208. weight: math.unit(155, "lb"),
  44209. name: "Back",
  44210. image: {
  44211. source: "./media/characters/cai/back.svg",
  44212. extra: 1809/1708,
  44213. bottom: 31/1840
  44214. }
  44215. },
  44216. },
  44217. [
  44218. {
  44219. name: "Normal",
  44220. height: math.unit(5 + 11/12, "feet"),
  44221. default: true
  44222. },
  44223. {
  44224. name: "Big",
  44225. height: math.unit(15, "feet")
  44226. },
  44227. {
  44228. name: "Macro",
  44229. height: math.unit(200, "feet")
  44230. },
  44231. ]
  44232. ))
  44233. characterMakers.push(() => makeCharacter(
  44234. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  44235. {
  44236. front: {
  44237. height: math.unit(5 + 6/12, "feet"),
  44238. weight: math.unit(160, "lb"),
  44239. name: "Front",
  44240. image: {
  44241. source: "./media/characters/zanna-virtuedòttir/front.svg",
  44242. extra: 1227/1174,
  44243. bottom: 37/1264
  44244. }
  44245. },
  44246. },
  44247. [
  44248. {
  44249. name: "Macro",
  44250. height: math.unit(444, "meters"),
  44251. default: true
  44252. },
  44253. ]
  44254. ))
  44255. characterMakers.push(() => makeCharacter(
  44256. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  44257. {
  44258. front: {
  44259. height: math.unit(18 + 7/12, "feet"),
  44260. name: "Front",
  44261. image: {
  44262. source: "./media/characters/rex/front.svg",
  44263. extra: 1941/1807,
  44264. bottom: 66/2007
  44265. }
  44266. },
  44267. back: {
  44268. height: math.unit(18 + 7/12, "feet"),
  44269. name: "Back",
  44270. image: {
  44271. source: "./media/characters/rex/back.svg",
  44272. extra: 1937/1822,
  44273. bottom: 42/1979
  44274. }
  44275. },
  44276. boot: {
  44277. height: math.unit(3.45, "feet"),
  44278. name: "Boot",
  44279. image: {
  44280. source: "./media/characters/rex/boot.svg"
  44281. }
  44282. },
  44283. paw: {
  44284. height: math.unit(4.17, "feet"),
  44285. name: "Paw",
  44286. image: {
  44287. source: "./media/characters/rex/paw.svg"
  44288. }
  44289. },
  44290. head: {
  44291. height: math.unit(6.728, "feet"),
  44292. name: "Head",
  44293. image: {
  44294. source: "./media/characters/rex/head.svg"
  44295. }
  44296. },
  44297. },
  44298. [
  44299. {
  44300. name: "Nano",
  44301. height: math.unit(18 + 7/12, "feet")
  44302. },
  44303. {
  44304. name: "Micro",
  44305. height: math.unit(1.5, "megameters")
  44306. },
  44307. {
  44308. name: "Normal",
  44309. height: math.unit(440, "megameters"),
  44310. default: true
  44311. },
  44312. {
  44313. name: "Macro",
  44314. height: math.unit(2.5, "gigameters")
  44315. },
  44316. {
  44317. name: "Gigamacro",
  44318. height: math.unit(2, "galaxies")
  44319. },
  44320. ]
  44321. ))
  44322. characterMakers.push(() => makeCharacter(
  44323. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  44324. {
  44325. side: {
  44326. height: math.unit(32, "feet"),
  44327. weight: math.unit(250000, "lb"),
  44328. name: "Side",
  44329. image: {
  44330. source: "./media/characters/silverwing/side.svg",
  44331. extra: 1100/1019,
  44332. bottom: 204/1304
  44333. }
  44334. },
  44335. },
  44336. [
  44337. {
  44338. name: "Normal",
  44339. height: math.unit(32, "feet"),
  44340. default: true
  44341. },
  44342. ]
  44343. ))
  44344. characterMakers.push(() => makeCharacter(
  44345. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  44346. {
  44347. front: {
  44348. height: math.unit(6 + 6/12, "feet"),
  44349. weight: math.unit(350, "lb"),
  44350. name: "Front",
  44351. image: {
  44352. source: "./media/characters/tristan-hawthorne/front.svg",
  44353. extra: 1159/1124,
  44354. bottom: 37/1196
  44355. },
  44356. form: "labrador",
  44357. default: true
  44358. },
  44359. skunkFront: {
  44360. height: math.unit(4 + 6/12, "feet"),
  44361. weight: math.unit(120, "lb"),
  44362. name: "Front",
  44363. image: {
  44364. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  44365. extra: 1609/1551,
  44366. bottom: 169/1778
  44367. },
  44368. form: "skunk",
  44369. default: true
  44370. },
  44371. },
  44372. [
  44373. {
  44374. name: "Normal",
  44375. height: math.unit(6 + 6/12, "feet"),
  44376. form: "labrador",
  44377. default: true
  44378. },
  44379. {
  44380. name: "Normal",
  44381. height: math.unit(4 + 6/12, "feet"),
  44382. form: "skunk",
  44383. default: true
  44384. },
  44385. ],
  44386. {
  44387. "labrador": {
  44388. name: "Labrador",
  44389. default: true
  44390. },
  44391. "skunk": {
  44392. name: "Skunk"
  44393. }
  44394. }
  44395. ))
  44396. characterMakers.push(() => makeCharacter(
  44397. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  44398. {
  44399. front: {
  44400. height: math.unit(5 + 11/12, "feet"),
  44401. weight: math.unit(190, "lb"),
  44402. name: "Front",
  44403. image: {
  44404. source: "./media/characters/mizu/front.svg",
  44405. extra: 1988/1788,
  44406. bottom: 14/2002
  44407. }
  44408. },
  44409. },
  44410. [
  44411. {
  44412. name: "Normal",
  44413. height: math.unit(5 + 11/12, "feet"),
  44414. default: true
  44415. },
  44416. ]
  44417. ))
  44418. characterMakers.push(() => makeCharacter(
  44419. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  44420. {
  44421. front: {
  44422. height: math.unit(1.7, "feet"),
  44423. weight: math.unit(50, "lb"),
  44424. name: "Front",
  44425. image: {
  44426. source: "./media/characters/dechroma/front.svg",
  44427. extra: 1095/859,
  44428. bottom: 64/1159
  44429. }
  44430. },
  44431. },
  44432. [
  44433. {
  44434. name: "Normal",
  44435. height: math.unit(1.7, "feet"),
  44436. default: true
  44437. },
  44438. ]
  44439. ))
  44440. characterMakers.push(() => makeCharacter(
  44441. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  44442. {
  44443. side: {
  44444. height: math.unit(30, "feet"),
  44445. name: "Side",
  44446. image: {
  44447. source: "./media/characters/veluren-thanazel/side.svg",
  44448. extra: 1611/633,
  44449. bottom: 118/1729
  44450. }
  44451. },
  44452. front: {
  44453. height: math.unit(30, "feet"),
  44454. name: "Front",
  44455. image: {
  44456. source: "./media/characters/veluren-thanazel/front.svg",
  44457. extra: 1486/636,
  44458. bottom: 238/1724
  44459. }
  44460. },
  44461. head: {
  44462. height: math.unit(21.4, "feet"),
  44463. name: "Head",
  44464. image: {
  44465. source: "./media/characters/veluren-thanazel/head.svg"
  44466. }
  44467. },
  44468. genitals: {
  44469. height: math.unit(19.4, "feet"),
  44470. name: "Genitals",
  44471. image: {
  44472. source: "./media/characters/veluren-thanazel/genitals.svg"
  44473. }
  44474. },
  44475. },
  44476. [
  44477. {
  44478. name: "Social",
  44479. height: math.unit(6, "feet")
  44480. },
  44481. {
  44482. name: "Play",
  44483. height: math.unit(12, "feet")
  44484. },
  44485. {
  44486. name: "True",
  44487. height: math.unit(30, "feet"),
  44488. default: true
  44489. },
  44490. ]
  44491. ))
  44492. characterMakers.push(() => makeCharacter(
  44493. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  44494. {
  44495. front: {
  44496. height: math.unit(7 + 6/12, "feet"),
  44497. weight: math.unit(500, "kg"),
  44498. name: "Front",
  44499. image: {
  44500. source: "./media/characters/arcturas/front.svg",
  44501. extra: 1700/1500,
  44502. bottom: 145/1845
  44503. }
  44504. },
  44505. },
  44506. [
  44507. {
  44508. name: "Normal",
  44509. height: math.unit(7 + 6/12, "feet"),
  44510. default: true
  44511. },
  44512. ]
  44513. ))
  44514. characterMakers.push(() => makeCharacter(
  44515. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  44516. {
  44517. side: {
  44518. height: math.unit(6, "feet"),
  44519. weight: math.unit(2, "tons"),
  44520. name: "Side",
  44521. image: {
  44522. source: "./media/characters/vitaen/side.svg",
  44523. extra: 1157/617,
  44524. bottom: 122/1279
  44525. }
  44526. },
  44527. },
  44528. [
  44529. {
  44530. name: "Normal",
  44531. height: math.unit(6, "feet"),
  44532. default: true
  44533. },
  44534. ]
  44535. ))
  44536. characterMakers.push(() => makeCharacter(
  44537. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  44538. {
  44539. front: {
  44540. height: math.unit(19, "feet"),
  44541. name: "Front",
  44542. image: {
  44543. source: "./media/characters/fia-dreamweaver/front.svg",
  44544. extra: 1630/1504,
  44545. bottom: 25/1655
  44546. }
  44547. },
  44548. },
  44549. [
  44550. {
  44551. name: "Normal",
  44552. height: math.unit(19, "feet"),
  44553. default: true
  44554. },
  44555. ]
  44556. ))
  44557. characterMakers.push(() => makeCharacter(
  44558. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  44559. {
  44560. front: {
  44561. height: math.unit(5 + 4/12, "feet"),
  44562. name: "Front",
  44563. image: {
  44564. source: "./media/characters/artan/front.svg",
  44565. extra: 1618/1535,
  44566. bottom: 46/1664
  44567. }
  44568. },
  44569. back: {
  44570. height: math.unit(5 + 4/12, "feet"),
  44571. name: "Back",
  44572. image: {
  44573. source: "./media/characters/artan/back.svg",
  44574. extra: 1618/1543,
  44575. bottom: 31/1649
  44576. }
  44577. },
  44578. },
  44579. [
  44580. {
  44581. name: "Normal",
  44582. height: math.unit(5 + 4/12, "feet"),
  44583. default: true
  44584. },
  44585. ]
  44586. ))
  44587. characterMakers.push(() => makeCharacter(
  44588. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  44589. {
  44590. side: {
  44591. height: math.unit(182, "cm"),
  44592. weight: math.unit(1000, "lb"),
  44593. name: "Side",
  44594. image: {
  44595. source: "./media/characters/silver-dragon/side.svg",
  44596. extra: 710/287,
  44597. bottom: 88/798
  44598. }
  44599. },
  44600. },
  44601. [
  44602. {
  44603. name: "Normal",
  44604. height: math.unit(182, "cm"),
  44605. default: true
  44606. },
  44607. ]
  44608. ))
  44609. characterMakers.push(() => makeCharacter(
  44610. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  44611. {
  44612. side: {
  44613. height: math.unit(6 + 6/12, "feet"),
  44614. weight: math.unit(1.5, "tons"),
  44615. name: "Side",
  44616. image: {
  44617. source: "./media/characters/zephyr/side.svg",
  44618. extra: 1433/586,
  44619. bottom: 109/1542
  44620. }
  44621. },
  44622. },
  44623. [
  44624. {
  44625. name: "Normal",
  44626. height: math.unit(6 + 6/12, "feet"),
  44627. default: true
  44628. },
  44629. ]
  44630. ))
  44631. characterMakers.push(() => makeCharacter(
  44632. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  44633. {
  44634. side: {
  44635. height: math.unit(1, "feet"),
  44636. name: "Side",
  44637. image: {
  44638. source: "./media/characters/vixye/side.svg",
  44639. extra: 632/541,
  44640. bottom: 0/632
  44641. }
  44642. },
  44643. },
  44644. [
  44645. {
  44646. name: "Normal",
  44647. height: math.unit(1, "feet"),
  44648. default: true
  44649. },
  44650. {
  44651. name: "True",
  44652. height: math.unit(1e15, "multiverses")
  44653. },
  44654. ]
  44655. ))
  44656. characterMakers.push(() => makeCharacter(
  44657. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  44658. {
  44659. front: {
  44660. height: math.unit(8 + 2/12, "feet"),
  44661. weight: math.unit(650, "lb"),
  44662. name: "Front",
  44663. image: {
  44664. source: "./media/characters/darla-mac-lochlainn/front.svg",
  44665. extra: 1174/1137,
  44666. bottom: 82/1256
  44667. }
  44668. },
  44669. back: {
  44670. height: math.unit(8 + 2/12, "feet"),
  44671. weight: math.unit(650, "lb"),
  44672. name: "Back",
  44673. image: {
  44674. source: "./media/characters/darla-mac-lochlainn/back.svg",
  44675. extra: 1204/1157,
  44676. bottom: 46/1250
  44677. }
  44678. },
  44679. },
  44680. [
  44681. {
  44682. name: "Wildform",
  44683. height: math.unit(8 + 2/12, "feet"),
  44684. default: true
  44685. },
  44686. ]
  44687. ))
  44688. characterMakers.push(() => makeCharacter(
  44689. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  44690. {
  44691. front: {
  44692. height: math.unit(18, "feet"),
  44693. name: "Front",
  44694. image: {
  44695. source: "./media/characters/cyphin/front.svg",
  44696. extra: 970/886,
  44697. bottom: 42/1012
  44698. }
  44699. },
  44700. back: {
  44701. height: math.unit(18, "feet"),
  44702. name: "Back",
  44703. image: {
  44704. source: "./media/characters/cyphin/back.svg",
  44705. extra: 1009/894,
  44706. bottom: 24/1033
  44707. }
  44708. },
  44709. head: {
  44710. height: math.unit(5.05, "feet"),
  44711. name: "Head",
  44712. image: {
  44713. source: "./media/characters/cyphin/head.svg"
  44714. }
  44715. },
  44716. tailbud: {
  44717. height: math.unit(5, "feet"),
  44718. name: "Tailbud",
  44719. image: {
  44720. source: "./media/characters/cyphin/tailbud.svg"
  44721. }
  44722. },
  44723. },
  44724. [
  44725. ]
  44726. ))
  44727. characterMakers.push(() => makeCharacter(
  44728. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  44729. {
  44730. side: {
  44731. height: math.unit(10, "feet"),
  44732. weight: math.unit(6, "tons"),
  44733. name: "Side",
  44734. image: {
  44735. source: "./media/characters/raijin/side.svg",
  44736. extra: 1529/613,
  44737. bottom: 337/1866
  44738. }
  44739. },
  44740. },
  44741. [
  44742. {
  44743. name: "Normal",
  44744. height: math.unit(10, "feet"),
  44745. default: true
  44746. },
  44747. ]
  44748. ))
  44749. characterMakers.push(() => makeCharacter(
  44750. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  44751. {
  44752. side: {
  44753. height: math.unit(9, "feet"),
  44754. name: "Side",
  44755. image: {
  44756. source: "./media/characters/nilghais/side.svg",
  44757. extra: 1047/744,
  44758. bottom: 91/1138
  44759. }
  44760. },
  44761. head: {
  44762. height: math.unit(3.14, "feet"),
  44763. name: "Head",
  44764. image: {
  44765. source: "./media/characters/nilghais/head.svg"
  44766. }
  44767. },
  44768. mouth: {
  44769. height: math.unit(4.6, "feet"),
  44770. name: "Mouth",
  44771. image: {
  44772. source: "./media/characters/nilghais/mouth.svg"
  44773. }
  44774. },
  44775. wings: {
  44776. height: math.unit(24, "feet"),
  44777. name: "Wings",
  44778. image: {
  44779. source: "./media/characters/nilghais/wings.svg"
  44780. }
  44781. },
  44782. ass: {
  44783. height: math.unit(6.12, "feet"),
  44784. name: "Ass",
  44785. image: {
  44786. source: "./media/characters/nilghais/ass.svg"
  44787. }
  44788. },
  44789. },
  44790. [
  44791. {
  44792. name: "Normal",
  44793. height: math.unit(9, "feet"),
  44794. default: true
  44795. },
  44796. ]
  44797. ))
  44798. characterMakers.push(() => makeCharacter(
  44799. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44800. {
  44801. regular: {
  44802. height: math.unit(16 + 2/12, "feet"),
  44803. weight: math.unit(2300, "lb"),
  44804. name: "Regular",
  44805. image: {
  44806. source: "./media/characters/zolgar/regular.svg",
  44807. extra: 1246/1004,
  44808. bottom: 124/1370
  44809. }
  44810. },
  44811. boxers: {
  44812. height: math.unit(16 + 2/12, "feet"),
  44813. weight: math.unit(2300, "lb"),
  44814. name: "Boxers",
  44815. image: {
  44816. source: "./media/characters/zolgar/boxers.svg",
  44817. extra: 1246/1004,
  44818. bottom: 124/1370
  44819. }
  44820. },
  44821. armored: {
  44822. height: math.unit(16 + 2/12, "feet"),
  44823. weight: math.unit(2300, "lb"),
  44824. name: "Armored",
  44825. image: {
  44826. source: "./media/characters/zolgar/armored.svg",
  44827. extra: 1246/1004,
  44828. bottom: 124/1370
  44829. }
  44830. },
  44831. goth: {
  44832. height: math.unit(16 + 2/12, "feet"),
  44833. weight: math.unit(2300, "lb"),
  44834. name: "Goth",
  44835. image: {
  44836. source: "./media/characters/zolgar/goth.svg",
  44837. extra: 1246/1004,
  44838. bottom: 124/1370
  44839. }
  44840. },
  44841. },
  44842. [
  44843. {
  44844. name: "Shrunken Down",
  44845. height: math.unit(9 + 2/12, "feet")
  44846. },
  44847. {
  44848. name: "Normal",
  44849. height: math.unit(16 + 2/12, "feet"),
  44850. default: true
  44851. },
  44852. ]
  44853. ))
  44854. characterMakers.push(() => makeCharacter(
  44855. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44856. {
  44857. front: {
  44858. height: math.unit(6, "feet"),
  44859. weight: math.unit(168, "lb"),
  44860. name: "Front",
  44861. image: {
  44862. source: "./media/characters/luca/front.svg",
  44863. extra: 841/667,
  44864. bottom: 102/943
  44865. }
  44866. },
  44867. },
  44868. [
  44869. {
  44870. name: "Normal",
  44871. height: math.unit(6, "feet"),
  44872. default: true
  44873. },
  44874. ]
  44875. ))
  44876. characterMakers.push(() => makeCharacter(
  44877. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44878. {
  44879. side: {
  44880. height: math.unit(7 + 3/12, "feet"),
  44881. weight: math.unit(312, "lb"),
  44882. name: "Side",
  44883. image: {
  44884. source: "./media/characters/zezo/side.svg",
  44885. extra: 1192/1067,
  44886. bottom: 63/1255
  44887. }
  44888. },
  44889. },
  44890. [
  44891. {
  44892. name: "Normal",
  44893. height: math.unit(7 + 3/12, "feet"),
  44894. default: true
  44895. },
  44896. ]
  44897. ))
  44898. characterMakers.push(() => makeCharacter(
  44899. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44900. {
  44901. front: {
  44902. height: math.unit(5 + 5/12, "feet"),
  44903. weight: math.unit(170, "lb"),
  44904. name: "Front",
  44905. image: {
  44906. source: "./media/characters/mayso/front.svg",
  44907. extra: 1215/1108,
  44908. bottom: 16/1231
  44909. }
  44910. },
  44911. },
  44912. [
  44913. {
  44914. name: "Normal",
  44915. height: math.unit(5 + 5/12, "feet"),
  44916. default: true
  44917. },
  44918. ]
  44919. ))
  44920. characterMakers.push(() => makeCharacter(
  44921. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44922. {
  44923. front: {
  44924. height: math.unit(4 + 3/12, "feet"),
  44925. weight: math.unit(80, "lb"),
  44926. name: "Front",
  44927. image: {
  44928. source: "./media/characters/hess/front.svg",
  44929. extra: 1200/1123,
  44930. bottom: 16/1216
  44931. }
  44932. },
  44933. },
  44934. [
  44935. {
  44936. name: "Normal",
  44937. height: math.unit(4 + 3/12, "feet"),
  44938. default: true
  44939. },
  44940. ]
  44941. ))
  44942. characterMakers.push(() => makeCharacter(
  44943. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44944. {
  44945. front: {
  44946. height: math.unit(1.9, "meters"),
  44947. name: "Front",
  44948. image: {
  44949. source: "./media/characters/ashgar/front.svg",
  44950. extra: 1177/1146,
  44951. bottom: 99/1276
  44952. }
  44953. },
  44954. back: {
  44955. height: math.unit(1.9, "meters"),
  44956. name: "Back",
  44957. image: {
  44958. source: "./media/characters/ashgar/back.svg",
  44959. extra: 1201/1183,
  44960. bottom: 53/1254
  44961. }
  44962. },
  44963. feral: {
  44964. height: math.unit(1.4, "meters"),
  44965. name: "Feral",
  44966. image: {
  44967. source: "./media/characters/ashgar/feral.svg",
  44968. extra: 370/345,
  44969. bottom: 45/415
  44970. }
  44971. },
  44972. },
  44973. [
  44974. {
  44975. name: "Normal",
  44976. height: math.unit(1.9, "meters"),
  44977. default: true
  44978. },
  44979. ]
  44980. ))
  44981. characterMakers.push(() => makeCharacter(
  44982. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44983. {
  44984. regular: {
  44985. height: math.unit(6, "feet"),
  44986. weight: math.unit(220, "lb"),
  44987. name: "Regular",
  44988. image: {
  44989. source: "./media/characters/phillip/regular.svg",
  44990. extra: 1373/1277,
  44991. bottom: 75/1448
  44992. }
  44993. },
  44994. dressed: {
  44995. height: math.unit(6, "feet"),
  44996. weight: math.unit(220, "lb"),
  44997. name: "Dressed",
  44998. image: {
  44999. source: "./media/characters/phillip/dressed.svg",
  45000. extra: 1373/1277,
  45001. bottom: 75/1448
  45002. }
  45003. },
  45004. paw: {
  45005. height: math.unit(1.44, "feet"),
  45006. name: "Paw",
  45007. image: {
  45008. source: "./media/characters/phillip/paw.svg"
  45009. }
  45010. },
  45011. },
  45012. [
  45013. {
  45014. name: "Normal",
  45015. height: math.unit(6, "feet"),
  45016. default: true
  45017. },
  45018. ]
  45019. ))
  45020. characterMakers.push(() => makeCharacter(
  45021. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  45022. {
  45023. side: {
  45024. height: math.unit(42, "feet"),
  45025. name: "Side",
  45026. image: {
  45027. source: "./media/characters/uvula/side.svg",
  45028. extra: 683/586,
  45029. bottom: 60/743
  45030. }
  45031. },
  45032. front: {
  45033. height: math.unit(42, "feet"),
  45034. name: "Front",
  45035. image: {
  45036. source: "./media/characters/uvula/front.svg",
  45037. extra: 705/613,
  45038. bottom: 54/759
  45039. }
  45040. },
  45041. maw: {
  45042. height: math.unit(23.5, "feet"),
  45043. name: "Maw",
  45044. image: {
  45045. source: "./media/characters/uvula/maw.svg"
  45046. }
  45047. },
  45048. },
  45049. [
  45050. {
  45051. name: "Original Size",
  45052. height: math.unit(14, "inches")
  45053. },
  45054. {
  45055. name: "Human Size",
  45056. height: math.unit(6, "feet")
  45057. },
  45058. {
  45059. name: "Big",
  45060. height: math.unit(42, "feet"),
  45061. default: true
  45062. },
  45063. {
  45064. name: "Bigger",
  45065. height: math.unit(100, "feet")
  45066. },
  45067. ]
  45068. ))
  45069. characterMakers.push(() => makeCharacter(
  45070. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  45071. {
  45072. front: {
  45073. height: math.unit(5 + 11/12, "feet"),
  45074. name: "Front",
  45075. image: {
  45076. source: "./media/characters/lannah/front.svg",
  45077. extra: 1208/1113,
  45078. bottom: 97/1305
  45079. }
  45080. },
  45081. },
  45082. [
  45083. {
  45084. name: "Normal",
  45085. height: math.unit(5 + 11/12, "feet"),
  45086. default: true
  45087. },
  45088. ]
  45089. ))
  45090. characterMakers.push(() => makeCharacter(
  45091. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  45092. {
  45093. front: {
  45094. height: math.unit(6 + 3/12, "feet"),
  45095. weight: math.unit(3.5, "tons"),
  45096. name: "Front",
  45097. image: {
  45098. source: "./media/characters/emberflame/front.svg",
  45099. extra: 1198/672,
  45100. bottom: 82/1280
  45101. }
  45102. },
  45103. side: {
  45104. height: math.unit(6 + 3/12, "feet"),
  45105. weight: math.unit(3.5, "tons"),
  45106. name: "Side",
  45107. image: {
  45108. source: "./media/characters/emberflame/side.svg",
  45109. extra: 938/527,
  45110. bottom: 56/994
  45111. }
  45112. },
  45113. },
  45114. [
  45115. {
  45116. name: "Normal",
  45117. height: math.unit(6 + 3/12, "feet"),
  45118. default: true
  45119. },
  45120. ]
  45121. ))
  45122. characterMakers.push(() => makeCharacter(
  45123. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  45124. {
  45125. side: {
  45126. height: math.unit(17.5, "feet"),
  45127. weight: math.unit(35, "tons"),
  45128. name: "Side",
  45129. image: {
  45130. source: "./media/characters/sophie-ambrose/side.svg",
  45131. extra: 1573/1242,
  45132. bottom: 71/1644
  45133. }
  45134. },
  45135. maw: {
  45136. height: math.unit(7.4, "feet"),
  45137. name: "Maw",
  45138. image: {
  45139. source: "./media/characters/sophie-ambrose/maw.svg"
  45140. }
  45141. },
  45142. },
  45143. [
  45144. {
  45145. name: "Normal",
  45146. height: math.unit(17.5, "feet"),
  45147. default: true
  45148. },
  45149. ]
  45150. ))
  45151. characterMakers.push(() => makeCharacter(
  45152. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  45153. {
  45154. front: {
  45155. height: math.unit(280, "feet"),
  45156. weight: math.unit(550, "tons"),
  45157. name: "Front",
  45158. image: {
  45159. source: "./media/characters/king-mugi/front.svg",
  45160. extra: 1102/947,
  45161. bottom: 104/1206
  45162. }
  45163. },
  45164. },
  45165. [
  45166. {
  45167. name: "King Mugi",
  45168. height: math.unit(280, "feet"),
  45169. default: true
  45170. },
  45171. ]
  45172. ))
  45173. characterMakers.push(() => makeCharacter(
  45174. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  45175. {
  45176. front: {
  45177. height: math.unit(64, "meters"),
  45178. name: "Front",
  45179. image: {
  45180. source: "./media/characters/nova-fox/front.svg",
  45181. extra: 1310/1246,
  45182. bottom: 65/1375
  45183. }
  45184. },
  45185. },
  45186. [
  45187. {
  45188. name: "Macro",
  45189. height: math.unit(64, "meters"),
  45190. default: true
  45191. },
  45192. ]
  45193. ))
  45194. characterMakers.push(() => makeCharacter(
  45195. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  45196. {
  45197. front: {
  45198. height: math.unit(6 + 3/12, "feet"),
  45199. weight: math.unit(170, "lb"),
  45200. name: "Front",
  45201. image: {
  45202. source: "./media/characters/sam-bat/front.svg",
  45203. extra: 1601/1411,
  45204. bottom: 125/1726
  45205. }
  45206. },
  45207. back: {
  45208. height: math.unit(6 + 3/12, "feet"),
  45209. weight: math.unit(170, "lb"),
  45210. name: "Back",
  45211. image: {
  45212. source: "./media/characters/sam-bat/back.svg",
  45213. extra: 1577/1405,
  45214. bottom: 58/1635
  45215. }
  45216. },
  45217. },
  45218. [
  45219. {
  45220. name: "Normal",
  45221. height: math.unit(6 + 3/12, "feet"),
  45222. default: true
  45223. },
  45224. ]
  45225. ))
  45226. characterMakers.push(() => makeCharacter(
  45227. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  45228. {
  45229. front: {
  45230. height: math.unit(59, "feet"),
  45231. weight: math.unit(40000, "lb"),
  45232. name: "Front",
  45233. image: {
  45234. source: "./media/characters/inari/front.svg",
  45235. extra: 1884/1350,
  45236. bottom: 95/1979
  45237. }
  45238. },
  45239. },
  45240. [
  45241. {
  45242. name: "Gigantamax",
  45243. height: math.unit(59, "feet"),
  45244. default: true
  45245. },
  45246. ]
  45247. ))
  45248. characterMakers.push(() => makeCharacter(
  45249. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  45250. {
  45251. front: {
  45252. height: math.unit(5 + 8/12, "feet"),
  45253. name: "Front",
  45254. image: {
  45255. source: "./media/characters/elizabeth/front.svg",
  45256. extra: 1395/1298,
  45257. bottom: 54/1449
  45258. }
  45259. },
  45260. mouth: {
  45261. height: math.unit(1.97, "feet"),
  45262. name: "Mouth",
  45263. image: {
  45264. source: "./media/characters/elizabeth/mouth.svg"
  45265. }
  45266. },
  45267. foot: {
  45268. height: math.unit(1.17, "feet"),
  45269. name: "Foot",
  45270. image: {
  45271. source: "./media/characters/elizabeth/foot.svg"
  45272. }
  45273. },
  45274. },
  45275. [
  45276. {
  45277. name: "Normal",
  45278. height: math.unit(5 + 8/12, "feet"),
  45279. default: true
  45280. },
  45281. {
  45282. name: "Minimacro",
  45283. height: math.unit(18, "feet")
  45284. },
  45285. {
  45286. name: "Macro",
  45287. height: math.unit(180, "feet")
  45288. },
  45289. ]
  45290. ))
  45291. characterMakers.push(() => makeCharacter(
  45292. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  45293. {
  45294. front: {
  45295. height: math.unit(5 + 2/12, "feet"),
  45296. name: "Front",
  45297. image: {
  45298. source: "./media/characters/october-gossamer/front.svg",
  45299. extra: 505/454,
  45300. bottom: 7/512
  45301. }
  45302. },
  45303. back: {
  45304. height: math.unit(5 + 2/12, "feet"),
  45305. name: "Back",
  45306. image: {
  45307. source: "./media/characters/october-gossamer/back.svg",
  45308. extra: 501/454,
  45309. bottom: 11/512
  45310. }
  45311. },
  45312. },
  45313. [
  45314. {
  45315. name: "Normal",
  45316. height: math.unit(5 + 2/12, "feet"),
  45317. default: true
  45318. },
  45319. ]
  45320. ))
  45321. characterMakers.push(() => makeCharacter(
  45322. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  45323. {
  45324. front: {
  45325. height: math.unit(5, "feet"),
  45326. name: "Front",
  45327. image: {
  45328. source: "./media/characters/epiglottis/front.svg",
  45329. extra: 923/849,
  45330. bottom: 17/940
  45331. }
  45332. },
  45333. },
  45334. [
  45335. {
  45336. name: "Original Size",
  45337. height: math.unit(10, "inches")
  45338. },
  45339. {
  45340. name: "Human Size",
  45341. height: math.unit(5, "feet"),
  45342. default: true
  45343. },
  45344. {
  45345. name: "Big",
  45346. height: math.unit(25, "feet")
  45347. },
  45348. {
  45349. name: "Bigger",
  45350. height: math.unit(50, "feet")
  45351. },
  45352. {
  45353. name: "oh lawd",
  45354. height: math.unit(75, "feet")
  45355. },
  45356. ]
  45357. ))
  45358. characterMakers.push(() => makeCharacter(
  45359. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  45360. {
  45361. front: {
  45362. height: math.unit(2 + 4/12, "feet"),
  45363. weight: math.unit(60, "lb"),
  45364. name: "Front",
  45365. image: {
  45366. source: "./media/characters/lerm/front.svg",
  45367. extra: 796/790,
  45368. bottom: 79/875
  45369. }
  45370. },
  45371. },
  45372. [
  45373. {
  45374. name: "Normal",
  45375. height: math.unit(2 + 4/12, "feet"),
  45376. default: true
  45377. },
  45378. ]
  45379. ))
  45380. characterMakers.push(() => makeCharacter(
  45381. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  45382. {
  45383. front: {
  45384. height: math.unit(5.5, "feet"),
  45385. weight: math.unit(130, "lb"),
  45386. name: "Front",
  45387. image: {
  45388. source: "./media/characters/xena-nebadon/front.svg",
  45389. extra: 1828/1730,
  45390. bottom: 79/1907
  45391. }
  45392. },
  45393. },
  45394. [
  45395. {
  45396. name: "Tiny Puppy",
  45397. height: math.unit(3, "inches")
  45398. },
  45399. {
  45400. name: "Normal",
  45401. height: math.unit(5.5, "feet"),
  45402. default: true
  45403. },
  45404. {
  45405. name: "Lotta Lady",
  45406. height: math.unit(12, "feet")
  45407. },
  45408. {
  45409. name: "Pretty Big",
  45410. height: math.unit(100, "feet")
  45411. },
  45412. {
  45413. name: "Big",
  45414. height: math.unit(500, "feet")
  45415. },
  45416. {
  45417. name: "Skyscraper Toys",
  45418. height: math.unit(2500, "feet")
  45419. },
  45420. {
  45421. name: "Plane Catcher",
  45422. height: math.unit(8, "miles")
  45423. },
  45424. {
  45425. name: "Planet Toys",
  45426. height: math.unit(15, "earths")
  45427. },
  45428. {
  45429. name: "Stardust",
  45430. height: math.unit(0.25, "galaxies")
  45431. },
  45432. {
  45433. name: "Snacks",
  45434. height: math.unit(70, "universes")
  45435. },
  45436. ]
  45437. ))
  45438. characterMakers.push(() => makeCharacter(
  45439. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  45440. {
  45441. front: {
  45442. height: math.unit(1.6, "meters"),
  45443. weight: math.unit(60, "kg"),
  45444. name: "Front",
  45445. image: {
  45446. source: "./media/characters/bounty/front.svg",
  45447. extra: 1426/1308,
  45448. bottom: 15/1441
  45449. }
  45450. },
  45451. back: {
  45452. height: math.unit(1.6, "meters"),
  45453. weight: math.unit(60, "kg"),
  45454. name: "Back",
  45455. image: {
  45456. source: "./media/characters/bounty/back.svg",
  45457. extra: 1417/1307,
  45458. bottom: 8/1425
  45459. }
  45460. },
  45461. },
  45462. [
  45463. {
  45464. name: "Normal",
  45465. height: math.unit(1.6, "meters"),
  45466. default: true
  45467. },
  45468. {
  45469. name: "Macro",
  45470. height: math.unit(300, "meters")
  45471. },
  45472. ]
  45473. ))
  45474. characterMakers.push(() => makeCharacter(
  45475. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  45476. {
  45477. front: {
  45478. height: math.unit(2 + 8/12, "feet"),
  45479. weight: math.unit(15, "lb"),
  45480. name: "Front",
  45481. image: {
  45482. source: "./media/characters/mochi/front.svg",
  45483. extra: 1022/852,
  45484. bottom: 435/1457
  45485. }
  45486. },
  45487. back: {
  45488. height: math.unit(2 + 8/12, "feet"),
  45489. weight: math.unit(15, "lb"),
  45490. name: "Back",
  45491. image: {
  45492. source: "./media/characters/mochi/back.svg",
  45493. extra: 1335/1119,
  45494. bottom: 39/1374
  45495. }
  45496. },
  45497. bird: {
  45498. height: math.unit(2 + 8/12, "feet"),
  45499. weight: math.unit(15, "lb"),
  45500. name: "Bird",
  45501. image: {
  45502. source: "./media/characters/mochi/bird.svg",
  45503. extra: 1251/1113,
  45504. bottom: 178/1429
  45505. }
  45506. },
  45507. kaiju: {
  45508. height: math.unit(154, "feet"),
  45509. weight: math.unit(1e7, "lb"),
  45510. name: "Kaiju",
  45511. image: {
  45512. source: "./media/characters/mochi/kaiju.svg",
  45513. extra: 460/324,
  45514. bottom: 40/500
  45515. }
  45516. },
  45517. head: {
  45518. height: math.unit(1.21, "feet"),
  45519. name: "Head",
  45520. image: {
  45521. source: "./media/characters/mochi/head.svg"
  45522. }
  45523. },
  45524. alternateTail: {
  45525. height: math.unit(2 + 8/12, "feet"),
  45526. weight: math.unit(45, "lb"),
  45527. name: "Alternate Tail",
  45528. image: {
  45529. source: "./media/characters/mochi/alternate-tail.svg",
  45530. extra: 139/76,
  45531. bottom: 45/184
  45532. }
  45533. },
  45534. },
  45535. [
  45536. {
  45537. name: "Micro",
  45538. height: math.unit(2, "inches")
  45539. },
  45540. {
  45541. name: "Normal",
  45542. height: math.unit(2 + 8/12, "feet"),
  45543. default: true
  45544. },
  45545. {
  45546. name: "Macro",
  45547. height: math.unit(106, "feet")
  45548. },
  45549. ]
  45550. ))
  45551. characterMakers.push(() => makeCharacter(
  45552. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  45553. {
  45554. front: {
  45555. height: math.unit(5.67, "feet"),
  45556. weight: math.unit(135, "lb"),
  45557. name: "Front",
  45558. image: {
  45559. source: "./media/characters/sarel/front.svg",
  45560. extra: 865/788,
  45561. bottom: 97/962
  45562. }
  45563. },
  45564. back: {
  45565. height: math.unit(5.67, "feet"),
  45566. weight: math.unit(135, "lb"),
  45567. name: "Back",
  45568. image: {
  45569. source: "./media/characters/sarel/back.svg",
  45570. extra: 857/777,
  45571. bottom: 32/889
  45572. }
  45573. },
  45574. chozoan: {
  45575. height: math.unit(5.67, "feet"),
  45576. weight: math.unit(135, "lb"),
  45577. name: "Chozoan",
  45578. image: {
  45579. source: "./media/characters/sarel/chozoan.svg",
  45580. extra: 865/788,
  45581. bottom: 97/962
  45582. }
  45583. },
  45584. current: {
  45585. height: math.unit(5.67, "feet"),
  45586. weight: math.unit(135, "lb"),
  45587. name: "Current",
  45588. image: {
  45589. source: "./media/characters/sarel/current.svg",
  45590. extra: 865/788,
  45591. bottom: 97/962
  45592. }
  45593. },
  45594. head: {
  45595. height: math.unit(1.77, "feet"),
  45596. name: "Head",
  45597. image: {
  45598. source: "./media/characters/sarel/head.svg"
  45599. }
  45600. },
  45601. claws: {
  45602. height: math.unit(1.8, "feet"),
  45603. name: "Claws",
  45604. image: {
  45605. source: "./media/characters/sarel/claws.svg"
  45606. }
  45607. },
  45608. clawsAlt: {
  45609. height: math.unit(1.8, "feet"),
  45610. name: "Claws-alt",
  45611. image: {
  45612. source: "./media/characters/sarel/claws-alt.svg"
  45613. }
  45614. },
  45615. },
  45616. [
  45617. {
  45618. name: "Normal",
  45619. height: math.unit(5.67, "feet"),
  45620. default: true
  45621. },
  45622. ]
  45623. ))
  45624. characterMakers.push(() => makeCharacter(
  45625. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  45626. {
  45627. front: {
  45628. height: math.unit(5500, "feet"),
  45629. name: "Front",
  45630. image: {
  45631. source: "./media/characters/alyonia/front.svg",
  45632. extra: 1200/1135,
  45633. bottom: 29/1229
  45634. }
  45635. },
  45636. back: {
  45637. height: math.unit(5500, "feet"),
  45638. name: "Back",
  45639. image: {
  45640. source: "./media/characters/alyonia/back.svg",
  45641. extra: 1205/1138,
  45642. bottom: 10/1215
  45643. }
  45644. },
  45645. },
  45646. [
  45647. {
  45648. name: "Small",
  45649. height: math.unit(10, "feet")
  45650. },
  45651. {
  45652. name: "Macro",
  45653. height: math.unit(500, "feet")
  45654. },
  45655. {
  45656. name: "Mega Macro",
  45657. height: math.unit(5500, "feet"),
  45658. default: true
  45659. },
  45660. {
  45661. name: "Mega Macro+",
  45662. height: math.unit(500000, "feet")
  45663. },
  45664. {
  45665. name: "Giga Macro",
  45666. height: math.unit(3000, "miles")
  45667. },
  45668. {
  45669. name: "Tera Macro",
  45670. height: math.unit(2.8e6, "miles")
  45671. },
  45672. {
  45673. name: "Galactic",
  45674. height: math.unit(120000, "lightyears")
  45675. },
  45676. ]
  45677. ))
  45678. characterMakers.push(() => makeCharacter(
  45679. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  45680. {
  45681. werewolf: {
  45682. height: math.unit(8, "feet"),
  45683. weight: math.unit(425, "lb"),
  45684. name: "Werewolf",
  45685. image: {
  45686. source: "./media/characters/autumn/werewolf.svg",
  45687. extra: 2154/2031,
  45688. bottom: 160/2314
  45689. }
  45690. },
  45691. human: {
  45692. height: math.unit(5 + 8/12, "feet"),
  45693. weight: math.unit(150, "lb"),
  45694. name: "Human",
  45695. image: {
  45696. source: "./media/characters/autumn/human.svg",
  45697. extra: 1200/1149,
  45698. bottom: 30/1230
  45699. }
  45700. },
  45701. },
  45702. [
  45703. {
  45704. name: "Normal",
  45705. height: math.unit(8, "feet"),
  45706. default: true
  45707. },
  45708. ]
  45709. ))
  45710. characterMakers.push(() => makeCharacter(
  45711. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  45712. {
  45713. front: {
  45714. height: math.unit(8 + 5/12, "feet"),
  45715. weight: math.unit(825, "lb"),
  45716. name: "Front",
  45717. image: {
  45718. source: "./media/characters/cobalt-charizard/front.svg",
  45719. extra: 1268/1155,
  45720. bottom: 122/1390
  45721. }
  45722. },
  45723. side: {
  45724. height: math.unit(8 + 5/12, "feet"),
  45725. weight: math.unit(825, "lb"),
  45726. name: "Side",
  45727. image: {
  45728. source: "./media/characters/cobalt-charizard/side.svg",
  45729. extra: 1348/1257,
  45730. bottom: 58/1406
  45731. }
  45732. },
  45733. gMax: {
  45734. height: math.unit(134 + 11/12, "feet"),
  45735. name: "G-Max",
  45736. image: {
  45737. source: "./media/characters/cobalt-charizard/g-max.svg",
  45738. extra: 1835/1541,
  45739. bottom: 151/1986
  45740. }
  45741. },
  45742. },
  45743. [
  45744. {
  45745. name: "Normal",
  45746. height: math.unit(8 + 5/12, "feet"),
  45747. default: true
  45748. },
  45749. ]
  45750. ))
  45751. characterMakers.push(() => makeCharacter(
  45752. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  45753. {
  45754. front: {
  45755. height: math.unit(6 + 3/12, "feet"),
  45756. weight: math.unit(210, "lb"),
  45757. name: "Front",
  45758. image: {
  45759. source: "./media/characters/stella/front.svg",
  45760. extra: 3549/3335,
  45761. bottom: 51/3600
  45762. }
  45763. },
  45764. },
  45765. [
  45766. {
  45767. name: "Normal",
  45768. height: math.unit(6 + 3/12, "feet"),
  45769. default: true
  45770. },
  45771. ]
  45772. ))
  45773. characterMakers.push(() => makeCharacter(
  45774. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  45775. {
  45776. front: {
  45777. height: math.unit(5, "feet"),
  45778. weight: math.unit(90, "lb"),
  45779. name: "Front",
  45780. image: {
  45781. source: "./media/characters/riley-bishop/front.svg",
  45782. extra: 1450/1428,
  45783. bottom: 152/1602
  45784. }
  45785. },
  45786. },
  45787. [
  45788. {
  45789. name: "Normal",
  45790. height: math.unit(5, "feet"),
  45791. default: true
  45792. },
  45793. ]
  45794. ))
  45795. characterMakers.push(() => makeCharacter(
  45796. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45797. {
  45798. side: {
  45799. height: math.unit(8 + 2/12, "feet"),
  45800. weight: math.unit(500, "kg"),
  45801. name: "Side",
  45802. image: {
  45803. source: "./media/characters/theo-arcanine/side.svg",
  45804. extra: 1342/1074,
  45805. bottom: 111/1453
  45806. }
  45807. },
  45808. },
  45809. [
  45810. {
  45811. name: "Normal",
  45812. height: math.unit(8 + 2/12, "feet"),
  45813. default: true
  45814. },
  45815. ]
  45816. ))
  45817. characterMakers.push(() => makeCharacter(
  45818. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45819. {
  45820. front: {
  45821. height: math.unit(4, "feet"),
  45822. name: "Front",
  45823. image: {
  45824. source: "./media/characters/kali/front.svg",
  45825. extra: 1074/867,
  45826. bottom: 34/1108
  45827. }
  45828. },
  45829. back: {
  45830. height: math.unit(4, "feet"),
  45831. name: "Back",
  45832. image: {
  45833. source: "./media/characters/kali/back.svg",
  45834. extra: 1068/863,
  45835. bottom: 26/1094
  45836. }
  45837. },
  45838. frontAlt: {
  45839. height: math.unit(4, "feet"),
  45840. name: "Front (Alt)",
  45841. image: {
  45842. source: "./media/characters/kali/front-alt.svg",
  45843. extra: 1921/1357,
  45844. bottom: 70/1991
  45845. }
  45846. },
  45847. },
  45848. [
  45849. {
  45850. name: "Normal",
  45851. height: math.unit(4, "feet"),
  45852. default: true
  45853. },
  45854. {
  45855. name: "Big'vali",
  45856. height: math.unit(11, "feet")
  45857. },
  45858. {
  45859. name: "Macro",
  45860. height: math.unit(32, "meters")
  45861. },
  45862. {
  45863. name: "Macro+",
  45864. height: math.unit(150, "meters")
  45865. },
  45866. {
  45867. name: "Megamacro",
  45868. height: math.unit(7500, "meters")
  45869. },
  45870. {
  45871. name: "Megamacro+",
  45872. height: math.unit(80, "kilometers")
  45873. },
  45874. ]
  45875. ))
  45876. characterMakers.push(() => makeCharacter(
  45877. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45878. {
  45879. side: {
  45880. height: math.unit(5 + 11/12, "feet"),
  45881. weight: math.unit(236, "lb"),
  45882. name: "Side",
  45883. image: {
  45884. source: "./media/characters/gapp/side.svg",
  45885. extra: 775/340,
  45886. bottom: 58/833
  45887. }
  45888. },
  45889. mouth: {
  45890. height: math.unit(2.98, "feet"),
  45891. name: "Mouth",
  45892. image: {
  45893. source: "./media/characters/gapp/mouth.svg"
  45894. }
  45895. },
  45896. },
  45897. [
  45898. {
  45899. name: "Normal",
  45900. height: math.unit(5 + 1/12, "feet"),
  45901. default: true
  45902. },
  45903. ]
  45904. ))
  45905. characterMakers.push(() => makeCharacter(
  45906. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45907. {
  45908. front: {
  45909. height: math.unit(6, "feet"),
  45910. name: "Front",
  45911. image: {
  45912. source: "./media/characters/persephone/front.svg",
  45913. extra: 1895/1717,
  45914. bottom: 96/1991
  45915. }
  45916. },
  45917. back: {
  45918. height: math.unit(6, "feet"),
  45919. name: "Back",
  45920. image: {
  45921. source: "./media/characters/persephone/back.svg",
  45922. extra: 1868/1679,
  45923. bottom: 26/1894
  45924. }
  45925. },
  45926. casual: {
  45927. height: math.unit(6, "feet"),
  45928. name: "Casual",
  45929. image: {
  45930. source: "./media/characters/persephone/casual.svg",
  45931. extra: 1713/1541,
  45932. bottom: 76/1789
  45933. }
  45934. },
  45935. gaming: {
  45936. height: math.unit(3.55, "feet"),
  45937. name: "Gaming",
  45938. image: {
  45939. source: "./media/characters/persephone/gaming.svg",
  45940. extra: 1242/1038,
  45941. bottom: 66/1308
  45942. }
  45943. },
  45944. head: {
  45945. height: math.unit(2.15, "feet"),
  45946. name: "😐",
  45947. image: {
  45948. source: "./media/characters/persephone/head.svg"
  45949. }
  45950. },
  45951. talking: {
  45952. height: math.unit(2.5, "feet"),
  45953. name: "💬",
  45954. image: {
  45955. source: "./media/characters/persephone/talking.svg"
  45956. }
  45957. },
  45958. hmm: {
  45959. height: math.unit(2.28, "feet"),
  45960. name: "🤨",
  45961. image: {
  45962. source: "./media/characters/persephone/hmm.svg"
  45963. }
  45964. },
  45965. },
  45966. [
  45967. {
  45968. name: "Human Size",
  45969. height: math.unit(6, "feet")
  45970. },
  45971. {
  45972. name: "Big Steppy",
  45973. height: math.unit(600, "meters"),
  45974. default: true
  45975. },
  45976. {
  45977. name: "Galaxy Brain",
  45978. height: math.unit(1, "zettameter")
  45979. },
  45980. ]
  45981. ))
  45982. characterMakers.push(() => makeCharacter(
  45983. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45984. {
  45985. front: {
  45986. height: math.unit(1.85, "meters"),
  45987. name: "Front",
  45988. image: {
  45989. source: "./media/characters/riley-foxthing/front.svg",
  45990. extra: 1495/1354,
  45991. bottom: 122/1617
  45992. }
  45993. },
  45994. frontAlt: {
  45995. height: math.unit(1.85, "meters"),
  45996. name: "Front (Alt)",
  45997. image: {
  45998. source: "./media/characters/riley-foxthing/front-alt.svg",
  45999. extra: 1572/1389,
  46000. bottom: 116/1688
  46001. }
  46002. },
  46003. },
  46004. [
  46005. {
  46006. name: "Normal Sized",
  46007. height: math.unit(1.85, "meters"),
  46008. default: true
  46009. },
  46010. {
  46011. name: "Quite Sizable",
  46012. height: math.unit(5, "meters")
  46013. },
  46014. {
  46015. name: "Rather Large",
  46016. height: math.unit(20, "meters")
  46017. },
  46018. {
  46019. name: "Macro",
  46020. height: math.unit(450, "meters")
  46021. },
  46022. {
  46023. name: "Giga",
  46024. height: math.unit(5, "km")
  46025. },
  46026. ]
  46027. ))
  46028. characterMakers.push(() => makeCharacter(
  46029. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  46030. {
  46031. front: {
  46032. height: math.unit(6, "feet"),
  46033. weight: math.unit(200, "lb"),
  46034. name: "Front",
  46035. image: {
  46036. source: "./media/characters/blizzard/front.svg",
  46037. extra: 1136/990,
  46038. bottom: 136/1272
  46039. }
  46040. },
  46041. back: {
  46042. height: math.unit(6, "feet"),
  46043. weight: math.unit(200, "lb"),
  46044. name: "Back",
  46045. image: {
  46046. source: "./media/characters/blizzard/back.svg",
  46047. extra: 1175/1034,
  46048. bottom: 97/1272
  46049. }
  46050. },
  46051. sitting: {
  46052. height: math.unit(3.725, "feet"),
  46053. weight: math.unit(200, "lb"),
  46054. name: "Sitting",
  46055. image: {
  46056. source: "./media/characters/blizzard/sitting.svg",
  46057. extra: 581/485,
  46058. bottom: 90/671
  46059. }
  46060. },
  46061. frontWizard: {
  46062. height: math.unit(7.9, "feet"),
  46063. weight: math.unit(200, "lb"),
  46064. name: "Front (Wizard)",
  46065. image: {
  46066. source: "./media/characters/blizzard/front-wizard.svg"
  46067. }
  46068. },
  46069. backWizard: {
  46070. height: math.unit(7.9, "feet"),
  46071. weight: math.unit(200, "lb"),
  46072. name: "Back (Wizard)",
  46073. image: {
  46074. source: "./media/characters/blizzard/back-wizard.svg"
  46075. }
  46076. },
  46077. frontNsfw: {
  46078. height: math.unit(6, "feet"),
  46079. weight: math.unit(200, "lb"),
  46080. name: "Front (NSFW)",
  46081. image: {
  46082. source: "./media/characters/blizzard/front-nsfw.svg",
  46083. extra: 1136/990,
  46084. bottom: 136/1272
  46085. }
  46086. },
  46087. backNsfw: {
  46088. height: math.unit(6, "feet"),
  46089. weight: math.unit(200, "lb"),
  46090. name: "Back (NSFW)",
  46091. image: {
  46092. source: "./media/characters/blizzard/back-nsfw.svg",
  46093. extra: 1175/1034,
  46094. bottom: 97/1272
  46095. }
  46096. },
  46097. sittingNsfw: {
  46098. height: math.unit(3.725, "feet"),
  46099. weight: math.unit(200, "lb"),
  46100. name: "Sitting (NSFW)",
  46101. image: {
  46102. source: "./media/characters/blizzard/sitting-nsfw.svg",
  46103. extra: 581/485,
  46104. bottom: 90/671
  46105. }
  46106. },
  46107. wizardFrontNsfw: {
  46108. height: math.unit(7.9, "feet"),
  46109. weight: math.unit(200, "lb"),
  46110. name: "Wizard (Front, NSFW)",
  46111. image: {
  46112. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  46113. }
  46114. },
  46115. },
  46116. [
  46117. {
  46118. name: "Normal",
  46119. height: math.unit(6, "feet"),
  46120. default: true
  46121. },
  46122. ]
  46123. ))
  46124. characterMakers.push(() => makeCharacter(
  46125. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  46126. {
  46127. front: {
  46128. height: math.unit(5 + 2/12, "feet"),
  46129. name: "Front",
  46130. image: {
  46131. source: "./media/characters/lumi/front.svg",
  46132. extra: 1328/1268,
  46133. bottom: 103/1431
  46134. }
  46135. },
  46136. back: {
  46137. height: math.unit(5 + 2/12, "feet"),
  46138. name: "Back",
  46139. image: {
  46140. source: "./media/characters/lumi/back.svg",
  46141. extra: 1381/1327,
  46142. bottom: 43/1424
  46143. }
  46144. },
  46145. },
  46146. [
  46147. {
  46148. name: "Normal",
  46149. height: math.unit(5 + 2/12, "feet"),
  46150. default: true
  46151. },
  46152. ]
  46153. ))
  46154. characterMakers.push(() => makeCharacter(
  46155. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  46156. {
  46157. front: {
  46158. height: math.unit(5 + 9/12, "feet"),
  46159. name: "Front",
  46160. image: {
  46161. source: "./media/characters/aliya-cotton/front.svg",
  46162. extra: 577/564,
  46163. bottom: 29/606
  46164. }
  46165. },
  46166. },
  46167. [
  46168. {
  46169. name: "Normal",
  46170. height: math.unit(5 + 9/12, "feet"),
  46171. default: true
  46172. },
  46173. ]
  46174. ))
  46175. characterMakers.push(() => makeCharacter(
  46176. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  46177. {
  46178. front: {
  46179. height: math.unit(2.7, "meters"),
  46180. weight: math.unit(25000, "lb"),
  46181. name: "Front",
  46182. image: {
  46183. source: "./media/characters/noah-luxray/front.svg",
  46184. extra: 1644/825,
  46185. bottom: 339/1983
  46186. }
  46187. },
  46188. side: {
  46189. height: math.unit(2.97, "meters"),
  46190. weight: math.unit(25000, "lb"),
  46191. name: "Side",
  46192. image: {
  46193. source: "./media/characters/noah-luxray/side.svg",
  46194. extra: 1319/650,
  46195. bottom: 163/1482
  46196. }
  46197. },
  46198. dick: {
  46199. height: math.unit(7.4, "feet"),
  46200. weight: math.unit(2500, "lb"),
  46201. name: "Dick",
  46202. image: {
  46203. source: "./media/characters/noah-luxray/dick.svg"
  46204. }
  46205. },
  46206. dickAlt: {
  46207. height: math.unit(10.83, "feet"),
  46208. weight: math.unit(2500, "lb"),
  46209. name: "Dick-alt",
  46210. image: {
  46211. source: "./media/characters/noah-luxray/dick-alt.svg"
  46212. }
  46213. },
  46214. },
  46215. [
  46216. {
  46217. name: "BIG",
  46218. height: math.unit(2.7, "meters"),
  46219. default: true
  46220. },
  46221. ]
  46222. ))
  46223. characterMakers.push(() => makeCharacter(
  46224. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  46225. {
  46226. standing: {
  46227. height: math.unit(183, "cm"),
  46228. weight: math.unit(68, "kg"),
  46229. name: "Standing",
  46230. image: {
  46231. source: "./media/characters/arion/standing.svg",
  46232. extra: 1869/1807,
  46233. bottom: 93/1962
  46234. }
  46235. },
  46236. reclining: {
  46237. height: math.unit(70.5, "cm"),
  46238. weight: math.unit(68, "lb"),
  46239. name: "Reclining",
  46240. image: {
  46241. source: "./media/characters/arion/reclining.svg",
  46242. extra: 937/870,
  46243. bottom: 63/1000
  46244. }
  46245. },
  46246. },
  46247. [
  46248. {
  46249. name: "Colossus Size, Low",
  46250. height: math.unit(33, "meters"),
  46251. default: true
  46252. },
  46253. {
  46254. name: "Colossus Size, Mid",
  46255. height: math.unit(52, "meters")
  46256. },
  46257. {
  46258. name: "Colossus Size, High",
  46259. height: math.unit(60, "meters")
  46260. },
  46261. {
  46262. name: "Titan Size, Low",
  46263. height: math.unit(91, "meters"),
  46264. },
  46265. {
  46266. name: "Titan Size, Mid",
  46267. height: math.unit(122, "meters")
  46268. },
  46269. {
  46270. name: "Titan Size, High",
  46271. height: math.unit(162, "meters")
  46272. },
  46273. ]
  46274. ))
  46275. characterMakers.push(() => makeCharacter(
  46276. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  46277. {
  46278. front: {
  46279. height: math.unit(53, "meters"),
  46280. name: "Front",
  46281. image: {
  46282. source: "./media/characters/stellar-marbey/front.svg",
  46283. extra: 1913/1805,
  46284. bottom: 92/2005
  46285. }
  46286. },
  46287. back: {
  46288. height: math.unit(53, "meters"),
  46289. name: "Back",
  46290. image: {
  46291. source: "./media/characters/stellar-marbey/back.svg",
  46292. extra: 1960/1851,
  46293. bottom: 28/1988
  46294. }
  46295. },
  46296. mouth: {
  46297. height: math.unit(3.5, "meters"),
  46298. name: "Mouth",
  46299. image: {
  46300. source: "./media/characters/stellar-marbey/mouth.svg"
  46301. }
  46302. },
  46303. },
  46304. [
  46305. {
  46306. name: "Macro",
  46307. height: math.unit(53, "meters"),
  46308. default: true
  46309. },
  46310. ]
  46311. ))
  46312. characterMakers.push(() => makeCharacter(
  46313. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  46314. {
  46315. front: {
  46316. height: math.unit(8 + 1/12, "feet"),
  46317. weight: math.unit(233, "lb"),
  46318. name: "Front",
  46319. image: {
  46320. source: "./media/characters/matsu/front.svg",
  46321. extra: 832/772,
  46322. bottom: 40/872
  46323. }
  46324. },
  46325. back: {
  46326. height: math.unit(8 + 1/12, "feet"),
  46327. weight: math.unit(233, "lb"),
  46328. name: "Back",
  46329. image: {
  46330. source: "./media/characters/matsu/back.svg",
  46331. extra: 839/780,
  46332. bottom: 47/886
  46333. }
  46334. },
  46335. },
  46336. [
  46337. {
  46338. name: "Normal",
  46339. height: math.unit(8 + 1/12, "feet"),
  46340. default: true
  46341. },
  46342. ]
  46343. ))
  46344. characterMakers.push(() => makeCharacter(
  46345. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  46346. {
  46347. front: {
  46348. height: math.unit(4, "feet"),
  46349. weight: math.unit(148, "lb"),
  46350. name: "Front",
  46351. image: {
  46352. source: "./media/characters/thiz/front.svg",
  46353. extra: 1913/1748,
  46354. bottom: 62/1975
  46355. }
  46356. },
  46357. },
  46358. [
  46359. {
  46360. name: "Normal",
  46361. height: math.unit(4, "feet"),
  46362. default: true
  46363. },
  46364. ]
  46365. ))
  46366. characterMakers.push(() => makeCharacter(
  46367. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  46368. {
  46369. front: {
  46370. height: math.unit(7 + 6/12, "feet"),
  46371. weight: math.unit(267, "lb"),
  46372. name: "Front",
  46373. image: {
  46374. source: "./media/characters/marcel/front.svg",
  46375. extra: 1221/1096,
  46376. bottom: 76/1297
  46377. }
  46378. },
  46379. },
  46380. [
  46381. {
  46382. name: "Normal",
  46383. height: math.unit(7 + 6/12, "feet"),
  46384. default: true
  46385. },
  46386. ]
  46387. ))
  46388. characterMakers.push(() => makeCharacter(
  46389. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  46390. {
  46391. side: {
  46392. height: math.unit(42, "meters"),
  46393. name: "Side",
  46394. image: {
  46395. source: "./media/characters/flake/side.svg",
  46396. extra: 1525/1306,
  46397. bottom: 209/1734
  46398. }
  46399. },
  46400. },
  46401. [
  46402. {
  46403. name: "Normal",
  46404. height: math.unit(42, "meters"),
  46405. default: true
  46406. },
  46407. ]
  46408. ))
  46409. characterMakers.push(() => makeCharacter(
  46410. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  46411. {
  46412. dressed: {
  46413. height: math.unit(6 + 4/12, "feet"),
  46414. weight: math.unit(520, "lb"),
  46415. name: "Dressed",
  46416. image: {
  46417. source: "./media/characters/someonne/dressed.svg",
  46418. extra: 1020/1010,
  46419. bottom: 178/1198
  46420. }
  46421. },
  46422. undressed: {
  46423. height: math.unit(6 + 4/12, "feet"),
  46424. weight: math.unit(520, "lb"),
  46425. name: "Undressed",
  46426. image: {
  46427. source: "./media/characters/someonne/undressed.svg",
  46428. extra: 1019/1014,
  46429. bottom: 169/1188
  46430. }
  46431. },
  46432. },
  46433. [
  46434. {
  46435. name: "Normal",
  46436. height: math.unit(6 + 4/12, "feet"),
  46437. default: true
  46438. },
  46439. ]
  46440. ))
  46441. characterMakers.push(() => makeCharacter(
  46442. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  46443. {
  46444. front: {
  46445. height: math.unit(3, "feet"),
  46446. weight: math.unit(30, "lb"),
  46447. name: "Front",
  46448. image: {
  46449. source: "./media/characters/till/front.svg",
  46450. extra: 892/823,
  46451. bottom: 55/947
  46452. }
  46453. },
  46454. },
  46455. [
  46456. {
  46457. name: "Normal",
  46458. height: math.unit(3, "feet"),
  46459. default: true
  46460. },
  46461. ]
  46462. ))
  46463. characterMakers.push(() => makeCharacter(
  46464. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  46465. {
  46466. front: {
  46467. height: math.unit(9 + 8/12, "feet"),
  46468. weight: math.unit(800, "lb"),
  46469. name: "Front",
  46470. image: {
  46471. source: "./media/characters/sydney-heki/front.svg",
  46472. extra: 1360/1300,
  46473. bottom: 22/1382
  46474. }
  46475. },
  46476. back: {
  46477. height: math.unit(9 + 8/12, "feet"),
  46478. weight: math.unit(800, "lb"),
  46479. name: "Back",
  46480. image: {
  46481. source: "./media/characters/sydney-heki/back.svg",
  46482. extra: 1356/1293,
  46483. bottom: 12/1368
  46484. }
  46485. },
  46486. frontDressed: {
  46487. height: math.unit(9 + 8/12, "feet"),
  46488. weight: math.unit(800, "lb"),
  46489. name: "Front-dressed",
  46490. image: {
  46491. source: "./media/characters/sydney-heki/front-dressed.svg",
  46492. extra: 1360/1300,
  46493. bottom: 22/1382
  46494. }
  46495. },
  46496. },
  46497. [
  46498. {
  46499. name: "Normal",
  46500. height: math.unit(9 + 8/12, "feet"),
  46501. default: true
  46502. },
  46503. {
  46504. name: "Macro",
  46505. height: math.unit(500, "feet")
  46506. },
  46507. {
  46508. name: "Megamacro",
  46509. height: math.unit(3.6, "miles")
  46510. },
  46511. ]
  46512. ))
  46513. characterMakers.push(() => makeCharacter(
  46514. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  46515. {
  46516. front: {
  46517. height: math.unit(200, "cm"),
  46518. weight: math.unit(250, "lb"),
  46519. name: "Front",
  46520. image: {
  46521. source: "./media/characters/fowler-karlsson/front.svg",
  46522. extra: 897/845,
  46523. bottom: 123/1020
  46524. }
  46525. },
  46526. back: {
  46527. height: math.unit(200, "cm"),
  46528. weight: math.unit(250, "lb"),
  46529. name: "Back",
  46530. image: {
  46531. source: "./media/characters/fowler-karlsson/back.svg",
  46532. extra: 999/944,
  46533. bottom: 26/1025
  46534. }
  46535. },
  46536. dick: {
  46537. height: math.unit(1.92, "feet"),
  46538. weight: math.unit(150, "lb"),
  46539. name: "Dick",
  46540. image: {
  46541. source: "./media/characters/fowler-karlsson/dick.svg"
  46542. }
  46543. },
  46544. },
  46545. [
  46546. {
  46547. name: "Normal",
  46548. height: math.unit(200, "cm"),
  46549. default: true
  46550. },
  46551. {
  46552. name: "Smaller Macro",
  46553. height: math.unit(90, "m")
  46554. },
  46555. {
  46556. name: "Macro",
  46557. height: math.unit(150, "m")
  46558. },
  46559. {
  46560. name: "Bigger Macro",
  46561. height: math.unit(300, "m")
  46562. },
  46563. ]
  46564. ))
  46565. characterMakers.push(() => makeCharacter(
  46566. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  46567. {
  46568. side: {
  46569. height: math.unit(8 + 2/12, "feet"),
  46570. weight: math.unit(1, "tonne"),
  46571. name: "Side",
  46572. image: {
  46573. source: "./media/characters/rylide/side.svg",
  46574. extra: 1318/1034,
  46575. bottom: 106/1424
  46576. }
  46577. },
  46578. sitting: {
  46579. height: math.unit(303, "cm"),
  46580. weight: math.unit(1, "tonne"),
  46581. name: "Sitting",
  46582. image: {
  46583. source: "./media/characters/rylide/sitting.svg",
  46584. extra: 1303/1103,
  46585. bottom: 36/1339
  46586. }
  46587. },
  46588. },
  46589. [
  46590. {
  46591. name: "Normal",
  46592. height: math.unit(8 + 2/12, "feet"),
  46593. default: true
  46594. },
  46595. ]
  46596. ))
  46597. characterMakers.push(() => makeCharacter(
  46598. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  46599. {
  46600. front: {
  46601. height: math.unit(5 + 10/12, "feet"),
  46602. weight: math.unit(160, "lb"),
  46603. name: "Front",
  46604. image: {
  46605. source: "./media/characters/pudask/front.svg",
  46606. extra: 1616/1590,
  46607. bottom: 161/1777
  46608. }
  46609. },
  46610. },
  46611. [
  46612. {
  46613. name: "Ferret Height",
  46614. height: math.unit(2 + 5/12, "feet")
  46615. },
  46616. {
  46617. name: "Canon Height",
  46618. height: math.unit(5 + 10/12, "feet"),
  46619. default: true
  46620. },
  46621. ]
  46622. ))
  46623. characterMakers.push(() => makeCharacter(
  46624. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  46625. {
  46626. front: {
  46627. height: math.unit(3 + 6/12, "feet"),
  46628. weight: math.unit(60, "lb"),
  46629. name: "Front",
  46630. image: {
  46631. source: "./media/characters/ramita/front.svg",
  46632. extra: 1402/1232,
  46633. bottom: 62/1464
  46634. }
  46635. },
  46636. dressed: {
  46637. height: math.unit(3 + 6/12, "feet"),
  46638. weight: math.unit(60, "lb"),
  46639. name: "Dressed",
  46640. image: {
  46641. source: "./media/characters/ramita/dressed.svg",
  46642. extra: 1534/1249,
  46643. bottom: 50/1584
  46644. }
  46645. },
  46646. },
  46647. [
  46648. {
  46649. name: "Normal",
  46650. height: math.unit(3 + 6/12, "feet"),
  46651. default: true
  46652. },
  46653. ]
  46654. ))
  46655. characterMakers.push(() => makeCharacter(
  46656. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  46657. {
  46658. front: {
  46659. height: math.unit(8, "feet"),
  46660. name: "Front",
  46661. image: {
  46662. source: "./media/characters/ark/front.svg",
  46663. extra: 772/693,
  46664. bottom: 45/817
  46665. }
  46666. },
  46667. },
  46668. [
  46669. {
  46670. name: "Normal",
  46671. height: math.unit(8, "feet"),
  46672. default: true
  46673. },
  46674. ]
  46675. ))
  46676. characterMakers.push(() => makeCharacter(
  46677. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  46678. {
  46679. front: {
  46680. height: math.unit(6, "feet"),
  46681. weight: math.unit(250, "lb"),
  46682. volume: math.unit(5/8, "gallons"),
  46683. name: "Front",
  46684. image: {
  46685. source: "./media/characters/ludwig-horn/front.svg",
  46686. extra: 1782/1635,
  46687. bottom: 96/1878
  46688. }
  46689. },
  46690. back: {
  46691. height: math.unit(6, "feet"),
  46692. weight: math.unit(250, "lb"),
  46693. volume: math.unit(5/8, "gallons"),
  46694. name: "Back",
  46695. image: {
  46696. source: "./media/characters/ludwig-horn/back.svg",
  46697. extra: 1874/1729,
  46698. bottom: 27/1901
  46699. }
  46700. },
  46701. dick: {
  46702. height: math.unit(1.05, "feet"),
  46703. weight: math.unit(15, "lb"),
  46704. volume: math.unit(5/8, "gallons"),
  46705. name: "Dick",
  46706. image: {
  46707. source: "./media/characters/ludwig-horn/dick.svg"
  46708. }
  46709. },
  46710. },
  46711. [
  46712. {
  46713. name: "Small",
  46714. height: math.unit(6, "feet")
  46715. },
  46716. {
  46717. name: "Typical",
  46718. height: math.unit(12, "feet"),
  46719. default: true
  46720. },
  46721. {
  46722. name: "Building",
  46723. height: math.unit(80, "feet")
  46724. },
  46725. {
  46726. name: "Town",
  46727. height: math.unit(800, "feet")
  46728. },
  46729. {
  46730. name: "Kingdom",
  46731. height: math.unit(80000, "feet")
  46732. },
  46733. {
  46734. name: "Planet",
  46735. height: math.unit(8000000, "feet")
  46736. },
  46737. {
  46738. name: "Universe",
  46739. height: math.unit(8000000000, "feet")
  46740. },
  46741. {
  46742. name: "Transcended",
  46743. height: math.unit(8e27, "feet")
  46744. },
  46745. ]
  46746. ))
  46747. characterMakers.push(() => makeCharacter(
  46748. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  46749. {
  46750. front: {
  46751. height: math.unit(5, "feet"),
  46752. weight: math.unit(50, "kg"),
  46753. name: "Front",
  46754. image: {
  46755. source: "./media/characters/biot-avery/front.svg",
  46756. extra: 1295/1232,
  46757. bottom: 86/1381
  46758. }
  46759. },
  46760. },
  46761. [
  46762. {
  46763. name: "Normal",
  46764. height: math.unit(5, "feet"),
  46765. default: true
  46766. },
  46767. ]
  46768. ))
  46769. characterMakers.push(() => makeCharacter(
  46770. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  46771. {
  46772. front: {
  46773. height: math.unit(6, "feet"),
  46774. name: "Front",
  46775. image: {
  46776. source: "./media/characters/kitsune-kiro/front.svg",
  46777. extra: 1270/1158,
  46778. bottom: 42/1312
  46779. }
  46780. },
  46781. frontAlt: {
  46782. height: math.unit(6, "feet"),
  46783. name: "Front-alt",
  46784. image: {
  46785. source: "./media/characters/kitsune-kiro/front-alt.svg",
  46786. extra: 1130/1081,
  46787. bottom: 36/1166
  46788. }
  46789. },
  46790. },
  46791. [
  46792. {
  46793. name: "Smol",
  46794. height: math.unit(3, "feet")
  46795. },
  46796. {
  46797. name: "Normal",
  46798. height: math.unit(6, "feet"),
  46799. default: true
  46800. },
  46801. ]
  46802. ))
  46803. characterMakers.push(() => makeCharacter(
  46804. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  46805. {
  46806. front: {
  46807. height: math.unit(6, "feet"),
  46808. weight: math.unit(125, "lb"),
  46809. name: "Front",
  46810. image: {
  46811. source: "./media/characters/jack-thatcher/front.svg",
  46812. extra: 1474/1370,
  46813. bottom: 26/1500
  46814. }
  46815. },
  46816. back: {
  46817. height: math.unit(6, "feet"),
  46818. weight: math.unit(125, "lb"),
  46819. name: "Back",
  46820. image: {
  46821. source: "./media/characters/jack-thatcher/back.svg",
  46822. extra: 1489/1384,
  46823. bottom: 18/1507
  46824. }
  46825. },
  46826. },
  46827. [
  46828. {
  46829. name: "Normal",
  46830. height: math.unit(6, "feet"),
  46831. default: true
  46832. },
  46833. {
  46834. name: "Macro",
  46835. height: math.unit(75, "feet")
  46836. },
  46837. {
  46838. name: "Macro-er",
  46839. height: math.unit(250, "feet")
  46840. },
  46841. ]
  46842. ))
  46843. characterMakers.push(() => makeCharacter(
  46844. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46845. {
  46846. front: {
  46847. height: math.unit(7, "feet"),
  46848. weight: math.unit(110, "kg"),
  46849. name: "Front",
  46850. image: {
  46851. source: "./media/characters/max-hyper/front.svg",
  46852. extra: 1969/1881,
  46853. bottom: 49/2018
  46854. }
  46855. },
  46856. },
  46857. [
  46858. {
  46859. name: "Normal",
  46860. height: math.unit(7, "feet"),
  46861. default: true
  46862. },
  46863. ]
  46864. ))
  46865. characterMakers.push(() => makeCharacter(
  46866. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46867. {
  46868. front: {
  46869. height: math.unit(5 + 5/12, "feet"),
  46870. weight: math.unit(160, "lb"),
  46871. name: "Front",
  46872. image: {
  46873. source: "./media/characters/spook/front.svg",
  46874. extra: 794/791,
  46875. bottom: 54/848
  46876. }
  46877. },
  46878. back: {
  46879. height: math.unit(5 + 5/12, "feet"),
  46880. weight: math.unit(160, "lb"),
  46881. name: "Back",
  46882. image: {
  46883. source: "./media/characters/spook/back.svg",
  46884. extra: 812/798,
  46885. bottom: 32/844
  46886. }
  46887. },
  46888. },
  46889. [
  46890. {
  46891. name: "Normal",
  46892. height: math.unit(5 + 5/12, "feet"),
  46893. default: true
  46894. },
  46895. ]
  46896. ))
  46897. characterMakers.push(() => makeCharacter(
  46898. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46899. {
  46900. front: {
  46901. height: math.unit(18, "feet"),
  46902. name: "Front",
  46903. image: {
  46904. source: "./media/characters/xeaduulix/front.svg",
  46905. extra: 1380/1166,
  46906. bottom: 110/1490
  46907. }
  46908. },
  46909. back: {
  46910. height: math.unit(18, "feet"),
  46911. name: "Back",
  46912. image: {
  46913. source: "./media/characters/xeaduulix/back.svg",
  46914. extra: 1592/1170,
  46915. bottom: 128/1720
  46916. }
  46917. },
  46918. frontNsfw: {
  46919. height: math.unit(18, "feet"),
  46920. name: "Front (NSFW)",
  46921. image: {
  46922. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46923. extra: 1380/1166,
  46924. bottom: 110/1490
  46925. }
  46926. },
  46927. backNsfw: {
  46928. height: math.unit(18, "feet"),
  46929. name: "Back (NSFW)",
  46930. image: {
  46931. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46932. extra: 1592/1170,
  46933. bottom: 128/1720
  46934. }
  46935. },
  46936. },
  46937. [
  46938. {
  46939. name: "Normal",
  46940. height: math.unit(18, "feet"),
  46941. default: true
  46942. },
  46943. ]
  46944. ))
  46945. characterMakers.push(() => makeCharacter(
  46946. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46947. {
  46948. spreadWings: {
  46949. height: math.unit(20, "feet"),
  46950. name: "Spread Wings",
  46951. image: {
  46952. source: "./media/characters/fledge/spread-wings.svg",
  46953. extra: 693/635,
  46954. bottom: 26/719
  46955. }
  46956. },
  46957. front: {
  46958. height: math.unit(20, "feet"),
  46959. name: "Front",
  46960. image: {
  46961. source: "./media/characters/fledge/front.svg",
  46962. extra: 684/637,
  46963. bottom: 18/702
  46964. }
  46965. },
  46966. frontAlt: {
  46967. height: math.unit(20, "feet"),
  46968. name: "Front (Alt)",
  46969. image: {
  46970. source: "./media/characters/fledge/front-alt.svg",
  46971. extra: 708/664,
  46972. bottom: 13/721
  46973. }
  46974. },
  46975. back: {
  46976. height: math.unit(20, "feet"),
  46977. name: "Back",
  46978. image: {
  46979. source: "./media/characters/fledge/back.svg",
  46980. extra: 718/634,
  46981. bottom: 22/740
  46982. }
  46983. },
  46984. head: {
  46985. height: math.unit(5.55, "feet"),
  46986. name: "Head",
  46987. image: {
  46988. source: "./media/characters/fledge/head.svg"
  46989. }
  46990. },
  46991. headAlt: {
  46992. height: math.unit(5.1, "feet"),
  46993. name: "Head (Alt)",
  46994. image: {
  46995. source: "./media/characters/fledge/head-alt.svg"
  46996. }
  46997. },
  46998. },
  46999. [
  47000. {
  47001. name: "Small",
  47002. height: math.unit(6 + 2/12, "feet")
  47003. },
  47004. {
  47005. name: "Big",
  47006. height: math.unit(20, "feet"),
  47007. default: true
  47008. },
  47009. {
  47010. name: "Giant",
  47011. height: math.unit(100, "feet")
  47012. },
  47013. {
  47014. name: "Macro",
  47015. height: math.unit(200, "feet")
  47016. },
  47017. ]
  47018. ))
  47019. characterMakers.push(() => makeCharacter(
  47020. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  47021. {
  47022. front: {
  47023. height: math.unit(1, "meter"),
  47024. name: "Front",
  47025. image: {
  47026. source: "./media/characters/atlas-morenai/front.svg",
  47027. extra: 1275/1043,
  47028. bottom: 19/1294
  47029. }
  47030. },
  47031. back: {
  47032. height: math.unit(1, "meter"),
  47033. name: "Back",
  47034. image: {
  47035. source: "./media/characters/atlas-morenai/back.svg",
  47036. extra: 1141/1001,
  47037. bottom: 25/1166
  47038. }
  47039. },
  47040. },
  47041. [
  47042. {
  47043. name: "Normal",
  47044. height: math.unit(1, "meter"),
  47045. default: true
  47046. },
  47047. {
  47048. name: "Magic-Infused",
  47049. height: math.unit(5, "meters")
  47050. },
  47051. ]
  47052. ))
  47053. characterMakers.push(() => makeCharacter(
  47054. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  47055. {
  47056. front: {
  47057. height: math.unit(5, "meters"),
  47058. name: "Front",
  47059. image: {
  47060. source: "./media/characters/cintia/front.svg",
  47061. extra: 1312/1228,
  47062. bottom: 38/1350
  47063. }
  47064. },
  47065. back: {
  47066. height: math.unit(5, "meters"),
  47067. name: "Back",
  47068. image: {
  47069. source: "./media/characters/cintia/back.svg",
  47070. extra: 1260/1166,
  47071. bottom: 98/1358
  47072. }
  47073. },
  47074. frontDick: {
  47075. height: math.unit(5, "meters"),
  47076. name: "Front (Dick)",
  47077. image: {
  47078. source: "./media/characters/cintia/front-dick.svg",
  47079. extra: 1312/1228,
  47080. bottom: 38/1350
  47081. }
  47082. },
  47083. backDick: {
  47084. height: math.unit(5, "meters"),
  47085. name: "Back (Dick)",
  47086. image: {
  47087. source: "./media/characters/cintia/back-dick.svg",
  47088. extra: 1260/1166,
  47089. bottom: 98/1358
  47090. }
  47091. },
  47092. bust: {
  47093. height: math.unit(1.97, "meters"),
  47094. name: "Bust",
  47095. image: {
  47096. source: "./media/characters/cintia/bust.svg",
  47097. extra: 617/565,
  47098. bottom: 0/617
  47099. }
  47100. },
  47101. },
  47102. [
  47103. {
  47104. name: "Normal",
  47105. height: math.unit(5, "meters"),
  47106. default: true
  47107. },
  47108. ]
  47109. ))
  47110. characterMakers.push(() => makeCharacter(
  47111. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  47112. {
  47113. side: {
  47114. height: math.unit(100, "feet"),
  47115. name: "Side",
  47116. image: {
  47117. source: "./media/characters/denora/side.svg",
  47118. extra: 875/803,
  47119. bottom: 9/884
  47120. }
  47121. },
  47122. },
  47123. [
  47124. {
  47125. name: "Standard",
  47126. height: math.unit(100, "feet"),
  47127. default: true
  47128. },
  47129. {
  47130. name: "Grand",
  47131. height: math.unit(1000, "feet")
  47132. },
  47133. {
  47134. name: "Conquering",
  47135. height: math.unit(10000, "feet")
  47136. },
  47137. ]
  47138. ))
  47139. characterMakers.push(() => makeCharacter(
  47140. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  47141. {
  47142. dressed: {
  47143. height: math.unit(8 + 5/12, "feet"),
  47144. weight: math.unit(700, "lb"),
  47145. name: "Dressed",
  47146. image: {
  47147. source: "./media/characters/kiva/dressed.svg",
  47148. extra: 1102/1055,
  47149. bottom: 60/1162
  47150. }
  47151. },
  47152. nude: {
  47153. height: math.unit(8 + 5/12, "feet"),
  47154. weight: math.unit(700, "lb"),
  47155. name: "Nude",
  47156. image: {
  47157. source: "./media/characters/kiva/nude.svg",
  47158. extra: 1102/1055,
  47159. bottom: 60/1162
  47160. }
  47161. },
  47162. },
  47163. [
  47164. {
  47165. name: "Base Height",
  47166. height: math.unit(8 + 5/12, "feet"),
  47167. default: true
  47168. },
  47169. {
  47170. name: "Macro",
  47171. height: math.unit(100, "feet")
  47172. },
  47173. {
  47174. name: "Max",
  47175. height: math.unit(3280, "feet")
  47176. },
  47177. ]
  47178. ))
  47179. characterMakers.push(() => makeCharacter(
  47180. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  47181. {
  47182. front: {
  47183. height: math.unit(6 + 8/12, "feet"),
  47184. weight: math.unit(250, "lb"),
  47185. name: "Front",
  47186. image: {
  47187. source: "./media/characters/ztragon/front.svg",
  47188. extra: 1825/1684,
  47189. bottom: 98/1923
  47190. }
  47191. },
  47192. },
  47193. [
  47194. {
  47195. name: "Normal",
  47196. height: math.unit(6 + 8/12, "feet"),
  47197. default: true
  47198. },
  47199. {
  47200. name: "Macro",
  47201. height: math.unit(80, "feet")
  47202. },
  47203. ]
  47204. ))
  47205. characterMakers.push(() => makeCharacter(
  47206. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  47207. {
  47208. front: {
  47209. height: math.unit(10.4, "feet"),
  47210. weight: math.unit(2, "tons"),
  47211. name: "Front",
  47212. image: {
  47213. source: "./media/characters/yesenia/front.svg",
  47214. extra: 1479/1474,
  47215. bottom: 233/1712
  47216. }
  47217. },
  47218. },
  47219. [
  47220. {
  47221. name: "Normal",
  47222. height: math.unit(10.4, "feet"),
  47223. default: true
  47224. },
  47225. ]
  47226. ))
  47227. characterMakers.push(() => makeCharacter(
  47228. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  47229. {
  47230. normal: {
  47231. height: math.unit(6 + 1/12, "feet"),
  47232. weight: math.unit(180, "lb"),
  47233. name: "Normal",
  47234. image: {
  47235. source: "./media/characters/leanne-lycheborne/normal.svg",
  47236. extra: 1748/1660,
  47237. bottom: 98/1846
  47238. }
  47239. },
  47240. were: {
  47241. height: math.unit(12, "feet"),
  47242. weight: math.unit(1600, "lb"),
  47243. name: "Were",
  47244. image: {
  47245. source: "./media/characters/leanne-lycheborne/were.svg",
  47246. extra: 1485/1432,
  47247. bottom: 66/1551
  47248. }
  47249. },
  47250. },
  47251. [
  47252. {
  47253. name: "Normal",
  47254. height: math.unit(6 + 1/12, "feet"),
  47255. default: true
  47256. },
  47257. ]
  47258. ))
  47259. characterMakers.push(() => makeCharacter(
  47260. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  47261. {
  47262. side: {
  47263. height: math.unit(13, "feet"),
  47264. name: "Side",
  47265. image: {
  47266. source: "./media/characters/kira-tyler/side.svg",
  47267. extra: 693/393,
  47268. bottom: 58/751
  47269. }
  47270. },
  47271. },
  47272. [
  47273. {
  47274. name: "Normal",
  47275. height: math.unit(13, "feet"),
  47276. default: true
  47277. },
  47278. ]
  47279. ))
  47280. characterMakers.push(() => makeCharacter(
  47281. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  47282. {
  47283. front: {
  47284. height: math.unit(10.3, "feet"),
  47285. weight: math.unit(150, "lb"),
  47286. name: "Front",
  47287. image: {
  47288. source: "./media/characters/blaze/front.svg",
  47289. extra: 1378/1286,
  47290. bottom: 172/1550
  47291. }
  47292. },
  47293. },
  47294. [
  47295. {
  47296. name: "Normal",
  47297. height: math.unit(10.3, "feet"),
  47298. default: true
  47299. },
  47300. ]
  47301. ))
  47302. characterMakers.push(() => makeCharacter(
  47303. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  47304. {
  47305. side: {
  47306. height: math.unit(2, "meters"),
  47307. weight: math.unit(400, "kg"),
  47308. name: "Side",
  47309. image: {
  47310. source: "./media/characters/anu/side.svg",
  47311. extra: 506/394,
  47312. bottom: 18/524
  47313. }
  47314. },
  47315. },
  47316. [
  47317. {
  47318. name: "Humanoid",
  47319. height: math.unit(2, "meters")
  47320. },
  47321. {
  47322. name: "Normal",
  47323. height: math.unit(5, "meters"),
  47324. default: true
  47325. },
  47326. ]
  47327. ))
  47328. characterMakers.push(() => makeCharacter(
  47329. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  47330. {
  47331. front: {
  47332. height: math.unit(5 + 5/12, "feet"),
  47333. weight: math.unit(170, "lb"),
  47334. name: "Front",
  47335. image: {
  47336. source: "./media/characters/synx-the-lynx/front.svg",
  47337. extra: 1893/1745,
  47338. bottom: 17/1910
  47339. }
  47340. },
  47341. side: {
  47342. height: math.unit(5 + 5/12, "feet"),
  47343. weight: math.unit(170, "lb"),
  47344. name: "Side",
  47345. image: {
  47346. source: "./media/characters/synx-the-lynx/side.svg",
  47347. extra: 1884/1740,
  47348. bottom: 39/1923
  47349. }
  47350. },
  47351. back: {
  47352. height: math.unit(5 + 5/12, "feet"),
  47353. weight: math.unit(170, "lb"),
  47354. name: "Back",
  47355. image: {
  47356. source: "./media/characters/synx-the-lynx/back.svg",
  47357. extra: 1903/1755,
  47358. bottom: 14/1917
  47359. }
  47360. },
  47361. },
  47362. [
  47363. {
  47364. name: "Normal",
  47365. height: math.unit(5 + 5/12, "feet"),
  47366. default: true
  47367. },
  47368. ]
  47369. ))
  47370. characterMakers.push(() => makeCharacter(
  47371. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  47372. {
  47373. back: {
  47374. height: math.unit(15, "feet"),
  47375. name: "Back",
  47376. image: {
  47377. source: "./media/characters/nadezda-fex/back.svg",
  47378. extra: 1695/1481,
  47379. bottom: 25/1720
  47380. }
  47381. },
  47382. },
  47383. [
  47384. {
  47385. name: "Normal",
  47386. height: math.unit(15, "feet"),
  47387. default: true
  47388. },
  47389. {
  47390. name: "Macro",
  47391. height: math.unit(2.5, "miles")
  47392. },
  47393. {
  47394. name: "Goddess",
  47395. height: math.unit(2, "multiverses")
  47396. },
  47397. ]
  47398. ))
  47399. characterMakers.push(() => makeCharacter(
  47400. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  47401. {
  47402. front: {
  47403. height: math.unit(216, "cm"),
  47404. name: "Front",
  47405. image: {
  47406. source: "./media/characters/lev/front.svg",
  47407. extra: 1728/1670,
  47408. bottom: 82/1810
  47409. }
  47410. },
  47411. back: {
  47412. height: math.unit(216, "cm"),
  47413. name: "Back",
  47414. image: {
  47415. source: "./media/characters/lev/back.svg",
  47416. extra: 1738/1675,
  47417. bottom: 24/1762
  47418. }
  47419. },
  47420. dressed: {
  47421. height: math.unit(216, "cm"),
  47422. name: "Dressed",
  47423. image: {
  47424. source: "./media/characters/lev/dressed.svg",
  47425. extra: 1397/1351,
  47426. bottom: 73/1470
  47427. }
  47428. },
  47429. head: {
  47430. height: math.unit(0.51, "meter"),
  47431. name: "Head",
  47432. image: {
  47433. source: "./media/characters/lev/head.svg"
  47434. }
  47435. },
  47436. },
  47437. [
  47438. {
  47439. name: "Normal",
  47440. height: math.unit(216, "cm"),
  47441. default: true
  47442. },
  47443. {
  47444. name: "Relatively Macro",
  47445. height: math.unit(80, "meters")
  47446. },
  47447. {
  47448. name: "Megamacro",
  47449. height: math.unit(21600, "meters")
  47450. },
  47451. {
  47452. name: "Megamacro+",
  47453. height: math.unit(64800, "meters")
  47454. },
  47455. ]
  47456. ))
  47457. characterMakers.push(() => makeCharacter(
  47458. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  47459. {
  47460. front: {
  47461. height: math.unit(2, "meters"),
  47462. weight: math.unit(80, "kg"),
  47463. name: "Front",
  47464. image: {
  47465. source: "./media/characters/moka/front.svg",
  47466. extra: 1337/1255,
  47467. bottom: 58/1395
  47468. }
  47469. },
  47470. },
  47471. [
  47472. {
  47473. name: "Micro",
  47474. height: math.unit(15, "cm")
  47475. },
  47476. {
  47477. name: "Normal",
  47478. height: math.unit(2, "meters"),
  47479. default: true
  47480. },
  47481. {
  47482. name: "Macro",
  47483. height: math.unit(20, "meters"),
  47484. },
  47485. ]
  47486. ))
  47487. characterMakers.push(() => makeCharacter(
  47488. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  47489. {
  47490. front: {
  47491. height: math.unit(9, "feet"),
  47492. weight: math.unit(240, "lb"),
  47493. name: "Front",
  47494. image: {
  47495. source: "./media/characters/kuzco/front.svg",
  47496. extra: 1593/1487,
  47497. bottom: 32/1625
  47498. }
  47499. },
  47500. side: {
  47501. height: math.unit(9, "feet"),
  47502. weight: math.unit(240, "lb"),
  47503. name: "Side",
  47504. image: {
  47505. source: "./media/characters/kuzco/side.svg",
  47506. extra: 1575/1485,
  47507. bottom: 30/1605
  47508. }
  47509. },
  47510. back: {
  47511. height: math.unit(9, "feet"),
  47512. weight: math.unit(240, "lb"),
  47513. name: "Back",
  47514. image: {
  47515. source: "./media/characters/kuzco/back.svg",
  47516. extra: 1603/1514,
  47517. bottom: 14/1617
  47518. }
  47519. },
  47520. },
  47521. [
  47522. {
  47523. name: "Normal",
  47524. height: math.unit(9, "feet"),
  47525. default: true
  47526. },
  47527. ]
  47528. ))
  47529. characterMakers.push(() => makeCharacter(
  47530. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  47531. {
  47532. side: {
  47533. height: math.unit(2, "meters"),
  47534. weight: math.unit(300, "kg"),
  47535. name: "Side",
  47536. image: {
  47537. source: "./media/characters/ceruleus/side.svg",
  47538. extra: 1068/974,
  47539. bottom: 126/1194
  47540. }
  47541. },
  47542. maw: {
  47543. height: math.unit(0.8125, "meter"),
  47544. name: "Maw",
  47545. image: {
  47546. source: "./media/characters/ceruleus/maw.svg"
  47547. }
  47548. },
  47549. },
  47550. [
  47551. {
  47552. name: "Normal",
  47553. height: math.unit(16, "meters"),
  47554. default: true
  47555. },
  47556. ]
  47557. ))
  47558. characterMakers.push(() => makeCharacter(
  47559. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  47560. {
  47561. front: {
  47562. height: math.unit(9, "feet"),
  47563. weight: math.unit(500, "kg"),
  47564. name: "Front",
  47565. image: {
  47566. source: "./media/characters/acouya/front.svg",
  47567. extra: 1660/1473,
  47568. bottom: 28/1688
  47569. }
  47570. },
  47571. },
  47572. [
  47573. {
  47574. name: "Normal",
  47575. height: math.unit(9, "feet"),
  47576. default: true
  47577. },
  47578. ]
  47579. ))
  47580. characterMakers.push(() => makeCharacter(
  47581. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  47582. {
  47583. front: {
  47584. height: math.unit(5 + 6/12, "feet"),
  47585. weight: math.unit(195, "lb"),
  47586. name: "Front",
  47587. image: {
  47588. source: "./media/characters/vant/front.svg",
  47589. extra: 1396/1320,
  47590. bottom: 20/1416
  47591. }
  47592. },
  47593. back: {
  47594. height: math.unit(5 + 6/12, "feet"),
  47595. weight: math.unit(195, "lb"),
  47596. name: "Back",
  47597. image: {
  47598. source: "./media/characters/vant/back.svg",
  47599. extra: 1396/1320,
  47600. bottom: 20/1416
  47601. }
  47602. },
  47603. maw: {
  47604. height: math.unit(0.75, "feet"),
  47605. name: "Maw",
  47606. image: {
  47607. source: "./media/characters/vant/maw.svg"
  47608. }
  47609. },
  47610. paw: {
  47611. height: math.unit(1.07, "feet"),
  47612. name: "Paw",
  47613. image: {
  47614. source: "./media/characters/vant/paw.svg"
  47615. }
  47616. },
  47617. },
  47618. [
  47619. {
  47620. name: "Micro",
  47621. height: math.unit(0.25, "inches")
  47622. },
  47623. {
  47624. name: "Normal",
  47625. height: math.unit(5 + 6/12, "feet"),
  47626. default: true
  47627. },
  47628. {
  47629. name: "Macro",
  47630. height: math.unit(75, "feet")
  47631. },
  47632. ]
  47633. ))
  47634. characterMakers.push(() => makeCharacter(
  47635. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  47636. {
  47637. front: {
  47638. height: math.unit(30, "meters"),
  47639. weight: math.unit(363, "tons"),
  47640. name: "Front",
  47641. image: {
  47642. source: "./media/characters/ahra/front.svg",
  47643. extra: 1914/1814,
  47644. bottom: 46/1960
  47645. }
  47646. },
  47647. },
  47648. [
  47649. {
  47650. name: "Macro",
  47651. height: math.unit(30, "meters"),
  47652. default: true
  47653. },
  47654. ]
  47655. ))
  47656. characterMakers.push(() => makeCharacter(
  47657. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  47658. {
  47659. undressed: {
  47660. height: math.unit(2, "m"),
  47661. weight: math.unit(250, "kg"),
  47662. name: "Undressed",
  47663. image: {
  47664. source: "./media/characters/coriander/undressed.svg",
  47665. extra: 1757/1606,
  47666. bottom: 107/1864
  47667. }
  47668. },
  47669. dressed: {
  47670. height: math.unit(2, "m"),
  47671. weight: math.unit(250, "kg"),
  47672. name: "Dressed",
  47673. image: {
  47674. source: "./media/characters/coriander/dressed.svg",
  47675. extra: 1757/1606,
  47676. bottom: 107/1864
  47677. }
  47678. },
  47679. },
  47680. [
  47681. {
  47682. name: "Normal",
  47683. height: math.unit(4, "meters"),
  47684. default: true
  47685. },
  47686. {
  47687. name: "XL",
  47688. height: math.unit(6, "meters")
  47689. },
  47690. {
  47691. name: "XXL",
  47692. height: math.unit(8, "meters")
  47693. },
  47694. ]
  47695. ))
  47696. characterMakers.push(() => makeCharacter(
  47697. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  47698. {
  47699. front: {
  47700. height: math.unit(6, "feet"),
  47701. name: "Front",
  47702. image: {
  47703. source: "./media/characters/syrinx/front.svg",
  47704. extra: 1557/1259,
  47705. bottom: 171/1728
  47706. }
  47707. },
  47708. },
  47709. [
  47710. {
  47711. name: "Normal",
  47712. height: math.unit(6 + 3/12, "feet"),
  47713. default: true
  47714. },
  47715. ]
  47716. ))
  47717. characterMakers.push(() => makeCharacter(
  47718. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  47719. {
  47720. front: {
  47721. height: math.unit(11 + 6/12, "feet"),
  47722. weight: math.unit(1.5, "tons"),
  47723. name: "Front",
  47724. image: {
  47725. source: "./media/characters/bor/front.svg",
  47726. extra: 1189/1109,
  47727. bottom: 170/1359
  47728. }
  47729. },
  47730. },
  47731. [
  47732. {
  47733. name: "Normal",
  47734. height: math.unit(11 + 6/12, "feet"),
  47735. default: true
  47736. },
  47737. {
  47738. name: "Macro",
  47739. height: math.unit(32 + 9/12, "feet")
  47740. },
  47741. ]
  47742. ))
  47743. characterMakers.push(() => makeCharacter(
  47744. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  47745. {
  47746. anthro: {
  47747. height: math.unit(9, "feet"),
  47748. weight: math.unit(2076, "lb"),
  47749. name: "Anthro",
  47750. image: {
  47751. source: "./media/characters/abacus/anthro.svg",
  47752. extra: 1540/1494,
  47753. bottom: 233/1773
  47754. }
  47755. },
  47756. pigeon: {
  47757. height: math.unit(1, "feet"),
  47758. name: "Pigeon",
  47759. image: {
  47760. source: "./media/characters/abacus/pigeon.svg",
  47761. extra: 528/525,
  47762. bottom: 46/574
  47763. }
  47764. },
  47765. },
  47766. [
  47767. {
  47768. name: "Normal",
  47769. height: math.unit(9, "feet"),
  47770. default: true
  47771. },
  47772. ]
  47773. ))
  47774. characterMakers.push(() => makeCharacter(
  47775. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  47776. {
  47777. side: {
  47778. height: math.unit(6, "feet"),
  47779. name: "Side",
  47780. image: {
  47781. source: "./media/characters/delkhan/side.svg",
  47782. extra: 1884/1786,
  47783. bottom: 308/2192
  47784. }
  47785. },
  47786. head: {
  47787. height: math.unit(3.38, "feet"),
  47788. name: "Head",
  47789. image: {
  47790. source: "./media/characters/delkhan/head.svg"
  47791. }
  47792. },
  47793. },
  47794. [
  47795. {
  47796. name: "Normal",
  47797. height: math.unit(72, "feet"),
  47798. default: true
  47799. },
  47800. {
  47801. name: "Giant",
  47802. height: math.unit(172, "feet")
  47803. },
  47804. ]
  47805. ))
  47806. characterMakers.push(() => makeCharacter(
  47807. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  47808. {
  47809. standing: {
  47810. height: math.unit(6, "feet"),
  47811. name: "Standing",
  47812. image: {
  47813. source: "./media/characters/euchidat/standing.svg",
  47814. extra: 1612/1553,
  47815. bottom: 116/1728
  47816. }
  47817. },
  47818. leaning: {
  47819. height: math.unit(6, "feet"),
  47820. name: "Leaning",
  47821. image: {
  47822. source: "./media/characters/euchidat/leaning.svg",
  47823. extra: 1719/1674,
  47824. bottom: 27/1746
  47825. }
  47826. },
  47827. },
  47828. [
  47829. {
  47830. name: "Normal",
  47831. height: math.unit(175, "feet"),
  47832. default: true
  47833. },
  47834. {
  47835. name: "Megamacro",
  47836. height: math.unit(190, "miles")
  47837. },
  47838. {
  47839. name: "Gigamacro",
  47840. height: math.unit(190000, "miles")
  47841. },
  47842. ]
  47843. ))
  47844. characterMakers.push(() => makeCharacter(
  47845. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  47846. {
  47847. front: {
  47848. height: math.unit(6, "feet"),
  47849. weight: math.unit(150, "lb"),
  47850. name: "Front",
  47851. image: {
  47852. source: "./media/characters/rebecca-stack/front.svg",
  47853. extra: 1256/1201,
  47854. bottom: 18/1274
  47855. }
  47856. },
  47857. },
  47858. [
  47859. {
  47860. name: "Normal",
  47861. height: math.unit(5 + 8/12, "feet"),
  47862. default: true
  47863. },
  47864. {
  47865. name: "Demolitionist",
  47866. height: math.unit(200, "feet")
  47867. },
  47868. {
  47869. name: "Out of Control",
  47870. height: math.unit(2, "miles")
  47871. },
  47872. {
  47873. name: "Giga",
  47874. height: math.unit(7200, "miles")
  47875. },
  47876. ]
  47877. ))
  47878. characterMakers.push(() => makeCharacter(
  47879. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47880. {
  47881. front: {
  47882. height: math.unit(6, "feet"),
  47883. weight: math.unit(150, "lb"),
  47884. name: "Front",
  47885. image: {
  47886. source: "./media/characters/jenny-cartwright/front.svg",
  47887. extra: 1384/1376,
  47888. bottom: 58/1442
  47889. }
  47890. },
  47891. },
  47892. [
  47893. {
  47894. name: "Normal",
  47895. height: math.unit(6 + 7/12, "feet"),
  47896. default: true
  47897. },
  47898. {
  47899. name: "Librarian",
  47900. height: math.unit(55, "feet")
  47901. },
  47902. {
  47903. name: "Sightseer",
  47904. height: math.unit(50, "miles")
  47905. },
  47906. {
  47907. name: "Giga",
  47908. height: math.unit(30000, "miles")
  47909. },
  47910. ]
  47911. ))
  47912. characterMakers.push(() => makeCharacter(
  47913. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47914. {
  47915. nude: {
  47916. height: math.unit(8, "feet"),
  47917. weight: math.unit(225, "lb"),
  47918. name: "Nude",
  47919. image: {
  47920. source: "./media/characters/marvy/nude.svg",
  47921. extra: 1900/1683,
  47922. bottom: 89/1989
  47923. }
  47924. },
  47925. dressed: {
  47926. height: math.unit(8, "feet"),
  47927. weight: math.unit(225, "lb"),
  47928. name: "Dressed",
  47929. image: {
  47930. source: "./media/characters/marvy/dressed.svg",
  47931. extra: 1900/1683,
  47932. bottom: 89/1989
  47933. }
  47934. },
  47935. head: {
  47936. height: math.unit(2.85, "feet"),
  47937. name: "Head",
  47938. image: {
  47939. source: "./media/characters/marvy/head.svg"
  47940. }
  47941. },
  47942. },
  47943. [
  47944. {
  47945. name: "Normal",
  47946. height: math.unit(8, "feet"),
  47947. default: true
  47948. },
  47949. ]
  47950. ))
  47951. characterMakers.push(() => makeCharacter(
  47952. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47953. {
  47954. front: {
  47955. height: math.unit(8, "feet"),
  47956. weight: math.unit(250, "lb"),
  47957. name: "Front",
  47958. image: {
  47959. source: "./media/characters/leah/front.svg",
  47960. extra: 1257/1149,
  47961. bottom: 109/1366
  47962. }
  47963. },
  47964. },
  47965. [
  47966. {
  47967. name: "Normal",
  47968. height: math.unit(8, "feet"),
  47969. default: true
  47970. },
  47971. {
  47972. name: "Minimacro",
  47973. height: math.unit(40, "feet")
  47974. },
  47975. {
  47976. name: "Macro",
  47977. height: math.unit(124, "feet")
  47978. },
  47979. {
  47980. name: "Megamacro",
  47981. height: math.unit(850, "feet")
  47982. },
  47983. ]
  47984. ))
  47985. characterMakers.push(() => makeCharacter(
  47986. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47987. {
  47988. side: {
  47989. height: math.unit(13 + 6/12, "feet"),
  47990. weight: math.unit(3200, "lb"),
  47991. name: "Side",
  47992. image: {
  47993. source: "./media/characters/alvir/side.svg",
  47994. extra: 896/589,
  47995. bottom: 26/922
  47996. }
  47997. },
  47998. },
  47999. [
  48000. {
  48001. name: "Normal",
  48002. height: math.unit(13 + 6/12, "feet"),
  48003. default: true
  48004. },
  48005. ]
  48006. ))
  48007. characterMakers.push(() => makeCharacter(
  48008. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  48009. {
  48010. front: {
  48011. height: math.unit(5 + 4/12, "feet"),
  48012. weight: math.unit(236, "lb"),
  48013. name: "Front",
  48014. image: {
  48015. source: "./media/characters/zaina-khalil/front.svg",
  48016. extra: 1533/1485,
  48017. bottom: 94/1627
  48018. }
  48019. },
  48020. side: {
  48021. height: math.unit(5 + 4/12, "feet"),
  48022. weight: math.unit(236, "lb"),
  48023. name: "Side",
  48024. image: {
  48025. source: "./media/characters/zaina-khalil/side.svg",
  48026. extra: 1537/1498,
  48027. bottom: 66/1603
  48028. }
  48029. },
  48030. back: {
  48031. height: math.unit(5 + 4/12, "feet"),
  48032. weight: math.unit(236, "lb"),
  48033. name: "Back",
  48034. image: {
  48035. source: "./media/characters/zaina-khalil/back.svg",
  48036. extra: 1546/1494,
  48037. bottom: 89/1635
  48038. }
  48039. },
  48040. },
  48041. [
  48042. {
  48043. name: "Normal",
  48044. height: math.unit(5 + 4/12, "feet"),
  48045. default: true
  48046. },
  48047. ]
  48048. ))
  48049. characterMakers.push(() => makeCharacter(
  48050. { name: "Terry", species: ["husky"], tags: ["taur"] },
  48051. {
  48052. side: {
  48053. height: math.unit(12, "feet"),
  48054. weight: math.unit(4000, "lb"),
  48055. name: "Side",
  48056. image: {
  48057. source: "./media/characters/terry/side.svg",
  48058. extra: 1518/1439,
  48059. bottom: 149/1667
  48060. }
  48061. },
  48062. },
  48063. [
  48064. {
  48065. name: "Normal",
  48066. height: math.unit(12, "feet"),
  48067. default: true
  48068. },
  48069. ]
  48070. ))
  48071. characterMakers.push(() => makeCharacter(
  48072. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  48073. {
  48074. front: {
  48075. height: math.unit(12, "feet"),
  48076. weight: math.unit(1500, "lb"),
  48077. name: "Front",
  48078. image: {
  48079. source: "./media/characters/kahea/front.svg",
  48080. extra: 1722/1617,
  48081. bottom: 179/1901
  48082. }
  48083. },
  48084. },
  48085. [
  48086. {
  48087. name: "Normal",
  48088. height: math.unit(12, "feet"),
  48089. default: true
  48090. },
  48091. ]
  48092. ))
  48093. characterMakers.push(() => makeCharacter(
  48094. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  48095. {
  48096. demonFront: {
  48097. height: math.unit(36, "feet"),
  48098. name: "Front",
  48099. image: {
  48100. source: "./media/characters/alex-xuria/demon-front.svg",
  48101. extra: 1705/1673,
  48102. bottom: 198/1903
  48103. },
  48104. form: "demon",
  48105. default: true
  48106. },
  48107. demonBack: {
  48108. height: math.unit(36, "feet"),
  48109. name: "Back",
  48110. image: {
  48111. source: "./media/characters/alex-xuria/demon-back.svg",
  48112. extra: 1725/1693,
  48113. bottom: 70/1795
  48114. },
  48115. form: "demon"
  48116. },
  48117. demonHead: {
  48118. height: math.unit(2.14, "meters"),
  48119. name: "Head",
  48120. image: {
  48121. source: "./media/characters/alex-xuria/demon-head.svg"
  48122. },
  48123. form: "demon"
  48124. },
  48125. demonHand: {
  48126. height: math.unit(1.61, "meters"),
  48127. name: "Hand",
  48128. image: {
  48129. source: "./media/characters/alex-xuria/demon-hand.svg"
  48130. },
  48131. form: "demon"
  48132. },
  48133. demonPaw: {
  48134. height: math.unit(1.35, "meters"),
  48135. name: "Paw",
  48136. image: {
  48137. source: "./media/characters/alex-xuria/demon-paw.svg"
  48138. },
  48139. form: "demon"
  48140. },
  48141. demonFoot: {
  48142. height: math.unit(2.2, "meters"),
  48143. name: "Foot",
  48144. image: {
  48145. source: "./media/characters/alex-xuria/demon-foot.svg"
  48146. },
  48147. form: "demon"
  48148. },
  48149. demonCock: {
  48150. height: math.unit(1.74, "meters"),
  48151. name: "Cock",
  48152. image: {
  48153. source: "./media/characters/alex-xuria/demon-cock.svg"
  48154. },
  48155. form: "demon"
  48156. },
  48157. demonTailClosed: {
  48158. height: math.unit(1.47, "meters"),
  48159. name: "Tail (Closed)",
  48160. image: {
  48161. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  48162. },
  48163. form: "demon"
  48164. },
  48165. demonTailOpen: {
  48166. height: math.unit(2.85, "meters"),
  48167. name: "Tail (Open)",
  48168. image: {
  48169. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  48170. },
  48171. form: "demon"
  48172. },
  48173. incubusFront: {
  48174. height: math.unit(12, "feet"),
  48175. name: "Front",
  48176. image: {
  48177. source: "./media/characters/alex-xuria/incubus-front.svg",
  48178. extra: 1754/1677,
  48179. bottom: 125/1879
  48180. },
  48181. form: "incubus",
  48182. default: true
  48183. },
  48184. incubusBack: {
  48185. height: math.unit(12, "feet"),
  48186. name: "Back",
  48187. image: {
  48188. source: "./media/characters/alex-xuria/incubus-back.svg",
  48189. extra: 1702/1647,
  48190. bottom: 30/1732
  48191. },
  48192. form: "incubus"
  48193. },
  48194. incubusHead: {
  48195. height: math.unit(3.45, "feet"),
  48196. name: "Head",
  48197. image: {
  48198. source: "./media/characters/alex-xuria/incubus-head.svg"
  48199. },
  48200. form: "incubus"
  48201. },
  48202. rabbitFront: {
  48203. height: math.unit(6, "feet"),
  48204. name: "Front",
  48205. image: {
  48206. source: "./media/characters/alex-xuria/rabbit-front.svg",
  48207. extra: 1369/1349,
  48208. bottom: 45/1414
  48209. },
  48210. form: "rabbit",
  48211. default: true
  48212. },
  48213. rabbitSide: {
  48214. height: math.unit(6, "feet"),
  48215. name: "Side",
  48216. image: {
  48217. source: "./media/characters/alex-xuria/rabbit-side.svg",
  48218. extra: 1370/1356,
  48219. bottom: 37/1407
  48220. },
  48221. form: "rabbit"
  48222. },
  48223. rabbitBack: {
  48224. height: math.unit(6, "feet"),
  48225. name: "Back",
  48226. image: {
  48227. source: "./media/characters/alex-xuria/rabbit-back.svg",
  48228. extra: 1375/1358,
  48229. bottom: 43/1418
  48230. },
  48231. form: "rabbit"
  48232. },
  48233. },
  48234. [
  48235. {
  48236. name: "Normal",
  48237. height: math.unit(6, "feet"),
  48238. default: true,
  48239. form: "rabbit"
  48240. },
  48241. {
  48242. name: "Incubus",
  48243. height: math.unit(12, "feet"),
  48244. default: true,
  48245. form: "incubus"
  48246. },
  48247. {
  48248. name: "Demon",
  48249. height: math.unit(36, "feet"),
  48250. default: true,
  48251. form: "demon"
  48252. }
  48253. ],
  48254. {
  48255. "demon": {
  48256. name: "Demon",
  48257. default: true
  48258. },
  48259. "incubus": {
  48260. name: "Incubus",
  48261. },
  48262. "rabbit": {
  48263. name: "Rabbit"
  48264. }
  48265. }
  48266. ))
  48267. characterMakers.push(() => makeCharacter(
  48268. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  48269. {
  48270. front: {
  48271. height: math.unit(7 + 5/12, "feet"),
  48272. weight: math.unit(510, "lb"),
  48273. name: "Front",
  48274. image: {
  48275. source: "./media/characters/syrup/front.svg",
  48276. extra: 932/916,
  48277. bottom: 26/958
  48278. }
  48279. },
  48280. },
  48281. [
  48282. {
  48283. name: "Normal",
  48284. height: math.unit(7 + 5/12, "feet"),
  48285. default: true
  48286. },
  48287. {
  48288. name: "Big",
  48289. height: math.unit(50, "feet")
  48290. },
  48291. {
  48292. name: "Macro",
  48293. height: math.unit(300, "feet")
  48294. },
  48295. {
  48296. name: "Megamacro",
  48297. height: math.unit(1, "mile")
  48298. },
  48299. ]
  48300. ))
  48301. characterMakers.push(() => makeCharacter(
  48302. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  48303. {
  48304. front: {
  48305. height: math.unit(6 + 9/12, "feet"),
  48306. name: "Front",
  48307. image: {
  48308. source: "./media/characters/zeimne/front.svg",
  48309. extra: 1969/1806,
  48310. bottom: 53/2022
  48311. }
  48312. },
  48313. },
  48314. [
  48315. {
  48316. name: "Normal",
  48317. height: math.unit(6 + 9/12, "feet"),
  48318. default: true
  48319. },
  48320. {
  48321. name: "Giant",
  48322. height: math.unit(550, "feet")
  48323. },
  48324. {
  48325. name: "Mega",
  48326. height: math.unit(3, "miles")
  48327. },
  48328. {
  48329. name: "Giga",
  48330. height: math.unit(250, "miles")
  48331. },
  48332. {
  48333. name: "Tera",
  48334. height: math.unit(1, "AU")
  48335. },
  48336. ]
  48337. ))
  48338. characterMakers.push(() => makeCharacter(
  48339. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  48340. {
  48341. front: {
  48342. height: math.unit(5 + 2/12, "feet"),
  48343. name: "Front",
  48344. image: {
  48345. source: "./media/characters/grar/front.svg",
  48346. extra: 1331/1119,
  48347. bottom: 60/1391
  48348. }
  48349. },
  48350. back: {
  48351. height: math.unit(5 + 2/12, "feet"),
  48352. name: "Back",
  48353. image: {
  48354. source: "./media/characters/grar/back.svg",
  48355. extra: 1385/1169,
  48356. bottom: 23/1408
  48357. }
  48358. },
  48359. },
  48360. [
  48361. {
  48362. name: "Normal",
  48363. height: math.unit(5 + 2/12, "feet"),
  48364. default: true
  48365. },
  48366. ]
  48367. ))
  48368. characterMakers.push(() => makeCharacter(
  48369. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  48370. {
  48371. front: {
  48372. height: math.unit(13 + 7/12, "feet"),
  48373. weight: math.unit(2200, "lb"),
  48374. name: "Front",
  48375. image: {
  48376. source: "./media/characters/endraya/front.svg",
  48377. extra: 1289/1215,
  48378. bottom: 50/1339
  48379. }
  48380. },
  48381. nude: {
  48382. height: math.unit(13 + 7/12, "feet"),
  48383. weight: math.unit(2200, "lb"),
  48384. name: "Nude",
  48385. image: {
  48386. source: "./media/characters/endraya/nude.svg",
  48387. extra: 1247/1171,
  48388. bottom: 40/1287
  48389. }
  48390. },
  48391. head: {
  48392. height: math.unit(2.6, "feet"),
  48393. name: "Head",
  48394. image: {
  48395. source: "./media/characters/endraya/head.svg"
  48396. }
  48397. },
  48398. slit: {
  48399. height: math.unit(3.4, "feet"),
  48400. name: "Slit",
  48401. image: {
  48402. source: "./media/characters/endraya/slit.svg"
  48403. }
  48404. },
  48405. },
  48406. [
  48407. {
  48408. name: "Normal",
  48409. height: math.unit(13 + 7/12, "feet"),
  48410. default: true
  48411. },
  48412. {
  48413. name: "Macro",
  48414. height: math.unit(200, "feet")
  48415. },
  48416. ]
  48417. ))
  48418. characterMakers.push(() => makeCharacter(
  48419. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  48420. {
  48421. front: {
  48422. height: math.unit(1.81, "meters"),
  48423. weight: math.unit(69, "kg"),
  48424. name: "Front",
  48425. image: {
  48426. source: "./media/characters/rodryana/front.svg",
  48427. extra: 2002/1921,
  48428. bottom: 53/2055
  48429. }
  48430. },
  48431. back: {
  48432. height: math.unit(1.81, "meters"),
  48433. weight: math.unit(69, "kg"),
  48434. name: "Back",
  48435. image: {
  48436. source: "./media/characters/rodryana/back.svg",
  48437. extra: 1993/1926,
  48438. bottom: 48/2041
  48439. }
  48440. },
  48441. maw: {
  48442. height: math.unit(0.19769417475, "meters"),
  48443. name: "Maw",
  48444. image: {
  48445. source: "./media/characters/rodryana/maw.svg"
  48446. }
  48447. },
  48448. slit: {
  48449. height: math.unit(0.31631067961, "meters"),
  48450. name: "Slit",
  48451. image: {
  48452. source: "./media/characters/rodryana/slit.svg"
  48453. }
  48454. },
  48455. },
  48456. [
  48457. {
  48458. name: "Normal",
  48459. height: math.unit(1.81, "meters")
  48460. },
  48461. {
  48462. name: "Mini Macro",
  48463. height: math.unit(181, "meters")
  48464. },
  48465. {
  48466. name: "Macro",
  48467. height: math.unit(452, "meters"),
  48468. default: true
  48469. },
  48470. {
  48471. name: "Mega Macro",
  48472. height: math.unit(1.375, "km")
  48473. },
  48474. {
  48475. name: "Giga Macro",
  48476. height: math.unit(13.575, "km")
  48477. },
  48478. ]
  48479. ))
  48480. characterMakers.push(() => makeCharacter(
  48481. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  48482. {
  48483. front: {
  48484. height: math.unit(6, "feet"),
  48485. weight: math.unit(1000, "lb"),
  48486. name: "Front",
  48487. image: {
  48488. source: "./media/characters/asaya/front.svg",
  48489. extra: 1460/1200,
  48490. bottom: 71/1531
  48491. }
  48492. },
  48493. },
  48494. [
  48495. {
  48496. name: "Normal",
  48497. height: math.unit(8, "km"),
  48498. default: true
  48499. },
  48500. ]
  48501. ))
  48502. characterMakers.push(() => makeCharacter(
  48503. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  48504. {
  48505. front: {
  48506. height: math.unit(3.5, "meters"),
  48507. name: "Front",
  48508. image: {
  48509. source: "./media/characters/sarzu-and-israz/front.svg",
  48510. extra: 1570/1558,
  48511. bottom: 150/1720
  48512. },
  48513. },
  48514. back: {
  48515. height: math.unit(3.5, "meters"),
  48516. name: "Back",
  48517. image: {
  48518. source: "./media/characters/sarzu-and-israz/back.svg",
  48519. extra: 1523/1509,
  48520. bottom: 132/1655
  48521. },
  48522. },
  48523. frontFemale: {
  48524. height: math.unit(3.5, "meters"),
  48525. name: "Front (Female)",
  48526. image: {
  48527. source: "./media/characters/sarzu-and-israz/front-female.svg",
  48528. extra: 1570/1558,
  48529. bottom: 150/1720
  48530. },
  48531. },
  48532. frontHerm: {
  48533. height: math.unit(3.5, "meters"),
  48534. name: "Front (Herm)",
  48535. image: {
  48536. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  48537. extra: 1570/1558,
  48538. bottom: 150/1720
  48539. },
  48540. },
  48541. },
  48542. [
  48543. {
  48544. name: "Normal",
  48545. height: math.unit(3.5, "meters"),
  48546. default: true,
  48547. },
  48548. {
  48549. name: "Macro",
  48550. height: math.unit(65.5, "meters"),
  48551. },
  48552. ],
  48553. ))
  48554. characterMakers.push(() => makeCharacter(
  48555. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  48556. {
  48557. front: {
  48558. height: math.unit(6, "feet"),
  48559. weight: math.unit(250, "lb"),
  48560. name: "Front",
  48561. image: {
  48562. source: "./media/characters/zenimma/front.svg",
  48563. extra: 1346/1320,
  48564. bottom: 58/1404
  48565. }
  48566. },
  48567. back: {
  48568. height: math.unit(6, "feet"),
  48569. weight: math.unit(250, "lb"),
  48570. name: "Back",
  48571. image: {
  48572. source: "./media/characters/zenimma/back.svg",
  48573. extra: 1324/1308,
  48574. bottom: 44/1368
  48575. }
  48576. },
  48577. dick: {
  48578. height: math.unit(1.44, "feet"),
  48579. name: "Dick",
  48580. image: {
  48581. source: "./media/characters/zenimma/dick.svg"
  48582. }
  48583. },
  48584. },
  48585. [
  48586. {
  48587. name: "Canon Height",
  48588. height: math.unit(66, "miles"),
  48589. default: true
  48590. },
  48591. ]
  48592. ))
  48593. characterMakers.push(() => makeCharacter(
  48594. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  48595. {
  48596. nude: {
  48597. height: math.unit(6, "feet"),
  48598. weight: math.unit(150, "lb"),
  48599. name: "Nude",
  48600. image: {
  48601. source: "./media/characters/shavon/nude.svg",
  48602. extra: 1242/1096,
  48603. bottom: 98/1340
  48604. }
  48605. },
  48606. dressed: {
  48607. height: math.unit(6, "feet"),
  48608. weight: math.unit(150, "lb"),
  48609. name: "Dressed",
  48610. image: {
  48611. source: "./media/characters/shavon/dressed.svg",
  48612. extra: 1242/1096,
  48613. bottom: 98/1340
  48614. }
  48615. },
  48616. },
  48617. [
  48618. {
  48619. name: "Macro",
  48620. height: math.unit(255, "feet"),
  48621. default: true
  48622. },
  48623. ]
  48624. ))
  48625. characterMakers.push(() => makeCharacter(
  48626. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  48627. {
  48628. front: {
  48629. height: math.unit(6, "feet"),
  48630. name: "Front",
  48631. image: {
  48632. source: "./media/characters/steph/front.svg",
  48633. extra: 1430/1330,
  48634. bottom: 54/1484
  48635. }
  48636. },
  48637. },
  48638. [
  48639. {
  48640. name: "Normal",
  48641. height: math.unit(6, "feet"),
  48642. default: true
  48643. },
  48644. ]
  48645. ))
  48646. characterMakers.push(() => makeCharacter(
  48647. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  48648. {
  48649. front: {
  48650. height: math.unit(9, "feet"),
  48651. weight: math.unit(400, "lb"),
  48652. name: "Front",
  48653. image: {
  48654. source: "./media/characters/kil'aman/front.svg",
  48655. extra: 1210/1159,
  48656. bottom: 109/1319
  48657. }
  48658. },
  48659. head: {
  48660. height: math.unit(2.14, "feet"),
  48661. name: "Head",
  48662. image: {
  48663. source: "./media/characters/kil'aman/head.svg"
  48664. }
  48665. },
  48666. maw: {
  48667. height: math.unit(1.21, "feet"),
  48668. name: "Maw",
  48669. image: {
  48670. source: "./media/characters/kil'aman/maw.svg"
  48671. }
  48672. },
  48673. foot: {
  48674. height: math.unit(1.7, "feet"),
  48675. name: "Foot",
  48676. image: {
  48677. source: "./media/characters/kil'aman/foot.svg"
  48678. }
  48679. },
  48680. dick: {
  48681. height: math.unit(2.1, "feet"),
  48682. name: "Dick",
  48683. image: {
  48684. source: "./media/characters/kil'aman/dick.svg"
  48685. }
  48686. },
  48687. },
  48688. [
  48689. {
  48690. name: "Normal",
  48691. height: math.unit(9, "feet")
  48692. },
  48693. {
  48694. name: "Canon Height",
  48695. height: math.unit(10, "miles"),
  48696. default: true
  48697. },
  48698. {
  48699. name: "Maximum",
  48700. height: math.unit(6e9, "miles")
  48701. },
  48702. ]
  48703. ))
  48704. characterMakers.push(() => makeCharacter(
  48705. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  48706. {
  48707. front: {
  48708. height: math.unit(90, "feet"),
  48709. weight: math.unit(675000, "lb"),
  48710. name: "Front",
  48711. image: {
  48712. source: "./media/characters/qadan/front.svg",
  48713. extra: 1012/1004,
  48714. bottom: 78/1090
  48715. }
  48716. },
  48717. back: {
  48718. height: math.unit(90, "feet"),
  48719. weight: math.unit(675000, "lb"),
  48720. name: "Back",
  48721. image: {
  48722. source: "./media/characters/qadan/back.svg",
  48723. extra: 1042/1031,
  48724. bottom: 55/1097
  48725. }
  48726. },
  48727. armored: {
  48728. height: math.unit(90, "feet"),
  48729. weight: math.unit(675000, "lb"),
  48730. name: "Armored",
  48731. image: {
  48732. source: "./media/characters/qadan/armored.svg",
  48733. extra: 1047/1037,
  48734. bottom: 48/1095
  48735. }
  48736. },
  48737. },
  48738. [
  48739. {
  48740. name: "Normal",
  48741. height: math.unit(90, "feet"),
  48742. default: true
  48743. },
  48744. ]
  48745. ))
  48746. characterMakers.push(() => makeCharacter(
  48747. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  48748. {
  48749. front: {
  48750. height: math.unit(6, "feet"),
  48751. weight: math.unit(225, "lb"),
  48752. name: "Front",
  48753. image: {
  48754. source: "./media/characters/brooke/front.svg",
  48755. extra: 1050/1010,
  48756. bottom: 66/1116
  48757. }
  48758. },
  48759. back: {
  48760. height: math.unit(6, "feet"),
  48761. weight: math.unit(225, "lb"),
  48762. name: "Back",
  48763. image: {
  48764. source: "./media/characters/brooke/back.svg",
  48765. extra: 1053/1013,
  48766. bottom: 41/1094
  48767. }
  48768. },
  48769. dressed: {
  48770. height: math.unit(6, "feet"),
  48771. weight: math.unit(225, "lb"),
  48772. name: "Dressed",
  48773. image: {
  48774. source: "./media/characters/brooke/dressed.svg",
  48775. extra: 1050/1010,
  48776. bottom: 66/1116
  48777. }
  48778. },
  48779. },
  48780. [
  48781. {
  48782. name: "Canon Height",
  48783. height: math.unit(500, "miles"),
  48784. default: true
  48785. },
  48786. ]
  48787. ))
  48788. characterMakers.push(() => makeCharacter(
  48789. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  48790. {
  48791. front: {
  48792. height: math.unit(6 + 2/12, "feet"),
  48793. weight: math.unit(210, "lb"),
  48794. name: "Front",
  48795. image: {
  48796. source: "./media/characters/wubs/front.svg",
  48797. extra: 1345/1325,
  48798. bottom: 70/1415
  48799. }
  48800. },
  48801. back: {
  48802. height: math.unit(6 + 2/12, "feet"),
  48803. weight: math.unit(210, "lb"),
  48804. name: "Back",
  48805. image: {
  48806. source: "./media/characters/wubs/back.svg",
  48807. extra: 1296/1275,
  48808. bottom: 58/1354
  48809. }
  48810. },
  48811. },
  48812. [
  48813. {
  48814. name: "Normal",
  48815. height: math.unit(6 + 2/12, "feet"),
  48816. default: true
  48817. },
  48818. {
  48819. name: "Macro",
  48820. height: math.unit(1000, "feet")
  48821. },
  48822. {
  48823. name: "Megamacro",
  48824. height: math.unit(1, "mile")
  48825. },
  48826. ]
  48827. ))
  48828. characterMakers.push(() => makeCharacter(
  48829. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  48830. {
  48831. front: {
  48832. height: math.unit(4, "feet"),
  48833. weight: math.unit(120, "lb"),
  48834. name: "Front",
  48835. image: {
  48836. source: "./media/characters/blue/front.svg",
  48837. extra: 1636/1525,
  48838. bottom: 43/1679
  48839. }
  48840. },
  48841. back: {
  48842. height: math.unit(4, "feet"),
  48843. weight: math.unit(120, "lb"),
  48844. name: "Back",
  48845. image: {
  48846. source: "./media/characters/blue/back.svg",
  48847. extra: 1660/1560,
  48848. bottom: 57/1717
  48849. }
  48850. },
  48851. paws: {
  48852. height: math.unit(0.826, "feet"),
  48853. name: "Paws",
  48854. image: {
  48855. source: "./media/characters/blue/paws.svg"
  48856. }
  48857. },
  48858. },
  48859. [
  48860. {
  48861. name: "Micro",
  48862. height: math.unit(3, "inches")
  48863. },
  48864. {
  48865. name: "Normal",
  48866. height: math.unit(4, "feet"),
  48867. default: true
  48868. },
  48869. {
  48870. name: "Femenine Form",
  48871. height: math.unit(14, "feet")
  48872. },
  48873. {
  48874. name: "Werebat Form",
  48875. height: math.unit(18, "feet")
  48876. },
  48877. ]
  48878. ))
  48879. characterMakers.push(() => makeCharacter(
  48880. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48881. {
  48882. female: {
  48883. height: math.unit(7 + 4/12, "feet"),
  48884. weight: math.unit(243, "lb"),
  48885. name: "Female",
  48886. image: {
  48887. source: "./media/characters/kaya/female.svg",
  48888. extra: 975/898,
  48889. bottom: 34/1009
  48890. }
  48891. },
  48892. herm: {
  48893. height: math.unit(7 + 4/12, "feet"),
  48894. weight: math.unit(243, "lb"),
  48895. name: "Herm",
  48896. image: {
  48897. source: "./media/characters/kaya/herm.svg",
  48898. extra: 975/898,
  48899. bottom: 34/1009
  48900. }
  48901. },
  48902. },
  48903. [
  48904. {
  48905. name: "Normal",
  48906. height: math.unit(7 + 4/12, "feet"),
  48907. default: true
  48908. },
  48909. ]
  48910. ))
  48911. characterMakers.push(() => makeCharacter(
  48912. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48913. {
  48914. female: {
  48915. height: math.unit(9 + 4/12, "feet"),
  48916. weight: math.unit(398, "lb"),
  48917. name: "Female",
  48918. image: {
  48919. source: "./media/characters/kassandra/female.svg",
  48920. extra: 908/839,
  48921. bottom: 61/969
  48922. }
  48923. },
  48924. intersex: {
  48925. height: math.unit(9 + 4/12, "feet"),
  48926. weight: math.unit(398, "lb"),
  48927. name: "Intersex",
  48928. image: {
  48929. source: "./media/characters/kassandra/intersex.svg",
  48930. extra: 908/839,
  48931. bottom: 61/969
  48932. }
  48933. },
  48934. },
  48935. [
  48936. {
  48937. name: "Normal",
  48938. height: math.unit(9 + 4/12, "feet"),
  48939. default: true
  48940. },
  48941. ]
  48942. ))
  48943. characterMakers.push(() => makeCharacter(
  48944. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48945. {
  48946. front: {
  48947. height: math.unit(3, "meters"),
  48948. name: "Front",
  48949. image: {
  48950. source: "./media/characters/amy/front.svg",
  48951. extra: 1380/1343,
  48952. bottom: 70/1450
  48953. }
  48954. },
  48955. back: {
  48956. height: math.unit(3, "meters"),
  48957. name: "Back",
  48958. image: {
  48959. source: "./media/characters/amy/back.svg",
  48960. extra: 1380/1347,
  48961. bottom: 66/1446
  48962. }
  48963. },
  48964. },
  48965. [
  48966. {
  48967. name: "Normal",
  48968. height: math.unit(3, "meters"),
  48969. default: true
  48970. },
  48971. ]
  48972. ))
  48973. characterMakers.push(() => makeCharacter(
  48974. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48975. {
  48976. side: {
  48977. height: math.unit(47, "cm"),
  48978. weight: math.unit(10.8, "kg"),
  48979. name: "Side",
  48980. image: {
  48981. source: "./media/characters/alphaschakal/side.svg",
  48982. extra: 1058/568,
  48983. bottom: 62/1120
  48984. }
  48985. },
  48986. back: {
  48987. height: math.unit(78, "cm"),
  48988. weight: math.unit(10.8, "kg"),
  48989. name: "Back",
  48990. image: {
  48991. source: "./media/characters/alphaschakal/back.svg",
  48992. extra: 1102/942,
  48993. bottom: 185/1287
  48994. }
  48995. },
  48996. head: {
  48997. height: math.unit(28, "cm"),
  48998. name: "Head",
  48999. image: {
  49000. source: "./media/characters/alphaschakal/head.svg",
  49001. extra: 696/508,
  49002. bottom: 0/696
  49003. }
  49004. },
  49005. paw: {
  49006. height: math.unit(16, "cm"),
  49007. name: "Paw",
  49008. image: {
  49009. source: "./media/characters/alphaschakal/paw.svg"
  49010. }
  49011. },
  49012. },
  49013. [
  49014. {
  49015. name: "Normal",
  49016. height: math.unit(47, "cm"),
  49017. default: true
  49018. },
  49019. {
  49020. name: "Macro",
  49021. height: math.unit(340, "cm")
  49022. },
  49023. ]
  49024. ))
  49025. characterMakers.push(() => makeCharacter(
  49026. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  49027. {
  49028. front: {
  49029. height: math.unit(36, "earths"),
  49030. name: "Front",
  49031. image: {
  49032. source: "./media/characters/ecobyss/front.svg",
  49033. extra: 1282/1215,
  49034. bottom: 11/1293
  49035. }
  49036. },
  49037. back: {
  49038. height: math.unit(36, "earths"),
  49039. name: "Back",
  49040. image: {
  49041. source: "./media/characters/ecobyss/back.svg",
  49042. extra: 1291/1222,
  49043. bottom: 8/1299
  49044. }
  49045. },
  49046. },
  49047. [
  49048. {
  49049. name: "Normal",
  49050. height: math.unit(36, "earths"),
  49051. default: true
  49052. },
  49053. ]
  49054. ))
  49055. characterMakers.push(() => makeCharacter(
  49056. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  49057. {
  49058. front: {
  49059. height: math.unit(12, "feet"),
  49060. name: "Front",
  49061. image: {
  49062. source: "./media/characters/vasuk/front.svg",
  49063. extra: 1326/1207,
  49064. bottom: 64/1390
  49065. }
  49066. },
  49067. },
  49068. [
  49069. {
  49070. name: "Normal",
  49071. height: math.unit(12, "feet"),
  49072. default: true
  49073. },
  49074. ]
  49075. ))
  49076. characterMakers.push(() => makeCharacter(
  49077. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  49078. {
  49079. side: {
  49080. height: math.unit(100, "feet"),
  49081. name: "Side",
  49082. image: {
  49083. source: "./media/characters/linneaus/side.svg",
  49084. extra: 987/807,
  49085. bottom: 47/1034
  49086. }
  49087. },
  49088. },
  49089. [
  49090. {
  49091. name: "Macro",
  49092. height: math.unit(100, "feet"),
  49093. default: true
  49094. },
  49095. ]
  49096. ))
  49097. characterMakers.push(() => makeCharacter(
  49098. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  49099. {
  49100. front: {
  49101. height: math.unit(8, "feet"),
  49102. weight: math.unit(1200, "lb"),
  49103. name: "Front",
  49104. image: {
  49105. source: "./media/characters/nyterious-daligdig/front.svg",
  49106. extra: 1284/1094,
  49107. bottom: 84/1368
  49108. }
  49109. },
  49110. back: {
  49111. height: math.unit(8, "feet"),
  49112. weight: math.unit(1200, "lb"),
  49113. name: "Back",
  49114. image: {
  49115. source: "./media/characters/nyterious-daligdig/back.svg",
  49116. extra: 1301/1121,
  49117. bottom: 129/1430
  49118. }
  49119. },
  49120. mouth: {
  49121. height: math.unit(1.464, "feet"),
  49122. name: "Mouth",
  49123. image: {
  49124. source: "./media/characters/nyterious-daligdig/mouth.svg"
  49125. }
  49126. },
  49127. },
  49128. [
  49129. {
  49130. name: "Small",
  49131. height: math.unit(8, "feet"),
  49132. default: true
  49133. },
  49134. {
  49135. name: "Normal",
  49136. height: math.unit(15, "feet")
  49137. },
  49138. {
  49139. name: "Macro",
  49140. height: math.unit(90, "feet")
  49141. },
  49142. ]
  49143. ))
  49144. characterMakers.push(() => makeCharacter(
  49145. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  49146. {
  49147. front: {
  49148. height: math.unit(7 + 4/12, "feet"),
  49149. weight: math.unit(252, "lb"),
  49150. name: "Front",
  49151. image: {
  49152. source: "./media/characters/bandel/front.svg",
  49153. extra: 1946/1775,
  49154. bottom: 26/1972
  49155. }
  49156. },
  49157. back: {
  49158. height: math.unit(7 + 4/12, "feet"),
  49159. weight: math.unit(252, "lb"),
  49160. name: "Back",
  49161. image: {
  49162. source: "./media/characters/bandel/back.svg",
  49163. extra: 1940/1770,
  49164. bottom: 25/1965
  49165. }
  49166. },
  49167. maw: {
  49168. height: math.unit(2.15, "feet"),
  49169. name: "Maw",
  49170. image: {
  49171. source: "./media/characters/bandel/maw.svg"
  49172. }
  49173. },
  49174. stomach: {
  49175. height: math.unit(1.95, "feet"),
  49176. name: "Stomach",
  49177. image: {
  49178. source: "./media/characters/bandel/stomach.svg"
  49179. }
  49180. },
  49181. },
  49182. [
  49183. {
  49184. name: "Normal",
  49185. height: math.unit(7 + 4/12, "feet"),
  49186. default: true
  49187. },
  49188. ]
  49189. ))
  49190. characterMakers.push(() => makeCharacter(
  49191. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  49192. {
  49193. front: {
  49194. height: math.unit(10 + 5/12, "feet"),
  49195. weight: math.unit(773.5, "kg"),
  49196. name: "Front",
  49197. image: {
  49198. source: "./media/characters/zed/front.svg",
  49199. extra: 987/941,
  49200. bottom: 52/1039
  49201. }
  49202. },
  49203. },
  49204. [
  49205. {
  49206. name: "Short",
  49207. height: math.unit(5 + 4/12, "feet")
  49208. },
  49209. {
  49210. name: "Average",
  49211. height: math.unit(10 + 5/12, "feet"),
  49212. default: true
  49213. },
  49214. {
  49215. name: "Mini-Macro",
  49216. height: math.unit(24 + 9/12, "feet")
  49217. },
  49218. {
  49219. name: "Macro",
  49220. height: math.unit(249, "feet")
  49221. },
  49222. {
  49223. name: "Mega-Macro",
  49224. height: math.unit(12490, "feet")
  49225. },
  49226. {
  49227. name: "Giga-Macro",
  49228. height: math.unit(24.9, "miles")
  49229. },
  49230. {
  49231. name: "Tera-Macro",
  49232. height: math.unit(24900, "miles")
  49233. },
  49234. {
  49235. name: "Cosmic Scale",
  49236. height: math.unit(38.9, "lightyears")
  49237. },
  49238. {
  49239. name: "Universal Scale",
  49240. height: math.unit(138e12, "lightyears")
  49241. },
  49242. ]
  49243. ))
  49244. characterMakers.push(() => makeCharacter(
  49245. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  49246. {
  49247. front: {
  49248. height: math.unit(1561, "inches"),
  49249. name: "Front",
  49250. image: {
  49251. source: "./media/characters/ivan/front.svg",
  49252. extra: 1126/1071,
  49253. bottom: 26/1152
  49254. }
  49255. },
  49256. back: {
  49257. height: math.unit(1561, "inches"),
  49258. name: "Back",
  49259. image: {
  49260. source: "./media/characters/ivan/back.svg",
  49261. extra: 1134/1079,
  49262. bottom: 30/1164
  49263. }
  49264. },
  49265. },
  49266. [
  49267. {
  49268. name: "Normal",
  49269. height: math.unit(1561, "inches"),
  49270. default: true
  49271. },
  49272. ]
  49273. ))
  49274. characterMakers.push(() => makeCharacter(
  49275. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  49276. {
  49277. front: {
  49278. height: math.unit(5 + 7/12, "feet"),
  49279. weight: math.unit(150, "lb"),
  49280. name: "Front",
  49281. image: {
  49282. source: "./media/characters/robin-arctic-hare/front.svg",
  49283. extra: 1148/974,
  49284. bottom: 20/1168
  49285. }
  49286. },
  49287. },
  49288. [
  49289. {
  49290. name: "Normal",
  49291. height: math.unit(5 + 7/12, "feet"),
  49292. default: true
  49293. },
  49294. ]
  49295. ))
  49296. characterMakers.push(() => makeCharacter(
  49297. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  49298. {
  49299. side: {
  49300. height: math.unit(5, "feet"),
  49301. name: "Side",
  49302. image: {
  49303. source: "./media/characters/birch/side.svg",
  49304. extra: 985/796,
  49305. bottom: 111/1096
  49306. }
  49307. },
  49308. },
  49309. [
  49310. {
  49311. name: "Normal",
  49312. height: math.unit(5, "feet"),
  49313. default: true
  49314. },
  49315. ]
  49316. ))
  49317. characterMakers.push(() => makeCharacter(
  49318. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  49319. {
  49320. front: {
  49321. height: math.unit(4, "feet"),
  49322. name: "Front",
  49323. image: {
  49324. source: "./media/characters/rasp/front.svg",
  49325. extra: 561/478,
  49326. bottom: 74/635
  49327. }
  49328. },
  49329. },
  49330. [
  49331. {
  49332. name: "Normal",
  49333. height: math.unit(4, "feet"),
  49334. default: true
  49335. },
  49336. ]
  49337. ))
  49338. characterMakers.push(() => makeCharacter(
  49339. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  49340. {
  49341. front: {
  49342. height: math.unit(4 + 6/12, "feet"),
  49343. name: "Front",
  49344. image: {
  49345. source: "./media/characters/agatha/front.svg",
  49346. extra: 947/933,
  49347. bottom: 42/989
  49348. }
  49349. },
  49350. back: {
  49351. height: math.unit(4 + 6/12, "feet"),
  49352. name: "Back",
  49353. image: {
  49354. source: "./media/characters/agatha/back.svg",
  49355. extra: 935/922,
  49356. bottom: 48/983
  49357. }
  49358. },
  49359. },
  49360. [
  49361. {
  49362. name: "Normal",
  49363. height: math.unit(4 + 6 /12, "feet"),
  49364. default: true
  49365. },
  49366. {
  49367. name: "Max Size",
  49368. height: math.unit(500, "feet")
  49369. },
  49370. ]
  49371. ))
  49372. characterMakers.push(() => makeCharacter(
  49373. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  49374. {
  49375. side: {
  49376. height: math.unit(30, "feet"),
  49377. name: "Side",
  49378. image: {
  49379. source: "./media/characters/roggy/side.svg",
  49380. extra: 909/643,
  49381. bottom: 63/972
  49382. }
  49383. },
  49384. lounging: {
  49385. height: math.unit(20, "feet"),
  49386. name: "Lounging",
  49387. image: {
  49388. source: "./media/characters/roggy/lounging.svg",
  49389. extra: 643/479,
  49390. bottom: 145/788
  49391. }
  49392. },
  49393. handpaw: {
  49394. height: math.unit(13.1, "feet"),
  49395. name: "Handpaw",
  49396. image: {
  49397. source: "./media/characters/roggy/handpaw.svg"
  49398. }
  49399. },
  49400. footpaw: {
  49401. height: math.unit(15.8, "feet"),
  49402. name: "Footpaw",
  49403. image: {
  49404. source: "./media/characters/roggy/footpaw.svg"
  49405. }
  49406. },
  49407. },
  49408. [
  49409. {
  49410. name: "Menacing",
  49411. height: math.unit(30, "feet"),
  49412. default: true
  49413. },
  49414. ]
  49415. ))
  49416. characterMakers.push(() => makeCharacter(
  49417. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  49418. {
  49419. front: {
  49420. height: math.unit(5 + 7/12, "feet"),
  49421. weight: math.unit(135, "lb"),
  49422. name: "Front",
  49423. image: {
  49424. source: "./media/characters/naomi/front.svg",
  49425. extra: 1209/1154,
  49426. bottom: 129/1338
  49427. }
  49428. },
  49429. back: {
  49430. height: math.unit(5 + 7/12, "feet"),
  49431. weight: math.unit(135, "lb"),
  49432. name: "Back",
  49433. image: {
  49434. source: "./media/characters/naomi/back.svg",
  49435. extra: 1252/1190,
  49436. bottom: 23/1275
  49437. }
  49438. },
  49439. },
  49440. [
  49441. {
  49442. name: "Normal",
  49443. height: math.unit(5 + 7 /12, "feet"),
  49444. default: true
  49445. },
  49446. ]
  49447. ))
  49448. characterMakers.push(() => makeCharacter(
  49449. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  49450. {
  49451. side: {
  49452. height: math.unit(35, "meters"),
  49453. name: "Side",
  49454. image: {
  49455. source: "./media/characters/kimpi/side.svg",
  49456. extra: 419/382,
  49457. bottom: 63/482
  49458. }
  49459. },
  49460. hand: {
  49461. height: math.unit(8.96, "meters"),
  49462. name: "Hand",
  49463. image: {
  49464. source: "./media/characters/kimpi/hand.svg"
  49465. }
  49466. },
  49467. },
  49468. [
  49469. {
  49470. name: "Normal",
  49471. height: math.unit(35, "meters"),
  49472. default: true
  49473. },
  49474. ]
  49475. ))
  49476. characterMakers.push(() => makeCharacter(
  49477. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  49478. {
  49479. front: {
  49480. height: math.unit(4 + 4/12, "feet"),
  49481. name: "Front",
  49482. image: {
  49483. source: "./media/characters/pepper-purrloin/front.svg",
  49484. extra: 1141/1024,
  49485. bottom: 21/1162
  49486. }
  49487. },
  49488. },
  49489. [
  49490. {
  49491. name: "Normal",
  49492. height: math.unit(4 + 4/12, "feet"),
  49493. default: true
  49494. },
  49495. ]
  49496. ))
  49497. characterMakers.push(() => makeCharacter(
  49498. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  49499. {
  49500. front: {
  49501. height: math.unit(6 + 2/12, "feet"),
  49502. name: "Front",
  49503. image: {
  49504. source: "./media/characters/raphael/front.svg",
  49505. extra: 1101/962,
  49506. bottom: 59/1160
  49507. }
  49508. },
  49509. },
  49510. [
  49511. {
  49512. name: "Normal",
  49513. height: math.unit(6 + 2/12, "feet"),
  49514. default: true
  49515. },
  49516. ]
  49517. ))
  49518. characterMakers.push(() => makeCharacter(
  49519. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  49520. {
  49521. front: {
  49522. height: math.unit(6, "feet"),
  49523. weight: math.unit(150, "lb"),
  49524. name: "Front",
  49525. image: {
  49526. source: "./media/characters/victor-williams/front.svg",
  49527. extra: 1894/1825,
  49528. bottom: 67/1961
  49529. }
  49530. },
  49531. },
  49532. [
  49533. {
  49534. name: "Normal",
  49535. height: math.unit(6, "feet"),
  49536. default: true
  49537. },
  49538. ]
  49539. ))
  49540. characterMakers.push(() => makeCharacter(
  49541. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  49542. {
  49543. front: {
  49544. height: math.unit(5 + 8/12, "feet"),
  49545. weight: math.unit(150, "lb"),
  49546. name: "Front",
  49547. image: {
  49548. source: "./media/characters/rachel/front.svg",
  49549. extra: 1902/1787,
  49550. bottom: 46/1948
  49551. }
  49552. },
  49553. },
  49554. [
  49555. {
  49556. name: "Base Height",
  49557. height: math.unit(5 + 8/12, "feet"),
  49558. default: true
  49559. },
  49560. {
  49561. name: "Macro",
  49562. height: math.unit(200, "feet")
  49563. },
  49564. {
  49565. name: "Mega Macro",
  49566. height: math.unit(1, "mile")
  49567. },
  49568. {
  49569. name: "Giga Macro",
  49570. height: math.unit(1500, "miles")
  49571. },
  49572. {
  49573. name: "Tera Macro",
  49574. height: math.unit(8000, "miles")
  49575. },
  49576. {
  49577. name: "Tera Macro+",
  49578. height: math.unit(2e5, "miles")
  49579. },
  49580. ]
  49581. ))
  49582. characterMakers.push(() => makeCharacter(
  49583. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  49584. {
  49585. front: {
  49586. height: math.unit(6.5, "feet"),
  49587. name: "Front",
  49588. image: {
  49589. source: "./media/characters/svetlana-rozovskaya/front.svg",
  49590. extra: 860/819,
  49591. bottom: 307/1167
  49592. }
  49593. },
  49594. back: {
  49595. height: math.unit(6.5, "feet"),
  49596. name: "Back",
  49597. image: {
  49598. source: "./media/characters/svetlana-rozovskaya/back.svg",
  49599. extra: 880/837,
  49600. bottom: 395/1275
  49601. }
  49602. },
  49603. sleeping: {
  49604. height: math.unit(2.79, "feet"),
  49605. name: "Sleeping",
  49606. image: {
  49607. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  49608. extra: 465/383,
  49609. bottom: 263/728
  49610. }
  49611. },
  49612. maw: {
  49613. height: math.unit(2.52, "feet"),
  49614. name: "Maw",
  49615. image: {
  49616. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  49617. }
  49618. },
  49619. },
  49620. [
  49621. {
  49622. name: "Normal",
  49623. height: math.unit(6.5, "feet"),
  49624. default: true
  49625. },
  49626. ]
  49627. ))
  49628. characterMakers.push(() => makeCharacter(
  49629. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  49630. {
  49631. front: {
  49632. height: math.unit(5, "feet"),
  49633. name: "Front",
  49634. image: {
  49635. source: "./media/characters/nova-nerium/front.svg",
  49636. extra: 1548/1392,
  49637. bottom: 374/1922
  49638. }
  49639. },
  49640. back: {
  49641. height: math.unit(5, "feet"),
  49642. name: "Back",
  49643. image: {
  49644. source: "./media/characters/nova-nerium/back.svg",
  49645. extra: 1658/1468,
  49646. bottom: 257/1915
  49647. }
  49648. },
  49649. },
  49650. [
  49651. {
  49652. name: "Normal",
  49653. height: math.unit(5, "feet"),
  49654. default: true
  49655. },
  49656. ]
  49657. ))
  49658. characterMakers.push(() => makeCharacter(
  49659. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  49660. {
  49661. front: {
  49662. height: math.unit(5 + 4/12, "feet"),
  49663. name: "Front",
  49664. image: {
  49665. source: "./media/characters/ashe-pyriph/front.svg",
  49666. extra: 1935/1747,
  49667. bottom: 60/1995
  49668. }
  49669. },
  49670. },
  49671. [
  49672. {
  49673. name: "Normal",
  49674. height: math.unit(5 + 4/12, "feet"),
  49675. default: true
  49676. },
  49677. ]
  49678. ))
  49679. characterMakers.push(() => makeCharacter(
  49680. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  49681. {
  49682. front: {
  49683. height: math.unit(8.7, "feet"),
  49684. name: "Front",
  49685. image: {
  49686. source: "./media/characters/flicker-wisp/front.svg",
  49687. extra: 1835/1613,
  49688. bottom: 449/2284
  49689. }
  49690. },
  49691. side: {
  49692. height: math.unit(8.7, "feet"),
  49693. name: "Side",
  49694. image: {
  49695. source: "./media/characters/flicker-wisp/side.svg",
  49696. extra: 1841/1642,
  49697. bottom: 336/2177
  49698. },
  49699. default: true
  49700. },
  49701. maw: {
  49702. height: math.unit(3.35, "feet"),
  49703. name: "Maw",
  49704. image: {
  49705. source: "./media/characters/flicker-wisp/maw.svg",
  49706. extra: 2338/1506,
  49707. bottom: 0/2338
  49708. }
  49709. },
  49710. ovipositor: {
  49711. height: math.unit(4.95, "feet"),
  49712. name: "Ovipositor",
  49713. image: {
  49714. source: "./media/characters/flicker-wisp/ovipositor.svg"
  49715. }
  49716. },
  49717. egg: {
  49718. height: math.unit(0.385, "feet"),
  49719. weight: math.unit(2, "lb"),
  49720. name: "Egg",
  49721. image: {
  49722. source: "./media/characters/flicker-wisp/egg.svg"
  49723. }
  49724. },
  49725. },
  49726. [
  49727. {
  49728. name: "Normal",
  49729. height: math.unit(8.7, "feet"),
  49730. default: true
  49731. },
  49732. ]
  49733. ))
  49734. characterMakers.push(() => makeCharacter(
  49735. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  49736. {
  49737. side: {
  49738. height: math.unit(11, "feet"),
  49739. name: "Side",
  49740. image: {
  49741. source: "./media/characters/faefnul/side.svg",
  49742. extra: 1100/1007,
  49743. bottom: 0/1100
  49744. }
  49745. },
  49746. },
  49747. [
  49748. {
  49749. name: "Normal",
  49750. height: math.unit(11, "feet"),
  49751. default: true
  49752. },
  49753. ]
  49754. ))
  49755. characterMakers.push(() => makeCharacter(
  49756. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  49757. {
  49758. front: {
  49759. height: math.unit(6 + 2/12, "feet"),
  49760. name: "Front",
  49761. image: {
  49762. source: "./media/characters/shady/front.svg",
  49763. extra: 502/461,
  49764. bottom: 9/511
  49765. }
  49766. },
  49767. kneeling: {
  49768. height: math.unit(4.6, "feet"),
  49769. name: "Kneeling",
  49770. image: {
  49771. source: "./media/characters/shady/kneeling.svg",
  49772. extra: 1328/1219,
  49773. bottom: 117/1445
  49774. }
  49775. },
  49776. maw: {
  49777. height: math.unit(2, "feet"),
  49778. name: "Maw",
  49779. image: {
  49780. source: "./media/characters/shady/maw.svg"
  49781. }
  49782. },
  49783. },
  49784. [
  49785. {
  49786. name: "Nano",
  49787. height: math.unit(1, "mm")
  49788. },
  49789. {
  49790. name: "Micro",
  49791. height: math.unit(12, "mm")
  49792. },
  49793. {
  49794. name: "Tiny",
  49795. height: math.unit(3, "inches")
  49796. },
  49797. {
  49798. name: "Normal",
  49799. height: math.unit(6 + 2/12, "feet"),
  49800. default: true
  49801. },
  49802. {
  49803. name: "Big",
  49804. height: math.unit(15, "feet")
  49805. },
  49806. {
  49807. name: "Macro",
  49808. height: math.unit(150, "feet")
  49809. },
  49810. {
  49811. name: "Titanic",
  49812. height: math.unit(500, "feet")
  49813. },
  49814. ]
  49815. ))
  49816. characterMakers.push(() => makeCharacter(
  49817. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  49818. {
  49819. front: {
  49820. height: math.unit(12, "feet"),
  49821. name: "Front",
  49822. image: {
  49823. source: "./media/characters/fenrir/front.svg",
  49824. extra: 968/875,
  49825. bottom: 22/990
  49826. }
  49827. },
  49828. },
  49829. [
  49830. {
  49831. name: "Big",
  49832. height: math.unit(12, "feet"),
  49833. default: true
  49834. },
  49835. ]
  49836. ))
  49837. characterMakers.push(() => makeCharacter(
  49838. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  49839. {
  49840. front: {
  49841. height: math.unit(5 + 4/12, "feet"),
  49842. name: "Front",
  49843. image: {
  49844. source: "./media/characters/makar/front.svg",
  49845. extra: 1181/1112,
  49846. bottom: 78/1259
  49847. }
  49848. },
  49849. },
  49850. [
  49851. {
  49852. name: "Normal",
  49853. height: math.unit(5 + 4/12, "feet"),
  49854. default: true
  49855. },
  49856. ]
  49857. ))
  49858. characterMakers.push(() => makeCharacter(
  49859. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49860. {
  49861. front: {
  49862. height: math.unit(5 + 7/12, "feet"),
  49863. name: "Front",
  49864. image: {
  49865. source: "./media/characters/callow/front.svg",
  49866. extra: 1482/1304,
  49867. bottom: 23/1505
  49868. }
  49869. },
  49870. back: {
  49871. height: math.unit(5 + 7/12, "feet"),
  49872. name: "Back",
  49873. image: {
  49874. source: "./media/characters/callow/back.svg",
  49875. extra: 1484/1296,
  49876. bottom: 25/1509
  49877. }
  49878. },
  49879. },
  49880. [
  49881. {
  49882. name: "Micro",
  49883. height: math.unit(3, "inches"),
  49884. default: true
  49885. },
  49886. {
  49887. name: "Normal",
  49888. height: math.unit(5 + 7/12, "feet")
  49889. },
  49890. ]
  49891. ))
  49892. characterMakers.push(() => makeCharacter(
  49893. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49894. {
  49895. front: {
  49896. height: math.unit(6 + 2/12, "feet"),
  49897. name: "Front",
  49898. image: {
  49899. source: "./media/characters/natel/front.svg",
  49900. extra: 1833/1692,
  49901. bottom: 166/1999
  49902. }
  49903. },
  49904. },
  49905. [
  49906. {
  49907. name: "Normal",
  49908. height: math.unit(6 + 2/12, "feet"),
  49909. default: true
  49910. },
  49911. ]
  49912. ))
  49913. characterMakers.push(() => makeCharacter(
  49914. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49915. {
  49916. front: {
  49917. height: math.unit(1.75, "meters"),
  49918. name: "Front",
  49919. image: {
  49920. source: "./media/characters/misu/front.svg",
  49921. extra: 1690/1558,
  49922. bottom: 234/1924
  49923. }
  49924. },
  49925. back: {
  49926. height: math.unit(1.75, "meters"),
  49927. name: "Back",
  49928. image: {
  49929. source: "./media/characters/misu/back.svg",
  49930. extra: 1762/1618,
  49931. bottom: 146/1908
  49932. }
  49933. },
  49934. frontNude: {
  49935. height: math.unit(1.75, "meters"),
  49936. name: "Front (Nude)",
  49937. image: {
  49938. source: "./media/characters/misu/front-nude.svg",
  49939. extra: 1690/1558,
  49940. bottom: 234/1924
  49941. }
  49942. },
  49943. backNude: {
  49944. height: math.unit(1.75, "meters"),
  49945. name: "Back (Nude)",
  49946. image: {
  49947. source: "./media/characters/misu/back-nude.svg",
  49948. extra: 1762/1618,
  49949. bottom: 146/1908
  49950. }
  49951. },
  49952. frontErect: {
  49953. height: math.unit(1.75, "meters"),
  49954. name: "Front (Erect)",
  49955. image: {
  49956. source: "./media/characters/misu/front-erect.svg",
  49957. extra: 1690/1558,
  49958. bottom: 234/1924
  49959. }
  49960. },
  49961. maw: {
  49962. height: math.unit(0.47, "meters"),
  49963. name: "Maw",
  49964. image: {
  49965. source: "./media/characters/misu/maw.svg"
  49966. }
  49967. },
  49968. head: {
  49969. height: math.unit(0.35, "meters"),
  49970. name: "Head",
  49971. image: {
  49972. source: "./media/characters/misu/head.svg"
  49973. }
  49974. },
  49975. rear: {
  49976. height: math.unit(0.47, "meters"),
  49977. name: "Rear",
  49978. image: {
  49979. source: "./media/characters/misu/rear.svg"
  49980. }
  49981. },
  49982. },
  49983. [
  49984. {
  49985. name: "Normal",
  49986. height: math.unit(1.75, "meters")
  49987. },
  49988. {
  49989. name: "Not good for the people",
  49990. height: math.unit(42, "meters")
  49991. },
  49992. {
  49993. name: "Not good for the neighborhood",
  49994. height: math.unit(135, "meters")
  49995. },
  49996. {
  49997. name: "Bit bigger problem",
  49998. height: math.unit(380, "meters"),
  49999. default: true
  50000. },
  50001. {
  50002. name: "Not good for the city",
  50003. height: math.unit(1.5, "km")
  50004. },
  50005. {
  50006. name: "Not good for the county",
  50007. height: math.unit(5.5, "km")
  50008. },
  50009. {
  50010. name: "Not good for the state",
  50011. height: math.unit(25, "km")
  50012. },
  50013. {
  50014. name: "Not good for the country",
  50015. height: math.unit(125, "km")
  50016. },
  50017. {
  50018. name: "Not good for the continent",
  50019. height: math.unit(2100, "km")
  50020. },
  50021. {
  50022. name: "Not good for the planet",
  50023. height: math.unit(35000, "km")
  50024. },
  50025. {
  50026. name: "Just no",
  50027. height: math.unit(8.5e18, "km")
  50028. },
  50029. ]
  50030. ))
  50031. characterMakers.push(() => makeCharacter(
  50032. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  50033. {
  50034. front: {
  50035. height: math.unit(6.5, "feet"),
  50036. name: "Front",
  50037. image: {
  50038. source: "./media/characters/poppy/front.svg",
  50039. extra: 1878/1812,
  50040. bottom: 43/1921
  50041. }
  50042. },
  50043. feet: {
  50044. height: math.unit(1.06, "feet"),
  50045. name: "Feet",
  50046. image: {
  50047. source: "./media/characters/poppy/feet.svg",
  50048. extra: 1083/1083,
  50049. bottom: 87/1170
  50050. }
  50051. },
  50052. },
  50053. [
  50054. {
  50055. name: "Human",
  50056. height: math.unit(6.5, "feet")
  50057. },
  50058. {
  50059. name: "Default",
  50060. height: math.unit(300, "feet"),
  50061. default: true
  50062. },
  50063. {
  50064. name: "Huge",
  50065. height: math.unit(850, "feet")
  50066. },
  50067. {
  50068. name: "Mega",
  50069. height: math.unit(8000, "feet")
  50070. },
  50071. {
  50072. name: "Giga",
  50073. height: math.unit(300, "miles")
  50074. },
  50075. ]
  50076. ))
  50077. characterMakers.push(() => makeCharacter(
  50078. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  50079. {
  50080. bipedal: {
  50081. height: math.unit(7, "feet"),
  50082. name: "Bipedal",
  50083. image: {
  50084. source: "./media/characters/zener/bipedal.svg",
  50085. extra: 874/805,
  50086. bottom: 109/983
  50087. }
  50088. },
  50089. quadrupedal: {
  50090. height: math.unit(4.64, "feet"),
  50091. name: "Quadrupedal",
  50092. image: {
  50093. source: "./media/characters/zener/quadrupedal.svg",
  50094. extra: 638/507,
  50095. bottom: 190/828
  50096. }
  50097. },
  50098. cock: {
  50099. height: math.unit(18, "inches"),
  50100. name: "Cock",
  50101. image: {
  50102. source: "./media/characters/zener/cock.svg"
  50103. }
  50104. },
  50105. },
  50106. [
  50107. {
  50108. name: "Normal",
  50109. height: math.unit(7, "feet"),
  50110. default: true
  50111. },
  50112. ]
  50113. ))
  50114. characterMakers.push(() => makeCharacter(
  50115. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  50116. {
  50117. nude: {
  50118. height: math.unit(5 + 6/12, "feet"),
  50119. name: "Nude",
  50120. image: {
  50121. source: "./media/characters/charlie-dog/nude.svg",
  50122. extra: 768/734,
  50123. bottom: 26/794
  50124. }
  50125. },
  50126. dressed: {
  50127. height: math.unit(5 + 6/12, "feet"),
  50128. name: "Dressed",
  50129. image: {
  50130. source: "./media/characters/charlie-dog/dressed.svg",
  50131. extra: 768/734,
  50132. bottom: 26/794
  50133. }
  50134. },
  50135. },
  50136. [
  50137. {
  50138. name: "Normal",
  50139. height: math.unit(5 + 6/12, "feet"),
  50140. default: true
  50141. },
  50142. ]
  50143. ))
  50144. characterMakers.push(() => makeCharacter(
  50145. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  50146. {
  50147. front: {
  50148. height: math.unit(6 + 4/12, "feet"),
  50149. name: "Front",
  50150. image: {
  50151. source: "./media/characters/ir'istrasz/front.svg",
  50152. extra: 1014/977,
  50153. bottom: 65/1079
  50154. }
  50155. },
  50156. back: {
  50157. height: math.unit(6 + 4/12, "feet"),
  50158. name: "Back",
  50159. image: {
  50160. source: "./media/characters/ir'istrasz/back.svg",
  50161. extra: 1024/992,
  50162. bottom: 34/1058
  50163. }
  50164. },
  50165. },
  50166. [
  50167. {
  50168. name: "Normal",
  50169. height: math.unit(6 + 4/12, "feet"),
  50170. default: true
  50171. },
  50172. ]
  50173. ))
  50174. characterMakers.push(() => makeCharacter(
  50175. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  50176. {
  50177. front: {
  50178. height: math.unit(5 + 8/12, "feet"),
  50179. name: "Front",
  50180. image: {
  50181. source: "./media/characters/dee-ditto/front.svg",
  50182. extra: 1874/1785,
  50183. bottom: 68/1942
  50184. }
  50185. },
  50186. back: {
  50187. height: math.unit(5 + 8/12, "feet"),
  50188. name: "Back",
  50189. image: {
  50190. source: "./media/characters/dee-ditto/back.svg",
  50191. extra: 1870/1783,
  50192. bottom: 77/1947
  50193. }
  50194. },
  50195. },
  50196. [
  50197. {
  50198. name: "Normal",
  50199. height: math.unit(5 + 8/12, "feet"),
  50200. default: true
  50201. },
  50202. ]
  50203. ))
  50204. characterMakers.push(() => makeCharacter(
  50205. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  50206. {
  50207. front: {
  50208. height: math.unit(7 + 6/12, "feet"),
  50209. name: "Front",
  50210. image: {
  50211. source: "./media/characters/fey/front.svg",
  50212. extra: 995/979,
  50213. bottom: 30/1025
  50214. }
  50215. },
  50216. back: {
  50217. height: math.unit(7 + 6/12, "feet"),
  50218. name: "Back",
  50219. image: {
  50220. source: "./media/characters/fey/back.svg",
  50221. extra: 1079/1008,
  50222. bottom: 5/1084
  50223. }
  50224. },
  50225. dressed: {
  50226. height: math.unit(7 + 6/12, "feet"),
  50227. name: "Dressed",
  50228. image: {
  50229. source: "./media/characters/fey/dressed.svg",
  50230. extra: 995/979,
  50231. bottom: 30/1025
  50232. }
  50233. },
  50234. },
  50235. [
  50236. {
  50237. name: "Normal",
  50238. height: math.unit(7 + 6/12, "feet"),
  50239. default: true
  50240. },
  50241. ]
  50242. ))
  50243. characterMakers.push(() => makeCharacter(
  50244. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  50245. {
  50246. standing: {
  50247. height: math.unit(17, "feet"),
  50248. name: "Standing",
  50249. image: {
  50250. source: "./media/characters/aster/standing.svg",
  50251. extra: 1798/1598,
  50252. bottom: 117/1915
  50253. }
  50254. },
  50255. },
  50256. [
  50257. {
  50258. name: "Normal",
  50259. height: math.unit(17, "feet"),
  50260. default: true
  50261. },
  50262. {
  50263. name: "Homewrecker",
  50264. height: math.unit(95, "feet")
  50265. },
  50266. {
  50267. name: "Planet Devourer",
  50268. height: math.unit(1008000, "miles")
  50269. },
  50270. ]
  50271. ))
  50272. characterMakers.push(() => makeCharacter(
  50273. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  50274. {
  50275. front: {
  50276. height: math.unit(6 + 5/12, "feet"),
  50277. weight: math.unit(265, "lb"),
  50278. name: "Front",
  50279. image: {
  50280. source: "./media/characters/devon-childs/front.svg",
  50281. extra: 1795/1721,
  50282. bottom: 41/1836
  50283. }
  50284. },
  50285. side: {
  50286. height: math.unit(6 + 5/12, "feet"),
  50287. weight: math.unit(265, "lb"),
  50288. name: "Side",
  50289. image: {
  50290. source: "./media/characters/devon-childs/side.svg",
  50291. extra: 1812/1738,
  50292. bottom: 30/1842
  50293. }
  50294. },
  50295. back: {
  50296. height: math.unit(6 + 5/12, "feet"),
  50297. weight: math.unit(265, "lb"),
  50298. name: "Back",
  50299. image: {
  50300. source: "./media/characters/devon-childs/back.svg",
  50301. extra: 1808/1735,
  50302. bottom: 23/1831
  50303. }
  50304. },
  50305. hand: {
  50306. height: math.unit(1.464, "feet"),
  50307. name: "Hand",
  50308. image: {
  50309. source: "./media/characters/devon-childs/hand.svg"
  50310. }
  50311. },
  50312. foot: {
  50313. height: math.unit(1.6, "feet"),
  50314. name: "Foot",
  50315. image: {
  50316. source: "./media/characters/devon-childs/foot.svg"
  50317. }
  50318. },
  50319. },
  50320. [
  50321. {
  50322. name: "Micro",
  50323. height: math.unit(7, "cm")
  50324. },
  50325. {
  50326. name: "Normal",
  50327. height: math.unit(6 + 5/12, "feet"),
  50328. default: true
  50329. },
  50330. {
  50331. name: "Macro",
  50332. height: math.unit(154, "feet")
  50333. },
  50334. ]
  50335. ))
  50336. characterMakers.push(() => makeCharacter(
  50337. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  50338. {
  50339. front: {
  50340. height: math.unit(6, "feet"),
  50341. weight: math.unit(180, "lb"),
  50342. name: "Front",
  50343. image: {
  50344. source: "./media/characters/lydemox-vir/front.svg",
  50345. extra: 1632/1435,
  50346. bottom: 58/1690
  50347. }
  50348. },
  50349. frontSFW: {
  50350. height: math.unit(6, "feet"),
  50351. weight: math.unit(180, "lb"),
  50352. name: "Front (SFW)",
  50353. image: {
  50354. source: "./media/characters/lydemox-vir/front-sfw.svg",
  50355. extra: 1632/1435,
  50356. bottom: 58/1690
  50357. }
  50358. },
  50359. back: {
  50360. height: math.unit(6, "feet"),
  50361. weight: math.unit(180, "lb"),
  50362. name: "Back",
  50363. image: {
  50364. source: "./media/characters/lydemox-vir/back.svg",
  50365. extra: 1593/1408,
  50366. bottom: 31/1624
  50367. }
  50368. },
  50369. paw: {
  50370. height: math.unit(1.85, "feet"),
  50371. name: "Paw",
  50372. image: {
  50373. source: "./media/characters/lydemox-vir/paw.svg"
  50374. }
  50375. },
  50376. dick: {
  50377. height: math.unit(1.8, "feet"),
  50378. name: "Dick",
  50379. image: {
  50380. source: "./media/characters/lydemox-vir/dick.svg"
  50381. }
  50382. },
  50383. },
  50384. [
  50385. {
  50386. name: "Macro",
  50387. height: math.unit(100, "feet"),
  50388. default: true
  50389. },
  50390. {
  50391. name: "Teramacro",
  50392. height: math.unit(1, "earth")
  50393. },
  50394. {
  50395. name: "Planetary",
  50396. height: math.unit(20, "earths")
  50397. },
  50398. ]
  50399. ))
  50400. characterMakers.push(() => makeCharacter(
  50401. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  50402. {
  50403. front: {
  50404. height: math.unit(15 + 8/12, "feet"),
  50405. weight: math.unit(1237, "kg"),
  50406. name: "Front",
  50407. image: {
  50408. source: "./media/characters/mia/front.svg",
  50409. extra: 1573/1446,
  50410. bottom: 58/1631
  50411. }
  50412. },
  50413. },
  50414. [
  50415. {
  50416. name: "Small",
  50417. height: math.unit(9 + 5/12, "feet")
  50418. },
  50419. {
  50420. name: "Normal",
  50421. height: math.unit(15 + 8/12, "feet"),
  50422. default: true
  50423. },
  50424. ]
  50425. ))
  50426. characterMakers.push(() => makeCharacter(
  50427. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  50428. {
  50429. front: {
  50430. height: math.unit(10 + 6/12, "feet"),
  50431. weight: math.unit(1.3, "tons"),
  50432. name: "Front",
  50433. image: {
  50434. source: "./media/characters/mr-graves/front.svg",
  50435. extra: 1779/1695,
  50436. bottom: 198/1977
  50437. }
  50438. },
  50439. },
  50440. [
  50441. {
  50442. name: "Normal",
  50443. height: math.unit(10 + 6 /12, "feet"),
  50444. default: true
  50445. },
  50446. ]
  50447. ))
  50448. characterMakers.push(() => makeCharacter(
  50449. { name: "Jess", species: ["human"], tags: ["anthro"] },
  50450. {
  50451. dressedFront: {
  50452. height: math.unit(5 + 8/12, "feet"),
  50453. weight: math.unit(125, "lb"),
  50454. name: "Dressed (Front)",
  50455. image: {
  50456. source: "./media/characters/jess/dressed-front.svg",
  50457. extra: 1176/1152,
  50458. bottom: 42/1218
  50459. }
  50460. },
  50461. dressedSide: {
  50462. height: math.unit(5 + 8/12, "feet"),
  50463. weight: math.unit(125, "lb"),
  50464. name: "Dressed (Side)",
  50465. image: {
  50466. source: "./media/characters/jess/dressed-side.svg",
  50467. extra: 1204/1190,
  50468. bottom: 6/1210
  50469. }
  50470. },
  50471. nudeFront: {
  50472. height: math.unit(5 + 8/12, "feet"),
  50473. weight: math.unit(125, "lb"),
  50474. name: "Nude (Front)",
  50475. image: {
  50476. source: "./media/characters/jess/nude-front.svg",
  50477. extra: 1176/1152,
  50478. bottom: 42/1218
  50479. }
  50480. },
  50481. nudeSide: {
  50482. height: math.unit(5 + 8/12, "feet"),
  50483. weight: math.unit(125, "lb"),
  50484. name: "Nude (Side)",
  50485. image: {
  50486. source: "./media/characters/jess/nude-side.svg",
  50487. extra: 1204/1190,
  50488. bottom: 6/1210
  50489. }
  50490. },
  50491. organsFront: {
  50492. height: math.unit(2.83799342105, "feet"),
  50493. name: "Organs (Front)",
  50494. image: {
  50495. source: "./media/characters/jess/organs-front.svg"
  50496. }
  50497. },
  50498. organsSide: {
  50499. height: math.unit(2.64225290474, "feet"),
  50500. name: "Organs (Side)",
  50501. image: {
  50502. source: "./media/characters/jess/organs-side.svg"
  50503. }
  50504. },
  50505. digestiveTractFront: {
  50506. height: math.unit(2.8106580871, "feet"),
  50507. name: "Digestive Tract (Front)",
  50508. image: {
  50509. source: "./media/characters/jess/digestive-tract-front.svg"
  50510. }
  50511. },
  50512. digestiveTractSide: {
  50513. height: math.unit(2.54365045014, "feet"),
  50514. name: "Digestive Tract (Side)",
  50515. image: {
  50516. source: "./media/characters/jess/digestive-tract-side.svg"
  50517. }
  50518. },
  50519. respiratorySystemFront: {
  50520. height: math.unit(1.11196233456, "feet"),
  50521. name: "Respiratory System (Front)",
  50522. image: {
  50523. source: "./media/characters/jess/respiratory-system-front.svg"
  50524. }
  50525. },
  50526. respiratorySystemSide: {
  50527. height: math.unit(0.89327966297, "feet"),
  50528. name: "Respiratory System (Side)",
  50529. image: {
  50530. source: "./media/characters/jess/respiratory-system-side.svg"
  50531. }
  50532. },
  50533. urinaryTractFront: {
  50534. height: math.unit(1.16126356186, "feet"),
  50535. name: "Urinary Tract (Front)",
  50536. image: {
  50537. source: "./media/characters/jess/urinary-tract-front.svg"
  50538. }
  50539. },
  50540. urinaryTractSide: {
  50541. height: math.unit(1.20910039627, "feet"),
  50542. name: "Urinary Tract (Side)",
  50543. image: {
  50544. source: "./media/characters/jess/urinary-tract-side.svg"
  50545. }
  50546. },
  50547. reproductiveOrgansFront: {
  50548. height: math.unit(0.48422591566, "feet"),
  50549. name: "Reproductive Organs (Front)",
  50550. image: {
  50551. source: "./media/characters/jess/reproductive-organs-front.svg"
  50552. }
  50553. },
  50554. reproductiveOrgansSide: {
  50555. height: math.unit(0.61553314481, "feet"),
  50556. name: "Reproductive Organs (Side)",
  50557. image: {
  50558. source: "./media/characters/jess/reproductive-organs-side.svg"
  50559. }
  50560. },
  50561. breastsFront: {
  50562. height: math.unit(0.47690395121, "feet"),
  50563. name: "Breasts (Front)",
  50564. image: {
  50565. source: "./media/characters/jess/breasts-front.svg"
  50566. }
  50567. },
  50568. breastsSide: {
  50569. height: math.unit(0.30556998307, "feet"),
  50570. name: "Breasts (Side)",
  50571. image: {
  50572. source: "./media/characters/jess/breasts-side.svg"
  50573. }
  50574. },
  50575. heartFront: {
  50576. height: math.unit(0.53011022622, "feet"),
  50577. name: "Heart (Front)",
  50578. image: {
  50579. source: "./media/characters/jess/heart-front.svg"
  50580. }
  50581. },
  50582. heartSide: {
  50583. height: math.unit(0.51790695213, "feet"),
  50584. name: "Heart (Side)",
  50585. image: {
  50586. source: "./media/characters/jess/heart-side.svg"
  50587. }
  50588. },
  50589. earsAndNoseFront: {
  50590. height: math.unit(0.29385483995, "feet"),
  50591. name: "Ears and Nose (Front)",
  50592. image: {
  50593. source: "./media/characters/jess/ears-and-nose-front.svg"
  50594. }
  50595. },
  50596. earsAndNoseSide: {
  50597. height: math.unit(0.18109658741, "feet"),
  50598. name: "Ears and Nose (Side)",
  50599. image: {
  50600. source: "./media/characters/jess/ears-and-nose-side.svg"
  50601. }
  50602. },
  50603. },
  50604. [
  50605. {
  50606. name: "Normal",
  50607. height: math.unit(5 + 8/12, "feet"),
  50608. default: true
  50609. },
  50610. ]
  50611. ))
  50612. characterMakers.push(() => makeCharacter(
  50613. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  50614. {
  50615. front: {
  50616. height: math.unit(6, "feet"),
  50617. weight: math.unit(6.64467e-7, "grams"),
  50618. name: "Front",
  50619. image: {
  50620. source: "./media/characters/wimpering/front.svg",
  50621. extra: 597/587,
  50622. bottom: 34/631
  50623. }
  50624. },
  50625. },
  50626. [
  50627. {
  50628. name: "Micro",
  50629. height: math.unit(0.4, "mm"),
  50630. default: true
  50631. },
  50632. ]
  50633. ))
  50634. characterMakers.push(() => makeCharacter(
  50635. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  50636. {
  50637. front: {
  50638. height: math.unit(5 + 2/12, "feet"),
  50639. weight: math.unit(110, "lb"),
  50640. name: "Front",
  50641. image: {
  50642. source: "./media/characters/keltre/front.svg",
  50643. extra: 1099/1057,
  50644. bottom: 22/1121
  50645. }
  50646. },
  50647. back: {
  50648. height: math.unit(5 + 2/12, "feet"),
  50649. weight: math.unit(110, "lb"),
  50650. name: "Back",
  50651. image: {
  50652. source: "./media/characters/keltre/back.svg",
  50653. extra: 1095/1053,
  50654. bottom: 17/1112
  50655. }
  50656. },
  50657. dressed: {
  50658. height: math.unit(5 + 2/12, "feet"),
  50659. weight: math.unit(110, "lb"),
  50660. name: "Dressed",
  50661. image: {
  50662. source: "./media/characters/keltre/dressed.svg",
  50663. extra: 1099/1057,
  50664. bottom: 22/1121
  50665. }
  50666. },
  50667. winter: {
  50668. height: math.unit(5 + 2/12, "feet"),
  50669. weight: math.unit(110, "lb"),
  50670. name: "Winter",
  50671. image: {
  50672. source: "./media/characters/keltre/winter.svg",
  50673. extra: 1099/1057,
  50674. bottom: 22/1121
  50675. }
  50676. },
  50677. head: {
  50678. height: math.unit(1.61 * 0.86, "feet"),
  50679. name: "Head",
  50680. image: {
  50681. source: "./media/characters/keltre/head.svg",
  50682. extra: 534/421,
  50683. bottom: 0/534
  50684. }
  50685. },
  50686. hand: {
  50687. height: math.unit(1.3 * 0.86, "feet"),
  50688. name: "Hand",
  50689. image: {
  50690. source: "./media/characters/keltre/hand.svg"
  50691. }
  50692. },
  50693. foot: {
  50694. height: math.unit(1.8 * 0.86, "feet"),
  50695. name: "Foot",
  50696. image: {
  50697. source: "./media/characters/keltre/foot.svg"
  50698. }
  50699. },
  50700. },
  50701. [
  50702. {
  50703. name: "Fine",
  50704. height: math.unit(1, "inch")
  50705. },
  50706. {
  50707. name: "Dimnutive",
  50708. height: math.unit(4, "inches")
  50709. },
  50710. {
  50711. name: "Tiny",
  50712. height: math.unit(1, "foot")
  50713. },
  50714. {
  50715. name: "Small",
  50716. height: math.unit(3, "feet")
  50717. },
  50718. {
  50719. name: "Normal",
  50720. height: math.unit(5 + 2/12, "feet"),
  50721. default: true
  50722. },
  50723. ]
  50724. ))
  50725. characterMakers.push(() => makeCharacter(
  50726. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  50727. {
  50728. front: {
  50729. height: math.unit(6 + 2/12, "feet"),
  50730. name: "Front",
  50731. image: {
  50732. source: "./media/characters/nox/front.svg",
  50733. extra: 1917/1830,
  50734. bottom: 74/1991
  50735. }
  50736. },
  50737. back: {
  50738. height: math.unit(6 + 2/12, "feet"),
  50739. name: "Back",
  50740. image: {
  50741. source: "./media/characters/nox/back.svg",
  50742. extra: 1896/1815,
  50743. bottom: 21/1917
  50744. }
  50745. },
  50746. head: {
  50747. height: math.unit(1.1, "feet"),
  50748. name: "Head",
  50749. image: {
  50750. source: "./media/characters/nox/head.svg",
  50751. extra: 874/704,
  50752. bottom: 0/874
  50753. }
  50754. },
  50755. tattoo: {
  50756. height: math.unit(0.729, "feet"),
  50757. name: "Tattoo",
  50758. image: {
  50759. source: "./media/characters/nox/tattoo.svg"
  50760. }
  50761. },
  50762. },
  50763. [
  50764. {
  50765. name: "Normal",
  50766. height: math.unit(6 + 2/12, "feet")
  50767. },
  50768. {
  50769. name: "Gigamacro",
  50770. height: math.unit(2, "earths"),
  50771. default: true
  50772. },
  50773. {
  50774. name: "Cosmic",
  50775. height: math.unit(867, "yottameters")
  50776. },
  50777. ]
  50778. ))
  50779. characterMakers.push(() => makeCharacter(
  50780. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  50781. {
  50782. front: {
  50783. height: math.unit(6, "feet"),
  50784. weight: math.unit(150, "lb"),
  50785. name: "Front",
  50786. image: {
  50787. source: "./media/characters/caspian/front.svg",
  50788. extra: 1443/1359,
  50789. bottom: 0/1443
  50790. }
  50791. },
  50792. back: {
  50793. height: math.unit(6, "feet"),
  50794. weight: math.unit(150, "lb"),
  50795. name: "Back",
  50796. image: {
  50797. source: "./media/characters/caspian/back.svg",
  50798. extra: 1379/1309,
  50799. bottom: 0/1379
  50800. }
  50801. },
  50802. head: {
  50803. height: math.unit(0.9, "feet"),
  50804. name: "Head",
  50805. image: {
  50806. source: "./media/characters/caspian/head.svg",
  50807. extra: 692/492,
  50808. bottom: 0/692
  50809. }
  50810. },
  50811. headAlt: {
  50812. height: math.unit(0.95, "feet"),
  50813. name: "Head (Alt)",
  50814. image: {
  50815. source: "./media/characters/caspian/head-alt.svg",
  50816. extra: 668/508,
  50817. bottom: 0/668
  50818. }
  50819. },
  50820. hand: {
  50821. height: math.unit(0.8, "feet"),
  50822. name: "Hand",
  50823. image: {
  50824. source: "./media/characters/caspian/hand.svg"
  50825. }
  50826. },
  50827. paw: {
  50828. height: math.unit(0.95, "feet"),
  50829. name: "Paw",
  50830. image: {
  50831. source: "./media/characters/caspian/paw.svg"
  50832. }
  50833. },
  50834. },
  50835. [
  50836. {
  50837. name: "Normal",
  50838. height: math.unit(162, "feet"),
  50839. default: true
  50840. },
  50841. ]
  50842. ))
  50843. characterMakers.push(() => makeCharacter(
  50844. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  50845. {
  50846. front: {
  50847. height: math.unit(6, "feet"),
  50848. name: "Front",
  50849. image: {
  50850. source: "./media/characters/myra-aisling/front.svg",
  50851. extra: 1268/1166,
  50852. bottom: 73/1341
  50853. }
  50854. },
  50855. back: {
  50856. height: math.unit(6, "feet"),
  50857. name: "Back",
  50858. image: {
  50859. source: "./media/characters/myra-aisling/back.svg",
  50860. extra: 1249/1149,
  50861. bottom: 79/1328
  50862. }
  50863. },
  50864. dressed: {
  50865. height: math.unit(6, "feet"),
  50866. name: "Dressed",
  50867. image: {
  50868. source: "./media/characters/myra-aisling/dressed.svg",
  50869. extra: 1290/1189,
  50870. bottom: 47/1337
  50871. }
  50872. },
  50873. hand: {
  50874. height: math.unit(1.1, "feet"),
  50875. name: "Hand",
  50876. image: {
  50877. source: "./media/characters/myra-aisling/hand.svg"
  50878. }
  50879. },
  50880. paw: {
  50881. height: math.unit(1.23, "feet"),
  50882. name: "Paw",
  50883. image: {
  50884. source: "./media/characters/myra-aisling/paw.svg"
  50885. }
  50886. },
  50887. },
  50888. [
  50889. {
  50890. name: "Normal",
  50891. height: math.unit(160, "feet"),
  50892. default: true
  50893. },
  50894. ]
  50895. ))
  50896. characterMakers.push(() => makeCharacter(
  50897. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50898. {
  50899. front: {
  50900. height: math.unit(6, "feet"),
  50901. name: "Front",
  50902. image: {
  50903. source: "./media/characters/tenley-sidero/front.svg",
  50904. extra: 1365/1276,
  50905. bottom: 47/1412
  50906. }
  50907. },
  50908. back: {
  50909. height: math.unit(6, "feet"),
  50910. name: "Back",
  50911. image: {
  50912. source: "./media/characters/tenley-sidero/back.svg",
  50913. extra: 1383/1283,
  50914. bottom: 35/1418
  50915. }
  50916. },
  50917. dressed: {
  50918. height: math.unit(6, "feet"),
  50919. name: "Dressed",
  50920. image: {
  50921. source: "./media/characters/tenley-sidero/dressed.svg",
  50922. extra: 1364/1275,
  50923. bottom: 42/1406
  50924. }
  50925. },
  50926. head: {
  50927. height: math.unit(1.47, "feet"),
  50928. name: "Head",
  50929. image: {
  50930. source: "./media/characters/tenley-sidero/head.svg",
  50931. extra: 610/490,
  50932. bottom: 0/610
  50933. }
  50934. },
  50935. },
  50936. [
  50937. {
  50938. name: "Normal",
  50939. height: math.unit(154, "feet"),
  50940. default: true
  50941. },
  50942. ]
  50943. ))
  50944. characterMakers.push(() => makeCharacter(
  50945. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50946. {
  50947. front: {
  50948. height: math.unit(5, "inches"),
  50949. name: "Front",
  50950. image: {
  50951. source: "./media/characters/mallory/front.svg",
  50952. extra: 1919/1678,
  50953. bottom: 29/1948
  50954. }
  50955. },
  50956. hand: {
  50957. height: math.unit(0.73, "inches"),
  50958. name: "Hand",
  50959. image: {
  50960. source: "./media/characters/mallory/hand.svg"
  50961. }
  50962. },
  50963. paw: {
  50964. height: math.unit(0.68, "inches"),
  50965. name: "Paw",
  50966. image: {
  50967. source: "./media/characters/mallory/paw.svg"
  50968. }
  50969. },
  50970. },
  50971. [
  50972. {
  50973. name: "Small",
  50974. height: math.unit(5, "inches"),
  50975. default: true
  50976. },
  50977. ]
  50978. ))
  50979. characterMakers.push(() => makeCharacter(
  50980. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50981. {
  50982. naked: {
  50983. height: math.unit(6, "feet"),
  50984. name: "Naked",
  50985. image: {
  50986. source: "./media/characters/mab/naked.svg",
  50987. extra: 1855/1757,
  50988. bottom: 208/2063
  50989. }
  50990. },
  50991. outside: {
  50992. height: math.unit(6, "feet"),
  50993. name: "Outside",
  50994. image: {
  50995. source: "./media/characters/mab/outside.svg",
  50996. extra: 1855/1757,
  50997. bottom: 208/2063
  50998. }
  50999. },
  51000. party: {
  51001. height: math.unit(6, "feet"),
  51002. name: "Party",
  51003. image: {
  51004. source: "./media/characters/mab/party.svg",
  51005. extra: 1855/1757,
  51006. bottom: 208/2063
  51007. }
  51008. },
  51009. },
  51010. [
  51011. {
  51012. name: "Normal",
  51013. height: math.unit(165, "feet"),
  51014. default: true
  51015. },
  51016. ]
  51017. ))
  51018. characterMakers.push(() => makeCharacter(
  51019. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  51020. {
  51021. feral: {
  51022. height: math.unit(12, "feet"),
  51023. weight: math.unit(20000, "lb"),
  51024. name: "Side",
  51025. image: {
  51026. source: "./media/characters/winter/feral.svg",
  51027. extra: 1286/943,
  51028. bottom: 112/1398
  51029. },
  51030. form: "feral",
  51031. default: true
  51032. },
  51033. feralNsfw: {
  51034. height: math.unit(12, "feet"),
  51035. weight: math.unit(20000, "lb"),
  51036. name: "Side (NSFW)",
  51037. image: {
  51038. source: "./media/characters/winter/feral-nsfw.svg",
  51039. extra: 1286/943,
  51040. bottom: 112/1398
  51041. },
  51042. form: "feral"
  51043. },
  51044. dick: {
  51045. height: math.unit(3.79, "feet"),
  51046. name: "Dick",
  51047. image: {
  51048. source: "./media/characters/winter/dick.svg"
  51049. },
  51050. form: "feral"
  51051. },
  51052. anthro: {
  51053. height: math.unit(12, "feet"),
  51054. weight: math.unit(10, "tons"),
  51055. name: "Anthro",
  51056. image: {
  51057. source: "./media/characters/winter/anthro.svg",
  51058. extra: 1701/1553,
  51059. bottom: 64/1765
  51060. },
  51061. form: "anthro",
  51062. default: true
  51063. },
  51064. },
  51065. [
  51066. {
  51067. name: "Big",
  51068. height: math.unit(12, "feet"),
  51069. default: true,
  51070. form: "feral"
  51071. },
  51072. {
  51073. name: "Big",
  51074. height: math.unit(12, "feet"),
  51075. default: true,
  51076. form: "anthro"
  51077. },
  51078. ],
  51079. {
  51080. "feral": {
  51081. name: "Feral",
  51082. default: true
  51083. },
  51084. "anthro": {
  51085. name: "Anthro"
  51086. }
  51087. }
  51088. ))
  51089. characterMakers.push(() => makeCharacter(
  51090. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  51091. {
  51092. front: {
  51093. height: math.unit(4.1, "inches"),
  51094. name: "Front",
  51095. image: {
  51096. source: "./media/characters/alto/front.svg",
  51097. extra: 736/627,
  51098. bottom: 90/826
  51099. }
  51100. },
  51101. },
  51102. [
  51103. {
  51104. name: "Normal",
  51105. height: math.unit(4.1, "inches"),
  51106. default: true
  51107. },
  51108. ]
  51109. ))
  51110. characterMakers.push(() => makeCharacter(
  51111. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  51112. {
  51113. sitting: {
  51114. height: math.unit(3, "feet"),
  51115. name: "Sitting",
  51116. image: {
  51117. source: "./media/characters/ratstrid-v/sitting.svg",
  51118. extra: 355/310,
  51119. bottom: 136/491
  51120. }
  51121. },
  51122. },
  51123. [
  51124. {
  51125. name: "Normal",
  51126. height: math.unit(3, "feet"),
  51127. default: true
  51128. },
  51129. ]
  51130. ))
  51131. characterMakers.push(() => makeCharacter(
  51132. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  51133. {
  51134. back: {
  51135. height: math.unit(6, "feet"),
  51136. weight: math.unit(450, "lb"),
  51137. name: "Back",
  51138. image: {
  51139. source: "./media/characters/siz/back.svg",
  51140. extra: 1449/1274,
  51141. bottom: 13/1462
  51142. }
  51143. },
  51144. },
  51145. [
  51146. {
  51147. name: "Smallest",
  51148. height: math.unit(18 + 3/12, "feet")
  51149. },
  51150. {
  51151. name: "Modest",
  51152. height: math.unit(56 + 8/12, "feet"),
  51153. default: true
  51154. },
  51155. {
  51156. name: "Largest",
  51157. height: math.unit(3590, "feet")
  51158. },
  51159. ]
  51160. ))
  51161. characterMakers.push(() => makeCharacter(
  51162. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  51163. {
  51164. front: {
  51165. height: math.unit(5 + 9/12, "feet"),
  51166. weight: math.unit(150, "lb"),
  51167. name: "Front",
  51168. image: {
  51169. source: "./media/characters/ven/front.svg",
  51170. extra: 1372/1320,
  51171. bottom: 73/1445
  51172. }
  51173. },
  51174. side: {
  51175. height: math.unit(5 + 9/12, "feet"),
  51176. weight: math.unit(1150, "lb"),
  51177. name: "Side",
  51178. image: {
  51179. source: "./media/characters/ven/side.svg",
  51180. extra: 1119/1070,
  51181. bottom: 42/1161
  51182. },
  51183. default: true
  51184. },
  51185. },
  51186. [
  51187. {
  51188. name: "Normal",
  51189. height: math.unit(5 + 9/12, "feet"),
  51190. default: true
  51191. },
  51192. ]
  51193. ))
  51194. characterMakers.push(() => makeCharacter(
  51195. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  51196. {
  51197. front: {
  51198. height: math.unit(12, "feet"),
  51199. weight: math.unit(1000, "kg"),
  51200. name: "Front",
  51201. image: {
  51202. source: "./media/characters/maple/front.svg",
  51203. extra: 1193/1081,
  51204. bottom: 22/1215
  51205. }
  51206. },
  51207. },
  51208. [
  51209. {
  51210. name: "Compressed",
  51211. height: math.unit(7, "feet")
  51212. },
  51213. {
  51214. name: "Normal",
  51215. height: math.unit(12, "feet"),
  51216. default: true
  51217. },
  51218. ]
  51219. ))
  51220. characterMakers.push(() => makeCharacter(
  51221. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  51222. {
  51223. front: {
  51224. height: math.unit(9, "feet"),
  51225. weight: math.unit(1500, "lb"),
  51226. name: "Front",
  51227. image: {
  51228. source: "./media/characters/nora/front.svg",
  51229. extra: 1348/1286,
  51230. bottom: 218/1566
  51231. }
  51232. },
  51233. erect: {
  51234. height: math.unit(9, "feet"),
  51235. weight: math.unit(11500, "lb"),
  51236. name: "Erect",
  51237. image: {
  51238. source: "./media/characters/nora/erect.svg",
  51239. extra: 1488/1433,
  51240. bottom: 133/1621
  51241. }
  51242. },
  51243. },
  51244. [
  51245. {
  51246. name: "Normal",
  51247. height: math.unit(9, "feet"),
  51248. default: true
  51249. },
  51250. ]
  51251. ))
  51252. characterMakers.push(() => makeCharacter(
  51253. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  51254. {
  51255. front: {
  51256. height: math.unit(25, "feet"),
  51257. weight: math.unit(27500, "lb"),
  51258. name: "Front",
  51259. image: {
  51260. source: "./media/characters/north-caudin/front.svg",
  51261. extra: 1184/1082,
  51262. bottom: 23/1207
  51263. }
  51264. },
  51265. },
  51266. [
  51267. {
  51268. name: "Compressed",
  51269. height: math.unit(10, "feet")
  51270. },
  51271. {
  51272. name: "Normal",
  51273. height: math.unit(25, "feet"),
  51274. default: true
  51275. },
  51276. ]
  51277. ))
  51278. characterMakers.push(() => makeCharacter(
  51279. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  51280. {
  51281. front: {
  51282. height: math.unit(9, "feet"),
  51283. weight: math.unit(1250, "lb"),
  51284. name: "Front",
  51285. image: {
  51286. source: "./media/characters/merrian/front.svg",
  51287. extra: 2393/2304,
  51288. bottom: 40/2433
  51289. }
  51290. },
  51291. },
  51292. [
  51293. {
  51294. name: "Normal",
  51295. height: math.unit(9, "feet"),
  51296. default: true
  51297. },
  51298. ]
  51299. ))
  51300. characterMakers.push(() => makeCharacter(
  51301. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  51302. {
  51303. front: {
  51304. height: math.unit(9, "feet"),
  51305. weight: math.unit(1000, "lb"),
  51306. name: "Front",
  51307. image: {
  51308. source: "./media/characters/hazel/front.svg",
  51309. extra: 2351/2298,
  51310. bottom: 38/2389
  51311. }
  51312. },
  51313. },
  51314. [
  51315. {
  51316. name: "Normal",
  51317. height: math.unit(9, "feet"),
  51318. default: true
  51319. },
  51320. ]
  51321. ))
  51322. characterMakers.push(() => makeCharacter(
  51323. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  51324. {
  51325. front: {
  51326. height: math.unit(13, "feet"),
  51327. weight: math.unit(3200, "lb"),
  51328. name: "Front",
  51329. image: {
  51330. source: "./media/characters/emma/front.svg",
  51331. extra: 2263/2029,
  51332. bottom: 68/2331
  51333. }
  51334. },
  51335. },
  51336. [
  51337. {
  51338. name: "Normal",
  51339. height: math.unit(13, "feet"),
  51340. default: true
  51341. },
  51342. ]
  51343. ))
  51344. characterMakers.push(() => makeCharacter(
  51345. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  51346. {
  51347. front: {
  51348. height: math.unit(11 + 9/12, "feet"),
  51349. weight: math.unit(2500, "lb"),
  51350. name: "Front",
  51351. image: {
  51352. source: "./media/characters/ilumina/front.svg",
  51353. extra: 2248/2209,
  51354. bottom: 164/2412
  51355. }
  51356. },
  51357. },
  51358. [
  51359. {
  51360. name: "Normal",
  51361. height: math.unit(11 + 9/12, "feet"),
  51362. default: true
  51363. },
  51364. ]
  51365. ))
  51366. characterMakers.push(() => makeCharacter(
  51367. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  51368. {
  51369. front: {
  51370. height: math.unit(8 + 10/12, "feet"),
  51371. weight: math.unit(1350, "lb"),
  51372. name: "Front",
  51373. image: {
  51374. source: "./media/characters/moonshine/front.svg",
  51375. extra: 2395/2288,
  51376. bottom: 40/2435
  51377. }
  51378. },
  51379. },
  51380. [
  51381. {
  51382. name: "Normal",
  51383. height: math.unit(8 + 10/12, "feet"),
  51384. default: true
  51385. },
  51386. ]
  51387. ))
  51388. characterMakers.push(() => makeCharacter(
  51389. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  51390. {
  51391. front: {
  51392. height: math.unit(14, "feet"),
  51393. weight: math.unit(3400, "lb"),
  51394. name: "Front",
  51395. image: {
  51396. source: "./media/characters/aletia/front.svg",
  51397. extra: 1185/1052,
  51398. bottom: 21/1206
  51399. }
  51400. },
  51401. },
  51402. [
  51403. {
  51404. name: "Compressed",
  51405. height: math.unit(8, "feet")
  51406. },
  51407. {
  51408. name: "Normal",
  51409. height: math.unit(14, "feet"),
  51410. default: true
  51411. },
  51412. ]
  51413. ))
  51414. characterMakers.push(() => makeCharacter(
  51415. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  51416. {
  51417. front: {
  51418. height: math.unit(17, "feet"),
  51419. weight: math.unit(6500, "lb"),
  51420. name: "Front",
  51421. image: {
  51422. source: "./media/characters/deidra/front.svg",
  51423. extra: 1201/1081,
  51424. bottom: 16/1217
  51425. }
  51426. },
  51427. },
  51428. [
  51429. {
  51430. name: "Compressed",
  51431. height: math.unit(9 + 6/12, "feet")
  51432. },
  51433. {
  51434. name: "Normal",
  51435. height: math.unit(17, "feet"),
  51436. default: true
  51437. },
  51438. ]
  51439. ))
  51440. characterMakers.push(() => makeCharacter(
  51441. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  51442. {
  51443. front: {
  51444. height: math.unit(7 + 4/12, "feet"),
  51445. weight: math.unit(280, "lb"),
  51446. name: "Front",
  51447. image: {
  51448. source: "./media/characters/freki-yrmori/front.svg",
  51449. extra: 1286/1182,
  51450. bottom: 29/1315
  51451. }
  51452. },
  51453. maw: {
  51454. height: math.unit(0.9, "feet"),
  51455. name: "Maw",
  51456. image: {
  51457. source: "./media/characters/freki-yrmori/maw.svg"
  51458. }
  51459. },
  51460. },
  51461. [
  51462. {
  51463. name: "Normal",
  51464. height: math.unit(7 + 4/12, "feet"),
  51465. default: true
  51466. },
  51467. {
  51468. name: "Macro",
  51469. height: math.unit(38.5, "meters")
  51470. },
  51471. ]
  51472. ))
  51473. characterMakers.push(() => makeCharacter(
  51474. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  51475. {
  51476. side: {
  51477. height: math.unit(47.2, "meters"),
  51478. weight: math.unit(10000, "tons"),
  51479. name: "Side",
  51480. image: {
  51481. source: "./media/characters/aetherios/side.svg",
  51482. extra: 2363/642,
  51483. bottom: 221/2584
  51484. }
  51485. },
  51486. top: {
  51487. height: math.unit(240, "meters"),
  51488. weight: math.unit(10000, "tons"),
  51489. name: "Top",
  51490. image: {
  51491. source: "./media/characters/aetherios/top.svg"
  51492. }
  51493. },
  51494. bottom: {
  51495. height: math.unit(240, "meters"),
  51496. weight: math.unit(10000, "tons"),
  51497. name: "Bottom",
  51498. image: {
  51499. source: "./media/characters/aetherios/bottom.svg"
  51500. }
  51501. },
  51502. head: {
  51503. height: math.unit(38.6, "meters"),
  51504. name: "Head",
  51505. image: {
  51506. source: "./media/characters/aetherios/head.svg",
  51507. extra: 1335/1112,
  51508. bottom: 0/1335
  51509. }
  51510. },
  51511. front: {
  51512. height: math.unit(29, "meters"),
  51513. name: "Front",
  51514. image: {
  51515. source: "./media/characters/aetherios/front.svg",
  51516. extra: 1266/953,
  51517. bottom: 158/1424
  51518. }
  51519. },
  51520. maw: {
  51521. height: math.unit(16.37, "meters"),
  51522. name: "Maw",
  51523. image: {
  51524. source: "./media/characters/aetherios/maw.svg",
  51525. extra: 748/637,
  51526. bottom: 0/748
  51527. },
  51528. extraAttributes: {
  51529. preyCapacity: {
  51530. name: "Capacity",
  51531. power: 3,
  51532. type: "volume",
  51533. base: math.unit(1000, "people")
  51534. },
  51535. tongueSize: {
  51536. name: "Tongue Size",
  51537. power: 2,
  51538. type: "area",
  51539. base: math.unit(21, "m^2")
  51540. }
  51541. }
  51542. },
  51543. forepaw: {
  51544. height: math.unit(18, "meters"),
  51545. name: "Forepaw",
  51546. image: {
  51547. source: "./media/characters/aetherios/forepaw.svg"
  51548. }
  51549. },
  51550. hindpaw: {
  51551. height: math.unit(23, "meters"),
  51552. name: "Hindpaw",
  51553. image: {
  51554. source: "./media/characters/aetherios/hindpaw.svg"
  51555. }
  51556. },
  51557. genitals: {
  51558. height: math.unit(42, "meters"),
  51559. name: "Genitals",
  51560. image: {
  51561. source: "./media/characters/aetherios/genitals.svg"
  51562. }
  51563. },
  51564. },
  51565. [
  51566. {
  51567. name: "Normal",
  51568. height: math.unit(47.2, "meters"),
  51569. default: true
  51570. },
  51571. {
  51572. name: "Macro",
  51573. height: math.unit(160, "meters")
  51574. },
  51575. {
  51576. name: "Mega",
  51577. height: math.unit(1.87, "km")
  51578. },
  51579. {
  51580. name: "Giga",
  51581. height: math.unit(40000, "km")
  51582. },
  51583. {
  51584. name: "Stellar",
  51585. height: math.unit(158000000, "km")
  51586. },
  51587. {
  51588. name: "Cosmic",
  51589. height: math.unit(9.46e12, "km")
  51590. },
  51591. ]
  51592. ))
  51593. characterMakers.push(() => makeCharacter(
  51594. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  51595. {
  51596. front: {
  51597. height: math.unit(5 + 4/12, "feet"),
  51598. weight: math.unit(80, "lb"),
  51599. name: "Front",
  51600. image: {
  51601. source: "./media/characters/mizu-gieeg/front.svg",
  51602. extra: 850/709,
  51603. bottom: 52/902
  51604. }
  51605. },
  51606. back: {
  51607. height: math.unit(5 + 4/12, "feet"),
  51608. weight: math.unit(80, "lb"),
  51609. name: "Back",
  51610. image: {
  51611. source: "./media/characters/mizu-gieeg/back.svg",
  51612. extra: 882/745,
  51613. bottom: 25/907
  51614. }
  51615. },
  51616. },
  51617. [
  51618. {
  51619. name: "Normal",
  51620. height: math.unit(5 + 4/12, "feet"),
  51621. default: true
  51622. },
  51623. ]
  51624. ))
  51625. characterMakers.push(() => makeCharacter(
  51626. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  51627. {
  51628. front: {
  51629. height: math.unit(6, "feet"),
  51630. name: "Front",
  51631. image: {
  51632. source: "./media/characters/roselle-st-papier/front.svg",
  51633. extra: 1430/1280,
  51634. bottom: 37/1467
  51635. }
  51636. },
  51637. back: {
  51638. height: math.unit(6, "feet"),
  51639. name: "Back",
  51640. image: {
  51641. source: "./media/characters/roselle-st-papier/back.svg",
  51642. extra: 1491/1296,
  51643. bottom: 23/1514
  51644. }
  51645. },
  51646. ear: {
  51647. height: math.unit(1.26, "feet"),
  51648. name: "Ear",
  51649. image: {
  51650. source: "./media/characters/roselle-st-papier/ear.svg"
  51651. }
  51652. },
  51653. },
  51654. [
  51655. {
  51656. name: "Normal",
  51657. height: math.unit(150, "feet"),
  51658. default: true
  51659. },
  51660. ]
  51661. ))
  51662. characterMakers.push(() => makeCharacter(
  51663. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  51664. {
  51665. front: {
  51666. height: math.unit(1, "inches"),
  51667. name: "Front",
  51668. image: {
  51669. source: "./media/characters/valargent/front.svg",
  51670. extra: 1825/1694,
  51671. bottom: 62/1887
  51672. }
  51673. },
  51674. back: {
  51675. height: math.unit(1, "inches"),
  51676. name: "Back",
  51677. image: {
  51678. source: "./media/characters/valargent/back.svg",
  51679. extra: 1775/1682,
  51680. bottom: 88/1863
  51681. }
  51682. },
  51683. },
  51684. [
  51685. {
  51686. name: "Micro",
  51687. height: math.unit(1, "inch"),
  51688. default: true
  51689. },
  51690. ]
  51691. ))
  51692. characterMakers.push(() => makeCharacter(
  51693. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  51694. {
  51695. front: {
  51696. height: math.unit(3.4, "meters"),
  51697. name: "Front",
  51698. image: {
  51699. source: "./media/characters/zarina/front.svg",
  51700. extra: 1733/1425,
  51701. bottom: 93/1826
  51702. }
  51703. },
  51704. squatting: {
  51705. height: math.unit(2.14, "meters"),
  51706. name: "Squatting",
  51707. image: {
  51708. source: "./media/characters/zarina/squatting.svg",
  51709. extra: 1073/788,
  51710. bottom: 63/1136
  51711. }
  51712. },
  51713. back: {
  51714. height: math.unit(2.14, "meters"),
  51715. name: "Back",
  51716. image: {
  51717. source: "./media/characters/zarina/back.svg",
  51718. extra: 1128/885,
  51719. bottom: 0/1128
  51720. }
  51721. },
  51722. },
  51723. [
  51724. {
  51725. name: "Normal",
  51726. height: math.unit(3.4, "meters"),
  51727. default: true
  51728. },
  51729. {
  51730. name: "Big",
  51731. height: math.unit(5, "meters")
  51732. },
  51733. {
  51734. name: "Macro",
  51735. height: math.unit(110, "meters")
  51736. },
  51737. ]
  51738. ))
  51739. characterMakers.push(() => makeCharacter(
  51740. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  51741. {
  51742. front: {
  51743. height: math.unit(7, "feet"),
  51744. name: "Front",
  51745. image: {
  51746. source: "./media/characters/ventus-astro-fox/front.svg",
  51747. extra: 1792/1623,
  51748. bottom: 28/1820
  51749. }
  51750. },
  51751. back: {
  51752. height: math.unit(7, "feet"),
  51753. name: "Back",
  51754. image: {
  51755. source: "./media/characters/ventus-astro-fox/back.svg",
  51756. extra: 1789/1620,
  51757. bottom: 31/1820
  51758. }
  51759. },
  51760. outfit: {
  51761. height: math.unit(7, "feet"),
  51762. name: "Outfit",
  51763. image: {
  51764. source: "./media/characters/ventus-astro-fox/outfit.svg",
  51765. extra: 1054/925,
  51766. bottom: 15/1069
  51767. }
  51768. },
  51769. head: {
  51770. height: math.unit(1.12, "feet"),
  51771. name: "Head",
  51772. image: {
  51773. source: "./media/characters/ventus-astro-fox/head.svg",
  51774. extra: 866/504,
  51775. bottom: 0/866
  51776. }
  51777. },
  51778. hand: {
  51779. height: math.unit(1, "feet"),
  51780. name: "Hand",
  51781. image: {
  51782. source: "./media/characters/ventus-astro-fox/hand.svg"
  51783. }
  51784. },
  51785. paw: {
  51786. height: math.unit(1.5, "feet"),
  51787. name: "Paw",
  51788. image: {
  51789. source: "./media/characters/ventus-astro-fox/paw.svg"
  51790. }
  51791. },
  51792. },
  51793. [
  51794. {
  51795. name: "Normal",
  51796. height: math.unit(7, "feet"),
  51797. default: true
  51798. },
  51799. {
  51800. name: "Macro",
  51801. height: math.unit(200, "feet")
  51802. },
  51803. {
  51804. name: "Cosmic",
  51805. height: math.unit(3, "universes")
  51806. },
  51807. ]
  51808. ))
  51809. characterMakers.push(() => makeCharacter(
  51810. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  51811. {
  51812. front: {
  51813. height: math.unit(3, "meters"),
  51814. weight: math.unit(7000, "lb"),
  51815. name: "Front",
  51816. image: {
  51817. source: "./media/characters/core-t/front.svg",
  51818. extra: 5729/4941,
  51819. bottom: 1129/6858
  51820. }
  51821. },
  51822. },
  51823. [
  51824. {
  51825. name: "Big",
  51826. height: math.unit(3, "meters"),
  51827. default: true
  51828. },
  51829. ]
  51830. ))
  51831. characterMakers.push(() => makeCharacter(
  51832. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  51833. {
  51834. normal: {
  51835. height: math.unit(6 + 6/12, "feet"),
  51836. weight: math.unit(275, "lb"),
  51837. name: "Front",
  51838. image: {
  51839. source: "./media/characters/cadbunny/normal.svg",
  51840. extra: 1129/947,
  51841. bottom: 93/1222
  51842. },
  51843. default: true,
  51844. form: "normal"
  51845. },
  51846. gigantamax: {
  51847. height: math.unit(26, "feet"),
  51848. weight: math.unit(16000, "lb"),
  51849. name: "Front",
  51850. image: {
  51851. source: "./media/characters/cadbunny/gigantamax.svg",
  51852. extra: 1133/944,
  51853. bottom: 90/1223
  51854. },
  51855. default: true,
  51856. form: "gigantamax"
  51857. },
  51858. },
  51859. [
  51860. {
  51861. name: "Normal",
  51862. height: math.unit(6 + 6/12, "feet"),
  51863. default: true,
  51864. form: "normal"
  51865. },
  51866. {
  51867. name: "Small",
  51868. height: math.unit(26, "feet"),
  51869. default: true,
  51870. form: "gigantamax"
  51871. },
  51872. {
  51873. name: "Large",
  51874. height: math.unit(78, "feet"),
  51875. form: "gigantamax"
  51876. },
  51877. ],
  51878. {
  51879. "normal": {
  51880. name: "Normal",
  51881. default: true
  51882. },
  51883. "gigantamax": {
  51884. name: "Gigantamax"
  51885. }
  51886. }
  51887. ))
  51888. characterMakers.push(() => makeCharacter(
  51889. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51890. {
  51891. anthroFront: {
  51892. height: math.unit(8, "feet"),
  51893. weight: math.unit(300, "lb"),
  51894. name: "Front",
  51895. image: {
  51896. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51897. extra: 1272/1176,
  51898. bottom: 53/1325
  51899. },
  51900. form: "anthro",
  51901. default: true
  51902. },
  51903. feralSide: {
  51904. height: math.unit(4, "feet"),
  51905. weight: math.unit(250, "lb"),
  51906. name: "Side",
  51907. image: {
  51908. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51909. extra: 731/621,
  51910. bottom: 0/731
  51911. },
  51912. form: "feral",
  51913. default: true
  51914. },
  51915. },
  51916. [
  51917. {
  51918. name: "Regular",
  51919. height: math.unit(8, "feet"),
  51920. form: "anthro"
  51921. },
  51922. {
  51923. name: "Macro",
  51924. height: math.unit(250, "feet"),
  51925. form: "anthro",
  51926. default: true
  51927. },
  51928. {
  51929. name: "Regular",
  51930. height: math.unit(4, "feet"),
  51931. form: "feral"
  51932. },
  51933. {
  51934. name: "Macro",
  51935. height: math.unit(125, "feet"),
  51936. form: "feral",
  51937. default: true
  51938. },
  51939. ],
  51940. {
  51941. "anthro": {
  51942. name: "Anthro",
  51943. default: true
  51944. },
  51945. "feral": {
  51946. name: "Feral",
  51947. },
  51948. }
  51949. ))
  51950. characterMakers.push(() => makeCharacter(
  51951. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51952. {
  51953. front: {
  51954. height: math.unit(11 + 10/12, "feet"),
  51955. weight: math.unit(1587, "kg"),
  51956. name: "Front",
  51957. image: {
  51958. source: "./media/characters/maple-javira-dragon/front.svg",
  51959. extra: 1136/744,
  51960. bottom: 73/1209
  51961. }
  51962. },
  51963. side: {
  51964. height: math.unit(11 + 10/12, "feet"),
  51965. weight: math.unit(1587, "kg"),
  51966. name: "Side",
  51967. image: {
  51968. source: "./media/characters/maple-javira-dragon/side.svg",
  51969. extra: 712/505,
  51970. bottom: 17/729
  51971. }
  51972. },
  51973. head: {
  51974. height: math.unit(8.05, "feet"),
  51975. name: "Head",
  51976. image: {
  51977. source: "./media/characters/maple-javira-dragon/head.svg",
  51978. extra: 1420/1344,
  51979. bottom: 0/1420
  51980. }
  51981. },
  51982. },
  51983. [
  51984. {
  51985. name: "Normal",
  51986. height: math.unit(11 + 10/12, "feet"),
  51987. default: true
  51988. },
  51989. ]
  51990. ))
  51991. characterMakers.push(() => makeCharacter(
  51992. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51993. {
  51994. front: {
  51995. height: math.unit(117, "cm"),
  51996. weight: math.unit(50, "kg"),
  51997. name: "Front",
  51998. image: {
  51999. source: "./media/characters/sonia-wyverntail/front.svg",
  52000. extra: 708/592,
  52001. bottom: 25/733
  52002. }
  52003. },
  52004. },
  52005. [
  52006. {
  52007. name: "Normal",
  52008. height: math.unit(117, "cm"),
  52009. default: true
  52010. },
  52011. ]
  52012. ))
  52013. characterMakers.push(() => makeCharacter(
  52014. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  52015. {
  52016. front: {
  52017. height: math.unit(6 + 5/12, "feet"),
  52018. name: "Front",
  52019. image: {
  52020. source: "./media/characters/micah/front.svg",
  52021. extra: 1758/1546,
  52022. bottom: 214/1972
  52023. }
  52024. },
  52025. },
  52026. [
  52027. {
  52028. name: "Normal",
  52029. height: math.unit(6 + 5/12, "feet"),
  52030. default: true
  52031. },
  52032. ]
  52033. ))
  52034. characterMakers.push(() => makeCharacter(
  52035. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  52036. {
  52037. front: {
  52038. height: math.unit(1.75, "meters"),
  52039. weight: math.unit(100, "kg"),
  52040. name: "Front",
  52041. image: {
  52042. source: "./media/characters/zarya/front.svg",
  52043. extra: 741/735,
  52044. bottom: 44/785
  52045. },
  52046. extraAttributes: {
  52047. "tailLength": {
  52048. name: "Tail Length",
  52049. power: 1,
  52050. type: "length",
  52051. base: math.unit(180, "cm")
  52052. },
  52053. "pawLength": {
  52054. name: "Paw Length",
  52055. power: 1,
  52056. type: "length",
  52057. base: math.unit(31, "cm")
  52058. },
  52059. }
  52060. },
  52061. side: {
  52062. height: math.unit(1.75, "meters"),
  52063. weight: math.unit(100, "kg"),
  52064. name: "Side",
  52065. image: {
  52066. source: "./media/characters/zarya/side.svg",
  52067. extra: 776/770,
  52068. bottom: 17/793
  52069. },
  52070. extraAttributes: {
  52071. "tailLength": {
  52072. name: "Tail Length",
  52073. power: 1,
  52074. type: "length",
  52075. base: math.unit(180, "cm")
  52076. },
  52077. "pawLength": {
  52078. name: "Paw Length",
  52079. power: 1,
  52080. type: "length",
  52081. base: math.unit(31, "cm")
  52082. },
  52083. }
  52084. },
  52085. back: {
  52086. height: math.unit(1.75, "meters"),
  52087. weight: math.unit(100, "kg"),
  52088. name: "Back",
  52089. image: {
  52090. source: "./media/characters/zarya/back.svg",
  52091. extra: 741/735,
  52092. bottom: 44/785
  52093. },
  52094. extraAttributes: {
  52095. "tailLength": {
  52096. name: "Tail Length",
  52097. power: 1,
  52098. type: "length",
  52099. base: math.unit(180, "cm")
  52100. },
  52101. "pawLength": {
  52102. name: "Paw Length",
  52103. power: 1,
  52104. type: "length",
  52105. base: math.unit(31, "cm")
  52106. },
  52107. }
  52108. },
  52109. frontNoTail: {
  52110. height: math.unit(1.75, "meters"),
  52111. weight: math.unit(100, "kg"),
  52112. name: "Front (No Tail)",
  52113. image: {
  52114. source: "./media/characters/zarya/front-no-tail.svg",
  52115. extra: 741/735,
  52116. bottom: 44/785
  52117. },
  52118. extraAttributes: {
  52119. "tailLength": {
  52120. name: "Tail Length",
  52121. power: 1,
  52122. type: "length",
  52123. base: math.unit(180, "cm")
  52124. },
  52125. "pawLength": {
  52126. name: "Paw Length",
  52127. power: 1,
  52128. type: "length",
  52129. base: math.unit(31, "cm")
  52130. },
  52131. }
  52132. },
  52133. dressed: {
  52134. height: math.unit(1.75, "meters"),
  52135. weight: math.unit(100, "kg"),
  52136. name: "Dressed",
  52137. image: {
  52138. source: "./media/characters/zarya/dressed.svg",
  52139. extra: 683/672,
  52140. bottom: 79/762
  52141. },
  52142. extraAttributes: {
  52143. "tailLength": {
  52144. name: "Tail Length",
  52145. power: 1,
  52146. type: "length",
  52147. base: math.unit(180, "cm")
  52148. },
  52149. "pawLength": {
  52150. name: "Paw Length",
  52151. power: 1,
  52152. type: "length",
  52153. base: math.unit(31, "cm")
  52154. },
  52155. }
  52156. },
  52157. },
  52158. [
  52159. {
  52160. name: "Micro",
  52161. height: math.unit(5, "cm")
  52162. },
  52163. {
  52164. name: "Normal",
  52165. height: math.unit(1.75, "meters"),
  52166. default: true
  52167. },
  52168. {
  52169. name: "Macro",
  52170. height: math.unit(122, "meters")
  52171. },
  52172. ]
  52173. ))
  52174. characterMakers.push(() => makeCharacter(
  52175. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  52176. {
  52177. front: {
  52178. height: math.unit(7.5, "feet"),
  52179. name: "Front",
  52180. image: {
  52181. source: "./media/characters/sven-hatisson/front.svg",
  52182. extra: 917/857,
  52183. bottom: 42/959
  52184. }
  52185. },
  52186. back: {
  52187. height: math.unit(7.5, "feet"),
  52188. name: "Back",
  52189. image: {
  52190. source: "./media/characters/sven-hatisson/back.svg",
  52191. extra: 903/856,
  52192. bottom: 15/918
  52193. }
  52194. },
  52195. },
  52196. [
  52197. {
  52198. name: "Base Height",
  52199. height: math.unit(7.5, "feet")
  52200. },
  52201. {
  52202. name: "Usual Height",
  52203. height: math.unit(13.5, "feet"),
  52204. default: true
  52205. },
  52206. {
  52207. name: "Smaller Macro",
  52208. height: math.unit(85, "feet")
  52209. },
  52210. {
  52211. name: "Moderate Macro",
  52212. height: math.unit(320, "feet")
  52213. },
  52214. {
  52215. name: "Large Macro",
  52216. height: math.unit(1000, "feet")
  52217. },
  52218. {
  52219. name: "Largest Size",
  52220. height: math.unit(2, "miles")
  52221. },
  52222. ]
  52223. ))
  52224. characterMakers.push(() => makeCharacter(
  52225. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  52226. {
  52227. side: {
  52228. height: math.unit(1.8, "meters"),
  52229. weight: math.unit(275, "kg"),
  52230. name: "Side",
  52231. image: {
  52232. source: "./media/characters/terra/side.svg",
  52233. extra: 1273/1147,
  52234. bottom: 0/1273
  52235. }
  52236. },
  52237. },
  52238. [
  52239. {
  52240. name: "Normal",
  52241. height: math.unit(16.2, "meters"),
  52242. default: true
  52243. },
  52244. ]
  52245. ))
  52246. characterMakers.push(() => makeCharacter(
  52247. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  52248. {
  52249. borzoiFront: {
  52250. height: math.unit(6 + 9/12, "feet"),
  52251. name: "Front",
  52252. image: {
  52253. source: "./media/characters/rae/borzoi-front.svg",
  52254. extra: 1161/1098,
  52255. bottom: 31/1192
  52256. },
  52257. form: "borzoi",
  52258. default: true
  52259. },
  52260. werewolfFront: {
  52261. height: math.unit(8 + 7/12, "feet"),
  52262. name: "Front",
  52263. image: {
  52264. source: "./media/characters/rae/werewolf-front.svg",
  52265. extra: 1411/1334,
  52266. bottom: 127/1538
  52267. },
  52268. form: "werewolf",
  52269. default: true
  52270. },
  52271. },
  52272. [
  52273. {
  52274. name: "Normal",
  52275. height: math.unit(6 + 9/12, "feet"),
  52276. default: true,
  52277. form: "borzoi"
  52278. },
  52279. {
  52280. name: "Normal",
  52281. height: math.unit(8 + 7/12, "feet"),
  52282. default: true,
  52283. form: "werewolf"
  52284. },
  52285. ],
  52286. {
  52287. "borzoi": {
  52288. name: "Borzoi",
  52289. default: true
  52290. },
  52291. "werewolf": {
  52292. name: "Werewolf",
  52293. },
  52294. }
  52295. ))
  52296. characterMakers.push(() => makeCharacter(
  52297. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  52298. {
  52299. front: {
  52300. height: math.unit(8 + 7/12, "feet"),
  52301. weight: math.unit(482, "lb"),
  52302. name: "Front",
  52303. image: {
  52304. source: "./media/characters/kit/front.svg",
  52305. extra: 1247/1103,
  52306. bottom: 41/1288
  52307. }
  52308. },
  52309. back: {
  52310. height: math.unit(8 + 7/12, "feet"),
  52311. weight: math.unit(482, "lb"),
  52312. name: "Back",
  52313. image: {
  52314. source: "./media/characters/kit/back.svg",
  52315. extra: 1252/1123,
  52316. bottom: 21/1273
  52317. }
  52318. },
  52319. paw: {
  52320. height: math.unit(1.46, "feet"),
  52321. name: "Paw",
  52322. image: {
  52323. source: "./media/characters/kit/paw.svg"
  52324. }
  52325. },
  52326. },
  52327. [
  52328. {
  52329. name: "Normal",
  52330. height: math.unit(2.61, "meters"),
  52331. default: true
  52332. },
  52333. {
  52334. name: "\"Tall\"",
  52335. height: math.unit(8.21, "meters")
  52336. },
  52337. {
  52338. name: "Tall",
  52339. height: math.unit(19.6, "meters")
  52340. },
  52341. {
  52342. name: "Very Tall",
  52343. height: math.unit(57.91, "meters")
  52344. },
  52345. {
  52346. name: "Semi-Macro",
  52347. height: math.unit(138.64, "meters")
  52348. },
  52349. {
  52350. name: "Macro",
  52351. height: math.unit(831.99, "meters")
  52352. },
  52353. {
  52354. name: "EX-Macro",
  52355. height: math.unit(96451121, "meters")
  52356. },
  52357. {
  52358. name: "S1-Omnipotent",
  52359. height: math.unit(4.42074e+9, "meters")
  52360. },
  52361. {
  52362. name: "S2-Omnipotent",
  52363. height: math.unit(9.42074e+17, "meters")
  52364. },
  52365. {
  52366. name: "Omnipotent",
  52367. height: math.unit(4.23112e+24, "meters")
  52368. },
  52369. {
  52370. name: "Hypergod",
  52371. height: math.unit(5.05176e+27, "meters")
  52372. },
  52373. {
  52374. name: "Hypergod-EX",
  52375. height: math.unit(9.45532e+49, "meters")
  52376. },
  52377. {
  52378. name: "Hypergod-SP",
  52379. height: math.unit(9.45532e+195, "meters")
  52380. },
  52381. ]
  52382. ))
  52383. characterMakers.push(() => makeCharacter(
  52384. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  52385. {
  52386. side: {
  52387. height: math.unit(0.6, "meters"),
  52388. weight: math.unit(24, "kg"),
  52389. name: "Side",
  52390. image: {
  52391. source: "./media/characters/celeste/side.svg",
  52392. extra: 810/517,
  52393. bottom: 53/863
  52394. }
  52395. },
  52396. },
  52397. [
  52398. {
  52399. name: "Velociraptor",
  52400. height: math.unit(0.6, "meters"),
  52401. default: true
  52402. },
  52403. {
  52404. name: "Utahraptor",
  52405. height: math.unit(1.8, "meters")
  52406. },
  52407. {
  52408. name: "Gallimimus",
  52409. height: math.unit(4.0, "meters")
  52410. },
  52411. {
  52412. name: "Large",
  52413. height: math.unit(20, "meters")
  52414. },
  52415. {
  52416. name: "Planetary",
  52417. height: math.unit(50, "megameters")
  52418. },
  52419. {
  52420. name: "Stellar",
  52421. height: math.unit(1.5, "gigameters")
  52422. },
  52423. {
  52424. name: "Galactic",
  52425. height: math.unit(100, "exameters")
  52426. },
  52427. ]
  52428. ))
  52429. characterMakers.push(() => makeCharacter(
  52430. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  52431. {
  52432. front: {
  52433. height: math.unit(6, "feet"),
  52434. weight: math.unit(210, "lb"),
  52435. name: "Front",
  52436. image: {
  52437. source: "./media/characters/glacia/front.svg",
  52438. extra: 958/901,
  52439. bottom: 45/1003
  52440. }
  52441. },
  52442. },
  52443. [
  52444. {
  52445. name: "Macro",
  52446. height: math.unit(1000, "meters"),
  52447. default: true
  52448. },
  52449. ]
  52450. ))
  52451. characterMakers.push(() => makeCharacter(
  52452. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  52453. {
  52454. front: {
  52455. height: math.unit(4, "meters"),
  52456. name: "Front",
  52457. image: {
  52458. source: "./media/characters/giri/front.svg",
  52459. extra: 966/894,
  52460. bottom: 21/987
  52461. }
  52462. },
  52463. },
  52464. [
  52465. {
  52466. name: "Normal",
  52467. height: math.unit(4, "meters"),
  52468. default: true
  52469. },
  52470. ]
  52471. ))
  52472. characterMakers.push(() => makeCharacter(
  52473. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  52474. {
  52475. back: {
  52476. height: math.unit(4, "feet"),
  52477. weight: math.unit(37, "lb"),
  52478. name: "Back",
  52479. image: {
  52480. source: "./media/characters/tin/back.svg",
  52481. extra: 845/780,
  52482. bottom: 28/873
  52483. }
  52484. },
  52485. },
  52486. [
  52487. {
  52488. name: "Normal",
  52489. height: math.unit(4, "feet"),
  52490. default: true
  52491. },
  52492. ]
  52493. ))
  52494. characterMakers.push(() => makeCharacter(
  52495. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  52496. {
  52497. front: {
  52498. height: math.unit(25, "feet"),
  52499. name: "Front",
  52500. image: {
  52501. source: "./media/characters/cadenza-vivace/front.svg",
  52502. extra: 1842/1578,
  52503. bottom: 30/1872
  52504. }
  52505. },
  52506. },
  52507. [
  52508. {
  52509. name: "Macro",
  52510. height: math.unit(25, "feet"),
  52511. default: true
  52512. },
  52513. ]
  52514. ))
  52515. characterMakers.push(() => makeCharacter(
  52516. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  52517. {
  52518. front: {
  52519. height: math.unit(10, "feet"),
  52520. weight: math.unit(625, "kg"),
  52521. name: "Front",
  52522. image: {
  52523. source: "./media/characters/zain/front.svg",
  52524. extra: 1682/1498,
  52525. bottom: 223/1905
  52526. }
  52527. },
  52528. back: {
  52529. height: math.unit(10, "feet"),
  52530. weight: math.unit(625, "kg"),
  52531. name: "Back",
  52532. image: {
  52533. source: "./media/characters/zain/back.svg",
  52534. extra: 1814/1657,
  52535. bottom: 152/1966
  52536. }
  52537. },
  52538. head: {
  52539. height: math.unit(10, "feet"),
  52540. weight: math.unit(625, "kg"),
  52541. name: "Head",
  52542. image: {
  52543. source: "./media/characters/zain/head.svg",
  52544. extra: 1059/762,
  52545. bottom: 0/1059
  52546. }
  52547. },
  52548. },
  52549. [
  52550. {
  52551. name: "Normal",
  52552. height: math.unit(10, "feet"),
  52553. default: true
  52554. },
  52555. ]
  52556. ))
  52557. characterMakers.push(() => makeCharacter(
  52558. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  52559. {
  52560. front: {
  52561. height: math.unit(6 + 5/12, "feet"),
  52562. weight: math.unit(750, "lb"),
  52563. name: "Front",
  52564. image: {
  52565. source: "./media/characters/ruchex/front.svg",
  52566. extra: 877/820,
  52567. bottom: 17/894
  52568. },
  52569. extraAttributes: {
  52570. "width": {
  52571. name: "Width",
  52572. power: 1,
  52573. type: "length",
  52574. base: math.unit(4.757, "feet")
  52575. },
  52576. }
  52577. },
  52578. },
  52579. [
  52580. {
  52581. name: "Normal",
  52582. height: math.unit(6 + 5/12, "feet"),
  52583. default: true
  52584. },
  52585. ]
  52586. ))
  52587. characterMakers.push(() => makeCharacter(
  52588. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  52589. {
  52590. dressedFront: {
  52591. height: math.unit(191, "cm"),
  52592. weight: math.unit(80, "kg"),
  52593. name: "Front",
  52594. image: {
  52595. source: "./media/characters/buster/dressed-front.svg",
  52596. extra: 1022/973,
  52597. bottom: 69/1091
  52598. }
  52599. },
  52600. dressedBack: {
  52601. height: math.unit(191, "cm"),
  52602. weight: math.unit(80, "kg"),
  52603. name: "Back",
  52604. image: {
  52605. source: "./media/characters/buster/dressed-back.svg",
  52606. extra: 1018/970,
  52607. bottom: 55/1073
  52608. }
  52609. },
  52610. nudeFront: {
  52611. height: math.unit(191, "cm"),
  52612. weight: math.unit(80, "kg"),
  52613. name: "Front (Nude)",
  52614. image: {
  52615. source: "./media/characters/buster/nude-front.svg",
  52616. extra: 1022/973,
  52617. bottom: 69/1091
  52618. }
  52619. },
  52620. nudeBack: {
  52621. height: math.unit(191, "cm"),
  52622. weight: math.unit(80, "kg"),
  52623. name: "Back (Nude)",
  52624. image: {
  52625. source: "./media/characters/buster/nude-back.svg",
  52626. extra: 1018/970,
  52627. bottom: 55/1073
  52628. }
  52629. },
  52630. dick: {
  52631. height: math.unit(2.59, "feet"),
  52632. name: "Dick",
  52633. image: {
  52634. source: "./media/characters/buster/dick.svg"
  52635. }
  52636. },
  52637. ass: {
  52638. height: math.unit(1.2, "feet"),
  52639. name: "Ass",
  52640. image: {
  52641. source: "./media/characters/buster/ass.svg"
  52642. }
  52643. },
  52644. },
  52645. [
  52646. {
  52647. name: "Normal",
  52648. height: math.unit(191, "cm"),
  52649. default: true
  52650. },
  52651. ]
  52652. ))
  52653. characterMakers.push(() => makeCharacter(
  52654. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  52655. {
  52656. side: {
  52657. height: math.unit(8.1, "feet"),
  52658. weight: math.unit(3500, "lb"),
  52659. name: "Side",
  52660. image: {
  52661. source: "./media/characters/sonya/side.svg",
  52662. extra: 1730/1317,
  52663. bottom: 86/1816
  52664. }
  52665. },
  52666. },
  52667. [
  52668. {
  52669. name: "Normal",
  52670. height: math.unit(8.1, "feet"),
  52671. default: true
  52672. },
  52673. ]
  52674. ))
  52675. characterMakers.push(() => makeCharacter(
  52676. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  52677. {
  52678. front: {
  52679. height: math.unit(6, "feet"),
  52680. weight: math.unit(150, "lb"),
  52681. name: "Front",
  52682. image: {
  52683. source: "./media/characters/cadence-andrysiak/front.svg",
  52684. extra: 1164/1121,
  52685. bottom: 60/1224
  52686. }
  52687. },
  52688. back: {
  52689. height: math.unit(6, "feet"),
  52690. weight: math.unit(150, "lb"),
  52691. name: "Back",
  52692. image: {
  52693. source: "./media/characters/cadence-andrysiak/back.svg",
  52694. extra: 1200/1165,
  52695. bottom: 9/1209
  52696. }
  52697. },
  52698. dressed: {
  52699. height: math.unit(6, "feet"),
  52700. weight: math.unit(150, "lb"),
  52701. name: "Dressed",
  52702. image: {
  52703. source: "./media/characters/cadence-andrysiak/dressed.svg",
  52704. extra: 1164/1121,
  52705. bottom: 60/1224
  52706. }
  52707. },
  52708. },
  52709. [
  52710. {
  52711. name: "Micro",
  52712. height: math.unit(1, "mm")
  52713. },
  52714. {
  52715. name: "Normal",
  52716. height: math.unit(6, "feet"),
  52717. default: true
  52718. },
  52719. ]
  52720. ))
  52721. characterMakers.push(() => makeCharacter(
  52722. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  52723. {
  52724. front: {
  52725. height: math.unit(60, "inches"),
  52726. weight: math.unit(16, "lb"),
  52727. preyCapacity: math.unit(80, "liters"),
  52728. name: "Front",
  52729. image: {
  52730. source: "./media/characters/penny-lynx/front.svg",
  52731. extra: 1959/1769,
  52732. bottom: 49/2008
  52733. }
  52734. },
  52735. },
  52736. [
  52737. {
  52738. name: "Nokia",
  52739. height: math.unit(2, "inches")
  52740. },
  52741. {
  52742. name: "Desktop",
  52743. height: math.unit(24, "inches")
  52744. },
  52745. {
  52746. name: "TV",
  52747. height: math.unit(60, "inches")
  52748. },
  52749. {
  52750. name: "Jumbotron",
  52751. height: math.unit(12, "feet")
  52752. },
  52753. {
  52754. name: "Billboard",
  52755. height: math.unit(48, "feet"),
  52756. default: true
  52757. },
  52758. {
  52759. name: "IMAX",
  52760. height: math.unit(96, "feet")
  52761. },
  52762. {
  52763. name: "SINGULARITY",
  52764. height: math.unit(864938, "miles")
  52765. },
  52766. ]
  52767. ))
  52768. characterMakers.push(() => makeCharacter(
  52769. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  52770. {
  52771. front: {
  52772. height: math.unit(5 + 4/12, "feet"),
  52773. weight: math.unit(230, "lb"),
  52774. name: "Front",
  52775. image: {
  52776. source: "./media/characters/sukebe/front.svg",
  52777. extra: 2130/2038,
  52778. bottom: 90/2220
  52779. }
  52780. },
  52781. back: {
  52782. height: math.unit(3.48, "feet"),
  52783. weight: math.unit(230, "lb"),
  52784. name: "Back",
  52785. image: {
  52786. source: "./media/characters/sukebe/back.svg",
  52787. extra: 1670/1604,
  52788. bottom: 0/1670
  52789. }
  52790. },
  52791. },
  52792. [
  52793. {
  52794. name: "Normal",
  52795. height: math.unit(5 + 4/12, "feet"),
  52796. default: true
  52797. },
  52798. ]
  52799. ))
  52800. characterMakers.push(() => makeCharacter(
  52801. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  52802. {
  52803. front: {
  52804. height: math.unit(6, "feet"),
  52805. name: "Front",
  52806. image: {
  52807. source: "./media/characters/nylla/front.svg",
  52808. extra: 1868/1699,
  52809. bottom: 97/1965
  52810. }
  52811. },
  52812. back: {
  52813. height: math.unit(6, "feet"),
  52814. name: "Back",
  52815. image: {
  52816. source: "./media/characters/nylla/back.svg",
  52817. extra: 1889/1712,
  52818. bottom: 93/1982
  52819. }
  52820. },
  52821. frontNsfw: {
  52822. height: math.unit(6, "feet"),
  52823. name: "Front (NSFW)",
  52824. image: {
  52825. source: "./media/characters/nylla/front-nsfw.svg",
  52826. extra: 1868/1699,
  52827. bottom: 97/1965
  52828. },
  52829. extraAttributes: {
  52830. "dickLength": {
  52831. name: "Dick Length",
  52832. power: 1,
  52833. type: "length",
  52834. base: math.unit(1.4, "feet")
  52835. },
  52836. "cumVolume": {
  52837. name: "Cum Volume",
  52838. power: 3,
  52839. type: "volume",
  52840. base: math.unit(100, "mL")
  52841. },
  52842. }
  52843. },
  52844. backNsfw: {
  52845. height: math.unit(6, "feet"),
  52846. name: "Back (NSFW)",
  52847. image: {
  52848. source: "./media/characters/nylla/back-nsfw.svg",
  52849. extra: 1889/1712,
  52850. bottom: 93/1982
  52851. }
  52852. },
  52853. maw: {
  52854. height: math.unit(2.10, "feet"),
  52855. name: "Maw",
  52856. image: {
  52857. source: "./media/characters/nylla/maw.svg"
  52858. }
  52859. },
  52860. paws: {
  52861. height: math.unit(2.06, "feet"),
  52862. name: "Paws",
  52863. image: {
  52864. source: "./media/characters/nylla/paws.svg"
  52865. }
  52866. },
  52867. muzzle: {
  52868. height: math.unit(0.61, "feet"),
  52869. name: "Muzzle",
  52870. image: {
  52871. source: "./media/characters/nylla/muzzle.svg"
  52872. }
  52873. },
  52874. sheath: {
  52875. height: math.unit(1.305, "feet"),
  52876. name: "Sheath",
  52877. image: {
  52878. source: "./media/characters/nylla/sheath.svg"
  52879. }
  52880. },
  52881. },
  52882. [
  52883. {
  52884. name: "Micro",
  52885. height: math.unit(7.5, "inches")
  52886. },
  52887. {
  52888. name: "Normal",
  52889. height: math.unit(7, "feet"),
  52890. default: true
  52891. },
  52892. {
  52893. name: "Macro",
  52894. height: math.unit(60, "feet")
  52895. },
  52896. {
  52897. name: "Mega",
  52898. height: math.unit(200, "feet")
  52899. },
  52900. ]
  52901. ))
  52902. characterMakers.push(() => makeCharacter(
  52903. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  52904. {
  52905. front: {
  52906. height: math.unit(10, "feet"),
  52907. weight: math.unit(2300, "lb"),
  52908. name: "Front",
  52909. image: {
  52910. source: "./media/characters/hunt3r/front.svg",
  52911. extra: 1909/1742,
  52912. bottom: 46/1955
  52913. }
  52914. },
  52915. },
  52916. [
  52917. {
  52918. name: "Normal",
  52919. height: math.unit(10, "feet"),
  52920. default: true
  52921. },
  52922. ]
  52923. ))
  52924. characterMakers.push(() => makeCharacter(
  52925. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  52926. {
  52927. dressed: {
  52928. height: math.unit(11, "feet"),
  52929. weight: math.unit(18500, "lb"),
  52930. preyCapacity: math.unit(9, "people"),
  52931. name: "Dressed",
  52932. image: {
  52933. source: "./media/characters/cylphis/dressed.svg",
  52934. extra: 1028/1003,
  52935. bottom: 75/1103
  52936. },
  52937. },
  52938. undressed: {
  52939. height: math.unit(11, "feet"),
  52940. weight: math.unit(18500, "lb"),
  52941. preyCapacity: math.unit(9, "people"),
  52942. name: "Undressed",
  52943. image: {
  52944. source: "./media/characters/cylphis/undressed.svg",
  52945. extra: 1028/1003,
  52946. bottom: 75/1103
  52947. }
  52948. },
  52949. full: {
  52950. height: math.unit(11, "feet"),
  52951. weight: math.unit(18500 + 150*9, "lb"),
  52952. preyCapacity: math.unit(9, "people"),
  52953. name: "Full",
  52954. image: {
  52955. source: "./media/characters/cylphis/full.svg",
  52956. extra: 1028/1003,
  52957. bottom: 75/1103
  52958. }
  52959. },
  52960. },
  52961. [
  52962. {
  52963. name: "Small",
  52964. height: math.unit(8, "feet")
  52965. },
  52966. {
  52967. name: "Normal",
  52968. height: math.unit(11, "feet"),
  52969. default: true
  52970. },
  52971. ]
  52972. ))
  52973. characterMakers.push(() => makeCharacter(
  52974. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  52975. {
  52976. front: {
  52977. height: math.unit(2 + 7/12, "feet"),
  52978. name: "Front",
  52979. image: {
  52980. source: "./media/characters/orishan/front.svg",
  52981. extra: 1058/1023,
  52982. bottom: 23/1081
  52983. }
  52984. },
  52985. back: {
  52986. height: math.unit(2 + 7/12, "feet"),
  52987. name: "Back",
  52988. image: {
  52989. source: "./media/characters/orishan/back.svg",
  52990. extra: 1058/1023,
  52991. bottom: 23/1081
  52992. }
  52993. },
  52994. },
  52995. [
  52996. {
  52997. name: "Micro",
  52998. height: math.unit(2, "cm")
  52999. },
  53000. {
  53001. name: "Normal",
  53002. height: math.unit(2 + 7/12, "feet"),
  53003. default: true
  53004. },
  53005. ]
  53006. ))
  53007. characterMakers.push(() => makeCharacter(
  53008. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  53009. {
  53010. front: {
  53011. height: math.unit(3, "meters"),
  53012. weight: math.unit(508, "kg"),
  53013. name: "Front",
  53014. image: {
  53015. source: "./media/characters/seranis/front.svg",
  53016. extra: 1478/1454,
  53017. bottom: 41/1519
  53018. }
  53019. },
  53020. },
  53021. [
  53022. {
  53023. name: "Normal",
  53024. height: math.unit(3, "meters"),
  53025. default: true
  53026. },
  53027. {
  53028. name: "Macro",
  53029. height: math.unit(108, "meters")
  53030. },
  53031. {
  53032. name: "Megamacro",
  53033. height: math.unit(1250, "meters")
  53034. },
  53035. ]
  53036. ))
  53037. characterMakers.push(() => makeCharacter(
  53038. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  53039. {
  53040. undressed: {
  53041. height: math.unit(5 + 3/12, "feet"),
  53042. name: "Undressed",
  53043. image: {
  53044. source: "./media/characters/ankou/undressed.svg",
  53045. extra: 1301/1213,
  53046. bottom: 87/1388
  53047. }
  53048. },
  53049. dressed: {
  53050. height: math.unit(5 + 3/12, "feet"),
  53051. name: "Dressed",
  53052. image: {
  53053. source: "./media/characters/ankou/dressed.svg",
  53054. extra: 1301/1213,
  53055. bottom: 87/1388
  53056. }
  53057. },
  53058. head: {
  53059. height: math.unit(1.61, "feet"),
  53060. name: "Head",
  53061. image: {
  53062. source: "./media/characters/ankou/head.svg"
  53063. }
  53064. },
  53065. },
  53066. [
  53067. {
  53068. name: "Normal",
  53069. height: math.unit(5 + 3/12, "feet"),
  53070. default: true
  53071. },
  53072. ]
  53073. ))
  53074. characterMakers.push(() => makeCharacter(
  53075. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  53076. {
  53077. side: {
  53078. height: math.unit(6 + 3/12, "feet"),
  53079. weight: math.unit(200, "kg"),
  53080. name: "Side",
  53081. image: {
  53082. source: "./media/characters/juniper-skunktaur/side.svg",
  53083. extra: 1574/1229,
  53084. bottom: 38/1612
  53085. }
  53086. },
  53087. front: {
  53088. height: math.unit(6 + 3/12, "feet"),
  53089. weight: math.unit(200, "kg"),
  53090. name: "Front",
  53091. image: {
  53092. source: "./media/characters/juniper-skunktaur/front.svg",
  53093. extra: 1337/1278,
  53094. bottom: 22/1359
  53095. }
  53096. },
  53097. back: {
  53098. height: math.unit(6 + 3/12, "feet"),
  53099. weight: math.unit(200, "kg"),
  53100. name: "Back",
  53101. image: {
  53102. source: "./media/characters/juniper-skunktaur/back.svg",
  53103. extra: 1618/1273,
  53104. bottom: 13/1631
  53105. }
  53106. },
  53107. top: {
  53108. height: math.unit(2.62, "feet"),
  53109. weight: math.unit(200, "kg"),
  53110. name: "Top",
  53111. image: {
  53112. source: "./media/characters/juniper-skunktaur/top.svg"
  53113. }
  53114. },
  53115. },
  53116. [
  53117. {
  53118. name: "Normal",
  53119. height: math.unit(6 + 3/12, "feet"),
  53120. default: true
  53121. },
  53122. ]
  53123. ))
  53124. characterMakers.push(() => makeCharacter(
  53125. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  53126. {
  53127. front: {
  53128. height: math.unit(20.5, "feet"),
  53129. name: "Front",
  53130. image: {
  53131. source: "./media/characters/rei/front.svg",
  53132. extra: 1349/1195,
  53133. bottom: 31/1380
  53134. }
  53135. },
  53136. back: {
  53137. height: math.unit(20.5, "feet"),
  53138. name: "Back",
  53139. image: {
  53140. source: "./media/characters/rei/back.svg",
  53141. extra: 1358/1204,
  53142. bottom: 22/1380
  53143. }
  53144. },
  53145. pawsDigi: {
  53146. height: math.unit(3.45, "feet"),
  53147. name: "Paws (Digi)",
  53148. image: {
  53149. source: "./media/characters/rei/paws-digi.svg"
  53150. }
  53151. },
  53152. pawsPlanti: {
  53153. height: math.unit(3.45, "feet"),
  53154. name: "Paws (Planti)",
  53155. image: {
  53156. source: "./media/characters/rei/paws-planti.svg"
  53157. }
  53158. },
  53159. },
  53160. [
  53161. {
  53162. name: "Normal",
  53163. height: math.unit(20.5, "feet"),
  53164. default: true
  53165. },
  53166. ]
  53167. ))
  53168. characterMakers.push(() => makeCharacter(
  53169. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  53170. {
  53171. front: {
  53172. height: math.unit(5 + 11/12, "feet"),
  53173. name: "Front",
  53174. image: {
  53175. source: "./media/characters/carina/front.svg",
  53176. extra: 1720/1449,
  53177. bottom: 14/1734
  53178. }
  53179. },
  53180. back: {
  53181. height: math.unit(5 + 11/12, "feet"),
  53182. name: "Back",
  53183. image: {
  53184. source: "./media/characters/carina/back.svg",
  53185. extra: 1493/1445,
  53186. bottom: 17/1510
  53187. }
  53188. },
  53189. paw: {
  53190. height: math.unit(0.92, "feet"),
  53191. name: "Paw",
  53192. image: {
  53193. source: "./media/characters/carina/paw.svg"
  53194. }
  53195. },
  53196. },
  53197. [
  53198. {
  53199. name: "Normal",
  53200. height: math.unit(5 + 11/12, "feet"),
  53201. default: true
  53202. },
  53203. ]
  53204. ))
  53205. characterMakers.push(() => makeCharacter(
  53206. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  53207. {
  53208. normal_front: {
  53209. height: math.unit(4.88, "meters"),
  53210. name: "Front",
  53211. image: {
  53212. source: "./media/characters/maya/normal-front.svg",
  53213. extra: 1222/1145,
  53214. bottom: 57/1279
  53215. },
  53216. form: "normal",
  53217. default: true
  53218. },
  53219. monstrous_front: {
  53220. height: math.unit(10, "meters"),
  53221. name: "Front",
  53222. image: {
  53223. source: "./media/characters/maya/monstrous-front.svg",
  53224. extra: 1523/1109,
  53225. bottom: 113/1636
  53226. },
  53227. form: "monstrous",
  53228. extraAttributes: {
  53229. "swallowSize": {
  53230. name: "Tailmaw Bite Size",
  53231. power: 3,
  53232. type: "volume",
  53233. base: math.unit(43000, "liters")
  53234. },
  53235. }
  53236. },
  53237. taur_front: {
  53238. height: math.unit(10, "meters"),
  53239. name: "Front",
  53240. image: {
  53241. source: "./media/characters/maya/taur-front.svg",
  53242. extra: 743/506,
  53243. bottom: 101/844
  53244. },
  53245. form: "taur",
  53246. },
  53247. },
  53248. [
  53249. {
  53250. name: "Normal",
  53251. height: math.unit(4.88, "meters"),
  53252. default: true,
  53253. form: "normal"
  53254. },
  53255. {
  53256. name: "Macro",
  53257. height: math.unit(38.1, "meters"),
  53258. form: "normal"
  53259. },
  53260. {
  53261. name: "Macro+",
  53262. height: math.unit(152.4, "meters"),
  53263. form: "normal"
  53264. },
  53265. {
  53266. name: "Macro++",
  53267. height: math.unit(16.09, "km"),
  53268. form: "normal"
  53269. },
  53270. {
  53271. name: "Mega-macro",
  53272. height: math.unit(700, "megameters"),
  53273. form: "normal"
  53274. },
  53275. {
  53276. name: "Satiated",
  53277. height: math.unit(10, "meters"),
  53278. default: true,
  53279. form: "monstrous"
  53280. },
  53281. {
  53282. name: "Hungry",
  53283. height: math.unit(75, "meters"),
  53284. form: "monstrous"
  53285. },
  53286. {
  53287. name: "Ravenous",
  53288. height: math.unit(500, "meters"),
  53289. form: "monstrous"
  53290. },
  53291. {
  53292. name: "\"Normal\"",
  53293. height: math.unit(10, "meters"),
  53294. form: "taur"
  53295. },
  53296. {
  53297. name: "Macro",
  53298. height: math.unit(50, "meters"),
  53299. form: "taur"
  53300. },
  53301. ],
  53302. {
  53303. "normal": {
  53304. name: "Normal",
  53305. default: true
  53306. },
  53307. "monstrous": {
  53308. name: "Monstrous",
  53309. },
  53310. "taur": {
  53311. name: "Taur",
  53312. },
  53313. }
  53314. ))
  53315. characterMakers.push(() => makeCharacter(
  53316. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  53317. {
  53318. front: {
  53319. height: math.unit(6 + 2/12, "feet"),
  53320. weight: math.unit(500, "lb"),
  53321. preyCapacity: math.unit(4, "people"),
  53322. name: "Front",
  53323. image: {
  53324. source: "./media/characters/yepir/front.svg"
  53325. }
  53326. },
  53327. side: {
  53328. height: math.unit(6 + 2/12, "feet"),
  53329. weight: math.unit(500, "lb"),
  53330. preyCapacity: math.unit(4, "people"),
  53331. name: "Side",
  53332. image: {
  53333. source: "./media/characters/yepir/side.svg"
  53334. }
  53335. },
  53336. paw: {
  53337. height: math.unit(1.05, "feet"),
  53338. name: "Paw",
  53339. image: {
  53340. source: "./media/characters/yepir/paw.svg"
  53341. }
  53342. },
  53343. },
  53344. [
  53345. {
  53346. name: "Normal",
  53347. height: math.unit(6 + 2/12, "feet"),
  53348. default: true
  53349. },
  53350. ]
  53351. ))
  53352. characterMakers.push(() => makeCharacter(
  53353. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  53354. {
  53355. front: {
  53356. height: math.unit(5 + 4/12, "feet"),
  53357. name: "Front",
  53358. image: {
  53359. source: "./media/characters/russec/front.svg",
  53360. extra: 1926/1626,
  53361. bottom: 72/1998
  53362. }
  53363. },
  53364. back: {
  53365. height: math.unit(5 + 4/12, "feet"),
  53366. name: "Back",
  53367. image: {
  53368. source: "./media/characters/russec/back.svg",
  53369. extra: 1910/1591,
  53370. bottom: 48/1958
  53371. }
  53372. },
  53373. },
  53374. [
  53375. {
  53376. name: "Small",
  53377. height: math.unit(5 + 4/12, "feet")
  53378. },
  53379. {
  53380. name: "Normal",
  53381. height: math.unit(72, "feet"),
  53382. default: true
  53383. },
  53384. ]
  53385. ))
  53386. characterMakers.push(() => makeCharacter(
  53387. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  53388. {
  53389. side: {
  53390. height: math.unit(12, "feet"),
  53391. name: "Side",
  53392. image: {
  53393. source: "./media/characters/cianus/side.svg",
  53394. extra: 808/526,
  53395. bottom: 61/869
  53396. }
  53397. },
  53398. },
  53399. [
  53400. {
  53401. name: "Normal",
  53402. height: math.unit(12, "feet"),
  53403. default: true
  53404. },
  53405. ]
  53406. ))
  53407. characterMakers.push(() => makeCharacter(
  53408. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  53409. {
  53410. front: {
  53411. height: math.unit(9 + 6/12, "feet"),
  53412. weight: math.unit(300, "lb"),
  53413. name: "Front",
  53414. image: {
  53415. source: "./media/characters/ahab/front.svg",
  53416. extra: 1897/1868,
  53417. bottom: 121/2018
  53418. }
  53419. },
  53420. frontNsfw: {
  53421. height: math.unit(9 + 6/12, "feet"),
  53422. weight: math.unit(300, "lb"),
  53423. name: "Front-nsfw",
  53424. image: {
  53425. source: "./media/characters/ahab/front-nsfw.svg",
  53426. extra: 1897/1868,
  53427. bottom: 121/2018
  53428. }
  53429. },
  53430. },
  53431. [
  53432. {
  53433. name: "Normal",
  53434. height: math.unit(9 + 6/12, "feet")
  53435. },
  53436. {
  53437. name: "Macro",
  53438. height: math.unit(657, "feet"),
  53439. default: true
  53440. },
  53441. ]
  53442. ))
  53443. characterMakers.push(() => makeCharacter(
  53444. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  53445. {
  53446. front: {
  53447. height: math.unit(2.69, "meters"),
  53448. weight: math.unit(132, "kg"),
  53449. name: "Front",
  53450. image: {
  53451. source: "./media/characters/aarkus/front.svg",
  53452. extra: 1400/1231,
  53453. bottom: 34/1434
  53454. }
  53455. },
  53456. back: {
  53457. height: math.unit(2.69, "meters"),
  53458. weight: math.unit(132, "kg"),
  53459. name: "Back",
  53460. image: {
  53461. source: "./media/characters/aarkus/back.svg",
  53462. extra: 1381/1218,
  53463. bottom: 30/1411
  53464. }
  53465. },
  53466. frontNsfw: {
  53467. height: math.unit(2.69, "meters"),
  53468. weight: math.unit(132, "kg"),
  53469. name: "Front (NSFW)",
  53470. image: {
  53471. source: "./media/characters/aarkus/front-nsfw.svg",
  53472. extra: 1400/1231,
  53473. bottom: 34/1434
  53474. }
  53475. },
  53476. foot: {
  53477. height: math.unit(1.45, "feet"),
  53478. name: "Foot",
  53479. image: {
  53480. source: "./media/characters/aarkus/foot.svg"
  53481. }
  53482. },
  53483. head: {
  53484. height: math.unit(2.85, "feet"),
  53485. name: "Head",
  53486. image: {
  53487. source: "./media/characters/aarkus/head.svg"
  53488. }
  53489. },
  53490. headAlt: {
  53491. height: math.unit(3.07, "feet"),
  53492. name: "Head (Alt)",
  53493. image: {
  53494. source: "./media/characters/aarkus/head-alt.svg"
  53495. }
  53496. },
  53497. mouth: {
  53498. height: math.unit(1.25, "feet"),
  53499. name: "Mouth",
  53500. image: {
  53501. source: "./media/characters/aarkus/mouth.svg"
  53502. }
  53503. },
  53504. dick: {
  53505. height: math.unit(1.77, "feet"),
  53506. name: "Dick",
  53507. image: {
  53508. source: "./media/characters/aarkus/dick.svg"
  53509. }
  53510. },
  53511. },
  53512. [
  53513. {
  53514. name: "Normal",
  53515. height: math.unit(2.69, "meters"),
  53516. default: true
  53517. },
  53518. {
  53519. name: "Macro",
  53520. height: math.unit(269, "meters")
  53521. },
  53522. {
  53523. name: "Macro+",
  53524. height: math.unit(672.5, "meters")
  53525. },
  53526. {
  53527. name: "Megamacro",
  53528. height: math.unit(2.017, "km")
  53529. },
  53530. ]
  53531. ))
  53532. characterMakers.push(() => makeCharacter(
  53533. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  53534. {
  53535. front: {
  53536. height: math.unit(23.47, "cm"),
  53537. weight: math.unit(600, "grams"),
  53538. name: "Front",
  53539. image: {
  53540. source: "./media/characters/diode/front.svg",
  53541. extra: 1778/1396,
  53542. bottom: 95/1873
  53543. }
  53544. },
  53545. side: {
  53546. height: math.unit(23.47, "cm"),
  53547. weight: math.unit(600, "grams"),
  53548. name: "Side",
  53549. image: {
  53550. source: "./media/characters/diode/side.svg",
  53551. extra: 1831/1404,
  53552. bottom: 86/1917
  53553. }
  53554. },
  53555. wings: {
  53556. height: math.unit(0.683, "feet"),
  53557. name: "Wings",
  53558. image: {
  53559. source: "./media/characters/diode/wings.svg"
  53560. }
  53561. },
  53562. },
  53563. [
  53564. {
  53565. name: "Normal",
  53566. height: math.unit(23.47, "cm"),
  53567. default: true
  53568. },
  53569. ]
  53570. ))
  53571. characterMakers.push(() => makeCharacter(
  53572. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  53573. {
  53574. front: {
  53575. height: math.unit(6 + 3/12, "feet"),
  53576. weight: math.unit(250, "lb"),
  53577. name: "Front",
  53578. image: {
  53579. source: "./media/characters/reika/front.svg",
  53580. extra: 1120/1078,
  53581. bottom: 86/1206
  53582. }
  53583. },
  53584. },
  53585. [
  53586. {
  53587. name: "Normal",
  53588. height: math.unit(6 + 3/12, "feet"),
  53589. default: true
  53590. },
  53591. ]
  53592. ))
  53593. characterMakers.push(() => makeCharacter(
  53594. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  53595. {
  53596. front: {
  53597. height: math.unit(16 + 8/12, "feet"),
  53598. weight: math.unit(9000, "lb"),
  53599. name: "Front",
  53600. image: {
  53601. source: "./media/characters/lokuto-takama/front.svg",
  53602. extra: 1774/1632,
  53603. bottom: 147/1921
  53604. },
  53605. extraAttributes: {
  53606. "bustWidth": {
  53607. name: "Bust Width",
  53608. power: 1,
  53609. type: "length",
  53610. base: math.unit(2.4, "meters")
  53611. },
  53612. "breastWeight": {
  53613. name: "Breast Weight",
  53614. power: 3,
  53615. type: "mass",
  53616. base: math.unit(1000, "kg")
  53617. },
  53618. }
  53619. },
  53620. },
  53621. [
  53622. {
  53623. name: "Normal",
  53624. height: math.unit(16 + 8/12, "feet"),
  53625. default: true
  53626. },
  53627. ]
  53628. ))
  53629. characterMakers.push(() => makeCharacter(
  53630. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  53631. {
  53632. front: {
  53633. height: math.unit(10, "cm"),
  53634. weight: math.unit(850, "grams"),
  53635. name: "Front",
  53636. image: {
  53637. source: "./media/characters/owak-bone/front.svg",
  53638. extra: 1965/1801,
  53639. bottom: 31/1996
  53640. }
  53641. },
  53642. },
  53643. [
  53644. {
  53645. name: "Normal",
  53646. height: math.unit(10, "cm"),
  53647. default: true
  53648. },
  53649. ]
  53650. ))
  53651. characterMakers.push(() => makeCharacter(
  53652. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  53653. {
  53654. front: {
  53655. height: math.unit(2 + 6/12, "feet"),
  53656. weight: math.unit(9, "lb"),
  53657. name: "Front",
  53658. image: {
  53659. source: "./media/characters/muffin/front.svg",
  53660. extra: 1220/1195,
  53661. bottom: 84/1304
  53662. }
  53663. },
  53664. },
  53665. [
  53666. {
  53667. name: "Normal",
  53668. height: math.unit(2 + 6/12, "feet"),
  53669. default: true
  53670. },
  53671. ]
  53672. ))
  53673. characterMakers.push(() => makeCharacter(
  53674. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  53675. {
  53676. front: {
  53677. height: math.unit(7, "feet"),
  53678. name: "Front",
  53679. image: {
  53680. source: "./media/characters/chimera/front.svg",
  53681. extra: 1752/1614,
  53682. bottom: 68/1820
  53683. }
  53684. },
  53685. },
  53686. [
  53687. {
  53688. name: "Normal",
  53689. height: math.unit(7, "feet")
  53690. },
  53691. {
  53692. name: "Gigamacro",
  53693. height: math.unit(2.9, "gigameters"),
  53694. default: true
  53695. },
  53696. {
  53697. name: "Universal",
  53698. height: math.unit(1.56e26, "yottameters")
  53699. },
  53700. ]
  53701. ))
  53702. characterMakers.push(() => makeCharacter(
  53703. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  53704. {
  53705. front: {
  53706. height: math.unit(3, "feet"),
  53707. weight: math.unit(20, "lb"),
  53708. name: "Front",
  53709. image: {
  53710. source: "./media/characters/kit-fennec-fox/front.svg",
  53711. extra: 1027/932,
  53712. bottom: 16/1043
  53713. }
  53714. },
  53715. back: {
  53716. height: math.unit(3, "feet"),
  53717. weight: math.unit(20, "lb"),
  53718. name: "Back",
  53719. image: {
  53720. source: "./media/characters/kit-fennec-fox/back.svg",
  53721. extra: 1027/932,
  53722. bottom: 16/1043
  53723. }
  53724. },
  53725. },
  53726. [
  53727. {
  53728. name: "Normal",
  53729. height: math.unit(3, "feet"),
  53730. default: true
  53731. },
  53732. ]
  53733. ))
  53734. characterMakers.push(() => makeCharacter(
  53735. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  53736. {
  53737. front: {
  53738. height: math.unit(167, "cm"),
  53739. name: "Front",
  53740. image: {
  53741. source: "./media/characters/blue-otter/front.svg",
  53742. extra: 1951/1920,
  53743. bottom: 31/1982
  53744. }
  53745. },
  53746. },
  53747. [
  53748. {
  53749. name: "Otter-Sized",
  53750. height: math.unit(100, "cm")
  53751. },
  53752. {
  53753. name: "Normal",
  53754. height: math.unit(167, "cm"),
  53755. default: true
  53756. },
  53757. ]
  53758. ))
  53759. characterMakers.push(() => makeCharacter(
  53760. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  53761. {
  53762. front: {
  53763. height: math.unit(4 + 4/12, "feet"),
  53764. name: "Front",
  53765. image: {
  53766. source: "./media/characters/maverick-leopard-gecko/front.svg",
  53767. extra: 1072/1067,
  53768. bottom: 117/1189
  53769. }
  53770. },
  53771. back: {
  53772. height: math.unit(4 + 4/12, "feet"),
  53773. name: "Back",
  53774. image: {
  53775. source: "./media/characters/maverick-leopard-gecko/back.svg",
  53776. extra: 1135/1129,
  53777. bottom: 57/1192
  53778. }
  53779. },
  53780. head: {
  53781. height: math.unit(1.77, "feet"),
  53782. name: "Head",
  53783. image: {
  53784. source: "./media/characters/maverick-leopard-gecko/head.svg"
  53785. }
  53786. },
  53787. },
  53788. [
  53789. {
  53790. name: "Normal",
  53791. height: math.unit(4 + 4/12, "feet"),
  53792. default: true
  53793. },
  53794. ]
  53795. ))
  53796. characterMakers.push(() => makeCharacter(
  53797. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  53798. {
  53799. front: {
  53800. height: math.unit(2, "inches"),
  53801. name: "Front",
  53802. image: {
  53803. source: "./media/characters/carley-hartford/front.svg",
  53804. extra: 1035/988,
  53805. bottom: 23/1058
  53806. }
  53807. },
  53808. back: {
  53809. height: math.unit(2, "inches"),
  53810. name: "Back",
  53811. image: {
  53812. source: "./media/characters/carley-hartford/back.svg",
  53813. extra: 1035/988,
  53814. bottom: 23/1058
  53815. }
  53816. },
  53817. dressed: {
  53818. height: math.unit(2, "inches"),
  53819. name: "Dressed",
  53820. image: {
  53821. source: "./media/characters/carley-hartford/dressed.svg",
  53822. extra: 651/620,
  53823. bottom: 0/651
  53824. }
  53825. },
  53826. },
  53827. [
  53828. {
  53829. name: "Micro",
  53830. height: math.unit(2, "inches"),
  53831. default: true
  53832. },
  53833. {
  53834. name: "Macro",
  53835. height: math.unit(6 + 3/12, "feet")
  53836. },
  53837. ]
  53838. ))
  53839. characterMakers.push(() => makeCharacter(
  53840. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  53841. {
  53842. front: {
  53843. height: math.unit(2 + 3/12, "feet"),
  53844. weight: math.unit(15 + 7/16, "lb"),
  53845. name: "Front",
  53846. image: {
  53847. source: "./media/characters/duke/front.svg",
  53848. extra: 910/815,
  53849. bottom: 30/940
  53850. }
  53851. },
  53852. },
  53853. [
  53854. {
  53855. name: "Normal",
  53856. height: math.unit(2 + 3/12, "feet"),
  53857. default: true
  53858. },
  53859. ]
  53860. ))
  53861. characterMakers.push(() => makeCharacter(
  53862. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  53863. {
  53864. front: {
  53865. height: math.unit(5 + 4/12, "feet"),
  53866. weight: math.unit(156, "lb"),
  53867. name: "Front",
  53868. image: {
  53869. source: "./media/characters/dein/front.svg",
  53870. extra: 855/815,
  53871. bottom: 48/903
  53872. }
  53873. },
  53874. side: {
  53875. height: math.unit(5 + 4/12, "feet"),
  53876. weight: math.unit(156, "lb"),
  53877. name: "side",
  53878. image: {
  53879. source: "./media/characters/dein/side.svg",
  53880. extra: 846/803,
  53881. bottom: 25/871
  53882. }
  53883. },
  53884. maw: {
  53885. height: math.unit(1.45, "feet"),
  53886. name: "Maw",
  53887. image: {
  53888. source: "./media/characters/dein/maw.svg"
  53889. }
  53890. },
  53891. },
  53892. [
  53893. {
  53894. name: "Ferret Sized",
  53895. height: math.unit(2 + 5/12, "feet")
  53896. },
  53897. {
  53898. name: "Normal",
  53899. height: math.unit(5 + 4/12, "feet"),
  53900. default: true
  53901. },
  53902. ]
  53903. ))
  53904. characterMakers.push(() => makeCharacter(
  53905. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  53906. {
  53907. front: {
  53908. height: math.unit(84 + 8/12, "feet"),
  53909. weight: math.unit(942180, "lb"),
  53910. name: "Front",
  53911. image: {
  53912. source: "./media/characters/daurine-arima/front.svg",
  53913. extra: 1989/1782,
  53914. bottom: 37/2026
  53915. }
  53916. },
  53917. side: {
  53918. height: math.unit(84 + 8/12, "feet"),
  53919. weight: math.unit(942180, "lb"),
  53920. name: "Side",
  53921. image: {
  53922. source: "./media/characters/daurine-arima/side.svg",
  53923. extra: 1997/1790,
  53924. bottom: 21/2018
  53925. }
  53926. },
  53927. back: {
  53928. height: math.unit(84 + 8/12, "feet"),
  53929. weight: math.unit(942180, "lb"),
  53930. name: "Back",
  53931. image: {
  53932. source: "./media/characters/daurine-arima/back.svg",
  53933. extra: 1992/1800,
  53934. bottom: 12/2004
  53935. }
  53936. },
  53937. head: {
  53938. height: math.unit(15.5, "feet"),
  53939. name: "Head",
  53940. image: {
  53941. source: "./media/characters/daurine-arima/head.svg"
  53942. }
  53943. },
  53944. headAlt: {
  53945. height: math.unit(19.19, "feet"),
  53946. name: "Head (Alt)",
  53947. image: {
  53948. source: "./media/characters/daurine-arima/head-alt.svg"
  53949. }
  53950. },
  53951. },
  53952. [
  53953. {
  53954. name: "Minimum height",
  53955. height: math.unit(8 + 10/12, "feet")
  53956. },
  53957. {
  53958. name: "Comfort height",
  53959. height: math.unit(19 + 6 /12, "feet")
  53960. },
  53961. {
  53962. name: "\"Normal\" height",
  53963. height: math.unit(28 + 10/12, "feet")
  53964. },
  53965. {
  53966. name: "Base height",
  53967. height: math.unit(84 + 8/12, "feet"),
  53968. default: true
  53969. },
  53970. {
  53971. name: "Mini-macro",
  53972. height: math.unit(2360, "feet")
  53973. },
  53974. {
  53975. name: "Macro",
  53976. height: math.unit(10, "miles")
  53977. },
  53978. {
  53979. name: "Goddess",
  53980. height: math.unit(9.99e40, "yottameters")
  53981. },
  53982. ]
  53983. ))
  53984. characterMakers.push(() => makeCharacter(
  53985. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  53986. {
  53987. front: {
  53988. height: math.unit(2.3, "meters"),
  53989. name: "Front",
  53990. image: {
  53991. source: "./media/characters/cilenomon/front.svg",
  53992. extra: 1963/1778,
  53993. bottom: 54/2017
  53994. }
  53995. },
  53996. },
  53997. [
  53998. {
  53999. name: "Normal",
  54000. height: math.unit(2.3, "meters"),
  54001. default: true
  54002. },
  54003. {
  54004. name: "Big",
  54005. height: math.unit(5, "meters")
  54006. },
  54007. {
  54008. name: "Macro",
  54009. height: math.unit(30, "meters")
  54010. },
  54011. {
  54012. name: "True",
  54013. height: math.unit(1, "universe")
  54014. },
  54015. ]
  54016. ))
  54017. characterMakers.push(() => makeCharacter(
  54018. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  54019. {
  54020. front: {
  54021. height: math.unit(5, "feet"),
  54022. name: "Front",
  54023. image: {
  54024. source: "./media/characters/sen-mink/front.svg",
  54025. extra: 1727/1675,
  54026. bottom: 35/1762
  54027. }
  54028. },
  54029. },
  54030. [
  54031. {
  54032. name: "Normal",
  54033. height: math.unit(5, "feet"),
  54034. default: true
  54035. },
  54036. ]
  54037. ))
  54038. characterMakers.push(() => makeCharacter(
  54039. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  54040. {
  54041. front: {
  54042. height: math.unit(5.42999, "feet"),
  54043. weight: math.unit(100, "lb"),
  54044. name: "Front",
  54045. image: {
  54046. source: "./media/characters/ophois/front.svg",
  54047. extra: 1429/1286,
  54048. bottom: 60/1489
  54049. }
  54050. },
  54051. },
  54052. [
  54053. {
  54054. name: "Normal",
  54055. height: math.unit(5.42999, "feet"),
  54056. default: true
  54057. },
  54058. ]
  54059. ))
  54060. characterMakers.push(() => makeCharacter(
  54061. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  54062. {
  54063. front: {
  54064. height: math.unit(2, "meters"),
  54065. name: "Front",
  54066. image: {
  54067. source: "./media/characters/riley/front.svg",
  54068. extra: 1779/1754,
  54069. bottom: 139/1918
  54070. }
  54071. },
  54072. },
  54073. [
  54074. {
  54075. name: "Normal",
  54076. height: math.unit(2, "meters"),
  54077. default: true
  54078. },
  54079. ]
  54080. ))
  54081. characterMakers.push(() => makeCharacter(
  54082. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  54083. {
  54084. front: {
  54085. height: math.unit(6 + 2/12, "feet"),
  54086. weight: math.unit(195, "lb"),
  54087. preyCapacity: math.unit(6, "people"),
  54088. name: "Front",
  54089. image: {
  54090. source: "./media/characters/shuken-flash/front.svg",
  54091. extra: 1905/1739,
  54092. bottom: 65/1970
  54093. }
  54094. },
  54095. back: {
  54096. height: math.unit(6 + 2/12, "feet"),
  54097. weight: math.unit(195, "lb"),
  54098. preyCapacity: math.unit(6, "people"),
  54099. name: "Back",
  54100. image: {
  54101. source: "./media/characters/shuken-flash/back.svg",
  54102. extra: 1912/1751,
  54103. bottom: 13/1925
  54104. }
  54105. },
  54106. },
  54107. [
  54108. {
  54109. name: "Normal",
  54110. height: math.unit(6 + 2/12, "feet"),
  54111. default: true
  54112. },
  54113. ]
  54114. ))
  54115. characterMakers.push(() => makeCharacter(
  54116. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  54117. {
  54118. front: {
  54119. height: math.unit(5 + 9/12, "feet"),
  54120. weight: math.unit(150, "lb"),
  54121. name: "Front",
  54122. image: {
  54123. source: "./media/characters/plat/front.svg",
  54124. extra: 1816/1703,
  54125. bottom: 43/1859
  54126. }
  54127. },
  54128. side: {
  54129. height: math.unit(5 + 9/12, "feet"),
  54130. weight: math.unit(300, "lb"),
  54131. name: "Side",
  54132. image: {
  54133. source: "./media/characters/plat/side.svg",
  54134. extra: 1824/1699,
  54135. bottom: 18/1842
  54136. }
  54137. },
  54138. },
  54139. [
  54140. {
  54141. name: "Normal",
  54142. height: math.unit(5 + 9/12, "feet"),
  54143. default: true
  54144. },
  54145. ]
  54146. ))
  54147. characterMakers.push(() => makeCharacter(
  54148. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  54149. {
  54150. front: {
  54151. height: math.unit(9, "feet"),
  54152. weight: math.unit(1800, "lb"),
  54153. name: "Front",
  54154. image: {
  54155. source: "./media/characters/elaine/front.svg",
  54156. extra: 1833/1354,
  54157. bottom: 25/1858
  54158. }
  54159. },
  54160. back: {
  54161. height: math.unit(8.8, "feet"),
  54162. weight: math.unit(1800, "lb"),
  54163. name: "Back",
  54164. image: {
  54165. source: "./media/characters/elaine/back.svg",
  54166. extra: 1641/1233,
  54167. bottom: 53/1694
  54168. }
  54169. },
  54170. },
  54171. [
  54172. {
  54173. name: "Normal",
  54174. height: math.unit(9, "feet"),
  54175. default: true
  54176. },
  54177. ]
  54178. ))
  54179. characterMakers.push(() => makeCharacter(
  54180. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  54181. {
  54182. front: {
  54183. height: math.unit(17 + 9/12, "feet"),
  54184. weight: math.unit(8000, "lb"),
  54185. name: "Front",
  54186. image: {
  54187. source: "./media/characters/vera-raven/front.svg",
  54188. extra: 1457/1412,
  54189. bottom: 121/1578
  54190. }
  54191. },
  54192. side: {
  54193. height: math.unit(17 + 9/12, "feet"),
  54194. weight: math.unit(8000, "lb"),
  54195. name: "Side",
  54196. image: {
  54197. source: "./media/characters/vera-raven/side.svg",
  54198. extra: 1510/1464,
  54199. bottom: 54/1564
  54200. }
  54201. },
  54202. },
  54203. [
  54204. {
  54205. name: "Normal",
  54206. height: math.unit(17 + 9/12, "feet"),
  54207. default: true
  54208. },
  54209. ]
  54210. ))
  54211. characterMakers.push(() => makeCharacter(
  54212. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  54213. {
  54214. dressed: {
  54215. height: math.unit(6 + 9/12, "feet"),
  54216. name: "Dressed",
  54217. image: {
  54218. source: "./media/characters/nakisha/dressed.svg",
  54219. extra: 1909/1757,
  54220. bottom: 48/1957
  54221. }
  54222. },
  54223. nude: {
  54224. height: math.unit(6 + 9/12, "feet"),
  54225. name: "Nude",
  54226. image: {
  54227. source: "./media/characters/nakisha/nude.svg",
  54228. extra: 1917/1765,
  54229. bottom: 34/1951
  54230. }
  54231. },
  54232. },
  54233. [
  54234. {
  54235. name: "Normal",
  54236. height: math.unit(6 + 9/12, "feet"),
  54237. default: true
  54238. },
  54239. ]
  54240. ))
  54241. characterMakers.push(() => makeCharacter(
  54242. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  54243. {
  54244. front: {
  54245. height: math.unit(87, "meters"),
  54246. name: "Front",
  54247. image: {
  54248. source: "./media/characters/serafin/front.svg",
  54249. extra: 1919/1776,
  54250. bottom: 65/1984
  54251. }
  54252. },
  54253. },
  54254. [
  54255. {
  54256. name: "Normal",
  54257. height: math.unit(87, "meters"),
  54258. default: true
  54259. },
  54260. ]
  54261. ))
  54262. characterMakers.push(() => makeCharacter(
  54263. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  54264. {
  54265. front: {
  54266. height: math.unit(6, "feet"),
  54267. weight: math.unit(200, "lb"),
  54268. name: "Front",
  54269. image: {
  54270. source: "./media/characters/poptart/front.svg",
  54271. extra: 615/583,
  54272. bottom: 23/638
  54273. }
  54274. },
  54275. back: {
  54276. height: math.unit(6, "feet"),
  54277. weight: math.unit(200, "lb"),
  54278. name: "Back",
  54279. image: {
  54280. source: "./media/characters/poptart/back.svg",
  54281. extra: 617/584,
  54282. bottom: 22/639
  54283. }
  54284. },
  54285. frontNsfw: {
  54286. height: math.unit(6, "feet"),
  54287. weight: math.unit(200, "lb"),
  54288. name: "Front (NSFW)",
  54289. image: {
  54290. source: "./media/characters/poptart/front-nsfw.svg",
  54291. extra: 615/583,
  54292. bottom: 23/638
  54293. }
  54294. },
  54295. backNsfw: {
  54296. height: math.unit(6, "feet"),
  54297. weight: math.unit(200, "lb"),
  54298. name: "Back (NSFW)",
  54299. image: {
  54300. source: "./media/characters/poptart/back-nsfw.svg",
  54301. extra: 617/584,
  54302. bottom: 22/639
  54303. }
  54304. },
  54305. hand: {
  54306. height: math.unit(1.14, "feet"),
  54307. name: "Hand",
  54308. image: {
  54309. source: "./media/characters/poptart/hand.svg"
  54310. }
  54311. },
  54312. foot: {
  54313. height: math.unit(1.5, "feet"),
  54314. name: "Foot",
  54315. image: {
  54316. source: "./media/characters/poptart/foot.svg"
  54317. }
  54318. },
  54319. },
  54320. [
  54321. {
  54322. name: "Normal",
  54323. height: math.unit(6, "feet"),
  54324. default: true
  54325. },
  54326. {
  54327. name: "Grande",
  54328. height: math.unit(350, "feet")
  54329. },
  54330. {
  54331. name: "Massif",
  54332. height: math.unit(967, "feet")
  54333. },
  54334. ]
  54335. ))
  54336. characterMakers.push(() => makeCharacter(
  54337. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  54338. {
  54339. hyenaSide: {
  54340. height: math.unit(120, "cm"),
  54341. weight: math.unit(120, "lb"),
  54342. name: "Side",
  54343. image: {
  54344. source: "./media/characters/trance/hyena-side.svg",
  54345. extra: 998/904,
  54346. bottom: 76/1074
  54347. }
  54348. },
  54349. },
  54350. [
  54351. {
  54352. name: "Normal",
  54353. height: math.unit(120, "cm"),
  54354. default: true
  54355. },
  54356. {
  54357. name: "Dire",
  54358. height: math.unit(230, "cm")
  54359. },
  54360. {
  54361. name: "Macro",
  54362. height: math.unit(37, "feet")
  54363. },
  54364. ]
  54365. ))
  54366. characterMakers.push(() => makeCharacter(
  54367. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  54368. {
  54369. front: {
  54370. height: math.unit(6 + 3/12, "feet"),
  54371. name: "Front",
  54372. image: {
  54373. source: "./media/characters/michael-berretta/front.svg",
  54374. extra: 515/494,
  54375. bottom: 20/535
  54376. }
  54377. },
  54378. back: {
  54379. height: math.unit(6 + 3/12, "feet"),
  54380. name: "Back",
  54381. image: {
  54382. source: "./media/characters/michael-berretta/back.svg",
  54383. extra: 520/497,
  54384. bottom: 21/541
  54385. }
  54386. },
  54387. frontNsfw: {
  54388. height: math.unit(6 + 3/12, "feet"),
  54389. name: "Front (NSFW)",
  54390. image: {
  54391. source: "./media/characters/michael-berretta/front-nsfw.svg",
  54392. extra: 515/494,
  54393. bottom: 20/535
  54394. }
  54395. },
  54396. dick: {
  54397. height: math.unit(1, "feet"),
  54398. name: "Dick",
  54399. image: {
  54400. source: "./media/characters/michael-berretta/dick.svg"
  54401. }
  54402. },
  54403. },
  54404. [
  54405. {
  54406. name: "Normal",
  54407. height: math.unit(6 + 3/12, "feet"),
  54408. default: true
  54409. },
  54410. {
  54411. name: "Big",
  54412. height: math.unit(12, "feet")
  54413. },
  54414. {
  54415. name: "Macro",
  54416. height: math.unit(187.5, "feet")
  54417. },
  54418. ]
  54419. ))
  54420. characterMakers.push(() => makeCharacter(
  54421. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  54422. {
  54423. front: {
  54424. height: math.unit(9 + 9/12, "feet"),
  54425. weight: math.unit(1244, "lb"),
  54426. name: "Front",
  54427. image: {
  54428. source: "./media/characters/stella-edgecomb/front.svg",
  54429. extra: 1835/1706,
  54430. bottom: 49/1884
  54431. }
  54432. },
  54433. pen: {
  54434. height: math.unit(0.95, "feet"),
  54435. name: "Pen",
  54436. image: {
  54437. source: "./media/characters/stella-edgecomb/pen.svg"
  54438. }
  54439. },
  54440. },
  54441. [
  54442. {
  54443. name: "Cozy Bear",
  54444. height: math.unit(0.5, "inches")
  54445. },
  54446. {
  54447. name: "Normal",
  54448. height: math.unit(9 + 9/12, "feet"),
  54449. default: true
  54450. },
  54451. {
  54452. name: "Giga Bear",
  54453. height: math.unit(1, "mile")
  54454. },
  54455. {
  54456. name: "Great Bear",
  54457. height: math.unit(53, "miles")
  54458. },
  54459. {
  54460. name: "Goddess Bear",
  54461. height: math.unit(40000, "miles")
  54462. },
  54463. {
  54464. name: "Sun Bear",
  54465. height: math.unit(900000, "miles")
  54466. },
  54467. ]
  54468. ))
  54469. characterMakers.push(() => makeCharacter(
  54470. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  54471. {
  54472. anthroFront: {
  54473. height: math.unit(556, "cm"),
  54474. weight: math.unit(2650, "kg"),
  54475. preyCapacity: math.unit(3, "people"),
  54476. name: "Front",
  54477. image: {
  54478. source: "./media/characters/ash´iika/front.svg",
  54479. extra: 710/673,
  54480. bottom: 15/725
  54481. },
  54482. form: "anthro",
  54483. default: true
  54484. },
  54485. anthroSide: {
  54486. height: math.unit(556, "cm"),
  54487. weight: math.unit(2650, "kg"),
  54488. preyCapacity: math.unit(3, "people"),
  54489. name: "Side",
  54490. image: {
  54491. source: "./media/characters/ash´iika/side.svg",
  54492. extra: 696/676,
  54493. bottom: 13/709
  54494. },
  54495. form: "anthro"
  54496. },
  54497. anthroDressed: {
  54498. height: math.unit(556, "cm"),
  54499. weight: math.unit(2650, "kg"),
  54500. preyCapacity: math.unit(3, "people"),
  54501. name: "Dressed",
  54502. image: {
  54503. source: "./media/characters/ash´iika/dressed.svg",
  54504. extra: 710/673,
  54505. bottom: 15/725
  54506. },
  54507. form: "anthro"
  54508. },
  54509. anthroHead: {
  54510. height: math.unit(3.5, "feet"),
  54511. name: "Head",
  54512. image: {
  54513. source: "./media/characters/ash´iika/head.svg",
  54514. extra: 348/291,
  54515. bottom: 45/393
  54516. },
  54517. form: "anthro"
  54518. },
  54519. feralSide: {
  54520. height: math.unit(870, "cm"),
  54521. weight: math.unit(17500, "kg"),
  54522. preyCapacity: math.unit(15, "people"),
  54523. name: "Side",
  54524. image: {
  54525. source: "./media/characters/ash´iika/feral.svg",
  54526. extra: 595/199,
  54527. bottom: 7/602
  54528. },
  54529. form: "feral",
  54530. default: true,
  54531. },
  54532. },
  54533. [
  54534. {
  54535. name: "Normal",
  54536. height: math.unit(556, "cm"),
  54537. default: true,
  54538. form: "anthro"
  54539. },
  54540. {
  54541. name: "Macro",
  54542. height: math.unit(88, "meters"),
  54543. form: "anthro"
  54544. },
  54545. {
  54546. name: "Normal",
  54547. height: math.unit(870, "cm"),
  54548. default: true,
  54549. form: "feral"
  54550. },
  54551. {
  54552. name: "Large",
  54553. height: math.unit(25, "meters"),
  54554. form: "feral"
  54555. },
  54556. ],
  54557. {
  54558. "anthro": {
  54559. name: "Anthro",
  54560. default: true
  54561. },
  54562. "feral": {
  54563. name: "Feral",
  54564. },
  54565. }
  54566. ))
  54567. characterMakers.push(() => makeCharacter(
  54568. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  54569. {
  54570. front: {
  54571. height: math.unit(10, "feet"),
  54572. weight: math.unit(800, "lb"),
  54573. name: "Front",
  54574. image: {
  54575. source: "./media/characters/yen/front.svg",
  54576. extra: 443/411,
  54577. bottom: 6/449
  54578. }
  54579. },
  54580. sleeping: {
  54581. height: math.unit(10, "feet"),
  54582. weight: math.unit(800, "lb"),
  54583. name: "Sleeping",
  54584. image: {
  54585. source: "./media/characters/yen/sleeping.svg",
  54586. extra: 470/422,
  54587. bottom: 0/470
  54588. }
  54589. },
  54590. head: {
  54591. height: math.unit(2.2, "feet"),
  54592. name: "Head",
  54593. image: {
  54594. source: "./media/characters/yen/head.svg"
  54595. }
  54596. },
  54597. headAlt: {
  54598. height: math.unit(2.1, "feet"),
  54599. name: "Head (Alt)",
  54600. image: {
  54601. source: "./media/characters/yen/head-alt.svg"
  54602. }
  54603. },
  54604. },
  54605. [
  54606. {
  54607. name: "Normal",
  54608. height: math.unit(10, "feet"),
  54609. default: true
  54610. },
  54611. ]
  54612. ))
  54613. characterMakers.push(() => makeCharacter(
  54614. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  54615. {
  54616. front: {
  54617. height: math.unit(12, "feet"),
  54618. name: "Front",
  54619. image: {
  54620. source: "./media/characters/citra/front.svg",
  54621. extra: 1950/1710,
  54622. bottom: 47/1997
  54623. }
  54624. },
  54625. },
  54626. [
  54627. {
  54628. name: "Normal",
  54629. height: math.unit(12, "feet"),
  54630. default: true
  54631. },
  54632. ]
  54633. ))
  54634. characterMakers.push(() => makeCharacter(
  54635. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  54636. {
  54637. side: {
  54638. height: math.unit(7 + 10/12, "feet"),
  54639. name: "Side",
  54640. image: {
  54641. source: "./media/characters/sholstim/side.svg",
  54642. extra: 786/682,
  54643. bottom: 40/826
  54644. }
  54645. },
  54646. },
  54647. [
  54648. {
  54649. name: "Normal",
  54650. height: math.unit(7 + 10/12, "feet"),
  54651. default: true
  54652. },
  54653. ]
  54654. ))
  54655. characterMakers.push(() => makeCharacter(
  54656. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  54657. {
  54658. front: {
  54659. height: math.unit(3.10, "meters"),
  54660. name: "Front",
  54661. image: {
  54662. source: "./media/characters/aggyn/front.svg",
  54663. extra: 1188/963,
  54664. bottom: 24/1212
  54665. }
  54666. },
  54667. },
  54668. [
  54669. {
  54670. name: "Normal",
  54671. height: math.unit(3.10, "meters"),
  54672. default: true
  54673. },
  54674. ]
  54675. ))
  54676. characterMakers.push(() => makeCharacter(
  54677. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  54678. {
  54679. front: {
  54680. height: math.unit(7 + 5/12, "feet"),
  54681. weight: math.unit(687, "lb"),
  54682. name: "Front",
  54683. image: {
  54684. source: "./media/characters/alsandair-hergenroether/front.svg",
  54685. extra: 1251/1186,
  54686. bottom: 75/1326
  54687. }
  54688. },
  54689. back: {
  54690. height: math.unit(7 + 5/12, "feet"),
  54691. weight: math.unit(687, "lb"),
  54692. name: "Back",
  54693. image: {
  54694. source: "./media/characters/alsandair-hergenroether/back.svg",
  54695. extra: 1290/1229,
  54696. bottom: 17/1307
  54697. }
  54698. },
  54699. },
  54700. [
  54701. {
  54702. name: "Max Compression",
  54703. height: math.unit(7 + 5/12, "feet"),
  54704. default: true
  54705. },
  54706. {
  54707. name: "\"Normal\"",
  54708. height: math.unit(2, "universes")
  54709. },
  54710. ]
  54711. ))
  54712. characterMakers.push(() => makeCharacter(
  54713. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  54714. {
  54715. front: {
  54716. height: math.unit(4 + 1/12, "feet"),
  54717. weight: math.unit(92, "lb"),
  54718. name: "Front",
  54719. image: {
  54720. source: "./media/characters/ie/front.svg",
  54721. extra: 1585/1352,
  54722. bottom: 91/1676
  54723. }
  54724. },
  54725. },
  54726. [
  54727. {
  54728. name: "Normal",
  54729. height: math.unit(4 + 1/12, "feet"),
  54730. default: true
  54731. },
  54732. ]
  54733. ))
  54734. characterMakers.push(() => makeCharacter(
  54735. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  54736. {
  54737. anthro: {
  54738. height: math.unit(6, "feet"),
  54739. weight: math.unit(150, "lb"),
  54740. name: "Front",
  54741. image: {
  54742. source: "./media/characters/willow/anthro.svg",
  54743. extra: 1073/986,
  54744. bottom: 34/1107
  54745. },
  54746. form: "anthro",
  54747. default: true
  54748. },
  54749. taur: {
  54750. height: math.unit(6, "feet"),
  54751. weight: math.unit(150, "lb"),
  54752. name: "Side",
  54753. image: {
  54754. source: "./media/characters/willow/taur.svg",
  54755. extra: 647/512,
  54756. bottom: 136/783
  54757. },
  54758. form: "taur",
  54759. default: true
  54760. },
  54761. },
  54762. [
  54763. {
  54764. name: "Humanoid",
  54765. height: math.unit(2.7, "meters"),
  54766. form: "anthro"
  54767. },
  54768. {
  54769. name: "Normal",
  54770. height: math.unit(9, "meters"),
  54771. form: "anthro",
  54772. default: true
  54773. },
  54774. {
  54775. name: "Humanoid",
  54776. height: math.unit(2.1, "meters"),
  54777. form: "taur"
  54778. },
  54779. {
  54780. name: "Normal",
  54781. height: math.unit(7, "meters"),
  54782. form: "taur",
  54783. default: true
  54784. },
  54785. ],
  54786. {
  54787. "anthro": {
  54788. name: "Anthro",
  54789. default: true
  54790. },
  54791. "taur": {
  54792. name: "Taur",
  54793. },
  54794. }
  54795. ))
  54796. characterMakers.push(() => makeCharacter(
  54797. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  54798. {
  54799. front: {
  54800. height: math.unit(2 + 5/12, "feet"),
  54801. name: "Front",
  54802. image: {
  54803. source: "./media/characters/kyan/front.svg",
  54804. extra: 460/334,
  54805. bottom: 23/483
  54806. },
  54807. extraAttributes: {
  54808. "toeLength": {
  54809. name: "Toe Length",
  54810. power: 1,
  54811. type: "length",
  54812. base: math.unit(7, "cm")
  54813. },
  54814. "toeclawLength": {
  54815. name: "Toeclaw Length",
  54816. power: 1,
  54817. type: "length",
  54818. base: math.unit(4.7, "cm")
  54819. },
  54820. "earHeight": {
  54821. name: "Ear Height",
  54822. power: 1,
  54823. type: "length",
  54824. base: math.unit(14.1, "cm")
  54825. },
  54826. }
  54827. },
  54828. paws: {
  54829. height: math.unit(0.45, "feet"),
  54830. name: "Paws",
  54831. image: {
  54832. source: "./media/characters/kyan/paws.svg",
  54833. extra: 581/581,
  54834. bottom: 114/695
  54835. }
  54836. },
  54837. },
  54838. [
  54839. {
  54840. name: "Normal",
  54841. height: math.unit(2 + 5/12, "feet"),
  54842. default: true
  54843. },
  54844. ]
  54845. ))
  54846. characterMakers.push(() => makeCharacter(
  54847. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  54848. {
  54849. front: {
  54850. height: math.unit(2 + 2/3, "feet"),
  54851. name: "Front",
  54852. image: {
  54853. source: "./media/characters/xazzon/front.svg",
  54854. extra: 1109/984,
  54855. bottom: 42/1151
  54856. }
  54857. },
  54858. back: {
  54859. height: math.unit(2 + 2/3, "feet"),
  54860. name: "Back",
  54861. image: {
  54862. source: "./media/characters/xazzon/back.svg",
  54863. extra: 1095/971,
  54864. bottom: 23/1118
  54865. }
  54866. },
  54867. },
  54868. [
  54869. {
  54870. name: "Normal",
  54871. height: math.unit(2 + 2/3, "feet"),
  54872. default: true
  54873. },
  54874. ]
  54875. ))
  54876. characterMakers.push(() => makeCharacter(
  54877. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  54878. {
  54879. front: {
  54880. height: math.unit(8, "feet"),
  54881. weight: math.unit(300, "lb"),
  54882. name: "Front",
  54883. image: {
  54884. source: "./media/characters/khyla-shadowsong/front.svg",
  54885. extra: 861/798,
  54886. bottom: 32/893
  54887. }
  54888. },
  54889. side: {
  54890. height: math.unit(8, "feet"),
  54891. weight: math.unit(300, "lb"),
  54892. name: "Side",
  54893. image: {
  54894. source: "./media/characters/khyla-shadowsong/side.svg",
  54895. extra: 790/750,
  54896. bottom: 87/877
  54897. }
  54898. },
  54899. back: {
  54900. height: math.unit(8, "feet"),
  54901. weight: math.unit(300, "lb"),
  54902. name: "Back",
  54903. image: {
  54904. source: "./media/characters/khyla-shadowsong/back.svg",
  54905. extra: 855/808,
  54906. bottom: 14/869
  54907. }
  54908. },
  54909. head: {
  54910. height: math.unit(2.7, "feet"),
  54911. name: "Head",
  54912. image: {
  54913. source: "./media/characters/khyla-shadowsong/head.svg"
  54914. }
  54915. },
  54916. },
  54917. [
  54918. {
  54919. name: "Micro",
  54920. height: math.unit(6, "inches")
  54921. },
  54922. {
  54923. name: "Normal",
  54924. height: math.unit(8, "feet"),
  54925. default: true
  54926. },
  54927. ]
  54928. ))
  54929. characterMakers.push(() => makeCharacter(
  54930. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  54931. {
  54932. hyperFront: {
  54933. height: math.unit(9 + 4/12, "feet"),
  54934. weight: math.unit(2000, "lb"),
  54935. name: "Front",
  54936. image: {
  54937. source: "./media/characters/tiden/hyper-front.svg",
  54938. extra: 400/382,
  54939. bottom: 6/406
  54940. },
  54941. form: "hyper",
  54942. },
  54943. regularFront: {
  54944. height: math.unit(7 + 10/12, "feet"),
  54945. weight: math.unit(470, "lb"),
  54946. name: "Front",
  54947. image: {
  54948. source: "./media/characters/tiden/regular-front.svg",
  54949. extra: 468/442,
  54950. bottom: 6/474
  54951. },
  54952. form: "regular",
  54953. },
  54954. },
  54955. [
  54956. {
  54957. name: "Normal",
  54958. height: math.unit(9 + 4/12, "feet"),
  54959. default: true,
  54960. form: "hyper"
  54961. },
  54962. {
  54963. name: "Normal",
  54964. height: math.unit(7 + 10/12, "feet"),
  54965. default: true,
  54966. form: "regular"
  54967. },
  54968. ],
  54969. {
  54970. "hyper": {
  54971. name: "Hyper",
  54972. default: true
  54973. },
  54974. "regular": {
  54975. name: "Regular",
  54976. },
  54977. }
  54978. ))
  54979. characterMakers.push(() => makeCharacter(
  54980. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54981. {
  54982. side: {
  54983. height: math.unit(6, "feet"),
  54984. weight: math.unit(150, "lb"),
  54985. name: "Side",
  54986. image: {
  54987. source: "./media/characters/jason-crowe/side.svg",
  54988. extra: 1771/766,
  54989. bottom: 219/1990
  54990. }
  54991. },
  54992. },
  54993. [
  54994. {
  54995. name: "Pocket Gryphon",
  54996. height: math.unit(6, "cm")
  54997. },
  54998. {
  54999. name: "Raven",
  55000. height: math.unit(60, "cm")
  55001. },
  55002. {
  55003. name: "Normal",
  55004. height: math.unit(1, "meter"),
  55005. default: true
  55006. },
  55007. ]
  55008. ))
  55009. characterMakers.push(() => makeCharacter(
  55010. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  55011. {
  55012. front: {
  55013. height: math.unit(9 + 6/12, "feet"),
  55014. weight: math.unit(1100, "lb"),
  55015. name: "Front",
  55016. image: {
  55017. source: "./media/characters/django/front.svg",
  55018. extra: 1231/1136,
  55019. bottom: 34/1265
  55020. }
  55021. },
  55022. side: {
  55023. height: math.unit(9 + 6/12, "feet"),
  55024. weight: math.unit(1100, "lb"),
  55025. name: "Side",
  55026. image: {
  55027. source: "./media/characters/django/side.svg",
  55028. extra: 1267/1174,
  55029. bottom: 9/1276
  55030. }
  55031. },
  55032. },
  55033. [
  55034. {
  55035. name: "Normal",
  55036. height: math.unit(9 + 6/12, "feet"),
  55037. default: true
  55038. },
  55039. {
  55040. name: "Macro 1",
  55041. height: math.unit(50, "feet")
  55042. },
  55043. {
  55044. name: "Macro 2",
  55045. height: math.unit(500, "feet")
  55046. },
  55047. {
  55048. name: "Mega Macro",
  55049. height: math.unit(5300, "feet")
  55050. },
  55051. ]
  55052. ))
  55053. characterMakers.push(() => makeCharacter(
  55054. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  55055. {
  55056. frontSfw: {
  55057. height: math.unit(120, "cm"),
  55058. weight: math.unit(15, "kg"),
  55059. name: "Front (SFW)",
  55060. image: {
  55061. source: "./media/characters/eri/front-sfw.svg",
  55062. extra: 1014/939,
  55063. bottom: 37/1051
  55064. },
  55065. form: "moth",
  55066. },
  55067. frontNsfw: {
  55068. height: math.unit(120, "cm"),
  55069. weight: math.unit(15, "kg"),
  55070. name: "Front (NSFW)",
  55071. image: {
  55072. source: "./media/characters/eri/front-nsfw.svg",
  55073. extra: 1014/939,
  55074. bottom: 37/1051
  55075. },
  55076. form: "moth",
  55077. default: true
  55078. },
  55079. egg: {
  55080. height: math.unit(10, "cm"),
  55081. name: "Egg",
  55082. image: {
  55083. source: "./media/characters/eri/egg.svg"
  55084. },
  55085. form: "egg",
  55086. default: true
  55087. },
  55088. },
  55089. [
  55090. {
  55091. name: "Normal",
  55092. height: math.unit(120, "cm"),
  55093. default: true,
  55094. form: "moth"
  55095. },
  55096. {
  55097. name: "Normal",
  55098. height: math.unit(10, "cm"),
  55099. default: true,
  55100. form: "egg"
  55101. },
  55102. ],
  55103. {
  55104. "moth": {
  55105. name: "Moth",
  55106. default: true
  55107. },
  55108. "egg": {
  55109. name: "Egg",
  55110. },
  55111. }
  55112. ))
  55113. characterMakers.push(() => makeCharacter(
  55114. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  55115. {
  55116. front: {
  55117. height: math.unit(200, "feet"),
  55118. name: "Front",
  55119. image: {
  55120. source: "./media/characters/bishop-dowser/front.svg",
  55121. extra: 933/868,
  55122. bottom: 106/1039
  55123. }
  55124. },
  55125. },
  55126. [
  55127. {
  55128. name: "Giant",
  55129. height: math.unit(200, "feet"),
  55130. default: true
  55131. },
  55132. ]
  55133. ))
  55134. characterMakers.push(() => makeCharacter(
  55135. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  55136. {
  55137. front: {
  55138. height: math.unit(2, "meters"),
  55139. preyCapacity: math.unit(3, "people"),
  55140. name: "Front",
  55141. image: {
  55142. source: "./media/characters/fryra/front.svg",
  55143. extra: 1025/948,
  55144. bottom: 30/1055
  55145. },
  55146. extraAttributes: {
  55147. "breastVolume": {
  55148. name: "Breast Volume",
  55149. power: 3,
  55150. type: "volume",
  55151. base: math.unit(8, "liters")
  55152. },
  55153. }
  55154. },
  55155. back: {
  55156. height: math.unit(2, "meters"),
  55157. preyCapacity: math.unit(3, "people"),
  55158. name: "Back",
  55159. image: {
  55160. source: "./media/characters/fryra/back.svg",
  55161. extra: 993/938,
  55162. bottom: 38/1031
  55163. },
  55164. extraAttributes: {
  55165. "breastVolume": {
  55166. name: "Breast Volume",
  55167. power: 3,
  55168. type: "volume",
  55169. base: math.unit(8, "liters")
  55170. },
  55171. }
  55172. },
  55173. head: {
  55174. height: math.unit(1.33, "feet"),
  55175. name: "Head",
  55176. image: {
  55177. source: "./media/characters/fryra/head.svg"
  55178. }
  55179. },
  55180. maw: {
  55181. height: math.unit(0.56, "feet"),
  55182. name: "Maw",
  55183. image: {
  55184. source: "./media/characters/fryra/maw.svg"
  55185. }
  55186. },
  55187. },
  55188. [
  55189. {
  55190. name: "Micro",
  55191. height: math.unit(5, "cm")
  55192. },
  55193. {
  55194. name: "Normal",
  55195. height: math.unit(2, "meters"),
  55196. default: true
  55197. },
  55198. {
  55199. name: "Small Macro",
  55200. height: math.unit(8, "meters")
  55201. },
  55202. {
  55203. name: "Macro",
  55204. height: math.unit(50, "meters")
  55205. },
  55206. {
  55207. name: "Megamacro",
  55208. height: math.unit(1, "km")
  55209. },
  55210. {
  55211. name: "Planetary",
  55212. height: math.unit(300000, "km")
  55213. },
  55214. {
  55215. name: "Universal",
  55216. height: math.unit(250, "lightyears")
  55217. },
  55218. {
  55219. name: "Fabric of Reality",
  55220. height: math.unit(1000, "multiverses")
  55221. },
  55222. ]
  55223. ))
  55224. characterMakers.push(() => makeCharacter(
  55225. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  55226. {
  55227. frontDressed: {
  55228. height: math.unit(6 + 2/12, "feet"),
  55229. name: "Front (Dressed)",
  55230. image: {
  55231. source: "./media/characters/fiera/front-dressed.svg",
  55232. extra: 1883/1793,
  55233. bottom: 70/1953
  55234. }
  55235. },
  55236. backDressed: {
  55237. height: math.unit(6 + 2/12, "feet"),
  55238. name: "Back (Dressed)",
  55239. image: {
  55240. source: "./media/characters/fiera/back-dressed.svg",
  55241. extra: 1847/1780,
  55242. bottom: 70/1917
  55243. }
  55244. },
  55245. frontNude: {
  55246. height: math.unit(6 + 2/12, "feet"),
  55247. name: "Front (Nude)",
  55248. image: {
  55249. source: "./media/characters/fiera/front-nude.svg",
  55250. extra: 1875/1785,
  55251. bottom: 66/1941
  55252. }
  55253. },
  55254. backNude: {
  55255. height: math.unit(6 + 2/12, "feet"),
  55256. name: "Back (Nude)",
  55257. image: {
  55258. source: "./media/characters/fiera/back-nude.svg",
  55259. extra: 1855/1788,
  55260. bottom: 44/1899
  55261. }
  55262. },
  55263. maw: {
  55264. height: math.unit(1.3, "feet"),
  55265. name: "Maw",
  55266. image: {
  55267. source: "./media/characters/fiera/maw.svg"
  55268. }
  55269. },
  55270. paw: {
  55271. height: math.unit(1, "feet"),
  55272. name: "Paw",
  55273. image: {
  55274. source: "./media/characters/fiera/paw.svg"
  55275. }
  55276. },
  55277. shoe: {
  55278. height: math.unit(1.05, "feet"),
  55279. name: "Shoe",
  55280. image: {
  55281. source: "./media/characters/fiera/shoe.svg"
  55282. }
  55283. },
  55284. },
  55285. [
  55286. {
  55287. name: "Normal",
  55288. height: math.unit(6 + 2/12, "feet"),
  55289. default: true
  55290. },
  55291. {
  55292. name: "Size Difference",
  55293. height: math.unit(13, "feet")
  55294. },
  55295. {
  55296. name: "Macro",
  55297. height: math.unit(60, "feet")
  55298. },
  55299. {
  55300. name: "Mega Macro",
  55301. height: math.unit(200, "feet")
  55302. },
  55303. ]
  55304. ))
  55305. characterMakers.push(() => makeCharacter(
  55306. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  55307. {
  55308. back: {
  55309. height: math.unit(6, "feet"),
  55310. name: "Back",
  55311. image: {
  55312. source: "./media/characters/flare/back.svg",
  55313. extra: 1883/1765,
  55314. bottom: 32/1915
  55315. }
  55316. },
  55317. },
  55318. [
  55319. {
  55320. name: "Normal",
  55321. height: math.unit(6 + 2/12, "feet"),
  55322. default: true
  55323. },
  55324. {
  55325. name: "Size Difference",
  55326. height: math.unit(13, "feet")
  55327. },
  55328. {
  55329. name: "Macro",
  55330. height: math.unit(60, "feet")
  55331. },
  55332. {
  55333. name: "Macro 2",
  55334. height: math.unit(100, "feet")
  55335. },
  55336. {
  55337. name: "Mega Macro",
  55338. height: math.unit(200, "feet")
  55339. },
  55340. ]
  55341. ))
  55342. characterMakers.push(() => makeCharacter(
  55343. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  55344. {
  55345. front: {
  55346. height: math.unit(2.2, "m"),
  55347. weight: math.unit(300, "kg"),
  55348. name: "Front",
  55349. image: {
  55350. source: "./media/characters/hanna/front.svg",
  55351. extra: 1696/1502,
  55352. bottom: 206/1902
  55353. }
  55354. },
  55355. },
  55356. [
  55357. {
  55358. name: "Humanoid",
  55359. height: math.unit(2.2, "meters")
  55360. },
  55361. {
  55362. name: "Normal",
  55363. height: math.unit(4.8, "meters"),
  55364. default: true
  55365. },
  55366. ]
  55367. ))
  55368. characterMakers.push(() => makeCharacter(
  55369. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  55370. {
  55371. front: {
  55372. height: math.unit(2.8, "meters"),
  55373. name: "Front",
  55374. image: {
  55375. source: "./media/characters/argo/front.svg",
  55376. extra: 731/518,
  55377. bottom: 84/815
  55378. }
  55379. },
  55380. },
  55381. [
  55382. {
  55383. name: "Normal",
  55384. height: math.unit(3, "meters"),
  55385. default: true
  55386. },
  55387. ]
  55388. ))
  55389. characterMakers.push(() => makeCharacter(
  55390. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  55391. {
  55392. side: {
  55393. height: math.unit(3.8, "meters"),
  55394. name: "Side",
  55395. image: {
  55396. source: "./media/characters/sybil/side.svg",
  55397. extra: 382/361,
  55398. bottom: 25/407
  55399. }
  55400. },
  55401. },
  55402. [
  55403. {
  55404. name: "Normal",
  55405. height: math.unit(3.8, "meters"),
  55406. default: true
  55407. },
  55408. ]
  55409. ))
  55410. characterMakers.push(() => makeCharacter(
  55411. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  55412. {
  55413. side: {
  55414. height: math.unit(6, "meters"),
  55415. name: "Side",
  55416. image: {
  55417. source: "./media/characters/plum/side.svg",
  55418. extra: 858/755,
  55419. bottom: 45/903
  55420. },
  55421. form: "taur",
  55422. default: true
  55423. },
  55424. back: {
  55425. height: math.unit(6.3, "meters"),
  55426. name: "Back",
  55427. image: {
  55428. source: "./media/characters/plum/back.svg",
  55429. extra: 887/813,
  55430. bottom: 32/919
  55431. },
  55432. form: "taur",
  55433. },
  55434. feral: {
  55435. height: math.unit(5.5, "meter"),
  55436. name: "Front",
  55437. image: {
  55438. source: "./media/characters/plum/feral.svg",
  55439. extra: 568/403,
  55440. bottom: 51/619
  55441. },
  55442. form: "feral",
  55443. default: true
  55444. },
  55445. head: {
  55446. height: math.unit(1.46, "meter"),
  55447. name: "Head",
  55448. image: {
  55449. source: "./media/characters/plum/head.svg"
  55450. },
  55451. form: "taur"
  55452. },
  55453. tailTop: {
  55454. height: math.unit(5.6, "meter"),
  55455. name: "Tail (Top)",
  55456. image: {
  55457. source: "./media/characters/plum/tail-top.svg"
  55458. },
  55459. form: "taur",
  55460. },
  55461. tailBottom: {
  55462. height: math.unit(5.6, "meter"),
  55463. name: "Tail (Bottom)",
  55464. image: {
  55465. source: "./media/characters/plum/tail-bottom.svg"
  55466. },
  55467. form: "taur",
  55468. },
  55469. feralHead: {
  55470. height: math.unit(2.56549521, "meter"),
  55471. name: "Head",
  55472. image: {
  55473. source: "./media/characters/plum/head.svg"
  55474. },
  55475. form: "feral"
  55476. },
  55477. feralTailTop: {
  55478. height: math.unit(5.44728435, "meter"),
  55479. name: "Tail (Top)",
  55480. image: {
  55481. source: "./media/characters/plum/tail-top.svg"
  55482. },
  55483. form: "feral",
  55484. },
  55485. feralTailBottom: {
  55486. height: math.unit(5.44728435, "meter"),
  55487. name: "Tail (Bottom)",
  55488. image: {
  55489. source: "./media/characters/plum/tail-bottom.svg"
  55490. },
  55491. form: "feral",
  55492. },
  55493. },
  55494. [
  55495. {
  55496. name: "Normal",
  55497. height: math.unit(6, "meters"),
  55498. default: true,
  55499. form: "taur"
  55500. },
  55501. {
  55502. name: "Normal",
  55503. height: math.unit(5.5, "meters"),
  55504. default: true,
  55505. form: "feral"
  55506. },
  55507. ],
  55508. {
  55509. "taur": {
  55510. name: "Taur",
  55511. default: true
  55512. },
  55513. "feral": {
  55514. name: "Feral",
  55515. },
  55516. }
  55517. ))
  55518. characterMakers.push(() => makeCharacter(
  55519. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  55520. {
  55521. front: {
  55522. height: math.unit(6, "feet"),
  55523. weight: math.unit(115, "lb"),
  55524. name: "Front",
  55525. image: {
  55526. source: "./media/characters/celeste-kitsune/front.svg",
  55527. extra: 393/366,
  55528. bottom: 7/400
  55529. }
  55530. },
  55531. side: {
  55532. height: math.unit(6, "feet"),
  55533. weight: math.unit(115, "lb"),
  55534. name: "Side",
  55535. image: {
  55536. source: "./media/characters/celeste-kitsune/side.svg",
  55537. extra: 818/765,
  55538. bottom: 40/858
  55539. }
  55540. },
  55541. },
  55542. [
  55543. {
  55544. name: "Megamacro",
  55545. height: math.unit(1500, "miles"),
  55546. default: true
  55547. },
  55548. ]
  55549. ))
  55550. characterMakers.push(() => makeCharacter(
  55551. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  55552. {
  55553. front: {
  55554. height: math.unit(8, "meters"),
  55555. name: "Front",
  55556. image: {
  55557. source: "./media/characters/io/front.svg",
  55558. extra: 865/722,
  55559. bottom: 58/923
  55560. }
  55561. },
  55562. back: {
  55563. height: math.unit(8, "meters"),
  55564. name: "Back",
  55565. image: {
  55566. source: "./media/characters/io/back.svg",
  55567. extra: 920/776,
  55568. bottom: 42/962
  55569. }
  55570. },
  55571. head: {
  55572. height: math.unit(5.09, "meters"),
  55573. name: "Head",
  55574. image: {
  55575. source: "./media/characters/io/head.svg"
  55576. }
  55577. },
  55578. hand: {
  55579. height: math.unit(1.6, "meters"),
  55580. name: "Hand",
  55581. image: {
  55582. source: "./media/characters/io/hand.svg"
  55583. }
  55584. },
  55585. foot: {
  55586. height: math.unit(2.4, "meters"),
  55587. name: "Foot",
  55588. image: {
  55589. source: "./media/characters/io/foot.svg"
  55590. }
  55591. },
  55592. },
  55593. [
  55594. {
  55595. name: "Normal",
  55596. height: math.unit(8, "meters"),
  55597. default: true
  55598. },
  55599. ]
  55600. ))
  55601. characterMakers.push(() => makeCharacter(
  55602. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  55603. {
  55604. side: {
  55605. height: math.unit(6 + 3/12, "feet"),
  55606. weight: math.unit(225, "lb"),
  55607. name: "Side",
  55608. image: {
  55609. source: "./media/characters/silas/side.svg",
  55610. extra: 703/653,
  55611. bottom: 23/726
  55612. },
  55613. extraAttributes: {
  55614. "pawLength": {
  55615. name: "Paw Length",
  55616. power: 1,
  55617. type: "length",
  55618. base: math.unit(12, "inches")
  55619. },
  55620. "pawWidth": {
  55621. name: "Paw Width",
  55622. power: 1,
  55623. type: "length",
  55624. base: math.unit(4.5, "inches")
  55625. },
  55626. "pawArea": {
  55627. name: "Paw Area",
  55628. power: 2,
  55629. type: "area",
  55630. base: math.unit(12 * 4.5, "inches^2")
  55631. },
  55632. }
  55633. },
  55634. },
  55635. [
  55636. {
  55637. name: "Normal",
  55638. height: math.unit(6 + 3/12, "feet"),
  55639. default: true
  55640. },
  55641. ]
  55642. ))
  55643. characterMakers.push(() => makeCharacter(
  55644. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  55645. {
  55646. back: {
  55647. height: math.unit(1.6, "meters"),
  55648. weight: math.unit(150, "lb"),
  55649. name: "Back",
  55650. image: {
  55651. source: "./media/characters/zari/back.svg",
  55652. extra: 424/411,
  55653. bottom: 32/456
  55654. },
  55655. extraAttributes: {
  55656. "bladderCapacity": {
  55657. name: "Bladder Size",
  55658. power: 3,
  55659. type: "volume",
  55660. base: math.unit(500, "mL")
  55661. },
  55662. "bladderFlow": {
  55663. name: "Flow Rate",
  55664. power: 3,
  55665. type: "volume",
  55666. base: math.unit(25, "mL")
  55667. },
  55668. }
  55669. },
  55670. },
  55671. [
  55672. {
  55673. name: "Normal",
  55674. height: math.unit(1.6, "meters"),
  55675. default: true
  55676. },
  55677. ]
  55678. ))
  55679. characterMakers.push(() => makeCharacter(
  55680. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  55681. {
  55682. front: {
  55683. height: math.unit(25, "feet"),
  55684. weight: math.unit(5, "tons"),
  55685. name: "Front",
  55686. image: {
  55687. source: "./media/characters/charlie-human/front.svg",
  55688. extra: 1870/1740,
  55689. bottom: 102/1972
  55690. },
  55691. extraAttributes: {
  55692. "dickLength": {
  55693. name: "Dick Length",
  55694. power: 1,
  55695. type: "length",
  55696. base: math.unit(9, "feet")
  55697. },
  55698. }
  55699. },
  55700. back: {
  55701. height: math.unit(25, "feet"),
  55702. weight: math.unit(5, "tons"),
  55703. name: "Back",
  55704. image: {
  55705. source: "./media/characters/charlie-human/back.svg",
  55706. extra: 1858/1733,
  55707. bottom: 105/1963
  55708. },
  55709. extraAttributes: {
  55710. "dickLength": {
  55711. name: "Dick Length",
  55712. power: 1,
  55713. type: "length",
  55714. base: math.unit(9, "feet")
  55715. },
  55716. }
  55717. },
  55718. },
  55719. [
  55720. {
  55721. name: "\"Normal\"",
  55722. height: math.unit(6 + 4/12, "feet")
  55723. },
  55724. {
  55725. name: "Big",
  55726. height: math.unit(25, "feet"),
  55727. default: true
  55728. },
  55729. ]
  55730. ))
  55731. characterMakers.push(() => makeCharacter(
  55732. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  55733. {
  55734. front: {
  55735. height: math.unit(6 + 4/12, "feet"),
  55736. weight: math.unit(320, "lb"),
  55737. name: "Front",
  55738. image: {
  55739. source: "./media/characters/ookitsu/front.svg",
  55740. extra: 1160/976,
  55741. bottom: 38/1198
  55742. }
  55743. },
  55744. frontNsfw: {
  55745. height: math.unit(6 + 4/12, "feet"),
  55746. weight: math.unit(320, "lb"),
  55747. name: "Front (NSFW)",
  55748. image: {
  55749. source: "./media/characters/ookitsu/front-nsfw.svg",
  55750. extra: 1160/976,
  55751. bottom: 38/1198
  55752. }
  55753. },
  55754. back: {
  55755. height: math.unit(6 + 4/12, "feet"),
  55756. weight: math.unit(320, "lb"),
  55757. name: "Back",
  55758. image: {
  55759. source: "./media/characters/ookitsu/back.svg",
  55760. extra: 1030/975,
  55761. bottom: 70/1100
  55762. }
  55763. },
  55764. head: {
  55765. height: math.unit(1.79, "feet"),
  55766. name: "Head",
  55767. image: {
  55768. source: "./media/characters/ookitsu/head.svg"
  55769. }
  55770. },
  55771. hand: {
  55772. height: math.unit(0.92, "feet"),
  55773. name: "Hand",
  55774. image: {
  55775. source: "./media/characters/ookitsu/hand.svg"
  55776. }
  55777. },
  55778. tails: {
  55779. height: math.unit(3.3, "feet"),
  55780. name: "Tails",
  55781. image: {
  55782. source: "./media/characters/ookitsu/tails.svg"
  55783. }
  55784. },
  55785. dick: {
  55786. height: math.unit(1.10833, "feet"),
  55787. name: "Dick",
  55788. image: {
  55789. source: "./media/characters/ookitsu/dick.svg"
  55790. }
  55791. },
  55792. },
  55793. [
  55794. {
  55795. name: "Normal",
  55796. height: math.unit(6 + 4/12, "feet"),
  55797. default: true
  55798. },
  55799. {
  55800. name: "Macro",
  55801. height: math.unit(30, "feet")
  55802. },
  55803. ]
  55804. ))
  55805. characterMakers.push(() => makeCharacter(
  55806. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  55807. {
  55808. anthroFront: {
  55809. height: math.unit(6, "feet"),
  55810. weight: math.unit(250, "lb"),
  55811. name: "Front",
  55812. image: {
  55813. source: "./media/characters/jhusky/anthro-front.svg",
  55814. extra: 474/439,
  55815. bottom: 7/481
  55816. },
  55817. form: "anthro",
  55818. default: true
  55819. },
  55820. taurSideSfw: {
  55821. height: math.unit(6 + 4/12, "feet"),
  55822. weight: math.unit(500, "lb"),
  55823. name: "Side (SFW)",
  55824. image: {
  55825. source: "./media/characters/jhusky/taur-side-sfw.svg",
  55826. extra: 1741/1629,
  55827. bottom: 196/1937
  55828. },
  55829. form: "taur",
  55830. default: true
  55831. },
  55832. taurSideNsfw: {
  55833. height: math.unit(6 + 4/12, "feet"),
  55834. weight: math.unit(500, "lb"),
  55835. name: "Taur (NSFW)",
  55836. image: {
  55837. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  55838. extra: 1741/1629,
  55839. bottom: 196/1937
  55840. },
  55841. form: "taur",
  55842. },
  55843. },
  55844. [
  55845. {
  55846. name: "Huge",
  55847. height: math.unit(500, "feet"),
  55848. form: "anthro"
  55849. },
  55850. {
  55851. name: "Macro",
  55852. height: math.unit(1000, "feet"),
  55853. default: true,
  55854. form: "anthro"
  55855. },
  55856. {
  55857. name: "Megamacro",
  55858. height: math.unit(10000, "feet"),
  55859. form: "anthro"
  55860. },
  55861. {
  55862. name: "Huge",
  55863. height: math.unit(528, "feet"),
  55864. form: "taur"
  55865. },
  55866. {
  55867. name: "Macro",
  55868. height: math.unit(1056, "feet"),
  55869. default: true,
  55870. form: "taur"
  55871. },
  55872. {
  55873. name: "Megamacro",
  55874. height: math.unit(10556, "feet"),
  55875. form: "taur"
  55876. },
  55877. ],
  55878. {
  55879. "anthro": {
  55880. name: "Anthro",
  55881. default: true
  55882. },
  55883. "taur": {
  55884. name: "Taur",
  55885. },
  55886. }
  55887. ))
  55888. characterMakers.push(() => makeCharacter(
  55889. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  55890. {
  55891. front: {
  55892. height: math.unit(8, "feet"),
  55893. weight: math.unit(500, "lb"),
  55894. name: "Front",
  55895. image: {
  55896. source: "./media/characters/armail/front.svg",
  55897. extra: 1753/1669,
  55898. bottom: 155/1908
  55899. }
  55900. },
  55901. back: {
  55902. height: math.unit(8, "feet"),
  55903. weight: math.unit(500, "lb"),
  55904. name: "Back",
  55905. image: {
  55906. source: "./media/characters/armail/back.svg",
  55907. extra: 1872/1803,
  55908. bottom: 63/1935
  55909. }
  55910. },
  55911. },
  55912. [
  55913. {
  55914. name: "Micro",
  55915. height: math.unit(0.25, "feet")
  55916. },
  55917. {
  55918. name: "Normal",
  55919. height: math.unit(8, "feet"),
  55920. default: true
  55921. },
  55922. {
  55923. name: "Mini-macro",
  55924. height: math.unit(30, "feet")
  55925. },
  55926. {
  55927. name: "Macro",
  55928. height: math.unit(400, "feet")
  55929. },
  55930. {
  55931. name: "Mega-macro",
  55932. height: math.unit(6000, "feet")
  55933. },
  55934. ]
  55935. ))
  55936. characterMakers.push(() => makeCharacter(
  55937. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  55938. {
  55939. front: {
  55940. height: math.unit(6 + 7/12, "feet"),
  55941. weight: math.unit(210, "lb"),
  55942. name: "Front",
  55943. image: {
  55944. source: "./media/characters/wilfred-t-buxton/front.svg",
  55945. extra: 1068/882,
  55946. bottom: 28/1096
  55947. }
  55948. },
  55949. },
  55950. [
  55951. {
  55952. name: "Normal",
  55953. height: math.unit(6 + 7/12, "feet"),
  55954. default: true
  55955. },
  55956. ]
  55957. ))
  55958. characterMakers.push(() => makeCharacter(
  55959. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  55960. {
  55961. front: {
  55962. height: math.unit(5 + 2/12, "feet"),
  55963. weight: math.unit(120, "lb"),
  55964. name: "Front",
  55965. image: {
  55966. source: "./media/characters/leighton-marrow/front.svg",
  55967. extra: 441/409,
  55968. bottom: 37/478
  55969. }
  55970. },
  55971. },
  55972. [
  55973. {
  55974. name: "Normal",
  55975. height: math.unit(5 + 2/12, "feet"),
  55976. default: true
  55977. },
  55978. ]
  55979. ))
  55980. characterMakers.push(() => makeCharacter(
  55981. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  55982. {
  55983. front: {
  55984. height: math.unit(4, "meters"),
  55985. weight: math.unit(1200, "kg"),
  55986. name: "Front",
  55987. image: {
  55988. source: "./media/characters/licos/front.svg",
  55989. extra: 1727/1604,
  55990. bottom: 101/1828
  55991. },
  55992. form: "anthro",
  55993. default: true
  55994. },
  55995. taur_side: {
  55996. height: math.unit(20, "meters"),
  55997. weight: math.unit(1100000, "kg"),
  55998. name: "Side",
  55999. image: {
  56000. source: "./media/characters/licos/taur.svg",
  56001. extra: 1158/1091,
  56002. bottom: 80/1238
  56003. },
  56004. form: "taur",
  56005. default: true
  56006. },
  56007. },
  56008. [
  56009. {
  56010. name: "Normal",
  56011. height: math.unit(4, "meters"),
  56012. default: true,
  56013. form: "anthro"
  56014. },
  56015. {
  56016. name: "Normal",
  56017. height: math.unit(20, "meters"),
  56018. default: true,
  56019. form: "taur"
  56020. },
  56021. ],
  56022. {
  56023. "anthro": {
  56024. name: "Anthro",
  56025. default: true
  56026. },
  56027. "taur": {
  56028. name: "Taur",
  56029. },
  56030. }
  56031. ))
  56032. characterMakers.push(() => makeCharacter(
  56033. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  56034. {
  56035. front: {
  56036. height: math.unit(10 + 3/12, "feet"),
  56037. name: "Front",
  56038. image: {
  56039. source: "./media/characters/theo-monkey/front.svg",
  56040. extra: 1735/1658,
  56041. bottom: 73/1808
  56042. }
  56043. },
  56044. back: {
  56045. height: math.unit(10 + 3/12, "feet"),
  56046. name: "Back",
  56047. image: {
  56048. source: "./media/characters/theo-monkey/back.svg",
  56049. extra: 1742/1664,
  56050. bottom: 33/1775
  56051. }
  56052. },
  56053. head: {
  56054. height: math.unit(2.29, "feet"),
  56055. name: "Head",
  56056. image: {
  56057. source: "./media/characters/theo-monkey/head.svg"
  56058. }
  56059. },
  56060. handPalm: {
  56061. height: math.unit(1.73, "feet"),
  56062. name: "Hand (Palm)",
  56063. image: {
  56064. source: "./media/characters/theo-monkey/hand-palm.svg"
  56065. }
  56066. },
  56067. handBack: {
  56068. height: math.unit(1.63, "feet"),
  56069. name: "Hand (Back)",
  56070. image: {
  56071. source: "./media/characters/theo-monkey/hand-back.svg"
  56072. }
  56073. },
  56074. footSole: {
  56075. height: math.unit(2.15, "feet"),
  56076. name: "Foot (Sole)",
  56077. image: {
  56078. source: "./media/characters/theo-monkey/foot-sole.svg"
  56079. }
  56080. },
  56081. footSide: {
  56082. height: math.unit(1.6, "feet"),
  56083. name: "Foot (Side)",
  56084. image: {
  56085. source: "./media/characters/theo-monkey/foot-side.svg"
  56086. }
  56087. },
  56088. },
  56089. [
  56090. {
  56091. name: "Normal",
  56092. height: math.unit(10 + 3/12, "feet"),
  56093. default: true
  56094. },
  56095. ]
  56096. ))
  56097. characterMakers.push(() => makeCharacter(
  56098. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  56099. {
  56100. front: {
  56101. height: math.unit(11, "feet"),
  56102. weight: math.unit(3000, "lb"),
  56103. preyCapacity: math.unit(10, "people"),
  56104. name: "Front",
  56105. image: {
  56106. source: "./media/characters/brook/front.svg",
  56107. extra: 909/835,
  56108. bottom: 108/1017
  56109. }
  56110. },
  56111. back: {
  56112. height: math.unit(11, "feet"),
  56113. weight: math.unit(3000, "lb"),
  56114. preyCapacity: math.unit(10, "people"),
  56115. name: "Back",
  56116. image: {
  56117. source: "./media/characters/brook/back.svg",
  56118. extra: 976/916,
  56119. bottom: 34/1010
  56120. }
  56121. },
  56122. backAlt: {
  56123. height: math.unit(11, "feet"),
  56124. weight: math.unit(3000, "lb"),
  56125. preyCapacity: math.unit(10, "people"),
  56126. name: "Back (Alt)",
  56127. image: {
  56128. source: "./media/characters/brook/back-alt.svg",
  56129. extra: 1283/1213,
  56130. bottom: 35/1318
  56131. }
  56132. },
  56133. bust: {
  56134. height: math.unit(9.0859030837, "feet"),
  56135. weight: math.unit(3000, "lb"),
  56136. preyCapacity: math.unit(10, "people"),
  56137. name: "Bust",
  56138. image: {
  56139. source: "./media/characters/brook/bust.svg",
  56140. extra: 2043/1923,
  56141. bottom: 0/2043
  56142. }
  56143. },
  56144. },
  56145. [
  56146. {
  56147. name: "Small",
  56148. height: math.unit(11, "feet"),
  56149. default: true
  56150. },
  56151. {
  56152. name: "Towering",
  56153. height: math.unit(5, "km")
  56154. },
  56155. {
  56156. name: "Enormous",
  56157. height: math.unit(25, "earths")
  56158. },
  56159. ]
  56160. ))
  56161. characterMakers.push(() => makeCharacter(
  56162. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  56163. {
  56164. front: {
  56165. height: math.unit(4, "feet"),
  56166. weight: math.unit(150, "lb"),
  56167. name: "Front",
  56168. image: {
  56169. source: "./media/characters/squishi/front.svg",
  56170. extra: 1428/1271,
  56171. bottom: 30/1458
  56172. },
  56173. extraAttributes: {
  56174. "pawSize": {
  56175. name: "Paw Size",
  56176. power: 1,
  56177. type: "length",
  56178. base: math.unit(14, "ShoeSizeMensUS"),
  56179. defaultUnit: "ShoeSizeMensUS"
  56180. },
  56181. }
  56182. },
  56183. side: {
  56184. height: math.unit(4, "feet"),
  56185. weight: math.unit(150, "lb"),
  56186. name: "Side",
  56187. image: {
  56188. source: "./media/characters/squishi/side.svg",
  56189. extra: 1428/1271,
  56190. bottom: 30/1458
  56191. },
  56192. extraAttributes: {
  56193. "pawSize": {
  56194. name: "Paw Size",
  56195. power: 1,
  56196. type: "length",
  56197. base: math.unit(14, "ShoeSizeMensUS"),
  56198. defaultUnit: "ShoeSizeMensUS"
  56199. },
  56200. }
  56201. },
  56202. back: {
  56203. height: math.unit(4, "feet"),
  56204. weight: math.unit(150, "lb"),
  56205. name: "Back",
  56206. image: {
  56207. source: "./media/characters/squishi/back.svg",
  56208. extra: 1428/1271,
  56209. bottom: 30/1458
  56210. },
  56211. extraAttributes: {
  56212. "pawSize": {
  56213. name: "Paw Size",
  56214. power: 1,
  56215. type: "length",
  56216. base: math.unit(14, "ShoeSizeMensUS"),
  56217. defaultUnit: "ShoeSizeMensUS"
  56218. },
  56219. }
  56220. },
  56221. },
  56222. [
  56223. {
  56224. name: "Normal",
  56225. height: math.unit(4, "feet"),
  56226. default: true
  56227. },
  56228. ]
  56229. ))
  56230. characterMakers.push(() => makeCharacter(
  56231. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  56232. {
  56233. front: {
  56234. height: math.unit(7 + 8/12, "feet"),
  56235. weight: math.unit(333, "lb"),
  56236. name: "Front",
  56237. image: {
  56238. source: "./media/characters/vincent-vasroc/front.svg",
  56239. extra: 1962/1860,
  56240. bottom: 41/2003
  56241. }
  56242. },
  56243. back: {
  56244. height: math.unit(7 + 8/12, "feet"),
  56245. weight: math.unit(333, "lb"),
  56246. name: "Back",
  56247. image: {
  56248. source: "./media/characters/vincent-vasroc/back.svg",
  56249. extra: 1952/1815,
  56250. bottom: 33/1985
  56251. }
  56252. },
  56253. paw: {
  56254. height: math.unit(1.24, "feet"),
  56255. name: "Paw",
  56256. image: {
  56257. source: "./media/characters/vincent-vasroc/paw.svg"
  56258. }
  56259. },
  56260. ear: {
  56261. height: math.unit(0.75, "feet"),
  56262. name: "Ear",
  56263. image: {
  56264. source: "./media/characters/vincent-vasroc/ear.svg"
  56265. }
  56266. },
  56267. },
  56268. [
  56269. {
  56270. name: "Nano",
  56271. height: math.unit(92, "micrometers")
  56272. },
  56273. {
  56274. name: "Normal",
  56275. height: math.unit(7 + 8/12, "feet"),
  56276. default: true
  56277. },
  56278. ]
  56279. ))
  56280. characterMakers.push(() => makeCharacter(
  56281. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  56282. {
  56283. frontNsfw: {
  56284. height: math.unit(40, "feet"),
  56285. weight: math.unit(58, "tons"),
  56286. name: "Front (NSFW)",
  56287. image: {
  56288. source: "./media/characters/ru-kahn/front-nsfw.svg",
  56289. extra: 1265/965,
  56290. bottom: 155/1420
  56291. }
  56292. },
  56293. frontSfw: {
  56294. height: math.unit(40, "feet"),
  56295. weight: math.unit(58, "tons"),
  56296. name: "Front (SFW)",
  56297. image: {
  56298. source: "./media/characters/ru-kahn/front-sfw.svg",
  56299. extra: 1265/965,
  56300. bottom: 80/1345
  56301. }
  56302. },
  56303. },
  56304. [
  56305. {
  56306. name: "Small",
  56307. height: math.unit(4, "feet")
  56308. },
  56309. {
  56310. name: "Normal",
  56311. height: math.unit(40, "feet"),
  56312. default: true
  56313. },
  56314. {
  56315. name: "Macro",
  56316. height: math.unit(400, "feet")
  56317. },
  56318. ]
  56319. ))
  56320. characterMakers.push(() => makeCharacter(
  56321. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  56322. {
  56323. frontNude: {
  56324. height: math.unit(6 + 5/12, "feet"),
  56325. name: "Front (Nude)",
  56326. image: {
  56327. source: "./media/characters/sylvie-laforge/front-nude.svg",
  56328. extra: 1369/1366,
  56329. bottom: 68/1437
  56330. }
  56331. },
  56332. frontDressed: {
  56333. height: math.unit(6 + 5/12, "feet"),
  56334. name: "Front (Dressed)",
  56335. image: {
  56336. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  56337. extra: 1369/1366,
  56338. bottom: 68/1437
  56339. }
  56340. },
  56341. },
  56342. [
  56343. {
  56344. name: "Normal",
  56345. height: math.unit(6 + 5/12, "feet"),
  56346. default: true
  56347. },
  56348. {
  56349. name: "Maximum",
  56350. height: math.unit(1930, "feet")
  56351. },
  56352. ]
  56353. ))
  56354. characterMakers.push(() => makeCharacter(
  56355. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  56356. {
  56357. front: {
  56358. height: math.unit(5 + 6/12, "feet"),
  56359. name: "Front",
  56360. image: {
  56361. source: "./media/characters/kaja/front.svg",
  56362. extra: 1874/1514,
  56363. bottom: 117/1991
  56364. }
  56365. },
  56366. },
  56367. [
  56368. {
  56369. name: "Normal",
  56370. height: math.unit(5 + 6/12, "feet"),
  56371. default: true
  56372. },
  56373. ]
  56374. ))
  56375. characterMakers.push(() => makeCharacter(
  56376. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  56377. {
  56378. front: {
  56379. height: math.unit(5 + 9/12, "feet"),
  56380. weight: math.unit(200, "lb"),
  56381. name: "Front",
  56382. image: {
  56383. source: "./media/characters/mark-smith/front.svg",
  56384. extra: 1004/943,
  56385. bottom: 58/1062
  56386. }
  56387. },
  56388. back: {
  56389. height: math.unit(5 + 9/12, "feet"),
  56390. weight: math.unit(200, "lb"),
  56391. name: "Back",
  56392. image: {
  56393. source: "./media/characters/mark-smith/back.svg",
  56394. extra: 1023/953,
  56395. bottom: 24/1047
  56396. }
  56397. },
  56398. head: {
  56399. height: math.unit(1.82, "feet"),
  56400. name: "Head",
  56401. image: {
  56402. source: "./media/characters/mark-smith/head.svg"
  56403. }
  56404. },
  56405. hand: {
  56406. height: math.unit(1.4, "feet"),
  56407. name: "Hand",
  56408. image: {
  56409. source: "./media/characters/mark-smith/hand.svg"
  56410. }
  56411. },
  56412. paw: {
  56413. height: math.unit(1.69, "feet"),
  56414. name: "Paw",
  56415. image: {
  56416. source: "./media/characters/mark-smith/paw.svg"
  56417. }
  56418. },
  56419. },
  56420. [
  56421. {
  56422. name: "Micro",
  56423. height: math.unit(0.25, "inches")
  56424. },
  56425. {
  56426. name: "Normal",
  56427. height: math.unit(5 + 9/12, "feet"),
  56428. default: true
  56429. },
  56430. {
  56431. name: "Macro",
  56432. height: math.unit(500, "feet")
  56433. },
  56434. ]
  56435. ))
  56436. characterMakers.push(() => makeCharacter(
  56437. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  56438. {
  56439. frontNude: {
  56440. height: math.unit(6, "feet"),
  56441. name: "Front (Nude)",
  56442. image: {
  56443. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  56444. extra: 1384/1321,
  56445. bottom: 57/1441
  56446. }
  56447. },
  56448. frontDressed: {
  56449. height: math.unit(6, "feet"),
  56450. name: "Front (Dressed)",
  56451. image: {
  56452. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  56453. extra: 1384/1321,
  56454. bottom: 57/1441
  56455. }
  56456. },
  56457. },
  56458. [
  56459. {
  56460. name: "Normal",
  56461. height: math.unit(6, "feet"),
  56462. default: true
  56463. },
  56464. {
  56465. name: "Maximum",
  56466. height: math.unit(1776, "feet")
  56467. },
  56468. ]
  56469. ))
  56470. characterMakers.push(() => makeCharacter(
  56471. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  56472. {
  56473. front: {
  56474. height: math.unit(2 + 4/12, "feet"),
  56475. weight: math.unit(350, "lb"),
  56476. name: "Front",
  56477. image: {
  56478. source: "./media/characters/devos/front.svg",
  56479. extra: 958/852,
  56480. bottom: 143/1101
  56481. }
  56482. },
  56483. },
  56484. [
  56485. {
  56486. name: "Base",
  56487. height: math.unit(2 + 4/12, "feet"),
  56488. default: true
  56489. },
  56490. ]
  56491. ))
  56492. characterMakers.push(() => makeCharacter(
  56493. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  56494. {
  56495. front: {
  56496. height: math.unit(9 + 2/12, "feet"),
  56497. name: "Front",
  56498. image: {
  56499. source: "./media/characters/hiveheart/front.svg",
  56500. extra: 394/364,
  56501. bottom: 65/459
  56502. }
  56503. },
  56504. back: {
  56505. height: math.unit(9 + 2/12, "feet"),
  56506. name: "Back",
  56507. image: {
  56508. source: "./media/characters/hiveheart/back.svg",
  56509. extra: 374/357,
  56510. bottom: 63/437
  56511. }
  56512. },
  56513. },
  56514. [
  56515. {
  56516. name: "Base",
  56517. height: math.unit(9 + 2/12, "feet"),
  56518. default: true
  56519. },
  56520. ]
  56521. ))
  56522. characterMakers.push(() => makeCharacter(
  56523. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  56524. {
  56525. front: {
  56526. height: math.unit(2.5, "inches"),
  56527. weight: math.unit(0.6, "oz"),
  56528. name: "Front",
  56529. image: {
  56530. source: "./media/characters/bryn/front.svg",
  56531. extra: 1480/1205,
  56532. bottom: 27/1507
  56533. }
  56534. },
  56535. back: {
  56536. height: math.unit(2.5, "inches"),
  56537. weight: math.unit(0.6, "oz"),
  56538. name: "Back",
  56539. image: {
  56540. source: "./media/characters/bryn/back.svg",
  56541. extra: 1475/1201,
  56542. bottom: 39/1514
  56543. }
  56544. },
  56545. foot: {
  56546. height: math.unit(0.4, "inches"),
  56547. name: "Foot",
  56548. image: {
  56549. source: "./media/characters/bryn/foot.svg"
  56550. }
  56551. },
  56552. },
  56553. [
  56554. {
  56555. name: "Normal",
  56556. height: math.unit(2.5, "inches"),
  56557. default: true
  56558. },
  56559. ]
  56560. ))
  56561. characterMakers.push(() => makeCharacter(
  56562. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  56563. {
  56564. side: {
  56565. height: math.unit(7, "feet"),
  56566. weight: math.unit(657, "kg"),
  56567. name: "Side",
  56568. image: {
  56569. source: "./media/characters/delta/side.svg",
  56570. extra: 781/212,
  56571. bottom: 7/788
  56572. },
  56573. extraAttributes: {
  56574. "wingspan": {
  56575. name: "Wingspan",
  56576. power: 1,
  56577. type: "length",
  56578. base: math.unit(48, "feet")
  56579. },
  56580. "length": {
  56581. name: "Length",
  56582. power: 1,
  56583. type: "length",
  56584. base: math.unit(21, "feet")
  56585. },
  56586. "pawSize": {
  56587. name: "Paw Size",
  56588. power: 2,
  56589. type: "area",
  56590. base: math.unit(1.5*1.4, "feet^2")
  56591. },
  56592. }
  56593. },
  56594. },
  56595. [
  56596. {
  56597. name: "Normal",
  56598. height: math.unit(6, "feet"),
  56599. default: true
  56600. },
  56601. ]
  56602. ))
  56603. characterMakers.push(() => makeCharacter(
  56604. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  56605. {
  56606. front: {
  56607. height: math.unit(6, "feet"),
  56608. name: "Front",
  56609. image: {
  56610. source: "./media/characters/pyrow/front.svg",
  56611. extra: 513/486,
  56612. bottom: 14/527
  56613. }
  56614. },
  56615. frontWing: {
  56616. height: math.unit(6, "feet"),
  56617. name: "Front (Wing)",
  56618. image: {
  56619. source: "./media/characters/pyrow/front-wing.svg",
  56620. extra: 539/383,
  56621. bottom: 20/559
  56622. }
  56623. },
  56624. back: {
  56625. height: math.unit(6, "feet"),
  56626. name: "Back",
  56627. image: {
  56628. source: "./media/characters/pyrow/back.svg",
  56629. extra: 500/473,
  56630. bottom: 9/509
  56631. }
  56632. },
  56633. },
  56634. [
  56635. {
  56636. name: "Normal",
  56637. height: math.unit(6, "feet"),
  56638. default: true
  56639. },
  56640. ]
  56641. ))
  56642. characterMakers.push(() => makeCharacter(
  56643. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  56644. {
  56645. front: {
  56646. height: math.unit(5, "meters"),
  56647. weight: math.unit(3, "tonnes"),
  56648. name: "Front",
  56649. image: {
  56650. source: "./media/characters/velikan/front.svg",
  56651. extra: 867/744,
  56652. bottom: 71/938
  56653. },
  56654. extraAttributes: {
  56655. "shoeSize": {
  56656. name: "Shoe Size",
  56657. power: 1,
  56658. type: "length",
  56659. base: math.unit(135, "ShoeSizeUK"),
  56660. defaultUnit: "ShoeSizeUK"
  56661. },
  56662. }
  56663. },
  56664. },
  56665. [
  56666. {
  56667. name: "Normal",
  56668. height: math.unit(5, "meters"),
  56669. default: true
  56670. },
  56671. {
  56672. name: "Macro",
  56673. height: math.unit(1, "km")
  56674. },
  56675. {
  56676. name: "Mega Macro",
  56677. height: math.unit(100, "km")
  56678. },
  56679. {
  56680. name: "Giga Macro",
  56681. height: math.unit(2, "megameters")
  56682. },
  56683. {
  56684. name: "Planetary",
  56685. height: math.unit(22, "megameters")
  56686. },
  56687. {
  56688. name: "Solar",
  56689. height: math.unit(8, "gigameters")
  56690. },
  56691. {
  56692. name: "Cosmic",
  56693. height: math.unit(10, "zettameters")
  56694. },
  56695. {
  56696. name: "Omni",
  56697. height: math.unit(9e260, "multiverses")
  56698. },
  56699. ]
  56700. ))
  56701. characterMakers.push(() => makeCharacter(
  56702. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  56703. {
  56704. front: {
  56705. height: math.unit(4 + 3/12, "feet"),
  56706. weight: math.unit(90, "lb"),
  56707. name: "Front",
  56708. image: {
  56709. source: "./media/characters/sabiki/front.svg",
  56710. extra: 1662/1423,
  56711. bottom: 65/1727
  56712. }
  56713. },
  56714. },
  56715. [
  56716. {
  56717. name: "Normal",
  56718. height: math.unit(4 + 3/12, "feet"),
  56719. default: true
  56720. },
  56721. ]
  56722. ))
  56723. characterMakers.push(() => makeCharacter(
  56724. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  56725. {
  56726. frontSfw: {
  56727. height: math.unit(2, "mm"),
  56728. name: "Front (SFW)",
  56729. image: {
  56730. source: "./media/characters/carmel/front-sfw.svg",
  56731. extra: 1131/1006,
  56732. bottom: 66/1197
  56733. }
  56734. },
  56735. frontNsfw: {
  56736. height: math.unit(2, "mm"),
  56737. name: "Front (NSFW)",
  56738. image: {
  56739. source: "./media/characters/carmel/front-nsfw.svg",
  56740. extra: 1131/1006,
  56741. bottom: 66/1197
  56742. }
  56743. },
  56744. foot: {
  56745. height: math.unit(0.3, "mm"),
  56746. name: "Foot",
  56747. image: {
  56748. source: "./media/characters/carmel/foot.svg"
  56749. }
  56750. },
  56751. tongue: {
  56752. height: math.unit(0.71, "mm"),
  56753. name: "Tongue",
  56754. image: {
  56755. source: "./media/characters/carmel/tongue.svg"
  56756. }
  56757. },
  56758. dick: {
  56759. height: math.unit(0.085, "mm"),
  56760. name: "Dick",
  56761. image: {
  56762. source: "./media/characters/carmel/dick.svg"
  56763. }
  56764. },
  56765. },
  56766. [
  56767. {
  56768. name: "Micro",
  56769. height: math.unit(2, "mm"),
  56770. default: true
  56771. },
  56772. {
  56773. name: "Normal",
  56774. height: math.unit(4 + 8/12, "feet")
  56775. },
  56776. {
  56777. name: "Mega Macro",
  56778. height: math.unit(250, "feet")
  56779. },
  56780. {
  56781. name: "BIGGER",
  56782. height: math.unit(1000, "feet")
  56783. },
  56784. {
  56785. name: "BIGGEST",
  56786. height: math.unit(2, "miles")
  56787. },
  56788. ]
  56789. ))
  56790. characterMakers.push(() => makeCharacter(
  56791. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  56792. {
  56793. front: {
  56794. height: math.unit(6.5, "feet"),
  56795. weight: math.unit(198, "lb"),
  56796. name: "Front",
  56797. image: {
  56798. source: "./media/characters/tamani/anthro.svg",
  56799. extra: 930/890,
  56800. bottom: 34/964
  56801. },
  56802. form: "anthro",
  56803. default: true
  56804. },
  56805. side: {
  56806. height: math.unit(6, "feet"),
  56807. weight: math.unit(198*2, "lb"),
  56808. name: "Side",
  56809. image: {
  56810. source: "./media/characters/tamani/feral.svg",
  56811. extra: 559/519,
  56812. bottom: 43/602
  56813. },
  56814. form: "feral"
  56815. },
  56816. },
  56817. [
  56818. {
  56819. name: "Normal",
  56820. height: math.unit(6.5, "feet"),
  56821. default: true,
  56822. form: "anthro"
  56823. },
  56824. {
  56825. name: "Normal",
  56826. height: math.unit(6, "feet"),
  56827. default: true,
  56828. form: "feral"
  56829. },
  56830. ],
  56831. {
  56832. "anthro": {
  56833. name: "Anthro",
  56834. default: true
  56835. },
  56836. "feral": {
  56837. name: "Feral",
  56838. },
  56839. }
  56840. ))
  56841. characterMakers.push(() => makeCharacter(
  56842. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  56843. {
  56844. front: {
  56845. height: math.unit(4 + 1/12, "feet"),
  56846. weight: math.unit(114, "lb"),
  56847. name: "Front",
  56848. image: {
  56849. source: "./media/characters/dex/front.svg",
  56850. extra: 787/680,
  56851. bottom: 18/805
  56852. }
  56853. },
  56854. side: {
  56855. height: math.unit(4 + 1/12, "feet"),
  56856. weight: math.unit(114, "lb"),
  56857. name: "Side",
  56858. image: {
  56859. source: "./media/characters/dex/side.svg",
  56860. extra: 785/680,
  56861. bottom: 12/797
  56862. }
  56863. },
  56864. back: {
  56865. height: math.unit(4 + 1/12, "feet"),
  56866. weight: math.unit(114, "lb"),
  56867. name: "Back",
  56868. image: {
  56869. source: "./media/characters/dex/back.svg",
  56870. extra: 785/681,
  56871. bottom: 17/802
  56872. }
  56873. },
  56874. loungewear: {
  56875. height: math.unit(4 + 1/12, "feet"),
  56876. weight: math.unit(114, "lb"),
  56877. name: "Loungewear",
  56878. image: {
  56879. source: "./media/characters/dex/loungewear.svg",
  56880. extra: 787/680,
  56881. bottom: 18/805
  56882. }
  56883. },
  56884. workout: {
  56885. height: math.unit(4 + 1/12, "feet"),
  56886. weight: math.unit(114, "lb"),
  56887. name: "Workout",
  56888. image: {
  56889. source: "./media/characters/dex/workout.svg",
  56890. extra: 787/680,
  56891. bottom: 18/805
  56892. }
  56893. },
  56894. schoolUniform: {
  56895. height: math.unit(4 + 1/12, "feet"),
  56896. weight: math.unit(114, "lb"),
  56897. name: "School-uniform",
  56898. image: {
  56899. source: "./media/characters/dex/school-uniform.svg",
  56900. extra: 787/680,
  56901. bottom: 18/805
  56902. }
  56903. },
  56904. maw: {
  56905. height: math.unit(0.55, "feet"),
  56906. name: "Maw",
  56907. image: {
  56908. source: "./media/characters/dex/maw.svg"
  56909. }
  56910. },
  56911. paw: {
  56912. height: math.unit(0.87, "feet"),
  56913. name: "Paw",
  56914. image: {
  56915. source: "./media/characters/dex/paw.svg"
  56916. }
  56917. },
  56918. bust: {
  56919. height: math.unit(1.67, "feet"),
  56920. name: "Bust",
  56921. image: {
  56922. source: "./media/characters/dex/bust.svg"
  56923. }
  56924. },
  56925. },
  56926. [
  56927. {
  56928. name: "Normal",
  56929. height: math.unit(4 + 1/12, "feet"),
  56930. default: true
  56931. },
  56932. ]
  56933. ))
  56934. characterMakers.push(() => makeCharacter(
  56935. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  56936. {
  56937. front: {
  56938. height: math.unit(4 + 3/12, "feet"),
  56939. weight: math.unit(60, "lb"),
  56940. name: "Front",
  56941. image: {
  56942. source: "./media/characters/silke/front.svg",
  56943. extra: 1334/1122,
  56944. bottom: 21/1355
  56945. }
  56946. },
  56947. back: {
  56948. height: math.unit(4 + 3/12, "feet"),
  56949. weight: math.unit(60, "lb"),
  56950. name: "Back",
  56951. image: {
  56952. source: "./media/characters/silke/back.svg",
  56953. extra: 1328/1092,
  56954. bottom: 16/1344
  56955. }
  56956. },
  56957. dressed: {
  56958. height: math.unit(4 + 3/12, "feet"),
  56959. weight: math.unit(60, "lb"),
  56960. name: "Dressed",
  56961. image: {
  56962. source: "./media/characters/silke/dressed.svg",
  56963. extra: 1334/1122,
  56964. bottom: 43/1377
  56965. }
  56966. },
  56967. },
  56968. [
  56969. {
  56970. name: "Normal",
  56971. height: math.unit(4 + 3/12, "feet"),
  56972. default: true
  56973. },
  56974. ]
  56975. ))
  56976. characterMakers.push(() => makeCharacter(
  56977. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  56978. {
  56979. front: {
  56980. height: math.unit(1.58, "meters"),
  56981. weight: math.unit(47, "kg"),
  56982. name: "Front",
  56983. image: {
  56984. source: "./media/characters/wireshark/front.svg",
  56985. extra: 883/838,
  56986. bottom: 66/949
  56987. }
  56988. },
  56989. },
  56990. [
  56991. {
  56992. name: "Normal",
  56993. height: math.unit(1.58, "meters"),
  56994. default: true
  56995. },
  56996. ]
  56997. ))
  56998. characterMakers.push(() => makeCharacter(
  56999. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  57000. {
  57001. front: {
  57002. height: math.unit(6, "meters"),
  57003. weight: math.unit(15000, "kg"),
  57004. name: "Front",
  57005. image: {
  57006. source: "./media/characters/gallagher/front.svg",
  57007. extra: 532/493,
  57008. bottom: 0/532
  57009. }
  57010. },
  57011. },
  57012. [
  57013. {
  57014. name: "Normal",
  57015. height: math.unit(6, "meters"),
  57016. default: true
  57017. },
  57018. ]
  57019. ))
  57020. characterMakers.push(() => makeCharacter(
  57021. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  57022. {
  57023. front: {
  57024. height: math.unit(2.4, "meters"),
  57025. weight: math.unit(270, "kg"),
  57026. name: "Front",
  57027. image: {
  57028. source: "./media/characters/alice/front.svg",
  57029. extra: 950/900,
  57030. bottom: 36/986
  57031. }
  57032. },
  57033. side: {
  57034. height: math.unit(2.4, "meters"),
  57035. weight: math.unit(270, "kg"),
  57036. name: "Side",
  57037. image: {
  57038. source: "./media/characters/alice/side.svg",
  57039. extra: 921/876,
  57040. bottom: 19/940
  57041. }
  57042. },
  57043. dressed: {
  57044. height: math.unit(2.4, "meters"),
  57045. weight: math.unit(270, "kg"),
  57046. name: "Dressed",
  57047. image: {
  57048. source: "./media/characters/alice/dressed.svg",
  57049. extra: 905/850,
  57050. bottom: 81/986
  57051. }
  57052. },
  57053. fishnet: {
  57054. height: math.unit(2.4, "meters"),
  57055. weight: math.unit(270, "kg"),
  57056. name: "Fishnet",
  57057. image: {
  57058. source: "./media/characters/alice/fishnet.svg",
  57059. extra: 905/850,
  57060. bottom: 81/986
  57061. }
  57062. },
  57063. },
  57064. [
  57065. {
  57066. name: "Normal",
  57067. height: math.unit(2.4, "meters"),
  57068. default: true
  57069. },
  57070. ]
  57071. ))
  57072. characterMakers.push(() => makeCharacter(
  57073. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  57074. {
  57075. front: {
  57076. height: math.unit(175.25, "feet"),
  57077. name: "Front",
  57078. image: {
  57079. source: "./media/characters/fio/front.svg",
  57080. extra: 1883/1591,
  57081. bottom: 34/1917
  57082. }
  57083. },
  57084. },
  57085. [
  57086. {
  57087. name: "Normal",
  57088. height: math.unit(175.25, "cm"),
  57089. default: true
  57090. },
  57091. ]
  57092. ))
  57093. characterMakers.push(() => makeCharacter(
  57094. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  57095. {
  57096. side: {
  57097. height: math.unit(6, "meters"),
  57098. weight: math.unit(3400, "kg"),
  57099. preyCapacity: math.unit(1700, "liters"),
  57100. name: "Side",
  57101. image: {
  57102. source: "./media/characters/hass/side.svg",
  57103. extra: 1058/997,
  57104. bottom: 177/1235
  57105. }
  57106. },
  57107. feeding: {
  57108. height: math.unit(6*0.63, "meters"),
  57109. weight: math.unit(3400, "kg"),
  57110. preyCapacity: math.unit(1700, "liters"),
  57111. name: "Feeding",
  57112. image: {
  57113. source: "./media/characters/hass/feeding.svg",
  57114. extra: 689/579,
  57115. bottom: 146/835
  57116. }
  57117. },
  57118. guts: {
  57119. height: math.unit(6, "meters"),
  57120. weight: math.unit(3400, "kg"),
  57121. name: "Guts",
  57122. image: {
  57123. source: "./media/characters/hass/guts.svg",
  57124. extra: 1223/1198,
  57125. bottom: 182/1405
  57126. }
  57127. },
  57128. dickFront: {
  57129. height: math.unit(1.4, "meters"),
  57130. name: "Dick (Front)",
  57131. image: {
  57132. source: "./media/characters/hass/dick-front.svg"
  57133. }
  57134. },
  57135. dickSide: {
  57136. height: math.unit(1.3, "meters"),
  57137. name: "Dick (Side)",
  57138. image: {
  57139. source: "./media/characters/hass/dick-side.svg"
  57140. }
  57141. },
  57142. dickBack: {
  57143. height: math.unit(1.4, "meters"),
  57144. name: "Dick (Back)",
  57145. image: {
  57146. source: "./media/characters/hass/dick-back.svg"
  57147. }
  57148. },
  57149. },
  57150. [
  57151. {
  57152. name: "Normal",
  57153. height: math.unit(6, "meters"),
  57154. default: true
  57155. },
  57156. ]
  57157. ))
  57158. characterMakers.push(() => makeCharacter(
  57159. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  57160. {
  57161. front: {
  57162. height: math.unit(4, "feet"),
  57163. weight: math.unit(60, "lb"),
  57164. name: "Front",
  57165. image: {
  57166. source: "./media/characters/hickory-finnegan/front.svg",
  57167. extra: 444/411,
  57168. bottom: 10/454
  57169. }
  57170. },
  57171. side: {
  57172. height: math.unit(4, "feet"),
  57173. weight: math.unit(60, "lb"),
  57174. name: "Side",
  57175. image: {
  57176. source: "./media/characters/hickory-finnegan/side.svg",
  57177. extra: 444/411,
  57178. bottom: 10/454
  57179. }
  57180. },
  57181. back: {
  57182. height: math.unit(4, "feet"),
  57183. weight: math.unit(60, "lb"),
  57184. name: "Back",
  57185. image: {
  57186. source: "./media/characters/hickory-finnegan/back.svg",
  57187. extra: 444/411,
  57188. bottom: 10/454
  57189. }
  57190. },
  57191. },
  57192. [
  57193. {
  57194. name: "Normal",
  57195. height: math.unit(4, "feet"),
  57196. default: true
  57197. },
  57198. ]
  57199. ))
  57200. characterMakers.push(() => makeCharacter(
  57201. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  57202. {
  57203. snivy_front: {
  57204. height: math.unit(2, "feet"),
  57205. weight: math.unit(17.9, "lb"),
  57206. name: "Front",
  57207. image: {
  57208. source: "./media/characters/robin-phox/snivy-front.svg",
  57209. extra: 569/504,
  57210. bottom: 33/602
  57211. },
  57212. form: "snivy",
  57213. default: true
  57214. },
  57215. snivy_frontNsfw: {
  57216. height: math.unit(2, "feet"),
  57217. weight: math.unit(17.9, "lb"),
  57218. name: "Front (NSFW)",
  57219. image: {
  57220. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  57221. extra: 569/504,
  57222. bottom: 33/602
  57223. },
  57224. form: "snivy",
  57225. },
  57226. snivy_back: {
  57227. height: math.unit(2, "feet"),
  57228. weight: math.unit(17.9, "lb"),
  57229. name: "Back",
  57230. image: {
  57231. source: "./media/characters/robin-phox/snivy-back.svg",
  57232. extra: 577/508,
  57233. bottom: 21/598
  57234. },
  57235. form: "snivy",
  57236. },
  57237. snivy_foot: {
  57238. height: math.unit(0.68, "feet"),
  57239. name: "Foot",
  57240. image: {
  57241. source: "./media/characters/robin-phox/snivy-foot.svg"
  57242. },
  57243. form: "snivy",
  57244. },
  57245. snivy_sole: {
  57246. height: math.unit(0.68, "feet"),
  57247. name: "Sole",
  57248. image: {
  57249. source: "./media/characters/robin-phox/snivy-sole.svg"
  57250. },
  57251. form: "snivy",
  57252. },
  57253. yoshi_front: {
  57254. height: math.unit(6, "feet"),
  57255. weight: math.unit(150, "lb"),
  57256. name: "Front",
  57257. image: {
  57258. source: "./media/characters/robin-phox/yoshi-front.svg",
  57259. extra: 890/792,
  57260. bottom: 29/919
  57261. },
  57262. form: "yoshi",
  57263. default: true
  57264. },
  57265. yoshi_frontNsfw: {
  57266. height: math.unit(6, "feet"),
  57267. weight: math.unit(150, "lb"),
  57268. name: "Front (NSFW)",
  57269. image: {
  57270. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  57271. extra: 890/792,
  57272. bottom: 29/919
  57273. },
  57274. form: "yoshi",
  57275. },
  57276. yoshi_back: {
  57277. height: math.unit(6, "feet"),
  57278. weight: math.unit(150, "lb"),
  57279. name: "Back",
  57280. image: {
  57281. source: "./media/characters/robin-phox/yoshi-back.svg",
  57282. extra: 890/792,
  57283. bottom: 29/919
  57284. },
  57285. form: "yoshi",
  57286. },
  57287. yoshi_foot: {
  57288. height: math.unit(1.5, "feet"),
  57289. name: "Foot",
  57290. image: {
  57291. source: "./media/characters/robin-phox/yoshi-foot.svg"
  57292. },
  57293. form: "yoshi",
  57294. },
  57295. delphox_front: {
  57296. height: math.unit(4 + 11/12, "feet"),
  57297. weight: math.unit(86, "lb"),
  57298. name: "Front",
  57299. image: {
  57300. source: "./media/characters/robin-phox/delphox-front.svg",
  57301. extra: 1266/1069,
  57302. bottom: 32/1298
  57303. },
  57304. form: "delphox",
  57305. default: true
  57306. },
  57307. delphox_frontNsfw: {
  57308. height: math.unit(4 + 11/12, "feet"),
  57309. weight: math.unit(86, "lb"),
  57310. name: "Front (NSFW)",
  57311. image: {
  57312. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  57313. extra: 1266/1069,
  57314. bottom: 32/1298
  57315. },
  57316. form: "delphox",
  57317. },
  57318. delphox_back: {
  57319. height: math.unit(4 + 11/12, "feet"),
  57320. weight: math.unit(86, "lb"),
  57321. name: "Back",
  57322. image: {
  57323. source: "./media/characters/robin-phox/delphox-back.svg",
  57324. extra: 1269/1083,
  57325. bottom: 15/1284
  57326. },
  57327. form: "delphox",
  57328. },
  57329. mienshao_front: {
  57330. height: math.unit(4 + 7/12, "feet"),
  57331. weight: math.unit(78.3, "lb"),
  57332. name: "Front",
  57333. image: {
  57334. source: "./media/characters/robin-phox/mienshao-front.svg",
  57335. extra: 1052/970,
  57336. bottom: 108/1160
  57337. },
  57338. form: "mienshao",
  57339. default: true
  57340. },
  57341. mienshao_frontNsfw: {
  57342. height: math.unit(4 + 7/12, "feet"),
  57343. weight: math.unit(78.3, "lb"),
  57344. name: "Front (NSFW)",
  57345. image: {
  57346. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  57347. extra: 1052/970,
  57348. bottom: 108/1160
  57349. },
  57350. form: "mienshao",
  57351. },
  57352. mienshao_back: {
  57353. height: math.unit(4 + 7/12, "feet"),
  57354. weight: math.unit(78.3, "lb"),
  57355. name: "Back",
  57356. image: {
  57357. source: "./media/characters/robin-phox/mienshao-back.svg",
  57358. extra: 1102/982,
  57359. bottom: 32/1134
  57360. },
  57361. form: "mienshao",
  57362. },
  57363. inteleon_front: {
  57364. height: math.unit(6 + 3/12, "feet"),
  57365. weight: math.unit(99.6, "lb"),
  57366. name: "Front",
  57367. image: {
  57368. source: "./media/characters/robin-phox/inteleon-front.svg",
  57369. extra: 910/799,
  57370. bottom: 76/986
  57371. },
  57372. form: "inteleon",
  57373. default: true
  57374. },
  57375. inteleon_frontNsfw: {
  57376. height: math.unit(6 + 3/12, "feet"),
  57377. weight: math.unit(99.6, "lb"),
  57378. name: "Front (NSFW)",
  57379. image: {
  57380. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  57381. extra: 910/799,
  57382. bottom: 76/986
  57383. },
  57384. form: "inteleon",
  57385. },
  57386. inteleon_back: {
  57387. height: math.unit(6 + 3/12, "feet"),
  57388. weight: math.unit(99.6, "lb"),
  57389. name: "Back",
  57390. image: {
  57391. source: "./media/characters/robin-phox/inteleon-back.svg",
  57392. extra: 907/796,
  57393. bottom: 25/932
  57394. },
  57395. form: "inteleon",
  57396. },
  57397. reshiram_front: {
  57398. height: math.unit(10 + 6/12, "feet"),
  57399. weight: math.unit(727.5, "lb"),
  57400. name: "Front",
  57401. image: {
  57402. source: "./media/characters/robin-phox/reshiram-front.svg",
  57403. extra: 1198/940,
  57404. bottom: 123/1321
  57405. },
  57406. form: "reshiram",
  57407. },
  57408. reshiram_frontNsfw: {
  57409. height: math.unit(10 + 6/12, "feet"),
  57410. weight: math.unit(727.5, "lb"),
  57411. name: "Front-nsfw",
  57412. image: {
  57413. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  57414. extra: 1198/940,
  57415. bottom: 123/1321
  57416. },
  57417. form: "reshiram",
  57418. },
  57419. reshiram_back: {
  57420. height: math.unit(10 + 6/12, "feet"),
  57421. weight: math.unit(727.5, "lb"),
  57422. name: "Back",
  57423. image: {
  57424. source: "./media/characters/robin-phox/reshiram-back.svg",
  57425. extra: 1024/904,
  57426. bottom: 85/1109
  57427. },
  57428. form: "reshiram",
  57429. },
  57430. samurott_front: {
  57431. height: math.unit(8, "feet"),
  57432. weight: math.unit(208.6, "lb"),
  57433. name: "Front",
  57434. image: {
  57435. source: "./media/characters/robin-phox/samurott-front.svg",
  57436. extra: 1048/984,
  57437. bottom: 100/1148
  57438. },
  57439. form: "samurott",
  57440. },
  57441. samurott_frontNsfw: {
  57442. height: math.unit(8, "feet"),
  57443. weight: math.unit(208.6, "lb"),
  57444. name: "Front-nsfw",
  57445. image: {
  57446. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  57447. extra: 1048/984,
  57448. bottom: 100/1148
  57449. },
  57450. form: "samurott",
  57451. },
  57452. samurott_back: {
  57453. height: math.unit(8, "feet"),
  57454. weight: math.unit(208.6, "lb"),
  57455. name: "Back",
  57456. image: {
  57457. source: "./media/characters/robin-phox/samurott-back.svg",
  57458. extra: 1110/1042,
  57459. bottom: 12/1122
  57460. },
  57461. form: "samurott",
  57462. },
  57463. samurott_feral: {
  57464. height: math.unit(4 + 11/12, "feet"),
  57465. weight: math.unit(208.6, "lb"),
  57466. name: "Feral",
  57467. image: {
  57468. source: "./media/characters/robin-phox/samurott-feral.svg",
  57469. extra: 766/681,
  57470. bottom: 108/874
  57471. },
  57472. form: "samurott",
  57473. },
  57474. },
  57475. [
  57476. {
  57477. name: "Normal",
  57478. height: math.unit(2, "feet"),
  57479. default: true,
  57480. form: "snivy"
  57481. },
  57482. {
  57483. name: "Normal",
  57484. height: math.unit(6, "feet"),
  57485. default: true,
  57486. form: "yoshi"
  57487. },
  57488. {
  57489. name: "Normal",
  57490. height: math.unit(4 + 11/12, "feet"),
  57491. default: true,
  57492. form: "delphox"
  57493. },
  57494. {
  57495. name: "Normal",
  57496. height: math.unit(4 + 7/12, "feet"),
  57497. default: true,
  57498. form: "mienshao"
  57499. },
  57500. {
  57501. name: "Normal",
  57502. height: math.unit(6 + 3/12, "feet"),
  57503. default: true,
  57504. form: "inteleon"
  57505. },
  57506. {
  57507. name: "Normal",
  57508. height: math.unit(10 + 6/12, "feet"),
  57509. default: true,
  57510. form: "reshiram"
  57511. },
  57512. {
  57513. name: "Normal",
  57514. height: math.unit(8, "feet"),
  57515. default: true,
  57516. form: "samurott"
  57517. },
  57518. {
  57519. name: "Macro",
  57520. height: math.unit(500, "feet"),
  57521. allForms: true
  57522. },
  57523. {
  57524. name: "Mega Macro",
  57525. height: math.unit(10, "earths"),
  57526. allForms: true
  57527. },
  57528. {
  57529. name: "Giga Macro",
  57530. height: math.unit(1, "galaxy"),
  57531. allForms: true
  57532. },
  57533. {
  57534. name: "Godly Macro",
  57535. height: math.unit(1e10, "multiverses"),
  57536. allForms: true
  57537. },
  57538. ],
  57539. {
  57540. "snivy": {
  57541. name: "Snivy",
  57542. default: true
  57543. },
  57544. "yoshi": {
  57545. name: "Yoshi",
  57546. },
  57547. "delphox": {
  57548. name: "Delphox",
  57549. },
  57550. "mienshao": {
  57551. name: "Mienshao",
  57552. },
  57553. "inteleon": {
  57554. name: "Inteleon",
  57555. },
  57556. "reshiram": {
  57557. name: "Reshiram",
  57558. },
  57559. "samurott": {
  57560. name: "Samurott",
  57561. },
  57562. }
  57563. ))
  57564. characterMakers.push(() => makeCharacter(
  57565. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  57566. {
  57567. front: {
  57568. height: math.unit(4, "feet"),
  57569. name: "Front",
  57570. image: {
  57571. source: "./media/characters/ash-leung/front.svg",
  57572. extra: 1916/1792,
  57573. bottom: 50/1966
  57574. }
  57575. },
  57576. },
  57577. [
  57578. {
  57579. name: "Atomic",
  57580. height: math.unit(1, "angstrom")
  57581. },
  57582. {
  57583. name: "Microscopic",
  57584. height: math.unit(4000, "angstroms")
  57585. },
  57586. {
  57587. name: "Speck",
  57588. height: math.unit(1, "mm")
  57589. },
  57590. {
  57591. name: "Small",
  57592. height: math.unit(1, "inch")
  57593. },
  57594. {
  57595. name: "Normal",
  57596. height: math.unit(4, "feet"),
  57597. default: true
  57598. },
  57599. ]
  57600. ))
  57601. characterMakers.push(() => makeCharacter(
  57602. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  57603. {
  57604. frontDressed: {
  57605. height: math.unit(2.08, "meters"),
  57606. weight: math.unit(175, "lb"),
  57607. name: "Front (Dressed)",
  57608. image: {
  57609. source: "./media/characters/carie/front-dressed.svg",
  57610. extra: 456/417,
  57611. bottom: 7/463
  57612. }
  57613. },
  57614. backDressed: {
  57615. height: math.unit(2.08, "meters"),
  57616. weight: math.unit(175, "lb"),
  57617. name: "Back (Dressed)",
  57618. image: {
  57619. source: "./media/characters/carie/back-dressed.svg",
  57620. extra: 455/414,
  57621. bottom: 11/466
  57622. }
  57623. },
  57624. front: {
  57625. height: math.unit(2, "meters"),
  57626. weight: math.unit(175, "lb"),
  57627. name: "Front",
  57628. image: {
  57629. source: "./media/characters/carie/front.svg",
  57630. extra: 438/399,
  57631. bottom: 12/450
  57632. }
  57633. },
  57634. back: {
  57635. height: math.unit(2, "meters"),
  57636. weight: math.unit(175, "lb"),
  57637. name: "Back",
  57638. image: {
  57639. source: "./media/characters/carie/back.svg",
  57640. extra: 438/397,
  57641. bottom: 7/445
  57642. }
  57643. },
  57644. },
  57645. [
  57646. {
  57647. name: "Normal",
  57648. height: math.unit(2.08, "meters"),
  57649. default: true
  57650. },
  57651. {
  57652. name: "Macro",
  57653. height: math.unit(2.08e3, "meters")
  57654. },
  57655. {
  57656. name: "Mega Macro",
  57657. height: math.unit(2.08e6, "meters")
  57658. },
  57659. {
  57660. name: "Giga Macro",
  57661. height: math.unit(2.08e9, "meters")
  57662. },
  57663. {
  57664. name: "Tera Macro",
  57665. height: math.unit(2.08e12, "meters")
  57666. },
  57667. {
  57668. name: "Peta Macro",
  57669. height: math.unit(2.08e15, "meters")
  57670. },
  57671. {
  57672. name: "Exa Macro",
  57673. height: math.unit(2.08e18, "meters")
  57674. },
  57675. {
  57676. name: "Zetta Macro",
  57677. height: math.unit(2.08e21, "meters")
  57678. },
  57679. {
  57680. name: "Yotta Macro",
  57681. height: math.unit(2.08e24, "meters")
  57682. },
  57683. ]
  57684. ))
  57685. characterMakers.push(() => makeCharacter(
  57686. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  57687. {
  57688. front: {
  57689. height: math.unit(5 + 2/12, "feet"),
  57690. weight: math.unit(120, "lb"),
  57691. name: "Front",
  57692. image: {
  57693. source: "./media/characters/sai-bree/front.svg",
  57694. extra: 1843/1702,
  57695. bottom: 91/1934
  57696. }
  57697. },
  57698. back: {
  57699. height: math.unit(5 + 2/12, "feet"),
  57700. weight: math.unit(120, "lb"),
  57701. name: "Back",
  57702. image: {
  57703. source: "./media/characters/sai-bree/back.svg",
  57704. extra: 1809/1637,
  57705. bottom: 56/1865
  57706. }
  57707. },
  57708. },
  57709. [
  57710. {
  57711. name: "Normal",
  57712. height: math.unit(5 + 2/12, "feet"),
  57713. default: true
  57714. },
  57715. {
  57716. name: "Macro",
  57717. height: math.unit(500, "feet")
  57718. },
  57719. ]
  57720. ))
  57721. characterMakers.push(() => makeCharacter(
  57722. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  57723. {
  57724. side: {
  57725. height: math.unit(0.77, "meters"),
  57726. weight: math.unit(120, "lb"),
  57727. name: "Side",
  57728. image: {
  57729. source: "./media/characters/davwyn/side.svg",
  57730. extra: 1557/1225,
  57731. bottom: 131/1688
  57732. }
  57733. },
  57734. front: {
  57735. height: math.unit(0.835410, "meters"),
  57736. weight: math.unit(120, "lb"),
  57737. name: "Front",
  57738. image: {
  57739. source: "./media/characters/davwyn/front.svg",
  57740. extra: 870/843,
  57741. bottom: 175/1045
  57742. }
  57743. },
  57744. },
  57745. [
  57746. {
  57747. name: "Minidrake",
  57748. height: math.unit(0.77/4, "meters")
  57749. },
  57750. {
  57751. name: "Normal",
  57752. height: math.unit(0.77, "meters"),
  57753. default: true
  57754. },
  57755. ]
  57756. ))
  57757. characterMakers.push(() => makeCharacter(
  57758. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  57759. {
  57760. front: {
  57761. height: math.unit(10 + 3/12, "feet"),
  57762. weight: math.unit(2857, "lb"),
  57763. name: "Front",
  57764. image: {
  57765. source: "./media/characters/balans/front.svg",
  57766. extra: 427/402,
  57767. bottom: 26/453
  57768. }
  57769. },
  57770. side: {
  57771. height: math.unit(10 + 3/12, "feet"),
  57772. weight: math.unit(2857, "lb"),
  57773. name: "Side",
  57774. image: {
  57775. source: "./media/characters/balans/side.svg",
  57776. extra: 397/371,
  57777. bottom: 17/414
  57778. }
  57779. },
  57780. back: {
  57781. height: math.unit(10 + 3/12, "feet"),
  57782. weight: math.unit(2857, "lb"),
  57783. name: "Back",
  57784. image: {
  57785. source: "./media/characters/balans/back.svg",
  57786. extra: 408/381,
  57787. bottom: 14/422
  57788. }
  57789. },
  57790. hand: {
  57791. height: math.unit(1.15, "feet"),
  57792. name: "Hand",
  57793. image: {
  57794. source: "./media/characters/balans/hand.svg"
  57795. }
  57796. },
  57797. footRest: {
  57798. height: math.unit(3.1, "feet"),
  57799. name: "Foot (Rest)",
  57800. image: {
  57801. source: "./media/characters/balans/foot-rest.svg"
  57802. }
  57803. },
  57804. footActive: {
  57805. height: math.unit(3.5, "feet"),
  57806. name: "Foot (Active)",
  57807. image: {
  57808. source: "./media/characters/balans/foot-active.svg"
  57809. }
  57810. },
  57811. },
  57812. [
  57813. {
  57814. name: "Normal",
  57815. height: math.unit(10 + 3/12, "feet"),
  57816. default: true
  57817. },
  57818. ]
  57819. ))
  57820. characterMakers.push(() => makeCharacter(
  57821. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  57822. {
  57823. side: {
  57824. height: math.unit(9, "meters"),
  57825. weight: math.unit(114, "tonnes"),
  57826. name: "Side",
  57827. image: {
  57828. source: "./media/characters/eldkveikir/side.svg",
  57829. extra: 1927/338,
  57830. bottom: 42/1969
  57831. }
  57832. },
  57833. sitting: {
  57834. height: math.unit(13.4, "meters"),
  57835. weight: math.unit(114, "tonnes"),
  57836. name: "Sitting",
  57837. image: {
  57838. source: "./media/characters/eldkveikir/sitting.svg",
  57839. extra: 1108/963,
  57840. bottom: 610/1718
  57841. }
  57842. },
  57843. maw: {
  57844. height: math.unit(8.36, "meters"),
  57845. name: "Maw",
  57846. image: {
  57847. source: "./media/characters/eldkveikir/maw.svg"
  57848. }
  57849. },
  57850. hand: {
  57851. height: math.unit(4.84, "meters"),
  57852. name: "Hand",
  57853. image: {
  57854. source: "./media/characters/eldkveikir/hand.svg"
  57855. }
  57856. },
  57857. foot: {
  57858. height: math.unit(6.9, "meters"),
  57859. name: "Foot",
  57860. image: {
  57861. source: "./media/characters/eldkveikir/foot.svg"
  57862. }
  57863. },
  57864. genitals: {
  57865. height: math.unit(9.6, "meters"),
  57866. name: "Genitals",
  57867. image: {
  57868. source: "./media/characters/eldkveikir/genitals.svg"
  57869. }
  57870. },
  57871. },
  57872. [
  57873. {
  57874. name: "Normal",
  57875. height: math.unit(9, "meters"),
  57876. default: true
  57877. },
  57878. ]
  57879. ))
  57880. characterMakers.push(() => makeCharacter(
  57881. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  57882. {
  57883. front: {
  57884. height: math.unit(14, "feet"),
  57885. weight: math.unit(4100, "lb"),
  57886. name: "Front",
  57887. image: {
  57888. source: "./media/characters/arrow/front.svg",
  57889. extra: 330/318,
  57890. bottom: 56/386
  57891. }
  57892. },
  57893. },
  57894. [
  57895. {
  57896. name: "Normal",
  57897. height: math.unit(14, "feet"),
  57898. default: true
  57899. },
  57900. {
  57901. name: "Minimacro",
  57902. height: math.unit(63, "feet")
  57903. },
  57904. {
  57905. name: "Macro",
  57906. height: math.unit(630, "feet")
  57907. },
  57908. {
  57909. name: "Megamacro",
  57910. height: math.unit(12600, "feet")
  57911. },
  57912. {
  57913. name: "Gigamacro",
  57914. height: math.unit(18000, "miles")
  57915. },
  57916. ]
  57917. ))
  57918. characterMakers.push(() => makeCharacter(
  57919. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  57920. {
  57921. front: {
  57922. height: math.unit(10, "feet"),
  57923. weight: math.unit(2.4, "tons"),
  57924. name: "Front",
  57925. image: {
  57926. source: "./media/characters/3yk-k0-unit/front.svg",
  57927. extra: 573/561,
  57928. bottom: 33/606
  57929. }
  57930. },
  57931. back: {
  57932. height: math.unit(10, "feet"),
  57933. weight: math.unit(2.4, "tons"),
  57934. name: "Back",
  57935. image: {
  57936. source: "./media/characters/3yk-k0-unit/back.svg",
  57937. extra: 614/573,
  57938. bottom: 32/646
  57939. }
  57940. },
  57941. maw: {
  57942. height: math.unit(2.15, "feet"),
  57943. name: "Maw",
  57944. image: {
  57945. source: "./media/characters/3yk-k0-unit/maw.svg"
  57946. }
  57947. },
  57948. },
  57949. [
  57950. {
  57951. name: "Normal",
  57952. height: math.unit(10, "feet"),
  57953. default: true
  57954. },
  57955. ]
  57956. ))
  57957. characterMakers.push(() => makeCharacter(
  57958. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  57959. {
  57960. front: {
  57961. height: math.unit(8 + 8/12, "feet"),
  57962. name: "Front",
  57963. image: {
  57964. source: "./media/characters/nemo/front.svg",
  57965. extra: 1308/1217,
  57966. bottom: 57/1365
  57967. }
  57968. },
  57969. },
  57970. [
  57971. {
  57972. name: "Normal",
  57973. height: math.unit(8 + 8/12, "feet"),
  57974. default: true
  57975. },
  57976. ]
  57977. ))
  57978. characterMakers.push(() => makeCharacter(
  57979. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  57980. {
  57981. front: {
  57982. height: math.unit(8, "feet"),
  57983. weight: math.unit(760, "lb"),
  57984. name: "Front",
  57985. image: {
  57986. source: "./media/characters/rexx/front.svg",
  57987. extra: 786/750,
  57988. bottom: 17/803
  57989. },
  57990. extraAttributes: {
  57991. "pawLength": {
  57992. name: "Paw Length",
  57993. power: 1,
  57994. type: "length",
  57995. base: math.unit(27, "inches")
  57996. },
  57997. }
  57998. },
  57999. },
  58000. [
  58001. {
  58002. name: "Micro",
  58003. height: math.unit(2, "inches")
  58004. },
  58005. {
  58006. name: "Normal",
  58007. height: math.unit(8, "feet"),
  58008. default: true
  58009. },
  58010. {
  58011. name: "Macro",
  58012. height: math.unit(150, "feet")
  58013. },
  58014. ]
  58015. ))
  58016. characterMakers.push(() => makeCharacter(
  58017. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  58018. {
  58019. front: {
  58020. height: math.unit(18, "feet"),
  58021. weight: math.unit(1975, "lb"),
  58022. name: "Front",
  58023. image: {
  58024. source: "./media/characters/draco/front.svg",
  58025. extra: 1325/1241,
  58026. bottom: 83/1408
  58027. }
  58028. },
  58029. back: {
  58030. height: math.unit(18, "feet"),
  58031. weight: math.unit(1975, "lb"),
  58032. name: "Back",
  58033. image: {
  58034. source: "./media/characters/draco/back.svg",
  58035. extra: 1332/1250,
  58036. bottom: 43/1375
  58037. }
  58038. },
  58039. dick: {
  58040. height: math.unit(7.5, "feet"),
  58041. name: "Dick",
  58042. image: {
  58043. source: "./media/characters/draco/dick.svg"
  58044. }
  58045. },
  58046. },
  58047. [
  58048. {
  58049. name: "Normal",
  58050. height: math.unit(18, "feet"),
  58051. default: true
  58052. },
  58053. ]
  58054. ))
  58055. characterMakers.push(() => makeCharacter(
  58056. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  58057. {
  58058. front: {
  58059. height: math.unit(3.2, "meters"),
  58060. name: "Front",
  58061. image: {
  58062. source: "./media/characters/harriett/front.svg",
  58063. extra: 1966/1915,
  58064. bottom: 9/1975
  58065. }
  58066. },
  58067. },
  58068. [
  58069. {
  58070. name: "Normal",
  58071. height: math.unit(3.2, "meters"),
  58072. default: true
  58073. },
  58074. ]
  58075. ))
  58076. characterMakers.push(() => makeCharacter(
  58077. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  58078. {
  58079. sitting: {
  58080. height: math.unit(0.8, "meter"),
  58081. name: "Sitting",
  58082. image: {
  58083. source: "./media/characters/serpentus/sitting.svg",
  58084. extra: 293/290,
  58085. bottom: 140/433
  58086. }
  58087. },
  58088. },
  58089. [
  58090. {
  58091. name: "Normal",
  58092. height: math.unit(0.8, "meter"),
  58093. default: true
  58094. },
  58095. ]
  58096. ))
  58097. characterMakers.push(() => makeCharacter(
  58098. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  58099. {
  58100. front: {
  58101. height: math.unit(5.7174385736, "feet"),
  58102. name: "Front",
  58103. image: {
  58104. source: "./media/characters/nova-polecat/front.svg",
  58105. extra: 1317/1216,
  58106. bottom: 92/1409
  58107. }
  58108. },
  58109. },
  58110. [
  58111. {
  58112. name: "Normal",
  58113. height: math.unit(5.7174385736, "feet"),
  58114. default: true
  58115. },
  58116. ]
  58117. ))
  58118. characterMakers.push(() => makeCharacter(
  58119. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  58120. {
  58121. front: {
  58122. height: math.unit(5 + 4/12, "feet"),
  58123. weight: math.unit(250, "lb"),
  58124. name: "Front",
  58125. image: {
  58126. source: "./media/characters/mook/front.svg",
  58127. extra: 1088/1037,
  58128. bottom: 132/1220
  58129. }
  58130. },
  58131. back: {
  58132. height: math.unit(5 + 1/12, "feet"),
  58133. weight: math.unit(250, "lb"),
  58134. name: "Back",
  58135. image: {
  58136. source: "./media/characters/mook/back.svg",
  58137. extra: 1184/905,
  58138. bottom: 96/1280
  58139. }
  58140. },
  58141. head: {
  58142. height: math.unit(1.85, "feet"),
  58143. name: "Head",
  58144. image: {
  58145. source: "./media/characters/mook/head.svg"
  58146. }
  58147. },
  58148. hand: {
  58149. height: math.unit(1.9, "feet"),
  58150. name: "Hand",
  58151. image: {
  58152. source: "./media/characters/mook/hand.svg"
  58153. }
  58154. },
  58155. palm: {
  58156. height: math.unit(1.84, "feet"),
  58157. name: "Palm",
  58158. image: {
  58159. source: "./media/characters/mook/palm.svg"
  58160. }
  58161. },
  58162. foot: {
  58163. height: math.unit(1.44, "feet"),
  58164. name: "Foot",
  58165. image: {
  58166. source: "./media/characters/mook/foot.svg"
  58167. }
  58168. },
  58169. sole: {
  58170. height: math.unit(1.44, "feet"),
  58171. name: "Sole",
  58172. image: {
  58173. source: "./media/characters/mook/sole.svg"
  58174. }
  58175. },
  58176. },
  58177. [
  58178. {
  58179. name: "Normal",
  58180. height: math.unit(5 + 4/12, "feet"),
  58181. default: true
  58182. },
  58183. {
  58184. name: "Big",
  58185. height: math.unit(12, "feet")
  58186. },
  58187. ]
  58188. ))
  58189. characterMakers.push(() => makeCharacter(
  58190. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  58191. {
  58192. front: {
  58193. height: math.unit(6 + 10/12, "feet"),
  58194. weight: math.unit(233, "lb"),
  58195. name: "Front",
  58196. image: {
  58197. source: "./media/characters/kayla/front.svg",
  58198. extra: 1850/1775,
  58199. bottom: 65/1915
  58200. }
  58201. },
  58202. },
  58203. [
  58204. {
  58205. name: "Normal",
  58206. height: math.unit(6 + 10/12, "feet"),
  58207. default: true
  58208. },
  58209. {
  58210. name: "Amazonian",
  58211. height: math.unit(12 + 5/12, "feet")
  58212. },
  58213. {
  58214. name: "Mini Giantess",
  58215. height: math.unit(26, "feet")
  58216. },
  58217. {
  58218. name: "Giantess",
  58219. height: math.unit(200, "feet")
  58220. },
  58221. {
  58222. name: "Mega Giantess",
  58223. height: math.unit(2500, "feet")
  58224. },
  58225. {
  58226. name: "City Sized",
  58227. height: math.unit(50, "miles")
  58228. },
  58229. {
  58230. name: "Country Sized",
  58231. height: math.unit(500, "miles")
  58232. },
  58233. {
  58234. name: "Continent Sized",
  58235. height: math.unit(2500, "miles")
  58236. },
  58237. {
  58238. name: "Planet Sized",
  58239. height: math.unit(10000, "miles")
  58240. },
  58241. {
  58242. name: "Star Sized",
  58243. height: math.unit(5e6, "miles")
  58244. },
  58245. {
  58246. name: "Solar System Sized",
  58247. height: math.unit(125, "AU")
  58248. },
  58249. {
  58250. name: "Galaxy Sized",
  58251. height: math.unit(300e3, "lightyears")
  58252. },
  58253. {
  58254. name: "Universe Sized",
  58255. height: math.unit(200e9, "lightyears")
  58256. },
  58257. {
  58258. name: "Multiverse Sized",
  58259. height: math.unit(20, "exauniverses")
  58260. },
  58261. {
  58262. name: "Mother of Existence",
  58263. height: math.unit(1e6, "yottauniverses")
  58264. },
  58265. ]
  58266. ))
  58267. characterMakers.push(() => makeCharacter(
  58268. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  58269. {
  58270. side: {
  58271. height: math.unit(9.5, "meters"),
  58272. name: "Side",
  58273. image: {
  58274. source: "./media/characters/kulve-ragnarok/side.svg",
  58275. extra: 364/326,
  58276. bottom: 50/414
  58277. }
  58278. },
  58279. },
  58280. [
  58281. {
  58282. name: "Normal",
  58283. height: math.unit(9.5, "meters"),
  58284. default: true
  58285. },
  58286. ]
  58287. ))
  58288. characterMakers.push(() => makeCharacter(
  58289. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  58290. {
  58291. front: {
  58292. height: math.unit(8 + 9/12, "feet"),
  58293. name: "Front",
  58294. image: {
  58295. source: "./media/characters/atlas-goat/front.svg",
  58296. extra: 1462/1323,
  58297. bottom: 12/1474
  58298. }
  58299. },
  58300. },
  58301. [
  58302. {
  58303. name: "Normal",
  58304. height: math.unit(8 + 9/12, "feet"),
  58305. default: true
  58306. },
  58307. {
  58308. name: "Skyline",
  58309. height: math.unit(845, "feet")
  58310. },
  58311. {
  58312. name: "Orbital",
  58313. height: math.unit(93000, "miles")
  58314. },
  58315. {
  58316. name: "Constellation",
  58317. height: math.unit(27000, "lightyears")
  58318. },
  58319. ]
  58320. ))
  58321. characterMakers.push(() => makeCharacter(
  58322. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  58323. {
  58324. side: {
  58325. height: math.unit(1.8, "meters"),
  58326. weight: math.unit(120, "kg"),
  58327. name: "Side",
  58328. image: {
  58329. source: "./media/characters/xie-ling/side.svg",
  58330. extra: 646/574,
  58331. bottom: 44/690
  58332. }
  58333. },
  58334. },
  58335. [
  58336. {
  58337. name: "Tiny",
  58338. height: math.unit(1.80, "meters")
  58339. },
  58340. {
  58341. name: "Small",
  58342. height: math.unit(6, "meters")
  58343. },
  58344. {
  58345. name: "Medium",
  58346. height: math.unit(15, "meters")
  58347. },
  58348. {
  58349. name: "Normal",
  58350. height: math.unit(30, "meters"),
  58351. default: true
  58352. },
  58353. {
  58354. name: "Above Normal",
  58355. height: math.unit(60, "meters")
  58356. },
  58357. {
  58358. name: "Big",
  58359. height: math.unit(220, "meters")
  58360. },
  58361. {
  58362. name: "Giant",
  58363. height: math.unit(2.2, "km")
  58364. },
  58365. {
  58366. name: "Macro",
  58367. height: math.unit(25, "km")
  58368. },
  58369. {
  58370. name: "Mega Macro",
  58371. height: math.unit(350, "km")
  58372. },
  58373. {
  58374. name: "Mega Macro+",
  58375. height: math.unit(5000, "km")
  58376. },
  58377. {
  58378. name: "Goddess",
  58379. height: math.unit(3, "multiverses")
  58380. },
  58381. ]
  58382. ))
  58383. characterMakers.push(() => makeCharacter(
  58384. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  58385. {
  58386. frontSfw: {
  58387. height: math.unit(5 + 11/12, "feet"),
  58388. weight: math.unit(210, "lb"),
  58389. name: "Front",
  58390. image: {
  58391. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  58392. extra: 1928/1821,
  58393. bottom: 45/1973
  58394. }
  58395. },
  58396. backSfw: {
  58397. height: math.unit(5 + 11/12, "feet"),
  58398. weight: math.unit(210, "lb"),
  58399. name: "Back",
  58400. image: {
  58401. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  58402. extra: 1920/1813,
  58403. bottom: 34/1954
  58404. }
  58405. },
  58406. frontNsfw: {
  58407. height: math.unit(5 + 11/12, "feet"),
  58408. weight: math.unit(210, "lb"),
  58409. name: "Front (NSFW)",
  58410. image: {
  58411. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  58412. extra: 1928/1821,
  58413. bottom: 45/1973
  58414. }
  58415. },
  58416. backNsfw: {
  58417. height: math.unit(5 + 11/12, "feet"),
  58418. weight: math.unit(210, "lb"),
  58419. name: "Back (NSFW)",
  58420. image: {
  58421. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  58422. extra: 1920/1813,
  58423. bottom: 34/1954
  58424. }
  58425. },
  58426. },
  58427. [
  58428. {
  58429. name: "Normal",
  58430. height: math.unit(5 + 11/12, "feet"),
  58431. default: true
  58432. },
  58433. {
  58434. name: "Goddess",
  58435. height: math.unit(20 + 3/12, "feet")
  58436. },
  58437. {
  58438. name: "Breaker of Man",
  58439. height: math.unit(329 + 9/12, "feet")
  58440. },
  58441. {
  58442. name: "Solar Justice",
  58443. height: math.unit(0.6, "solarradii")
  58444. },
  58445. {
  58446. name: "She Who Judges",
  58447. height: math.unit(1, "universe")
  58448. },
  58449. ]
  58450. ))
  58451. characterMakers.push(() => makeCharacter(
  58452. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  58453. {
  58454. casual_front: {
  58455. height: math.unit(6 + 1/12, "feet"),
  58456. weight: math.unit(190, "lb"),
  58457. preyCapacity: math.unit(1, "people"),
  58458. name: "Front",
  58459. image: {
  58460. source: "./media/characters/managarmr/casual-front.svg",
  58461. extra: 411/381,
  58462. bottom: 15/426
  58463. },
  58464. extraAttributes: {
  58465. "pawSize": {
  58466. name: "Paw Size",
  58467. power: 1,
  58468. type: "length",
  58469. base: math.unit(0.2, "meters")
  58470. },
  58471. },
  58472. form: "casual",
  58473. },
  58474. casual_back: {
  58475. height: math.unit(6 + 1/12, "feet"),
  58476. weight: math.unit(190, "lb"),
  58477. preyCapacity: math.unit(1, "people"),
  58478. name: "Back",
  58479. image: {
  58480. source: "./media/characters/managarmr/casual-back.svg",
  58481. extra: 413/383,
  58482. bottom: 13/426
  58483. },
  58484. extraAttributes: {
  58485. "pawSize": {
  58486. name: "Paw Size",
  58487. power: 1,
  58488. type: "length",
  58489. base: math.unit(0.2, "meters")
  58490. },
  58491. },
  58492. form: "casual",
  58493. },
  58494. base_front: {
  58495. height: math.unit(7, "feet"),
  58496. weight: math.unit(210, "lb"),
  58497. preyCapacity: math.unit(2, "people"),
  58498. name: "Front",
  58499. image: {
  58500. source: "./media/characters/managarmr/base-front.svg",
  58501. extra: 580/485,
  58502. bottom: 32/612
  58503. },
  58504. extraAttributes: {
  58505. "wingspan": {
  58506. name: "Wingspan",
  58507. power: 1,
  58508. type: "length",
  58509. base: math.unit(4, "meters")
  58510. },
  58511. "pawSize": {
  58512. name: "Paw Size",
  58513. power: 1,
  58514. type: "length",
  58515. base: math.unit(0.2, "meters")
  58516. },
  58517. },
  58518. form: "base",
  58519. },
  58520. "true-divine_front": {
  58521. height: math.unit(40, "feet"),
  58522. weight: math.unit(39000, "lb"),
  58523. preyCapacity: math.unit(375, "people"),
  58524. name: "Front",
  58525. image: {
  58526. source: "./media/characters/managarmr/true-divine-front.svg",
  58527. extra: 725/573,
  58528. bottom: 120/845
  58529. },
  58530. extraAttributes: {
  58531. "wingspan": {
  58532. name: "Wingspan",
  58533. power: 1,
  58534. type: "length",
  58535. base: math.unit(20, "meters")
  58536. },
  58537. "pawSize": {
  58538. name: "Paw Size",
  58539. power: 1,
  58540. type: "length",
  58541. base: math.unit(1.5, "meters")
  58542. },
  58543. },
  58544. form: "true-divine",
  58545. },
  58546. },
  58547. [
  58548. {
  58549. name: "Normal",
  58550. height: math.unit(6 + 1/12, "feet"),
  58551. form: "casual",
  58552. default: true
  58553. },
  58554. {
  58555. name: "Normal",
  58556. height: math.unit(7, "feet"),
  58557. form: "base",
  58558. default: true
  58559. },
  58560. ],
  58561. {
  58562. "casual": {
  58563. name: "Casual",
  58564. default: true
  58565. },
  58566. "base": {
  58567. name: "Base",
  58568. },
  58569. "true-divine": {
  58570. name: "True Divine",
  58571. },
  58572. }
  58573. ))
  58574. characterMakers.push(() => makeCharacter(
  58575. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  58576. {
  58577. front: {
  58578. height: math.unit(1.8, "meters"),
  58579. weight: math.unit(110, "kg"),
  58580. name: "Front",
  58581. image: {
  58582. source: "./media/characters/mystra/front.svg",
  58583. extra: 529/442,
  58584. bottom: 31/560
  58585. }
  58586. },
  58587. frontLewd: {
  58588. height: math.unit(1.8, "meters"),
  58589. weight: math.unit(110, "kg"),
  58590. name: "Front (Lewd)",
  58591. image: {
  58592. source: "./media/characters/mystra/front-lewd.svg",
  58593. extra: 529/442,
  58594. bottom: 31/560
  58595. }
  58596. },
  58597. head: {
  58598. height: math.unit(1.63, "feet"),
  58599. name: "Head",
  58600. image: {
  58601. source: "./media/characters/mystra/head.svg"
  58602. }
  58603. },
  58604. paw: {
  58605. height: math.unit(1.9, "feet"),
  58606. name: "Paw",
  58607. image: {
  58608. source: "./media/characters/mystra/paw.svg"
  58609. }
  58610. },
  58611. },
  58612. [
  58613. {
  58614. name: "Incognito",
  58615. height: math.unit(2.3, "meters")
  58616. },
  58617. {
  58618. name: "Small Macro",
  58619. height: math.unit(300, "meters")
  58620. },
  58621. {
  58622. name: "Small Mega",
  58623. height: math.unit(2, "km")
  58624. },
  58625. {
  58626. name: "Mega",
  58627. height: math.unit(30, "km")
  58628. },
  58629. {
  58630. name: "Small Giga",
  58631. height: math.unit(100, "km")
  58632. },
  58633. {
  58634. name: "Giga",
  58635. height: math.unit(1000, "km"),
  58636. default: true
  58637. },
  58638. {
  58639. name: "Continental",
  58640. height: math.unit(5000, "km")
  58641. },
  58642. {
  58643. name: "Terra",
  58644. height: math.unit(20000, "km")
  58645. },
  58646. {
  58647. name: "Solar",
  58648. height: math.unit(2e6, "km")
  58649. },
  58650. {
  58651. name: "Galactic",
  58652. height: math.unit(528502, "lightyears")
  58653. },
  58654. {
  58655. name: "Universal",
  58656. height: math.unit(20, "universes")
  58657. },
  58658. ]
  58659. ))
  58660. characterMakers.push(() => makeCharacter(
  58661. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  58662. {
  58663. front: {
  58664. height: math.unit(2, "meters"),
  58665. weight: math.unit(140, "kg"),
  58666. name: "Front",
  58667. image: {
  58668. source: "./media/characters/caleb/front.svg",
  58669. extra: 873/817,
  58670. bottom: 47/920
  58671. }
  58672. },
  58673. back: {
  58674. height: math.unit(2, "meters"),
  58675. weight: math.unit(140, "kg"),
  58676. name: "Back",
  58677. image: {
  58678. source: "./media/characters/caleb/back.svg",
  58679. extra: 877/828,
  58680. bottom: 24/901
  58681. }
  58682. },
  58683. snakeTail: {
  58684. height: math.unit(1.44, "feet"),
  58685. name: "Snake Tail",
  58686. image: {
  58687. source: "./media/characters/caleb/snake-tail.svg"
  58688. }
  58689. },
  58690. dick: {
  58691. height: math.unit(2.6, "feet"),
  58692. name: "Dick",
  58693. image: {
  58694. source: "./media/characters/caleb/dick.svg"
  58695. }
  58696. },
  58697. },
  58698. [
  58699. {
  58700. name: "Incognito",
  58701. height: math.unit(3, "meters")
  58702. },
  58703. {
  58704. name: "Home Size",
  58705. height: math.unit(200, "meters"),
  58706. default: true
  58707. },
  58708. {
  58709. name: "Macro",
  58710. height: math.unit(500, "meters")
  58711. },
  58712. {
  58713. name: "Big Macro",
  58714. height: math.unit(5, "km")
  58715. },
  58716. {
  58717. name: "Giga",
  58718. height: math.unit(250, "km")
  58719. },
  58720. {
  58721. name: "Giga+",
  58722. height: math.unit(5000, "km")
  58723. },
  58724. {
  58725. name: "Small Terra",
  58726. height: math.unit(35e3, "km")
  58727. },
  58728. {
  58729. name: "Terra",
  58730. height: math.unit(2e6, "km")
  58731. },
  58732. {
  58733. name: "Terra+",
  58734. height: math.unit(1.5e6, "km")
  58735. },
  58736. ]
  58737. ))
  58738. characterMakers.push(() => makeCharacter(
  58739. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  58740. {
  58741. front: {
  58742. height: math.unit(2, "meters"),
  58743. weight: math.unit(120, "kg"),
  58744. name: "Front",
  58745. image: {
  58746. source: "./media/characters/gilirian/front.svg",
  58747. extra: 805/737,
  58748. bottom: 13/818
  58749. }
  58750. },
  58751. side: {
  58752. height: math.unit(2, "meters"),
  58753. weight: math.unit(120, "kg"),
  58754. name: "Side",
  58755. image: {
  58756. source: "./media/characters/gilirian/side.svg",
  58757. extra: 810/746,
  58758. bottom: 6/816
  58759. }
  58760. },
  58761. back: {
  58762. height: math.unit(2, "meters"),
  58763. weight: math.unit(120, "kg"),
  58764. name: "Back",
  58765. image: {
  58766. source: "./media/characters/gilirian/back.svg",
  58767. extra: 815/745,
  58768. bottom: 15/830
  58769. }
  58770. },
  58771. frontNsfw: {
  58772. height: math.unit(2, "meters"),
  58773. weight: math.unit(120, "kg"),
  58774. name: "Front (NSFW)",
  58775. image: {
  58776. source: "./media/characters/gilirian/front-nsfw.svg",
  58777. extra: 805/737,
  58778. bottom: 13/818
  58779. }
  58780. },
  58781. sideNsfw: {
  58782. height: math.unit(2, "meters"),
  58783. weight: math.unit(120, "kg"),
  58784. name: "Side (NSFW)",
  58785. image: {
  58786. source: "./media/characters/gilirian/side-nsfw.svg",
  58787. extra: 810/746,
  58788. bottom: 6/816
  58789. }
  58790. },
  58791. },
  58792. [
  58793. {
  58794. name: "Incognito",
  58795. height: math.unit(2, "meters"),
  58796. default: true
  58797. },
  58798. {
  58799. name: "Macro",
  58800. height: math.unit(250, "meters")
  58801. },
  58802. {
  58803. name: "Big Macro",
  58804. height: math.unit(1500, "meters")
  58805. },
  58806. {
  58807. name: "Mega",
  58808. height: math.unit(40, "km")
  58809. },
  58810. {
  58811. name: "Giga",
  58812. height: math.unit(300, "km")
  58813. },
  58814. {
  58815. name: "Extra Giga",
  58816. height: math.unit(5000, "km")
  58817. },
  58818. {
  58819. name: "Small Terra",
  58820. height: math.unit(10e3, "km")
  58821. },
  58822. {
  58823. name: "Terra",
  58824. height: math.unit(3e5, "km")
  58825. },
  58826. {
  58827. name: "Galactic",
  58828. height: math.unit(369950, "lightyears")
  58829. },
  58830. ]
  58831. ))
  58832. characterMakers.push(() => makeCharacter(
  58833. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  58834. {
  58835. front: {
  58836. height: math.unit(2.5, "meters"),
  58837. weight: math.unit(230, "lb"),
  58838. name: "Front",
  58839. image: {
  58840. source: "./media/characters/tarken/front.svg",
  58841. extra: 764/720,
  58842. bottom: 49/813
  58843. }
  58844. },
  58845. back: {
  58846. height: math.unit(2.5, "meters"),
  58847. weight: math.unit(230, "lb"),
  58848. name: "Back",
  58849. image: {
  58850. source: "./media/characters/tarken/back.svg",
  58851. extra: 756/720,
  58852. bottom: 35/791
  58853. }
  58854. },
  58855. frontNsfw: {
  58856. height: math.unit(2.5, "meters"),
  58857. weight: math.unit(230, "lb"),
  58858. name: "Front (NSFW)",
  58859. image: {
  58860. source: "./media/characters/tarken/front-nsfw.svg",
  58861. extra: 764/720,
  58862. bottom: 49/813
  58863. }
  58864. },
  58865. backNsfw: {
  58866. height: math.unit(2.5, "meters"),
  58867. weight: math.unit(230, "lb"),
  58868. name: "Back (NSFW)",
  58869. image: {
  58870. source: "./media/characters/tarken/back-nsfw.svg",
  58871. extra: 756/720,
  58872. bottom: 35/791
  58873. }
  58874. },
  58875. head: {
  58876. height: math.unit(2.22, "feet"),
  58877. name: "Head",
  58878. image: {
  58879. source: "./media/characters/tarken/head.svg"
  58880. }
  58881. },
  58882. tail: {
  58883. height: math.unit(5.25, "feet"),
  58884. name: "Tail",
  58885. image: {
  58886. source: "./media/characters/tarken/tail.svg"
  58887. }
  58888. },
  58889. dick: {
  58890. height: math.unit(1.95, "feet"),
  58891. name: "Dick",
  58892. image: {
  58893. source: "./media/characters/tarken/dick.svg"
  58894. }
  58895. },
  58896. hand: {
  58897. height: math.unit(1.78, "feet"),
  58898. name: "Hand",
  58899. image: {
  58900. source: "./media/characters/tarken/hand.svg"
  58901. }
  58902. },
  58903. beam: {
  58904. height: math.unit(1.5, "feet"),
  58905. name: "Beam",
  58906. image: {
  58907. source: "./media/characters/tarken/beam.svg"
  58908. }
  58909. },
  58910. },
  58911. [
  58912. {
  58913. name: "Original Size",
  58914. height: math.unit(2.5, "meters")
  58915. },
  58916. {
  58917. name: "Macro",
  58918. height: math.unit(150, "meters"),
  58919. default: true
  58920. },
  58921. {
  58922. name: "Macro+",
  58923. height: math.unit(300, "meters")
  58924. },
  58925. {
  58926. name: "Mega",
  58927. height: math.unit(2, "km")
  58928. },
  58929. {
  58930. name: "Mega+",
  58931. height: math.unit(35, "km")
  58932. },
  58933.  {
  58934. name: "Mega++",
  58935. height: math.unit(60, "km")
  58936. },
  58937. {
  58938. name: "Giga",
  58939. height: math.unit(200, "km")
  58940. },
  58941. {
  58942. name: "Giga+",
  58943. height: math.unit(2500, "km")
  58944. },
  58945. {
  58946. name: "Giga++",
  58947. height: math.unit(6600, "km")
  58948. },
  58949. {
  58950. name: "Terra",
  58951. height: math.unit(20000, "km")
  58952. },
  58953. {
  58954. name: "Terra+",
  58955. height: math.unit(300000, "km")
  58956. },
  58957. ]
  58958. ))
  58959. characterMakers.push(() => makeCharacter(
  58960. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  58961. {
  58962. magpie_dressed: {
  58963. height: math.unit(1.7, "meters"),
  58964. weight: math.unit(70, "kg"),
  58965. name: "Dressed",
  58966. image: {
  58967. source: "./media/characters/otreus/magpie-dressed.svg",
  58968. extra: 691/672,
  58969. bottom: 116/807
  58970. },
  58971. form: "magpie",
  58972. default: true
  58973. },
  58974. magpie_nude: {
  58975. height: math.unit(1.7, "meters"),
  58976. weight: math.unit(70, "kg"),
  58977. name: "Nude",
  58978. image: {
  58979. source: "./media/characters/otreus/magpie-nude.svg",
  58980. extra: 691/672,
  58981. bottom: 116/807
  58982. },
  58983. form: "magpie",
  58984. },
  58985. magpie_dressedLewd: {
  58986. height: math.unit(1.7, "meters"),
  58987. weight: math.unit(70, "kg"),
  58988. name: "Dressed (Lewd)",
  58989. image: {
  58990. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  58991. extra: 691/672,
  58992. bottom: 116/807
  58993. },
  58994. form: "magpie",
  58995. },
  58996. magpie_nudeLewd: {
  58997. height: math.unit(1.7, "meters"),
  58998. weight: math.unit(70, "kg"),
  58999. name: "Nude (Lewd)",
  59000. image: {
  59001. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  59002. extra: 691/672,
  59003. bottom: 116/807
  59004. },
  59005. form: "magpie",
  59006. },
  59007. magpie_leftFoot: {
  59008. height: math.unit(1.58, "feet"),
  59009. name: "Left Foot",
  59010. image: {
  59011. source: "./media/characters/otreus/magpie-left-foot.svg"
  59012. },
  59013. form: "magpie",
  59014. },
  59015. magpie_rightFoot: {
  59016. height: math.unit(1.58, "feet"),
  59017. name: "Right Foot",
  59018. image: {
  59019. source: "./media/characters/otreus/magpie-right-foot.svg"
  59020. },
  59021. form: "magpie",
  59022. },
  59023. magpie_wingspan: {
  59024. height: math.unit(2, "meters"),
  59025. weight: math.unit(70, "kg"),
  59026. name: "Wingspan",
  59027. image: {
  59028. source: "./media/characters/otreus/magpie-wingspan.svg"
  59029. },
  59030. extraAttributes: {
  59031. "wingspan": {
  59032. name: "Wingspan",
  59033. power: 1,
  59034. type: "length",
  59035. base: math.unit(3.35, "meters")
  59036. },
  59037. },
  59038. form: "magpie",
  59039. },
  59040. hippogriff_dressed: {
  59041. height: math.unit(1.7, "meters"),
  59042. weight: math.unit(70, "kg"),
  59043. name: "Dressed",
  59044. image: {
  59045. source: "./media/characters/otreus/hippogriff-dressed.svg",
  59046. extra: 710/689,
  59047. bottom: 67/777
  59048. },
  59049. form: "hippogriff",
  59050. default: true
  59051. },
  59052. hippogriff_nude: {
  59053. height: math.unit(1.7, "meters"),
  59054. weight: math.unit(70, "kg"),
  59055. name: "Nude",
  59056. image: {
  59057. source: "./media/characters/otreus/hippogriff-nude.svg",
  59058. extra: 710/689,
  59059. bottom: 67/777
  59060. },
  59061. form: "hippogriff",
  59062. },
  59063. hippogriff_dressedLewd: {
  59064. height: math.unit(1.7, "meters"),
  59065. weight: math.unit(70, "kg"),
  59066. name: "Dressed (Lewd)",
  59067. image: {
  59068. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  59069. extra: 710/689,
  59070. bottom: 67/777
  59071. },
  59072. form: "hippogriff",
  59073. },
  59074. hippogriff_nudeLewd: {
  59075. height: math.unit(1.7, "meters"),
  59076. weight: math.unit(70, "kg"),
  59077. name: "Nude (Lewd)",
  59078. image: {
  59079. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  59080. extra: 710/689,
  59081. bottom: 67/777
  59082. },
  59083. form: "hippogriff",
  59084. },
  59085. },
  59086. [
  59087. {
  59088. name: "Original Size",
  59089. height: math.unit(1.7, "meters"),
  59090. allForms: true
  59091. },
  59092. {
  59093. name: "Incognito Size",
  59094. height: math.unit(2, "meters"),
  59095. allForms: true
  59096. },
  59097. {
  59098. name: "Mega",
  59099. height: math.unit(2, "km"),
  59100. allForms: true
  59101. },
  59102. {
  59103. name: "Mega+",
  59104. height: math.unit(40, "km"),
  59105. allForms: true
  59106. },
  59107. {
  59108. name: "Giga",
  59109. height: math.unit(250, "km"),
  59110. allForms: true
  59111. },
  59112. {
  59113. name: "Giga+",
  59114. height: math.unit(3000, "km"),
  59115. allForms: true
  59116. },
  59117. {
  59118. name: "Terra",
  59119. height: math.unit(20000, "km"),
  59120. allForms: true
  59121. },
  59122. {
  59123. name: "Solar (Home Size)",
  59124. height: math.unit(3e6, "km"),
  59125. allForms: true,
  59126. default: true
  59127. },
  59128. ],
  59129. {
  59130. "magpie": {
  59131. name: "Magpie",
  59132. default: true
  59133. },
  59134. "hippogriff": {
  59135. name: "Hippogriff",
  59136. },
  59137. }
  59138. ))
  59139. characterMakers.push(() => makeCharacter(
  59140. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  59141. {
  59142. frontDressed: {
  59143. height: math.unit(1.8, "meters"),
  59144. weight: math.unit(90, "kg"),
  59145. name: "Front (Dressed)",
  59146. image: {
  59147. source: "./media/characters/thalia/front-dressed.svg",
  59148. extra: 478/402,
  59149. bottom: 55/533
  59150. }
  59151. },
  59152. backDressed: {
  59153. height: math.unit(1.8, "meters"),
  59154. weight: math.unit(90, "kg"),
  59155. name: "Back (Dressed)",
  59156. image: {
  59157. source: "./media/characters/thalia/back-dressed.svg",
  59158. extra: 500/424,
  59159. bottom: 15/515
  59160. }
  59161. },
  59162. frontNude: {
  59163. height: math.unit(1.8, "meters"),
  59164. weight: math.unit(90, "kg"),
  59165. name: "Front (Nude)",
  59166. image: {
  59167. source: "./media/characters/thalia/front-nude.svg",
  59168. extra: 478/402,
  59169. bottom: 55/533
  59170. }
  59171. },
  59172. backNude: {
  59173. height: math.unit(1.8, "meters"),
  59174. weight: math.unit(90, "kg"),
  59175. name: "Back (Nude)",
  59176. image: {
  59177. source: "./media/characters/thalia/back-nude.svg",
  59178. extra: 500/424,
  59179. bottom: 15/515
  59180. }
  59181. },
  59182. },
  59183. [
  59184. {
  59185. name: "Incognito",
  59186. height: math.unit(3, "meters")
  59187. },
  59188. {
  59189. name: "Macro",
  59190. height: math.unit(500, "meters")
  59191. },
  59192. {
  59193. name: "Mega",
  59194. height: math.unit(5, "km")
  59195. },
  59196. {
  59197. name: "Mega+",
  59198. height: math.unit(30, "km")
  59199. },
  59200. {
  59201. name: "Giga",
  59202. height: math.unit(350, "km")
  59203. },
  59204. {
  59205. name: "Giga+",
  59206. height: math.unit(4000, "km")
  59207. },
  59208. {
  59209. name: "Terra",
  59210. height: math.unit(35000, "km")
  59211. },
  59212. {
  59213. name: "Original Size",
  59214. height: math.unit(130000, "km")
  59215. },
  59216. {
  59217. name: "Solar (Home Size)",
  59218. height: math.unit(4e6, "km"),
  59219. default: true
  59220. },
  59221. ]
  59222. ))
  59223. characterMakers.push(() => makeCharacter(
  59224. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  59225. {
  59226. front: {
  59227. height: math.unit(1.8, "meters"),
  59228. weight: math.unit(95, "kg"),
  59229. name: "Front",
  59230. image: {
  59231. source: "./media/characters/shango/front.svg",
  59232. extra: 1925/1774,
  59233. bottom: 67/1992
  59234. }
  59235. },
  59236. back: {
  59237. height: math.unit(1.8, "meters"),
  59238. weight: math.unit(95, "kg"),
  59239. name: "Back",
  59240. image: {
  59241. source: "./media/characters/shango/back.svg",
  59242. extra: 1915/1766,
  59243. bottom: 52/1967
  59244. }
  59245. },
  59246. frontLewd: {
  59247. height: math.unit(1.8, "meters"),
  59248. weight: math.unit(95, "kg"),
  59249. name: "Front (Lewd)",
  59250. image: {
  59251. source: "./media/characters/shango/front-lewd.svg",
  59252. extra: 1925/1774,
  59253. bottom: 67/1992
  59254. }
  59255. },
  59256. backLewd: {
  59257. height: math.unit(1.8, "meters"),
  59258. weight: math.unit(95, "kg"),
  59259. name: "Back (Lewd)",
  59260. image: {
  59261. source: "./media/characters/shango/back-lewd.svg",
  59262. extra: 1915/1766,
  59263. bottom: 52/1967
  59264. }
  59265. },
  59266. maw: {
  59267. height: math.unit(1.64, "feet"),
  59268. name: "Maw",
  59269. image: {
  59270. source: "./media/characters/shango/maw.svg"
  59271. }
  59272. },
  59273. dick: {
  59274. height: math.unit(2.14, "feet"),
  59275. name: "Dick",
  59276. image: {
  59277. source: "./media/characters/shango/dick.svg"
  59278. }
  59279. },
  59280. },
  59281. [
  59282. {
  59283. name: "Incognito",
  59284. height: math.unit(1.8, "meters")
  59285. },
  59286. {
  59287. name: "Home Size",
  59288. height: math.unit(60, "meters"),
  59289. default: true
  59290. },
  59291. {
  59292. name: "Macro",
  59293. height: math.unit(450, "meters")
  59294. },
  59295. {
  59296. name: "Mega",
  59297. height: math.unit(6, "km")
  59298. },
  59299. {
  59300. name: "Mega+",
  59301. height: math.unit(35, "km")
  59302. },
  59303. {
  59304. name: "Giga",
  59305. height: math.unit(500, "km")
  59306. },
  59307. {
  59308. name: "Giga+",
  59309. height: math.unit(5000, "km")
  59310. },
  59311. {
  59312. name: "Terra",
  59313. height: math.unit(60000, "km")
  59314. },
  59315. {
  59316. name: "Terra+",
  59317. height: math.unit(400000, "km")
  59318. },
  59319. ]
  59320. ))
  59321. characterMakers.push(() => makeCharacter(
  59322. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  59323. {
  59324. front: {
  59325. height: math.unit(2, "meters"),
  59326. weight: math.unit(95, "kg"),
  59327. name: "Front",
  59328. image: {
  59329. source: "./media/characters/osiris-gryphon/front.svg",
  59330. extra: 1508/1313,
  59331. bottom: 87/1595
  59332. }
  59333. },
  59334. back: {
  59335. height: math.unit(2, "meters"),
  59336. weight: math.unit(95, "kg"),
  59337. name: "Back",
  59338. image: {
  59339. source: "./media/characters/osiris-gryphon/back.svg",
  59340. extra: 1436/1309,
  59341. bottom: 64/1500
  59342. }
  59343. },
  59344. frontLewd: {
  59345. height: math.unit(2, "meters"),
  59346. weight: math.unit(95, "kg"),
  59347. name: "Front-lewd",
  59348. image: {
  59349. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  59350. extra: 1508/1313,
  59351. bottom: 87/1595
  59352. }
  59353. },
  59354. wing: {
  59355. height: math.unit(6.3333, "feet"),
  59356. name: "Wing",
  59357. image: {
  59358. source: "./media/characters/osiris-gryphon/wing.svg"
  59359. }
  59360. },
  59361. },
  59362. [
  59363. {
  59364. name: "Incognito",
  59365. height: math.unit(2, "meters")
  59366. },
  59367. {
  59368. name: "Home Size",
  59369. height: math.unit(30, "meters"),
  59370. default: true
  59371. },
  59372. {
  59373. name: "Macro",
  59374. height: math.unit(100, "meters")
  59375. },
  59376. {
  59377. name: "Macro+",
  59378. height: math.unit(350, "meters")
  59379. },
  59380. {
  59381. name: "Mega",
  59382. height: math.unit(40, "km")
  59383. },
  59384. {
  59385. name: "Giga",
  59386. height: math.unit(300, "km")
  59387. },
  59388. {
  59389. name: "Giga+",
  59390. height: math.unit(2000, "km")
  59391. },
  59392. {
  59393. name: "Terra",
  59394. height: math.unit(30000, "km")
  59395. },
  59396. ]
  59397. ))
  59398. characterMakers.push(() => makeCharacter(
  59399. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  59400. {
  59401. front: {
  59402. height: math.unit(2.5, "meters"),
  59403. weight: math.unit(200, "kg"),
  59404. name: "Front",
  59405. image: {
  59406. source: "./media/characters/atlas-dragon/front.svg",
  59407. extra: 745/462,
  59408. bottom: 36/781
  59409. }
  59410. },
  59411. back: {
  59412. height: math.unit(2.5, "meters"),
  59413. weight: math.unit(200, "kg"),
  59414. name: "Back",
  59415. image: {
  59416. source: "./media/characters/atlas-dragon/back.svg",
  59417. extra: 848/822,
  59418. bottom: 57/905
  59419. }
  59420. },
  59421. frontLewd: {
  59422. height: math.unit(2.5, "meters"),
  59423. weight: math.unit(200, "kg"),
  59424. name: "Front (Lewd)",
  59425. image: {
  59426. source: "./media/characters/atlas-dragon/front-lewd.svg",
  59427. extra: 745/462,
  59428. bottom: 36/781
  59429. }
  59430. },
  59431. backLewd: {
  59432. height: math.unit(2.5, "meters"),
  59433. weight: math.unit(200, "kg"),
  59434. name: "Back (Lewd)",
  59435. image: {
  59436. source: "./media/characters/atlas-dragon/back-lewd.svg",
  59437. extra: 848/822,
  59438. bottom: 57/905
  59439. }
  59440. },
  59441. },
  59442. [
  59443. {
  59444. name: "Incognito",
  59445. height: math.unit(2.5, "meters")
  59446. },
  59447. {
  59448. name: "Small Macro",
  59449. height: math.unit(50, "meters")
  59450. },
  59451. {
  59452. name: "Macro",
  59453. height: math.unit(350, "meters")
  59454. },
  59455. {
  59456. name: "Mega",
  59457. height: math.unit(5.5, "kilometers")
  59458. },
  59459. {
  59460. name: "Mega+",
  59461. height: math.unit(50, "km")
  59462. },
  59463. {
  59464. name: "Giga",
  59465. height: math.unit(350, "km")
  59466. },
  59467. {
  59468. name: "Giga+",
  59469. height: math.unit(2000, "km")
  59470. },
  59471. {
  59472. name: "Giga++",
  59473. height: math.unit(6500, "km")
  59474. },
  59475. {
  59476. name: "Terra",
  59477. height: math.unit(30000, "km")
  59478. },
  59479. {
  59480. name: "Terra+",
  59481. height: math.unit(250000, "km")
  59482. },
  59483. {
  59484. name: "True Size",
  59485. height: math.unit(100, "multiverses"),
  59486. default: true
  59487. },
  59488. ]
  59489. ))
  59490. characterMakers.push(() => makeCharacter(
  59491. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  59492. {
  59493. front: {
  59494. height: math.unit(1.8, "m"),
  59495. weight: math.unit(120, "kg"),
  59496. name: "Front",
  59497. image: {
  59498. source: "./media/characters/chey/front.svg",
  59499. extra: 1359/1270,
  59500. bottom: 18/1377
  59501. }
  59502. },
  59503. arm: {
  59504. height: math.unit(2.05, "feet"),
  59505. name: "Arm",
  59506. image: {
  59507. source: "./media/characters/chey/arm.svg"
  59508. }
  59509. },
  59510. head: {
  59511. height: math.unit(1.89, "feet"),
  59512. name: "Head",
  59513. image: {
  59514. source: "./media/characters/chey/head.svg"
  59515. }
  59516. },
  59517. },
  59518. [
  59519. {
  59520. name: "Original Size",
  59521. height: math.unit(5, "cm")
  59522. },
  59523. {
  59524. name: "Incognito Size",
  59525. height: math.unit(2.4, "m")
  59526. },
  59527. {
  59528. name: "Home Size",
  59529. height: math.unit(200, "meters"),
  59530. default: true
  59531. },
  59532. {
  59533. name: "Mega",
  59534. height: math.unit(2, "km")
  59535. },
  59536. {
  59537. name: "Giga (Preferred Size)",
  59538. height: math.unit(2000, "km")
  59539. },
  59540. {
  59541. name: "Giga+",
  59542. height: math.unit(6000, "km")
  59543. },
  59544. {
  59545. name: "Terra",
  59546. height: math.unit(17000, "km")
  59547. },
  59548. {
  59549. name: "Terra+",
  59550. height: math.unit(75000, "km")
  59551. },
  59552. {
  59553. name: "Terra++",
  59554. height: math.unit(225000, "km")
  59555. },
  59556. ]
  59557. ))
  59558. characterMakers.push(() => makeCharacter(
  59559. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  59560. {
  59561. side: {
  59562. height: math.unit(7.8, "meters"),
  59563. name: "Side",
  59564. image: {
  59565. source: "./media/characters/ragnarok/side.svg",
  59566. extra: 725/621,
  59567. bottom: 72/797
  59568. }
  59569. },
  59570. },
  59571. [
  59572. {
  59573. name: "Normal",
  59574. height: math.unit(7.8, "meters"),
  59575. default: true
  59576. },
  59577. ]
  59578. ))
  59579. characterMakers.push(() => makeCharacter(
  59580. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  59581. {
  59582. hyena_front: {
  59583. height: math.unit(2.1, "meters"),
  59584. weight: math.unit(110, "kg"),
  59585. name: "Front",
  59586. image: {
  59587. source: "./media/characters/nima/hyena-front.svg",
  59588. extra: 1904/1796,
  59589. bottom: 67/1971
  59590. },
  59591. form: "hyena",
  59592. },
  59593. hyena_back: {
  59594. height: math.unit(2.1, "meters"),
  59595. weight: math.unit(110, "kg"),
  59596. name: "Back",
  59597. image: {
  59598. source: "./media/characters/nima/hyena-back.svg",
  59599. extra: 1964/1884,
  59600. bottom: 35/1999
  59601. },
  59602. form: "hyena",
  59603. },
  59604. shark_front: {
  59605. height: math.unit(1.95, "meters"),
  59606. weight: math.unit(110, "kg"),
  59607. name: "Front",
  59608. image: {
  59609. source: "./media/characters/nima/shark-front.svg",
  59610. extra: 2238/2013,
  59611. bottom: 0/223
  59612. },
  59613. form: "shark",
  59614. },
  59615. paw: {
  59616. height: math.unit(1, "feet"),
  59617. name: "Paw",
  59618. image: {
  59619. source: "./media/characters/nima/paw.svg"
  59620. }
  59621. },
  59622. circlet: {
  59623. height: math.unit(0.3, "feet"),
  59624. name: "Circlet",
  59625. image: {
  59626. source: "./media/characters/nima/circlet.svg"
  59627. }
  59628. },
  59629. necklace: {
  59630. height: math.unit(1.2, "feet"),
  59631. name: "Necklace",
  59632. image: {
  59633. source: "./media/characters/nima/necklace.svg"
  59634. }
  59635. },
  59636. bracelet: {
  59637. height: math.unit(0.51, "feet"),
  59638. name: "Bracelet",
  59639. image: {
  59640. source: "./media/characters/nima/bracelet.svg"
  59641. }
  59642. },
  59643. armband: {
  59644. height: math.unit(1.3, "feet"),
  59645. name: "Armband",
  59646. image: {
  59647. source: "./media/characters/nima/armband.svg"
  59648. }
  59649. },
  59650. },
  59651. [
  59652. {
  59653. name: "Incognito",
  59654. height: math.unit(2.1, "meters"),
  59655. allForms: true
  59656. },
  59657. {
  59658. name: "Small Macro",
  59659. height: math.unit(50, "meters"),
  59660. allForms: true
  59661. },
  59662. {
  59663. name: "Macro",
  59664. height: math.unit(200, "meters"),
  59665. allForms: true
  59666. },
  59667. {
  59668. name: "Mega",
  59669. height: math.unit(2.5, "km"),
  59670. allForms: true
  59671. },
  59672. {
  59673. name: "Mega+",
  59674. height: math.unit(30, "km"),
  59675. allForms: true
  59676. },
  59677. {
  59678. name: "Giga (Home Size)",
  59679. height: math.unit(400, "km"),
  59680. allForms: true,
  59681. default: true
  59682. },
  59683. {
  59684. name: "Giga+",
  59685. height: math.unit(2500, "km"),
  59686. allForms: true
  59687. },
  59688. {
  59689. name: "Giga++",
  59690. height: math.unit(8000, "km"),
  59691. allForms: true
  59692. },
  59693. {
  59694. name: "Terra",
  59695. height: math.unit(20000, "km"),
  59696. allForms: true
  59697. },
  59698. {
  59699. name: "Terra+",
  59700. height: math.unit(70000, "km"),
  59701. allForms: true
  59702. },
  59703. {
  59704. name: "Terra++",
  59705. height: math.unit(600000, "km"),
  59706. allForms: true
  59707. },
  59708. {
  59709. name: "Galactic",
  59710. height: math.unit(40, "galaxies"),
  59711. allForms: true
  59712. },
  59713. {
  59714. name: "Universal",
  59715. height: math.unit(40, "universes"),
  59716. allForms: true
  59717. },
  59718. ],
  59719. {
  59720. "hyena": {
  59721. name: "Hyena",
  59722. default: true
  59723. },
  59724. "shark": {
  59725. name: "Shark",
  59726. },
  59727. }
  59728. ))
  59729. characterMakers.push(() => makeCharacter(
  59730. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  59731. {
  59732. anthro_front: {
  59733. height: math.unit(1.5, "meters"),
  59734. name: "Front",
  59735. image: {
  59736. source: "./media/characters/adelaide/anthro-front.svg",
  59737. extra: 860/783,
  59738. bottom: 60/920
  59739. },
  59740. form: "anthro",
  59741. default: true
  59742. },
  59743. hand: {
  59744. height: math.unit(0.65, "feet"),
  59745. name: "Hand",
  59746. image: {
  59747. source: "./media/characters/adelaide/hand.svg"
  59748. },
  59749. form: "anthro"
  59750. },
  59751. foot: {
  59752. height: math.unit(1.38 * 259 / 314, "feet"),
  59753. name: "Foot",
  59754. image: {
  59755. source: "./media/characters/adelaide/foot.svg",
  59756. extra: 259/259,
  59757. bottom: 55/314
  59758. },
  59759. form: "anthro"
  59760. },
  59761. feather: {
  59762. height: math.unit(0.85, "feet"),
  59763. name: "Feather",
  59764. image: {
  59765. source: "./media/characters/adelaide/feather.svg"
  59766. },
  59767. form: "anthro"
  59768. },
  59769. feral_side: {
  59770. height: math.unit(1, "meters"),
  59771. name: "Side",
  59772. image: {
  59773. source: "./media/characters/adelaide/feral-side.svg",
  59774. extra: 550/467,
  59775. bottom: 37/587
  59776. },
  59777. form: "feral",
  59778. default: true
  59779. },
  59780. feral_hand: {
  59781. height: math.unit(0.58, "feet"),
  59782. name: "Hand",
  59783. image: {
  59784. source: "./media/characters/adelaide/hand.svg"
  59785. },
  59786. form: "feral"
  59787. },
  59788. feral_foot: {
  59789. height: math.unit(1.2 * 259 / 314, "feet"),
  59790. name: "Foot",
  59791. image: {
  59792. source: "./media/characters/adelaide/foot.svg",
  59793. extra: 259/259,
  59794. bottom: 55/314
  59795. },
  59796. form: "feral"
  59797. },
  59798. feral_feather: {
  59799. height: math.unit(0.63, "feet"),
  59800. name: "Feather",
  59801. image: {
  59802. source: "./media/characters/adelaide/feather.svg"
  59803. },
  59804. form: "feral"
  59805. },
  59806. },
  59807. [
  59808. {
  59809. name: "Normal",
  59810. height: math.unit(1.5, "meters"),
  59811. form: "anthro",
  59812. default: true
  59813. },
  59814. {
  59815. name: "Normal",
  59816. height: math.unit(1, "meters"),
  59817. form: "feral",
  59818. default: true
  59819. },
  59820. ],
  59821. {
  59822. "anthro": {
  59823. name: "Anthro",
  59824. default: true
  59825. },
  59826. "feral": {
  59827. name: "Feral",
  59828. },
  59829. }
  59830. ))
  59831. characterMakers.push(() => makeCharacter(
  59832. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  59833. {
  59834. front: {
  59835. height: math.unit(2.5, "meters"),
  59836. name: "Front",
  59837. image: {
  59838. source: "./media/characters/goa/front.svg",
  59839. extra: 1109/1013,
  59840. bottom: 150/1259
  59841. }
  59842. },
  59843. },
  59844. [
  59845. {
  59846. name: "Normal",
  59847. height: math.unit(2.5, "meters"),
  59848. default: true
  59849. },
  59850. ]
  59851. ))
  59852. characterMakers.push(() => makeCharacter(
  59853. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  59854. {
  59855. front: {
  59856. height: math.unit(2, "meters"),
  59857. weight: math.unit(100, "kg"),
  59858. name: "Front",
  59859. image: {
  59860. source: "./media/characters/kiki-weavile/front.svg",
  59861. extra: 357/332,
  59862. bottom: 60/417
  59863. }
  59864. },
  59865. },
  59866. [
  59867. {
  59868. name: "Normal",
  59869. height: math.unit(2, "meters"),
  59870. default: true
  59871. },
  59872. ]
  59873. ))
  59874. characterMakers.push(() => makeCharacter(
  59875. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  59876. {
  59877. side: {
  59878. height: math.unit(1.6, "meters"),
  59879. name: "Side",
  59880. image: {
  59881. source: "./media/characters/liza/side.svg",
  59882. extra: 943/915,
  59883. bottom: 72/1015
  59884. }
  59885. },
  59886. },
  59887. [
  59888. {
  59889. name: "Normal",
  59890. height: math.unit(1.6, "meters"),
  59891. default: true
  59892. },
  59893. ]
  59894. ))
  59895. characterMakers.push(() => makeCharacter(
  59896. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  59897. {
  59898. side: {
  59899. height: math.unit(2.5, "meters"),
  59900. preyCapacity: math.unit(1, "people"),
  59901. name: "Side",
  59902. image: {
  59903. source: "./media/characters/persephone-sweetbreath/side.svg",
  59904. extra: 796/700,
  59905. bottom: 44/840
  59906. }
  59907. },
  59908. sideVore: {
  59909. height: math.unit(2.5, "meters"),
  59910. preyCapacity: math.unit(1, "people"),
  59911. name: "Side (Full)",
  59912. image: {
  59913. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  59914. extra: 796/700,
  59915. bottom: 44/840
  59916. }
  59917. },
  59918. },
  59919. [
  59920. {
  59921. name: "Normal",
  59922. height: math.unit(2.5, "meters"),
  59923. default: true
  59924. },
  59925. ]
  59926. ))
  59927. characterMakers.push(() => makeCharacter(
  59928. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  59929. {
  59930. front: {
  59931. height: math.unit(32, "meters"),
  59932. name: "Front",
  59933. image: {
  59934. source: "./media/characters/pierce/front.svg",
  59935. extra: 1695/1475,
  59936. bottom: 185/1880
  59937. }
  59938. },
  59939. side: {
  59940. height: math.unit(32, "meters"),
  59941. name: "Side",
  59942. image: {
  59943. source: "./media/characters/pierce/side.svg",
  59944. extra: 974/859,
  59945. bottom: 43/1017
  59946. }
  59947. },
  59948. frontWingless: {
  59949. height: math.unit(32, "meters"),
  59950. name: "Front (Wingless)",
  59951. image: {
  59952. source: "./media/characters/pierce/front-wingless.svg",
  59953. extra: 1695/1475,
  59954. bottom: 185/1880
  59955. }
  59956. },
  59957. sideWingless: {
  59958. height: math.unit(32, "meters"),
  59959. name: "Side (Wingless)",
  59960. image: {
  59961. source: "./media/characters/pierce/side-wingless.svg",
  59962. extra: 974/859,
  59963. bottom: 43/1017
  59964. }
  59965. },
  59966. maw: {
  59967. height: math.unit(19.3, "meters"),
  59968. name: "Maw",
  59969. image: {
  59970. source: "./media/characters/pierce/maw.svg"
  59971. }
  59972. },
  59973. },
  59974. [
  59975. {
  59976. name: "Small",
  59977. height: math.unit(8.5, "meters")
  59978. },
  59979. {
  59980. name: "Normal",
  59981. height: math.unit(32, "meters"),
  59982. default: true
  59983. },
  59984. ]
  59985. ))
  59986. characterMakers.push(() => makeCharacter(
  59987. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  59988. {
  59989. front: {
  59990. height: math.unit(2.3, "meters"),
  59991. weight: math.unit(165, "kg"),
  59992. name: "Front",
  59993. image: {
  59994. source: "./media/characters/shira/front.svg",
  59995. extra: 924/919,
  59996. bottom: 17/941
  59997. },
  59998. form: "cobra",
  59999. default: true
  60000. },
  60001. back: {
  60002. height: math.unit(2.3, "meters"),
  60003. weight: math.unit(165, "kg"),
  60004. name: "Back",
  60005. image: {
  60006. source: "./media/characters/shira/back.svg",
  60007. extra: 928/922,
  60008. bottom: 18/946
  60009. },
  60010. form: "cobra"
  60011. },
  60012. frontLewd: {
  60013. height: math.unit(2.3, "meters"),
  60014. weight: math.unit(165, "kg"),
  60015. name: "Front (Lewd)",
  60016. image: {
  60017. source: "./media/characters/shira/front-lewd.svg",
  60018. extra: 924/919,
  60019. bottom: 17/941
  60020. },
  60021. form: "cobra"
  60022. },
  60023. backLewd: {
  60024. height: math.unit(2.3, "meters"),
  60025. weight: math.unit(165, "kg"),
  60026. name: "Back (Lewd)",
  60027. image: {
  60028. source: "./media/characters/shira/back-lewd.svg",
  60029. extra: 928/922,
  60030. bottom: 18/946
  60031. },
  60032. form: "cobra"
  60033. },
  60034. maw: {
  60035. height: math.unit(1.14, "feet"),
  60036. name: "Maw",
  60037. image: {
  60038. source: "./media/characters/shira/maw.svg"
  60039. },
  60040. form: "cobra"
  60041. },
  60042. magma_front: {
  60043. height: math.unit(2.3, "meters"),
  60044. weight: math.unit(165, "kg"),
  60045. name: "Front",
  60046. image: {
  60047. source: "./media/characters/shira/magma-front.svg",
  60048. extra: 1870/1693,
  60049. bottom: 24/1894
  60050. },
  60051. form: "magma",
  60052. },
  60053. magma_back: {
  60054. height: math.unit(2.3, "meters"),
  60055. weight: math.unit(165, "kg"),
  60056. name: "Back",
  60057. image: {
  60058. source: "./media/characters/shira/magma-back.svg",
  60059. extra: 1918/1756,
  60060. bottom: 46/1964
  60061. },
  60062. form: "magma",
  60063. },
  60064. },
  60065. [
  60066. {
  60067. name: "Incognito",
  60068. height: math.unit(2.3, "meters"),
  60069. allForms: true
  60070. },
  60071. {
  60072. name: "Home Size",
  60073. height: math.unit(150, "meters"),
  60074. default: true,
  60075. allForms: true
  60076. },
  60077. {
  60078. name: "Macro",
  60079. height: math.unit(2, "km"),
  60080. allForms: true
  60081. },
  60082. {
  60083. name: "Mega",
  60084. height: math.unit(30, "km"),
  60085. allForms: true
  60086. },
  60087. {
  60088. name: "Giga",
  60089. height: math.unit(450, "km"),
  60090. allForms: true
  60091. },
  60092. {
  60093. name: "Giga+",
  60094. height: math.unit(3000, "km"),
  60095. allForms: true
  60096. },
  60097. {
  60098. name: "Giga++",
  60099. height: math.unit(6000, "km"),
  60100. allForms: true
  60101. },
  60102. {
  60103. name: "Terra",
  60104. height: math.unit(80000, "km"),
  60105. allForms: true
  60106. },
  60107. {
  60108. name: "Terra+",
  60109. height: math.unit(350000, "km"),
  60110. allForms: true
  60111. },
  60112. {
  60113. name: "Solar",
  60114. height: math.unit(1e6, "km"),
  60115. allForms: true
  60116. },
  60117. ],
  60118. {
  60119. "cobra": {
  60120. name: "Cobra",
  60121. default: true
  60122. },
  60123. "magma": {
  60124. name: "Magma Dragon",
  60125. },
  60126. }
  60127. ))
  60128. characterMakers.push(() => makeCharacter(
  60129. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  60130. {
  60131. front: {
  60132. height: math.unit(2, "meters"),
  60133. weight: math.unit(160, "kg"),
  60134. name: "Front",
  60135. image: {
  60136. source: "./media/characters/daxerios/front.svg",
  60137. extra: 1334/1277,
  60138. bottom: 45/1379
  60139. }
  60140. },
  60141. frontLewd: {
  60142. height: math.unit(2, "meters"),
  60143. weight: math.unit(160, "kg"),
  60144. name: "Front (Lewd)",
  60145. image: {
  60146. source: "./media/characters/daxerios/front-lewd.svg",
  60147. extra: 1334/1277,
  60148. bottom: 45/1379
  60149. }
  60150. },
  60151. dick: {
  60152. height: math.unit(2.35, "feet"),
  60153. name: "Dick",
  60154. image: {
  60155. source: "./media/characters/daxerios/dick.svg"
  60156. }
  60157. },
  60158. },
  60159. [
  60160. {
  60161. name: "\"Small\"",
  60162. height: math.unit(5, "meters")
  60163. },
  60164. {
  60165. name: "Original Size",
  60166. height: math.unit(500, "meters"),
  60167. default: true
  60168. },
  60169. {
  60170. name: "Mega",
  60171. height: math.unit(2, "km")
  60172. },
  60173. {
  60174. name: "Mega+",
  60175. height: math.unit(35, "km")
  60176. },
  60177. {
  60178. name: "Giga",
  60179. height: math.unit(250, "km")
  60180. },
  60181. {
  60182. name: "Giga+",
  60183. height: math.unit(3000, "km")
  60184. },
  60185. {
  60186. name: "Terra",
  60187. height: math.unit(25000, "km")
  60188. },
  60189. {
  60190. name: "Terra+",
  60191. height: math.unit(300000, "km")
  60192. },
  60193. {
  60194. name: "Solar",
  60195. height: math.unit(1e6, "km")
  60196. },
  60197. ]
  60198. ))
  60199. characterMakers.push(() => makeCharacter(
  60200. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  60201. {
  60202. front: {
  60203. height: math.unit(8 + 4/12, "feet"),
  60204. weight: math.unit(464, "lb"),
  60205. name: "Front",
  60206. image: {
  60207. source: "./media/characters/caveat/front.svg",
  60208. extra: 1861/1678,
  60209. bottom: 40/1901
  60210. }
  60211. },
  60212. },
  60213. [
  60214. {
  60215. name: "Normal",
  60216. height: math.unit(8 + 4/12, "feet"),
  60217. default: true
  60218. },
  60219. ]
  60220. ))
  60221. characterMakers.push(() => makeCharacter(
  60222. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  60223. {
  60224. front: {
  60225. height: math.unit(12, "feet"),
  60226. weight: math.unit(1800, "lb"),
  60227. name: "Front",
  60228. image: {
  60229. source: "./media/characters/centbair/front.svg",
  60230. extra: 781/663,
  60231. bottom: 25/806
  60232. }
  60233. },
  60234. frontNsfw: {
  60235. height: math.unit(12, "feet"),
  60236. weight: math.unit(1800, "lb"),
  60237. name: "Front (NSFW)",
  60238. image: {
  60239. source: "./media/characters/centbair/front-nsfw.svg",
  60240. extra: 781/663,
  60241. bottom: 25/806
  60242. }
  60243. },
  60244. back: {
  60245. height: math.unit(12, "feet"),
  60246. weight: math.unit(1800, "lb"),
  60247. name: "Back",
  60248. image: {
  60249. source: "./media/characters/centbair/back.svg",
  60250. extra: 808/761,
  60251. bottom: 19/827
  60252. }
  60253. },
  60254. dick: {
  60255. height: math.unit(6.5, "feet"),
  60256. name: "Dick",
  60257. image: {
  60258. source: "./media/characters/centbair/dick.svg"
  60259. }
  60260. },
  60261. slit: {
  60262. height: math.unit(3.25, "feet"),
  60263. name: "Slit",
  60264. image: {
  60265. source: "./media/characters/centbair/slit.svg"
  60266. }
  60267. },
  60268. },
  60269. [
  60270. {
  60271. name: "Normal",
  60272. height: math.unit(12, "feet"),
  60273. default: true
  60274. },
  60275. ]
  60276. ))
  60277. characterMakers.push(() => makeCharacter(
  60278. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  60279. {
  60280. front: {
  60281. height: math.unit(5 + 7/12, "feet"),
  60282. name: "Front",
  60283. image: {
  60284. source: "./media/characters/andy/front.svg",
  60285. extra: 634/588,
  60286. bottom: 36/670
  60287. },
  60288. extraAttributes: {
  60289. "pawLength": {
  60290. name: "Paw Length",
  60291. power: 1,
  60292. type: "length",
  60293. base: math.unit(1, "feet")
  60294. },
  60295. }
  60296. },
  60297. side: {
  60298. height: math.unit(5 + 7/12, "feet"),
  60299. name: "Side",
  60300. image: {
  60301. source: "./media/characters/andy/side.svg",
  60302. extra: 641/596,
  60303. bottom: 34/675
  60304. },
  60305. extraAttributes: {
  60306. "pawLength": {
  60307. name: "Paw Length",
  60308. power: 1,
  60309. type: "length",
  60310. base: math.unit(1, "feet")
  60311. },
  60312. }
  60313. },
  60314. back: {
  60315. height: math.unit(5 + 7/12, "feet"),
  60316. name: "Back",
  60317. image: {
  60318. source: "./media/characters/andy/back.svg",
  60319. extra: 618/583,
  60320. bottom: 39/657
  60321. },
  60322. extraAttributes: {
  60323. "pawLength": {
  60324. name: "Paw Length",
  60325. power: 1,
  60326. type: "length",
  60327. base: math.unit(1, "feet")
  60328. },
  60329. }
  60330. },
  60331. paw: {
  60332. height: math.unit(1.13, "feet"),
  60333. name: "Paw",
  60334. image: {
  60335. source: "./media/characters/andy/paw.svg"
  60336. }
  60337. },
  60338. },
  60339. [
  60340. {
  60341. name: "Micro",
  60342. height: math.unit(4, "inches")
  60343. },
  60344. {
  60345. name: "Normal",
  60346. height: math.unit(5 + 7/12, "feet"),
  60347. default: true
  60348. },
  60349. {
  60350. name: "Macro",
  60351. height: math.unit(390.42, "feet")
  60352. },
  60353. ]
  60354. ))
  60355. characterMakers.push(() => makeCharacter(
  60356. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  60357. {
  60358. front: {
  60359. height: math.unit(7, "feet"),
  60360. weight: math.unit(250, "lb"),
  60361. name: "Front",
  60362. image: {
  60363. source: "./media/characters/vix-titan/front.svg",
  60364. extra: 460/428,
  60365. bottom: 15/475
  60366. },
  60367. extraAttributes: {
  60368. "pawWidth": {
  60369. name: "Paw Width",
  60370. power: 1,
  60371. type: "length",
  60372. base: math.unit(0.75, "feet")
  60373. },
  60374. }
  60375. },
  60376. },
  60377. [
  60378. {
  60379. name: "Normal",
  60380. height: math.unit(7, "feet"),
  60381. default: true
  60382. },
  60383. {
  60384. name: "Giant",
  60385. height: math.unit(1500, "feet")
  60386. },
  60387. {
  60388. name: "Mega",
  60389. height: math.unit(10, "miles")
  60390. },
  60391. {
  60392. name: "Giga",
  60393. height: math.unit(150, "miles")
  60394. },
  60395. {
  60396. name: "Tera",
  60397. height: math.unit(144000, "miles")
  60398. },
  60399. ]
  60400. ))
  60401. characterMakers.push(() => makeCharacter(
  60402. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  60403. {
  60404. front: {
  60405. height: math.unit(6 + 2/12, "feet"),
  60406. name: "Front",
  60407. image: {
  60408. source: "./media/characters/reiku/front.svg",
  60409. extra: 1910/1757,
  60410. bottom: 103/2013
  60411. },
  60412. extraAttributes: {
  60413. "thighThickness": {
  60414. name: "Thigh Thickness",
  60415. power: 1,
  60416. type: "length",
  60417. base: math.unit(1.12, "feet")
  60418. },
  60419. "assThickness": {
  60420. name: "Ass Thickness",
  60421. power: 1,
  60422. type: "length",
  60423. base: math.unit(1.12*2, "feet")
  60424. },
  60425. }
  60426. },
  60427. side: {
  60428. height: math.unit(6 + 2/12, "feet"),
  60429. name: "Side",
  60430. image: {
  60431. source: "./media/characters/reiku/side.svg",
  60432. extra: 1846/1748,
  60433. bottom: 99/1945
  60434. },
  60435. extraAttributes: {
  60436. "thighThickness": {
  60437. name: "Thigh Thickness",
  60438. power: 1,
  60439. type: "length",
  60440. base: math.unit(1.12, "feet")
  60441. },
  60442. "assThickness": {
  60443. name: "Ass Thickness",
  60444. power: 1,
  60445. type: "length",
  60446. base: math.unit(1.12*2, "feet")
  60447. },
  60448. }
  60449. },
  60450. back: {
  60451. height: math.unit(6 + 2/12, "feet"),
  60452. name: "Back",
  60453. image: {
  60454. source: "./media/characters/reiku/back.svg",
  60455. extra: 1941/1786,
  60456. bottom: 34/1975
  60457. },
  60458. extraAttributes: {
  60459. "thighThickness": {
  60460. name: "Thigh Thickness",
  60461. power: 1,
  60462. type: "length",
  60463. base: math.unit(1.12, "feet")
  60464. },
  60465. "assThickness": {
  60466. name: "Ass Thickness",
  60467. power: 1,
  60468. type: "length",
  60469. base: math.unit(1.12*2, "feet")
  60470. },
  60471. }
  60472. },
  60473. head: {
  60474. height: math.unit(1.8, "feet"),
  60475. name: "Head",
  60476. image: {
  60477. source: "./media/characters/reiku/head.svg"
  60478. }
  60479. },
  60480. tailTop: {
  60481. height: math.unit(8.4, "feet"),
  60482. name: "Tail (Top)",
  60483. image: {
  60484. source: "./media/characters/reiku/tail-top.svg"
  60485. }
  60486. },
  60487. tailBottom: {
  60488. height: math.unit(8.4, "feet"),
  60489. name: "Tail (Bottom)",
  60490. image: {
  60491. source: "./media/characters/reiku/tail-bottom.svg"
  60492. }
  60493. },
  60494. foot: {
  60495. height: math.unit(2.6, "feet"),
  60496. name: "Foot",
  60497. image: {
  60498. source: "./media/characters/reiku/foot.svg"
  60499. }
  60500. },
  60501. footCurled: {
  60502. height: math.unit(2.3, "feet"),
  60503. name: "Foot (Curled)",
  60504. image: {
  60505. source: "./media/characters/reiku/foot-curled.svg"
  60506. }
  60507. },
  60508. footSide: {
  60509. height: math.unit(1.26, "feet"),
  60510. name: "Foot (Side)",
  60511. image: {
  60512. source: "./media/characters/reiku/foot-side.svg"
  60513. }
  60514. },
  60515. },
  60516. [
  60517. {
  60518. name: "Normal",
  60519. height: math.unit(6 + 2/12, "feet"),
  60520. default: true
  60521. },
  60522. ]
  60523. ))
  60524. characterMakers.push(() => makeCharacter(
  60525. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  60526. {
  60527. front: {
  60528. height: math.unit(7, "feet"),
  60529. weight: math.unit(500, "kg"),
  60530. name: "Front",
  60531. image: {
  60532. source: "./media/characters/cialda/front.svg",
  60533. extra: 912/745,
  60534. bottom: 55/967
  60535. }
  60536. },
  60537. },
  60538. [
  60539. {
  60540. name: "Normal",
  60541. height: math.unit(7, "feet"),
  60542. default: true
  60543. },
  60544. ]
  60545. ))
  60546. characterMakers.push(() => makeCharacter(
  60547. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  60548. {
  60549. side: {
  60550. height: math.unit(6, "feet"),
  60551. weight: math.unit(600, "lb"),
  60552. preyCapacity: math.unit(25, "liters"),
  60553. name: "Side",
  60554. image: {
  60555. source: "./media/characters/darkkin/side.svg",
  60556. extra: 1597/1447,
  60557. bottom: 101/1698
  60558. }
  60559. },
  60560. },
  60561. [
  60562. {
  60563. name: "Canon Height",
  60564. height: math.unit(568, "feet"),
  60565. default: true
  60566. },
  60567. ]
  60568. ))
  60569. characterMakers.push(() => makeCharacter(
  60570. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  60571. {
  60572. front: {
  60573. height: math.unit(6, "feet"),
  60574. weight: math.unit(1500, "lb"),
  60575. preyCapacity: math.unit(3, "people"),
  60576. name: "Front",
  60577. image: {
  60578. source: "./media/characters/livnia/front.svg",
  60579. extra: 934/932,
  60580. bottom: 83/1017
  60581. }
  60582. },
  60583. back: {
  60584. height: math.unit(6, "feet"),
  60585. weight: math.unit(1500, "lb"),
  60586. preyCapacity: math.unit(3, "people"),
  60587. name: "Back",
  60588. image: {
  60589. source: "./media/characters/livnia/back.svg",
  60590. extra: 916/915,
  60591. bottom: 58/974
  60592. }
  60593. },
  60594. head: {
  60595. height: math.unit(1.53, "feet"),
  60596. name: "Head",
  60597. image: {
  60598. source: "./media/characters/livnia/head.svg"
  60599. }
  60600. },
  60601. maw: {
  60602. height: math.unit(0.78, "feet"),
  60603. name: "Maw",
  60604. image: {
  60605. source: "./media/characters/livnia/maw.svg"
  60606. }
  60607. },
  60608. genitals: {
  60609. height: math.unit(0.35, "feet"),
  60610. name: "Genitals",
  60611. image: {
  60612. source: "./media/characters/livnia/genitals.svg"
  60613. }
  60614. },
  60615. },
  60616. [
  60617. {
  60618. name: "Normal",
  60619. height: math.unit(1000, "feet"),
  60620. default: true
  60621. },
  60622. ]
  60623. ))
  60624. characterMakers.push(() => makeCharacter(
  60625. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  60626. {
  60627. front: {
  60628. height: math.unit(4, "feet"),
  60629. weight: math.unit(73, "lb"),
  60630. name: "Front",
  60631. image: {
  60632. source: "./media/characters/hayaku/front.svg",
  60633. extra: 1011/888,
  60634. bottom: 33/1044
  60635. }
  60636. },
  60637. back: {
  60638. height: math.unit(4, "feet"),
  60639. weight: math.unit(73, "lb"),
  60640. name: "Back",
  60641. image: {
  60642. source: "./media/characters/hayaku/back.svg",
  60643. extra: 1040/930,
  60644. bottom: 20/1060
  60645. }
  60646. },
  60647. },
  60648. [
  60649. {
  60650. name: "Normal",
  60651. height: math.unit(4, "feet"),
  60652. default: true
  60653. },
  60654. ]
  60655. ))
  60656. characterMakers.push(() => makeCharacter(
  60657. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  60658. {
  60659. front: {
  60660. height: math.unit(6 + 7/12, "feet"),
  60661. weight: math.unit(300, "lb"),
  60662. name: "Front",
  60663. image: {
  60664. source: "./media/characters/athena-bryzant/front.svg",
  60665. extra: 870/835,
  60666. bottom: 33/903
  60667. }
  60668. },
  60669. back: {
  60670. height: math.unit(6 + 7/12, "feet"),
  60671. weight: math.unit(300, "lb"),
  60672. name: "Back",
  60673. image: {
  60674. source: "./media/characters/athena-bryzant/back.svg",
  60675. extra: 858/823,
  60676. bottom: 30/888
  60677. }
  60678. },
  60679. head: {
  60680. height: math.unit(2.38, "feet"),
  60681. name: "Head",
  60682. image: {
  60683. source: "./media/characters/athena-bryzant/head.svg"
  60684. }
  60685. },
  60686. wings: {
  60687. height: math.unit(2.85, "feet"),
  60688. name: "Wings",
  60689. image: {
  60690. source: "./media/characters/athena-bryzant/wings.svg"
  60691. }
  60692. },
  60693. },
  60694. [
  60695. {
  60696. name: "Normal",
  60697. height: math.unit(6 + 7/12, "feet"),
  60698. default: true
  60699. },
  60700. {
  60701. name: "Big",
  60702. height: math.unit(8, "feet")
  60703. },
  60704. {
  60705. name: "Very Big",
  60706. height: math.unit(11, "feet")
  60707. },
  60708. ]
  60709. ))
  60710. characterMakers.push(() => makeCharacter(
  60711. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  60712. {
  60713. side: {
  60714. height: math.unit(3, "meters"),
  60715. weight: math.unit(7500, "kg"),
  60716. preyCapacity: math.unit(1e12, "people"),
  60717. name: "Side",
  60718. image: {
  60719. source: "./media/characters/zel-kesh/side.svg",
  60720. extra: 910/407,
  60721. bottom: 147/1057
  60722. }
  60723. },
  60724. },
  60725. [
  60726. {
  60727. name: "Normal",
  60728. height: math.unit(3, "meters"),
  60729. default: true
  60730. },
  60731. ]
  60732. ))
  60733. characterMakers.push(() => makeCharacter(
  60734. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  60735. {
  60736. front: {
  60737. height: math.unit(2, "meters"),
  60738. weight: math.unit(95, "kg"),
  60739. name: "Front",
  60740. image: {
  60741. source: "./media/characters/kane-fox/front.svg",
  60742. extra: 945/888,
  60743. bottom: 27/972
  60744. }
  60745. },
  60746. back: {
  60747. height: math.unit(2, "meters"),
  60748. weight: math.unit(95, "kg"),
  60749. name: "Back",
  60750. image: {
  60751. source: "./media/characters/kane-fox/back.svg",
  60752. extra: 959/914,
  60753. bottom: 15/974
  60754. }
  60755. },
  60756. frontLewd: {
  60757. height: math.unit(2, "meters"),
  60758. weight: math.unit(95, "kg"),
  60759. name: "Front (Lewd)",
  60760. image: {
  60761. source: "./media/characters/kane-fox/front-lewd.svg",
  60762. extra: 945/888,
  60763. bottom: 27/972
  60764. }
  60765. },
  60766. },
  60767. [
  60768. {
  60769. name: "Home Size",
  60770. height: math.unit(2, "meters"),
  60771. default: true
  60772. },
  60773. {
  60774. name: "Macro",
  60775. height: math.unit(200, "meters")
  60776. },
  60777. {
  60778. name: "Small Mega",
  60779. height: math.unit(3, "km")
  60780. },
  60781. {
  60782. name: "Mega",
  60783. height: math.unit(50, "km")
  60784. },
  60785. {
  60786. name: "Giga",
  60787. height: math.unit(200, "km")
  60788. },
  60789. {
  60790. name: "Giga+",
  60791. height: math.unit(2500, "km")
  60792. },
  60793. {
  60794. name: "Terra",
  60795. height: math.unit(70000, "km")
  60796. },
  60797. {
  60798. name: "Terra+",
  60799. height: math.unit(150000, "km")
  60800. },
  60801. {
  60802. name: "Terra++",
  60803. height: math.unit(400000, "km")
  60804. },
  60805. ]
  60806. ))
  60807. characterMakers.push(() => makeCharacter(
  60808. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  60809. {
  60810. otter_front: {
  60811. height: math.unit(1.8, "meters"),
  60812. weight: math.unit(90, "kg"),
  60813. name: "Front",
  60814. image: {
  60815. source: "./media/characters/ayranus/otter-front.svg",
  60816. extra: 468/452,
  60817. bottom: 43/511
  60818. },
  60819. form: "otter",
  60820. },
  60821. otter_frontLewd: {
  60822. height: math.unit(1.8, "meters"),
  60823. weight: math.unit(90, "kg"),
  60824. name: "Front (Lewd)",
  60825. image: {
  60826. source: "./media/characters/ayranus/otter-front-lewd.svg",
  60827. extra: 468/452,
  60828. bottom: 43/511
  60829. },
  60830. form: "otter",
  60831. },
  60832. lionbat_front: {
  60833. height: math.unit(1.8, "meters"),
  60834. weight: math.unit(90, "kg"),
  60835. name: "Front (Lewd)",
  60836. image: {
  60837. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  60838. extra: 797/740,
  60839. bottom: 78/875
  60840. },
  60841. form: "lionbat",
  60842. },
  60843. paw: {
  60844. height: math.unit(1.5, "feet"),
  60845. name: "Paw",
  60846. image: {
  60847. source: "./media/characters/ayranus/paw.svg"
  60848. },
  60849. },
  60850. },
  60851. [
  60852. {
  60853. name: "Incognito",
  60854. height: math.unit(1.8, "meters"),
  60855. allForms: true
  60856. },
  60857. {
  60858. name: "Macro",
  60859. height: math.unit(60, "meters"),
  60860. allForms: true
  60861. },
  60862. {
  60863. name: "Macro+",
  60864. height: math.unit(200, "meters"),
  60865. allForms: true
  60866. },
  60867. {
  60868. name: "Mega",
  60869. height: math.unit(35, "km"),
  60870. allForms: true
  60871. },
  60872. {
  60873. name: "Giga",
  60874. height: math.unit(220, "km"),
  60875. allForms: true
  60876. },
  60877. {
  60878. name: "Giga+",
  60879. height: math.unit(1500, "km"),
  60880. allForms: true
  60881. },
  60882. {
  60883. name: "Terra",
  60884. height: math.unit(13000, "km"),
  60885. allForms: true
  60886. },
  60887. {
  60888. name: "Terra+",
  60889. height: math.unit(500000, "km"),
  60890. allForms: true
  60891. },
  60892. {
  60893. name: "Galactic",
  60894. height: math.unit(486080, "parsecs"),
  60895. default: true,
  60896. allForms: true
  60897. },
  60898. ],
  60899. {
  60900. "otter": {
  60901. name: "Otter",
  60902. default: true
  60903. },
  60904. "lionbat": {
  60905. name: "Lionbat",
  60906. },
  60907. }
  60908. ))
  60909. characterMakers.push(() => makeCharacter(
  60910. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  60911. {
  60912. front: {
  60913. height: math.unit(7 + 4/12, "feet"),
  60914. weight: math.unit(400, "lb"),
  60915. name: "Front",
  60916. image: {
  60917. source: "./media/characters/proxy/front.svg",
  60918. extra: 1605/1542,
  60919. bottom: 55/1660
  60920. }
  60921. },
  60922. side: {
  60923. height: math.unit(7 + 4/12, "feet"),
  60924. weight: math.unit(400, "lb"),
  60925. name: "Side",
  60926. image: {
  60927. source: "./media/characters/proxy/side.svg",
  60928. extra: 794/759,
  60929. bottom: 6/800
  60930. }
  60931. },
  60932. hand: {
  60933. height: math.unit(1.54, "feet"),
  60934. name: "Hand",
  60935. image: {
  60936. source: "./media/characters/proxy/hand.svg"
  60937. }
  60938. },
  60939. paw: {
  60940. height: math.unit(1.53, "feet"),
  60941. name: "Paw",
  60942. image: {
  60943. source: "./media/characters/proxy/paw.svg"
  60944. }
  60945. },
  60946. maw: {
  60947. height: math.unit(1.9, "feet"),
  60948. name: "Maw",
  60949. image: {
  60950. source: "./media/characters/proxy/maw.svg"
  60951. }
  60952. },
  60953. },
  60954. [
  60955. {
  60956. name: "Normal",
  60957. height: math.unit(7 + 4/12, "feet"),
  60958. default: true
  60959. },
  60960. ]
  60961. ))
  60962. characterMakers.push(() => makeCharacter(
  60963. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  60964. {
  60965. front: {
  60966. height: math.unit(4, "meters"),
  60967. name: "Front",
  60968. image: {
  60969. source: "./media/characters/crocozilla/front.svg",
  60970. extra: 1790/1742,
  60971. bottom: 78/1868
  60972. }
  60973. },
  60974. },
  60975. [
  60976. {
  60977. name: "Normal",
  60978. height: math.unit(4, "meters"),
  60979. default: true
  60980. },
  60981. ]
  60982. ))
  60983. characterMakers.push(() => makeCharacter(
  60984. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  60985. {
  60986. front: {
  60987. height: math.unit(1.8, "meters"),
  60988. weight: math.unit(120, "kg"),
  60989. name: "Front",
  60990. image: {
  60991. source: "./media/characters/kurz/front.svg",
  60992. extra: 1960/1824,
  60993. bottom: 41/2001
  60994. }
  60995. },
  60996. back: {
  60997. height: math.unit(1.8, "meters"),
  60998. weight: math.unit(120, "kg"),
  60999. name: "Back",
  61000. image: {
  61001. source: "./media/characters/kurz/back.svg",
  61002. extra: 1906/1787,
  61003. bottom: 60/1966
  61004. }
  61005. },
  61006. frontLewd: {
  61007. height: math.unit(1.8, "meters"),
  61008. weight: math.unit(120, "kg"),
  61009. name: "Front (Lewd)",
  61010. image: {
  61011. source: "./media/characters/kurz/front-lewd.svg",
  61012. extra: 1960/1824,
  61013. bottom: 41/2001
  61014. }
  61015. },
  61016. maw: {
  61017. height: math.unit(0.69, "meters"),
  61018. name: "Maw",
  61019. image: {
  61020. source: "./media/characters/kurz/maw.svg"
  61021. }
  61022. },
  61023. },
  61024. [
  61025. {
  61026. name: "Original Size",
  61027. height: math.unit(1.8, "meters")
  61028. },
  61029. {
  61030. name: "Incognito Size",
  61031. height: math.unit(2.4, "meters"),
  61032. default: true
  61033. },
  61034. {
  61035. name: "Macro",
  61036. height: math.unit(30, "meters")
  61037. },
  61038. {
  61039. name: "Macro+",
  61040. height: math.unit(250, "meters")
  61041. },
  61042. {
  61043. name: "Mega",
  61044. height: math.unit(2, "km")
  61045. },
  61046. {
  61047. name: "Mega+",
  61048. height: math.unit(35, "km")
  61049. },
  61050. {
  61051. name: "Mega++",
  61052. height: math.unit(75, "km")
  61053. },
  61054. {
  61055. name: "Giga",
  61056. height: math.unit(250, "km")
  61057. },
  61058. {
  61059. name: "Terra",
  61060. height: math.unit(15000, "km")
  61061. },
  61062. {
  61063. name: "Terra+",
  61064. height: math.unit(2250000, "km")
  61065. },
  61066. ]
  61067. ))
  61068. characterMakers.push(() => makeCharacter(
  61069. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  61070. {
  61071. front: {
  61072. height: math.unit(16 + 3/12, "feet"),
  61073. weight: math.unit(3575, "lb"),
  61074. name: "Front",
  61075. image: {
  61076. source: "./media/characters/nikita/front.svg",
  61077. extra: 1064/955,
  61078. bottom: 47/1111
  61079. }
  61080. },
  61081. },
  61082. [
  61083. {
  61084. name: "Normal",
  61085. height: math.unit(16 + 3/12, "feet"),
  61086. default: true
  61087. },
  61088. {
  61089. name: "Big",
  61090. height: math.unit(21, "feet")
  61091. },
  61092. {
  61093. name: "Biggest",
  61094. height: math.unit(50, "feet")
  61095. },
  61096. ]
  61097. ))
  61098. characterMakers.push(() => makeCharacter(
  61099. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  61100. {
  61101. front: {
  61102. height: math.unit(1.92, "m"),
  61103. weight: math.unit(76, "kg"),
  61104. name: "Front",
  61105. image: {
  61106. source: "./media/characters/kyara/front.svg",
  61107. extra: 1550/1438,
  61108. bottom: 139/1689
  61109. }
  61110. },
  61111. back: {
  61112. height: math.unit(1.92, "m"),
  61113. weight: math.unit(76, "kg"),
  61114. name: "Back",
  61115. image: {
  61116. source: "./media/characters/kyara/back.svg",
  61117. extra: 1523/1427,
  61118. bottom: 83/1606
  61119. }
  61120. },
  61121. head: {
  61122. height: math.unit(1.22, "feet"),
  61123. name: "Head",
  61124. image: {
  61125. source: "./media/characters/kyara/head.svg"
  61126. }
  61127. },
  61128. maw: {
  61129. height: math.unit(0.73, "feet"),
  61130. name: "Maw",
  61131. image: {
  61132. source: "./media/characters/kyara/maw.svg"
  61133. }
  61134. },
  61135. paws: {
  61136. height: math.unit(0.95, "feet"),
  61137. name: "Paws",
  61138. image: {
  61139. source: "./media/characters/kyara/paws.svg"
  61140. }
  61141. },
  61142. },
  61143. [
  61144. {
  61145. name: "Normal",
  61146. height: math.unit(1.92, "meters"),
  61147. default: true
  61148. },
  61149. {
  61150. name: "Mini Macro",
  61151. height: math.unit(192, "meters")
  61152. },
  61153. {
  61154. name: "Macro",
  61155. height: math.unit(480, "meters")
  61156. },
  61157. {
  61158. name: "Mega Macro",
  61159. height: math.unit(1440, "meters")
  61160. },
  61161. ]
  61162. ))
  61163. characterMakers.push(() => makeCharacter(
  61164. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  61165. {
  61166. front: {
  61167. height: math.unit(6, "feet"),
  61168. weight: math.unit(160, "lbs"),
  61169. preyCapacity: math.unit(0.05, "people"),
  61170. name: "Front",
  61171. image: {
  61172. source: "./media/characters/layla-amari/front.svg",
  61173. extra: 1922/1723,
  61174. bottom: 90/2012
  61175. }
  61176. },
  61177. back: {
  61178. height: math.unit(6, "feet"),
  61179. weight: math.unit(160, "lbs"),
  61180. preyCapacity: math.unit(0.05, "people"),
  61181. name: "Back",
  61182. image: {
  61183. source: "./media/characters/layla-amari/back.svg",
  61184. extra: 1917/1718,
  61185. bottom: 50/1967
  61186. }
  61187. },
  61188. frontDressed: {
  61189. height: math.unit(6, "feet"),
  61190. weight: math.unit(160, "lbs"),
  61191. preyCapacity: math.unit(0.05, "people"),
  61192. name: "Front (Dressed)",
  61193. image: {
  61194. source: "./media/characters/layla-amari/front-dressed.svg",
  61195. extra: 1922/1723,
  61196. bottom: 90/2012
  61197. }
  61198. },
  61199. face: {
  61200. height: math.unit(0.93, "feet"),
  61201. name: "Face",
  61202. image: {
  61203. source: "./media/characters/layla-amari/face.svg"
  61204. }
  61205. },
  61206. hand: {
  61207. height: math.unit(0.66 , "feet"),
  61208. name: "Hand",
  61209. image: {
  61210. source: "./media/characters/layla-amari/hand.svg"
  61211. }
  61212. },
  61213. foot: {
  61214. height: math.unit(1, "feet"),
  61215. name: "Foot",
  61216. image: {
  61217. source: "./media/characters/layla-amari/foot.svg"
  61218. }
  61219. },
  61220. necklace: {
  61221. height: math.unit(0.32, "feet"),
  61222. name: "Necklace",
  61223. image: {
  61224. source: "./media/characters/layla-amari/necklace.svg"
  61225. }
  61226. },
  61227. nipple: {
  61228. height: math.unit(0.2, "feet"),
  61229. name: "Nipple",
  61230. image: {
  61231. source: "./media/characters/layla-amari/nipple.svg"
  61232. }
  61233. },
  61234. slit: {
  61235. height: math.unit(0.26, "feet"),
  61236. name: "Slit",
  61237. image: {
  61238. source: "./media/characters/layla-amari/slit.svg"
  61239. }
  61240. },
  61241. },
  61242. [
  61243. {
  61244. name: "Natural",
  61245. height: math.unit(825, "feet"),
  61246. default: true
  61247. },
  61248. {
  61249. name: "Enhanced",
  61250. height: math.unit(8250, "feet")
  61251. },
  61252. {
  61253. name: "Apparent Size",
  61254. height: math.unit(9.04363e+8, "meters")
  61255. },
  61256. ]
  61257. ))
  61258. characterMakers.push(() => makeCharacter(
  61259. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  61260. {
  61261. front: {
  61262. height: math.unit(1.3, "meters"),
  61263. name: "Front",
  61264. image: {
  61265. source: "./media/characters/percy/front.svg",
  61266. extra: 1444/1289,
  61267. bottom: 54/1498
  61268. }
  61269. },
  61270. },
  61271. [
  61272. {
  61273. name: "Normal",
  61274. height: math.unit(1.3, "meters"),
  61275. default: true
  61276. },
  61277. ]
  61278. ))
  61279. characterMakers.push(() => makeCharacter(
  61280. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  61281. {
  61282. side: {
  61283. height: math.unit(10, "meters"),
  61284. name: "Side",
  61285. image: {
  61286. source: "./media/characters/grev/side.svg",
  61287. extra: 653/266,
  61288. bottom: 77/730
  61289. }
  61290. },
  61291. head: {
  61292. height: math.unit(16.2, "m"),
  61293. name: "Head",
  61294. image: {
  61295. source: "./media/characters/grev/head.svg"
  61296. }
  61297. },
  61298. dick: {
  61299. height: math.unit(2.8135932034, "m"),
  61300. name: "Dick",
  61301. image: {
  61302. source: "./media/characters/grev/dick.svg"
  61303. }
  61304. },
  61305. },
  61306. [
  61307. {
  61308. name: "Friend-Sized",
  61309. height: math.unit(80, "cm")
  61310. },
  61311. {
  61312. name: "Normal",
  61313. height: math.unit(10, "meters"),
  61314. default: true
  61315. },
  61316. {
  61317. name: "Macro",
  61318. height: math.unit(200, "meters")
  61319. },
  61320. ]
  61321. ))
  61322. characterMakers.push(() => makeCharacter(
  61323. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  61324. {
  61325. front: {
  61326. height: math.unit(19.75, "feet"),
  61327. weight: math.unit(20000, "lb"),
  61328. name: "Front",
  61329. image: {
  61330. source: "./media/characters/azuuca/front.svg",
  61331. extra: 1593/1511,
  61332. bottom: 55/1648
  61333. }
  61334. },
  61335. },
  61336. [
  61337. {
  61338. name: "Normal",
  61339. height: math.unit(19.75, "feet"),
  61340. default: true
  61341. },
  61342. ]
  61343. ))
  61344. characterMakers.push(() => makeCharacter(
  61345. { name: "Valuria", species: ["vesempress"], tags: ["anthro"] },
  61346. {
  61347. front: {
  61348. height: math.unit(15, "feet"),
  61349. weight: math.unit(1500, "lb"),
  61350. name: "Front",
  61351. image: {
  61352. source: "./media/characters/valuria/front.svg",
  61353. extra: 1588/1486,
  61354. bottom: 31/1619
  61355. }
  61356. },
  61357. },
  61358. [
  61359. {
  61360. name: "Normal",
  61361. height: math.unit(15, "feet"),
  61362. default: true
  61363. },
  61364. {
  61365. name: "Small",
  61366. height: math.unit(500, "feet")
  61367. },
  61368. {
  61369. name: "Macro",
  61370. height: math.unit(4000, "feet")
  61371. },
  61372. {
  61373. name: "Mega Macro",
  61374. height: math.unit(2000, "miles")
  61375. },
  61376. {
  61377. name: "Giga Macro",
  61378. height: math.unit(3e6, "miles")
  61379. },
  61380. ]
  61381. ))
  61382. characterMakers.push(() => makeCharacter(
  61383. { name: "Terigaia", species: ["gaelterranian"], tags: ["anthro"] },
  61384. {
  61385. front: {
  61386. height: math.unit(3500, "solarradii"),
  61387. name: "Front",
  61388. image: {
  61389. source: "./media/characters/terigaia/front.svg",
  61390. extra: 1531/1451,
  61391. bottom: 98/1629
  61392. }
  61393. },
  61394. },
  61395. [
  61396. {
  61397. name: "Normal",
  61398. height: math.unit(3500, "solarradii"),
  61399. default: true
  61400. },
  61401. ]
  61402. ))
  61403. characterMakers.push(() => makeCharacter(
  61404. { name: "Blair (Blaziken)", species: ["blaziken"], tags: ["anthro"] },
  61405. {
  61406. front: {
  61407. height: math.unit(9.34, "feet"),
  61408. weight: math.unit(600, "lb"),
  61409. name: "Front",
  61410. image: {
  61411. source: "./media/characters/blair-blaziken/front.svg",
  61412. extra: 1557/1462,
  61413. bottom: 55/1612
  61414. }
  61415. },
  61416. },
  61417. [
  61418. {
  61419. name: "Normal",
  61420. height: math.unit(9.34, "feet"),
  61421. default: true
  61422. },
  61423. ]
  61424. ))
  61425. characterMakers.push(() => makeCharacter(
  61426. { name: "Braxia", species: ["pistrogre", "human"], tags: ["anthro"] },
  61427. {
  61428. pistrogre_front: {
  61429. height: math.unit(10, "feet"),
  61430. weight: math.unit(10, "tons"),
  61431. name: "Front",
  61432. image: {
  61433. source: "./media/characters/braxia/pistrogre-front.svg",
  61434. extra: 1531/1334,
  61435. bottom: 114/1645
  61436. },
  61437. form: "pistrogre",
  61438. default: true
  61439. },
  61440. human_front: {
  61441. height: math.unit(10, "feet"),
  61442. weight: math.unit(10, "tons"),
  61443. name: "Front",
  61444. image: {
  61445. source: "./media/characters/braxia/human-front.svg",
  61446. extra: 1574/1501,
  61447. bottom: 37/1611
  61448. },
  61449. form: "human",
  61450. default: true
  61451. },
  61452. },
  61453. [
  61454. {
  61455. name: "Normal",
  61456. height: math.unit(10, "feet"),
  61457. default: true,
  61458. allForms: true
  61459. },
  61460. {
  61461. name: "Macro",
  61462. height: math.unit(1000, "feet"),
  61463. allForms: true
  61464. },
  61465. {
  61466. name: "Mega Macro",
  61467. height: math.unit(100, "miles"),
  61468. allForms: true
  61469. },
  61470. {
  61471. name: "Cosmic",
  61472. height: math.unit(1000000, "lightyears"),
  61473. allForms: true
  61474. },
  61475. {
  61476. name: "ϐѮԆԬӁꭍϞԢ",
  61477. height: math.unit(1000, "multiverses"),
  61478. allForms: true
  61479. },
  61480. ],
  61481. {
  61482. "pistrogre": {
  61483. name: "Pistrogre",
  61484. default: true
  61485. },
  61486. "human": {
  61487. name: "Human",
  61488. },
  61489. }
  61490. ))
  61491. characterMakers.push(() => makeCharacter(
  61492. { name: "Kiriga Yato", species: ["zorgoia"], tags: ["anthro"] },
  61493. {
  61494. front: {
  61495. height: math.unit(6 + 1/12, "feet"),
  61496. weight: math.unit(280, "lb"),
  61497. name: "Front",
  61498. image: {
  61499. source: "./media/characters/kiriga-yato/front.svg",
  61500. extra: 445/394,
  61501. bottom: 11/456
  61502. }
  61503. },
  61504. },
  61505. [
  61506. {
  61507. name: "Descended",
  61508. height: math.unit(3, "feet")
  61509. },
  61510. {
  61511. name: "Average",
  61512. height: math.unit(6 + 1/12, "feet"),
  61513. default: true
  61514. },
  61515. {
  61516. name: "Ascended",
  61517. height: math.unit(9 + 2/12, "feet")
  61518. },
  61519. ]
  61520. ))
  61521. characterMakers.push(() => makeCharacter(
  61522. { name: "Kylie", species: ["giraffe"], tags: ["anthro"] },
  61523. {
  61524. front: {
  61525. height: math.unit(6, "feet"),
  61526. weight: math.unit(150, "lb"),
  61527. name: "Front",
  61528. image: {
  61529. source: "./media/characters/kylie/front.svg",
  61530. extra: 1114/1046,
  61531. bottom: 65/1179
  61532. },
  61533. extraAttributes: {
  61534. "hoofSize": {
  61535. name: "Hoof Size",
  61536. power: 2,
  61537. type: "area",
  61538. base: math.unit(0.034, "m^2")
  61539. },
  61540. "footSize": {
  61541. name: "Foot Size",
  61542. power: 2,
  61543. type: "area",
  61544. base: math.unit(0.75, "m^2")
  61545. },
  61546. }
  61547. },
  61548. side: {
  61549. height: math.unit(6, "feet"),
  61550. weight: math.unit(150, "lb"),
  61551. name: "Side",
  61552. image: {
  61553. source: "./media/characters/kylie/side.svg",
  61554. extra: 1178/1110,
  61555. bottom: 21/1199
  61556. },
  61557. extraAttributes: {
  61558. "hoofSize": {
  61559. name: "Hoof Size",
  61560. power: 2,
  61561. type: "area",
  61562. base: math.unit(0.034, "m^2")
  61563. },
  61564. "footSize": {
  61565. name: "Foot Size",
  61566. power: 2,
  61567. type: "area",
  61568. base: math.unit(0.75, "m^2")
  61569. },
  61570. }
  61571. },
  61572. back: {
  61573. height: math.unit(6, "feet"),
  61574. weight: math.unit(150, "lb"),
  61575. name: "Back",
  61576. image: {
  61577. source: "./media/characters/kylie/back.svg",
  61578. extra: 1115/1047,
  61579. bottom: 66/1181
  61580. },
  61581. extraAttributes: {
  61582. "hoofSize": {
  61583. name: "Hoof Size",
  61584. power: 2,
  61585. type: "area",
  61586. base: math.unit(0.034, "m^2")
  61587. },
  61588. "footSize": {
  61589. name: "Foot Size",
  61590. power: 2,
  61591. type: "area",
  61592. base: math.unit(0.75, "m^2")
  61593. },
  61594. }
  61595. },
  61596. head: {
  61597. height: math.unit(1.85, "feet"),
  61598. name: "Head",
  61599. image: {
  61600. source: "./media/characters/kylie/head.svg"
  61601. }
  61602. },
  61603. },
  61604. [
  61605. {
  61606. name: "Normal",
  61607. height: math.unit(90, "meters"),
  61608. default: true
  61609. },
  61610. ]
  61611. ))
  61612. characterMakers.push(() => makeCharacter(
  61613. { name: "Sabado", species: ["suicune"], tags: ["anthro"] },
  61614. {
  61615. front: {
  61616. height: math.unit(245, "feet"),
  61617. weight: math.unit(400000, "lb"),
  61618. name: "Front",
  61619. image: {
  61620. source: "./media/characters/sabado/front.svg",
  61621. extra: 1309/1164,
  61622. bottom: 29/1338
  61623. }
  61624. },
  61625. },
  61626. [
  61627. {
  61628. name: "Normal",
  61629. height: math.unit(245, "feet"),
  61630. default: true
  61631. },
  61632. ]
  61633. ))
  61634. characterMakers.push(() => makeCharacter(
  61635. { name: "Zechal", species: ["shark", "dragon", "deity"], tags: ["anthro"] },
  61636. {
  61637. shark_front: {
  61638. height: math.unit(2, "meters"),
  61639. weight: math.unit(200, "kg"),
  61640. name: "Front",
  61641. image: {
  61642. source: "./media/characters/zechal/shark-front.svg",
  61643. extra: 969/925,
  61644. bottom: 74/1043
  61645. },
  61646. form: "shark",
  61647. },
  61648. shark_back: {
  61649. height: math.unit(2, "meters"),
  61650. weight: math.unit(200, "kg"),
  61651. name: "Back",
  61652. image: {
  61653. source: "./media/characters/zechal/shark-back.svg",
  61654. extra: 994/949,
  61655. bottom: 176/1170
  61656. },
  61657. form: "shark",
  61658. },
  61659. shark_frontLewd: {
  61660. height: math.unit(2, "meters"),
  61661. weight: math.unit(200, "kg"),
  61662. name: "Front (Lewd)",
  61663. image: {
  61664. source: "./media/characters/zechal/shark-front-lewd.svg",
  61665. extra: 969/925,
  61666. bottom: 74/1043
  61667. },
  61668. form: "shark",
  61669. },
  61670. shark_side: {
  61671. height: math.unit(1.56, "meters"),
  61672. weight: math.unit(200, "kg"),
  61673. name: "Side",
  61674. image: {
  61675. source: "./media/characters/zechal/shark-side.svg"
  61676. },
  61677. form: "shark",
  61678. },
  61679. dragon_front: {
  61680. height: math.unit(2, "meters"),
  61681. weight: math.unit(200, "kg"),
  61682. name: "Front",
  61683. image: {
  61684. source: "./media/characters/zechal/dragon-front.svg",
  61685. extra: 1041/925,
  61686. bottom: 74/1115
  61687. },
  61688. form: "dragon",
  61689. },
  61690. dragon_back: {
  61691. height: math.unit(2, "meters"),
  61692. weight: math.unit(200, "kg"),
  61693. name: "Back",
  61694. image: {
  61695. source: "./media/characters/zechal/dragon-back.svg",
  61696. extra: 1061/949,
  61697. bottom: 176/1237
  61698. },
  61699. form: "dragon",
  61700. },
  61701. dragon_frontLewd: {
  61702. height: math.unit(2, "meters"),
  61703. weight: math.unit(200, "kg"),
  61704. name: "Front (Lewd)",
  61705. image: {
  61706. source: "./media/characters/zechal/dragon-front-lewd.svg",
  61707. extra: 1041/925,
  61708. bottom: 74/1115
  61709. },
  61710. form: "dragon",
  61711. },
  61712. dragon_side: {
  61713. height: math.unit(1.56, "meters"),
  61714. weight: math.unit(200, "kg"),
  61715. name: "Side",
  61716. image: {
  61717. source: "./media/characters/zechal/dragon-side.svg"
  61718. },
  61719. form: "dragon",
  61720. },
  61721. foot: {
  61722. height: math.unit(0.5, "meters"),
  61723. name: "Foot",
  61724. image: {
  61725. source: "./media/characters/zechal/foot.svg"
  61726. }
  61727. },
  61728. sheathFront: {
  61729. height: math.unit(0.45, "meters"),
  61730. name: "Sheath (Front)",
  61731. image: {
  61732. source: "./media/characters/zechal/sheath-front.svg"
  61733. }
  61734. },
  61735. sheathSide: {
  61736. height: math.unit(0.45, "meters"),
  61737. name: "Sheath (Side)",
  61738. image: {
  61739. source: "./media/characters/zechal/sheath-side.svg"
  61740. }
  61741. },
  61742. },
  61743. [
  61744. {
  61745. name: "Incognito",
  61746. height: math.unit(2, "meters"),
  61747. allForms: true
  61748. },
  61749. {
  61750. name: "Small Rampage",
  61751. height: math.unit(25, "meters"),
  61752. allForms: true
  61753. },
  61754. {
  61755. name: "Home Size",
  61756. height: math.unit(250, "meters"),
  61757. allForms: true,
  61758. default: true
  61759. },
  61760. {
  61761. name: "Macro+",
  61762. height: math.unit(700, "meters"),
  61763. allForms: true
  61764. },
  61765. {
  61766. name: "Small Mega",
  61767. height: math.unit(3, "km"),
  61768. allForms: true
  61769. },
  61770. {
  61771. name: "Mega",
  61772. height: math.unit(15, "km"),
  61773. allForms: true
  61774. },
  61775. {
  61776. name: "Giga",
  61777. height: math.unit(300, "km"),
  61778. allForms: true
  61779. },
  61780. {
  61781. name: "Giga+",
  61782. height: math.unit(1750, "km"),
  61783. allForms: true
  61784. },
  61785. {
  61786. name: "Continental",
  61787. height: math.unit(5000, "km"),
  61788. allForms: true
  61789. },
  61790. {
  61791. name: "Terra",
  61792. height: math.unit(20000, "km"),
  61793. allForms: true
  61794. },
  61795. {
  61796. name: "Terra+",
  61797. height: math.unit(300000, "km"),
  61798. allForms: true
  61799. },
  61800. {
  61801. name: "Solar",
  61802. height: math.unit(40000000, "km"),
  61803. allForms: true
  61804. },
  61805. {
  61806. name: "Galactic",
  61807. height: math.unit(810133, "parsecs"),
  61808. allForms: true
  61809. },
  61810. {
  61811. name: "Universal",
  61812. height: math.unit(25, "universes"),
  61813. allForms: true
  61814. },
  61815. ],
  61816. {
  61817. "shark": {
  61818. name: "Shark",
  61819. default: true
  61820. },
  61821. "dragon": {
  61822. name: "Dragon",
  61823. },
  61824. }
  61825. ))
  61826. characterMakers.push(() => makeCharacter(
  61827. { name: "Sergis", species: ["komodo-dragon", "deity"], tags: ["anthro"] },
  61828. {
  61829. front: {
  61830. height: math.unit(2.2, "meters"),
  61831. weight: math.unit(150, "kg"),
  61832. name: "Front",
  61833. image: {
  61834. source: "./media/characters/sergis/front.svg",
  61835. extra: 1314/1312,
  61836. bottom: 112/1426
  61837. }
  61838. },
  61839. back: {
  61840. height: math.unit(2.2, "meters"),
  61841. weight: math.unit(150, "kg"),
  61842. name: "Back",
  61843. image: {
  61844. source: "./media/characters/sergis/back.svg",
  61845. extra: 1335/1333,
  61846. bottom: 19/1354
  61847. }
  61848. },
  61849. frontLewd: {
  61850. height: math.unit(2.2, "meters"),
  61851. weight: math.unit(150, "kg"),
  61852. name: "Front (Lewd)",
  61853. image: {
  61854. source: "./media/characters/sergis/front-lewd.svg",
  61855. extra: 1314/1312,
  61856. bottom: 112/1426
  61857. }
  61858. },
  61859. frontDressed: {
  61860. height: math.unit(2.2, "meters"),
  61861. weight: math.unit(150, "kg"),
  61862. name: "Front (Dressed)",
  61863. image: {
  61864. source: "./media/characters/sergis/front-dressed.svg",
  61865. extra: 1330/1328,
  61866. bottom: 95/1425
  61867. }
  61868. },
  61869. frontDressedLewd: {
  61870. height: math.unit(2.2, "meters"),
  61871. weight: math.unit(150, "kg"),
  61872. name: "Front (Dressed, Lewd)",
  61873. image: {
  61874. source: "./media/characters/sergis/front-dressed-lewd.svg",
  61875. extra: 1330/1328,
  61876. bottom: 95/1425
  61877. }
  61878. },
  61879. maw: {
  61880. height: math.unit(0.48, "meters"),
  61881. name: "Maw",
  61882. image: {
  61883. source: "./media/characters/sergis/maw.svg"
  61884. }
  61885. },
  61886. sheath: {
  61887. height: math.unit(0.38, "meters"),
  61888. name: "Sheath",
  61889. image: {
  61890. source: "./media/characters/sergis/sheath.svg"
  61891. }
  61892. },
  61893. },
  61894. [
  61895. {
  61896. name: "Incognito Size",
  61897. height: math.unit(2.2, "meters")
  61898. },
  61899. {
  61900. name: "Small Macro",
  61901. height: math.unit(40, "meters")
  61902. },
  61903. {
  61904. name: "Macro",
  61905. height: math.unit(150, "meters")
  61906. },
  61907. {
  61908. name: "Macro+",
  61909. height: math.unit(300, "meters")
  61910. },
  61911. {
  61912. name: "Mega",
  61913. height: math.unit(2.5, "km")
  61914. },
  61915. {
  61916. name: "Mega+",
  61917. height: math.unit(30, "km")
  61918. },
  61919. {
  61920. name: "Home Size",
  61921. height: math.unit(300, "km"),
  61922. default: true
  61923. },
  61924. {
  61925. name: "Giga+",
  61926. height: math.unit(1000, "km")
  61927. },
  61928. {
  61929. name: "Giga++",
  61930. height: math.unit(6000, "km")
  61931. },
  61932. {
  61933. name: "Terra",
  61934. height: math.unit(70000, "km")
  61935. },
  61936. {
  61937. name: "Terra+",
  61938. height: math.unit(200000, "km")
  61939. },
  61940. {
  61941. name: "Galactic",
  61942. height: math.unit(634200, "lightyears")
  61943. },
  61944. ]
  61945. ))
  61946. characterMakers.push(() => makeCharacter(
  61947. { name: "Spade", species: ["demon", "mouse"], tags: ["anthro"] },
  61948. {
  61949. standard: {
  61950. height: math.unit(1 + 5/12, "feet"),
  61951. name: "Standard",
  61952. image: {
  61953. source: "./media/characters/spade/standard.svg",
  61954. extra: 1794/1703,
  61955. bottom: 115/1909
  61956. }
  61957. },
  61958. disguised: {
  61959. height: math.unit(1 + 5/12, "feet"),
  61960. name: "Disguised",
  61961. image: {
  61962. source: "./media/characters/spade/disguised.svg",
  61963. extra: 1794/1700,
  61964. bottom: 98/1892
  61965. }
  61966. },
  61967. },
  61968. [
  61969. {
  61970. name: "Normal",
  61971. height: math.unit(1 + 5/12, "feet"),
  61972. default: true
  61973. },
  61974. ]
  61975. ))
  61976. characterMakers.push(() => makeCharacter(
  61977. { name: "Zeanlain", species: ["harpy-eagle"], tags: ["anthro"] },
  61978. {
  61979. frontNsfw: {
  61980. height: math.unit(5, "meters"),
  61981. weight: math.unit(2000, "kg"),
  61982. preyCapacity: math.unit(5, "people"),
  61983. name: "Front (NSFW)",
  61984. image: {
  61985. source: "./media/characters/zeanlain/front-nsfw.svg",
  61986. extra: 1087/938,
  61987. bottom: 93/1180
  61988. },
  61989. extraAttributes: {
  61990. "wingspan": {
  61991. name: "Wingspan",
  61992. power: 1,
  61993. type: "length",
  61994. base: math.unit(10, "meters")
  61995. },
  61996. "footSize": {
  61997. name: "Foot Size",
  61998. power: 1,
  61999. type: "length",
  62000. base: math.unit(0.68, "meters")
  62001. },
  62002. "cockLength": {
  62003. name: "Cock Length",
  62004. power: 1,
  62005. type: "length",
  62006. base: math.unit(1.69, "meters")
  62007. },
  62008. "ballVolume": {
  62009. name: "Ball Volume",
  62010. power: 3,
  62011. type: "volume",
  62012. base: math.unit(0.028, "m^3")
  62013. },
  62014. }
  62015. },
  62016. front: {
  62017. height: math.unit(5, "meters"),
  62018. weight: math.unit(2000, "kg"),
  62019. preyCapacity: math.unit(3, "people"),
  62020. name: "Front",
  62021. image: {
  62022. source: "./media/characters/zeanlain/front.svg",
  62023. extra: 1087/938,
  62024. bottom: 93/1180
  62025. },
  62026. extraAttributes: {
  62027. "wingspan": {
  62028. name: "Wingspan",
  62029. power: 1,
  62030. type: "length",
  62031. base: math.unit(10, "meters")
  62032. },
  62033. "footSize": {
  62034. name: "Foot Size",
  62035. power: 1,
  62036. type: "length",
  62037. base: math.unit(0.68, "meters")
  62038. },
  62039. }
  62040. },
  62041. },
  62042. [
  62043. {
  62044. name: "Normal",
  62045. height: math.unit(5, "meters"),
  62046. default: true
  62047. },
  62048. ]
  62049. ))
  62050. characterMakers.push(() => makeCharacter(
  62051. { name: "Airamis", species: ["aeromorph", "dragon"], tags: ["anthro"] },
  62052. {
  62053. front: {
  62054. height: math.unit(10, "meters"),
  62055. weight: math.unit(250000, "kg"),
  62056. name: "Front",
  62057. image: {
  62058. source: "./media/characters/airamis/front.svg",
  62059. extra: 865/835,
  62060. bottom: 13/878
  62061. }
  62062. },
  62063. },
  62064. [
  62065. {
  62066. name: "Normal",
  62067. height: math.unit(10, "meters"),
  62068. default: true
  62069. },
  62070. ]
  62071. ))
  62072. characterMakers.push(() => makeCharacter(
  62073. { name: "Corra Tourmaline", species: ["vaporeon"], tags: ["anthro"] },
  62074. {
  62075. front: {
  62076. height: math.unit(3 + 3/12, "feet"),
  62077. weight: math.unit(75, "lb"),
  62078. name: "Front",
  62079. image: {
  62080. source: "./media/characters/corra-tourmaline/front.svg",
  62081. extra: 1037/864,
  62082. bottom: 39/1076
  62083. }
  62084. },
  62085. back: {
  62086. height: math.unit(3 + 3/12, "feet"),
  62087. weight: math.unit(75, "lb"),
  62088. name: "Back",
  62089. image: {
  62090. source: "./media/characters/corra-tourmaline/back.svg",
  62091. extra: 1022/849,
  62092. bottom: 26/1048
  62093. }
  62094. },
  62095. dressed: {
  62096. height: math.unit(3 + 3/12, "feet"),
  62097. weight: math.unit(75, "lb"),
  62098. name: "Dressed",
  62099. image: {
  62100. source: "./media/characters/corra-tourmaline/dressed.svg",
  62101. extra: 1037/864,
  62102. bottom: 39/1076
  62103. }
  62104. },
  62105. beans: {
  62106. height: math.unit(0.37, "feet"),
  62107. name: "Beans",
  62108. image: {
  62109. source: "./media/characters/corra-tourmaline/beans.svg"
  62110. }
  62111. },
  62112. },
  62113. [
  62114. {
  62115. name: "Normal",
  62116. height: math.unit(3 + 3/12, "feet"),
  62117. default: true
  62118. },
  62119. {
  62120. name: "Macro",
  62121. height: math.unit(32, "feet")
  62122. },
  62123. ]
  62124. ))
  62125. characterMakers.push(() => makeCharacter(
  62126. { name: "Maki Kawa", species: ["sabertooth-tiger", "serval"], tags: ["anthro"] },
  62127. {
  62128. front: {
  62129. height: math.unit(6 + 2/12, "feet"),
  62130. weight: math.unit(203, "lb"),
  62131. name: "Front",
  62132. image: {
  62133. source: "./media/characters/maki-kawa/front.svg",
  62134. extra: 950/890,
  62135. bottom: 62/1012
  62136. }
  62137. },
  62138. back: {
  62139. height: math.unit(6 + 2/12, "feet"),
  62140. weight: math.unit(203, "lb"),
  62141. name: "Back",
  62142. image: {
  62143. source: "./media/characters/maki-kawa/back.svg",
  62144. extra: 953/878,
  62145. bottom: 49/1002
  62146. }
  62147. },
  62148. frontBarista: {
  62149. height: math.unit(6 + 2/12, "feet"),
  62150. weight: math.unit(203, "lb"),
  62151. name: "Front (Barista)",
  62152. image: {
  62153. source: "./media/characters/maki-kawa/front-barista.svg",
  62154. extra: 943/883,
  62155. bottom: 69/1012
  62156. }
  62157. },
  62158. backBarista: {
  62159. height: math.unit(6 + 2/12, "feet"),
  62160. weight: math.unit(203, "lb"),
  62161. name: "Back (Barista)",
  62162. image: {
  62163. source: "./media/characters/maki-kawa/back-barista.svg",
  62164. extra: 953/878,
  62165. bottom: 49/1002
  62166. }
  62167. },
  62168. frontWrestler: {
  62169. height: math.unit(6 + 2/12, "feet"),
  62170. weight: math.unit(203, "lb"),
  62171. name: "Front (Wrestler)",
  62172. image: {
  62173. source: "./media/characters/maki-kawa/front-wrestler.svg",
  62174. extra: 950/890,
  62175. bottom: 62/1012
  62176. }
  62177. },
  62178. backWrestler: {
  62179. height: math.unit(6 + 2/12, "feet"),
  62180. weight: math.unit(203, "lb"),
  62181. name: "Back (Wrestler)",
  62182. image: {
  62183. source: "./media/characters/maki-kawa/back-wrestler.svg",
  62184. extra: 953/878,
  62185. bottom: 49/1002
  62186. }
  62187. },
  62188. headFront: {
  62189. height: math.unit(1.64, "feet"),
  62190. name: "Head (Front)",
  62191. image: {
  62192. source: "./media/characters/maki-kawa/head-front.svg"
  62193. }
  62194. },
  62195. headSide: {
  62196. height: math.unit(1.59, "feet"),
  62197. name: "Head (Side)",
  62198. image: {
  62199. source: "./media/characters/maki-kawa/head-side.svg"
  62200. }
  62201. },
  62202. paw: {
  62203. height: math.unit(0.9, "feet"),
  62204. name: "Paw",
  62205. image: {
  62206. source: "./media/characters/maki-kawa/paw.svg"
  62207. }
  62208. },
  62209. },
  62210. [
  62211. {
  62212. name: "Normal",
  62213. height: math.unit(6 + 2/12, "feet"),
  62214. default: true
  62215. },
  62216. {
  62217. name: "Macro",
  62218. height: math.unit(617, "feet")
  62219. },
  62220. ]
  62221. ))
  62222. characterMakers.push(() => makeCharacter(
  62223. { name: "Lennox", species: ["wolf"], tags: ["anthro"] },
  62224. {
  62225. front: {
  62226. height: math.unit(10, "feet"),
  62227. weight: math.unit(1500, "lb"),
  62228. name: "Front",
  62229. image: {
  62230. source: "./media/characters/lennox/front.svg",
  62231. extra: 1623/1496,
  62232. bottom: 18/1641
  62233. }
  62234. },
  62235. back: {
  62236. height: math.unit(10, "feet"),
  62237. weight: math.unit(1500, "lb"),
  62238. name: "Back",
  62239. image: {
  62240. source: "./media/characters/lennox/back.svg",
  62241. extra: 1641/1481,
  62242. bottom: 13/1654
  62243. }
  62244. },
  62245. maw: {
  62246. height: math.unit(2.94, "feet"),
  62247. name: "Maw",
  62248. image: {
  62249. source: "./media/characters/lennox/maw.svg"
  62250. }
  62251. },
  62252. },
  62253. [
  62254. {
  62255. name: "Micro",
  62256. height: math.unit(1, "inch")
  62257. },
  62258. {
  62259. name: "Normal",
  62260. height: math.unit(10, "feet"),
  62261. default: true
  62262. },
  62263. {
  62264. name: "Macro",
  62265. height: math.unit(200, "feet")
  62266. },
  62267. ]
  62268. ))
  62269. characterMakers.push(() => makeCharacter(
  62270. { name: "Vyse Iron-Thunder", species: ["luxray", "shiny"], tags: ["anthro"] },
  62271. {
  62272. frontDressed: {
  62273. height: math.unit(15 + 7/12, "feet"),
  62274. weight: math.unit(5000, "lb"),
  62275. name: "Front (Dressed)",
  62276. image: {
  62277. source: "./media/characters/vyse-iron-thunder/front-dressed.svg",
  62278. extra: 1136/1023,
  62279. bottom: 51/1187
  62280. }
  62281. },
  62282. backDressed: {
  62283. height: math.unit(15 + 7/12, "feet"),
  62284. weight: math.unit(5000, "lb"),
  62285. name: "Back (Dressed)",
  62286. image: {
  62287. source: "./media/characters/vyse-iron-thunder/back-dressed.svg",
  62288. extra: 2359/2143,
  62289. bottom: 103/2462
  62290. }
  62291. },
  62292. front: {
  62293. height: math.unit(15 + 7/12, "feet"),
  62294. weight: math.unit(5000, "lb"),
  62295. name: "Front",
  62296. image: {
  62297. source: "./media/characters/vyse-iron-thunder/front.svg",
  62298. extra: 1136/1023,
  62299. bottom: 51/1187
  62300. }
  62301. },
  62302. hand: {
  62303. height: math.unit(2.36, "feet"),
  62304. name: "Hand",
  62305. image: {
  62306. source: "./media/characters/vyse-iron-thunder/hand.svg"
  62307. }
  62308. },
  62309. foot: {
  62310. height: math.unit(1.72, "feet"),
  62311. name: "Foot",
  62312. image: {
  62313. source: "./media/characters/vyse-iron-thunder/foot.svg"
  62314. }
  62315. },
  62316. mouth: {
  62317. height: math.unit(2, "feet"),
  62318. name: "Mouth",
  62319. image: {
  62320. source: "./media/characters/vyse-iron-thunder/mouth.svg"
  62321. }
  62322. },
  62323. eye: {
  62324. height: math.unit(0.58, "feet"),
  62325. name: "Eye",
  62326. image: {
  62327. source: "./media/characters/vyse-iron-thunder/eye.svg"
  62328. }
  62329. },
  62330. },
  62331. [
  62332. {
  62333. name: "Normal",
  62334. height: math.unit(15 + 7/12, "feet"),
  62335. default: true
  62336. },
  62337. {
  62338. name: "Macro",
  62339. height: math.unit(157, "feet")
  62340. },
  62341. {
  62342. name: "Macro+",
  62343. height: math.unit(1570, "feet")
  62344. },
  62345. {
  62346. name: "Macro++",
  62347. height: math.unit(15700, "feet")
  62348. },
  62349. {
  62350. name: "Macro+++",
  62351. height: math.unit(157000, "feet")
  62352. },
  62353. {
  62354. name: "Macro++++",
  62355. height: math.unit(1570000, "feet")
  62356. },
  62357. ]
  62358. ))
  62359. characterMakers.push(() => makeCharacter(
  62360. { name: "Moonbeam", species: ["latex", "wolf"], tags: ["feral"] },
  62361. {
  62362. side: {
  62363. height: math.unit(6, "feet"),
  62364. weight: math.unit(115, "lb"),
  62365. name: "Side",
  62366. image: {
  62367. source: "./media/characters/moonbeam/side.svg",
  62368. extra: 839/485,
  62369. bottom: 60/899
  62370. }
  62371. },
  62372. },
  62373. [
  62374. {
  62375. name: "Normal",
  62376. height: math.unit(6, "feet"),
  62377. default: true
  62378. },
  62379. ]
  62380. ))
  62381. characterMakers.push(() => makeCharacter(
  62382. { name: "Baltica", species: ["orca"], tags: ["anthro"] },
  62383. {
  62384. front: {
  62385. height: math.unit(3500, "miles"),
  62386. weight: math.unit(1659, "petatonnes"),
  62387. name: "Front",
  62388. image: {
  62389. source: "./media/characters/baltica/front.svg",
  62390. extra: 429/428,
  62391. bottom: 41/470
  62392. }
  62393. },
  62394. back: {
  62395. height: math.unit(3500, "miles"),
  62396. weight: math.unit(1659, "petatonnes"),
  62397. name: "Back",
  62398. image: {
  62399. source: "./media/characters/baltica/back.svg",
  62400. extra: 452/451,
  62401. bottom: 8/460
  62402. }
  62403. },
  62404. },
  62405. [
  62406. {
  62407. name: "Gigamacro",
  62408. height: math.unit(3500, "miles"),
  62409. default: true
  62410. },
  62411. ]
  62412. ))
  62413. characterMakers.push(() => makeCharacter(
  62414. { name: "Shadow (Wolf)", species: ["wolf", "demi"], tags: ["anthro"] },
  62415. {
  62416. front: {
  62417. height: math.unit(6 + 10/12, "feet"),
  62418. weight: math.unit(200, "lb"),
  62419. name: "Front",
  62420. image: {
  62421. source: "./media/characters/shadow-wolf/front.svg",
  62422. extra: 1931/1760,
  62423. bottom: 88/2019
  62424. }
  62425. },
  62426. },
  62427. [
  62428. {
  62429. name: "Normal",
  62430. height: math.unit(6 + 10/12, "feet"),
  62431. default: true
  62432. },
  62433. ]
  62434. ))
  62435. characterMakers.push(() => makeCharacter(
  62436. { name: "Quincy (Praying Mantis)", species: ["praying-mantis"], tags: ["anthro"] },
  62437. {
  62438. front: {
  62439. height: math.unit(5 + 10/12, "feet"),
  62440. name: "Front",
  62441. image: {
  62442. source: "./media/characters/quincy-praying-mantis/front.svg",
  62443. extra: 1055/891,
  62444. bottom: 92/1147
  62445. }
  62446. },
  62447. soles: {
  62448. height: math.unit(0.85, "feet"),
  62449. name: "Soles",
  62450. image: {
  62451. source: "./media/characters/quincy-praying-mantis/soles.svg",
  62452. extra: 429/324,
  62453. bottom: 89/518
  62454. },
  62455. extraAttributes: {
  62456. "shoeSize": {
  62457. name: "Shoe Size",
  62458. power: 1,
  62459. type: "length",
  62460. base: math.unit(23, "ShoeSizeMensUS"),
  62461. defaultUnit: "ShoeSizeMensUS"
  62462. },
  62463. }
  62464. },
  62465. foot: {
  62466. height: math.unit(0.72, "feet"),
  62467. name: "Foot",
  62468. image: {
  62469. source: "./media/characters/quincy-praying-mantis/foot.svg",
  62470. extra: 349/349,
  62471. bottom: 76/425
  62472. }
  62473. },
  62474. },
  62475. [
  62476. {
  62477. name: "Normal",
  62478. height: math.unit(5 + 10/12, "feet"),
  62479. default: true
  62480. },
  62481. ]
  62482. ))
  62483. characterMakers.push(() => makeCharacter(
  62484. { name: "Christopher Redwood", species: ["gray-wolf"], tags: ["anthro"] },
  62485. {
  62486. front: {
  62487. height: math.unit(6, "feet"),
  62488. name: "Front",
  62489. image: {
  62490. source: "./media/characters/christopher-redwood/front.svg",
  62491. extra: 1402/1341,
  62492. bottom: 23/1425
  62493. }
  62494. },
  62495. back: {
  62496. height: math.unit(6, "feet"),
  62497. name: "Back",
  62498. image: {
  62499. source: "./media/characters/christopher-redwood/back.svg",
  62500. extra: 1406/1345,
  62501. bottom: 36/1442
  62502. }
  62503. },
  62504. head: {
  62505. height: math.unit(1.685, "feet"),
  62506. name: "Head",
  62507. image: {
  62508. source: "./media/characters/christopher-redwood/head.svg"
  62509. }
  62510. },
  62511. },
  62512. [
  62513. {
  62514. name: "Normal",
  62515. height: math.unit(6, "feet"),
  62516. default: true
  62517. },
  62518. ]
  62519. ))
  62520. characterMakers.push(() => makeCharacter(
  62521. { name: "Kara (Fox)", species: ["fox"], tags: ["anthro"] },
  62522. {
  62523. front: {
  62524. height: math.unit(1.9, "meters"),
  62525. weight: math.unit(140, "lb"),
  62526. name: "Front",
  62527. image: {
  62528. source: "./media/characters/kara-fox/front.svg",
  62529. extra: 766/711,
  62530. bottom: 41/807
  62531. }
  62532. },
  62533. back: {
  62534. height: math.unit(1.9, "meters"),
  62535. weight: math.unit(140, "lb"),
  62536. name: "Back",
  62537. image: {
  62538. source: "./media/characters/kara-fox/back.svg",
  62539. extra: 766/596,
  62540. bottom: 29/795
  62541. }
  62542. },
  62543. maw: {
  62544. height: math.unit(0.78, "feet"),
  62545. name: "Maw",
  62546. image: {
  62547. source: "./media/characters/kara-fox/maw.svg"
  62548. }
  62549. },
  62550. pawpads: {
  62551. height: math.unit(0.96, "feet"),
  62552. name: "Pawpads",
  62553. image: {
  62554. source: "./media/characters/kara-fox/pawpads.svg"
  62555. }
  62556. },
  62557. },
  62558. [
  62559. {
  62560. name: "Normal",
  62561. height: math.unit(1.9, "meters"),
  62562. default: true
  62563. },
  62564. {
  62565. name: "Giantess",
  62566. height: math.unit(80, "meters")
  62567. },
  62568. ]
  62569. ))
  62570. characterMakers.push(() => makeCharacter(
  62571. { name: "Naomi (Espeon)", species: ["espeon"], tags: ["anthro"] },
  62572. {
  62573. front: {
  62574. height: math.unit(12, "feet"),
  62575. name: "Front",
  62576. image: {
  62577. source: "./media/characters/naomi-espeon/front.svg",
  62578. extra: 892/797,
  62579. bottom: 5/897
  62580. }
  62581. },
  62582. back: {
  62583. height: math.unit(12, "feet"),
  62584. name: "Back",
  62585. image: {
  62586. source: "./media/characters/naomi-espeon/back.svg",
  62587. extra: 890/785,
  62588. bottom: 12/902
  62589. }
  62590. },
  62591. },
  62592. [
  62593. {
  62594. name: "Normal",
  62595. height: math.unit(12, "feet"),
  62596. default: true
  62597. },
  62598. ]
  62599. ))
  62600. characterMakers.push(() => makeCharacter(
  62601. { name: "Asher Heulfyrn", species: ["skullwolf"], tags: ["anthro", "taur"] },
  62602. {
  62603. anthro_front: {
  62604. height: math.unit(8, "feet"),
  62605. weight: math.unit(625, "lb"),
  62606. name: "Front",
  62607. image: {
  62608. source: "./media/characters/asher-heulfyrn/anthro-front.svg",
  62609. extra: 638/574,
  62610. bottom: 73/711
  62611. },
  62612. form: "anthro",
  62613. default: true
  62614. },
  62615. anthro_back: {
  62616. height: math.unit(8, "feet"),
  62617. weight: math.unit(625, "lb"),
  62618. name: "Back",
  62619. image: {
  62620. source: "./media/characters/asher-heulfyrn/anthro-back.svg",
  62621. extra: 674/614,
  62622. bottom: 7/681
  62623. },
  62624. form: "anthro",
  62625. },
  62626. taur_side: {
  62627. height: math.unit(16, "feet"),
  62628. weight: math.unit(4.5, "tons"),
  62629. name: "Side",
  62630. image: {
  62631. source: "./media/characters/asher-heulfyrn/taur-side.svg",
  62632. extra: 704/646,
  62633. bottom: 132/836
  62634. },
  62635. form: "taur",
  62636. default: true
  62637. },
  62638. },
  62639. [
  62640. {
  62641. name: "Normal",
  62642. height: math.unit(8, "feet"),
  62643. default: true,
  62644. form: "anthro"
  62645. },
  62646. {
  62647. name: "Normal",
  62648. height: math.unit(16, "feet"),
  62649. default: true,
  62650. form: "taur"
  62651. },
  62652. ],
  62653. {
  62654. "anthro": {
  62655. name: "Anthro",
  62656. default: true
  62657. },
  62658. "taur": {
  62659. name: "Taur",
  62660. },
  62661. }
  62662. ))
  62663. characterMakers.push(() => makeCharacter(
  62664. { name: "Amelie", species: ["ferrin"], tags: ["anthro"] },
  62665. {
  62666. front: {
  62667. height: math.unit(190, "cm"),
  62668. weight: math.unit(110, "kg"),
  62669. name: "Front",
  62670. image: {
  62671. source: "./media/characters/amelie/front.svg",
  62672. extra: 530/442,
  62673. bottom: 35/565
  62674. }
  62675. },
  62676. },
  62677. [
  62678. {
  62679. name: "Normal",
  62680. height: math.unit(190, "cm"),
  62681. default: true
  62682. },
  62683. ]
  62684. ))
  62685. characterMakers.push(() => makeCharacter(
  62686. { name: "Valence", species: ["skulldragon"], tags: ["anthro"] },
  62687. {
  62688. front: {
  62689. height: math.unit(21, "feet"),
  62690. weight: math.unit(30000, "lb"),
  62691. name: "Front",
  62692. image: {
  62693. source: "./media/characters/valence/front.svg",
  62694. extra: 1430/1306,
  62695. bottom: 51/1481
  62696. }
  62697. },
  62698. },
  62699. [
  62700. {
  62701. name: "Normal",
  62702. height: math.unit(21, "feet"),
  62703. default: true
  62704. },
  62705. ]
  62706. ))
  62707. characterMakers.push(() => makeCharacter(
  62708. { name: "Aurora Adkins", species: ["rusty-spotted-cat"], tags: ["anthro"] },
  62709. {
  62710. front: {
  62711. height: math.unit(5 + 9/12, "feet"),
  62712. weight: math.unit(170, "lb"),
  62713. name: "Front",
  62714. image: {
  62715. source: "./media/characters/aurora-adkins/front.svg",
  62716. extra: 1141/1089,
  62717. bottom: 41/1182
  62718. }
  62719. },
  62720. },
  62721. [
  62722. {
  62723. name: "Tiny",
  62724. height: math.unit(7, "mm")
  62725. },
  62726. {
  62727. name: "Small",
  62728. height: math.unit(3.4, "inches")
  62729. },
  62730. {
  62731. name: "Normal",
  62732. height: math.unit(5 + 9/12, "feet"),
  62733. default: true
  62734. },
  62735. {
  62736. name: "Big",
  62737. height: math.unit(31, "feet")
  62738. },
  62739. {
  62740. name: "Giant",
  62741. height: math.unit(300, "feet")
  62742. },
  62743. ]
  62744. ))
  62745. characterMakers.push(() => makeCharacter(
  62746. { name: "Cyber", species: ["maned-wolf", "lynx", "deity"], tags: ["anthro"] },
  62747. {
  62748. front: {
  62749. height: math.unit(5 + 6/12, "feet"),
  62750. weight: math.unit(210, "lb"),
  62751. name: "Front",
  62752. image: {
  62753. source: "./media/characters/cyber/front.svg",
  62754. extra: 1968/1798,
  62755. bottom: 10/1978
  62756. },
  62757. extraAttributes: {
  62758. "shoeSize": {
  62759. name: "Shoe Size",
  62760. power: 1,
  62761. type: "length",
  62762. base: math.unit(30, "ShoeSizeMensUS")
  62763. },
  62764. }
  62765. },
  62766. },
  62767. [
  62768. {
  62769. name: "Normal",
  62770. height: math.unit(5 + 6/12, "feet"),
  62771. default: true
  62772. },
  62773. ]
  62774. ))
  62775. characterMakers.push(() => makeCharacter(
  62776. { name: "Sapphire Wairimea", species: ["elf"], tags: ["anthro"] },
  62777. {
  62778. front: {
  62779. height: math.unit(6 + 6/12, "feet"),
  62780. weight: math.unit(140, "lb"),
  62781. name: "Front",
  62782. image: {
  62783. source: "./media/characters/sapphire-wairimea/front.svg",
  62784. extra: 475/458,
  62785. bottom: 14/489
  62786. }
  62787. },
  62788. },
  62789. [
  62790. {
  62791. name: "Normal",
  62792. height: math.unit(6 + 6/12, "feet")
  62793. },
  62794. {
  62795. name: "Macro",
  62796. height: math.unit(132, "feet"),
  62797. default: true
  62798. },
  62799. ]
  62800. ))
  62801. characterMakers.push(() => makeCharacter(
  62802. { name: "Cirkazi", species: ["elf"], tags: ["anthro"] },
  62803. {
  62804. front: {
  62805. height: math.unit(1.6, "meters"),
  62806. weight: math.unit(100, "lb"),
  62807. name: "Front",
  62808. image: {
  62809. source: "./media/characters/cirkazi/front.svg",
  62810. extra: 489/477,
  62811. bottom: 0/489
  62812. }
  62813. },
  62814. },
  62815. [
  62816. {
  62817. name: "Normal",
  62818. height: math.unit(1.6, "meters")
  62819. },
  62820. {
  62821. name: "Macro",
  62822. height: math.unit(800, "feet"),
  62823. default: true
  62824. },
  62825. ]
  62826. ))
  62827. characterMakers.push(() => makeCharacter(
  62828. { name: "Corrin Cavelli", species: ["human"], tags: ["anthro"] },
  62829. {
  62830. front: {
  62831. height: math.unit(5 + 10/12, "feet"),
  62832. weight: math.unit(145, "lb"),
  62833. name: "Front",
  62834. image: {
  62835. source: "./media/characters/corrin-cavelli/front.svg",
  62836. extra: 483/464,
  62837. bottom: 6/489
  62838. }
  62839. },
  62840. },
  62841. [
  62842. {
  62843. name: "Human",
  62844. height: math.unit(5 + 10/12, "feet")
  62845. },
  62846. {
  62847. name: "Giant",
  62848. height: math.unit(210, "feet"),
  62849. default: true
  62850. },
  62851. ]
  62852. ))
  62853. characterMakers.push(() => makeCharacter(
  62854. { name: "Lori Lopez", species: ["human"], tags: ["anthro"] },
  62855. {
  62856. back: {
  62857. height: math.unit(5 + 6/12, "feet"),
  62858. weight: math.unit(115, "lb"),
  62859. name: "Back",
  62860. image: {
  62861. source: "./media/characters/lori-lopez/back.svg",
  62862. extra: 483/474,
  62863. bottom: 6/489
  62864. }
  62865. },
  62866. },
  62867. [
  62868. {
  62869. name: "Human",
  62870. height: math.unit(5 + 6/12, "feet")
  62871. },
  62872. {
  62873. name: "Macro",
  62874. height: math.unit(198, "feet"),
  62875. default: true
  62876. },
  62877. ]
  62878. ))
  62879. characterMakers.push(() => makeCharacter(
  62880. { name: "Sylvia Beauregard", species: ["human"], tags: ["anthro"] },
  62881. {
  62882. front: {
  62883. height: math.unit(6, "feet"),
  62884. weight: math.unit(220, "lb"),
  62885. name: "Front",
  62886. image: {
  62887. source: "./media/characters/sylvia-beauregard/front.svg",
  62888. extra: 483/479,
  62889. bottom: 6/489
  62890. }
  62891. },
  62892. },
  62893. [
  62894. {
  62895. name: "Macro",
  62896. height: math.unit(2071, "feet"),
  62897. default: true
  62898. },
  62899. ]
  62900. ))
  62901. characterMakers.push(() => makeCharacter(
  62902. { name: "Akiko Takahashi", species: ["human"], tags: ["anthro"] },
  62903. {
  62904. back: {
  62905. height: math.unit(5 + 6/12, "feet"),
  62906. weight: math.unit(160, "lb"),
  62907. name: "Back",
  62908. image: {
  62909. source: "./media/characters/akiko-takahashi/back.svg",
  62910. extra: 459/454,
  62911. bottom: 27/486
  62912. }
  62913. },
  62914. },
  62915. [
  62916. {
  62917. name: "Human",
  62918. height: math.unit(5 + 6/12, "feet")
  62919. },
  62920. {
  62921. name: "Macro",
  62922. height: math.unit(198, "feet"),
  62923. default: true
  62924. },
  62925. {
  62926. name: "Megamacro",
  62927. height: math.unit(7128, "feet")
  62928. },
  62929. ]
  62930. ))
  62931. characterMakers.push(() => makeCharacter(
  62932. { name: "Velvet Garza", species: ["human"], tags: ["anthro"] },
  62933. {
  62934. front: {
  62935. height: math.unit(6, "feet"),
  62936. weight: math.unit(140, "lb"),
  62937. name: "Front",
  62938. image: {
  62939. source: "./media/characters/velvet-garza/front.svg",
  62940. extra: 480/462,
  62941. bottom: 7/487
  62942. }
  62943. },
  62944. },
  62945. [
  62946. {
  62947. name: "Macro",
  62948. height: math.unit(37, "feet"),
  62949. default: true
  62950. },
  62951. ]
  62952. ))
  62953. characterMakers.push(() => makeCharacter(
  62954. { name: "Gaia", species: ["deity", "human"], tags: ["anthro"] },
  62955. {
  62956. front: {
  62957. height: math.unit(7 + 6/12, "feet"),
  62958. weight: math.unit(400, "lb"),
  62959. name: "Front",
  62960. image: {
  62961. source: "./media/characters/gaia/front.svg",
  62962. extra: 474/463,
  62963. bottom: 13/487
  62964. }
  62965. },
  62966. },
  62967. [
  62968. {
  62969. name: "MiniMacro",
  62970. height: math.unit(7 + 6/12, "feet")
  62971. },
  62972. {
  62973. name: "GigaMacro",
  62974. height: math.unit(14500, "feet"),
  62975. default: true
  62976. },
  62977. ]
  62978. ))
  62979. characterMakers.push(() => makeCharacter(
  62980. { name: "Tim", species: ["rabbit"], tags: ["anthro"] },
  62981. {
  62982. front: {
  62983. height: math.unit(6, "feet"),
  62984. weight: math.unit(150, "lb"),
  62985. name: "Front",
  62986. image: {
  62987. source: "./media/characters/tim/front.svg",
  62988. extra: 1878/1743,
  62989. bottom: 9/1887
  62990. }
  62991. },
  62992. frontDressed: {
  62993. height: math.unit(6, "feet"),
  62994. weight: math.unit(150, "lb"),
  62995. name: "Front (Dressed)",
  62996. image: {
  62997. source: "./media/characters/tim/front-dressed.svg",
  62998. extra: 1765/1485,
  62999. bottom: 48/1813
  63000. }
  63001. },
  63002. backDressed: {
  63003. height: math.unit(6, "feet"),
  63004. weight: math.unit(150, "lb"),
  63005. name: "Back (Dressed)",
  63006. image: {
  63007. source: "./media/characters/tim/back-dressed.svg",
  63008. extra: 1750/1465,
  63009. bottom: 25/1775
  63010. }
  63011. },
  63012. dick: {
  63013. height: math.unit(1.5, "feet"),
  63014. weight: math.unit(6, "lb"),
  63015. name: "Dick",
  63016. image: {
  63017. source: "./media/characters/tim/dick.svg"
  63018. }
  63019. },
  63020. hand: {
  63021. height: math.unit(0.522, "feet"),
  63022. name: "Hand",
  63023. image: {
  63024. source: "./media/characters/tim/hand.svg"
  63025. }
  63026. },
  63027. palm: {
  63028. height: math.unit(0.48, "feet"),
  63029. name: "Palm",
  63030. image: {
  63031. source: "./media/characters/tim/palm.svg"
  63032. }
  63033. },
  63034. paw: {
  63035. height: math.unit(0.9, "feet"),
  63036. name: "Paw",
  63037. image: {
  63038. source: "./media/characters/tim/paw.svg"
  63039. }
  63040. },
  63041. sole: {
  63042. height: math.unit(0.88, "feet"),
  63043. name: "Sole",
  63044. image: {
  63045. source: "./media/characters/tim/sole.svg"
  63046. }
  63047. },
  63048. },
  63049. [
  63050. {
  63051. name: "Macro",
  63052. height: math.unit(1000, "feet")
  63053. },
  63054. {
  63055. name: "Megamacro",
  63056. height: math.unit(10000, "feet"),
  63057. default: true
  63058. },
  63059. {
  63060. name: "Megamacro+",
  63061. height: math.unit(50000, "feet")
  63062. },
  63063. {
  63064. name: "Gigamacro",
  63065. height: math.unit(150000, "km")
  63066. },
  63067. ]
  63068. ))
  63069. characterMakers.push(() => makeCharacter(
  63070. { name: "Abel Delreoux", species: ["maine-coon"], tags: ["anthro"] },
  63071. {
  63072. front: {
  63073. height: math.unit(5 + 8/12, "feet"),
  63074. weight: math.unit(170, "lb"),
  63075. name: "Front",
  63076. image: {
  63077. source: "./media/characters/abel-delreoux/front.svg",
  63078. extra: 1615/1500,
  63079. bottom: 82/1697
  63080. }
  63081. },
  63082. back: {
  63083. height: math.unit(5 + 8/12, "feet"),
  63084. weight: math.unit(170, "lb"),
  63085. name: "Back",
  63086. image: {
  63087. source: "./media/characters/abel-delreoux/back.svg",
  63088. extra: 1644/1534,
  63089. bottom: 24/1668
  63090. }
  63091. },
  63092. casual: {
  63093. height: math.unit(5 + 8/12, "feet"),
  63094. weight: math.unit(170, "lb"),
  63095. name: "Casual",
  63096. image: {
  63097. source: "./media/characters/abel-delreoux/casual.svg",
  63098. extra: 1716/1598,
  63099. bottom: 29/1745
  63100. }
  63101. },
  63102. sleepy: {
  63103. height: math.unit(5 + 8/12, "feet"),
  63104. weight: math.unit(170, "lb"),
  63105. name: "Sleepy",
  63106. image: {
  63107. source: "./media/characters/abel-delreoux/sleepy.svg",
  63108. extra: 1649/1573,
  63109. bottom: 22/1671
  63110. }
  63111. },
  63112. fem: {
  63113. height: math.unit(5 + 8/12, "feet"),
  63114. weight: math.unit(170, "lb"),
  63115. name: "Fem",
  63116. image: {
  63117. source: "./media/characters/abel-delreoux/fem.svg",
  63118. extra: 1680/1564,
  63119. bottom: 17/1697
  63120. }
  63121. },
  63122. hand: {
  63123. height: math.unit(0.78, "feet"),
  63124. name: "Hand",
  63125. image: {
  63126. source: "./media/characters/abel-delreoux/hand.svg"
  63127. }
  63128. },
  63129. paw: {
  63130. height: math.unit(0.78, "feet"),
  63131. name: "Paw",
  63132. image: {
  63133. source: "./media/characters/abel-delreoux/paw.svg"
  63134. }
  63135. },
  63136. },
  63137. [
  63138. {
  63139. name: "Normal",
  63140. height: math.unit(5 + 8/12, "feet"),
  63141. default: true
  63142. },
  63143. ]
  63144. ))
  63145. characterMakers.push(() => makeCharacter(
  63146. { name: "Meus", species: ["phoenix"], tags: ["anthro"] },
  63147. {
  63148. front: {
  63149. height: math.unit(6, "feet"),
  63150. weight: math.unit(159, "lb"),
  63151. name: "Front",
  63152. image: {
  63153. source: "./media/characters/meus/front.svg",
  63154. extra: 938/843,
  63155. bottom: 37/975
  63156. }
  63157. },
  63158. back: {
  63159. height: math.unit(6, "feet"),
  63160. weight: math.unit(159, "lb"),
  63161. name: "Back",
  63162. image: {
  63163. source: "./media/characters/meus/back.svg",
  63164. extra: 967/873,
  63165. bottom: 12/979
  63166. }
  63167. },
  63168. },
  63169. [
  63170. {
  63171. name: "Micro",
  63172. height: math.unit(2, "inches")
  63173. },
  63174. {
  63175. name: "Mini",
  63176. height: math.unit(6, "inches")
  63177. },
  63178. {
  63179. name: "Normal",
  63180. height: math.unit(6, "feet"),
  63181. default: true
  63182. },
  63183. {
  63184. name: "Macro",
  63185. height: math.unit(84, "feet")
  63186. },
  63187. ]
  63188. ))
  63189. characterMakers.push(() => makeCharacter(
  63190. { name: "Yamato", species: ["kobold"], tags: ["anthro"] },
  63191. {
  63192. front: {
  63193. height: math.unit(60, "cm"),
  63194. weight: math.unit(18, "kg"),
  63195. name: "Front",
  63196. image: {
  63197. source: "./media/characters/yamato/front.svg",
  63198. extra: 733/688,
  63199. bottom: 29/762
  63200. }
  63201. },
  63202. },
  63203. [
  63204. {
  63205. name: "Micro",
  63206. height: math.unit(6, "cm")
  63207. },
  63208. {
  63209. name: "Normal",
  63210. height: math.unit(60, "cm"),
  63211. default: true
  63212. },
  63213. ]
  63214. ))
  63215. characterMakers.push(() => makeCharacter(
  63216. { name: "Barus", species: ["deity"], tags: ["anthro"] },
  63217. {
  63218. front: {
  63219. height: math.unit(9, "feet"),
  63220. weight: math.unit(518, "lb"),
  63221. name: "Front",
  63222. image: {
  63223. source: "./media/characters/barus/front.svg",
  63224. extra: 1877/1795,
  63225. bottom: 55/1932
  63226. }
  63227. },
  63228. },
  63229. [
  63230. {
  63231. name: "Base Height",
  63232. height: math.unit(9, "feet"),
  63233. default: true
  63234. },
  63235. {
  63236. name: "Large",
  63237. height: math.unit(18, "feet")
  63238. },
  63239. {
  63240. name: "Giant",
  63241. height: math.unit(100, "feet")
  63242. },
  63243. {
  63244. name: "Huge",
  63245. height: math.unit(500, "feet")
  63246. },
  63247. {
  63248. name: "Enormous",
  63249. height: math.unit(300, "meters")
  63250. },
  63251. {
  63252. name: "Deity Among Man",
  63253. height: math.unit(3000, "meters")
  63254. },
  63255. ]
  63256. ))
  63257. characterMakers.push(() => makeCharacter(
  63258. { name: "Yari", species: ["sergal"], tags: ["anthro"] },
  63259. {
  63260. front: {
  63261. height: math.unit(1.7, "meters"),
  63262. name: "Front",
  63263. image: {
  63264. source: "./media/characters/yari/front.svg",
  63265. extra: 1210/1125,
  63266. bottom: 283/1493
  63267. }
  63268. },
  63269. back: {
  63270. height: math.unit(1.7, "meters"),
  63271. name: "Back",
  63272. image: {
  63273. source: "./media/characters/yari/back.svg",
  63274. extra: 1240/1195,
  63275. bottom: 180/1420
  63276. }
  63277. },
  63278. head: {
  63279. height: math.unit(1.26, "feet"),
  63280. name: "Head",
  63281. image: {
  63282. source: "./media/characters/yari/head.svg"
  63283. }
  63284. },
  63285. },
  63286. [
  63287. {
  63288. name: "Nano",
  63289. height: math.unit(0.5, "mm")
  63290. },
  63291. {
  63292. name: "Micro",
  63293. height: math.unit(3, "inches")
  63294. },
  63295. {
  63296. name: "Short",
  63297. height: math.unit(1.5, "meters")
  63298. },
  63299. {
  63300. name: "Norm",
  63301. height: math.unit(1.7, "meters"),
  63302. default: true
  63303. },
  63304. ]
  63305. ))
  63306. characterMakers.push(() => makeCharacter(
  63307. { name: "Salem", species: ["mouse"], tags: ["anthro"] },
  63308. {
  63309. front: {
  63310. height: math.unit(5 + 2/12, "feet"),
  63311. weight: math.unit(110, "lb"),
  63312. name: "Front",
  63313. image: {
  63314. source: "./media/characters/salem/front.svg",
  63315. extra: 1895/1800,
  63316. bottom: 23/1918
  63317. }
  63318. },
  63319. back: {
  63320. height: math.unit(5 + 2/12, "feet"),
  63321. weight: math.unit(110, "lb"),
  63322. name: "Back",
  63323. image: {
  63324. source: "./media/characters/salem/back.svg",
  63325. extra: 1875/1802,
  63326. bottom: 20/1895
  63327. }
  63328. },
  63329. head: {
  63330. height: math.unit(1, "feet"),
  63331. name: "Head",
  63332. image: {
  63333. source: "./media/characters/salem/head.svg"
  63334. }
  63335. },
  63336. paw: {
  63337. height: math.unit(0.59, "feet"),
  63338. name: "Paw",
  63339. image: {
  63340. source: "./media/characters/salem/paw.svg"
  63341. }
  63342. },
  63343. beans: {
  63344. height: math.unit(0.66, "feet"),
  63345. name: "Beans",
  63346. image: {
  63347. source: "./media/characters/salem/beans.svg"
  63348. }
  63349. },
  63350. eye: {
  63351. height: math.unit(0.224, "feet"),
  63352. name: "Eye",
  63353. image: {
  63354. source: "./media/characters/salem/eye.svg"
  63355. }
  63356. },
  63357. semiferal: {
  63358. height: math.unit(2.3, "feet"),
  63359. name: "Semiferal",
  63360. image: {
  63361. source: "./media/characters/salem/semiferal.svg",
  63362. extra: 914/839,
  63363. bottom: 32/946
  63364. }
  63365. },
  63366. },
  63367. [
  63368. {
  63369. name: "Micro",
  63370. height: math.unit(4, "inches")
  63371. },
  63372. {
  63373. name: "Normal",
  63374. height: math.unit(5 + 2/12, "feet"),
  63375. default: true
  63376. },
  63377. {
  63378. name: "Macro",
  63379. height: math.unit(108, "feet")
  63380. },
  63381. {
  63382. name: "Macro+",
  63383. height: math.unit(1500, "feet")
  63384. },
  63385. ]
  63386. ))
  63387. characterMakers.push(() => makeCharacter(
  63388. { name: "Kii", species: ["dragon", "dog"], tags: ["anthro"] },
  63389. {
  63390. front: {
  63391. height: math.unit(7 + 6/12, "feet"),
  63392. weight: math.unit(600, "kg"),
  63393. preyCapacity: math.unit(10, "people"),
  63394. name: "Front",
  63395. image: {
  63396. source: "./media/characters/kii/front.svg",
  63397. extra: 3296/3087,
  63398. bottom: 130/3426
  63399. }
  63400. },
  63401. },
  63402. [
  63403. {
  63404. name: "Normal",
  63405. height: math.unit(7 + 6/12, "feet"),
  63406. default: true
  63407. },
  63408. ]
  63409. ))
  63410. characterMakers.push(() => makeCharacter(
  63411. { name: "Taffy", species: ["saltwater-crocodile"], tags: ["anthro"] },
  63412. {
  63413. front: {
  63414. height: math.unit(2, "meters"),
  63415. weight: math.unit(200, "lb"),
  63416. name: "Front",
  63417. image: {
  63418. source: "./media/characters/taffy/front.svg",
  63419. extra: 1666/1618,
  63420. bottom: 157/1823
  63421. }
  63422. },
  63423. back: {
  63424. height: math.unit(2, "meters"),
  63425. weight: math.unit(200, "lb"),
  63426. name: "Back",
  63427. image: {
  63428. source: "./media/characters/taffy/back.svg",
  63429. extra: 1635/1583,
  63430. bottom: 153/1788
  63431. }
  63432. },
  63433. },
  63434. [
  63435. {
  63436. name: "Normal",
  63437. height: math.unit(2, "meters"),
  63438. default: true
  63439. },
  63440. ]
  63441. ))
  63442. characterMakers.push(() => makeCharacter(
  63443. { name: "Barley", species: ["eastern-grey-kangaroo"], tags: ["anthro"] },
  63444. {
  63445. front: {
  63446. height: math.unit(1.55, "meters"),
  63447. weight: math.unit(60, "kg"),
  63448. name: "Front",
  63449. image: {
  63450. source: "./media/characters/barley/front.svg",
  63451. extra: 1520/1340,
  63452. bottom: 47/1567
  63453. }
  63454. },
  63455. back: {
  63456. height: math.unit(1.55, "meters"),
  63457. weight: math.unit(60, "kg"),
  63458. name: "Back",
  63459. image: {
  63460. source: "./media/characters/barley/back.svg",
  63461. extra: 1543/1341,
  63462. bottom: 12/1555
  63463. }
  63464. },
  63465. feet: {
  63466. height: math.unit(2.18, "feet"),
  63467. name: "Feet",
  63468. image: {
  63469. source: "./media/characters/barley/feet.svg"
  63470. }
  63471. },
  63472. },
  63473. [
  63474. {
  63475. name: "Normal",
  63476. height: math.unit(1.55, "meters"),
  63477. default: true
  63478. },
  63479. ]
  63480. ))
  63481. //characters
  63482. function makeCharacters() {
  63483. const results = [];
  63484. characterMakers.forEach(character => {
  63485. results.push(character());
  63486. });
  63487. return results;
  63488. }